Move out of bounds. no mesh, no eddy, no anything

Basic Information:

Printer Model: Ender3
MCU / Printerboard: Creality v1.1.4
Host / SBC Raspi 4b
klippy.log -----> klippy.log - Pastebin.com

Describe your issue:


Keeps erroring out on a move out of bounds, checked everything i can think of, been googling for days, but cannot find a fix. help?

Hello @orflyfisher82 !

Please upload your klippy.log here - not to a(nother) file server!

Upload

1 Like

klippy(5).log (3.2 MB)

1 Like

For X:

...
position_endstop = 0
position_max = 200
...

For Y:

...
position_endstop = 0
position_max = 200
...

The errors:

...
Move out of range: 10.000 221.000 55.500 [0.000]
Move out of range: 10.000 221.000 55.500 [0.000]
...

And here:

[gcode_macro CANCEL_PRINT]
description = Cancels current print.
rename_existing = BASE_CANCEL_PRINT
gcode = 
	M220 S100
	M221 S100
	G91
	{% if printer.extruder.temperature >= 170 %}
	G1 F1800 E-3
	{% endif %}
	{% if printer.toolhead.homed_axes == "xyz" %}
	G1 F6000 Z55
	G90
	G1 X10 Y221 F1000  # <============
	{% endif %}
	
	M140 S0
	M104 S0
	CLEAR_PAUSE
	BASE_CANCEL_PRINT
	SDCARD_RESET_FILE

and

on_error_gcode = CANCEL_PRINT

god I’m such an idiot, Ty for the quuick response

1 Like