Browse Source

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

Fix for PR #4452 (Additional heater-state output changes)
pull/1/head
Scott Lahteine 8 years ago
committed by GitHub
parent
commit
3633d4978b
  1. 6
      Marlin/Marlin_main.cpp

6
Marlin/Marlin_main.cpp

@ -4462,7 +4462,7 @@ inline void gcode_M104() {
SERIAL_PROTOCOL_F(thermalManager.degTargetHotend(target_extruder), 1);
#if ENABLED(SHOW_TEMP_ADC_VALUES)
SERIAL_PROTOCOLPAIR(" (", thermalManager.current_temperature_raw[target_extruder] / OVERSAMPLENR);
SERIAL_CHAR(')')
SERIAL_CHAR(')');
#endif
#endif
#if HAS_TEMP_BED
@ -4472,7 +4472,7 @@ inline void gcode_M104() {
SERIAL_PROTOCOL_F(thermalManager.degTargetBed(), 1);
#if ENABLED(SHOW_TEMP_ADC_VALUES)
SERIAL_PROTOCOLPAIR(" (", thermalManager.current_temperature_bed_raw / OVERSAMPLENR);
SERIAL_CHAR(')')
SERIAL_CHAR(')');
#endif
#endif
#if HOTENDS > 1
@ -4484,7 +4484,7 @@ inline void gcode_M104() {
SERIAL_PROTOCOL_F(thermalManager.degTargetHotend(e), 1);
#if ENABLED(SHOW_TEMP_ADC_VALUES)
SERIAL_PROTOCOLPAIR(" (", thermalManager.current_temperature_raw[e] / OVERSAMPLENR);
SERIAL_CHAR(')')
SERIAL_CHAR(')');
#endif
}
#endif

Loading…
Cancel
Save