Hi,
For the codes below:
#pragma CODE_SECTION(Example_CallFlashAPI,"ramfuncs");
void Example_CallFlashAPI(void)
{
funcA();
}
void funcA(void)
{
}
I know that function "Example_CallFlashAPI" will reside in ramfuncs, will the function "funcA" also be in ramfuncs?
Thanks.