summaryrefslogtreecommitdiff
path: root/keyboards/sixkeyboard/sixkeyboard.c
diff options
context:
space:
mode:
authorNathan Sharfi2016-07-31 14:02:25 -0700
committerNathan Sharfi2016-07-31 14:02:25 -0700
commitd889648d5373b7ff77dc7bc4b369c628e8336b45 (patch)
tree35c6eb194417242958baf54b36f0ff3a56e378f1 /keyboards/sixkeyboard/sixkeyboard.c
parent6428069eb70f5cc47ac1f3f9acf3daea14fb9097 (diff)
parentb25dbc484d639210c53d8e13f79cf5a77f2faaaa (diff)
Merge branch 'master' of github.com:jackhumbert/qmk_firmware
# Conflicts: # keyboard/ergodox_ez/keymaps/zweihander-osx/keymap.c # keyboard/ergodox_ez/keymaps/zweihander-osx/zweihander-osx.hex
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