Browse Source

🩹 Fix LPC176x USB Host Shield (#24588)

FB4S_WIFI
Travis Ziegler 2 years ago
committed by Scott Lahteine
parent
commit
98095ddad6
  1. 2
      Marlin/src/sd/usb_flashdrive/lib-uhs2/message.cpp

2
Marlin/src/sd/usb_flashdrive/lib-uhs2/message.cpp

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

Loading…
Cancel
Save