It is purpose to burn .out file in Flash area which the file is tested in RAM area using emulator.
When you check out the Flash area, it is from FF8000 to FFFFFF, however from FF8000, I think there is a boot code.
How can we set-up command file? Please provide a sample command file please.
Below is what I’ve done, when compiling, below warning message shows up.
<Linking>
warning #10247-D: creating output section "vectors" without a SECTIONS specification
'Finished building target: AX-Series Ver0.1.out'
**** Build Finished ****
My Command file
==================
-stack 0x2000 /* Primary stack size */
-sysstack 0x1000 /* Secondary stack size */
-heap 0x2000 /* Heap area size */
MEMORY
{
PAGE 0:
MMR : o = 0x000000, l = 0x0000C0
BOOTL : o = 0x0000C0, l = 0x000240
DARAM : o = 0x000300, l = 0x00FB00
VECS : o = 0x00FE00, l = 0x000200
CE0 : o = 0x010000, l = 0x3f0000
CE1 : o = 0x400000, l = 0x400000
CE2 : o = 0x800000, l = 0x400000
CE3 : o = 0xC00000, l = 0x3F8000
PDROM : o = 0xFF8800, l = 0x007000
}
SECTIONS
{
.text > PDROM
.stack > DARAM
.sysstack > DARAM
.csldata > DARAM
.data > DARAM
.bss > DARAM
.const > PDROM
.sysmem > DARAM
.switch > PDROM
.cinit > PDROM
.pinit > PDROM
.cio > DARAM
.args > DARAM
dmaMem > DARAM
.vectors : {} > VECS PAGE 0
}
Please give us answer for how can we fix this code, and if you can provide sample code, it might be appreciated.
Also, we are using model XDS510USB from Spectrum Digital.
If you could inform us how to download in CCSCv5, We will be greatly appreciated.
Thank You