diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-12-05 21:22:34 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-12-24 11:42:19 -0500 |
commit | b84ecebf8f005175549297f1a818cf65822c3106 (patch) | |
tree | ce23fd9d131a07656775ea543dfe5b9af395b652 /src/stm32f1/usbserial.c | |
parent | c6065e29a6f652e6673d790f1200cd8bf0817673 (diff) | |
download | kutter-b84ecebf8f005175549297f1a818cf65822c3106.tar.gz kutter-b84ecebf8f005175549297f1a818cf65822c3106.tar.xz kutter-b84ecebf8f005175549297f1a818cf65822c3106.zip |
usb_cdc: Add support for detecting a USB level Arduino bootloader request
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/stm32f1/usbserial.c')
-rw-r--r-- | src/stm32f1/usbserial.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/stm32f1/usbserial.c b/src/stm32f1/usbserial.c index f9e46d8c..20e1da0d 100644 --- a/src/stm32f1/usbserial.c +++ b/src/stm32f1/usbserial.c @@ -211,6 +211,11 @@ usb_set_configure(void) { } +void +usb_request_bootloader(void) +{ +} + /**************************************************************** * Setup and interrupts |