Skip to content

Commit

Permalink
🩹 Fix LPC176x USB Host Shield (#24588)
Browse files Browse the repository at this point in the history
  • Loading branch information
travisjayday authored Aug 6, 2022
1 parent ec4db07 commit 1866e25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/sd/usb_flashdrive/lib-uhs2/message.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
);
Expand Down

0 comments on commit 1866e25

Please sign in to comment.