summaryrefslogtreecommitdiff
path: root/keyboard/atomic/led.c
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2015-01-14 22:43:01 -0500
committerJack Humbert <jack.humb@gmail.com>2015-01-14 22:43:01 -0500
commit4225f0353c2eb85fbd8ca0622eb89757975093e4 (patch)
treec9a21434e23181b41555b93a7488a65ccbcc3e83 /keyboard/atomic/led.c
parente4c4d6ad0aa5763504802ae22c6b4504b4084a45 (diff)
parent173dbe3b283ad4bb9bca2f2ac781eadd5c413bb3 (diff)
Merge branch 'planck-jack'
Diffstat (limited to 'keyboard/atomic/led.c')
-rw-r--r--keyboard/atomic/led.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/keyboard/atomic/led.c b/keyboard/atomic/led.c
new file mode 100644
index 0000000000..7c98510801
--- /dev/null
+++ b/keyboard/atomic/led.c
@@ -0,0 +1,34 @@
+/*
+Copyright 2012 Jun Wako <wakojun@gmail.com>
+
+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)
+{
+ if (usb_led & (1<<USB_LED_FUNCTION)) {
+ // Output high.
+ DDRF |= (1<<0);
+ PORTF |= (1<<0);
+ } else {
+ // Output low.
+ DDRF &= ~(1<<0);
+ PORTF &= ~(1<<0);
+ }
+}