ccs5 怎么把程序烧到Flash ,不要仿真,直接运行
Joey Mao:
首先是你的工程要用烧写Flash的CMD文件,这是区别于在Ram中运行的,其次DSP的Boot mode引脚配置成Flash启动模式。烧写完程序后断开仿真器连接重新上电复位就可以从Flash启动直接运行了
ccs5 怎么把程序烧到Flash ,不要仿真,直接运行
Jay:
你好。
如果只需要烧录程序,可以使用Uniflash进行烧写。
从Flash中启动,请按照Datasheet的说明,配置相关的Boot引脚。
ccs5 怎么把程序烧到Flash ,不要仿真,直接运行
user1303469:
回复 Jay:
Uniflash 在哪里?
ccs5 怎么把程序烧到Flash ,不要仿真,直接运行
Jay:
回复 user1303469:
你点Uniflash这几个字的链接就可以进去。
或者把下面网址复制过去。
http://www.ti.com.cn/tool/cn/Uniflash
ccs5 怎么把程序烧到Flash ,不要仿真,直接运行
jiangjun Lee:
在main函数之前添加
extern Uint16 RamfuncsLoadStart;extern Uint16 RamfuncsLoadSize;extern Uint16 RamfuncsRunStart;
在main函数里面添加
memcpy((uint16_t *)&RamfuncsRunStart,(uint16_t *)&RamfuncsLoadStart, (unsigned long)&RamfuncsLoadSize);
将cmd修改成类似于F28035.cmd
这样就行