]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/handwired/gamenum/gamenum.c
Do some cleanup for the API
[qmk_firmware.git] / keyboards / handwired / gamenum / gamenum.c
1 #include "gamenum.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         DDRC |= (1<<6);
7         PORTC &= ~(1<<6);
8         
9         DDRD |= (1<<4);
10         PORTD &= ~(1<<4);
11         
12         matrix_init_user();
13         
14 }