Browse Source

Merge pull request #4475 from esenapaj/Fix-for-PR-#4452

Fix for PR #4452 (Additional heater-state output changes)
Scott Lahteine 9 years ago
parent
commit
3633d4978b
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      Marlin/Marlin_main.cpp

+ 3
- 3
Marlin/Marlin_main.cpp View File

@@ -4462,7 +4462,7 @@ inline void gcode_M104() {
4462 4462
       SERIAL_PROTOCOL_F(thermalManager.degTargetHotend(target_extruder), 1);
4463 4463
       #if ENABLED(SHOW_TEMP_ADC_VALUES)
4464 4464
         SERIAL_PROTOCOLPAIR(" (", thermalManager.current_temperature_raw[target_extruder] / OVERSAMPLENR);
4465
-        SERIAL_CHAR(')')
4465
+        SERIAL_CHAR(')');
4466 4466
       #endif
4467 4467
     #endif
4468 4468
     #if HAS_TEMP_BED
@@ -4472,7 +4472,7 @@ inline void gcode_M104() {
4472 4472
       SERIAL_PROTOCOL_F(thermalManager.degTargetBed(), 1);
4473 4473
       #if ENABLED(SHOW_TEMP_ADC_VALUES)
4474 4474
         SERIAL_PROTOCOLPAIR(" (", thermalManager.current_temperature_bed_raw / OVERSAMPLENR);
4475
-        SERIAL_CHAR(')')
4475
+        SERIAL_CHAR(')');
4476 4476
       #endif
4477 4477
     #endif
4478 4478
     #if HOTENDS > 1
@@ -4484,7 +4484,7 @@ inline void gcode_M104() {
4484 4484
         SERIAL_PROTOCOL_F(thermalManager.degTargetHotend(e), 1);
4485 4485
         #if ENABLED(SHOW_TEMP_ADC_VALUES)
4486 4486
           SERIAL_PROTOCOLPAIR(" (", thermalManager.current_temperature_raw[e] / OVERSAMPLENR);
4487
-          SERIAL_CHAR(')')
4487
+          SERIAL_CHAR(')');
4488 4488
         #endif
4489 4489
       }
4490 4490
     #endif

Loading…
Cancel
Save