[Keyboard] move @GlenPickle 's chimera* boards into a folder (#16072)

This commit is contained in:
peepeetee
2022-02-01 03:47:38 +08:00
committed by GitHub
parent 6cb0e8924b
commit 3fefaf7f6b
34 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,16 @@
#include "chimera_ergo.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();
}