Ver código fonte

🩹 Fix LPC176x USB Host Shield (#24588)

Travis Ziegler 1 ano atrás
pai
commit
1866e25eef
Nenhuma conta vinculada ao e-mail do autor do commit
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      Marlin/src/sd/usb_flashdrive/lib-uhs2/message.cpp

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

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

Carregando…
Cancelar
Salvar