From 656f0e3d23c4e7b800aca96ee92fe510dfcb22e2 Mon Sep 17 00:00:00 2001 From: Meco Man <920369182@qq.com> Date: Sat, 13 Aug 2022 20:32:41 -0400 Subject: [PATCH] =?UTF-8?q?[imxrt1060]=20fix=20a=20tiny=20problme=20this?= =?UTF-8?q?=20is=20report=20in=20slack=20group:=20-=20I=20had=20to=20do=20?= =?UTF-8?q?a=20small=20fix=20in=20board/linker=5Fscripts/link.lds=20file.?= =?UTF-8?q?=20line=2081,=20should=20be:=20ivt=5Fbegin=20=3D=20ORIGIN(m=5Fb?= =?UTF-8?q?oot=5Fdata)=20+=20LENGTH(m=5Fboot=5Fdata);=20(add=20a=20space?= =?UTF-8?q?=20between=20ivt=5Fbegin=20and=20"=3D=E2=80=9C).?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - For unknown reason I had to set DEMO_PANEL_RK043FN66HS as default in imxrt1060-nxp-evk/board/Kconfig Leaving the DEMO_PANEL_RK043FN02H was not working even after selecting RK043FN66HS in menuconfig. The result was touch not working without this change as a wrong driver was being pick. --- bsp/imxrt/imxrt1060-nxp-evk/board/Kconfig | 2 +- bsp/imxrt/imxrt1060-nxp-evk/board/linker_scripts/link.lds | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bsp/imxrt/imxrt1060-nxp-evk/board/Kconfig b/bsp/imxrt/imxrt1060-nxp-evk/board/Kconfig index 01943f7ee4..c7a89b2cb8 100644 --- a/bsp/imxrt/imxrt1060-nxp-evk/board/Kconfig +++ b/bsp/imxrt/imxrt1060-nxp-evk/board/Kconfig @@ -78,7 +78,7 @@ menu "Onboard Peripheral Drivers" if BSP_USING_TOUCHPAD choice prompt "Select panel" - default DEMO_PANEL_RK043FN02H + default DEMO_PANEL_RK043FN66HS config DEMO_PANEL_RK043FN02H bool "RK043FN02H-CT" diff --git a/bsp/imxrt/imxrt1060-nxp-evk/board/linker_scripts/link.lds b/bsp/imxrt/imxrt1060-nxp-evk/board/linker_scripts/link.lds index 6d8b2f0450..0691d0fe48 100644 --- a/bsp/imxrt/imxrt1060-nxp-evk/board/linker_scripts/link.lds +++ b/bsp/imxrt/imxrt1060-nxp-evk/board/linker_scripts/link.lds @@ -78,7 +78,7 @@ SECTIONS . = ALIGN(4); } > m_boot_data - ivt_begin= ORIGIN(m_boot_data) + LENGTH(m_boot_data); + ivt_begin = ORIGIN(m_boot_data) + LENGTH(m_boot_data); .image_vertor_table : AT(ivt_begin) { -- GitLab