Marlin 2.0.8 Homing error

Post Reply
Kanuebel
Posts: 1
Joined: Mon May 03, 2021 8:58 pm

Marlin 2.0.8 Homing error

Post by Kanuebel » Mon May 03, 2021 9:45 pm

Hi,

I have compiled a 2.0.8 FW for my A10 with 3DTouch support. I was able to compile and flash the FW, but if i want home the printer i get a "homing failed printer halted please reset" error message.

See blow the parameters which i have changed in the default config, but i get this homing error, where is my fault?

Thanks in advance for the support!

Code: Select all

changed: 

#define MOTHERBOARD BOARD_GT2560_V3 to #define MOTHERBOARD BOARD_GT2560_V4
#define DEFAULT_AXIS_STEPS_PER_UNIT   { 80, 80, 400, 93 } to #define DEFAULT_AXIS_STEPS_PER_UNIT   { 80.30, 80.30, 400, 93.73 }
//#define Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN to #define Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
//#define PROBE_MANUALLY to #define PROBE_MANUALLY
//#define BLTOUCH to #define BLTOUCH
#define NOZZLE_TO_PROBE_OFFSET { -37, 0, -3.1 } to #define NOZZLE_TO_PROBE_OFFSET { -37, 0, -1.71 }
#define PROBING_HEATERS_OFF to //#define PROBING_HEATERS_OFF 
#define PROBING_MARGIN 10 to //#define PROBING_MARGIN 10
#define X_BED_SIZE 230 to #define X_BED_SIZE 220
#define Y_BED_SIZE 230 to #define Y_BED_SIZE 220
#define AUTO_BED_LEVELING_BILINEAR to //#define AUTO_BED_LEVELING_BILINEAR
//#define AUTO_BED_LEVELING_UBL to #define AUTO_BED_LEVELING_UBL
#define MESH_INSET 1  to //#define MESH_INSET 1  
//#define UBL_HILBERT_CURVE to #define UBL_HILBERT_CURVE
//#define Z_SAFE_HOMING to #define Z_SAFE_HOMING
#define LCD_LANGUAGE en to #define LCD_LANGUAGE de

Code: Select all

Here my debug output: 

SENDING:G28
>>> G28 X147.00 Y110.00 Z6.71
Machine Type: Cartesian
Probe: BLTOUCH
Probe Offset X-37.00 Y0.00 Z-1.71 (Left-Center & Below Nozzle)
Auto Bed Leveling: BILINEAR (disabled)
Raise Z (before homing) by 3.00
>>> do_blocking_move_to X147.00 Y110.00 Z6.71
> X147.00 Y110.00 Z6.71
<<< do_blocking_move_to X147.00 Y110.00 Z6.71
BLTouch Command :160
BLTouch Command :90
last_written_mode - 0
config mode - OD
>>> homeaxis(X)
Home Fast: -346.50mm
>>> do_homing_move X147.00 Y110.00 Z6.71
...(X, -346.50, [80.00])
<<< do_homing_move X147.00 Y110.00 Z6.71
Move Away: 5.00mm
>>> do_homing_move X147.00 Y110.00 Z6.71
...(X, 5.00, [80.00])
<<< do_homing_move X147.00 Y110.00 Z6.71
Re-bump: -10.00mm
>>> do_homing_move X147.00 Y110.00 Z6.71
...(X, -10.00, 40.00)
Error:Printer halted. kill() called!
Error:Printer halted. kill() called!

Post Reply