浏览代码

Merge pull request #2187 from AnHardt/MAX6675M105

Print active extruder with M105 for MAX6675
Scott Lahteine 10 年前
父节点
当前提交
a672872717
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp 查看文件

@@ -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(" /");

正在加载...
取消
保存