0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-03-13 01:40:09 +00:00

🩹 Fix LPC176x USB Host Shield (#24588)

This commit is contained in:
Travis Ziegler 2022-08-05 22:37:24 -04:00 committed by GitHub
parent ec4db07a51
commit 1866e25eef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -59,7 +59,7 @@ void E_NotifyStr(char const * msg, int lvl) {
void E_Notify(uint8_t b, int lvl) {
if (UsbDEBUGlvl < lvl) return;
USB_HOST_SERIAL.print(b
#if !defined(ARDUINO) || ARDUINO < 100
#if !defined(ARDUINO) && !defined(ARDUINO_ARCH_LPC176X)
, DEC
#endif
);