2022-04-24 14:19:21 +08:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see misc/tools/kconfig-language.txt.
|
|
|
|
#
|
|
|
|
|
|
|
|
if ARCH_BOARD_TLSR8278ADK80D
|
|
|
|
|
|
|
|
menu "Telink TLSR8278ADK80D board"
|
|
|
|
|
|
|
|
choice
|
2023-05-10 17:23:23 +08:00
|
|
|
prompt "Default pin interrupt type"
|
|
|
|
default PIN_INTERRUPT_DEFAULT_RISING
|
|
|
|
depends on DEV_GPIO
|
2022-04-24 14:19:21 +08:00
|
|
|
|
|
|
|
config PIN_INTERRUPT_DEFAULT_RISING
|
2023-05-10 17:23:23 +08:00
|
|
|
bool "Rising"
|
2022-04-24 14:19:21 +08:00
|
|
|
|
|
|
|
config PIN_INTERRUPT_DEFAULT_FALLING
|
2023-05-10 17:23:23 +08:00
|
|
|
bool "Falling"
|
2022-04-24 14:19:21 +08:00
|
|
|
|
|
|
|
config PIN_INTERRUPT_DEFAULT_HIGH
|
2023-05-10 17:23:23 +08:00
|
|
|
bool "High level"
|
2022-04-24 14:19:21 +08:00
|
|
|
|
|
|
|
config PIN_INTERRUPT_DEFAULT_LOW
|
2023-05-10 17:23:23 +08:00
|
|
|
bool "Low level"
|
2022-04-24 14:19:21 +08:00
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
endmenu
|
|
|
|
|
|
|
|
endif
|