]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/atomic/atomic.c
Remove more commented out MCUs
[qmk_firmware.git] / keyboards / atomic / atomic.c
1 #include "atomic.h"
2
3 void matrix_init_kb(void) {
4     // put your keyboard start-up code here
5     // runs once when the firmware starts up
6
7     MCUCR |= (1<<JTD);
8     MCUCR |= (1<<JTD);
9
10     // Turn status LED on
11     DDRE |= (1<<6);
12     PORTE |= (1<<6);
13
14     matrix_init_user();
15 }