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/rev1/rev1.c | |
parent | 14b7602a65dedaf51db1c9288144765d43a83a15 (diff) |
Fix Atom47 Keyboard
Diffstat (limited to 'keyboards/atom47/rev1/rev1.c')
-rw-r--r-- | keyboards/atom47/rev1/rev1.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/keyboards/atom47/rev1/rev1.c b/keyboards/atom47/rev1/rev1.c new file mode 100644 index 0000000000..816b43b9ab --- /dev/null +++ b/keyboards/atom47/rev1/rev1.c @@ -0,0 +1,24 @@ +#include "rev1.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); +} |