fix(kscan): fix direct GPIO when using interrupts
Fixed initializing interrupts for direct GPIO when CONFIG_ZMK_KSCAN_DIRECT_POLLING is not enabled. IS_ENABLED() is needed to map the possibly-undefined value to 0 or 1 so COND_CODE_0() and COND_CODE_1() work.
This commit is contained in:
parent
fc5915b200
commit
4121b07f7f
1 changed files with 3 additions and 3 deletions
|
@ -173,7 +173,7 @@ static const struct kscan_driver_api gpio_driver_api = {
|
||||||
#define INST_INPUT_LEN(n) DT_INST_PROP_LEN(n, input_gpios)
|
#define INST_INPUT_LEN(n) DT_INST_PROP_LEN(n, input_gpios)
|
||||||
|
|
||||||
#define GPIO_INST_INIT(n) \
|
#define GPIO_INST_INIT(n) \
|
||||||
COND_CODE_0(CONFIG_ZMK_KSCAN_DIRECT_POLLING, \
|
COND_CODE_0(IS_ENABLED(CONFIG_ZMK_KSCAN_DIRECT_POLLING), \
|
||||||
(static struct kscan_gpio_irq_callback irq_callbacks_##n[INST_INPUT_LEN(n)];), ()) \
|
(static struct kscan_gpio_irq_callback irq_callbacks_##n[INST_INPUT_LEN(n)];), ()) \
|
||||||
static struct kscan_gpio_data kscan_gpio_data_##n = { \
|
static struct kscan_gpio_data kscan_gpio_data_##n = { \
|
||||||
.inputs = {[INST_INPUT_LEN(n) - 1] = NULL}}; \
|
.inputs = {[INST_INPUT_LEN(n) - 1] = NULL}}; \
|
||||||
|
@ -195,7 +195,7 @@ static const struct kscan_driver_api gpio_driver_api = {
|
||||||
return err; \
|
return err; \
|
||||||
} \
|
} \
|
||||||
COND_CODE_0( \
|
COND_CODE_0( \
|
||||||
CONFIG_ZMK_KSCAN_DIRECT_POLLING, \
|
IS_ENABLED(CONFIG_ZMK_KSCAN_DIRECT_POLLING), \
|
||||||
(irq_callbacks_##n[i].work = &data->work; \
|
(irq_callbacks_##n[i].work = &data->work; \
|
||||||
irq_callbacks_##n[i].debounce_period = cfg->debounce_period; \
|
irq_callbacks_##n[i].debounce_period = cfg->debounce_period; \
|
||||||
gpio_init_callback(&irq_callbacks_##n[i].callback, \
|
gpio_init_callback(&irq_callbacks_##n[i].callback, \
|
||||||
|
@ -208,7 +208,7 @@ static const struct kscan_driver_api gpio_driver_api = {
|
||||||
()) \
|
()) \
|
||||||
} \
|
} \
|
||||||
data->dev = dev; \
|
data->dev = dev; \
|
||||||
COND_CODE_1(CONFIG_ZMK_KSCAN_DIRECT_POLLING, \
|
COND_CODE_1(IS_ENABLED(CONFIG_ZMK_KSCAN_DIRECT_POLLING), \
|
||||||
(k_timer_init(&data->poll_timer, kscan_gpio_timer_handler, NULL);), ()) \
|
(k_timer_init(&data->poll_timer, kscan_gpio_timer_handler, NULL);), ()) \
|
||||||
if (cfg->debounce_period > 0) { \
|
if (cfg->debounce_period > 0) { \
|
||||||
k_delayed_work_init(&data->work.delayed, kscan_gpio_work_handler); \
|
k_delayed_work_init(&data->work.delayed, kscan_gpio_work_handler); \
|
||||||
|
|
Loading…
Reference in a new issue