diff --git a/Marlin/src/module/endstops.cpp b/Marlin/src/module/endstops.cpp index e7786749b5..e9aafa49c8 100644 --- a/Marlin/src/module/endstops.cpp +++ b/Marlin/src/module/endstops.cpp @@ -1307,7 +1307,7 @@ void Endstops::update() { ES_REPORT_CHANGE(Z_MIN_PROBE); #endif #if USE_CALIBRATION - ES_REPORT_STATE(CALIBRATION); + ES_REPORT_CHANGE(CALIBRATION); #endif #if USE_X2_MIN ES_REPORT_CHANGE(X2_MIN); diff --git a/Marlin/src/module/endstops.h b/Marlin/src/module/endstops.h index 7a6da5eefa..c6788330f0 100644 --- a/Marlin/src/module/endstops.h +++ b/Marlin/src/module/endstops.h @@ -258,7 +258,7 @@ class Endstops { #if ENABLED(CALIBRATION_GCODE) static volatile bool calibration_probe_enabled; static volatile bool calibration_stop_state; - static void enable_calibration_probe(const bool onoff,const bool stop_state = true); + static void enable_calibration_probe(const bool onoff, const bool stop_state=true); #endif static void resync();