Explorar el Código

🩹 Fix LPC176x USB Host Shield (#24588)

Travis Ziegler hace 1 año
padre
commit
1866e25eef
No account linked to committer's email address
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      Marlin/src/sd/usb_flashdrive/lib-uhs2/message.cpp

+ 1
- 1
Marlin/src/sd/usb_flashdrive/lib-uhs2/message.cpp Ver fichero

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

Loading…
Cancelar
Guardar