nuttx/configs/imxrt1050-evk/Kconfig
Johannes b95fadcaa6 Squashed commit of the following:
Author: Gregory Nutt <gnutt@nuttx.org>

    arch/arm/src/imxrt/:  Fix complaints from tools/nxstyle in new LCD files.
    Use tools/lowhex to convert hexadecimal constants to lower case.
    Use tools/rmcr to review white space at the end of lines.

Author: Johannes <nivus.entwicklung@gmail.com>

    arch/arm/src/imxrt and configs/imxrt1050-evk:  Adds framebuffer support for thje i.MXRT 1050.  Includdd DCD initialization for SDRAM to provide space for the framebufer. External code I used/ported is from NXP and is BSD 3-clause license.
2019-03-04 08:35:29 -06:00

27 lines
473 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_IMXRT1050_EVK
choice
prompt "Boot Flash"
default IMXRT1050_EVK_HYPER_FLASH
config IMXRT1050_EVK_HYPER_FLASH
bool "HYPER Flash"
config IMXRT1050_EVK_QSPI_FLASH
bool "QSPI Flash"
endchoice # Boot Flash
config IMXRT1050_EVK_SDRAM
bool "Enable SDRAM"
default n
---help---
Activate DCD configuration of SDRAM
endif