Leader key implementation (#326)
* implements leader key for planck experimental * allows override of leader timeout * adds ability to use the leader key in seq * fixes leader keycode * adds chording prototype * fixes keycode detection * moves music mode to quantum.c * disables chording by default * updates process_action functions to return bool
This commit is contained in:
committed by
Jack Humbert
parent
79d26f331a
commit
1a8c0dd22d
@ -55,12 +55,12 @@ static void unselect_rows(void);
|
||||
static void select_row(uint8_t row);
|
||||
|
||||
__attribute__ ((weak))
|
||||
void matrix_init_kb(void) {
|
||||
void matrix_init_quantum(void) {
|
||||
|
||||
}
|
||||
|
||||
__attribute__ ((weak))
|
||||
void matrix_scan_kb(void) {
|
||||
void matrix_scan_quantum(void) {
|
||||
|
||||
}
|
||||
|
||||
@ -93,7 +93,7 @@ void matrix_init(void)
|
||||
matrix_debouncing[i] = 0;
|
||||
}
|
||||
|
||||
matrix_init_kb();
|
||||
matrix_init_quantum();
|
||||
}
|
||||
|
||||
|
||||
@ -157,7 +157,7 @@ uint8_t matrix_scan(void)
|
||||
}
|
||||
#endif
|
||||
|
||||
matrix_scan_kb();
|
||||
matrix_scan_quantum();
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
Reference in New Issue
Block a user