diff options
author | Ralf Schmitt <ralf@bunkertor.net> | 2014-11-23 13:29:07 +0100 |
---|---|---|
committer | Ralf Schmitt <ralf@bunkertor.net> | 2015-01-18 11:45:24 +0100 |
commit | 2d740203318e2b0164e584a853bd0172dd9127cb (patch) | |
tree | e121f8e3ee75fbe4698eca805dd9826c316805d8 /keyboard/nerd/led.c | |
parent | d9b5f5110ebf3e7da6a11e8640fb4367114aed67 (diff) | |
download | qmk_firmware-2d740203318e2b0164e584a853bd0172dd9127cb.tar.gz qmk_firmware-2d740203318e2b0164e584a853bd0172dd9127cb.tar.xz |
Added NerD 80% (TKL) support
Diffstat (limited to 'keyboard/nerd/led.c')
-rw-r--r-- | keyboard/nerd/led.c | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/keyboard/nerd/led.c b/keyboard/nerd/led.c deleted file mode 100644 index 7d9ce6d87..000000000 --- a/keyboard/nerd/led.c +++ /dev/null @@ -1,25 +0,0 @@ -/* -Copyright 2014 Ralf Schmitt <ralf@bunkertor.net> - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 2 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see <http://www.gnu.org/licenses/>. -*/ - -#include <avr/io.h> -#include "stdint.h" -#include "led.h" - -void led_set(uint8_t usb_led) -{ - (usb_led & (1<<USB_LED_CAPS_LOCK)) ? backlight_caps_enable() : backlight_caps_disable(); -} |