nuttx/boards/arm/imxrt/teensy-4.x/Kconfig
Michal Lenc eabd79f97b boards/arm/imxrt/teensy-4.x: fixed build error and nx style
Signed-off-by: Michal Lenc <lencmich@fel.cvut.cz>
2020-12-04 10:18:41 -08:00

28 lines
436 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
if ARCH_BOARD_TEENSY_4X
choice
prompt "Boot Flash"
default TEENSY4_QSPI_FLASH
config TEENSY4_QSPI_FLASH
bool "QSPI Flash"
endchoice # Boot Flash
choice
prompt "Board configuration"
config TEENSY_40
bool "Teensy 4.0"
config TEENSY_41
bool "Teensy 4.1"
endchoice # Board configuration
endif