You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by da...@apache.org on 2021/04/14 21:57:43 UTC

[incubator-nuttx] 07/11: FlexSPI NOR missing config and pin iomux

This is an automated email from the ASF dual-hosted git repository.

davids5 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit e250006b1e7b8c497a009f0cf5fe87d7c8f82cae
Author: jturnsek <je...@gmail.com>
AuthorDate: Mon Apr 12 09:50:47 2021 +0200

    FlexSPI NOR missing config and pin iomux
---
 boards/arm/imxrt/imxrt1064-evk/src/Makefile | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/boards/arm/imxrt/imxrt1064-evk/src/Makefile b/boards/arm/imxrt/imxrt1064-evk/src/Makefile
index 87d012d..45fd5f5 100644
--- a/boards/arm/imxrt/imxrt1064-evk/src/Makefile
+++ b/boards/arm/imxrt/imxrt1064-evk/src/Makefile
@@ -82,4 +82,8 @@ ifeq ($(CONFIG_IMXRT1064_EVK_SDRAM),y)
 CSRCS += imxrt_sdram_ini_dcd.c
 endif
 
+ifeq ($(CONFIG_IMXRT_FLEXSPI),y)
+CSRCS += imxrt_flexspi_nor.c
+endif
+
 include $(TOPDIR)/boards/Board.mk