aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/chimera_ortho_plus/chimera_ortho_plus.c
blob: 1972f2a9c33607116b27c4a5742ee5d37a201f85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "chimera_ortho_plus.h"

void uart_init(void) {
	SERIAL_UART_INIT();
}

void led_init(void) {
    setPinOutput(D1);
    setPinOutput(F4);
    setPinOutput(F5);
    writePinHigh(D1);
    writePinHigh(F4);
    writePinHigh(F5);
}


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();
}