forked from mirrors/qmk_userspace
Add references for is_keyboard_left() (#10850)
* Add references for is_keyboard_left() * Remove proto from bootmagic_lite.c
This commit is contained in:
parent
6dc2d5956f
commit
e7497b3fba
3 changed files with 9 additions and 3 deletions
|
@ -222,6 +222,12 @@ void keyboard_setup(void) {
|
|||
*/
|
||||
__attribute__((weak)) bool is_keyboard_master(void) { return true; }
|
||||
|
||||
/** \brief is_keyboard_left
|
||||
*
|
||||
* FIXME: needs doc
|
||||
*/
|
||||
__attribute__((weak)) bool is_keyboard_left(void) { return true; }
|
||||
|
||||
/** \brief should_process_keypress
|
||||
*
|
||||
* Override this function if you have a condition where keypresses processing should change:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue