summaryrefslogtreecommitdiffstats
path: root/keyboards/sixkeyboard/sixkeyboard.c
diff options
context:
space:
mode:
authorDidier Loiseau <didierloiseau+git@gmail.com>2016-09-11 01:26:47 +0200
committerDidier Loiseau <didierloiseau+git@gmail.com>2016-09-11 01:26:47 +0200
commitb9014c757599ca288be07629ad1d00ef66c033f1 (patch)
treeba056e704e76327c597e25d1be200c4c991efeb8 /keyboards/sixkeyboard/sixkeyboard.c
parent60a826923d5a6b0dbe416b0837608149ab82e470 (diff)
parent5010df3d8b68a53c382b853c7c2e45922975b631 (diff)
downloadqmk_firmware-b9014c757599ca288be07629ad1d00ef66c033f1.tar.gz
qmk_firmware-b9014c757599ca288be07629ad1d00ef66c033f1.tar.xz
Merge remote-tracking branch 'remotes/jackhumbert/master' into bépo
Diffstat (limited to 'keyboards/sixkeyboard/sixkeyboard.c')
-rw-r--r--keyboards/sixkeyboard/sixkeyboard.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/keyboards/sixkeyboard/sixkeyboard.c b/keyboards/sixkeyboard/sixkeyboard.c
new file mode 100644
index 000000000..85190f616
--- /dev/null
+++ b/keyboards/sixkeyboard/sixkeyboard.c
@@ -0,0 +1,30 @@
+#include "sixkeyboard.h"
+
+void matrix_init_kb(void) {
+ // put your keyboard start-up code here
+ // runs once when the firmware starts up
+
+ DDRC |= (1<<4);
+ PORTC &= ~(1<<4);
+
+
+ DDRC |= (1<<6);
+ PORTC &= ~(1<<6);
+
+ DDRB |= (1<<6);
+ PORTB &= ~(1<<6);
+
+ DDRB |= (1<<4);
+ PORTB &= ~(1<<4);
+
+ DDRD |= (1<<5);
+ PORTD &= ~(1<<5);
+
+ DDRD |= (1<<2);
+ PORTD &= ~(1<<2);
+
+ DDRD |= (1<<3);
+ PORTD &= ~(1<<3);
+
+ matrix_init_user();
+}; \ No newline at end of file