]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/lets_split_eh/eh/eh.c
[Keymap] Add missing tap dance action and fix RGB hues in personal keymaps (#6312)
[qmk_firmware.git] / keyboards / lets_split_eh / eh / eh.c
1 #include "lets_split_eh.h"
2
3 void matrix_init_kb(void) {
4
5     // JTAG disable for PORT F. write JTD bit twice within four cycles.
6     MCUCR |= (1<<JTD);
7     MCUCR |= (1<<JTD);
8         
9         // Undo init of RX LED, we use that port currently
10         // DDRB &= ~(1<<0);
11         
12         matrix_init_user();
13 };
14