Fix SAMD Serial name macro (#19765)

This commit is contained in:
Jason Smith 2020-10-16 14:04:51 -07:00 committed by GitHub
parent a4b89e67c6
commit 9b9cd698a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,7 +35,8 @@
// MYSERIAL0 required before MarlinSerial includes!
#define _MSERIAL(X) Serial##X
#define __MSERIAL(X) Serial##X
#define _MSERIAL(X) __MSERIAL(X)
#define MSERIAL(X) _MSERIAL(INCREMENT(X))
#if SERIAL_PORT == -1