Malyan M200 fix E0_AUTO_FAN_PIN (#9580)

Fixes #8794
This commit is contained in:
Scott Lahteine
2018-02-10 20:04:09 -06:00
committed by GitHub
parent 33752de12d
commit 3e384b60ce
6 changed files with 50 additions and 31 deletions

View File

@ -106,6 +106,15 @@
*/
#define SERIAL_PORT 0
/**
* Select a secondary serial port on the board to use for communication with the host.
* This allows the connection of wireless adapters (for instance) to non-default port pins.
* Serial port -1 is the USB emulated serial port, if avaialble.
*
* :[-1, 0, 1, 2, 3, 4, 5, 6, 7]
*/
#define SERIAL_PORT_2 -1
/**
* This setting determines the communication speed of the printer.
*

View File

@ -214,7 +214,7 @@
* Multiple extruders can be assigned to the same pin in which case
* the fan will turn on when any selected extruder is above the threshold.
*/
#define E0_AUTO_FAN_PIN PB8
//#define E0_AUTO_FAN_PIN -1
#define E1_AUTO_FAN_PIN -1
#define E2_AUTO_FAN_PIN -1
#define E3_AUTO_FAN_PIN -1