File tree 5 files changed +11
-9
lines changed
5 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 2032
2032
* Commands to execute at the end of G29 probing.
2033
2033
* Useful to retract or move the Z probe out of the way.
2034
2034
*/
2035
- //#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10"
2035
+ //#define EVENT_GCODE_AFTER_G29 "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10"
2036
2036
2037
2037
/**
2038
2038
* Normally G28 leaves leveling disabled on completion. Enable one of
Original file line number Diff line number Diff line change @@ -681,11 +681,11 @@ void unified_bed_leveling::G29() {
681
681
ui.release ();
682
682
#endif
683
683
684
- #ifdef Z_PROBE_END_SCRIPT
685
- if (DEBUGGING (LEVELING)) DEBUG_ECHOLNPGM (" Z Probe End Script: " , Z_PROBE_END_SCRIPT );
684
+ #ifdef EVENT_GCODE_AFTER_G29
685
+ if (DEBUGGING (LEVELING)) DEBUG_ECHOLNPGM (" Z Probe End Script: " , EVENT_GCODE_AFTER_G29 );
686
686
if (probe_deployed) {
687
687
planner.synchronize ();
688
- gcode.process_subcommands_now (F (Z_PROBE_END_SCRIPT ));
688
+ gcode.process_subcommands_now (F (EVENT_GCODE_AFTER_G29 ));
689
689
}
690
690
#else
691
691
UNUSED (probe_deployed);
Original file line number Diff line number Diff line change @@ -987,10 +987,10 @@ G29_TYPE GcodeSuite::G29() {
987
987
988
988
TERN_ (HAS_BED_PROBE, probe.move_z_after_probing ());
989
989
990
- #ifdef Z_PROBE_END_SCRIPT
991
- if (DEBUGGING (LEVELING)) DEBUG_ECHOLNPGM (" Z Probe End Script: " , Z_PROBE_END_SCRIPT );
990
+ #ifdef EVENT_GCODE_AFTER_G29
991
+ if (DEBUGGING (LEVELING)) DEBUG_ECHOLNPGM (" Z Probe End Script: " , EVENT_GCODE_AFTER_G29 );
992
992
planner.synchronize ();
993
- process_subcommands_now (F (Z_PROBE_END_SCRIPT ));
993
+ process_subcommands_now (F (EVENT_GCODE_AFTER_G29 ));
994
994
#endif
995
995
996
996
probe.use_probing_tool (false );
Original file line number Diff line number Diff line change 685
685
#error "SDIO_SUPPORT is now ONBOARD_SDIO."
686
686
#elif defined(ANET_FULL_GRAPHICS_LCD_ALT_WIRING )
687
687
#error "ANET_FULL_GRAPHICS_LCD_ALT_WIRING is now CTC_A10S_A13."
688
+ #elif defined(Z_PROBE_END_SCRIPT )
689
+ #error "Z_PROBE_END_SCRIPT is now EVENT_GCODE_AFTER_G29."
688
690
#endif
689
691
690
692
// Changes to Probe Temp Compensation (#17392)
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ opt_disable X_DRIVER_TYPE Y_DRIVER_TYPE Z_DRIVER_TYPE
87
87
exec_test $1 $2 " E Axis Only | DOGM MarlinUI" " $3 "
88
88
89
89
#
90
- # Mixing Extruder with 5 steppers, Greek
90
+ # Mixing Extruder with 5 steppers, Russian
91
91
#
92
92
restore_configs
93
93
opt_set MOTHERBOARD BOARD_AZTEEG_X3_PRO MIXING_STEPPERS 5 LCD_LANGUAGE ru \
@@ -98,7 +98,7 @@ opt_enable MIXING_EXTRUDER GRADIENT_MIX GRADIENT_VTOOL CR10_STOCKDISPLAY \
98
98
XY_AFTER_HOMING EVENT_GCODE_AFTER_HOMING \
99
99
FILAMENT_RUNOUT_SENSOR ADVANCED_PAUSE_FEATURE NOZZLE_PARK_FEATURE INPUT_SHAPING_X INPUT_SHAPING_Y
100
100
opt_disable DISABLE_OTHER_EXTRUDERS
101
- exec_test $1 $2 " Azteeg X3 | Mixing Extruder (x5) | Gradient Mix | Input Shaping | Greek " " $3 "
101
+ exec_test $1 $2 " Azteeg X3 | Mixing Extruder (x5) | Gradient Mix | Input Shaping | Russian " " $3 "
102
102
103
103
#
104
104
# Test SPEAKER with BOARD_BQ_ZUM_MEGA_3D and BQ_LCD_SMART_CONTROLLER
You can’t perform that action at this time.
0 commit comments