~ruther/qmk_firmware

c59df9a54cb7ea680cbae9a57f3a665802c9c739 — Joel Challis 2 years ago ab4cf9a
Fix some rp2040 hardware ID errors (#18617)

1 files changed, 3 insertions(+), 0 deletions(-)

M platforms/chibios/hardware_id.c
M platforms/chibios/hardware_id.c => platforms/chibios/hardware_id.c +3 -0
@@ 7,6 7,9 @@
hardware_id_t get_hardware_id(void) {
    hardware_id_t id = {0};
#if defined(RP2040)
    // Forward declare as including "hardware/flash.h" here causes more issues...
    void flash_get_unique_id(uint8_t *);

    flash_get_unique_id((uint8_t *)&id);
#elif defined(UID_BASE)
    id.data[0] = (uint32_t)(*((uint32_t *)UID_BASE));