summaryrefslogtreecommitdiff
path: root/keyboards/planck/planck.c
blob: 8d70bb4e5ab24a1951f0d55853971c0c6333c0e4 (plain)
1
2
3
4
5
6
7
8
9
#include "planck.h"

void matrix_init_kb(void) {
	// Turn status LED on
	DDRE |= (1<<6);
	PORTE |= (1<<6);

	matrix_init_user();
}