feat: Added toggle-mode, allowing toggle-on and toggle-off (#2555)
feat: added toggle mode to key and layer toggles docs: documented toggle mode changes
This commit is contained in:
parent
7013158a67
commit
4ef231f4bb
23 changed files with 346 additions and 16 deletions
|
|
@ -17,15 +17,33 @@ LOG_MODULE_DECLARE(zmk, CONFIG_ZMK_LOG_LEVEL);
|
|||
|
||||
#if DT_HAS_COMPAT_STATUS_OKAY(DT_DRV_COMPAT)
|
||||
|
||||
struct behavior_tog_config {};
|
||||
struct behavior_tog_data {};
|
||||
enum toggle_mode {
|
||||
ON,
|
||||
OFF,
|
||||
FLIP,
|
||||
};
|
||||
|
||||
struct behavior_tog_config {
|
||||
enum toggle_mode toggle_mode;
|
||||
};
|
||||
|
||||
static int behavior_tog_init(const struct device *dev) { return 0; };
|
||||
|
||||
static int tog_keymap_binding_pressed(struct zmk_behavior_binding *binding,
|
||||
struct zmk_behavior_binding_event event) {
|
||||
LOG_DBG("position %d layer %d", event.position, binding->param1);
|
||||
return zmk_keymap_layer_toggle(binding->param1);
|
||||
|
||||
const struct behavior_tog_config *cfg = zmk_behavior_get_binding(binding->behavior_dev)->config;
|
||||
switch (cfg->toggle_mode) {
|
||||
case ON:
|
||||
return zmk_keymap_layer_activate(binding->param1);
|
||||
case OFF:
|
||||
return zmk_keymap_layer_deactivate(binding->param1);
|
||||
case FLIP:
|
||||
return zmk_keymap_layer_toggle(binding->param1);
|
||||
default:
|
||||
return -ENOTSUP;
|
||||
};
|
||||
}
|
||||
|
||||
static int tog_keymap_binding_released(struct zmk_behavior_binding *binding,
|
||||
|
|
@ -63,11 +81,14 @@ static const struct behavior_driver_api behavior_tog_driver_api = {
|
|||
#endif // IS_ENABLED(CONFIG_ZMK_BEHAVIOR_METADATA)
|
||||
};
|
||||
|
||||
static const struct behavior_tog_config behavior_tog_config = {};
|
||||
#define KT_INST(n) \
|
||||
static const struct behavior_tog_config behavior_tog_config_##n = { \
|
||||
.toggle_mode = DT_ENUM_IDX(DT_DRV_INST(n), toggle_mode), \
|
||||
}; \
|
||||
BEHAVIOR_DT_INST_DEFINE(n, behavior_tog_init, NULL, NULL, &behavior_tog_config_##n, \
|
||||
POST_KERNEL, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT, \
|
||||
&behavior_tog_driver_api);
|
||||
|
||||
static struct behavior_tog_data behavior_tog_data;
|
||||
|
||||
BEHAVIOR_DT_INST_DEFINE(0, behavior_tog_init, NULL, &behavior_tog_data, &behavior_tog_config,
|
||||
POST_KERNEL, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT, &behavior_tog_driver_api);
|
||||
DT_INST_FOREACH_STATUS_OKAY(KT_INST)
|
||||
|
||||
#endif /* DT_HAS_COMPAT_STATUS_OKAY(DT_DRV_COMPAT) */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue