Browse Source

Merge pull request #2076 from thinkyhead/mendel_inverting

Use MSG_OK in M105
Scott Lahteine 9 years ago
parent
commit
e97fcafd0e
1 changed files with 1 additions and 2 deletions
  1. 1
    2
      Marlin/Marlin_main.cpp

+ 1
- 2
Marlin/Marlin_main.cpp View File

@@ -1810,7 +1810,6 @@ inline void gcode_G0_G1() {
1810 1810
     #endif //FWRETRACT
1811 1811
 
1812 1812
     prepare_move();
1813
-    //ok_to_send();
1814 1813
   }
1815 1814
 }
1816 1815
 
@@ -3372,7 +3371,7 @@ inline void gcode_M105() {
3372 3371
   if (setTargetedHotend(105)) return;
3373 3372
 
3374 3373
   #if HAS_TEMP_0 || HAS_TEMP_BED || defined(HEATER_0_USES_MAX6675)
3375
-    SERIAL_PROTOCOLPGM("ok");
3374
+    SERIAL_PROTOCOLPGM(MSG_OK);
3376 3375
     #if HAS_TEMP_0
3377 3376
       SERIAL_PROTOCOLPGM(" T:");
3378 3377
       SERIAL_PROTOCOL_F(degHotend(target_extruder), 1);

Loading…
Cancel
Save