diff options
author | Damien <Dbroqua@users.noreply.github.com> | 2016-10-07 22:27:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-07 22:27:36 +0200 |
commit | 811257a0c8a20a7bf5481f745a083f7e7f01342c (patch) | |
tree | 6d79874c5542148c27907511ecdb2e9e5e12b24b /keyboards/handwired/gamenum/gamenum.c | |
parent | 6a090c5df7e52df084de975f070841af1138b5a4 (diff) | |
parent | a9df99b81c787862dc3fa11bd854fe39e704da81 (diff) | |
download | firmware-811257a0c8a20a7bf5481f745a083f7e7f01342c.tar.gz firmware-811257a0c8a20a7bf5481f745a083f7e7f01342c.tar.bz2 firmware-811257a0c8a20a7bf5481f745a083f7e7f01342c.zip |
Merge pull request #8 from jackhumbert/master
Merge from jackhumbert
Diffstat (limited to 'keyboards/handwired/gamenum/gamenum.c')
-rw-r--r-- | keyboards/handwired/gamenum/gamenum.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/keyboards/handwired/gamenum/gamenum.c b/keyboards/handwired/gamenum/gamenum.c new file mode 100644 index 000000000..8048194bb --- /dev/null +++ b/keyboards/handwired/gamenum/gamenum.c @@ -0,0 +1,14 @@ +#include "gamenum.h" + +void matrix_init_kb(void) { + // put your keyboard start-up code here + // runs once when the firmware starts up + DDRC |= (1<<6); + PORTC &= ~(1<<6); + + DDRD |= (1<<4); + PORTD &= ~(1<<4); + + matrix_init_user(); + +} |