aboutsummaryrefslogtreecommitdiff
path: root/keyboards/mitosis/mitosis.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/mitosis/mitosis.c')
-rw-r--r--keyboards/mitosis/mitosis.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/keyboards/mitosis/mitosis.c b/keyboards/mitosis/mitosis.c
index 1ca7276e4..50b6d8452 100644
--- a/keyboards/mitosis/mitosis.c
+++ b/keyboards/mitosis/mitosis.c
@@ -1,9 +1,5 @@
1#include "mitosis.h" 1#include "mitosis.h"
2 2
3void uart_init(void) {
4 SERIAL_UART_INIT();
5}
6
7void led_init(void) { 3void led_init(void) {
8 DDRD |= (1<<1); // Pin to green, set as output 4 DDRD |= (1<<1); // Pin to green, set as output
9 PORTD |= (1<<1); // Turn it off 5 PORTD |= (1<<1); // Turn it off
@@ -15,7 +11,6 @@ void matrix_init_kb(void) {
15 // put your keyboard start-up code here 11 // put your keyboard start-up code here
16 // runs once when the firmware starts up 12 // runs once when the firmware starts up
17 matrix_init_user(); 13 matrix_init_user();
18 uart_init();
19 led_init(); 14 led_init();
20} 15}
21 16