Browse Source

Merge pull request #2187 from AnHardt/MAX6675M105

Print active extruder with M105 for MAX6675
Scott Lahteine 10 years ago
parent
commit
a672872717
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp View File

@@ -3385,7 +3385,7 @@ inline void gcode_M105() {
3385 3385
 
3386 3386
   #if HAS_TEMP_0 || HAS_TEMP_BED || defined(HEATER_0_USES_MAX6675)
3387 3387
     SERIAL_PROTOCOLPGM(MSG_OK);
3388
-    #if HAS_TEMP_0
3388
+    #if HAS_TEMP_0 || defined(HEATER_0_USES_MAX6675)
3389 3389
       SERIAL_PROTOCOLPGM(" T:");
3390 3390
       SERIAL_PROTOCOL_F(degHotend(target_extruder), 1);
3391 3391
       SERIAL_PROTOCOLPGM(" /");

Loading…
Cancel
Save