nuttx/boards/arm/tlsr82/tlsr8278adk80d/Kconfig
wangbowen6 73f7cc5855 tlsr82: first commit of telink tlsr82xx chip port.
tlsr82: first commit of telink tlsr82xx chip port.

 - tc32 archtecture context switch;
 - tc32 backtrace;
 - timer, uart, pwm, gpio, adc driver;
 - flash, watchdog driver;
 - uart txdma/rxdma;
 - spi console driver;
 - add board bringup and reset;

Signed-off-by: wangbowen6 <wangbowen6@xiaomi.com>
2022-05-09 12:33:39 +08:00

32 lines
521 B
Plaintext

#
# 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
prompt "Default pin interrupt type"
default PIN_INTERRUPT_DEFAULT_RISING
depends on DEV_GPIO
config PIN_INTERRUPT_DEFAULT_RISING
bool "Rising"
config PIN_INTERRUPT_DEFAULT_FALLING
bool "Falling"
config PIN_INTERRUPT_DEFAULT_HIGH
bool "High level"
config PIN_INTERRUPT_DEFAULT_LOW
bool "Low level"
endchoice
endmenu
endif