Browse Source

Print active extruder with M105 for MAX6675

Was omitted when T0 is a MAX6675.
AnHardt 10 years ago
parent
commit
af7e3f5076
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp View File

3388
 
3388
 
3389
   #if HAS_TEMP_0 || HAS_TEMP_BED || defined(HEATER_0_USES_MAX6675)
3389
   #if HAS_TEMP_0 || HAS_TEMP_BED || defined(HEATER_0_USES_MAX6675)
3390
     SERIAL_PROTOCOLPGM(MSG_OK);
3390
     SERIAL_PROTOCOLPGM(MSG_OK);
3391
-    #if HAS_TEMP_0
3391
+    #if HAS_TEMP_0 || defined(HEATER_0_USES_MAX6675)
3392
       SERIAL_PROTOCOLPGM(" T:");
3392
       SERIAL_PROTOCOLPGM(" T:");
3393
       SERIAL_PROTOCOL_F(degHotend(target_extruder), 1);
3393
       SERIAL_PROTOCOL_F(degHotend(target_extruder), 1);
3394
       SERIAL_PROTOCOLPGM(" /");
3394
       SERIAL_PROTOCOLPGM(" /");

Loading…
Cancel
Save