From 144acfcb988479d6e5802bfa600a62be39d39be7 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Sun, 21 Feb 2021 21:24:49 -0600 Subject: USB descriptors: Save flash storage for serial number This saves about 60 bytes (Feather M4 went from 45040 -> 45100 bytes free) 66 bytes of data eliminated, but 6 bytes paid back to initialize the length field. --- supervisor/shared/usb/usb.c | 1 + 1 file changed, 1 insertion(+) (limited to 'supervisor') diff --git a/supervisor/shared/usb/usb.c b/supervisor/shared/usb/usb.c index 5b020b8a0..3c777c505 100644 --- a/supervisor/shared/usb/usb.c +++ b/supervisor/shared/usb/usb.c @@ -62,6 +62,7 @@ void load_serial_number(void) { uint8_t raw_id[COMMON_HAL_MCU_PROCESSOR_UID_LENGTH]; common_hal_mcu_processor_get_uid(raw_id); + usb_serial_number[0] = 0x300 | MP_ARRAY_SIZE(usb_serial_number); for (int i = 0; i < COMMON_HAL_MCU_PROCESSOR_UID_LENGTH; i++) { for (int j = 0; j < 2; j++) { uint8_t nibble = (raw_id[i] >> (j * 4)) & 0xf; -- cgit v1.2.3