I develop MPC5746C with S32DS and SDK, but in the project I have configured, I can't find the files such as "flashrchw.c", "intc_sw_handlers.S", "intc_SW_mode_isr_vectors_MPC574xC.c", "MPC57xx__Interrupt_Init.c", "Vector.c". How to get this files in the SDK or how to configure it?
Hello,
the project structure is a bit different when project is created with SDK enabled. Please check the Startup_Code folder in your project:
flashrchw.c is basically implemented in startup_MPC5746C.s where RCHW is defined.
intc_sw_handlers.s exception handlers are implemented in core0_intc_sw_handlers.s
intc_SW_mode_isr_vectors_MPC574xC.c is defined in startup_MPC5746C.s see label __isr_vector:
MPC57xx__Interrupt_Init.c is partially implemented in S32_core_e200.h
Vector.c has been transfered into interrupt_vectors.s
Please check the files and let us know which specific function you are missing or what is your goal.
This will help us to resolve the issue much faster.
Thanks!
Stan