got klipper running on my ender 3 v2 with a sprite extruder and CR touch
got everything mostly working but I continue getting a “move out of range” error even after tons of tinkering with settings
More is relevant: Please always attach the complete klippy.log (includes: please do not delete the template): To analyte your issue completely we need the dimensions that are stored in the stepper sections.
And for code snipptes please use the code formatting:
Guess to your issue: Take the BLtouch offset into calculation for the bed mesh.
i changed the minimum position to 33,42 as you suggested and attempted to generate a mesh. the error message i received said that the target position had an x value of 260 which is way outside the max value of 230 i have set.
You also may check the maximum values of the bed mesh area.
And much more.
There are some macros that poke around inside some important parameters. If not called with the proper values, obscure things can happen.
E.g.:
[gcode_macro _TOOLHEAD_PARK_PAUSE_CANCEL]
Why a macro that creates things depending on a certain kinematic you use.
Usually you do not swap your kinematics on the fly (you even can’t: It’s hardware). So such macros make no sense at all. Just a macro that is dedicated for the kinematic you use.
thank you for all your help, I believe I have found the issue. from what I have observed I believe the position_min and position_max refers to the position of the probe so if the probe was at the maximum position (230,230), the position of the nozzle would be 261.8,270.5 which is the exact position of the error message.