Skip to content

Commit

Permalink
🐛 Emergency Parser with STM32 Mass Storage (MarlinFirmware#23827)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackwilsdon authored Mar 4, 2022
1 parent 687dc9a commit 0e1ecf1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Marlin/src/HAL/STM32/HAL.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ void MarlinHAL::init() {

SetTimerInterruptPriorities();

#if ENABLED(EMERGENCY_PARSER) && USBD_USE_CDC
#if ENABLED(EMERGENCY_PARSER) && (USBD_USE_CDC || USBD_USE_CDC_MSC)
USB_Hook_init();
#endif

Expand Down
2 changes: 1 addition & 1 deletion Marlin/src/HAL/STM32/usb_serial.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

#include "../../inc/MarlinConfigPre.h"

#if ENABLED(EMERGENCY_PARSER) && USBD_USE_CDC
#if ENABLED(EMERGENCY_PARSER) && (USBD_USE_CDC || USBD_USE_CDC_MSC)

#include "usb_serial.h"
#include "../../feature/e_parser.h"
Expand Down

0 comments on commit 0e1ecf1

Please sign in to comment.