Update ChibiOS hardware ID (#18613)

This commit is contained in:
Joel Challis 2022-10-05 21:20:09 +01:00 committed by GitHub
parent 7f43e3ba19
commit f120b39fb0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,10 +6,12 @@
hardware_id_t get_hardware_id(void) {
hardware_id_t id = {0};
#ifdef UID_BASE
#if defined(RP2040)
flash_get_unique_id((uint8_t *)&id);
#elif defined(UID_BASE)
id.data[0] = (uint32_t)(*((uint32_t *)UID_BASE));
id.data[1] = (uint32_t)(*((uint32_t *)(UID_BASE + 4)));
id.data[1] = (uint32_t)(*((uint32_t *)(UID_BASE + 8)));
id.data[2] = (uint32_t)(*((uint32_t *)(UID_BASE + 8)));
#endif
return id;
}