diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-04-17 17:47:26 -0400 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2016-04-17 17:47:26 -0400 |
commit | f1fdeddad3e5179b39d1b107afc008575cd7d3cb (patch) | |
tree | 4426316d275d5ca391319d616a9394ede21dddbd /quantum | |
parent | a67d425f4d5278595e7ab785a0f246b83fb1a09f (diff) | |
parent | 90289aa53fe06a867c773d447c6d3a950575d69a (diff) |
Merge pull request #261 from a0-c/master
__attribute__ ((weak)) added to led_set
Diffstat (limited to 'quantum')
-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) { |