|
@@ -517,6 +517,8 @@
|
517
|
517
|
#error "TOUCH_BUTTONS is now TOUCH_SCREEN. Please update your Configuration.h."
|
518
|
518
|
#elif defined(ANYCUBIC_TFT_MODEL)
|
519
|
519
|
#error "ANYCUBIC_TFT_MODEL is now ANYCUBIC_LCD_I3MEGA. Please update your Configuration.h."
|
|
520
|
+#elif defined(EVENT_GCODE_SD_STOP)
|
|
521
|
+ #error "EVENT_GCODE_SD_STOP is now EVENT_GCODE_SD_ABORT. Please update your Configuration.h."
|
520
|
522
|
#endif
|
521
|
523
|
|
522
|
524
|
#ifdef FIL_RUNOUT_INVERTING
|
|
@@ -742,8 +744,8 @@ static_assert(Y_MAX_LENGTH >= Y_BED_SIZE, "Movement bounds (Y_MIN_POS, Y_MAX_POS
|
742
|
744
|
#endif
|
743
|
745
|
#endif
|
744
|
746
|
|
745
|
|
-#if defined(EVENT_GCODE_SD_STOP) && DISABLED(NOZZLE_PARK_FEATURE)
|
746
|
|
- static_assert(nullptr == strstr(EVENT_GCODE_SD_STOP, "G27"), "NOZZLE_PARK_FEATURE is required to use G27 in EVENT_GCODE_SD_STOP.");
|
|
747
|
+#if defined(EVENT_GCODE_SD_ABORT) && DISABLED(NOZZLE_PARK_FEATURE)
|
|
748
|
+ static_assert(nullptr == strstr(EVENT_GCODE_SD_ABORT, "G27"), "NOZZLE_PARK_FEATURE is required to use G27 in EVENT_GCODE_SD_ABORT.");
|
747
|
749
|
#endif
|
748
|
750
|
|
749
|
751
|
/**
|