diff options
| author | Hierophect <hierophect@gmail.com> | 2019-07-01 19:47:10 -0400 |
|---|---|---|
| committer | Hierophect <hierophect@gmail.com> | 2019-07-01 19:47:10 -0400 |
| commit | 040acc3a3228c4204d8154656a1249171b68c75a (patch) | |
| tree | 3779fce6327c7396d1d2e02ca1426bc64dffbc31 /supervisor/shared | |
| parent | 94a2eff05c410ee6a111efa0c48abd78b3518092 (diff) | |
remove dependencies for stable build
Diffstat (limited to 'supervisor/shared')
| -rwxr-xr-x | supervisor/shared/memory.c | 2 | ||||
| -rw-r--r-- | supervisor/shared/usb/usb.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/supervisor/shared/memory.c b/supervisor/shared/memory.c index 11133415d..c9c4bc2d5 100755 --- a/supervisor/shared/memory.c +++ b/supervisor/shared/memory.c @@ -118,5 +118,5 @@ supervisor_allocation* allocate_memory(uint32_t length, bool high) { } void supervisor_move_memory(void) { - supervisor_display_move_memory(); + //supervisor_display_move_memory(); } diff --git a/supervisor/shared/usb/usb.c b/supervisor/shared/usb/usb.c index 0678a3a3f..ec778e91c 100644 --- a/supervisor/shared/usb/usb.c +++ b/supervisor/shared/usb/usb.c @@ -41,7 +41,7 @@ extern uint16_t usb_serial_number[1 + COMMON_HAL_MCU_PROCESSOR_UID_LENGTH * 2]; void load_serial_number(void) { // create serial number based on device unique id uint8_t raw_id[COMMON_HAL_MCU_PROCESSOR_UID_LENGTH]; - common_hal_mcu_processor_get_uid(raw_id); + //common_hal_mcu_processor_get_uid(raw_id); static const char nibble_to_hex[16] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'}; |
