Remove spaces from Kconfig Add TABs Add comments Signed-off-by: simbit18 <simbit18@gmail.com>
31 lines
642 B
Text
31 lines
642 B
Text
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
if ARCH_BOARD_IMXRT1064_EVK
|
|
|
|
choice
|
|
prompt "Boot Flash"
|
|
default IMXRT1064_EVK_QSPI_FLASH
|
|
|
|
config IMXRT1064_EVK_HYPER_FLASH
|
|
bool "HYPER Flash"
|
|
|
|
config IMXRT1064_EVK_QSPI_FLASH
|
|
bool "QSPI Flash"
|
|
|
|
endchoice # Boot Flash
|
|
|
|
config IMXRT1064_EVK_SDRAM
|
|
bool "Enable SDRAM"
|
|
default n
|
|
select IMXRT_SEMC_INIT_DONE
|
|
---help---
|
|
Activate DCD configuration of SDRAM
|
|
|
|
config IMXRT1064_EVK_TOUCHSCREEN_SWAPXY
|
|
bool "IMXRT1064 EVK Touchscreen sway X/Y"
|
|
depends on INPUT_TOUCHSCREEN
|
|
|
|
endif # ARCH_BOARD_IMXRT1064_EVK
|