From d1df7f931c2101928263bacadacbcca177ecc0dd Mon Sep 17 00:00:00 2001 From: bubnikv Date: Tue, 2 Aug 2016 15:56:14 +0200 Subject: [PATCH] Unused experimental Prusa3D specific G8X G-codes disabled. --- Firmware/Marlin_main.cpp | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Firmware/Marlin_main.cpp b/Firmware/Marlin_main.cpp index 507778dc..801c673d 100644 --- a/Firmware/Marlin_main.cpp +++ b/Firmware/Marlin_main.cpp @@ -2556,6 +2556,8 @@ void process_commands() else SERIAL_PROTOCOLLNPGM("Mesh bed leveling not active."); break; + +#if 0 /** * G82: Single Z probe at current location * @@ -2571,7 +2573,7 @@ void process_commands() SERIAL_PROTOCOL_F(current_position[Z_AXIS], 5); SERIAL_PROTOCOLPGM("\n"); break; - + /** * G83: Prusa3D specific: Babystep in Z and store to EEPROM */ @@ -2611,6 +2613,7 @@ void process_commands() case 85: lcd_pick_babystep(); break; +#endif /** * G86: Prusa3D specific: Disable babystep correction after home. @@ -2627,8 +2630,11 @@ void process_commands() eeprom_write_byte((unsigned char*)EEPROM_BABYSTEP_Z_SET, 0x01); break; - case 88: - break; + /** + * G88: Prusa3D specific: Don't know what it is for, it is in V2Calibration.gcode + */ + case 88: + break; #endif // ENABLE_MESH_BED_LEVELING