diff options
author | Ryan <fauxpark@gmail.com> | 2021-12-27 21:10:07 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-27 21:10:07 +1100 |
commit | 6bc870d899c474bce82457699ec4b753d1538123 (patch) | |
tree | 600b8dda41f4b90f98199d4afd3037374a679a74 /tmk_core/protocol/arm_atsam/usb | |
parent | cffe143ca20d938c910b59410dcd3d96dd7d433b (diff) |
Refactor `bootloader_jump()` implementations (#15450)
* Refactor `bootloader_jump()` implementations
* Fix tests?
* Rename `atmel-samba` to `md-boot`
Diffstat (limited to 'tmk_core/protocol/arm_atsam/usb')
-rw-r--r-- | tmk_core/protocol/arm_atsam/usb/udc.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tmk_core/protocol/arm_atsam/usb/udc.c b/tmk_core/protocol/arm_atsam/usb/udc.c index d04e9b7b28..1f0c0d95d6 100644 --- a/tmk_core/protocol/arm_atsam/usb/udc.c +++ b/tmk_core/protocol/arm_atsam/usb/udc.c @@ -51,7 +51,8 @@ #include "udi_device_conf.h" #include "udi.h" #include "udc.h" -#include "md_bootloader.h" + +#define BOOTLOADER_SERIAL_MAX_SIZE 20 // DO NOT MODIFY! /** * \ingroup udc_group @@ -122,6 +123,8 @@ static uint8_t udc_string_product_name[] = USB_DEVICE_PRODUCT_NAME; # define USB_DEVICE_SERIAL_NAME_SIZE 0 #endif +extern uint32_t _srom; + uint8_t usb_device_serial_name_size = 0; #if defined USB_DEVICE_SERIAL_USE_BOOTLOADER_SERIAL uint8_t bootloader_serial_number[BOOTLOADER_SERIAL_MAX_SIZE + 1] = ""; |