~ruther/qmk_firmware

ref: 9c7490d7cb1bdb2232687153e542d813bfa53db3 qmk_firmware/keyboards/handwired/gamenum/gamenum.c -rw-r--r-- 234 bytes
9c7490d7 — Joe Scotto [Keyboard] Add Scotto40 Keyboard (#18453) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "gamenum.h"

void matrix_init_kb(void) {
	// put your keyboard start-up code here
	// runs once when the firmware starts up
	DDRC |= (1<<6);
	PORTC &= ~(1<<6);
	
	DDRD |= (1<<4);
	PORTD &= ~(1<<4);
	
	matrix_init_user();
	
}