~ruther/qmk_firmware

ref: c49438feec9fb6be368d6377ca05d0c86d310d4f qmk_firmware/keyboards/chimera_ortho/chimera_ortho.c -rw-r--r-- 291 bytes
c49438fe — Brandon Claveria [Keyboard] Digicarp65 (#15926) 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "chimera_ortho.h"

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