1
0
Fork 0

clean up docs and provide defaults for keymap

This commit is contained in:
Gabriel Young 2017-03-19 21:11:17 -07:00
parent db2da37561
commit a3a304db9a
4 changed files with 21 additions and 40 deletions

View file

@ -44,3 +44,20 @@ void led_set_kb(uint8_t usb_led) {
led_set_user(usb_led);
}
__attribute__ ((weak))
void matrix_init_user(void) {
}
__attribute__ ((weak))
void matrix_scan_user(void) {
}
__attribute__ ((weak))
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
return true;
}
__attribute__ ((weak))
void led_set_user(uint8_t usb_led) {
}