logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git
commit: 3a711f4cfa71419a22a22139d68c647ffa3f1fe4
parent cd22b8a9458fbe17b68bdd360822db696b559dfe
Author: Nick Brassel <nick@tzarc.org>
Date:   Fri,  5 Jul 2024 11:22:08 +1000

Allow overriding `get_hardware_id()`. (#24051)


Diffstat:

Mplatforms/arm_atsam/hardware_id.c2+-
Mplatforms/avr/hardware_id.c2+-
Mplatforms/chibios/hardware_id.c2+-
3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/platforms/arm_atsam/hardware_id.c b/platforms/arm_atsam/hardware_id.c @@ -3,7 +3,7 @@ #include "hardware_id.h" -hardware_id_t get_hardware_id(void) { +__attribute__((weak)) hardware_id_t get_hardware_id(void) { hardware_id_t id = {0}; return id; } diff --git a/platforms/avr/hardware_id.c b/platforms/avr/hardware_id.c @@ -10,7 +10,7 @@ #include <avr/boot.h> #include "hardware_id.h" -hardware_id_t get_hardware_id(void) { +__attribute__((weak)) hardware_id_t get_hardware_id(void) { hardware_id_t id = {0}; for (uint8_t i = 0; i < 10; i += 1) { ((uint8_t*)&id)[i] = boot_signature_byte_get(i + 0x0E); diff --git a/platforms/chibios/hardware_id.c b/platforms/chibios/hardware_id.c @@ -4,7 +4,7 @@ #include <ch.h> #include "hardware_id.h" -hardware_id_t get_hardware_id(void) { +__attribute__((weak)) 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...