Dear Zhongling Lang ,
This is an error in the example.
Please change the data of file "MPC5777C_MCAL4_3_RTM_1_0_0_Sample_Application\eclipse\plugins\PlatformIntegration_TS_T2D41M10I0R0\src\startup\Vector_vle_core_diab.s" and "MPC5777C_MCAL4_3_RTM_1_0_0_Sample_Application\eclipse\plugins\PlatformIntegration_TS_T2D41M10I0R0\src\startup\Vector_vle_core.s" from:
# set reset configuration half word
.set RCW, 0x005A0002
.set RSVD, 0x00000000
.set CFG1, 0x00000000
.set CFG2, 0x00000000
# put reset configuration halfword and application start address into .rcw
# section
.if C_CW == 1
.extern __start
.section .rcw,rodata
.long RCW, _start, CFG1, CFG2, _start, _start, RSVD
.else
.extern _start
.section ".rcw","ax"
.long RCW, _start, CFG1, CFG2, _start, _start, RSVD
.endif
to:
.set RCW, 0x015A015A
# put reset configuration halfword and application start address into .rcw
# section
.if C_CW == 1
.extern __start
.section .rcw,rodata
.long RCW, __start
.else
.extern _start
.section ".rcw","ax"
.long RCW, _start
.endif
Then rebuild the porject, It will fix this issue.
Best regards,
Hung.