Part Number: TMS320F280037
Hi,
is there an easier way to declare many function as RAM functions, which are called after the while(1), instead declare all functions with #pragma CODE_SECTION
int main(void)
{
//some code in flash
//compiler mark like the #pragma CODE_SECTION( ..),
//that function after that point would go into ramfunction
while( 1 )
{
//some more code in RAM
}
}
Thanks
David