我从TI官网上下载了一个关于Flash API的例程,编号为:sprc193, http://www.ti.com.cn/sitesearch/cn/docs/universalsearch.tsp?searchTerm=sprc193&Submit=&linkId=1
我把程序编译后烧写到了我的装置中,在运行中程序执行到
VersionHex = Flash_APIVersionHex();
if(VersionHex != 0x0300)
{
// Unexpected API version
// Make a decision based on this info.
asm(" ESTOP0");
}
就出现了问题,我看到VersionHex 变量读到的函数Flash_APIVersionHex()的返回值为0写0x0302,因此程序停到asm(" ESTOP0");了。
我想请问一下各位老师和同仁,是不是需要把判断条件改为if(VersionHex != 0x0302) ?还是库函数的版本有问题???谢谢!