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.

28035例程



我在ti的28035例程中看到这句话:Write EMU_KEY to 0xD00 and EMU_BMODE to 0xD01 via the debugger according to the Boot Mode Table above.请问下如何改变EMU_KEY 和EMU_BMODE 的值使程序启动方式不同,这个debugger是具体的什么呢?

  • 当连接完仿真器后,下载程序,这个时候CCS会自动跳到main中,这个过程其实CCS已经屏蔽了那段boot的程序了,自动识别到main函数入口。

    但你可以通过打开memory窗口,输入0x0d00的地址,然后改变这两个单元的值,从而可以设置不同的引导模式,如设置引导到RAM。

    然后你可以点击Reset CPU,不再点击restart, 然后就run main,这时候C2000就根据你设置的引导模式去寻找main入口。

    Eric