Browse Source

Fix DUE HAL serial defines (#15594)

pull/1/head
Evgeny Zyatkov 5 years ago
committed by Scott Lahteine
parent
commit
9470554f63
  1. 4
      Marlin/src/HAL/HAL_DUE/HAL.h

4
Marlin/src/HAL/HAL_DUE/HAL.h

@ -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

Loading…
Cancel
Save