Browse Source

🩹 Fix LPC176x USB Host Shield (#24588)

Travis Ziegler 1 year ago
parent
commit
1866e25eef
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/sd/usb_flashdrive/lib-uhs2/message.cpp

+ 1
- 1
Marlin/src/sd/usb_flashdrive/lib-uhs2/message.cpp View File

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

Loading…
Cancel
Save