1.boot to ram这个模式是不是只是在仿真时候使用。
2.最大时钟速度为150M,那如果代码在flash中运行,系统时钟应该配置成多少?外扩saram最快访问速度是8ns,系统时钟是不是最大只能配成125M?
谢谢各位
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.boot to ram这个模式是不是只是在仿真时候使用。
2.最大时钟速度为150M,那如果代码在flash中运行,系统时钟应该配置成多少?外扩saram最快访问速度是8ns,系统时钟是不是最大只能配成125M?
谢谢各位
首先CPU的时钟,你可以按照datasheet的说明来设置,比如28335可以配置到150M。这个时钟跟flash或是ram没有什么关系。
boot to ram确实只能用在仿真模式,当然仿真模式下,也可以使用boot to flash.
当程序运行在flash的时候,需要初始化flash,CPU访问flash会有等待状态的,这样子就可以把访问速度降下来了。建议你查看例程C:\ti\controlSUITE\device_support\f2833x\v133\DSP2823x_examples_ccsv4\flash_f28235
如果是外扩的SRAM,一样要初始化XINTF,也是要设置等待状态的,这样子也可以把访问速度降下来,。
Eric