How can I put user code in TCM ram memory location in RA8M1?
Hello,
Assuming that you have a test_function, you can place it in ITCM this way:
void BSP_PLACE_IN_SECTION(".itcm_data") test_function(void);
You can confirm code placement using the .map file generated by the compiler or when debugging the project.