diff options
author | Joy Lee <joylee.lc@foxmail.com> | 2023-09-12 13:57:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-12 15:57:18 +1000 |
commit | bd2e59af60a9ceacb1e6806c594caea3de9592e5 (patch) | |
tree | 30550e5d9f1204f72123ddb7affe69b0b29fc662 /platforms/chibios/boards | |
parent | 909054c35772ae62d6d2de0cefd1bef18762e754 (diff) |
Fixed WB32 MCU remote wakeup issue (#20863)
Co-authored-by: Joy <chang.li@westberrytech.com>
Diffstat (limited to 'platforms/chibios/boards')
-rw-r--r-- | platforms/chibios/boards/GENERIC_WB32_F3G71XX/board/board.c | 5 | ||||
-rw-r--r-- | platforms/chibios/boards/GENERIC_WB32_FQ95XX/board/board.c | 5 |
2 files changed, 2 insertions, 8 deletions
diff --git a/platforms/chibios/boards/GENERIC_WB32_F3G71XX/board/board.c b/platforms/chibios/boards/GENERIC_WB32_F3G71XX/board/board.c index f74c9e8be7..80472b88f7 100644 --- a/platforms/chibios/boards/GENERIC_WB32_F3G71XX/board/board.c +++ b/platforms/chibios/boards/GENERIC_WB32_F3G71XX/board/board.c @@ -73,6 +73,7 @@ void __early_init(void) { wb32_clock_init(); wb32_gpio_init(); } + /** * @brief Board-specific initialization code. * @note You can add your board-specific code here. @@ -80,7 +81,3 @@ void __early_init(void) { void boardInit(void) { } - -void restart_usb_driver(USBDriver *usbp) { - // Do nothing. Restarting the USB driver on these boards breaks it. -} diff --git a/platforms/chibios/boards/GENERIC_WB32_FQ95XX/board/board.c b/platforms/chibios/boards/GENERIC_WB32_FQ95XX/board/board.c index a99537fc27..5701fd2e0d 100644 --- a/platforms/chibios/boards/GENERIC_WB32_FQ95XX/board/board.c +++ b/platforms/chibios/boards/GENERIC_WB32_FQ95XX/board/board.c @@ -73,6 +73,7 @@ void __early_init(void) { wb32_clock_init(); wb32_gpio_init(); } + /** * @brief Board-specific initialization code. * @note You can add your board-specific code here. @@ -80,7 +81,3 @@ void __early_init(void) { void boardInit(void) { } - -void restart_usb_driver(USBDriver *usbp) { - // Do nothing. Restarting the USB driver on these boards breaks it. -} |