Skip to content

Commit

Permalink
Fix serial temp chamber reported if not enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
bkerler committed Feb 1, 2025
1 parent 18b4c3c commit b00ced4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/Marlin/Marlin/src/module/temperature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3840,8 +3840,10 @@ void Temperature::isr() {
#if HAS_HEATED_BED
SERIAL_ECHOPAIR(" B@:", getHeaterPower(H_BED));
#endif
#if HAS_HEATED_CHAMBER
SERIAL_ECHOPAIR(" C@:", getHeaterPower(H_CHAMBER));
#if HAS_TEMP_CHAMBER
#if HAS_HEATED_CHAMBER
SERIAL_ECHOPAIR(" C@:", getHeaterPower(H_CHAMBER));
#endif
#endif
#if HAS_TEMP_HEATBREAK
SERIAL_ECHOPAIR(" HBR@:", getHeaterPower((heater_ind_t)(H_HEATBREAK_E0 + target_extruder)));
Expand Down

0 comments on commit b00ced4

Please sign in to comment.