forked from mirrors/qmk_userspace
Merge pull request #1057 from priyadi/selectable_output
Implement runtime selectable output (USB or BT)
This commit is contained in:
commit
0c2b6951a6
7 changed files with 192 additions and 74 deletions
|
@ -141,6 +141,16 @@ enum quantum_keycodes {
|
|||
PRINT_ON,
|
||||
PRINT_OFF,
|
||||
|
||||
// output selection
|
||||
OUT_AUTO,
|
||||
OUT_USB,
|
||||
#ifdef BLUETOOTH_ENABLE
|
||||
OUT_BT,
|
||||
#endif
|
||||
#ifdef ADAFRUIT_BLE_ENABLE
|
||||
OUT_BLE,
|
||||
#endif
|
||||
|
||||
// always leave at the end
|
||||
SAFE_RANGE
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue