Hi
I am using TMS320F2808 for sysbios.
I have created CAN TX HWI (ICan_Ch1_HWI) interrupt using sysbios. But when I # pragma this code with ramfunc it does not work but if i comment it out it works.
I am using tms320f2808.cmd (project wizard created)
I want to run by calling it from RAM. Why it is not working please guide me.... I searched it lot but not found suitable answer.
#pragma CODE_SECTION( "ramfuncs" )
extern "C"
void ICan_Ch1_HWI(void)
{
InternalCan.Channel1_HWI();
}
Thanks
newbee