浏览代码

Solved minor bug in controllerFan()

Extruder 2 was checked where extruder 1 should be checked.
Arnoud 12 年前
父节点
当前提交
fc4ab05157
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      Marlin/Marlin_main.cpp

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

1974
        || !READ(E2_ENABLE_PIN)
1974
        || !READ(E2_ENABLE_PIN)
1975
     #endif
1975
     #endif
1976
     #if EXTRUDER > 1
1976
     #if EXTRUDER > 1
1977
-       || !READ(E2_ENABLE_PIN)
1977
+       || !READ(E1_ENABLE_PIN)
1978
     #endif
1978
     #endif
1979
        || !READ(E0_ENABLE_PIN)) //If any of the drivers are enabled...    
1979
        || !READ(E0_ENABLE_PIN)) //If any of the drivers are enabled...    
1980
     {
1980
     {

正在加载...
取消
保存