|
|
@@ -2465,7 +2465,7 @@ inline void gcode_G28() {
|
|
2465
|
2465
|
*/
|
|
2466
|
2466
|
#if ENABLED(MESH_BED_LEVELING)
|
|
2467
|
2467
|
uint8_t mbl_was_active = mbl.active;
|
|
2468
|
|
- mbl.active = 0;
|
|
|
2468
|
+ mbl.active = false;
|
|
2469
|
2469
|
#endif
|
|
2470
|
2470
|
|
|
2471
|
2471
|
setup_for_endstop_move();
|
|
|
@@ -2896,7 +2896,7 @@ inline void gcode_G28() {
|
|
2896
|
2896
|
// After recording the last point, activate the mbl and home
|
|
2897
|
2897
|
SERIAL_PROTOCOLLNPGM("Mesh probing done.");
|
|
2898
|
2898
|
probe_point = -1;
|
|
2899
|
|
- mbl.active = 1;
|
|
|
2899
|
+ mbl.active = true;
|
|
2900
|
2900
|
enqueue_and_echo_commands_P(PSTR("G28"));
|
|
2901
|
2901
|
}
|
|
2902
|
2902
|
break;
|