summaryrefslogtreecommitdiffstats
path: root/keyboards/mitosis/mitosis.c
diff options
context:
space:
mode:
authorcam <cam@reversebias.net>2017-04-19 12:27:49 +0200
committercam <cam@reversebias.net>2017-04-19 12:27:49 +0200
commit43964438fbe0708158a4a6d076ab5b5dc4ea0012 (patch)
tree6836a6d02936ea8b31f975df281aadc8ee87d88e /keyboards/mitosis/mitosis.c
parent3c3be98a064388db79127ca420592f46d2753150 (diff)
downloadqmk_firmware-43964438fbe0708158a4a6d076ab5b5dc4ea0012.tar.gz
qmk_firmware-43964438fbe0708158a4a6d076ab5b5dc4ea0012.tar.xz
First Commit
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 000000000..24de82724
--- /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