是CMD的问题,标题中XXXXXXXXX可能为某段程序。在CMD文件中未定义程序存放的位置。
比如说,报了 creating output section csmpasswds without SECTIONS specification 的警告。
只需要打开CMD文件
在SECTIONS文件中加入 csmpasswds : > RAML2, PAGE = 1即可;

SECTIONS
{
   /* Setup for "boot to SARAM" mode:
      The codestart section (found in DSP28_CodeStartBranch.asm)
      re-directs execution to the start of user code.  */
   codestart        : > BEGIN,     PAGE = 0
   ramfuncs         : > RAMM0      PAGE = 0
   .text            : > RAML0L1,   PAGE = 0
   .cinit           : > RAMM0,     PAGE = 0
   .pinit           : > RAMM0,     PAGE = 0
   .switch          : > RAMM0,     PAGE = 0
   .reset           : > RESET,     PAGE = 0, TYPE = DSECT /* not used, */

   .stack            : > RAMM1,     PAGE = 1
   .ebss             : > RAML2,     PAGE = 1
   .econst           : > RAML2,     PAGE = 1
   .esysmem          : > RAML2,     PAGE = 1
   csmpasswds        : > RAML2,     PAGE = 1  //加入这一行,指定csmpasswds程序放在RAML2中
   IQmath            : > RAML0L1,   PAGE = 0
   IQmathTables      : > IQTABLES,  PAGE = 0, TYPE = NOLOAD

  /* Uncomment the section below if calling the IQNexp() or IQexp()
      functions from the IQMath.lib library in order to utilize the
      relevant IQ Math table in Boot ROM (This saves space and Boot ROM
      is 1 wait-state). If this section is not uncommented, IQmathTables2
      will be loaded into other memory (SARAM, Flash, etc.) and will take
      up space, but 0 wait-state is possible.
   */
   /*
   IQmathTables2    : > IQTABLES2, PAGE = 0, TYPE = NOLOAD
   {

              IQmath.lib<IQNexpTable.obj> (IQmathTablesRam)

   }
   */
   /* Uncomment the section below if calling the IQNasin() or IQasin()
      functions from the IQMath.lib library in order to utilize the
      relevant IQ Math table in Boot ROM (This saves space and Boot ROM
      is 1 wait-state). If this section is not uncommented, IQmathTables2
      will be loaded into other memory (SARAM, Flash, etc.) and will take
      up space, but 0 wait-state is possible.
   */
   /*
   IQmathTables3    : > IQTABLES3, PAGE = 0, TYPE = NOLOAD
   {

              IQmath.lib<IQNasinTable.obj> (IQmathTablesRam)

   }
   */

}
Logo

有“AI”的1024 = 2048,欢迎大家加入2048 AI社区

更多推荐