2812使用官网的FFT库烧写到FLASH里不运行

2019-08-04 18:32发布

本帖最后由 吃肉的考拉 于 2014-5-29 21:11 编辑

这是CMD文件,从官网下的,只
  1. MEMORY
  2. {
  3. PAGE 0: /* Program Memory */
  4. /* Memory (RAM/FLASH/OTP) blocks can be moved to PAGE1 for data allocation */

  5. ZONE0 : origin = 0x002000, length = 0x002000 /* XINTF zone 0 */
  6. ZONE1 : origin = 0x004000, length = 0x002000 /* XINTF zone 1 */
  7. RAML0 : origin = 0x008000, length = 0x001000 /* on-chip RAM block L0 */
  8. ZONE2 : origin = 0x080000, length = 0x080000 /* XINTF zone 2 */
  9. ZONE6 : origin = 0x100000, length = 0x080000 /* XINTF zone 6 */
  10. OTP : origin = 0x3D7800, length = 0x000800 /* on-chip OTP */
  11. FLASHJ : origin = 0x3D8000, length = 0x002000 /* on-chip FLASH */
  12. FLASHI : origin = 0x3DA000, length = 0x002000 /* on-chip FLASH */
  13. FLASHH : origin = 0x3DC000, length = 0x004000 /* on-chip FLASH */
  14. FLASHG : origin = 0x3E0000, length = 0x004000 /* on-chip FLASH */
  15. FLASHF : origin = 0x3E4000, length = 0x004000 /* on-chip FLASH */
  16. FLASHE : origin = 0x3E8000, length = 0x004000 /* on-chip FLASH */
  17. FLASHD : origin = 0x3EC000, length = 0x004000 /* on-chip FLASH */
  18. FLASHC : origin = 0x3F0000, length = 0x004000 /* on-chip FLASH */
  19. FLASHA : origin = 0x3F6000, length = 0x001F80 /* on-chip FLASH */
  20. CSM_RSVD : origin = 0x3F7F80, length = 0x000076 /* Part of FLASHA. Program with all 0x0000 when CSM is in use. */
  21. BEGIN : origin = 0x3F7FF6, length = 0x000002 /* Part of FLASHA. Used for "boot to Flash" bootloader mode. */
  22. CSM_PWL : origin = 0x3F7FF8, length = 0x000008 /* Part of FLASHA. CSM password locations in FLASHA */

  23. /* ZONE7 : origin = 0x3FC000, length = 0x003FC0 /* XINTF zone 7 available if MP/MCn=1 */
  24. ROM : origin = 0x3FF000, length = 0x000FC0 /* Boot ROM available if MP/MCn=0 */
  25. RESET : origin = 0x3FFFC0, length = 0x000002 /* part of boot ROM (MP/MCn=0) or XINTF zone 7 (MP/MCn=1) */
  26. VECTORS : origin = 0x3FFFC2, length = 0x00003E /* part of boot ROM (MP/MCn=0) or XINTF zone 7 (MP/MCn=1) */

  27. PAGE 1 : /* Data Memory */
  28. /* Memory (RAM/FLASH/OTP) blocks can be moved to PAGE0 for program allocation */
  29. /* Registers remain on PAGE1 */

  30. RAMM0 : origin = 0x000000, length = 0x000400 /* on-chip RAM block M0 */
  31. RAMM1 : origin = 0x000400, length = 0x000400 /* on-chip RAM block M1 */
  32. RAML1 : origin = 0x009000, length = 0x001000 /* on-chip RAM block L1 */
  33. FLASHB : origin = 0x3F4000, length = 0x002000 /* on-chip FLASH */
  34. RAMH0 : origin = 0x3F8000, length = 0x002000 /* on-chip RAM block H0 */
  35. ZONE2tf : origin = 0x084000, length = 0x001FFF
  36. }

  37. /* Allocate sections to memory blocks.
  38. Note:
  39. codestart user defined section in DSP28_CodeStartBranch.asm used to redirect code
  40. execution when booting to flash
  41. ramfuncs user defined section to store functions that will be copied from Flash into RAM
  42. */

  43. SECTIONS
  44. {

  45. /* Allocate program areas: */
  46. .cinit : > FLASHA PAGE = 0
  47. .pinit : > FLASHA, PAGE = 0
  48. .text : > FLASHA PAGE = 0
  49. codestart : > BEGIN PAGE = 0
  50. ramfuncs : LOAD = FLASHD,
  51. RUN = RAML0,
  52. LOAD_START(_RamfuncsLoadStart),
  53. LOAD_END(_RamfuncsLoadEnd),
  54. RUN_START(_RamfuncsRunStart),
  55. PAGE = 0

  56. csmpasswds : > CSM_PWL PAGE = 0
  57. csm_rsvd : > CSM_RSVD PAGE = 0

  58. /* Allocate uninitalized data sections: */
  59. .stack : > RAMM0 PAGE = 1
  60. .ebss : > RAML1 PAGE = 1
  61. .esysmem : > RAMH0 PAGE = 1

  62. /* Initalized sections go in Flash */
  63. /* For SDFlash to program these, they must be allocated to page 0 */
  64. .econst : > FLASHA PAGE = 0
  65. .switch : > FLASHA PAGE = 0

  66. /* Allocate IQ math areas: */
  67. IQmath : > FLASHC PAGE = 0 /* Math Code */
  68. IQmathTables : > ROM PAGE = 0, TYPE = NOLOAD /* Math Tables In ROM */

  69. /* .reset is a standard section used by the compiler. It contains the */
  70. /* the address of the start of _c_int00 for C Code. /*
  71. /* When using the boot ROM this section and the CPU vector */
  72. /* table is not needed. Thus the default type is set here to */
  73. /* DSECT */
  74. .reset : > RESET, PAGE = 0, TYPE = DSECT
  75. vectors : > VECTORS PAGE = 0, TYPE = DSECT

  76. FFTipcb3 ALIGN(256) : {} > RAMH0 PAGE=1
  77. FFTipcb4 ALIGN(256) : {} > RAMH0 PAGE=1
  78. FFTmag : > RAMH0 PAGE=1
  79. FFTtf : > RAML0 PAGE=0

  80. }
