diff options
author | Drashna Jaelre <drashna@live.com> | 2018-05-04 11:06:04 -0700 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2018-05-08 15:26:08 -0400 |
commit | d678724ca8978b4d0ad981d11be4171e6315caca (patch) | |
tree | a7bec942c8021ddaa6a2d5a717ebcbe2ce1c8e15 /keyboards/atom47/atom47.c | |
parent | 14b7602a65dedaf51db1c9288144765d43a83a15 (diff) |
Fix Atom47 Keyboard
Diffstat (limited to 'keyboards/atom47/atom47.c')
-rw-r--r-- | keyboards/atom47/atom47.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/keyboards/atom47/atom47.c b/keyboards/atom47/atom47.c deleted file mode 100644 index fac22f7786..0000000000 --- a/keyboards/atom47/atom47.c +++ /dev/null @@ -1,24 +0,0 @@ -#include "atom47.h" -#include "led.h" - -void matrix_init_kb(void) { - // put your keyboard start-up code here - // runs once when the firmware starts up - matrix_init_user(); - led_init_ports(); -}; - -void matrix_scan_kb(void) { - // put your looping keyboard code here - // runs every cycle (a lot) - matrix_scan_user(); -}; - -void led_init_ports(void) { - // * Set our LED pins as output - DDRE |= (1 << 6); -} - -void led_set_kb(uint8_t usb_led) { - led_set_user(usb_led); -} |