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.
我想请教个问题,如果函数1,在预编译中采用#pragma CODE_SECTION(函数1,"ramfuncs");但是函数1内包含有函数2 ,函数3,那么为了加快速度,函数2 和函数3 也需要如下预处理吗?
#pragma CODE_SECTION(函数2,"ramfuncs");
#pragma CODE_SECTION(函数3,"ramfuncs");
函数1
{
函数2;
函数3;
}
还是只需要预处理 函数1就可以了????#pragma CODE_SECTION(函数1,"ramfuncs");