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

Loading…
Cancel
Save