File tree Expand file tree Collapse file tree 4 files changed +455
-0
lines changed
Expand file tree Collapse file tree 4 files changed +455
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ zephyr_library_property(ALLOW_EMPTY TRUE)
77zephyr_library_sources_ifdef(CONFIG_INPUT_ADC_KEYS input_adc_keys.c)
88zephyr_library_sources_ifdef(CONFIG_INPUT_ANALOG_AXIS input_analog_axis.c)
99zephyr_library_sources_ifdef(CONFIG_INPUT_ANALOG_AXIS_SETTINGS input_analog_axis_settings.c)
10+ zephyr_library_sources_ifdef(CONFIG_INPUT_BFLB_IRX input_bflb_irx.c)
1011zephyr_library_sources_ifdef(CONFIG_INPUT_CAP12XX input_cap12xx.c)
1112zephyr_library_sources_ifdef(CONFIG_INPUT_CF1133 input_cf1133.c)
1213zephyr_library_sources_ifdef(CONFIG_INPUT_CHSC5X input_chsc5x.c)
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ menu "Input drivers"
88# zephyr-keep-sorted-start
99source "drivers/input/Kconfig.adc_keys"
1010source "drivers/input/Kconfig.analog_axis"
11+ source "drivers/input/Kconfig.bflb"
1112source "drivers/input/Kconfig.cap12xx"
1213source "drivers/input/Kconfig.cf1133"
1314source "drivers/input/Kconfig.chsc5x"
Original file line number Diff line number Diff line change 1+ # Copyright (c) 2025 MASSDRIVER EI (massdriver.space)
2+ # SPDX-License-Identifier: Apache-2.0
3+
4+ config INPUT_BFLB_IRX
5+ bool "Bouffalolab Infrared Receiver"
6+ default y
7+ depends on DT_HAS_BFLB_IRX_ENABLED
8+ select GPIO
9+ help
10+ This option enables the driver for the Bouffalolab Infrared Receiver Peripheral.
You can’t perform that action at this time.
0 commit comments