不是说操作FLASH函数都要放在RAM中运行
我把FunctionA放入ram中,我在functionA中调用的functionB是否也要放入ram
#pragma CODE_SECTION(FunctionA,".TI.ramfunc")
void FunctionA()
{
flash 擦除
flash 读取
FunctionB();
flash写入
}
void FunctionB()
{
这里面没有flash操作函数
}
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 api也可以不再ram中执行擦除、写入操作,请问有没有什么隐患?
https://e2echina.ti.com/question_answer/microcontrollers/c2000/f/56/t/183058