Part Number: TMS320F28377D
Tool/software: Code Composer Studio
Hi, I'm facing a problem to program flash by calling flash api. My application using interrupt while calling flash api.
After searching in e2e, I copy all my interrupt into ram instead running on flash
But still wondering, my interrupt have many sub function, which is like
interrupt void ext_int4_isr(void) {
function1();
function2();
}
Do I need to put function1 and 2 into ram by "pragma CODE_SECTION"? Or only set the top function ext_int4_isr() to ram is fine enough?
