Skip to content

Commit 656f0e3

Browse files
committed
[imxrt1060] fix a tiny problme
this is report in slack group: - I had to do a small fix in board/linker_scripts/link.lds file. line 81, should be: ivt_begin = ORIGIN(m_boot_data) + LENGTH(m_boot_data); (add a space between ivt_begin and "=“). - 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.
1 parent e7f64fe commit 656f0e3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bsp/imxrt/imxrt1060-nxp-evk/board/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ menu "Onboard Peripheral Drivers"
7878
if BSP_USING_TOUCHPAD
7979
choice
8080
prompt "Select panel"
81-
default DEMO_PANEL_RK043FN02H
81+
default DEMO_PANEL_RK043FN66HS
8282

8383
config DEMO_PANEL_RK043FN02H
8484
bool "RK043FN02H-CT"

bsp/imxrt/imxrt1060-nxp-evk/board/linker_scripts/link.lds

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ SECTIONS
7878
. = ALIGN(4);
7979
} > m_boot_data
8080

81-
ivt_begin= ORIGIN(m_boot_data) + LENGTH(m_boot_data);
81+
ivt_begin = ORIGIN(m_boot_data) + LENGTH(m_boot_data);
8282

8383
.image_vertor_table : AT(ivt_begin)
8484
{

0 commit comments

Comments
 (0)