Solved minor bug in controllerFan()
Extruder 2 was checked where extruder 1 should be checked.
This commit is contained in:
parent
727aa2a051
commit
fc4ab05157
@ -1974,7 +1974,7 @@ void controllerFan()
|
|||||||
|| !READ(E2_ENABLE_PIN)
|
|| !READ(E2_ENABLE_PIN)
|
||||||
#endif
|
#endif
|
||||||
#if EXTRUDER > 1
|
#if EXTRUDER > 1
|
||||||
|| !READ(E2_ENABLE_PIN)
|
|| !READ(E1_ENABLE_PIN)
|
||||||
#endif
|
#endif
|
||||||
|| !READ(E0_ENABLE_PIN)) //If any of the drivers are enabled...
|
|| !READ(E0_ENABLE_PIN)) //If any of the drivers are enabled...
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user