Fix DUE HAL serial defines (#15594)

This commit is contained in:
Evgeny Zyatkov 2019-10-19 20:30:38 +03:00 committed by Scott Lahteine
parent f368c14a61
commit 9470554f63

View File

@ -40,7 +40,7 @@
// Define MYSERIAL0/1 before MarlinSerial includes!
#if SERIAL_PORT == -1
#define MYSERIAL0 Serial1
#define MYSERIAL0 customizedSerial1
#elif SERIAL_PORT == 0
#define MYSERIAL0 Serial
#elif SERIAL_PORT == 1
@ -58,7 +58,7 @@
#error "SERIAL_PORT_2 must be different from SERIAL_PORT. Please update your configuration."
#endif
#if SERIAL_PORT_2 == -1
#define MYSERIAL1 Serial1
#define MYSERIAL1 customizedSerial2
#elif SERIAL_PORT_2 == 0
#define MYSERIAL1 Serial
#elif SERIAL_PORT_2 == 1