This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

28377d FLASH操作问题

不是说操作FLASH函数都要放在RAM中运行

我把FunctionA放入ram中,我在functionA中调用的functionB是否也要放入ram

#pragma CODE_SECTION(FunctionA,".TI.ramfunc")

void  FunctionA()

{

   flash  擦除

   flash 读取

   FunctionB();

   flash写入

}

void  FunctionB()

{

 这里面没有flash操作函数

}