summaryrefslogtreecommitdiff
path: root/keyboards/handwired/gamenum/gamenum.c
diff options
context:
space:
mode:
authorDamien <Dbroqua@users.noreply.github.com>2016-10-07 22:27:36 +0200
committerGitHub <noreply@github.com>2016-10-07 22:27:36 +0200
commit811257a0c8a20a7bf5481f745a083f7e7f01342c (patch)
tree6d79874c5542148c27907511ecdb2e9e5e12b24b /keyboards/handwired/gamenum/gamenum.c
parent6a090c5df7e52df084de975f070841af1138b5a4 (diff)
parenta9df99b81c787862dc3fa11bd854fe39e704da81 (diff)
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.c14
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 0000000000..8048194bbc
--- /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();
+
+}