diff options
Diffstat (limited to 'keyboards/atomic/atomic.c')
-rw-r--r-- | keyboards/atomic/atomic.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/keyboards/atomic/atomic.c b/keyboards/atomic/atomic.c new file mode 100644 index 000000000..6f393315e --- /dev/null +++ b/keyboards/atomic/atomic.c @@ -0,0 +1,15 @@ +#include "atomic.h" + +void matrix_init_kb(void) { + // put your keyboard start-up code here + // runs once when the firmware starts up + + MCUCR |= (1<<JTD); + MCUCR |= (1<<JTD); + + // Turn status LED on + DDRE |= (1<<6); + PORTE |= (1<<6); + + matrix_init_user(); +}
\ No newline at end of file |