1
0
Fork 0

Kitten Paw refactor and Configurator update (#3248)

* Matrix refactor

* Keymap refactor

* Add fullsize_ansi layout to rules.mk

* Configurator support

* Readme cleanup

* Add matrix_init_user and matrix_scan_user functions to kitten_paw.c
This commit is contained in:
noroadsleft 2018-06-28 12:40:40 -07:00 committed by Drashna Jaelre
parent ded51136ce
commit e448ef0b1a
7 changed files with 62 additions and 15 deletions

View file

@ -14,6 +14,14 @@ void matrix_scan_kb(void) {
matrix_scan_user();
}
__attribute__ ((weak))
void matrix_init_user(void) {
}
__attribute__ ((weak))
void matrix_scan_user(void) {
}
bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
// put your per-action keyboard code here
// runs for every action, just before processing by the firmware