nuttx/boards/arm/imxrt/teensy-4.x/Kconfig
Michal Lenc 11be65db8b board/arm/imxrt: Added Teensy-4 BSP based on imxrt1060-evk
Signed-off-by: Michal Lenc <lencmich@fel.cvut.cz>
2020-12-04 10:18:41 -08:00

37 lines
593 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
menu "Sensors interfaces"
config BMP280_LPI2C
int "LPI2C interface for BMP280 sensor"
depends on SENSORS_BMP280
default 4
endmenu # Sensors interfaces
endif