Browse Source
Fix Emergency Parser on DUE (#17276)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
vanilla_fb_2.0.x
ellensp
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
Marlin/src/HAL/DUE/HAL.h
|
|
@ -39,7 +39,7 @@ |
|
|
|
#include <stdint.h> |
|
|
|
|
|
|
|
// Define MYSERIAL0/1 before MarlinSerial includes!
|
|
|
|
#if SERIAL_PORT == -1 |
|
|
|
#if SERIAL_PORT == -1 || ENABLED(EMERGENCY_PARSER) |
|
|
|
#define MYSERIAL0 customizedSerial1 |
|
|
|
#elif SERIAL_PORT == 0 |
|
|
|
#define MYSERIAL0 Serial |
|
|
@ -56,7 +56,7 @@ |
|
|
|
#ifdef SERIAL_PORT_2 |
|
|
|
#if SERIAL_PORT_2 == SERIAL_PORT |
|
|
|
#error "SERIAL_PORT_2 must be different from SERIAL_PORT. Please update your configuration." |
|
|
|
#elif SERIAL_PORT_2 == -1 |
|
|
|
#elif SERIAL_PORT_2 == -1 || ENABLED(EMERGENCY_PARSER) |
|
|
|
#define MYSERIAL1 customizedSerial2 |
|
|
|
#elif SERIAL_PORT_2 == 0 |
|
|
|
#define MYSERIAL1 Serial |
|
|
|