1
0

Revert "Delete unused boards"

This reverts commit 1b5c75c83d.
This commit is contained in:
Richard Baptist
2019-06-16 13:04:19 +02:00
parent a6b1f55659
commit 21fbcf145c
8065 changed files with 589315 additions and 0 deletions

View File

@@ -0,0 +1,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();
}