⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gpio.cmd

📁 利用ccs环境、MATLAB环境、DSP(TMS320F2812)、被测对象和Agilient网络分析仪E5071B
💻 CMD
字号:
-c

-stack 0x400                   /* STACK SIZE               */

-heap  0x200                   /* HEAP  SIZE               */





/* This symbol defines the interrupt mask to be applied to IER inside

   RTDX Critical Code sections.

   This masks DLOGINT

*/



_RTDX_interrupt_mask = ~0x4000; /* interrupts masked by RTDX    */



/* Set entry point to Reset vector                                  */

/* - Allows Reset ISR to force VMAP to point to vector table.  */







 -e c_int00 



MEMORY

{

PAGE 0 : 

   VECTORS(R)   : origin = 0x000000, length = 0x000040

   BOOT(R)      : origin = 0x3f8000, length = 0x80

   PROG(R)      : origin = 0x3f8080, length = 0x1f80

   M0RAM(R)   	: origin = 0x000100, length = 0x300

   

PAGE 1 : 



   M1RAM(RW)   : origin = 0x000400, length = 0x400

   L0L1RAM(RW) : origin = 0x008000, length = 0x2000

   zone2_1(RW)	   : origin = 0x0800fd, length = 0x001
   zone2_2(RW)	   : origin = 0x0800fe, length = 0x001


}

 

 

SECTIONS

{

   /* Allocate program areas: */



	.da_addra : > zone2_1, PAGE = 1
	.da_addrb : > zone2_2, PAGE = 1
   .intvecs         : > VECTORS,  PAGE = 0  /* Interrupt Vectors        */



   .cinit           : > PROG,     PAGE = 0  /* Initialization Tables    */

   .pinit           : > PROG,     PAGE = 0  /* Initialization Tables    */

   .text            : > PROG,     PAGE = 0  /* Code                     */

   .rtdx_text       : > PROG,     PAGE = 0  /* rtdx code                */

   .switch          : > PROG,     PAGE = 0  /* switch table info        */



   .econst           : > M0RAM,     PAGE = 0  /* constant data  

   /* Allocate data areas: */

   .stack           : > M1RAM,  PAGE = 1  fill=0xBEEF

   .bss             : > L0L1RAM,  PAGE = 1  fill=0xBEEF

   .ebss            : > L0L1RAM,  PAGE = 1  fill=0xBEEF

   .sysmem          : > L0L1RAM,  PAGE = 1  fill=0xBEEF 

   .data            : > L0L1RAM,  PAGE = 1  fill=0xBEEF

   .rtdx_data       : > L0L1RAM,  PAGE = 1  fill=0xBEEF

   .cio             : > L0L1RAM,  PAGE = 1  fill=0xBEEF

   .const           : > L0L1RAM,  PAGE = 1  fill=0xBEEF/* constant data            */



  .boot > BOOT

   {

      -lrts2800.lib<boot.obj>(.text)

   }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -