summaryrefslogtreecommitdiff
path: root/keyboards/mitosis/mitosis.c
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2017-04-19 08:43:28 -0400
committerGitHub <noreply@github.com>2017-04-19 08:43:28 -0400
commit460b5f8751da66b9e5524f356e7059d5580cf8e1 (patch)
tree094200e1ad9711b7ce8f53ebd174ec98826811eb /keyboards/mitosis/mitosis.c
parent95242fe0f12253b5fdab02d802027fcdad5a4d0c (diff)
parent43fd889d7e42c8955fb64273fa1ddde519896284 (diff)
Merge pull request #1246 from reversebias/master
Initial support for the Mitosis Keyboard
Diffstat (limited to 'keyboards/mitosis/mitosis.c')
-rw-r--r--keyboards/mitosis/mitosis.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/keyboards/mitosis/mitosis.c b/keyboards/mitosis/mitosis.c
new file mode 100644
index 0000000000..24de82724a
--- /dev/null
+++ b/keyboards/mitosis/mitosis.c
@@ -0,0 +1,31 @@
+#include "mitosis.h"
+
+void uart_init(void) {
+ SERIAL_UART_INIT();
+}
+
+void led_init(void) {
+ DDRD |= (1<<1);
+ PORTD |= (1<<1);
+ DDRF |= (1<<4) | (1<<5);
+ PORTF |= (1<<4) | (1<<5);
+}
+
+
+void matrix_init_kb(void) {
+ // put your keyboard start-up code here
+ // runs once when the firmware starts up
+ matrix_init_user();
+ uart_init();
+ led_init();
+}
+
+void matrix_scan_kb(void) {
+ // put your looping keyboard code here
+ // runs every cycle (a lot)
+ matrix_scan_user();
+}
+
+void led_set_kb(uint8_t usb_led) {
+
+} \ No newline at end of file