复制代码
修改了存放fft数据的地方,我感觉还是FFT部分配置的有问题在RAM里是可以的,固化到Flash里就不行了,其他部分都可以在FLASH正常运行
烧写的时候还会出现错误
Warning: This program contains initialized RAM data.
It may run successfully under Code Composer Studio
but not as a standalone system because of this. If
your Flash program requires initialized data in RAM,
you will need to write Flash code to initialize RAM memory.
Erase/Program/Verify Operation succeeded
**** End Erase/Program/Verify Operation. ***
把和FFT相关的部分去掉就不会出现这个警告
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
6条回答
dirtwillfly
1楼-- · 2019-08-04 20:41
 精彩回答 2  元偷偷看……
elecintop
2楼-- · 2019-08-05 00:01
同意二楼的
kekeke
3楼-- · 2019-08-05 05:52
没初始化
monkeypony
4楼-- · 2019-08-05 11:14
支持下
吃肉的考拉
5楼-- · 2019-08-05 15:55
dirtwillfly 发表于 2014-5-31 07:08
警告里说的很清楚啊:你的程序需要初始化的数据在内存中

        FFTipcb4  ALIGN(256)   : {}   > RAM_H0        PAGE = 0

           FFTtf                  :  >  FLASH_AB   PAGE = 0
我改成这样没警告了,但是FFT计算的数据就乱了,那个FFTtf到底应该放到哪里啊
1988020566
6楼-- · 2019-08-05 21:50
 精彩回答 2  元偷偷看……

一周热门 更多>