diff options
author | a0-c <g1@porkhash.net> | 2016-04-17 06:51:39 -1000 |
---|---|---|
committer | a0-c <g1@porkhash.net> | 2016-04-17 06:51:39 -1000 |
commit | 90289aa53fe06a867c773d447c6d3a950575d69a (patch) | |
tree | 4426316d275d5ca391319d616a9394ede21dddbd /quantum/led.c | |
parent | a67d425f4d5278595e7ab785a0f246b83fb1a09f (diff) | |
download | qmk_firmware-90289aa53fe06a867c773d447c6d3a950575d69a.tar.gz qmk_firmware-90289aa53fe06a867c773d447c6d3a950575d69a.zip |
__attribute__ ((weak)) added to led_set
__attribute__ ((weak)) added to led_set
Diffstat (limited to 'quantum/led.c')
-rw-r--r-- | quantum/led.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/quantum/led.c b/quantum/led.c index 9cdb8a5c20..208e348f34 100644 --- a/quantum/led.c +++ b/quantum/led.c @@ -24,6 +24,7 @@ void led_set_kb(uint8_t usb_led) { } +__attribute__ ((weak)) void led_set(uint8_t usb_led) { |