forked from mirrors/qmk_firmware
fix bpiphany/pegasushoof/2015
This commit is contained in:
parent
5ba8a76da5
commit
ac8a8e838e
1 changed files with 23 additions and 0 deletions
|
@ -23,3 +23,26 @@ extern inline void ph_caps_led_off(void);
|
|||
|
||||
extern inline void ph_sclk_led_on(void);
|
||||
extern inline void ph_sclk_led_off(void);
|
||||
|
||||
__attribute__ ((weak))
|
||||
void matrix_init_user(void) {
|
||||
};
|
||||
|
||||
__attribute__ ((weak))
|
||||
void matrix_scan_user(void) {
|
||||
}
|
||||
|
||||
__attribute__ ((weak))
|
||||
bool process_action_user(keyrecord_t *record) {
|
||||
return true;
|
||||
}
|
||||
|
||||
__attribute__ ((weak))
|
||||
void led_set_user(uint8_t usb_led) {
|
||||
}
|
||||
|
||||
void matrix_init_kb(void) {
|
||||
}
|
||||
|
||||
void matrix_scan_kb(void) {
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue