把.cinit,.const,.pinit,.text ,.econst,.switch使用DSP28xxx_SectionCopy_nonBIOS.asm进行拷贝操作,使用ccs烧写之后,提示Break at address “0x3fe493”with no debug information available,or outside of program code.
怎么解决这个问题?
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.
把.cinit,.const,.pinit,.text ,.econst,.switch使用DSP28xxx_SectionCopy_nonBIOS.asm进行拷贝操作,使用ccs烧写之后,提示Break at address “0x3fe493”with no debug information available,or outside of program code.
怎么解决这个问题?
另外TI 在controlSUITE中有提供完善的驱动例程
C:\ti\controlSUITE\device_support\F2837xD\v210
需要注意的是不要把.text段都复制到RAM,这样就不会执行memcpy的函数呢。只有调用memcpy,才能去调用复制到RAM的函数。其他段类似。
建议您参考例程中的initflash函数,这是标准的copy做法。