Add toggle for live training
This commit is contained in:
committed by
Florian Didron
parent
259cc07202
commit
5ed3ecdd73
@@ -8,12 +8,16 @@
|
||||
#endif
|
||||
|
||||
#ifndef DYNAMIC_KEYMAP_ENABLE
|
||||
# error "Dynamic Keymaps are not enabled. It must be aenbled "
|
||||
# error "Dynamic Keymaps are not enabled. It must be enabled"
|
||||
#endif
|
||||
|
||||
// enum Oryx_Status_code {
|
||||
// PLACEHOLDER = WEBUSB_STATUS_SAFE_RANGE,
|
||||
// }
|
||||
|
||||
enum Oryx_Command_Code {
|
||||
ORYX_GET_LAYER = WEBUSB_CMD_SAFE_RANGE,
|
||||
ORYX_CMD_LIVE_TRAINING,
|
||||
|
||||
};
|
||||
|
||||
@@ -21,14 +25,15 @@ enum Oryx_Event_Code {
|
||||
ORYX_EVT_KEYDOWN = WEBUSB_EVT_SAFE_RANGE,
|
||||
ORYX_EVT_KEYUP,
|
||||
ORYX_EVT_LAYER,
|
||||
ORYX_EVT_LIVE_TRAINING
|
||||
};
|
||||
|
||||
|
||||
|
||||
extern bool webusb_state_live_training_enabled;
|
||||
extern bool oryx_state_live_training_enabled;
|
||||
|
||||
bool webusb_receive_oryx(uint8_t *data, uint8_t length);
|
||||
void oryx_layer_event(void);
|
||||
|
||||
bool is_oryx_live_training_enabled(void);
|
||||
|
||||
void keyboard_pre_init_oryx(void);
|
||||
|
||||
Reference in New Issue
Block a user