diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2022-07-25 13:17:23 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2022-07-29 11:40:54 -0400 |
commit | 18ff84aa04c3dbf39166d4bad210e91a9381960f (patch) | |
tree | 543ed2f14b4176a4ce7e8507cc3a2371dcc64b65 /src/stm32/stm32f1.c | |
parent | 48b60a8021bd02d998fd3d6ea9e55645e3dc75e4 (diff) | |
download | kutter-18ff84aa04c3dbf39166d4bad210e91a9381960f.tar.gz kutter-18ff84aa04c3dbf39166d4bad210e91a9381960f.tar.xz kutter-18ff84aa04c3dbf39166d4bad210e91a9381960f.zip |
usb_cdc: Rename usb_request_bootloader() to bootloader_request()
Rename this board API function to a more generic name. This is in
preparation for calling the function from the canbus code.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/stm32/stm32f1.c')
-rw-r--r-- | src/stm32/stm32f1.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/stm32/stm32f1.c b/src/stm32/stm32f1.c index 820a5518..9d3c3b97 100644 --- a/src/stm32/stm32f1.c +++ b/src/stm32/stm32f1.c @@ -1,6 +1,6 @@ // Code to setup clocks and gpio on stm32f1 // -// Copyright (C) 2019-2021 Kevin O'Connor <kevin@koconnor.net> +// Copyright (C) 2019-2022 Kevin O'Connor <kevin@koconnor.net> // // This file may be distributed under the terms of the GNU GPLv3 license. @@ -8,7 +8,7 @@ #include "board/armcm_boot.h" // VectorTable #include "board/armcm_reset.h" // try_request_canboot #include "board/irq.h" // irq_disable -#include "board/usb_cdc.h" // usb_request_bootloader +#include "board/misc.h" // bootloader_request #include "internal.h" // enable_pclock #include "sched.h" // sched_main @@ -213,7 +213,7 @@ gpio_peripheral(uint32_t gpio, uint32_t mode, int pullup) /**************************************************************** - * USB bootloader + * Bootloader ****************************************************************/ // Reboot into USB "HID" bootloader @@ -240,9 +240,9 @@ usb_stm32duino_bootloader(void) NVIC_SystemReset(); } -// Handle USB reboot requests +// Handle reboot requests void -usb_request_bootloader(void) +bootloader_request(void) { try_request_canboot(); if (CONFIG_STM32_FLASH_START_800) |