]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/cluepad/cluepad.c
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware
[qmk_firmware.git] / keyboards / cluepad / cluepad.c
1 #include "cluepad.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     matrix_init_user();
7
8     #ifdef BACKLIGHT_ENABLE
9         init_backlight_pin();
10     #endif
11
12     // JTAG disable for PORT F. write JTD bit twice within four cycles.
13     MCUCR |= (1<<JTD);
14     MCUCR |= (1<<JTD);
15 };