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.
Hello,
I am running TMS320F28379D in CCS and I am getting error
"./lnk.cmd", line 48: error #10099-D: program will not fit into available memory. placement with alignment fails for section ".text" size 0x2b12 . Available memory ranges: FLASH size: 0x1000 unused: 0xe56 max hole: 0xe56
But my flash size is more than 0x1000. In the .cmd file the FLASH section is having more space.
/* Flash sectors */
FLASHA : origin = 0x080002, length = 0x003FFE /* on-chip Flash */
FLASHB : origin = 0x084000, length = 0x003000 /* on-chip Flash */
//FLASHC : origin = 0x084000, length = 0x002000 /* on-chip Flash */
FLASHD : origin = 0x087000, length = 0x001000 /* on-chip Flash */
FLASHE : origin = 0x088000, length = 0x008000 /* on-chip Flash */
FLASHF : origin = 0x090000, length = 0x008000 /* on-chip Flash */
FLASHG : origin = 0x098000, length = 0x008000 /* on-chip Flash */
FLASHH : origin = 0x0A0000, length = 0x008000 /* on-chip Flash */
FLASHI : origin = 0x0A8000, length = 0x008000 /* on-chip Flash */
FLASHJ : origin = 0x0B0000, length = 0x008000 /* on-chip Flash */
FLASHK : origin = 0x0B8000, length = 0x002000 /* on-chip Flash */
FLASHL : origin = 0x0BA000, length = 0x002000 /* on-chip Flash */
FLASHM : origin = 0x0BC000, length = 0x002000 /* on-chip Flash */
FLASHN : origin = 0x0BE000, length = 0x002000 /* on-chip Flash */
RESET : origin = 0x3FFFC0, length = 0x000002
May I know why then this error is coming.
Hi Rekha,
Form the error message, I see that the size if the .text size is 0x2b12, but is trying to fit them in the memory region named FLASH which is only of size 0x1000.
Have you defined this memory somewhere?
In the cmd file, under SECTIONS, you can update the mapping of text file. You can even map them to multiple Flash regions:
.text : >> FLASHB | FLASHC | FLASHD | FLASHE PAGE = 0, ALIGN(8)
Regards,
Veena
Hello,
Please see my .cmd file.
/*
* Copyright (c) 2015-2017, Texas Instruments Incorporated
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* * Neither the name of Texas Instruments Incorporated nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* ======== TMS320F28379D.cmd ========
* Define the memory block start/length for the F28379D
*/
MEMORY
{
PAGE 0 : /* Program Memory */
/* BEGIN is used for the "boot to FLASH" bootloader mode */
D01SARAM : origin = 0x00B000, length = 0x001000
/* Flash boot address */
BEGIN : origin = 0x080000, length = 0x000002
/* Flash sectors */
FLASHA : origin = 0x080002, length = 0x003FFE /* on-chip Flash */
FLASHB : origin = 0x084000, length = 0x003000 /* on-chip Flash */
//FLASHC : origin = 0x084000, length = 0x002000 /* on-chip Flash */
FLASHD : origin = 0x087000, length = 0x001000 /* on-chip Flash */
FLASHE : origin = 0x088000, length = 0x008000 /* on-chip Flash */
FLASHF : origin = 0x090000, length = 0x008000 /* on-chip Flash */
FLASHG : origin = 0x098000, length = 0x008000 /* on-chip Flash */
FLASHH : origin = 0x0A0000, length = 0x008000 /* on-chip Flash */
FLASHI : origin = 0x0A8000, length = 0x008000 /* on-chip Flash */
FLASHJ : origin = 0x0B0000, length = 0x008000 /* on-chip Flash */
FLASHK : origin = 0x0B8000, length = 0x002000 /* on-chip Flash */
FLASHL : origin = 0x0BA000, length = 0x002000 /* on-chip Flash */
FLASHM : origin = 0x0BC000, length = 0x002000 /* on-chip Flash */
FLASHN : origin = 0x0BE000, length = 0x002000 /* on-chip Flash */
RESET : origin = 0x3FFFC0, length = 0x000002
PAGE 1 : /* Data Memory */
BOOT_RSVD : origin = 0x000002, length = 0x000120 /* Part of M0, BOOT rom
will use this for
stack */
M01SARAM : origin = 0x000122, length = 0x002000 /* on-chip RAM */
LS05SARAM : origin = 0x002122, length = 0x004000 /* on-chip RAM */
/* on-chip Global shared RAMs */
// RAMGS0 : origin = 0x00C000, length = 0x001000
RAMGS1 : origin = 0x00D000, length = 0x001000
RAMGS2 : origin = 0x00E000, length = 0x001000
RAMGS3 : origin = 0x00F000, length = 0x001000
RAMGS4 : origin = 0x010000, length = 0x001000
RAMGS5 : origin = 0x011000, length = 0x001000
RAMGS6 : origin = 0x012000, length = 0x001000
RAMGS7 : origin = 0x013000, length = 0x001000
RAMGS8 : origin = 0x014000, length = 0x001000
RAMGS9 : origin = 0x015000, length = 0x001000
RAMGS10 : origin = 0x016000, length = 0x001000
RAMGS11 : origin = 0x017000, length = 0x001000
RAMGS12 : origin = 0x018000, length = 0x001000
RAMGS13 : origin = 0x019000, length = 0x001000
RAMGS14 : origin = 0x01A000, length = 0x001000
RAMGS15 : origin = 0x01B000, length = 0x001000
/* Shared MessageRam */
CPU2TOCPU1RAM : origin = 0x03F800, length = 0x000400
CPU1TOCPU2RAM : origin = 0x03FC00, length = 0x000400
}
SECTIONS
{
/* Allocate program areas: */
.cinit : > FLASHA | FLASHB | FLASHD | FLASHE |
FLASHF | FLASHG | FLASHH | FLASHI | FLASHJ |
FLASHK | FLASHL | FLASHM | FLASHN PAGE = 0
.binit : > FLASHA | FLASHB | FLASHD | FLASHE |
FLASHF | FLASHG | FLASHH | FLASHI | FLASHJ |
FLASHK | FLASHL | FLASHM | FLASHN PAGE = 0
#ifdef __TI_EABI__
.init_array : > FLASHA | FLASHB | FLASHD | FLASHE |
FLASHF | FLASHG | FLASHH | FLASHI | FLASHJ |
FLASHK | FLASHL | FLASHM | FLASHN PAGE = 0
#else
.pinit : > FLASHA | FLASHB | FLASHD | FLASHE |
FLASHF | FLASHG | FLASHH | FLASHI | FLASHJ |
FLASHK | FLASHL | FLASHM | FLASHN PAGE = 0
#endif
.text : > FLASHA | FLASHB | FLASHD | FLASHE |
FLASHF | FLASHG | FLASHH | FLASHI | FLASHJ |
FLASHK | FLASHL | FLASHM | FLASHN PAGE = 0
codestart : > BEGIN PAGE = 0
ramfuncs : LOAD = FLASHA | FLASHB | FLASHD | FLASHE |
FLASHF | FLASHG | FLASHH | FLASHI | FLASHJ |
FLASHK | FLASHL | FLASHM | FLASHN PAGE = 0
RUN = LS05SARAM PAGE = 1
LOAD_START(_RamfuncsLoadStart),
LOAD_SIZE(_RamfuncsLoadSize),
LOAD_END(_RamfuncsLoadEnd),
RUN_START(_RamfuncsRunStart),
RUN_SIZE(_RamfuncsRunSize),
RUN_END(_RamfuncsRunEnd)
#ifdef __TI_COMPILER_VERSION__
#if __TI_COMPILER_VERSION__ >= 15009000
.TI.ramfunc : {} LOAD = FLASHA | FLASHB | FLASHD | FLASHE |
FLASHF | FLASHG | FLASHH | FLASHI | FLASHJ |
FLASHK | FLASHL | FLASHM | FLASHN PAGE = 0,
RUN = LS05SARAM PAGE = 1,
table(BINIT)
#endif
#endif
/* Allocate uninitalized data sections: */
.stack : > M01SARAM | LS05SARAM PAGE = 1
#ifdef __TI_EABI__
.bss : > M01SARAM | LS05SARAM PAGE = 1
.sysmem : > LS05SARAM | M01SARAM PAGE = 1
.data : > M01SARAM | LS05SARAM PAGE = 1
#else
.ebss : > M01SARAM | LS05SARAM PAGE = 1
.esysmem : > LS05SARAM | M01SARAM PAGE = 1
#endif
.cio : > LS05SARAM | M01SARAM PAGE = 1
/* Initalized sections go in Flash */
#ifdef __TI_EABI__
.const : > FLASHA | FLASHB | FLASHD | FLASHE |
FLASHF | FLASHG | FLASHH | FLASHI | FLASHJ |
FLASHK | FLASHL | FLASHM | FLASHN PAGE = 0
#else
.econst : > FLASHA | FLASHB | FLASHD | FLASHE |
FLASHF | FLASHG | FLASHH | FLASHI | FLASHJ |
FLASHK | FLASHL | FLASHM | FLASHN PAGE = 0
#endif
.switch : > FLASHA | FLASHB | FLASHD | FLASHE |
FLASHF | FLASHG | FLASHH | FLASHI | FLASHJ |
FLASHK | FLASHL | FLASHM | FLASHN PAGE = 0
.args : > FLASHA | FLASHB | FLASHD | FLASHE |
FLASHF | FLASHG | FLASHH | FLASHI | FLASHJ |
FLASHK | FLASHL | FLASHM | FLASHN PAGE = 0
Filter_RegsFile : > RAMGS1 | RAMGS2 | RAMGS3 | RAMGS4 |
RAMGS5 | RAMGS6 | RAMGS7 | RAMGS8 | RAMGS9 |
RAMGS10 | RAMGS11 | RAMGS12 | RAMGS13 | RAMGS14 |
RAMGS15 PAGE = 1
/* The following section definitions are required when using the IPC API Drivers */
GROUP : > CPU1TOCPU2RAM, PAGE = 1
{
PUTBUFFER
PUTWRITEIDX
GETREADIDX
}
GROUP : > CPU2TOCPU1RAM, PAGE = 1
{
GETBUFFER : TYPE = DSECT
GETWRITEIDX : TYPE = DSECT
PUTREADIDX : TYPE = DSECT
}
}
I tried to build the program
This has come into the console.
<Linking>
"../TMS320F28379D.cmd", line 119: error #10099-D: program will not fit into available memory. placement with alignment/blocking fails for section "codestart" size 0x2 page 0. Available memory ranges:
BEGIN size: 0x2 unused: 0x0 max hole: 0x0
undefined first referenced
symbol in file
--------- ----------------
_AdcaRegs <whole-program>
_AdcaResultRegs ./main.obj
_AdcbRegs <whole-program>
_AdccRegs <whole-program>
_AdcdRegs <whole-program>
error #10234-D: unresolved symbols remain
I have included F2837xD_Adc.c in the project and in the .cmd file have made enough space.
Can you give more suggestions?
Thanks in advance.
Hi,
Regarding the issue with unresolved symbols, have you included the the file globalvariabledefs.c in your project? This file includes the definitions of all bitfield structs.
Regarding the issue with codestart, can you share the .map file?
Regards,
Veena
Hello,
I have corrected the undefined symbol issue. But I need help regarding memory issue.
"../TMS320F28379D.cmd", line 119: error #10099-D: program will not fit into available memory. placement with alignment/blocking fails for section "codestart" size 0x2 page 0. Available memory ranges:
BEGIN size: 0x2 unused: 0x0 max hole: 0x0
Thanks in advance.
Please find the .map file.
******************************************************************************
TMS320C2000 Linker PC v18.12.7
******************************************************************************
>> Linked Tue Feb 23 13:37:46 2021
OUTPUT FILE NAME: <typicalSysBios.out>
ENTRY POINT SYMBOL: "_c_int00" address: 00081e19
MEMORY CONFIGURATION
name origin length used unused attr fill
---------------------- -------- --------- -------- -------- ---- --------
PAGE 0:
D01SARAM 0000b000 00001000 00000027 00000fd9 RWIX
BEGIN 00080000 00000002 00000002 00000000 RWIX
FLASHA 00080002 00003ffe 00003b5a 000004a4 RWIX
FLASHB 00084000 00003000 00001df8 00001208 RWIX
FLASHD 00087000 00001000 00000000 00001000 RWIX
FLASHE 00088000 00008000 00000000 00008000 RWIX
FLASHF 00090000 00008000 00000000 00008000 RWIX
FLASHG 00098000 00008000 00000000 00008000 RWIX
FLASHH 000a0000 00008000 00000000 00008000 RWIX
FLASHI 000a8000 00008000 00000000 00008000 RWIX
FLASHJ 000b0000 00008000 00000000 00008000 RWIX
FLASHK 000b8000 00002000 00000000 00002000 RWIX
FLASHL 000ba000 00002000 00000000 00002000 RWIX
FLASHM 000bc000 00002000 00000000 00002000 RWIX
FLASHN 000be000 00002000 00000000 00002000 RWIX
RESET 003fffc0 00000002 00000000 00000002 RWIX
PAGE 1:
BOOT_RSVD 00000002 00000120 00000120 00000000 RWIX
M01SARAM 00000122 00002000 00002000 00000000 RWIX
LS05SARAM 00002122 00004000 00002235 00001dcb RWIX
RAMGS1 0000d000 00001000 00000000 00001000 RWIX
RAMGS2 0000e000 00001000 00000000 00001000 RWIX
RAMGS3 0000f000 00001000 00000000 00001000 RWIX
RAMGS4 00010000 00001000 00000000 00001000 RWIX
RAMGS5 00011000 00001000 00000000 00001000 RWIX
RAMGS6 00012000 00001000 00000000 00001000 RWIX
RAMGS7 00013000 00001000 00000000 00001000 RWIX
RAMGS8 00014000 00001000 00000000 00001000 RWIX
RAMGS9 00015000 00001000 00000000 00001000 RWIX
RAMGS10 00016000 00001000 00000000 00001000 RWIX
RAMGS11 00017000 00001000 00000000 00001000 RWIX
RAMGS12 00018000 00001000 00000000 00001000 RWIX
RAMGS13 00019000 00001000 00000000 00001000 RWIX
RAMGS14 0001a000 00001000 00000000 00001000 RWIX
RAMGS15 0001b000 00001000 00000000 00001000 RWIX
CPU2TOCPU1RAM 0003f800 00000400 00000000 00000400 RWIX
CPU1TOCPU2RAM 0003fc00 00000400 00000000 00000400 RWIX
SECTION ALLOCATION MAP
output attributes/
section page origin length input sections
-------- ---- ---------- ---------- ----------------
codestart
* 0 00000000 00000002 FAILED TO ALLOCATE
.TI.ramfunc
* 0 0008002a 00000004 RUN ADDR = 00002122
0008002a 00000004 F2837xD_usDelay.obj (.TI.ramfunc)
.cinit 0 000836e9 00000446
000836e9 000001c3 app_p28FP.o28FP (.cinit:_ti_sysbios_family_c28_Hwi_Module_State_0_dispatchTable__A)
000838ac 00000119 app_p28FP.o28FP (.cinit)
000839c5 00000043 app_p28FP.o28FP (.cinit:_ti_sysbios_knl_Swi_Module_State_0_readyQ__A)
00083a08 00000043 app_p28FP.o28FP (.cinit:_ti_sysbios_knl_Task_Module_State_0_readyQ__A)
00083a4b 0000002d app_p28FP.o28FP (.cinit:_ti_sysbios_knl_Task_Object__table__V)
00083a78 0000001f app_p28FP.o28FP (.cinit:_ti_sysbios_gates_GateMutex_Object__table__V)
00083a97 0000001b app_p28FP.o28FP (.cinit:_ti_sysbios_family_c28_Timer_Object__table__V)
00083ab2 00000017 app_p28FP.o28FP (.cinit:_ti_sysbios_knl_Swi_Object__table__V)
00083ac9 00000015 app_p28FP.o28FP (.cinit:_xdc_runtime_LoggerBuf_Object__table__V)
00083ade 00000013 app_p28FP.o28FP (.cinit:_ti_sysbios_family_c28_Hwi_Object__table__V)
00083af1 0000000f app_p28FP.o28FP (.cinit:_ti_sysbios_heaps_HeapMem_Object__table__V)
00083b00 0000000e rts2800_fpu32.lib : exit.c.obj (.cinit)
00083b0e 0000000b app_p28FP.o28FP (.cinit:_xdc_runtime_System_Module_State_0_atexitHandlers__A)
00083b19 00000005 <whole-program> (.cinit:__lock)
00083b1e 00000005 <whole-program> (.cinit:__unlock)
00083b23 00000005 app_p28FP.o28FP (.cinit:_ti_sysbios_gates_GateHwi_Object__table__V)
00083b28 00000005 app_p28FP.o28FP (.cinit:_ti_sysbios_knl_Task_Module_State_0_idleTask__A)
00083b2d 00000002 --HOLE-- [fill = 0]
.binit 0 00083b4c 00000012
00083b4c 00000012 (.binit)
.pinit 0 00080002 00000000 UNINITIALIZED
.text 0 0008002e 000036bb
0008002e 00000233 ti.targets.rts2800.a28FP : System.o28FP (.text:_xdc_runtime_System_doPrint__I)
00080261 000001dc sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Semaphore_pend__E)
0008043d 000001a1 : BIOS.obj (.text:_ti_sysbios_heaps_HeapMem_freeUnprotected__E)
000805de 0000016c : BIOS.obj (.text:_ti_sysbios_heaps_HeapMem_allocUnprotected__E)
0008074a 0000016b : BIOS.obj (.text:_ti_sysbios_knl_Task_Instance_finalize__E)
000808b5 0000014f main.obj (.text:_SetupADCContinuous)
00080a04 00000141 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Task_Instance_init__E)
00080b45 00000137 : BIOS.obj (.text:_ti_sysbios_knl_Task_sleep__E)
00080c7c 00000107 rts2800_fpu32.lib : ll_div28.asm.obj (.text)
00080d83 000000f9 main.obj (.text:_taskFxn)
00080e7c 000000ef sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_heaps_HeapMem_Instance_init__E)
00080f6b 000000e9 F2837xD_Adc.obj (.text:_AdcSetMode)
00081054 000000dc sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_Hwi_clearInterrupt__E)
00081130 000000c2 : BIOS.obj (.text:_ti_sysbios_family_c28_Hwi_dispatchCore__I)
000811f2 000000c0 ti.targets.rts2800.a28FP : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_write8__E)
000812b2 000000b8 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Semaphore_post__E)
0008136a 000000b8 app_p28FP.o28FP (.text:_xdc_runtime_System_printfExtend__I)
00081422 000000af sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Clock_workFunc__E)
000814d1 000000a9 : BIOS.obj (.text:_ti_sysbios_knl_Swi_run__I)
0008157a 000000a0 ti.targets.rts2800.a28FP : Core-mem.o28FP (.text:_xdc_runtime_Core_createObject__I)
0008161a 0000009b sysbios.a28FP : c28_Hwi_disp_asm.obj (.text:_ti_sysbios_family_c28_Hwi_dispatch)
000816b5 00000001 Boot.a28FP : Boot.o28FP (.text:_ti_catalog_c2800_initF2837x_Boot_defaultLimpAbortFunction)
000816b6 00000095 rts2800_fpu32.lib : trgmsg.c.obj (.text)
0008174b 00000090 ti.targets.rts2800.a28FP : Error.o28FP (.text:_xdc_runtime_Error_policyDefault__E)
000817db 0000008e sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_Hwi_enableInterrupt__E)
00081869 0000008d ti.targets.rts2800.a28FP : Core-smem.o28FP (.text:_xdc_runtime_Core_constructObject__I)
000818f6 00000088 rts2800_fpu32.lib : fs_div28.asm.obj (.text)
0008197e 00000081 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_Hwi_disableInterrupt__E)
000819ff 00000080 : BIOS.obj (.text:_ti_sysbios_family_c28_Hwi_disablePIEIER__E)
00081a7f 0000007f : BIOS.obj (.text:_ti_sysbios_family_c28_Hwi_enablePIEIER__E)
00081afe 0000007a ti.targets.rts2800.a28FP : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_write4__E)
00081b78 00000075 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Task_checkStacks__E)
00081bed 00000072 : BIOS.obj (.text:_ti_sysbios_knl_Task_startCore__E)
00081c5f 00000071 : BIOS.obj (.text:_ti_sysbios_gates_GateMutex_enter__E)
00081cd0 00000071 ti.targets.rts2800.a28FP : Startup.o28FP (.text:_xdc_runtime_Startup_startMods__I)
00081d41 0000006e sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Task_schedule__I)
00081daf 0000006a : BIOS.obj (.text:_ti_sysbios_knl_Semaphore_Instance_init__E)
00081e19 00000069 boot.a28FP : boot_cg.o28FP (.text)
00081e82 00000066 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_Timer_stopAndClear__I)
00081ee8 00000061 : BIOS.obj (.text:_ti_sysbios_knl_Swi_post__E)
00081f49 00000061 : BIOS.obj (.text:_ti_sysbios_knl_Task_blockI__E)
00081faa 00000060 ti.targets.rts2800.a28FP : Text.o28FP (.text:_xdc_runtime_Text_putSite__E)
0008200a 00000058 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Task_exit__E)
00082062 00000052 : BIOS.obj (.text:_ti_sysbios_knl_Task_unblockI__E)
000820b4 00000049 : BIOS.obj (.text:_ti_sysbios_knl_Task_postInit__I)
000820fd 00000047 : BIOS.obj (.text:_ti_sysbios_family_c28_Hwi_Module_startup__E)
00082144 00000045 Boot.a28FP : Boot.o28FP (.text:.bootCodeSection:_ti_catalog_c2800_initF2837x_Boot_configurePllDivs)
00082189 00000042 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I)
000821cb 00000041 ti.targets.rts2800.a28FP : Text.o28FP (.text:_xdc_runtime_Text_putLab__E)
0008220c 00000040 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_Timer_postInit__I)
0008224c 00000040 ti.targets.rts2800.a28FP : Memory.o28FP (.text:_xdc_runtime_Memory_alloc__E)
0008228c 0000003f : Text.o28FP (.text:_xdc_runtime_Text_putMod__E)
000822cb 0000003e sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Swi_restoreHwi__E)
00082309 0000003e ti.targets.rts2800.a28FP : Core-mem.o28FP (.text:_xdc_runtime_Core_deleteObject__I)
00082347 0000003d : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_getFilterLevel__E)
00082384 0000003c : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_setFilterLevel__E)
000823c0 00000039 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_TaskSupport_start__E)
000823f9 00000039 rts2800_fpu32.lib : hostwrite.c.obj (.text)
00082432 00000037 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Clock_logTick__E)
00082469 00000035 ti.targets.rts2800.a28FP : System.o28FP (.text:_xdc_runtime_System_formatNum__I)
0008249e 00000032 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Task_Module_startup__E)
000824d0 00000031 : BIOS.obj (.text:_ti_sysbios_heaps_HeapMem_alloc__E)
00082501 00000031 app_p28FP.o28FP (.text:_ti_sysbios_knl_Task_create)
00082532 00000030 ti.targets.rts2800.a28FP : Error.o28FP (.text:_xdc_runtime_Error_print__E)
00082562 00000030 : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_Instance_init__E)
00082592 0000002f : Core-params.o28FP (.text:_xdc_runtime_Core_assignParams__I)
000825c1 0000002f : Startup.o28FP (.text:_xdc_runtime_Startup_exec__E)
000825f0 0000002e sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_Hwi_getStackInfo__E)
0008261e 0000002e : BIOS.obj (.text:_ti_sysbios_knl_Swi_runLoop__I)
0008264c 0000002e : BIOS.obj (.text:_ti_sysbios_knl_Swi_schedule__I)
0008267a 0000002d : BIOS.obj (.text:_ti_sysbios_heaps_HeapMem_getStats__E)
000826a7 0000002d ti.targets.rts2800.a28FP : Assert.o28FP (.text:_xdc_runtime_Assert_raise__I)
000826d4 0000002d : Error.o28FP (.text:_xdc_runtime_Error_setX__E)
00082701 0000002d : Text.o28FP (.text:_xdc_runtime_Text_visitRope2__I)
0008272e 0000002c sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_Timer_start__E)
0008275a 0000002c app_p28FP.o28FP (.text:_xdc_runtime_LoggerBuf_Object__create__S)
00082786 00000029 ti.targets.rts2800.a28FP : Text.o28FP (.text:_xdc_runtime_Text_xprintf__I)
000827af 00000029 rts2800_fpu32.lib : exit.c.obj (.text)
000827d8 00000027 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_heaps_HeapMem_init__I)
000827ff 00000026 ti.targets.rts2800.a28FP : SysMin.o28FP (.text:_xdc_runtime_SysMin_flush__E)
00082825 00000025 sysbios.a28FP : c28_TaskSupport_asm.obj (.text:_ti_sysbios_family_c28_TaskSupport_buildTaskStack)
0008284a 00000024 rts2800_fpu32.lib : cpy_tbl.c.obj (.text)
0008286e 00000023 main.obj (.text:_main)
00082891 00000023 ti.targets.rts2800.a28FP : System.o28FP (.text:_xdc_runtime_System_processAtExit__E)
000828b4 00000021 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Task_allBlockedFunction__I)
000828d5 00000020 : BIOS.obj (.text:_ti_sysbios_family_c28_Timer_setPrescale__E)
000828f5 00000020 ti.targets.rts2800.a28FP : System.o28FP (.text:_xdc_runtime_System_atexit__E)
00082915 0000001f : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_filterOutEvent__I)
00082934 0000001d sysbios.a28FP : c28_TaskSupport_asm.obj (.text:_ti_sysbios_family_c28_TaskSupport_swap__E)
00082951 0000001d app_p28FP.o28FP (.text:_ti_sysbios_gates_GateHwi_Object__create__S)
0008296e 0000001d app_p28FP.o28FP (.text:_ti_sysbios_gates_GateMutex_Object__create__S)
0008298b 0000001d app_p28FP.o28FP (.text:_ti_sysbios_heaps_HeapMem_Object__create__S)
000829a8 0000001d app_p28FP.o28FP (.text:_ti_sysbios_knl_Semaphore_construct)
000829c5 0000001d ti.targets.rts2800.a28FP : SysMin.o28FP (.text:_xdc_runtime_SysMin_putch__E)
000829e2 0000001d rts2800_fpu32.lib : memcpy.c.obj (.text)
000829ff 0000001c sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_hal_Hwi_checkStack)
00082a1b 0000001c : BIOS.obj (.text:_ti_sysbios_heaps_HeapMem_free__E)
00082a37 0000001c app_p28FP.o28FP (.text:_xdc_runtime_SysMin_output__I)
00082a53 0000001b main.obj (.text:_ConfigureADC)
00082a6e 0000001b sysbios.a28FP : c28_Hwi_asm.obj (.text:_ti_sysbios_family_c28_Hwi_switchAndDispatch__I)
00082a89 0000001b : BIOS.obj (.text:_ti_sysbios_hal_Hwi_initStack)
00082aa4 0000001b : BIOS.obj (.text:_ti_sysbios_knl_Task_processVitalTaskFlag__I)
00082abf 0000001a : BIOS.obj (.text:_ti_sysbios_knl_Clock_addI__E)
00082ad9 0000001a ti.targets.rts2800.a28FP : Core-label.o28FP (.text:_xdc_runtime_Core_assignLabel__I)
00082af3 0000001a : System.o28FP (.text:_xdc_runtime_System_avprintf__E)
00082b0d 00000019 app_p28FP.o28FP (.text:_ti_sysbios_knl_Queue_construct)
00082b26 00000019 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Semaphore_pendTimeout__I)
00082b3f 00000019 : BIOS.obj (.text:_ti_sysbios_knl_Swi_restore__E)
00082b58 00000019 ti.targets.rts2800.a28FP : System.o28FP (.text:_xdc_runtime_System_vprintf__E)
00082b71 00000019 rts2800_fpu32.lib : args_main.c.obj (.text)
00082b8a 00000018 sysbios.a28FP : c28_Hwi_asm.obj (.text:_ti_sysbios_family_xxx_Hwi_switchAndRunFunc)
00082ba2 00000018 ti.targets.rts2800.a28FP : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_reset__E)
00082bba 00000018 : System.o28FP (.text:_xdc_runtime_System_putchar__I)
00082bd2 00000018 rts2800_fpu32.lib : ll_aox28.asm.obj (.text)
00082bea 00000017 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_Timer_startup__E)
00082c01 00000017 app_p28FP.o28FP (.text:_ti_sysbios_knl_Clock_doTick__I)
00082c18 00000017 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Task_restore__E)
00082c2f 00000017 ti.targets.rts2800.a28FP : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_Module_startup__E)
00082c46 00000017 : Memory.o28FP (.text:_xdc_runtime_Memory_valloc__E)
00082c5d 00000017 : SysMin.o28FP (.text:_xdc_runtime_SysMin_abort__E)
00082c74 00000016 app_p28FP.o28FP (.text:_ti_sysbios_BIOS_atExitFunc__I)
00082c8a 00000016 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_Timer_Module_startup__E)
00082ca0 00000016 ti.targets.rts2800.a28FP : Text.o28FP (.text:_xdc_runtime_Text_printVisFxn__I)
00082cb6 00000015 app_p28FP.o28FP (.text:_ti_sysbios_BIOS_startFunc__I)
00082ccb 00000015 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Swi_Module_startup__E)
00082ce0 00000014 : BIOS.obj (.text:_ti_sysbios_knl_Idle_run__E)
00082cf4 00000013 app_p28FP.o28FP (.text:_ti_sysbios_gates_GateMutex_Object__delete__S)
00082d07 00000013 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Clock_Module_startup__E)
00082d1a 00000013 : BIOS.obj (.text:_ti_sysbios_knl_Task_getMode__E)
00082d2d 00000013 ti.targets.rts2800.a28FP : Error.o28FP (.text:_xdc_runtime_Error_raiseX__E)
00082d40 00000012 app_p28FP.o28FP (.text:_ti_sysbios_gates_GateHwi_Object__delete__S)
00082d52 00000012 app_p28FP.o28FP (.text:_ti_sysbios_heaps_HeapMem_Object__delete__S)
00082d64 00000012 app_p28FP.o28FP (.text:_xdc_runtime_LoggerBuf_Object__delete__S)
00082d76 00000011 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Task_restoreHwi__E)
00082d87 00000011 ti.targets.rts2800.a28FP : Text.o28FP (.text:_xdc_runtime_Text_cordText__E)
00082d98 00000010 app_p28FP.o28FP (.text:_ti_sysbios_BIOS_errorRaiseHook__I)
00082da8 00000010 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_Timer_stop__E)
00082db8 00000010 ti.targets.rts2800.a28FP : SysMin.o28FP (.text:_xdc_runtime_SysMin_Module_startup__E)
00082dc8 0000000f app_p28FP.o28FP (.text:_ti_sysbios_BIOS_removeRTSLock__I)
00082dd7 0000000f sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_gates_GateMutex_Instance_init__E)
00082de6 0000000f ti.targets.rts2800.a28FP : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_write2__E)
00082df5 0000000f : Registry.o28FP (.text:_xdc_runtime_Registry_findById__E)
00082e04 0000000e sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_f2837x_TimestampProvider_get64__E)
00082e12 0000000e app_p28FP.o28FP (.text:_ti_sysbios_heaps_HeapMem_Object__get__S)
00082e20 0000000e app_p28FP.o28FP (.text:_ti_sysbios_knl_Semaphore_destruct)
00082e2e 0000000e app_p28FP.o28FP (.text:_ti_sysbios_knl_Swi_Object__get__S)
00082e3c 0000000e app_p28FP.o28FP (.text:_ti_sysbios_knl_Task_Object__get__S)
00082e4a 0000000e app_p28FP.o28FP (.text:_xdc_runtime_LoggerBuf_Object__get__S)
00082e58 0000000d F2837xD_DefaultISR.obj (.text:_EMPTY_ISR)
00082e65 0000000d app_p28FP.o28FP (.text:_ti_sysbios_BIOS_registerRTSLock__I)
00082e72 0000000d app_p28FP.o28FP (.text:_ti_sysbios_BIOS_rtsLock__I)
00082e7f 0000000d sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_Hwi_dispatchC__I)
00082e8c 0000000d app_p28FP.o28FP (.text:_ti_sysbios_gates_GateHwi_Handle__label__S)
00082e99 0000000d app_p28FP.o28FP (.text:_ti_sysbios_gates_GateMutex_Handle__label__S)
00082ea6 0000000d app_p28FP.o28FP (.text:_ti_sysbios_heaps_HeapMem_Handle__label__S)
00082eb3 0000000d app_p28FP.o28FP (.text:_ti_sysbios_knl_Queue_destruct)
00082ec0 0000000d sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Task_enter__I)
00082ecd 0000000d : BIOS.obj (.text:_ti_sysbios_knl_Task_sleepTimeout__I)
00082eda 0000000d ti.targets.rts2800.a28FP : Error.o28FP (.text:_xdc_runtime_Error_check__E)
00082ee7 0000000d app_p28FP.o28FP (.text:_xdc_runtime_LoggerBuf_Handle__label__S)
00082ef4 0000000d ti.targets.rts2800.a28FP : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_write0__E)
00082f01 0000000d : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_write1__E)
00082f0e 0000000d : System.o28FP (.text:_xdc_runtime_System_abort__E)
00082f1b 0000000c app_p28FP.o28FP (.text:_ti_sysbios_BIOS_exitFunc__I)
00082f27 0000000c app_p28FP.o28FP (.text:_ti_sysbios_family_c28_Hwi_disableIER__E)
00082f33 0000000c sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_gates_GateMutex_leave__E)
00082f3f 0000000c : BIOS.obj (.text:_ti_sysbios_knl_Queue_put__E)
00082f4b 0000000c : BIOS.obj (.text:_ti_sysbios_knl_Task_enabled__E)
00082f57 0000000c ti.targets.rts2800.a28FP : SysMin.o28FP (.text:_xdc_runtime_SysMin_exit__E)
00082f63 0000000b app_p28FP.o28FP (.text:_ti_sysbios_family_c28_Hwi_Module__startupDone__F)
00082f6e 0000000b app_p28FP.o28FP (.text:_ti_sysbios_family_c28_Hwi_Object__get__S)
00082f79 0000000b app_p28FP.o28FP (.text:_ti_sysbios_family_c28_Hwi_enableIER__E)
00082f84 0000000b app_p28FP.o28FP (.text:_ti_sysbios_family_c28_Timer_Module__startupDone__F)
00082f8f 0000000b app_p28FP.o28FP (.text:_ti_sysbios_knl_Queue_Object__get__S)
00082f9a 0000000b app_p28FP.o28FP (.text:_ti_sysbios_knl_Task_SupportProxy_start__E)
00082fa5 0000000b sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Task_unblock__E)
00082fb0 0000000b ti.targets.rts2800.a28FP : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_Instance_finalize__E)
00082fbb 0000000b : System.o28FP (.text:_xdc_runtime_System_exit__E)
00082fc6 0000000a app_p28FP.o28FP (.text:.bootCodeSection:_ti_catalog_c2800_initF2837x_Boot_init)
00082fd0 0000000a F2837xD_DefaultISR.obj (.text:_ADCA1_ISR)
00082fda 0000000a F2837xD_DefaultISR.obj (.text:_ADCA2_ISR)
00082fe4 0000000a F2837xD_DefaultISR.obj (.text:_ADCA3_ISR)
00082fee 0000000a F2837xD_DefaultISR.obj (.text:_ADCA4_ISR)
00082ff8 0000000a F2837xD_DefaultISR.obj (.text:_ADCA_EVT_ISR)
00083002 0000000a F2837xD_DefaultISR.obj (.text:_ADCB1_ISR)
0008300c 0000000a F2837xD_DefaultISR.obj (.text:_ADCB2_ISR)
00083016 0000000a F2837xD_DefaultISR.obj (.text:_ADCB3_ISR)
00083020 0000000a F2837xD_DefaultISR.obj (.text:_ADCB4_ISR)
0008302a 0000000a F2837xD_DefaultISR.obj (.text:_ADCB_EVT_ISR)
00083034 0000000a F2837xD_DefaultISR.obj (.text:_ADCC1_ISR)
0008303e 0000000a F2837xD_DefaultISR.obj (.text:_ADCC2_ISR)
00083048 0000000a F2837xD_DefaultISR.obj (.text:_ADCC3_ISR)
00083052 0000000a F2837xD_DefaultISR.obj (.text:_ADCC4_ISR)
0008305c 0000000a F2837xD_DefaultISR.obj (.text:_ADCC_EVT_ISR)
00083066 0000000a F2837xD_DefaultISR.obj (.text:_ADCD1_ISR)
00083070 0000000a F2837xD_DefaultISR.obj (.text:_ADCD2_ISR)
0008307a 0000000a F2837xD_DefaultISR.obj (.text:_ADCD3_ISR)
00083084 0000000a F2837xD_DefaultISR.obj (.text:_ADCD4_ISR)
0008308e 0000000a F2837xD_DefaultISR.obj (.text:_ADCD_EVT_ISR)
00083098 0000000a F2837xD_DefaultISR.obj (.text:_AUX_PLL_SLIP_ISR)
000830a2 0000000a F2837xD_DefaultISR.obj (.text:_CANA0_ISR)
000830ac 0000000a F2837xD_DefaultISR.obj (.text:_CANA1_ISR)
000830b6 0000000a F2837xD_DefaultISR.obj (.text:_CANB0_ISR)
000830c0 0000000a F2837xD_DefaultISR.obj (.text:_CANB1_ISR)
000830ca 0000000a F2837xD_DefaultISR.obj (.text:_CLA1_1_ISR)
000830d4 0000000a F2837xD_DefaultISR.obj (.text:_CLA1_2_ISR)
000830de 0000000a F2837xD_DefaultISR.obj (.text:_CLA1_3_ISR)
000830e8 0000000a F2837xD_DefaultISR.obj (.text:_CLA1_4_ISR)
000830f2 0000000a F2837xD_DefaultISR.obj (.text:_CLA1_5_ISR)
000830fc 0000000a F2837xD_DefaultISR.obj (.text:_CLA1_6_ISR)
00083106 0000000a F2837xD_DefaultISR.obj (.text:_CLA1_7_ISR)
00083110 0000000a F2837xD_DefaultISR.obj (.text:_CLA1_8_ISR)
0008311a 0000000a F2837xD_DefaultISR.obj (.text:_CLA_OVERFLOW_ISR)
00083124 0000000a F2837xD_DefaultISR.obj (.text:_CLA_UNDERFLOW_ISR)
0008312e 0000000a F2837xD_DefaultISR.obj (.text:_DATALOG_ISR)
00083138 0000000a F2837xD_DefaultISR.obj (.text:_DMA_CH1_ISR)
00083142 0000000a F2837xD_DefaultISR.obj (.text:_DMA_CH2_ISR)
0008314c 0000000a F2837xD_DefaultISR.obj (.text:_DMA_CH3_ISR)
00083156 0000000a F2837xD_DefaultISR.obj (.text:_DMA_CH4_ISR)
00083160 0000000a F2837xD_DefaultISR.obj (.text:_DMA_CH5_ISR)
0008316a 0000000a F2837xD_DefaultISR.obj (.text:_DMA_CH6_ISR)
00083174 0000000a F2837xD_DefaultISR.obj (.text:_ECAP1_ISR)
0008317e 0000000a F2837xD_DefaultISR.obj (.text:_ECAP2_ISR)
00083188 0000000a F2837xD_DefaultISR.obj (.text:_ECAP3_ISR)
00083192 0000000a F2837xD_DefaultISR.obj (.text:_ECAP4_ISR)
0008319c 0000000a F2837xD_DefaultISR.obj (.text:_ECAP5_ISR)
000831a6 0000000a F2837xD_DefaultISR.obj (.text:_ECAP6_ISR)
000831b0 0000000a F2837xD_DefaultISR.obj (.text:_EMIF_ERROR_ISR)
000831ba 0000000a F2837xD_DefaultISR.obj (.text:_EMU_ISR)
000831c4 0000000a F2837xD_DefaultISR.obj (.text:_EPWM10_ISR)
000831ce 0000000a F2837xD_DefaultISR.obj (.text:_EPWM10_TZ_ISR)
000831d8 0000000a F2837xD_DefaultISR.obj (.text:_EPWM11_ISR)
000831e2 0000000a F2837xD_DefaultISR.obj (.text:_EPWM11_TZ_ISR)
000831ec 0000000a F2837xD_DefaultISR.obj (.text:_EPWM12_ISR)
000831f6 0000000a F2837xD_DefaultISR.obj (.text:_EPWM12_TZ_ISR)
00083200 0000000a F2837xD_DefaultISR.obj (.text:_EPWM1_ISR)
0008320a 0000000a F2837xD_DefaultISR.obj (.text:_EPWM1_TZ_ISR)
00083214 0000000a F2837xD_DefaultISR.obj (.text:_EPWM2_ISR)
0008321e 0000000a F2837xD_DefaultISR.obj (.text:_EPWM2_TZ_ISR)
00083228 0000000a F2837xD_DefaultISR.obj (.text:_EPWM3_ISR)
00083232 0000000a F2837xD_DefaultISR.obj (.text:_EPWM3_TZ_ISR)
0008323c 0000000a F2837xD_DefaultISR.obj (.text:_EPWM4_ISR)
00083246 0000000a F2837xD_DefaultISR.obj (.text:_EPWM4_TZ_ISR)
00083250 0000000a F2837xD_DefaultISR.obj (.text:_EPWM5_ISR)
0008325a 0000000a F2837xD_DefaultISR.obj (.text:_EPWM5_TZ_ISR)
00083264 0000000a F2837xD_DefaultISR.obj (.text:_EPWM6_ISR)
0008326e 0000000a F2837xD_DefaultISR.obj (.text:_EPWM6_TZ_ISR)
00083278 0000000a F2837xD_DefaultISR.obj (.text:_EPWM7_ISR)
00083282 0000000a F2837xD_DefaultISR.obj (.text:_EPWM7_TZ_ISR)
0008328c 0000000a F2837xD_DefaultISR.obj (.text:_EPWM8_ISR)
00083296 0000000a F2837xD_DefaultISR.obj (.text:_EPWM8_TZ_ISR)
000832a0 0000000a F2837xD_DefaultISR.obj (.text:_EPWM9_ISR)
000832aa 0000000a F2837xD_DefaultISR.obj (.text:_EPWM9_TZ_ISR)
000832b4 0000000a F2837xD_DefaultISR.obj (.text:_EQEP1_ISR)
000832be 0000000a F2837xD_DefaultISR.obj (.text:_EQEP2_ISR)
000832c8 0000000a F2837xD_DefaultISR.obj (.text:_EQEP3_ISR)
000832d2 0000000a F2837xD_DefaultISR.obj (.text:_FLASH_CORRECTABLE_ERROR_ISR)
000832dc 0000000a F2837xD_DefaultISR.obj (.text:_FPU_OVERFLOW_ISR)
000832e6 0000000a F2837xD_DefaultISR.obj (.text:_FPU_UNDERFLOW_ISR)
000832f0 0000000a F2837xD_DefaultISR.obj (.text:_I2CA_FIFO_ISR)
000832fa 0000000a F2837xD_DefaultISR.obj (.text:_I2CA_ISR)
00083304 0000000a F2837xD_DefaultISR.obj (.text:_I2CB_FIFO_ISR)
0008330e 0000000a F2837xD_DefaultISR.obj (.text:_I2CB_ISR)
00083318 0000000a F2837xD_DefaultISR.obj (.text:_ILLEGAL_ISR)
00083322 0000000a F2837xD_DefaultISR.obj (.text:_IPC0_ISR)
0008332c 0000000a F2837xD_DefaultISR.obj (.text:_IPC1_ISR)
00083336 0000000a F2837xD_DefaultISR.obj (.text:_IPC2_ISR)
00083340 0000000a F2837xD_DefaultISR.obj (.text:_IPC3_ISR)
0008334a 0000000a F2837xD_DefaultISR.obj (.text:_MCBSPA_RX_ISR)
00083354 0000000a F2837xD_DefaultISR.obj (.text:_MCBSPA_TX_ISR)
0008335e 0000000a F2837xD_DefaultISR.obj (.text:_MCBSPB_RX_ISR)
00083368 0000000a F2837xD_DefaultISR.obj (.text:_MCBSPB_TX_ISR)
00083372 0000000a F2837xD_DefaultISR.obj (.text:_NMI_ISR)
0008337c 0000000a F2837xD_DefaultISR.obj (.text:_NOTUSED_ISR)
00083386 0000000a F2837xD_DefaultISR.obj (.text:_PIE_RESERVED_ISR)
00083390 0000000a F2837xD_DefaultISR.obj (.text:_RAM_ACCESS_VIOLATION_ISR)
0008339a 0000000a F2837xD_DefaultISR.obj (.text:_RAM_CORRECTABLE_ERROR_ISR)
000833a4 0000000a F2837xD_DefaultISR.obj (.text:_RTOS_ISR)
000833ae 0000000a F2837xD_DefaultISR.obj (.text:_SCIA_RX_ISR)
000833b8 0000000a F2837xD_DefaultISR.obj (.text:_SCIA_TX_ISR)
000833c2 0000000a F2837xD_DefaultISR.obj (.text:_SCIB_RX_ISR)
000833cc 0000000a F2837xD_DefaultISR.obj (.text:_SCIB_TX_ISR)
000833d6 0000000a F2837xD_DefaultISR.obj (.text:_SCIC_RX_ISR)
000833e0 0000000a F2837xD_DefaultISR.obj (.text:_SCIC_TX_ISR)
000833ea 0000000a F2837xD_DefaultISR.obj (.text:_SCID_RX_ISR)
000833f4 0000000a F2837xD_DefaultISR.obj (.text:_SCID_TX_ISR)
000833fe 0000000a F2837xD_DefaultISR.obj (.text:_SD1_ISR)
00083408 0000000a F2837xD_DefaultISR.obj (.text:_SD2_ISR)
00083412 0000000a F2837xD_DefaultISR.obj (.text:_SPIA_RX_ISR)
0008341c 0000000a F2837xD_DefaultISR.obj (.text:_SPIA_TX_ISR)
00083426 0000000a F2837xD_DefaultISR.obj (.text:_SPIB_RX_ISR)
00083430 0000000a F2837xD_DefaultISR.obj (.text:_SPIB_TX_ISR)
0008343a 0000000a F2837xD_DefaultISR.obj (.text:_SPIC_RX_ISR)
00083444 0000000a F2837xD_DefaultISR.obj (.text:_SPIC_TX_ISR)
0008344e 0000000a F2837xD_DefaultISR.obj (.text:_SYS_PLL_SLIP_ISR)
00083458 0000000a F2837xD_DefaultISR.obj (.text:_TIMER0_ISR)
00083462 0000000a F2837xD_DefaultISR.obj (.text:_TIMER1_ISR)
0008346c 0000000a F2837xD_DefaultISR.obj (.text:_TIMER2_ISR)
00083476 0000000a F2837xD_DefaultISR.obj (.text:_UPPA_ISR)
00083480 0000000a F2837xD_DefaultISR.obj (.text:_USBA_ISR)
0008348a 0000000a F2837xD_DefaultISR.obj (.text:_USER10_ISR)
00083494 0000000a F2837xD_DefaultISR.obj (.text:_USER11_ISR)
0008349e 0000000a F2837xD_DefaultISR.obj (.text:_USER12_ISR)
000834a8 0000000a F2837xD_DefaultISR.obj (.text:_USER1_ISR)
000834b2 0000000a F2837xD_DefaultISR.obj (.text:_USER2_ISR)
000834bc 0000000a F2837xD_DefaultISR.obj (.text:_USER3_ISR)
000834c6 0000000a F2837xD_DefaultISR.obj (.text:_USER4_ISR)
000834d0 0000000a F2837xD_DefaultISR.obj (.text:_USER5_ISR)
000834da 0000000a F2837xD_DefaultISR.obj (.text:_USER6_ISR)
000834e4 0000000a F2837xD_DefaultISR.obj (.text:_USER7_ISR)
000834ee 0000000a F2837xD_DefaultISR.obj (.text:_USER8_ISR)
000834f8 0000000a F2837xD_DefaultISR.obj (.text:_USER9_ISR)
00083502 0000000a F2837xD_DefaultISR.obj (.text:_VCU_ISR)
0008350c 0000000a F2837xD_DefaultISR.obj (.text:_WAKE_ISR)
00083516 0000000a F2837xD_DefaultISR.obj (.text:_XINT1_ISR)
00083520 0000000a F2837xD_DefaultISR.obj (.text:_XINT2_ISR)
0008352a 0000000a F2837xD_DefaultISR.obj (.text:_XINT3_ISR)
00083534 0000000a F2837xD_DefaultISR.obj (.text:_XINT4_ISR)
0008353e 0000000a F2837xD_DefaultISR.obj (.text:_XINT5_ISR)
00083548 0000000a ti.targets.rts2800.a28FP : Error.o28FP (.text:_xdc_runtime_Error_init__E)
00083552 0000000a : Memory.o28FP (.text:_xdc_runtime_Memory_free__E)
0008355c 0000000a : System.o28FP (.text:_xdc_runtime_System_vsnprintf__E)
00083566 0000000a : Text.o28FP (.text:_xdc_runtime_Text_ropeText__E)
00083570 00000009 app_p28FP.o28FP (.text:_ti_sysbios_BIOS_rtsUnlock__I)
00083579 00000009 app_p28FP.o28FP (.text:_ti_sysbios_family_c28_Hwi_restoreIER__E)
00083582 00000009 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_TaskSupport_checkStack__E)
0008358b 00000009 : c28_TaskSupport_asm.obj (.text:_ti_sysbios_family_c28_TaskSupport_glue)
00083594 00000009 : BIOS.obj (.text:_ti_sysbios_hal_Hwi_Module_startup__E)
0008359d 00000009 app_p28FP.o28FP (.text:_xdc_runtime_Startup_exec__I)
000835a6 00000009 app_p28FP.o28FP (.text:_xdc_runtime_Text_visitRope__I)
000835af 00000009 rts2800_fpu32.lib : _lock.c.obj (.text)
000835b8 00000008 Boot.a28FP : Boot.o28FP (.text:.bootCodeSection:_ti_catalog_c2800_initF2837x_Boot_initSharedRAMs)
000835c0 00000008 F2837xD_CodeStartBranch.obj (.text)
000835c8 00000008 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_BIOS_setThreadType__E)
000835d0 00000008 : BIOS.obj (.text:_ti_sysbios_gates_GateMutex_Instance_finalize__E)
000835d8 00000008 : BIOS.obj (.text:_ti_sysbios_knl_Semaphore_Instance_finalize__E)
000835e0 00000008 app_p28FP.o28FP (.text:_xdc_runtime_IHeap_alloc)
000835e8 00000008 ti.targets.rts2800.a28FP : Memory.o28FP (.text:_xdc_runtime_Memory_calloc__E)
000835f0 00000008 : SysMin.o28FP (.text:_xdc_runtime_SysMin_ready__E)
000835f8 00000008 rts2800_fpu32.lib : strlen.c.obj (.text)
00083600 00000007 app_p28FP.o28FP (.text:.bootCodeSection:_ti_catalog_c2800_initF2837x_Boot_initStartup)
00083607 00000007 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Queue_empty__E)
0008360e 00000007 app_p28FP.o28FP (.text:_xdc_runtime_System_aprintf__E)
00083615 00000007 app_p28FP.o28FP (.text:_xdc_runtime_System_printf__E)
0008361c 00000007 rts2800_fpu32.lib : memset.c.obj (.text)
00083623 00000006 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_BIOS_exit__E)
00083629 00000006 : BIOS.obj (.text:_ti_sysbios_BIOS_start__E)
0008362f 00000006 : c28_IntrinsicsSupport_asm.obj (.text:_ti_sysbios_family_c28_IntrinsicsSupport_maxbit__E)
00083635 00000006 : BIOS.obj (.text:_ti_sysbios_knl_Swi_disable__E)
0008363b 00000006 : BIOS.obj (.text:_ti_sysbios_knl_Task_disable__E)
00083641 00000006 ti.targets.rts2800.a28FP : Gate.o28FP (.text:_xdc_runtime_Gate_enterSystem__E)
00083647 00000006 : Gate.o28FP (.text:_xdc_runtime_Gate_leaveSystem__E)
0008364d 00000006 : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_enable__E)
00083653 00000005 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_Hwi_switchFromBootStack__E)
00083658 00000005 : BIOS.obj (.text:_ti_sysbios_gates_GateHwi_enter__E)
0008365d 00000005 ti.targets.rts2800.a28FP : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_disable__E)
00083662 00000004 app_p28FP.o28FP (.text:_ti_sysbios_family_c28_Hwi_startup__E)
00083666 00000004 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_TaskSupport_getStackAlignment__E)
0008366a 00000004 : BIOS.obj (.text:_ti_sysbios_heaps_HeapMem_isBlocking__E)
0008366e 00000004 : BIOS.obj (.text:_ti_sysbios_knl_Swi_startup__E)
00083672 00000004 app_p28FP.o28FP (.text:_xdc_runtime_IHeap_free)
00083676 00000004 ti.targets.rts2800.a28FP : Memory.o28FP (.text:_xdc_runtime_Memory_getMaxDefaultTypeAlign__E)
0008367a 00000004 : Startup.o28FP (.text:_xdc_runtime_Startup_rtsDone__E)
0008367e 00000003 app_p28FP.o28FP (.text:.bootCodeSection:_ti_catalog_c2800_initF2837x_Boot_limpAbort)
00083681 00000003 ti.targets.rts2800.a28FP : xdc_noinit.o28FP (.text:___xdc__init)
00083684 00000003 app_p28FP.o28FP (.text:_ti_sysbios_BIOS_RtsGateProxy_enter__E)
00083687 00000003 app_p28FP.o28FP (.text:_ti_sysbios_BIOS_RtsGateProxy_leave__E)
0008368a 00000003 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_gates_GateHwi_leave__E)
0008368d 00000003 app_p28FP.o28FP (.text:_ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E)
00083690 00000003 app_p28FP.o28FP (.text:_ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E)
00083693 00000003 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_hal_Hwi_startup__E)
00083696 00000003 app_p28FP.o28FP (.text:_ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E)
00083699 00000003 app_p28FP.o28FP (.text:_ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E)
0008369c 00000003 app_p28FP.o28FP (.text:_ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E)
0008369f 00000003 app_p28FP.o28FP (.text:_ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E)
000836a2 00000003 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Idle_loop__E)
000836a5 00000003 : BIOS.obj (.text:_ti_sysbios_knl_Queue_Instance_init__E)
000836a8 00000003 app_p28FP.o28FP (.text:_ti_sysbios_knl_Task_SupportProxy_checkStack__E)
000836ab 00000003 app_p28FP.o28FP (.text:_ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E)
000836ae 00000003 app_p28FP.o28FP (.text:_ti_sysbios_knl_Task_SupportProxy_swap__E)
000836b1 00000003 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Task_startup__E)
000836b4 00000003 app_p28FP.o28FP (.text:_xdc_runtime_LoggerBuf_Module_GateProxy_enter__E)
000836b7 00000003 app_p28FP.o28FP (.text:_xdc_runtime_LoggerBuf_Module_GateProxy_leave__E)
000836ba 00000003 app_p28FP.o28FP (.text:_xdc_runtime_LoggerBuf_TimestampProxy_get64__E)
000836bd 00000003 app_p28FP.o28FP (.text:_xdc_runtime_System_Module_GateProxy_enter__E)
000836c0 00000003 app_p28FP.o28FP (.text:_xdc_runtime_System_Module_GateProxy_leave__E)
000836c3 00000003 ti.targets.rts2800.a28FP : System.o28FP (.text:_xdc_runtime_System_Module_startup__E)
000836c6 00000003 app_p28FP.o28FP (.text:_xdc_runtime_System_SupportProxy_abort__E)
000836c9 00000003 app_p28FP.o28FP (.text:_xdc_runtime_System_SupportProxy_exit__E)
000836cc 00000003 app_p28FP.o28FP (.text:_xdc_runtime_System_SupportProxy_putch__E)
000836cf 00000003 app_p28FP.o28FP (.text:_xdc_runtime_System_SupportProxy_ready__E)
000836d2 00000003 ti.targets.rts2800.a28FP : System.o28FP (.text:_xdc_runtime_System_abortStd__E)
000836d5 00000003 : System.o28FP (.text:_xdc_runtime_System_exitStd__E)
000836d8 00000002 app_p28FP.o28FP (.text:_ti_sysbios_family_c28_TaskSupport_Module__startupDone__S)
000836da 00000002 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_Timer_getMaxTicks__E)
000836dc 00000002 : BIOS.obj (.text:_ti_sysbios_gates_GateHwi_query__E)
000836de 00000002 : BIOS.obj (.text:_ti_sysbios_gates_GateMutex_query__E)
000836e0 00000002 ti.targets.rts2800.a28FP : Error.o28FP (.text:_xdc_runtime_Error_getSite__E)
000836e2 00000002 rts2800_fpu32.lib : pre_init.c.obj (.text)
000836e4 00000001 sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E)
000836e5 00000001 app_p28FP.o28FP (.text:_ti_sysbios_BIOS_nullFunc__I)
000836e6 00000001 sysbios.a28FP : c28_Hwi_asm.obj (.text:_ti_sysbios_family_c28_Hwi_interruptReturn__I)
000836e7 00000001 : BIOS.obj (.text:_ti_sysbios_gates_GateHwi_Instance_init__E)
000836e8 00000001 rts2800_fpu32.lib : startup.c.obj (.text)
.switch 0 00083b30 0000001c
00083b30 0000001c sysbios.a28FP : BIOS.obj (.switch:_ti_sysbios_family_c28_Hwi_clearInterrupt__E)
.econst 0 00084000 00001df8
00084000 00001794 app_p28FP.o28FP (.econst:xdc_runtime_Text_charTab__A)
00085794 000001c0 app_p28FP.o28FP (.econst:_ti_sysbios_family_c28_Hwi_vectors)
00085954 0000006b app_p28FP.o28FP (.econst:.string)
000859bf 00000001 app_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_Module__id__C)
000859c0 00000058 ti.targets.rts2800.a28FP : Error.o28FP (.econst:.string)
00085a18 00000054 app_p28FP.o28FP (.econst:xdc_runtime_Text_nodeTab__A)
00085a6c 00000047 ti.targets.rts2800.a28FP : Log.o28FP (.econst:.string)
00085ab3 00000001 app_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_Module__loggerDefined__C)
00085ab4 00000043 ti.targets.rts2800.a28FP : Text.o28FP (.econst:.string)
00085af7 00000001 app_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_NUM_INTERRUPTS_ALL__C)
00085af8 00000037 main.obj (.econst:.string)
00085b2f 00000001 app_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_Object__count__C)
00085b30 0000002a ti.targets.rts2800.a28FP : Startup.o28FP (.econst:.string)
00085b5a 00000020 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_Object__PARAMS__C)
00085b7a 0000001e app_p28FP.o28FP (.econst:xdc_runtime_LoggerBuf_Module__FXNS__C)
00085b98 00000019 ti.targets.rts2800.a28FP : System.o28FP (.econst:.string)
00085bb1 00000001 app_p28FP.o28FP (.econst:ti_sysbios_family_c28_TaskSupport_Module__id__C)
00085bb2 00000014 app_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_Module__FXNS__C)
00085bc6 00000012 app_p28FP.o28FP (.econst:ti_sysbios_gates_GateHwi_Module__FXNS__C)
00085bd8 00000012 app_p28FP.o28FP (.econst:ti_sysbios_gates_GateMutex_Module__FXNS__C)
00085bea 00000012 app_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_Object__PARAMS__C)
00085bfc 00000012 app_p28FP.o28FP (.econst:xdc_runtime_LoggerBuf_Object__PARAMS__C)
00085c0e 00000012 app_p28FP.o28FP (.econst:xdc_runtime_Startup_sfxnTab__A)
00085c20 00000010 app_p28FP.o28FP (.econst:ti_sysbios_gates_GateHwi_Object__DESC__C)
00085c30 00000010 app_p28FP.o28FP (.econst:ti_sysbios_gates_GateMutex_Object__DESC__C)
00085c40 00000010 app_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_Object__DESC__C)
00085c50 00000010 app_p28FP.o28FP (.econst:ti_sysbios_knl_Queue_Object__DESC__C)
00085c60 00000010 app_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_Object__DESC__C)
00085c70 00000010 app_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_Object__PARAMS__C)
00085c80 00000010 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_Object__DESC__C)
00085c90 00000010 app_p28FP.o28FP (.econst:xdc_runtime_LoggerBuf_Object__DESC__C)
00085ca0 0000000c app_p28FP.o28FP (.econst:ti_sysbios_gates_GateHwi_Object__PARAMS__C)
00085cac 0000000c app_p28FP.o28FP (.econst:ti_sysbios_gates_GateMutex_Object__PARAMS__C)
00085cb8 0000000c app_p28FP.o28FP (.econst:ti_sysbios_knl_Queue_Object__PARAMS__C)
00085cc4 00000009 app_p28FP.o28FP (.econst:xdc_runtime_Startup_sfxnRts__A)
00085ccd 00000001 app_p28FP.o28FP (.econst:ti_sysbios_family_c28_TaskSupport_stackAlignment__C)
00085cce 00000006 app_p28FP.o28FP (.econst:xdc_runtime_Startup_firstFxns__A)
00085cd4 00000005 ti.targets.rts2800.a28FP : Assert.o28FP (.econst:.string)
00085cd9 00000001 app_p28FP.o28FP (.econst:ti_sysbios_family_c28_Timer_startupNeeded__C)
00085cda 00000004 app_p28FP.o28FP (.econst:ti_sysbios_knl_Idle_funcList__C)
00085cde 00000004 app_p28FP.o28FP (.econst:xdc_runtime_Startup_firstFxns__C)
00085ce2 00000004 app_p28FP.o28FP (.econst:xdc_runtime_Startup_lastFxns__C)
00085ce6 00000002 app_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_A_badIntNum__C)
00085ce8 00000002 app_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_A_invalidArg__C)
00085cea 00000002 app_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_E_unpluggedInterrupt__C)
00085cec 00000002 app_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_LD_end__C)
00085cee 00000002 app_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_LM_begin__C)
00085cf0 00000002 app_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_Module__diagsEnabled__C)
00085cf2 00000002 app_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_Module__diagsIncluded__C)
00085cf4 00000002 app_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_Module__diagsMask__C)
00085cf6 00000002 app_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_Module__loggerFxn1__C)
00085cf8 00000002 app_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_Module__loggerFxn8__C)
00085cfa 00000002 app_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_Module__loggerObj__C)
00085cfc 00000002 app_p28FP.o28FP (.econst:ti_sysbios_family_c28_TaskSupport_E_invalidStack__C)
00085cfe 00000002 app_p28FP.o28FP (.econst:ti_sysbios_gates_GateMutex_A_badContext__C)
00085d00 00000002 app_p28FP.o28FP (.econst:ti_sysbios_gates_GateMutex_Instance_State_sem__O)
00085d02 00000002 app_p28FP.o28FP (.econst:ti_sysbios_gates_GateMutex_Module__diagsEnabled__C)
00085d04 00000002 app_p28FP.o28FP (.econst:ti_sysbios_gates_GateMutex_Module__diagsIncluded__C)
00085d06 00000002 app_p28FP.o28FP (.econst:ti_sysbios_gates_GateMutex_Module__diagsMask__C)
00085d08 00000002 app_p28FP.o28FP (.econst:ti_sysbios_hal_Hwi_E_stackOverflow__C)
00085d0a 00000002 app_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_A_align__C)
00085d0c 00000002 app_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_A_heapSize__C)
00085d0e 00000002 app_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_A_invalidFree__C)
00085d10 00000002 app_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_A_zeroBlock__C)
00085d12 00000002 app_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_E_memory__C)
00085d14 00000002 app_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C)
00085d16 00000002 app_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C)
00085d18 00000002 app_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_Module__diagsMask__C)
00085d1a 00000002 app_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_Module__gateObj__C)
00085d1c 00000002 app_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_reqAlign__C)
00085d1e 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_LM_begin__C)
00085d20 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_LM_tick__C)
00085d22 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_LW_delayed__C)
00085d24 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_Module_State_clockQ__O)
00085d26 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_Module__diagsEnabled__C)
00085d28 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_Module__diagsIncluded__C)
00085d2a 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_Module__diagsMask__C)
00085d2c 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_Module__loggerFxn1__C)
00085d2e 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_Module__loggerFxn2__C)
00085d30 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_Module__loggerObj__C)
00085d32 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Idle_funcList__A)
00085d34 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_A_badContext__C)
00085d36 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_A_noEvents__C)
00085d38 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_A_overflow__C)
00085d3a 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_A_pendTaskDisabled__C)
00085d3c 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_Instance_State_pendQ__O)
00085d3e 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_LM_pend__C)
00085d40 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_LM_post__C)
00085d42 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_Module__diagsEnabled__C)
00085d44 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_Module__diagsIncluded__C)
00085d46 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_Module__diagsMask__C)
00085d48 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_Module__loggerFxn2__C)
00085d4a 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_Module__loggerFxn4__C)
00085d4c 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_Module__loggerObj__C)
00085d4e 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Swi_LD_end__C)
00085d50 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Swi_LM_begin__C)
00085d52 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Swi_LM_post__C)
00085d54 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Swi_Module__diagsEnabled__C)
00085d56 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Swi_Module__diagsIncluded__C)
00085d58 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Swi_Module__diagsMask__C)
00085d5a 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Swi_Module__loggerFxn1__C)
00085d5c 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Swi_Module__loggerFxn4__C)
00085d5e 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Swi_Module__loggerObj__C)
00085d60 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_A_badPriority__C)
00085d62 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_A_badTaskState__C)
00085d64 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_A_badThreadType__C)
00085d66 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_A_badTimeout__C)
00085d68 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_A_noPendElem__C)
00085d6a 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_A_sleepTaskDisabled__C)
00085d6c 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_E_spOutOfBounds__C)
00085d6e 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_E_stackOverflow__C)
00085d70 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_LD_block__C)
00085d72 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_LD_exit__C)
00085d74 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_LD_ready__C)
00085d76 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_LM_sleep__C)
00085d78 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_LM_switch__C)
00085d7a 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_Module_State_inactiveQ__O)
00085d7c 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_Module__diagsEnabled__C)
00085d7e 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_Module__diagsIncluded__C)
00085d80 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_Module__diagsMask__C)
00085d82 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_Module__loggerFxn2__C)
00085d84 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_Module__loggerFxn4__C)
00085d86 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_Module__loggerObj__C)
00085d88 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_allBlockedFunc__C)
00085d8a 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_defaultStackHeap__C)
00085d8c 00000002 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_defaultStackSize__C)
00085d8e 00000002 app_p28FP.o28FP (.econst:xdc_runtime_Assert_E_assertFailed__C)
00085d90 00000002 app_p28FP.o28FP (.econst:xdc_runtime_Core_A_initializedParams__C)
00085d92 00000002 app_p28FP.o28FP (.econst:xdc_runtime_Core_Module__diagsEnabled__C)
00085d94 00000002 app_p28FP.o28FP (.econst:xdc_runtime_Core_Module__diagsIncluded__C)
00085d96 00000002 app_p28FP.o28FP (.econst:xdc_runtime_Core_Module__diagsMask__C)
00085d98 00000002 app_p28FP.o28FP (.econst:xdc_runtime_Error_E_memory__C)
00085d9a 00000002 app_p28FP.o28FP (.econst:xdc_runtime_Error_Module__diagsEnabled__C)
00085d9c 00000002 app_p28FP.o28FP (.econst:xdc_runtime_Error_Module__diagsIncluded__C)
00085d9e 00000002 app_p28FP.o28FP (.econst:xdc_runtime_Error_Module__diagsMask__C)
00085da0 00000002 app_p28FP.o28FP (.econst:xdc_runtime_Error_Module__loggerFxn8__C)
00085da2 00000002 app_p28FP.o28FP (.econst:xdc_runtime_Error_Module__loggerObj__C)
00085da4 00000002 app_p28FP.o28FP (.econst:xdc_runtime_Error_policyFxn__C)
00085da6 00000002 app_p28FP.o28FP (.econst:xdc_runtime_Error_raiseHook__C)
00085da8 00000002 app_p28FP.o28FP (.econst:xdc_runtime_IFilterLogger_Interface__BASE__C)
00085daa 00000002 app_p28FP.o28FP (.econst:xdc_runtime_IGateProvider_Interface__BASE__C)
00085dac 00000002 app_p28FP.o28FP (.econst:xdc_runtime_IHeap_Interface__BASE__C)
00085dae 00000002 app_p28FP.o28FP (.econst:xdc_runtime_ILogger_Interface__BASE__C)
00085db0 00000002 app_p28FP.o28FP (.econst:xdc_runtime_IModule_Interface__BASE__C)
00085db2 00000002 app_p28FP.o28FP (.econst:xdc_runtime_Log_L_error__C)
00085db4 00000002 app_p28FP.o28FP (.econst:xdc_runtime_LoggerBuf_E_badLevel__C)
00085db6 00000002 app_p28FP.o28FP (.econst:xdc_runtime_LoggerBuf_Module__gateObj__C)
00085db8 00000002 app_p28FP.o28FP (.econst:xdc_runtime_LoggerBuf_statusLogger__C)
00085dba 00000002 app_p28FP.o28FP (.econst:xdc_runtime_Memory_defaultHeapInstance__C)
00085dbc 00000002 app_p28FP.o28FP (.econst:xdc_runtime_Startup_execImpl__C)
00085dbe 00000002 app_p28FP.o28FP (.econst:xdc_runtime_Startup_sfxnRts__C)
00085dc0 00000002 app_p28FP.o28FP (.econst:xdc_runtime_Startup_sfxnTab__C)
00085dc2 00000002 app_p28FP.o28FP (.econst:xdc_runtime_SysMin_bufSize__C)
00085dc4 00000002 app_p28FP.o28FP (.econst:xdc_runtime_SysMin_outputFunc__C)
00085dc6 00000002 app_p28FP.o28FP (.econst:xdc_runtime_System_Module__gateObj__C)
00085dc8 00000002 app_p28FP.o28FP (.econst:xdc_runtime_System_abortFxn__C)
00085dca 00000002 app_p28FP.o28FP (.econst:xdc_runtime_System_exitFxn__C)
00085dcc 00000002 app_p28FP.o28FP (.econst:xdc_runtime_System_extendFxn__C)
00085dce 00000002 app_p28FP.o28FP (.econst:xdc_runtime_Text_charTab__C)
00085dd0 00000002 app_p28FP.o28FP (.econst:xdc_runtime_Text_nameEmpty__C)
00085dd2 00000002 app_p28FP.o28FP (.econst:xdc_runtime_Text_nameStatic__C)
00085dd4 00000002 app_p28FP.o28FP (.econst:xdc_runtime_Text_nameUnknown__C)
00085dd6 00000002 app_p28FP.o28FP (.econst:xdc_runtime_Text_nodeTab__C)
00085dd8 00000002 app_p28FP.o28FP (.econst:xdc_runtime_Text_visitRopeFxn__C)
00085dda 00000001 app_p28FP.o28FP (.econst:ti_sysbios_gates_GateMutex_Module__id__C)
00085ddb 00000001 app_p28FP.o28FP (.econst:ti_sysbios_hal_Hwi_Module__id__C)
00085ddc 00000001 app_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_Module__id__C)
00085ddd 00000001 app_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_Object__count__C)
00085dde 00000001 app_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_Module__id__C)
00085ddf 00000001 app_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_Module__loggerDefined__C)
00085de0 00000001 app_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_Module__id__C)
00085de1 00000001 app_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_Module__loggerDefined__C)
00085de2 00000001 app_p28FP.o28FP (.econst:ti_sysbios_knl_Swi_Module__id__C)
00085de3 00000001 app_p28FP.o28FP (.econst:ti_sysbios_knl_Swi_Module__loggerDefined__C)
00085de4 00000001 app_p28FP.o28FP (.econst:ti_sysbios_knl_Swi_Object__count__C)
00085de5 00000001 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_Module__id__C)
00085de6 00000001 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_Module__loggerDefined__C)
00085de7 00000001 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_Object__count__C)
00085de8 00000001 app_p28FP.o28FP (.econst:ti_sysbios_knl_Task_numConstructedTasks__C)
00085de9 00000001 app_p28FP.o28FP (.econst:xdc_runtime_Core_Module__id__C)
00085dea 00000001 app_p28FP.o28FP (.econst:xdc_runtime_Error_Module__loggerDefined__C)
00085deb 00000001 app_p28FP.o28FP (.econst:xdc_runtime_Error_maxDepth__C)
00085dec 00000001 app_p28FP.o28FP (.econst:xdc_runtime_Error_policy__C)
00085ded 00000001 app_p28FP.o28FP (.econst:xdc_runtime_LoggerBuf_Module__id__C)
00085dee 00000001 app_p28FP.o28FP (.econst:xdc_runtime_LoggerBuf_Object__count__C)
00085def 00000001 app_p28FP.o28FP (.econst:xdc_runtime_LoggerBuf_filterByLevel__C)
00085df0 00000001 app_p28FP.o28FP (.econst:xdc_runtime_Memory_Module__id__C)
00085df1 00000001 app_p28FP.o28FP (.econst:xdc_runtime_Startup_maxPasses__C)
00085df2 00000001 app_p28FP.o28FP (.econst:xdc_runtime_SysMin_flushAtExit__C)
00085df3 00000001 app_p28FP.o28FP (.econst:xdc_runtime_System_maxAtexitHandlers__C)
00085df4 00000001 app_p28FP.o28FP (.econst:xdc_runtime_Text_charCnt__C)
00085df5 00000001 app_p28FP.o28FP (.econst:xdc_runtime_Text_isLoaded__C)
00085df6 00000001 app_p28FP.o28FP (.econst:xdc_runtime_Text_registryModsLastId__C)
00085df7 00000001 app_p28FP.o28FP (.econst:xdc_runtime_Text_unnamedModsLastId__C)
.ebss 1 00000124 000011e2 UNINITIALIZED
00000124 0000001c app_p28FP.o28FP (.ebss:_ti_sysbios_gates_GateMutex_Object__table__V)
00000140 00000903 app_p28FP.o28FP (.ebss:taskStackSection)
00000a43 00000001 main.obj (.ebss)
00000a44 0000002a app_p28FP.o28FP (.ebss:_ti_sysbios_knl_Task_Object__table__V)
00000a6e 00000012 app_p28FP.o28FP (.ebss:_xdc_runtime_LoggerBuf_Object__table__V)
00000a80 00000200 app_p28FP.o28FP (.ebss:_xdc_runtime_LoggerBuf_Instance_State_0_entryArr__A)
00000c80 00000200 app_p28FP.o28FP (.ebss:_xdc_runtime_SysMin_Module_State_0_outbuf__A)
00000e80 000001c0 app_p28FP.o28FP (.ebss:_ti_sysbios_family_c28_Hwi_Module_State_0_dispatchTable__A)
00001040 00000100 main.obj (.ebss:_AdcaResults)
00001140 000000e0 app_p28FP.o28FP (.ebss)
00001220 00000018 app_p28FP.o28FP (.ebss:_ti_sysbios_family_c28_Timer_Object__table__V)
00001238 00000008 rts2800_fpu32.lib : hostopen.c.obj (.ebss:_parmbuf)
00001240 00000040 app_p28FP.o28FP (.ebss:_ti_sysbios_knl_Swi_Module_State_0_readyQ__A)
00001280 00000040 app_p28FP.o28FP (.ebss:_ti_sysbios_knl_Task_Module_State_0_readyQ__A)
000012c0 00000014 app_p28FP.o28FP (.ebss:_ti_sysbios_knl_Swi_Object__table__V)
000012d4 00000010 app_p28FP.o28FP (.ebss:_ti_sysbios_family_c28_Hwi_Object__table__V)
000012e4 0000000c app_p28FP.o28FP (.ebss:_ti_sysbios_heaps_HeapMem_Object__table__V)
000012f0 00000008 app_p28FP.o28FP (.ebss:_xdc_runtime_System_Module_State_0_atexitHandlers__A)
000012f8 00000006 rts2800_fpu32.lib : exit.c.obj (.ebss)
000012fe 00000002 : _lock.c.obj (.ebss:__lock)
00001300 00000002 : _lock.c.obj (.ebss:__unlock)
00001302 00000002 app_p28FP.o28FP (.ebss:_ti_sysbios_gates_GateHwi_Object__table__V)
00001304 00000002 app_p28FP.o28FP (.ebss:_ti_sysbios_knl_Task_Module_State_0_idleTask__A)
ramfuncs 1 00002122 00000000 UNINITIALIZED
.stack 1 00002126 00001024 UNINITIALIZED
00002126 00001024 --HOLE--
.cio 1 00003180 00000120 UNINITIALIZED
00003180 00000120 rts2800_fpu32.lib : trgmsg.c.obj (.cio)
GETBUFFER
* 0 0003f800 00000000 DSECT
GETWRITEIDX
* 0 0003f800 00000000 DSECT
PUTREADIDX
* 0 0003f800 00000000 DSECT
.ti_catalog_c2800_initF2837x_begin
* 0 00080000 00000002
00080000 00000002 Boot.a28FP : Boot_asm.o28FP (.ti_catalog_c2800_initF2837x_begin)
.text:ti_catalog_c2800_initF2837x_flashfuncs
* 0 00080002 00000027 RUN ADDR = 0000b000
00080002 00000027 Boot.a28FP : Boot.o28FP (.text:ti_catalog_c2800_initF2837x_flashfuncs:_ti_catalog_c2800_initF2837x_Boot_initFlash)
xdc.meta 0 00000000 000000e5 COPY SECTION
00000000 000000e5 app_p28FP.o28FP (xdc.meta)
AnalogSubsysRegsFile
* 1 00000002 0000003e UNINITIALIZED
00000002 0000003e F2837xD_GlobalVariableDefs.obj (AnalogSubsysRegsFile)
DmaRegsFile
* 1 00000040 000000e0 UNINITIALIZED
00000040 000000e0 F2837xD_GlobalVariableDefs.obj (DmaRegsFile)
FlashPumpSemaphoreRegsFile
* 1 00000120 00000002 UNINITIALIZED
00000120 00000002 F2837xD_GlobalVariableDefs.obj (FlashPumpSemaphoreRegsFile)
RomPrefetchRegsFile
* 1 00000122 00000002 UNINITIALIZED
00000122 00000002 F2837xD_GlobalVariableDefs.obj (RomPrefetchRegsFile)
MemoryErrorRegsFile
* 1 00001306 0000003a UNINITIALIZED
00001306 0000003a F2837xD_GlobalVariableDefs.obj (MemoryErrorRegsFile)
PieVectTableFile
* 1 00001340 000001c0 UNINITIALIZED
00001340 000001c0 F2837xD_GlobalVariableDefs.obj (PieVectTableFile)
Flash0CtrlRegsFile
* 1 00001500 00000182 UNINITIALIZED
00001500 00000182 F2837xD_GlobalVariableDefs.obj (Flash0CtrlRegsFile)
Cla1RegsFile
* 1 00001682 0000003e UNINITIALIZED
00001682 0000003e F2837xD_GlobalVariableDefs.obj (Cla1RegsFile)
GpioCtrlRegsFile
* 1 000016c0 00000180 UNINITIALIZED
000016c0 00000180 F2837xD_GlobalVariableDefs.obj (GpioCtrlRegsFile)
CanaRegsFile
* 1 00001840 00000164 UNINITIALIZED
00001840 00000164 F2837xD_GlobalVariableDefs.obj (CanaRegsFile)
Cmpss1RegsFile
* 1 000019a4 0000001b UNINITIALIZED
000019a4 0000001b F2837xD_GlobalVariableDefs.obj (Cmpss1RegsFile)
EmuBModeVar
* 1 000019bf 00000001 UNINITIALIZED
000019bf 00000001 F2837xD_GlobalVariableDefs.obj (EmuBModeVar)
CanbRegsFile
* 1 000019c0 00000164 UNINITIALIZED
000019c0 00000164 F2837xD_GlobalVariableDefs.obj (CanbRegsFile)
Cmpss2RegsFile
* 1 00001b24 0000001b UNINITIALIZED
00001b24 0000001b F2837xD_GlobalVariableDefs.obj (Cmpss2RegsFile)
EmuBootPinsVar
* 1 00001b3f 00000001 UNINITIALIZED
00001b3f 00000001 F2837xD_GlobalVariableDefs.obj (EmuBootPinsVar)
DevCfgRegsFile
* 1 00001b40 0000012e UNINITIALIZED
00001b40 0000012e F2837xD_GlobalVariableDefs.obj (DevCfgRegsFile)
SciaRegsFile
* 1 00001c6e 00000010 UNINITIALIZED
00001c6e 00000010 F2837xD_GlobalVariableDefs.obj (SciaRegsFile)
RomWaitStateRegsFile
* 1 00001c7e 00000002 UNINITIALIZED
00001c7e 00000002 F2837xD_GlobalVariableDefs.obj (RomWaitStateRegsFile)
EPwm10RegsFile
* 1 00001c80 00000100 UNINITIALIZED
00001c80 00000100 F2837xD_GlobalVariableDefs.obj (EPwm10RegsFile)
EPwm11RegsFile
* 1 00001d80 00000100 UNINITIALIZED
00001d80 00000100 F2837xD_GlobalVariableDefs.obj (EPwm11RegsFile)
EPwm12RegsFile
* 1 00001e80 00000100 UNINITIALIZED
00001e80 00000100 F2837xD_GlobalVariableDefs.obj (EPwm12RegsFile)
EPwm1RegsFile
* 1 00001f80 00000100 UNINITIALIZED
00001f80 00000100 F2837xD_GlobalVariableDefs.obj (EPwm1RegsFile)
CpuSysRegsFile
* 1 00002080 00000082 UNINITIALIZED
00002080 00000082 F2837xD_GlobalVariableDefs.obj (CpuSysRegsFile)
InputXbarRegsFile
* 1 00002102 00000020 UNINITIALIZED
00002102 00000020 F2837xD_GlobalVariableDefs.obj (InputXbarRegsFile)
ClkCfgRegsFile
* 1 0000314a 00000032 UNINITIALIZED
0000314a 00000032 F2837xD_GlobalVariableDefs.obj (ClkCfgRegsFile)
Cla1SoftIntRegsFile
* 1 0000317c 00000003 UNINITIALIZED
0000317c 00000003 F2837xD_GlobalVariableDefs.obj (Cla1SoftIntRegsFile)
Cmpss3RegsFile
* 1 000032a0 0000001b UNINITIALIZED
000032a0 0000001b F2837xD_GlobalVariableDefs.obj (Cmpss3RegsFile)
EPwm2RegsFile
* 1 000032c0 00000100 UNINITIALIZED
000032c0 00000100 F2837xD_GlobalVariableDefs.obj (EPwm2RegsFile)
EPwm3RegsFile
* 1 000033c0 00000100 UNINITIALIZED
000033c0 00000100 F2837xD_GlobalVariableDefs.obj (EPwm3RegsFile)
EPwm4RegsFile
* 1 000034c0 00000100 UNINITIALIZED
000034c0 00000100 F2837xD_GlobalVariableDefs.obj (EPwm4RegsFile)
EPwm5RegsFile
* 1 000035c0 00000100 UNINITIALIZED
000035c0 00000100 F2837xD_GlobalVariableDefs.obj (EPwm5RegsFile)
EPwm6RegsFile
* 1 000036c0 00000100 UNINITIALIZED
000036c0 00000100 F2837xD_GlobalVariableDefs.obj (EPwm6RegsFile)
EPwm7RegsFile
* 1 000037c0 00000100 UNINITIALIZED
000037c0 00000100 F2837xD_GlobalVariableDefs.obj (EPwm7RegsFile)
EPwm8RegsFile
* 1 000038c0 00000100 UNINITIALIZED
000038c0 00000100 F2837xD_GlobalVariableDefs.obj (EPwm8RegsFile)
EPwm9RegsFile
* 1 000039c0 00000100 UNINITIALIZED
000039c0 00000100 F2837xD_GlobalVariableDefs.obj (EPwm9RegsFile)
AdcaRegsFile
* 1 00003ac0 0000007c UNINITIALIZED
00003ac0 0000007c F2837xD_GlobalVariableDefs.obj (AdcaRegsFile)
AdcbRegsFile
* 1 00003b40 0000007c UNINITIALIZED
00003b40 0000007c F2837xD_GlobalVariableDefs.obj (AdcbRegsFile)
AdccRegsFile
* 1 00003bc0 0000007c UNINITIALIZED
00003bc0 0000007c F2837xD_GlobalVariableDefs.obj (AdccRegsFile)
AdcdRegsFile
* 1 00003c40 0000007c UNINITIALIZED
00003c40 0000007c F2837xD_GlobalVariableDefs.obj (AdcdRegsFile)
MemCfgRegsFile
* 1 00003cc0 00000076 UNINITIALIZED
00003cc0 00000076 F2837xD_GlobalVariableDefs.obj (MemCfgRegsFile)
Emif1ConfigRegsFile
* 1 00003d36 0000000a UNINITIALIZED
00003d36 0000000a F2837xD_GlobalVariableDefs.obj (Emif1ConfigRegsFile)
Sdfm1RegsFile
* 1 00003d40 00000048 UNINITIALIZED
00003d40 00000048 F2837xD_GlobalVariableDefs.obj (Sdfm1RegsFile)
GpioDataRegsFile
* 1 00003d88 00000030 UNINITIALIZED
00003d88 00000030 F2837xD_GlobalVariableDefs.obj (GpioDataRegsFile)
CpuTimer0RegsFile
* 1 00003db8 00000008 UNINITIALIZED
00003db8 00000008 F2837xD_GlobalVariableDefs.obj (CpuTimer0RegsFile)
Sdfm2RegsFile
* 1 00003dc0 00000048 UNINITIALIZED
00003dc0 00000048 F2837xD_GlobalVariableDefs.obj (Sdfm2RegsFile)
AccessProtectionRegsFile
* 1 00003e08 0000002e UNINITIALIZED
00003e08 0000002e F2837xD_GlobalVariableDefs.obj (AccessProtectionRegsFile)
Emif2ConfigRegsFile
* 1 00003e36 0000000a UNINITIALIZED
00003e36 0000000a F2837xD_GlobalVariableDefs.obj (Emif2ConfigRegsFile)
UppRegsFile
* 1 00003e40 00000048 UNINITIALIZED
00003e40 00000048 F2837xD_GlobalVariableDefs.obj (UppRegsFile)
WdRegsFile
* 1 00003e88 0000002b UNINITIALIZED
00003e88 0000002b F2837xD_GlobalVariableDefs.obj (WdRegsFile)
XintRegsFile
* 1 00003eb3 0000000b UNINITIALIZED
00003eb3 0000000b F2837xD_GlobalVariableDefs.obj (XintRegsFile)
EPwmXbarRegsFile
* 1 00003ec0 00000040 UNINITIALIZED
00003ec0 00000040 F2837xD_GlobalVariableDefs.obj (EPwmXbarRegsFile)
OutputXbarRegsFile
* 1 00003f00 00000040 UNINITIALIZED
00003f00 00000040 F2837xD_GlobalVariableDefs.obj (OutputXbarRegsFile)
Emif1RegsFile
* 1 00003f40 00000028 UNINITIALIZED
00003f40 00000028 F2837xD_GlobalVariableDefs.obj (Emif1RegsFile)
AdcaResultFile
* 1 00003f68 00000018 UNINITIALIZED
00003f68 00000018 F2837xD_GlobalVariableDefs.obj (AdcaResultFile)
Emif2RegsFile
* 1 00003f80 00000028 UNINITIALIZED
00003f80 00000028 F2837xD_GlobalVariableDefs.obj (Emif2RegsFile)
AdcbResultFile
* 1 00003fa8 00000018 UNINITIALIZED
00003fa8 00000018 F2837xD_GlobalVariableDefs.obj (AdcbResultFile)
Flash0EccRegsFile
* 1 00003fc0 00000028 UNINITIALIZED
00003fc0 00000028 F2837xD_GlobalVariableDefs.obj (Flash0EccRegsFile)
AdccResultFile
* 1 00003fe8 00000018 UNINITIALIZED
00003fe8 00000018 F2837xD_GlobalVariableDefs.obj (AdccResultFile)
IpcRegsFile
* 1 00004000 00000024 UNINITIALIZED
00004000 00000024 F2837xD_GlobalVariableDefs.obj (IpcRegsFile)
Cmpss4RegsFile
* 1 00004024 0000001b UNINITIALIZED
00004024 0000001b F2837xD_GlobalVariableDefs.obj (Cmpss4RegsFile)
McbspaRegsFile
* 1 00004040 00000024 UNINITIALIZED
00004040 00000024 F2837xD_GlobalVariableDefs.obj (McbspaRegsFile)
Cmpss5RegsFile
* 1 00004064 0000001b UNINITIALIZED
00004064 0000001b F2837xD_GlobalVariableDefs.obj (Cmpss5RegsFile)
McbspbRegsFile
* 1 00004080 00000024 UNINITIALIZED
00004080 00000024 F2837xD_GlobalVariableDefs.obj (McbspbRegsFile)
Cmpss6RegsFile
* 1 000040a4 0000001b UNINITIALIZED
000040a4 0000001b F2837xD_GlobalVariableDefs.obj (Cmpss6RegsFile)
DcsmZ1RegsFile
* 1 000040c0 00000022 UNINITIALIZED
000040c0 00000022 F2837xD_GlobalVariableDefs.obj (DcsmZ1RegsFile)
Cmpss7RegsFile
* 1 000040e2 0000001b UNINITIALIZED
000040e2 0000001b F2837xD_GlobalVariableDefs.obj (Cmpss7RegsFile)
DcsmZ2RegsFile
* 1 00004100 00000022 UNINITIALIZED
00004100 00000022 F2837xD_GlobalVariableDefs.obj (DcsmZ2RegsFile)
Cmpss8RegsFile
* 1 00004122 0000001b UNINITIALIZED
00004122 0000001b F2837xD_GlobalVariableDefs.obj (Cmpss8RegsFile)
EQep1RegsFile
* 1 00004140 00000022 UNINITIALIZED
00004140 00000022 F2837xD_GlobalVariableDefs.obj (EQep1RegsFile)
DmaClaSrcSelRegsFile
* 1 00004162 0000001a UNINITIALIZED
00004162 0000001a F2837xD_GlobalVariableDefs.obj (DmaClaSrcSelRegsFile)
EQep2RegsFile
* 1 00004180 00000022 UNINITIALIZED
00004180 00000022 F2837xD_GlobalVariableDefs.obj (EQep2RegsFile)
ECap1RegsFile
* 1 000041a2 0000001a UNINITIALIZED
000041a2 0000001a F2837xD_GlobalVariableDefs.obj (ECap1RegsFile)
EQep3RegsFile
* 1 000041c0 00000022 UNINITIALIZED
000041c0 00000022 F2837xD_GlobalVariableDefs.obj (EQep3RegsFile)
ECap2RegsFile
* 1 000041e2 0000001a UNINITIALIZED
000041e2 0000001a F2837xD_GlobalVariableDefs.obj (ECap2RegsFile)
I2caRegsFile
* 1 00004200 00000022 UNINITIALIZED
00004200 00000022 F2837xD_GlobalVariableDefs.obj (I2caRegsFile)
ECap3RegsFile
* 1 00004222 0000001a UNINITIALIZED
00004222 0000001a F2837xD_GlobalVariableDefs.obj (ECap3RegsFile)
I2cbRegsFile
* 1 00004240 00000022 UNINITIALIZED
00004240 00000022 F2837xD_GlobalVariableDefs.obj (I2cbRegsFile)
ECap4RegsFile
* 1 00004262 0000001a UNINITIALIZED
00004262 0000001a F2837xD_GlobalVariableDefs.obj (ECap4RegsFile)
ECap5RegsFile
* 1 00004280 0000001a UNINITIALIZED
00004280 0000001a F2837xD_GlobalVariableDefs.obj (ECap5RegsFile)
ECap6RegsFile
* 1 0000429a 0000001a UNINITIALIZED
0000429a 0000001a F2837xD_GlobalVariableDefs.obj (ECap6RegsFile)
CpuTimer1RegsFile
* 1 000042b4 00000008 UNINITIALIZED
000042b4 00000008 F2837xD_GlobalVariableDefs.obj (CpuTimer1RegsFile)
PieCtrlRegsFile
* 1 000042c0 0000001a UNINITIALIZED
000042c0 0000001a F2837xD_GlobalVariableDefs.obj (PieCtrlRegsFile)
AdcdResultFile
* 1 000042da 00000018 UNINITIALIZED
000042da 00000018 F2837xD_GlobalVariableDefs.obj (AdcdResultFile)
XbarRegsFile
* 1 000042f2 0000000e UNINITIALIZED
000042f2 0000000e F2837xD_GlobalVariableDefs.obj (XbarRegsFile)
ScibRegsFile
* 1 00004300 00000010 UNINITIALIZED
00004300 00000010 F2837xD_GlobalVariableDefs.obj (ScibRegsFile)
ScicRegsFile
* 1 00004310 00000010 UNINITIALIZED
00004310 00000010 F2837xD_GlobalVariableDefs.obj (ScicRegsFile)
ScidRegsFile
* 1 00004320 00000010 UNINITIALIZED
00004320 00000010 F2837xD_GlobalVariableDefs.obj (ScidRegsFile)
SpiaRegsFile
* 1 00004330 00000010 UNINITIALIZED
00004330 00000010 F2837xD_GlobalVariableDefs.obj (SpiaRegsFile)
SpibRegsFile
* 1 00004340 00000010 UNINITIALIZED
00004340 00000010 F2837xD_GlobalVariableDefs.obj (SpibRegsFile)
SpicRegsFile
* 1 00004350 00000010 UNINITIALIZED
00004350 00000010 F2837xD_GlobalVariableDefs.obj (SpicRegsFile)
CpuTimer2RegsFile
* 1 00004360 00000008 UNINITIALIZED
00004360 00000008 F2837xD_GlobalVariableDefs.obj (CpuTimer2RegsFile)
DacaRegsFile
* 1 00004368 00000007 UNINITIALIZED
00004368 00000007 F2837xD_GlobalVariableDefs.obj (DacaRegsFile)
DacbRegsFile
* 1 0000436f 00000007 UNINITIALIZED
0000436f 00000007 F2837xD_GlobalVariableDefs.obj (DacbRegsFile)
DaccRegsFile
* 1 00004376 00000007 UNINITIALIZED
00004376 00000007 F2837xD_GlobalVariableDefs.obj (DaccRegsFile)
NmiIntruptRegsFile
* 1 00004380 00000007 UNINITIALIZED
00004380 00000007 F2837xD_GlobalVariableDefs.obj (NmiIntruptRegsFile)
DcsmCommonRegsFile
* 1 00004388 00000006 UNINITIALIZED
00004388 00000006 F2837xD_GlobalVariableDefs.obj (DcsmCommonRegsFile)
SyncSocRegsFile
* 1 0000438e 00000006 UNINITIALIZED
0000438e 00000006 F2837xD_GlobalVariableDefs.obj (SyncSocRegsFile)
MODULE SUMMARY
Module code initialized data uninitialized data
------ ---- ---------------- ------------------
.\
F2837xD_GlobalVariableDefs.obj 0 0 8235
F2837xD_DefaultISR.obj 1413 0 0
main.obj 646 55 257
F2837xD_Adc.obj 233 0 0
F2837xD_CodeStartBranch.obj 8 0 0
F2837xD_usDelay.obj 8 0 0
+--+----------------------------------------+-------+------------------+--------------------+
Total: 2308 55 8492
C:\Users\INL-LAP\AppData\Local\Temp\
{FF651EE6-C12F-4CCA-AB4B-F193483E1CBC} 0 10 0
+--+----------------------------------------+-------+------------------+--------------------+
Total: 0 10 0
C:\Users\INL-LAP\workspace_v8\typicalSysBios\Debug\configPkg\package\cfg\
app_p28FP.o28FP 1016 8387 4303
+--+----------------------------------------+-------+------------------+--------------------+
Total: 1016 8387 4303
C:\Users\INL-LAP\workspace_v8\typicalSysBios\src\sysbios\sysbios.a28FP
BIOS.obj 6462 28 0
c28_Hwi_disp_asm.obj 155 0 0
c28_TaskSupport_asm.obj 75 0 0
c28_Hwi_asm.obj 52 0 0
c28_IntrinsicsSupport_asm.obj 6 0 0
+--+----------------------------------------+-------+------------------+--------------------+
Total: 6750 28 0
C:\ti\bios_6_76_00_08\packages\ti\catalog\c2800\initF2837x\lib\Boot.a28FP
Boot.o28FP 156 0 0
Boot_asm.o28FP 2 0 0
+--+----------------------------------------+-------+------------------+--------------------+
Total: 158 0 0
C:\ti\bios_6_76_00_08\packages\ti\targets\rts2800\lib\boot.a28FP
boot_cg.o28FP 105 0 0
+--+----------------------------------------+-------+------------------+--------------------+
Total: 105 0 0
C:\ti\bios_6_76_00_08\packages\ti\targets\rts2800\lib\ti.targets.rts2800.a28FP
System.o28FP 801 25 0
LoggerBuf.o28FP 624 0 0
Text.o28FP 359 67 0
Error.o28FP 281 88 0
Core-mem.o28FP 222 0 0
Startup.o28FP 164 42 0
Core-smem.o28FP 141 0 0
SysMin.o28FP 126 0 0
Memory.o28FP 109 0 0
Log.o28FP 0 71 0
Assert.o28FP 45 5 0
Core-params.o28FP 47 0 0
Core-label.o28FP 26 0 0
Registry.o28FP 15 0 0
Gate.o28FP 12 0 0
xdc_noinit.o28FP 3 0 0
+--+----------------------------------------+-------+------------------+--------------------+
Total: 2975 298 0
C:\ti\ccsv8\tools\compiler\ti-cgt-c2000_18.12.7.LTS\lib\rts2800_fpu32.lib
trgmsg.c.obj 149 0 288
ll_div28.asm.obj 263 0 0
fs_div28.asm.obj 136 0 0
exit.c.obj 41 14 6
hostwrite.c.obj 57 0 0
cpy_tbl.c.obj 36 0 0
memcpy.c.obj 29 0 0
args_main.c.obj 25 0 0
ll_aox28.asm.obj 24 0 0
_lock.c.obj 9 0 4
hostopen.c.obj 0 0 8
strlen.c.obj 8 0 0
memset.c.obj 7 0 0
pre_init.c.obj 2 0 0
startup.c.obj 1 0 0
+--+----------------------------------------+-------+------------------+--------------------+
Total: 787 14 306
Stack: 0 0 4132
Linker Generated: 0 18 0
+--+----------------------------------------+-------+------------------+--------------------+
Grand Total: 14099 8810 17233
LINKER GENERATED COPY TABLES
binit @ 00083b4c records: 2, size/record: 8, table size: 18
.text:ti_catalog_c2800_initF2837x_flashfuncs: copy 39 bytes from load addr=00080002 at page=0 to run addr=0000b000 at page=0
.TI.ramfunc: copy 4 bytes from load addr=0008002a at page=0 to run addr=00002122 at page=1
GLOBAL DATA SYMBOLS: SORTED BY DATA PAGE
address data page name
-------- ---------------- ----
00000000 0 (00000000) ___ISA__
00000002 0 (00000000) _AnalogSubsysRegs
00000013 0 (00000000) ___TARG__
00000037 0 (00000000) ___PLAT__
00000040 1 (00000040) _DmaRegs
0000005d 1 (00000040) ___TRDR__
00000084 2 (00000080) ___ASM__
00000120 4 (00000100) _FlashPumpSemaphoreRegs
00000122 4 (00000100) _RomPrefetchRegs
00000124 4 (00000100) _ti_sysbios_gates_GateMutex_Object__table__V
00000140 5 (00000140) _ti_sysbios_knl_Task_Instance_State_0_stack__A
00000240 9 (00000240) _ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A
00000a43 29 (00000a40) _resultsIndex
00000a44 29 (00000a40) _ti_sysbios_knl_Task_Object__table__V
00000a6e 29 (00000a40) _xdc_runtime_LoggerBuf_Object__table__V
00000a80 2a (00000a80) _xdc_runtime_LoggerBuf_Instance_State_0_entryArr__A
00000c80 32 (00000c80) _xdc_runtime_SysMin_Module_State_0_outbuf__A
00000e80 3a (00000e80) _ti_sysbios_family_c28_Hwi_Module_State_0_dispatchTable__A
00001040 41 (00001040) _AdcaResults
00001140 45 (00001140) _xdc_runtime_Error_Module__state__V
00001142 45 (00001140) _xdc_runtime_Memory_Module__state__V
00001144 45 (00001140) ___xdc__init__addr
00001146 45 (00001140) _xdc_runtime_LoggerBuf_Module__state__V
0000114a 45 (00001140) _ti_sysbios_family_c28_Hwi_Module__root__V
0000114e 45 (00001140) _ti_sysbios_family_c28_Timer_Module__root__V
00001152 45 (00001140) _ti_sysbios_gates_GateHwi_Module__root__V
00001156 45 (00001140) _ti_sysbios_gates_GateMutex_Module__root__V
0000115a 45 (00001140) _ti_sysbios_hal_Hwi_Module__root__V
0000115e 45 (00001140) _ti_sysbios_heaps_HeapMem_Module__root__V
00001162 45 (00001140) _ti_sysbios_knl_Clock_Module__root__V
00001166 45 (00001140) _ti_sysbios_knl_Queue_Module__root__V
0000116a 45 (00001140) _ti_sysbios_knl_Semaphore_Module__root__V
0000116e 45 (00001140) _ti_sysbios_knl_Swi_Module__root__V
00001172 45 (00001140) _ti_sysbios_knl_Task_Module__root__V
00001176 45 (00001140) _xdc_runtime_LoggerBuf_Module__root__V
0000117a 45 (00001140) _xdc_runtime_Registry_Module__state__V
00001180 46 (00001180) _xdc_runtime_Startup_Module__state__V
00001184 46 (00001180) _xdc_runtime_SysMin_Module__state__V
00001188 46 (00001180) _xdc_runtime_System_Module__state__V
0000118c 46 (00001180) _xdc_runtime_Text_Module__state__V
00001190 46 (00001180) _ti_sysbios_family_c28_Timer_Module__state__V
00001198 46 (00001180) _ti_sysbios_knl_Swi_Module__state__V
000011a4 46 (00001180) _xdc_runtime_Error_IgnoreBlock
000011c0 47 (000011c0) _ti_sysbios_family_c28_Hwi_Module__state__V
000011d0 47 (000011c0) _ti_sysbios_BIOS_Module__state__V
000011e2 47 (000011c0) _ti_sysbios_knl_Clock_Module__state__V
00001200 48 (00001200) _ti_sysbios_knl_Task_Module__state__V
00001220 48 (00001200) _ti_sysbios_family_c28_Timer_Object__table__V
00001238 48 (00001200) _parmbuf
00001240 49 (00001240) _ti_sysbios_knl_Swi_Module_State_0_readyQ__A
00001280 4a (00001280) _ti_sysbios_knl_Task_Module_State_0_readyQ__A
000012c0 4b (000012c0) _ti_sysbios_knl_Swi_Object__table__V
000012d4 4b (000012c0) _ti_sysbios_family_c28_Hwi_Object__table__V
000012e4 4b (000012c0) _ti_sysbios_heaps_HeapMem_Object__table__V
000012f0 4b (000012c0) _xdc_runtime_System_Module_State_0_atexitHandlers__A
000012f8 4b (000012c0) ___TI_enable_exit_profile_output
000012fa 4b (000012c0) ___TI_cleanup_ptr
000012fc 4b (000012c0) ___TI_dtors_ptr
000012fe 4b (000012c0) __lock
00001300 4c (00001300) __unlock
00001302 4c (00001300) _ti_sysbios_gates_GateHwi_Object__table__V
00001304 4c (00001300) _ti_sysbios_knl_Task_Module_State_0_idleTask__A
00001306 4c (00001300) _MemoryErrorRegs
00001340 4d (00001340) _PieVectTable
00001500 54 (00001500) _Flash0CtrlRegs
00001682 5a (00001680) _Cla1Regs
000016c0 5b (000016c0) _GpioCtrlRegs
00001840 61 (00001840) _CanaRegs
000019a4 66 (00001980) _Cmpss1Regs
000019bf 66 (00001980) _EmuBMode
000019c0 67 (000019c0) _CanbRegs
00001b24 6c (00001b00) _Cmpss2Regs
00001b3f 6c (00001b00) _EmuBootPins
00001b40 6d (00001b40) _DevCfgRegs
00001c6e 71 (00001c40) _SciaRegs
00001c7e 71 (00001c40) _RomWaitStateRegs
00001c80 72 (00001c80) _EPwm10Regs
00001d80 76 (00001d80) _EPwm11Regs
00001e80 7a (00001e80) _EPwm12Regs
00001f80 7e (00001f80) _EPwm1Regs
00002080 82 (00002080) _CpuSysRegs
00002102 84 (00002100) _InputXbarRegs
00002126 84 (00002100) __stack
0000314a c5 (00003140) _ClkCfgRegs
0000317c c5 (00003140) _Cla1SoftIntRegs
00003180 c6 (00003180) __CIOBUF_
000032a0 ca (00003280) _Cmpss3Regs
000032c0 cb (000032c0) _EPwm2Regs
000033c0 cf (000033c0) _EPwm3Regs
000034c0 d3 (000034c0) _EPwm4Regs
000035c0 d7 (000035c0) _EPwm5Regs
000036c0 db (000036c0) _EPwm6Regs
000037c0 df (000037c0) _EPwm7Regs
000038c0 e3 (000038c0) _EPwm8Regs
000039c0 e7 (000039c0) _EPwm9Regs
00003ac0 eb (00003ac0) _AdcaRegs
00003b40 ed (00003b40) _AdcbRegs
00003bc0 ef (00003bc0) _AdccRegs
00003c40 f1 (00003c40) _AdcdRegs
00003cc0 f3 (00003cc0) _MemCfgRegs
00003d36 f4 (00003d00) _Emif1ConfigRegs
00003d40 f5 (00003d40) _Sdfm1Regs
00003d88 f6 (00003d80) _GpioDataRegs
00003db8 f6 (00003d80) _CpuTimer0Regs
00003dc0 f7 (00003dc0) _Sdfm2Regs
00003e08 f8 (00003e00) _AccessProtectionRegs
00003e36 f8 (00003e00) _Emif2ConfigRegs
00003e40 f9 (00003e40) _UppRegs
00003e88 fa (00003e80) _WdRegs
00003eb3 fa (00003e80) _XintRegs
00003ec0 fb (00003ec0) _EPwmXbarRegs
00003f00 fc (00003f00) _OutputXbarRegs
00003f40 fd (00003f40) _Emif1Regs
00003f68 fd (00003f40) _AdcaResultRegs
00003f80 fe (00003f80) _Emif2Regs
00003fa8 fe (00003f80) _AdcbResultRegs
00003fc0 ff (00003fc0) _Flash0EccRegs
00003fe8 ff (00003fc0) _AdccResultRegs
00004000 100 (00004000) _IpcRegs
00004024 100 (00004000) _Cmpss4Regs
00004040 101 (00004040) _McbspaRegs
00004064 101 (00004040) _Cmpss5Regs
00004080 102 (00004080) _McbspbRegs
000040a4 102 (00004080) _Cmpss6Regs
000040c0 103 (000040c0) _DcsmZ1Regs
000040e2 103 (000040c0) _Cmpss7Regs
00004100 104 (00004100) _DcsmZ2Regs
00004122 104 (00004100) _Cmpss8Regs
00004140 105 (00004140) _EQep1Regs
00004162 105 (00004140) _DmaClaSrcSelRegs
00004180 106 (00004180) _EQep2Regs
000041a2 106 (00004180) _ECap1Regs
000041c0 107 (000041c0) _EQep3Regs
000041e2 107 (000041c0) _ECap2Regs
00004200 108 (00004200) _I2caRegs
00004222 108 (00004200) _ECap3Regs
00004240 109 (00004240) _I2cbRegs
00004262 109 (00004240) _ECap4Regs
00004280 10a (00004280) _ECap5Regs
0000429a 10a (00004280) _ECap6Regs
000042b4 10a (00004280) _CpuTimer1Regs
000042c0 10b (000042c0) _PieCtrlRegs
000042da 10b (000042c0) _AdcdResultRegs
000042f2 10b (000042c0) _XbarRegs
00004300 10c (00004300) _ScibRegs
00004310 10c (00004300) _ScicRegs
00004320 10c (00004300) _ScidRegs
00004330 10c (00004300) _SpiaRegs
00004340 10d (00004340) _SpibRegs
00004350 10d (00004340) _SpicRegs
00004360 10d (00004340) _CpuTimer2Regs
00004368 10d (00004340) _DacaRegs
0000436f 10d (00004340) _DacbRegs
00004376 10d (00004340) _DaccRegs
00004380 10e (00004380) _NmiIntruptRegs
00004388 10e (00004380) _DcsmCommonRegs
0000438e 10e (00004380) _SyncSocRegs
00084000 2100 (00084000) _xdc_runtime_Text_charTab__A
00085794 215e (00085780) _ti_sysbios_family_c28_Hwi_vectors
000859bf 2166 (00085980) _ti_sysbios_family_c28_Hwi_Module__id__C
00085a18 2168 (00085a00) _xdc_runtime_Text_nodeTab__A
00085ab3 216a (00085a80) _ti_sysbios_family_c28_Hwi_Module__loggerDefined__C
00085af7 216b (00085ac0) _ti_sysbios_family_c28_Hwi_NUM_INTERRUPTS_ALL__C
00085b2f 216c (00085b00) _ti_sysbios_family_c28_Hwi_Object__count__C
00085b5a 216d (00085b40) _ti_sysbios_knl_Task_Object__PARAMS__C
00085b7a 216d (00085b40) _xdc_runtime_LoggerBuf_Module__FXNS__C
00085bb1 216e (00085b80) _ti_sysbios_family_c28_TaskSupport_Module__id__C
00085bb2 216e (00085b80) _ti_sysbios_heaps_HeapMem_Module__FXNS__C
00085bc6 216f (00085bc0) _ti_sysbios_gates_GateHwi_Module__FXNS__C
00085bd8 216f (00085bc0) _ti_sysbios_gates_GateMutex_Module__FXNS__C
00085bea 216f (00085bc0) _ti_sysbios_heaps_HeapMem_Object__PARAMS__C
00085bfc 216f (00085bc0) _xdc_runtime_LoggerBuf_Object__PARAMS__C
00085c0e 2170 (00085c00) _xdc_runtime_Startup_sfxnTab__A
00085c20 2170 (00085c00) _ti_sysbios_gates_GateHwi_Object__DESC__C
00085c30 2170 (00085c00) _ti_sysbios_gates_GateMutex_Object__DESC__C
00085c40 2171 (00085c40) _ti_sysbios_heaps_HeapMem_Object__DESC__C
00085c50 2171 (00085c40) _ti_sysbios_knl_Queue_Object__DESC__C
00085c60 2171 (00085c40) _ti_sysbios_knl_Semaphore_Object__DESC__C
00085c70 2171 (00085c40) _ti_sysbios_knl_Semaphore_Object__PARAMS__C
00085c80 2172 (00085c80) _ti_sysbios_knl_Task_Object__DESC__C
00085c90 2172 (00085c80) _xdc_runtime_LoggerBuf_Object__DESC__C
00085ca0 2172 (00085c80) _ti_sysbios_gates_GateHwi_Object__PARAMS__C
00085cac 2172 (00085c80) _ti_sysbios_gates_GateMutex_Object__PARAMS__C
00085cb8 2172 (00085c80) _ti_sysbios_knl_Queue_Object__PARAMS__C
00085cc4 2173 (00085cc0) _xdc_runtime_Startup_sfxnRts__A
00085ccd 2173 (00085cc0) _ti_sysbios_family_c28_TaskSupport_stackAlignment__C
00085cce 2173 (00085cc0) _xdc_runtime_Startup_firstFxns__A
00085cd9 2173 (00085cc0) _ti_sysbios_family_c28_Timer_startupNeeded__C
00085cda 2173 (00085cc0) _ti_sysbios_knl_Idle_funcList__C
00085cde 2173 (00085cc0) _xdc_runtime_Startup_firstFxns__C
00085ce2 2173 (00085cc0) _xdc_runtime_Startup_lastFxns__C
00085ce6 2173 (00085cc0) _ti_sysbios_family_c28_Hwi_A_badIntNum__C
00085ce8 2173 (00085cc0) _ti_sysbios_family_c28_Hwi_A_invalidArg__C
00085cea 2173 (00085cc0) _ti_sysbios_family_c28_Hwi_E_unpluggedInterrupt__C
00085cec 2173 (00085cc0) _ti_sysbios_family_c28_Hwi_LD_end__C
00085cee 2173 (00085cc0) _ti_sysbios_family_c28_Hwi_LM_begin__C
00085cf0 2173 (00085cc0) _ti_sysbios_family_c28_Hwi_Module__diagsEnabled__C
00085cf2 2173 (00085cc0) _ti_sysbios_family_c28_Hwi_Module__diagsIncluded__C
00085cf4 2173 (00085cc0) _ti_sysbios_family_c28_Hwi_Module__diagsMask__C
00085cf6 2173 (00085cc0) _ti_sysbios_family_c28_Hwi_Module__loggerFxn1__C
00085cf8 2173 (00085cc0) _ti_sysbios_family_c28_Hwi_Module__loggerFxn8__C
00085cfa 2173 (00085cc0) _ti_sysbios_family_c28_Hwi_Module__loggerObj__C
00085cfc 2173 (00085cc0) _ti_sysbios_family_c28_TaskSupport_E_invalidStack__C
00085cfe 2173 (00085cc0) _ti_sysbios_gates_GateMutex_A_badContext__C
00085d00 2174 (00085d00) _ti_sysbios_gates_GateMutex_Instance_State_sem__O
00085d02 2174 (00085d00) _ti_sysbios_gates_GateMutex_Module__diagsEnabled__C
00085d04 2174 (00085d00) _ti_sysbios_gates_GateMutex_Module__diagsIncluded__C
00085d06 2174 (00085d00) _ti_sysbios_gates_GateMutex_Module__diagsMask__C
00085d08 2174 (00085d00) _ti_sysbios_hal_Hwi_E_stackOverflow__C
00085d0a 2174 (00085d00) _ti_sysbios_heaps_HeapMem_A_align__C
00085d0c 2174 (00085d00) _ti_sysbios_heaps_HeapMem_A_heapSize__C
00085d0e 2174 (00085d00) _ti_sysbios_heaps_HeapMem_A_invalidFree__C
00085d10 2174 (00085d00) _ti_sysbios_heaps_HeapMem_A_zeroBlock__C
00085d12 2174 (00085d00) _ti_sysbios_heaps_HeapMem_E_memory__C
00085d14 2174 (00085d00) _ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C
00085d16 2174 (00085d00) _ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C
00085d18 2174 (00085d00) _ti_sysbios_heaps_HeapMem_Module__diagsMask__C
00085d1a 2174 (00085d00) _ti_sysbios_heaps_HeapMem_Module__gateObj__C
00085d1c 2174 (00085d00) _ti_sysbios_heaps_HeapMem_reqAlign__C
00085d1e 2174 (00085d00) _ti_sysbios_knl_Clock_LM_begin__C
00085d20 2174 (00085d00) _ti_sysbios_knl_Clock_LM_tick__C
00085d22 2174 (00085d00) _ti_sysbios_knl_Clock_LW_delayed__C
00085d24 2174 (00085d00) _ti_sysbios_knl_Clock_Module_State_clockQ__O
00085d26 2174 (00085d00) _ti_sysbios_knl_Clock_Module__diagsEnabled__C
00085d28 2174 (00085d00) _ti_sysbios_knl_Clock_Module__diagsIncluded__C
00085d2a 2174 (00085d00) _ti_sysbios_knl_Clock_Module__diagsMask__C
00085d2c 2174 (00085d00) _ti_sysbios_knl_Clock_Module__loggerFxn1__C
00085d2e 2174 (00085d00) _ti_sysbios_knl_Clock_Module__loggerFxn2__C
00085d30 2174 (00085d00) _ti_sysbios_knl_Clock_Module__loggerObj__C
00085d32 2174 (00085d00) _ti_sysbios_knl_Idle_funcList__A
00085d34 2174 (00085d00) _ti_sysbios_knl_Semaphore_A_badContext__C
00085d36 2174 (00085d00) _ti_sysbios_knl_Semaphore_A_noEvents__C
00085d38 2174 (00085d00) _ti_sysbios_knl_Semaphore_A_overflow__C
00085d3a 2174 (00085d00) _ti_sysbios_knl_Semaphore_A_pendTaskDisabled__C
00085d3c 2174 (00085d00) _ti_sysbios_knl_Semaphore_Instance_State_pendQ__O
00085d3e 2174 (00085d00) _ti_sysbios_knl_Semaphore_LM_pend__C
00085d40 2175 (00085d40) _ti_sysbios_knl_Semaphore_LM_post__C
00085d42 2175 (00085d40) _ti_sysbios_knl_Semaphore_Module__diagsEnabled__C
00085d44 2175 (00085d40) _ti_sysbios_knl_Semaphore_Module__diagsIncluded__C
00085d46 2175 (00085d40) _ti_sysbios_knl_Semaphore_Module__diagsMask__C
00085d48 2175 (00085d40) _ti_sysbios_knl_Semaphore_Module__loggerFxn2__C
00085d4a 2175 (00085d40) _ti_sysbios_knl_Semaphore_Module__loggerFxn4__C
00085d4c 2175 (00085d40) _ti_sysbios_knl_Semaphore_Module__loggerObj__C
00085d4e 2175 (00085d40) _ti_sysbios_knl_Swi_LD_end__C
00085d50 2175 (00085d40) _ti_sysbios_knl_Swi_LM_begin__C
00085d52 2175 (00085d40) _ti_sysbios_knl_Swi_LM_post__C
00085d54 2175 (00085d40) _ti_sysbios_knl_Swi_Module__diagsEnabled__C
00085d56 2175 (00085d40) _ti_sysbios_knl_Swi_Module__diagsIncluded__C
00085d58 2175 (00085d40) _ti_sysbios_knl_Swi_Module__diagsMask__C
00085d5a 2175 (00085d40) _ti_sysbios_knl_Swi_Module__loggerFxn1__C
00085d5c 2175 (00085d40) _ti_sysbios_knl_Swi_Module__loggerFxn4__C
00085d5e 2175 (00085d40) _ti_sysbios_knl_Swi_Module__loggerObj__C
00085d60 2175 (00085d40) _ti_sysbios_knl_Task_A_badPriority__C
00085d62 2175 (00085d40) _ti_sysbios_knl_Task_A_badTaskState__C
00085d64 2175 (00085d40) _ti_sysbios_knl_Task_A_badThreadType__C
00085d66 2175 (00085d40) _ti_sysbios_knl_Task_A_badTimeout__C
00085d68 2175 (00085d40) _ti_sysbios_knl_Task_A_noPendElem__C
00085d6a 2175 (00085d40) _ti_sysbios_knl_Task_A_sleepTaskDisabled__C
00085d6c 2175 (00085d40) _ti_sysbios_knl_Task_E_spOutOfBounds__C
00085d6e 2175 (00085d40) _ti_sysbios_knl_Task_E_stackOverflow__C
00085d70 2175 (00085d40) _ti_sysbios_knl_Task_LD_block__C
00085d72 2175 (00085d40) _ti_sysbios_knl_Task_LD_exit__C
00085d74 2175 (00085d40) _ti_sysbios_knl_Task_LD_ready__C
00085d76 2175 (00085d40) _ti_sysbios_knl_Task_LM_sleep__C
00085d78 2175 (00085d40) _ti_sysbios_knl_Task_LM_switch__C
00085d7a 2175 (00085d40) _ti_sysbios_knl_Task_Module_State_inactiveQ__O
00085d7c 2175 (00085d40) _ti_sysbios_knl_Task_Module__diagsEnabled__C
00085d7e 2175 (00085d40) _ti_sysbios_knl_Task_Module__diagsIncluded__C
00085d80 2176 (00085d80) _ti_sysbios_knl_Task_Module__diagsMask__C
00085d82 2176 (00085d80) _ti_sysbios_knl_Task_Module__loggerFxn2__C
00085d84 2176 (00085d80) _ti_sysbios_knl_Task_Module__loggerFxn4__C
00085d86 2176 (00085d80) _ti_sysbios_knl_Task_Module__loggerObj__C
00085d88 2176 (00085d80) _ti_sysbios_knl_Task_allBlockedFunc__C
00085d8a 2176 (00085d80) _ti_sysbios_knl_Task_defaultStackHeap__C
00085d8c 2176 (00085d80) _ti_sysbios_knl_Task_defaultStackSize__C
00085d8e 2176 (00085d80) _xdc_runtime_Assert_E_assertFailed__C
00085d90 2176 (00085d80) _xdc_runtime_Core_A_initializedParams__C
00085d92 2176 (00085d80) _xdc_runtime_Core_Module__diagsEnabled__C
00085d94 2176 (00085d80) _xdc_runtime_Core_Module__diagsIncluded__C
00085d96 2176 (00085d80) _xdc_runtime_Core_Module__diagsMask__C
00085d98 2176 (00085d80) _xdc_runtime_Error_E_memory__C
00085d9a 2176 (00085d80) _xdc_runtime_Error_Module__diagsEnabled__C
00085d9c 2176 (00085d80) _xdc_runtime_Error_Module__diagsIncluded__C
00085d9e 2176 (00085d80) _xdc_runtime_Error_Module__diagsMask__C
00085da0 2176 (00085d80) _xdc_runtime_Error_Module__loggerFxn8__C
00085da2 2176 (00085d80) _xdc_runtime_Error_Module__loggerObj__C
00085da4 2176 (00085d80) _xdc_runtime_Error_policyFxn__C
00085da6 2176 (00085d80) _xdc_runtime_Error_raiseHook__C
00085da8 2176 (00085d80) _xdc_runtime_IFilterLogger_Interface__BASE__C
00085daa 2176 (00085d80) _xdc_runtime_IGateProvider_Interface__BASE__C
00085dac 2176 (00085d80) _xdc_runtime_IHeap_Interface__BASE__C
00085dae 2176 (00085d80) _xdc_runtime_ILogger_Interface__BASE__C
00085db0 2176 (00085d80) _xdc_runtime_IModule_Interface__BASE__C
00085db2 2176 (00085d80) _xdc_runtime_Log_L_error__C
00085db4 2176 (00085d80) _xdc_runtime_LoggerBuf_E_badLevel__C
00085db6 2176 (00085d80) _xdc_runtime_LoggerBuf_Module__gateObj__C
00085db8 2176 (00085d80) _xdc_runtime_LoggerBuf_statusLogger__C
00085dba 2176 (00085d80) _xdc_runtime_Memory_defaultHeapInstance__C
00085dbc 2176 (00085d80) _xdc_runtime_Startup_execImpl__C
00085dbe 2176 (00085d80) _xdc_runtime_Startup_sfxnRts__C
00085dc0 2177 (00085dc0) _xdc_runtime_Startup_sfxnTab__C
00085dc2 2177 (00085dc0) _xdc_runtime_SysMin_bufSize__C
00085dc4 2177 (00085dc0) _xdc_runtime_SysMin_outputFunc__C
00085dc6 2177 (00085dc0) _xdc_runtime_System_Module__gateObj__C
00085dc8 2177 (00085dc0) _xdc_runtime_System_abortFxn__C
00085dca 2177 (00085dc0) _xdc_runtime_System_exitFxn__C
00085dcc 2177 (00085dc0) _xdc_runtime_System_extendFxn__C
00085dce 2177 (00085dc0) _xdc_runtime_Text_charTab__C
00085dd0 2177 (00085dc0) _xdc_runtime_Text_nameEmpty__C
00085dd2 2177 (00085dc0) _xdc_runtime_Text_nameStatic__C
00085dd4 2177 (00085dc0) _xdc_runtime_Text_nameUnknown__C
00085dd6 2177 (00085dc0) _xdc_runtime_Text_nodeTab__C
00085dd8 2177 (00085dc0) _xdc_runtime_Text_visitRopeFxn__C
00085dda 2177 (00085dc0) _ti_sysbios_gates_GateMutex_Module__id__C
00085ddb 2177 (00085dc0) _ti_sysbios_hal_Hwi_Module__id__C
00085ddc 2177 (00085dc0) _ti_sysbios_heaps_HeapMem_Module__id__C
00085ddd 2177 (00085dc0) _ti_sysbios_heaps_HeapMem_Object__count__C
00085dde 2177 (00085dc0) _ti_sysbios_knl_Clock_Module__id__C
00085ddf 2177 (00085dc0) _ti_sysbios_knl_Clock_Module__loggerDefined__C
00085de0 2177 (00085dc0) _ti_sysbios_knl_Semaphore_Module__id__C
00085de1 2177 (00085dc0) _ti_sysbios_knl_Semaphore_Module__loggerDefined__C
00085de2 2177 (00085dc0) _ti_sysbios_knl_Swi_Module__id__C
00085de3 2177 (00085dc0) _ti_sysbios_knl_Swi_Module__loggerDefined__C
00085de4 2177 (00085dc0) _ti_sysbios_knl_Swi_Object__count__C
00085de5 2177 (00085dc0) _ti_sysbios_knl_Task_Module__id__C
00085de6 2177 (00085dc0) _ti_sysbios_knl_Task_Module__loggerDefined__C
00085de7 2177 (00085dc0) _ti_sysbios_knl_Task_Object__count__C
00085de8 2177 (00085dc0) _ti_sysbios_knl_Task_numConstructedTasks__C
00085de9 2177 (00085dc0) _xdc_runtime_Core_Module__id__C
00085dea 2177 (00085dc0) _xdc_runtime_Error_Module__loggerDefined__C
00085deb 2177 (00085dc0) _xdc_runtime_Error_maxDepth__C
00085dec 2177 (00085dc0) _xdc_runtime_Error_policy__C
00085ded 2177 (00085dc0) _xdc_runtime_LoggerBuf_Module__id__C
00085dee 2177 (00085dc0) _xdc_runtime_LoggerBuf_Object__count__C
00085def 2177 (00085dc0) _xdc_runtime_LoggerBuf_filterByLevel__C
00085df0 2177 (00085dc0) _xdc_runtime_Memory_Module__id__C
00085df1 2177 (00085dc0) _xdc_runtime_Startup_maxPasses__C
00085df2 2177 (00085dc0) _xdc_runtime_SysMin_flushAtExit__C
00085df3 2177 (00085dc0) _xdc_runtime_System_maxAtexitHandlers__C
00085df4 2177 (00085dc0) _xdc_runtime_Text_charCnt__C
00085df5 2177 (00085dc0) _xdc_runtime_Text_isLoaded__C
00085df6 2177 (00085dc0) _xdc_runtime_Text_registryModsLastId__C
00085df7 2177 (00085dc0) _xdc_runtime_Text_unnamedModsLastId__C
GLOBAL SYMBOLS: SORTED ALPHABETICALLY BY Name
page address name
---- ------- ----
0 0008002e .text
0 000827af C$$EXIT
0 00081709 C$$IO$$
0 000818f6 FS$$DIV
0 00082bd2 LL$$AND
0 00080c7c LL$$DIV
0 00080cb8 LL$$MOD
0 00082bda LL$$OR
0 00082be2 LL$$XOR
0 00080cf2 ULL$$DIV
0 00080d21 ULL$$MOD
0 00082fd0 _ADCA1_ISR
0 00082fda _ADCA2_ISR
0 00082fe4 _ADCA3_ISR
0 00082fee _ADCA4_ISR
0 00082ff8 _ADCA_EVT_ISR
0 00083002 _ADCB1_ISR
0 0008300c _ADCB2_ISR
0 00083016 _ADCB3_ISR
0 00083020 _ADCB4_ISR
0 0008302a _ADCB_EVT_ISR
0 00083034 _ADCC1_ISR
0 0008303e _ADCC2_ISR
0 00083048 _ADCC3_ISR
0 00083052 _ADCC4_ISR
0 0008305c _ADCC_EVT_ISR
0 00083066 _ADCD1_ISR
0 00083070 _ADCD2_ISR
0 0008307a _ADCD3_ISR
0 00083084 _ADCD4_ISR
0 0008308e _ADCD_EVT_ISR
0 00083098 _AUX_PLL_SLIP_ISR
1 00003e08 _AccessProtectionRegs
0 00080f6b _AdcSetMode
1 00003ac0 _AdcaRegs
1 00003f68 _AdcaResultRegs
1 00001040 _AdcaResults
1 00003b40 _AdcbRegs
1 00003fa8 _AdcbResultRegs
1 00003bc0 _AdccRegs
1 00003fe8 _AdccResultRegs
1 00003c40 _AdcdRegs
1 000042da _AdcdResultRegs
1 00000002 _AnalogSubsysRegs
0 000830a2 _CANA0_ISR
0 000830ac _CANA1_ISR
0 000830b6 _CANB0_ISR
0 000830c0 _CANB1_ISR
0 000830ca _CLA1_1_ISR
0 000830d4 _CLA1_2_ISR
0 000830de _CLA1_3_ISR
0 000830e8 _CLA1_4_ISR
0 000830f2 _CLA1_5_ISR
0 000830fc _CLA1_6_ISR
0 00083106 _CLA1_7_ISR
0 00083110 _CLA1_8_ISR
0 0008311a _CLA_OVERFLOW_ISR
0 00083124 _CLA_UNDERFLOW_ISR
1 00001840 _CanaRegs
1 000019c0 _CanbRegs
1 00001682 _Cla1Regs
1 0000317c _Cla1SoftIntRegs
1 0000314a _ClkCfgRegs
1 000019a4 _Cmpss1Regs
1 00001b24 _Cmpss2Regs
1 000032a0 _Cmpss3Regs
1 00004024 _Cmpss4Regs
1 00004064 _Cmpss5Regs
1 000040a4 _Cmpss6Regs
1 000040e2 _Cmpss7Regs
1 00004122 _Cmpss8Regs
0 00082a53 _ConfigureADC
1 00002080 _CpuSysRegs
1 00003db8 _CpuTimer0Regs
1 000042b4 _CpuTimer1Regs
1 00004360 _CpuTimer2Regs
0 0008312e _DATALOG_ISR
0 00083138 _DMA_CH1_ISR
0 00083142 _DMA_CH2_ISR
0 0008314c _DMA_CH3_ISR
0 00083156 _DMA_CH4_ISR
0 00083160 _DMA_CH5_ISR
0 0008316a _DMA_CH6_ISR
1 00004368 _DacaRegs
1 0000436f _DacbRegs
1 00004376 _DaccRegs
1 00004388 _DcsmCommonRegs
1 000040c0 _DcsmZ1Regs
1 00004100 _DcsmZ2Regs
1 00001b40 _DevCfgRegs
1 00004162 _DmaClaSrcSelRegs
1 00000040 _DmaRegs
0 00083174 _ECAP1_ISR
0 0008317e _ECAP2_ISR
0 00083188 _ECAP3_ISR
0 00083192 _ECAP4_ISR
0 0008319c _ECAP5_ISR
0 000831a6 _ECAP6_ISR
1 000041a2 _ECap1Regs
1 000041e2 _ECap2Regs
1 00004222 _ECap3Regs
1 00004262 _ECap4Regs
1 00004280 _ECap5Regs
1 0000429a _ECap6Regs
0 000831b0 _EMIF_ERROR_ISR
0 00082e58 _EMPTY_ISR
0 000831ba _EMU_ISR
0 000831c4 _EPWM10_ISR
0 000831ce _EPWM10_TZ_ISR
0 000831d8 _EPWM11_ISR
0 000831e2 _EPWM11_TZ_ISR
0 000831ec _EPWM12_ISR
0 000831f6 _EPWM12_TZ_ISR
0 00083200 _EPWM1_ISR
0 0008320a _EPWM1_TZ_ISR
0 00083214 _EPWM2_ISR
0 0008321e _EPWM2_TZ_ISR
0 00083228 _EPWM3_ISR
0 00083232 _EPWM3_TZ_ISR
0 0008323c _EPWM4_ISR
0 00083246 _EPWM4_TZ_ISR
0 00083250 _EPWM5_ISR
0 0008325a _EPWM5_TZ_ISR
0 00083264 _EPWM6_ISR
0 0008326e _EPWM6_TZ_ISR
0 00083278 _EPWM7_ISR
0 00083282 _EPWM7_TZ_ISR
0 0008328c _EPWM8_ISR
0 00083296 _EPWM8_TZ_ISR
0 000832a0 _EPWM9_ISR
0 000832aa _EPWM9_TZ_ISR
1 00001c80 _EPwm10Regs
1 00001d80 _EPwm11Regs
1 00001e80 _EPwm12Regs
1 00001f80 _EPwm1Regs
1 000032c0 _EPwm2Regs
1 000033c0 _EPwm3Regs
1 000034c0 _EPwm4Regs
1 000035c0 _EPwm5Regs
1 000036c0 _EPwm6Regs
1 000037c0 _EPwm7Regs
1 000038c0 _EPwm8Regs
1 000039c0 _EPwm9Regs
1 00003ec0 _EPwmXbarRegs
0 000832b4 _EQEP1_ISR
0 000832be _EQEP2_ISR
0 000832c8 _EQEP3_ISR
1 00004140 _EQep1Regs
1 00004180 _EQep2Regs
1 000041c0 _EQep3Regs
1 00003d36 _Emif1ConfigRegs
1 00003f40 _Emif1Regs
1 00003e36 _Emif2ConfigRegs
1 00003f80 _Emif2Regs
1 000019bf _EmuBMode
1 00001b3f _EmuBootPins
0 00002122 _F28x_usDelay
0 000832d2 _FLASH_CORRECTABLE_ERROR_ISR
0 000832dc _FPU_OVERFLOW_ISR
0 000832e6 _FPU_UNDERFLOW_ISR
1 00001500 _Flash0CtrlRegs
1 00003fc0 _Flash0EccRegs
1 00000120 _FlashPumpSemaphoreRegs
1 000016c0 _GpioCtrlRegs
1 00003d88 _GpioDataRegs
0 000823f9 _HOSTwrite
0 000832f0 _I2CA_FIFO_ISR
0 000832fa _I2CA_ISR
0 00083304 _I2CB_FIFO_ISR
0 0008330e _I2CB_ISR
1 00004200 _I2caRegs
1 00004240 _I2cbRegs
0 00083318 _ILLEGAL_ISR
0 00083322 _IPC0_ISR
0 0008332c _IPC1_ISR
0 00083336 _IPC2_ISR
0 00083340 _IPC3_ISR
1 00002102 _InputXbarRegs
1 00004000 _IpcRegs
0 0008334a _MCBSPA_RX_ISR
0 00083354 _MCBSPA_TX_ISR
0 0008335e _MCBSPB_RX_ISR
0 00083368 _MCBSPB_TX_ISR
1 00004040 _McbspaRegs
1 00004080 _McbspbRegs
1 00003cc0 _MemCfgRegs
1 00001306 _MemoryErrorRegs
0 00083372 _NMI_ISR
0 0008337c _NOTUSED_ISR
1 00004380 _NmiIntruptRegs
1 00003f00 _OutputXbarRegs
0 00083386 _PIE_RESERVED_ISR
1 000042c0 _PieCtrlRegs
1 00001340 _PieVectTable
0 00083390 _RAM_ACCESS_VIOLATION_ISR
0 0008339a _RAM_CORRECTABLE_ERROR_ISR
0 000833a4 _RTOS_ISR
1 00002122 _RamfuncsLoadEnd
abs 00000000 _RamfuncsLoadSize
1 00002122 _RamfuncsLoadStart
1 00002122 _RamfuncsRunEnd
abs 00000000 _RamfuncsRunSize
1 00002122 _RamfuncsRunStart
1 00000122 _RomPrefetchRegs
1 00001c7e _RomWaitStateRegs
0 000833ae _SCIA_RX_ISR
0 000833b8 _SCIA_TX_ISR
0 000833c2 _SCIB_RX_ISR
0 000833cc _SCIB_TX_ISR
0 000833d6 _SCIC_RX_ISR
0 000833e0 _SCIC_TX_ISR
0 000833ea _SCID_RX_ISR
0 000833f4 _SCID_TX_ISR
0 000833fe _SD1_ISR
0 00083408 _SD2_ISR
0 00083412 _SPIA_RX_ISR
0 0008341c _SPIA_TX_ISR
0 00083426 _SPIB_RX_ISR
0 00083430 _SPIB_TX_ISR
0 0008343a _SPIC_RX_ISR
0 00083444 _SPIC_TX_ISR
0 0008344e _SYS_PLL_SLIP_ISR
1 00001c6e _SciaRegs
1 00004300 _ScibRegs
1 00004310 _ScicRegs
1 00004320 _ScidRegs
1 00003d40 _Sdfm1Regs
1 00003dc0 _Sdfm2Regs
0 000808b5 _SetupADCContinuous
1 00004330 _SpiaRegs
1 00004340 _SpibRegs
1 00004350 _SpicRegs
1 0000438e _SyncSocRegs
0 00083458 _TIMER0_ISR
0 00083462 _TIMER1_ISR
0 0008346c _TIMER2_ISR
0 00083476 _UPPA_ISR
0 00083480 _USBA_ISR
0 0008348a _USER10_ISR
0 00083494 _USER11_ISR
0 0008349e _USER12_ISR
0 000834a8 _USER1_ISR
0 000834b2 _USER2_ISR
0 000834bc _USER3_ISR
0 000834c6 _USER4_ISR
0 000834d0 _USER5_ISR
0 000834da _USER6_ISR
0 000834e4 _USER7_ISR
0 000834ee _USER8_ISR
0 000834f8 _USER9_ISR
1 00003e40 _UppRegs
0 00083502 _VCU_ISR
0 0008350c _WAKE_ISR
1 00003e88 _WdRegs
0 00083516 _XINT1_ISR
0 00083520 _XINT2_ISR
0 0008352a _XINT3_ISR
0 00083534 _XINT4_ISR
0 0008353e _XINT5_ISR
1 000042f2 _XbarRegs
1 00003eb3 _XintRegs
1 00003180 __CIOBUF_
1 0000314a __STACK_END
abs 00001024 __STACK_SIZE
0 00083b4c __TI_table_binit
0 00000084 ___ASM__
0 00000000 ___ISA__
0 00000037 ___PLAT__
0 00000013 ___TARG__
1 000012fa ___TI_cleanup_ptr
1 000012fc ___TI_dtors_ptr
1 000012f8 ___TI_enable_exit_profile_output
abs ffffffff ___TI_pprof_out_hndl
abs ffffffff ___TI_prof_data_size
abs ffffffff ___TI_prof_data_start
0 0008170e ___TI_readmsg
0 000816b6 ___TI_writemsg
0 0000005d ___TRDR__
0 00083b4c ___binit__
abs ffffffff ___c_args__
0 000836e9 ___cinit__
0 000836e9 ___etext__
abs ffffffff ___pinit__
0 0008002e ___text__
0 00083681 ___xdc__init
1 00001144 ___xdc__init__addr
0 00082b71 __args_main
1 000012fe __lock
0 000835b7 __nop
0 000835b3 __register_lock
0 000835af __register_unlock
1 00002126 __stack
0 000836e8 __system_post_cinit
0 000836e2 __system_pre_init
1 00001300 __unlock
0 000827af _abort
0 00081e19 _c_int00
0 0008284a _copy_in
0 000827b1 _exit
0 0008286e _main
0 000829e2 _memcpy
0 0008361c _memset
1 00001238 _parmbuf
1 00000a43 _resultsIndex
0 000835f8 _strlen
0 00080d83 _taskFxn
0 00082144 _ti_catalog_c2800_initF2837x_Boot_configurePllDivs
0 000816b5 _ti_catalog_c2800_initF2837x_Boot_defaultLimpAbortFunction
0 00080000 _ti_catalog_c2800_initF2837x_Boot_entry
0 00082fc6 _ti_catalog_c2800_initF2837x_Boot_init
0 0000b000 _ti_catalog_c2800_initF2837x_Boot_initFlash
0 000835b8 _ti_catalog_c2800_initF2837x_Boot_initSharedRAMs
0 00083600 _ti_catalog_c2800_initF2837x_Boot_initStartup
0 0008367e _ti_catalog_c2800_initF2837x_Boot_limpAbort
1 000011d0 _ti_sysbios_BIOS_Module__state__V
0 00082e99 _ti_sysbios_BIOS_RtsGateProxy_Handle__label__S
0 00083684 _ti_sysbios_BIOS_RtsGateProxy_enter__E
0 00083687 _ti_sysbios_BIOS_RtsGateProxy_leave__E
0 00082c74 _ti_sysbios_BIOS_atExitFunc__I
0 00082d98 _ti_sysbios_BIOS_errorRaiseHook__I
0 00082f1b _ti_sysbios_BIOS_exitFunc__I
0 00083623 _ti_sysbios_BIOS_exit__E
0 000836e4 _ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E
0 000836e5 _ti_sysbios_BIOS_nullFunc__I
0 00082e65 _ti_sysbios_BIOS_registerRTSLock__I
0 00082dc8 _ti_sysbios_BIOS_removeRTSLock__I
0 00082e72 _ti_sysbios_BIOS_rtsLock__I
0 00083570 _ti_sysbios_BIOS_rtsUnlock__I
0 000835c8 _ti_sysbios_BIOS_setThreadType__E
0 00082cb6 _ti_sysbios_BIOS_startFunc__I
0 00083629 _ti_sysbios_BIOS_start__E
0 00085ce6 _ti_sysbios_family_c28_Hwi_A_badIntNum__C
0 00085ce8 _ti_sysbios_family_c28_Hwi_A_invalidArg__C
0 00085cea _ti_sysbios_family_c28_Hwi_E_unpluggedInterrupt__C
0 00085cec _ti_sysbios_family_c28_Hwi_LD_end__C
0 00085cee _ti_sysbios_family_c28_Hwi_LM_begin__C
1 00000e80 _ti_sysbios_family_c28_Hwi_Module_State_0_dispatchTable__A
0 00085cf0 _ti_sysbios_family_c28_Hwi_Module__diagsEnabled__C
0 00085cf2 _ti_sysbios_family_c28_Hwi_Module__diagsIncluded__C
0 00085cf4 _ti_sysbios_family_c28_Hwi_Module__diagsMask__C
0 000859bf _ti_sysbios_family_c28_Hwi_Module__id__C
0 00085ab3 _ti_sysbios_family_c28_Hwi_Module__loggerDefined__C
0 00085cf6 _ti_sysbios_family_c28_Hwi_Module__loggerFxn1__C
0 00085cf8 _ti_sysbios_family_c28_Hwi_Module__loggerFxn8__C
0 00085cfa _ti_sysbios_family_c28_Hwi_Module__loggerObj__C
1 0000114a _ti_sysbios_family_c28_Hwi_Module__root__V
0 00082f63 _ti_sysbios_family_c28_Hwi_Module__startupDone__F
0 00082f63 _ti_sysbios_family_c28_Hwi_Module__startupDone__S
1 000011c0 _ti_sysbios_family_c28_Hwi_Module__state__V
0 000820fd _ti_sysbios_family_c28_Hwi_Module_startup__E
0 00085af7 _ti_sysbios_family_c28_Hwi_NUM_INTERRUPTS_ALL__C
0 00085b2f _ti_sysbios_family_c28_Hwi_Object__count__C
0 00082f6e _ti_sysbios_family_c28_Hwi_Object__get__S
1 000012d4 _ti_sysbios_family_c28_Hwi_Object__table__V
0 00081054 _ti_sysbios_family_c28_Hwi_clearInterrupt__E
0 00082f27 _ti_sysbios_family_c28_Hwi_disableIER__E
0 0008197e _ti_sysbios_family_c28_Hwi_disableInterrupt__E
0 000819ff _ti_sysbios_family_c28_Hwi_disablePIEIER__E
0 00082e7f _ti_sysbios_family_c28_Hwi_dispatchC__I
0 00081130 _ti_sysbios_family_c28_Hwi_dispatchCore__I
0 00081677 _ti_sysbios_family_c28_Hwi_dispatchPie
0 0008161a _ti_sysbios_family_c28_Hwi_dispatchTable
0 00082f79 _ti_sysbios_family_c28_Hwi_enableIER__E
0 000817db _ti_sysbios_family_c28_Hwi_enableInterrupt__E
0 00081a7f _ti_sysbios_family_c28_Hwi_enablePIEIER__E
0 000825f0 _ti_sysbios_family_c28_Hwi_getStackInfo__E
0 000836e6 _ti_sysbios_family_c28_Hwi_interruptReturn__I
0 00083579 _ti_sysbios_family_c28_Hwi_restoreIER__E
0 00083662 _ti_sysbios_family_c28_Hwi_startup__E
0 00082a6e _ti_sysbios_family_c28_Hwi_switchAndDispatch__I
0 00083653 _ti_sysbios_family_c28_Hwi_switchFromBootStack__E
0 00082189 _ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I
0 00085794 _ti_sysbios_family_c28_Hwi_vectors
0 0008362f _ti_sysbios_family_c28_IntrinsicsSupport_maxbit__E
0 00085cfc _ti_sysbios_family_c28_TaskSupport_E_invalidStack__C
0 00085bb1 _ti_sysbios_family_c28_TaskSupport_Module__id__C
0 000836d8 _ti_sysbios_family_c28_TaskSupport_Module__startupDone__S
0 00082825 _ti_sysbios_family_c28_TaskSupport_buildTaskStack
0 00083582 _ti_sysbios_family_c28_TaskSupport_checkStack__E
0 00083666 _ti_sysbios_family_c28_TaskSupport_getStackAlignment__E
0 0008358b _ti_sysbios_family_c28_TaskSupport_glue
0 00085ccd _ti_sysbios_family_c28_TaskSupport_stackAlignment__C
0 000823c0 _ti_sysbios_family_c28_TaskSupport_start__E
0 00082934 _ti_sysbios_family_c28_TaskSupport_swap__E
1 0000114e _ti_sysbios_family_c28_Timer_Module__root__V
0 00082f84 _ti_sysbios_family_c28_Timer_Module__startupDone__F
0 00082f84 _ti_sysbios_family_c28_Timer_Module__startupDone__S
1 00001190 _ti_sysbios_family_c28_Timer_Module__state__V
0 00082c8a _ti_sysbios_family_c28_Timer_Module_startup__E
1 00001220 _ti_sysbios_family_c28_Timer_Object__table__V
0 000836da _ti_sysbios_family_c28_Timer_getMaxTicks__E
0 0008220c _ti_sysbios_family_c28_Timer_postInit__I
0 000828d5 _ti_sysbios_family_c28_Timer_setPrescale__E
0 0008272e _ti_sysbios_family_c28_Timer_start__E
0 00085cd9 _ti_sysbios_family_c28_Timer_startupNeeded__C
0 00082bea _ti_sysbios_family_c28_Timer_startup__E
0 00081e82 _ti_sysbios_family_c28_Timer_stopAndClear__I
0 00082da8 _ti_sysbios_family_c28_Timer_stop__E
0 00082e04 _ti_sysbios_family_c28_f2837x_TimestampProvider_get64__E
0 00082b8a _ti_sysbios_family_xxx_Hwi_switchAndRunFunc
0 00082e8c _ti_sysbios_gates_GateHwi_Handle__label__S
0 000836e7 _ti_sysbios_gates_GateHwi_Instance_init__E
0 00085bc6 _ti_sysbios_gates_GateHwi_Module__FXNS__C
1 00001152 _ti_sysbios_gates_GateHwi_Module__root__V
0 00085c20 _ti_sysbios_gates_GateHwi_Object__DESC__C
0 00085ca0 _ti_sysbios_gates_GateHwi_Object__PARAMS__C
0 00082951 _ti_sysbios_gates_GateHwi_Object__create__S
0 00082d40 _ti_sysbios_gates_GateHwi_Object__delete__S
1 00001302 _ti_sysbios_gates_GateHwi_Object__table__V
0 00083658 _ti_sysbios_gates_GateHwi_enter__E
0 0008368a _ti_sysbios_gates_GateHwi_leave__E
0 000836dc _ti_sysbios_gates_GateHwi_query__E
0 00085cfe _ti_sysbios_gates_GateMutex_A_badContext__C
0 00082e99 _ti_sysbios_gates_GateMutex_Handle__label__S
0 00085d00 _ti_sysbios_gates_GateMutex_Instance_State_sem__O
0 000835d0 _ti_sysbios_gates_GateMutex_Instance_finalize__E
0 00082dd7 _ti_sysbios_gates_GateMutex_Instance_init__E
0 00085bd8 _ti_sysbios_gates_GateMutex_Module__FXNS__C
0 00085d02 _ti_sysbios_gates_GateMutex_Module__diagsEnabled__C
0 00085d04 _ti_sysbios_gates_GateMutex_Module__diagsIncluded__C
0 00085d06 _ti_sysbios_gates_GateMutex_Module__diagsMask__C
0 00085dda _ti_sysbios_gates_GateMutex_Module__id__C
1 00001156 _ti_sysbios_gates_GateMutex_Module__root__V
0 00085c30 _ti_sysbios_gates_GateMutex_Object__DESC__C
0 00085cac _ti_sysbios_gates_GateMutex_Object__PARAMS__C
0 0008296e _ti_sysbios_gates_GateMutex_Object__create__S
0 00082cf4 _ti_sysbios_gates_GateMutex_Object__delete__S
1 00000124 _ti_sysbios_gates_GateMutex_Object__table__V
0 00081c5f _ti_sysbios_gates_GateMutex_enter__E
0 00082f33 _ti_sysbios_gates_GateMutex_leave__E
0 000836de _ti_sysbios_gates_GateMutex_query__E
0 00085d08 _ti_sysbios_hal_Hwi_E_stackOverflow__C
0 00082f63 _ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S
0 0008368d _ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E
0 00083662 _ti_sysbios_hal_Hwi_HwiProxy_startup__E
0 00083690 _ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E
0 00085ddb _ti_sysbios_hal_Hwi_Module__id__C
1 0000115a _ti_sysbios_hal_Hwi_Module__root__V
0 00083594 _ti_sysbios_hal_Hwi_Module_startup__E
0 000829ff _ti_sysbios_hal_Hwi_checkStack
0 00082a89 _ti_sysbios_hal_Hwi_initStack
0 00083693 _ti_sysbios_hal_Hwi_startup__E
0 00085d0a _ti_sysbios_heaps_HeapMem_A_align__C
0 00085d0c _ti_sysbios_heaps_HeapMem_A_heapSize__C
0 00085d0e _ti_sysbios_heaps_HeapMem_A_invalidFree__C
0 00085d10 _ti_sysbios_heaps_HeapMem_A_zeroBlock__C
0 00085d12 _ti_sysbios_heaps_HeapMem_E_memory__C
0 00082ea6 _ti_sysbios_heaps_HeapMem_Handle__label__S
1 00000240 _ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A
0 00080e7c _ti_sysbios_heaps_HeapMem_Instance_init__E
0 00082e99 _ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S
0 00083696 _ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E
0 00083699 _ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E
0 0008369c _ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E
0 00085bb2 _ti_sysbios_heaps_HeapMem_Module__FXNS__C
0 00085d14 _ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C
0 00085d16 _ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C
0 00085d18 _ti_sysbios_heaps_HeapMem_Module__diagsMask__C
0 00085d1a _ti_sysbios_heaps_HeapMem_Module__gateObj__C
0 00085ddc _ti_sysbios_heaps_HeapMem_Module__id__C
1 0000115e _ti_sysbios_heaps_HeapMem_Module__root__V
0 00085c40 _ti_sysbios_heaps_HeapMem_Object__DESC__C
0 00085bea _ti_sysbios_heaps_HeapMem_Object__PARAMS__C
0 00085ddd _ti_sysbios_heaps_HeapMem_Object__count__C
0 0008298b _ti_sysbios_heaps_HeapMem_Object__create__S
0 00082d52 _ti_sysbios_heaps_HeapMem_Object__delete__S
0 00082e12 _ti_sysbios_heaps_HeapMem_Object__get__S
1 000012e4 _ti_sysbios_heaps_HeapMem_Object__table__V
0 000805de _ti_sysbios_heaps_HeapMem_allocUnprotected__E
0 000824d0 _ti_sysbios_heaps_HeapMem_alloc__E
0 0008043d _ti_sysbios_heaps_HeapMem_freeUnprotected__E
0 00082a1b _ti_sysbios_heaps_HeapMem_free__E
0 0008267a _ti_sysbios_heaps_HeapMem_getStats__E
0 000827d8 _ti_sysbios_heaps_HeapMem_init__I
0 0008366a _ti_sysbios_heaps_HeapMem_isBlocking__E
0 00085d1c _ti_sysbios_heaps_HeapMem_reqAlign__C
0 00085d1e _ti_sysbios_knl_Clock_LM_begin__C
0 00085d20 _ti_sysbios_knl_Clock_LM_tick__C
0 00085d22 _ti_sysbios_knl_Clock_LW_delayed__C
0 00085d24 _ti_sysbios_knl_Clock_Module_State_clockQ__O
0 00085d26 _ti_sysbios_knl_Clock_Module__diagsEnabled__C
0 00085d28 _ti_sysbios_knl_Clock_Module__diagsIncluded__C
0 00085d2a _ti_sysbios_knl_Clock_Module__diagsMask__C
0 00085dde _ti_sysbios_knl_Clock_Module__id__C
0 00085ddf _ti_sysbios_knl_Clock_Module__loggerDefined__C
0 00085d2c _ti_sysbios_knl_Clock_Module__loggerFxn1__C
0 00085d2e _ti_sysbios_knl_Clock_Module__loggerFxn2__C
0 00085d30 _ti_sysbios_knl_Clock_Module__loggerObj__C
1 00001162 _ti_sysbios_knl_Clock_Module__root__V
1 000011e2 _ti_sysbios_knl_Clock_Module__state__V
0 00082d07 _ti_sysbios_knl_Clock_Module_startup__E
0 00082f84 _ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S
0 0008369f _ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E
0 00082abf _ti_sysbios_knl_Clock_addI__E
0 00082c01 _ti_sysbios_knl_Clock_doTick__I
0 00082432 _ti_sysbios_knl_Clock_logTick__E
0 00081422 _ti_sysbios_knl_Clock_workFunc__E
0 00085d32 _ti_sysbios_knl_Idle_funcList__A
0 00085cda _ti_sysbios_knl_Idle_funcList__C
0 000836a2 _ti_sysbios_knl_Idle_loop__E
0 00082ce0 _ti_sysbios_knl_Idle_run__E
0 000836a5 _ti_sysbios_knl_Queue_Instance_init__E
1 00001166 _ti_sysbios_knl_Queue_Module__root__V
0 00085c50 _ti_sysbios_knl_Queue_Object__DESC__C
0 00085cb8 _ti_sysbios_knl_Queue_Object__PARAMS__C
0 00082f8f _ti_sysbios_knl_Queue_Object__get__S
0 00082b0d _ti_sysbios_knl_Queue_construct
0 00082eb3 _ti_sysbios_knl_Queue_destruct
0 00083607 _ti_sysbios_knl_Queue_empty__E
0 00082f3f _ti_sysbios_knl_Queue_put__E
0 00085d34 _ti_sysbios_knl_Semaphore_A_badContext__C
0 00085d36 _ti_sysbios_knl_Semaphore_A_noEvents__C
0 00085d38 _ti_sysbios_knl_Semaphore_A_overflow__C
0 00085d3a _ti_sysbios_knl_Semaphore_A_pendTaskDisabled__C
0 00085d3c _ti_sysbios_knl_Semaphore_Instance_State_pendQ__O
0 000835d8 _ti_sysbios_knl_Semaphore_Instance_finalize__E
0 00081daf _ti_sysbios_knl_Semaphore_Instance_init__E
0 00085d3e _ti_sysbios_knl_Semaphore_LM_pend__C
0 00085d40 _ti_sysbios_knl_Semaphore_LM_post__C
0 00085d42 _ti_sysbios_knl_Semaphore_Module__diagsEnabled__C
0 00085d44 _ti_sysbios_knl_Semaphore_Module__diagsIncluded__C
0 00085d46 _ti_sysbios_knl_Semaphore_Module__diagsMask__C
0 00085de0 _ti_sysbios_knl_Semaphore_Module__id__C
0 00085de1 _ti_sysbios_knl_Semaphore_Module__loggerDefined__C
0 00085d48 _ti_sysbios_knl_Semaphore_Module__loggerFxn2__C
0 00085d4a _ti_sysbios_knl_Semaphore_Module__loggerFxn4__C
0 00085d4c _ti_sysbios_knl_Semaphore_Module__loggerObj__C
1 0000116a _ti_sysbios_knl_Semaphore_Module__root__V
0 00085c60 _ti_sysbios_knl_Semaphore_Object__DESC__C
0 00085c70 _ti_sysbios_knl_Semaphore_Object__PARAMS__C
0 000829a8 _ti_sysbios_knl_Semaphore_construct
0 00082e20 _ti_sysbios_knl_Semaphore_destruct
0 00082b26 _ti_sysbios_knl_Semaphore_pendTimeout__I
0 00080261 _ti_sysbios_knl_Semaphore_pend__E
0 000812b2 _ti_sysbios_knl_Semaphore_post__E
0 00085d4e _ti_sysbios_knl_Swi_LD_end__C
0 00085d50 _ti_sysbios_knl_Swi_LM_begin__C
0 00085d52 _ti_sysbios_knl_Swi_LM_post__C
1 00001240 _ti_sysbios_knl_Swi_Module_State_0_readyQ__A
0 00085d54 _ti_sysbios_knl_Swi_Module__diagsEnabled__C
0 00085d56 _ti_sysbios_knl_Swi_Module__diagsIncluded__C
0 00085d58 _ti_sysbios_knl_Swi_Module__diagsMask__C
0 00085de2 _ti_sysbios_knl_Swi_Module__id__C
0 00085de3 _ti_sysbios_knl_Swi_Module__loggerDefined__C
0 00085d5a _ti_sysbios_knl_Swi_Module__loggerFxn1__C
0 00085d5c _ti_sysbios_knl_Swi_Module__loggerFxn4__C
0 00085d5e _ti_sysbios_knl_Swi_Module__loggerObj__C
1 0000116e _ti_sysbios_knl_Swi_Module__root__V
1 00001198 _ti_sysbios_knl_Swi_Module__state__V
0 00082ccb _ti_sysbios_knl_Swi_Module_startup__E
0 00085de4 _ti_sysbios_knl_Swi_Object__count__C
0 00082e2e _ti_sysbios_knl_Swi_Object__get__S
1 000012c0 _ti_sysbios_knl_Swi_Object__table__V
0 00083635 _ti_sysbios_knl_Swi_disable__E
0 00081ee8 _ti_sysbios_knl_Swi_post__E
0 000822cb _ti_sysbios_knl_Swi_restoreHwi__E
0 00082b3f _ti_sysbios_knl_Swi_restore__E
0 0008261e _ti_sysbios_knl_Swi_runLoop__I
0 000814d1 _ti_sysbios_knl_Swi_run__I
0 0008264c _ti_sysbios_knl_Swi_schedule__I
0 0008366e _ti_sysbios_knl_Swi_startup__E
0 00085d60 _ti_sysbios_knl_Task_A_badPriority__C
0 00085d62 _ti_sysbios_knl_Task_A_badTaskState__C
0 00085d64 _ti_sysbios_knl_Task_A_badThreadType__C
0 00085d66 _ti_sysbios_knl_Task_A_badTimeout__C
0 00085d68 _ti_sysbios_knl_Task_A_noPendElem__C
0 00085d6a _ti_sysbios_knl_Task_A_sleepTaskDisabled__C
0 00085d6c _ti_sysbios_knl_Task_E_spOutOfBounds__C
0 00085d6e _ti_sysbios_knl_Task_E_stackOverflow__C
1 00000140 _ti_sysbios_knl_Task_Instance_State_0_stack__A
0 0008074a _ti_sysbios_knl_Task_Instance_finalize__E
0 00080a04 _ti_sysbios_knl_Task_Instance_init__E
0 00085d70 _ti_sysbios_knl_Task_LD_block__C
0 00085d72 _ti_sysbios_knl_Task_LD_exit__C
0 00085d74 _ti_sysbios_knl_Task_LD_ready__C
0 00085d76 _ti_sysbios_knl_Task_LM_sleep__C
0 00085d78 _ti_sysbios_knl_Task_LM_switch__C
1 00001304 _ti_sysbios_knl_Task_Module_State_0_idleTask__A
1 00001280 _ti_sysbios_knl_Task_Module_State_0_readyQ__A
0 00085d7a _ti_sysbios_knl_Task_Module_State_inactiveQ__O
0 00085d7c _ti_sysbios_knl_Task_Module__diagsEnabled__C
0 00085d7e _ti_sysbios_knl_Task_Module__diagsIncluded__C
0 00085d80 _ti_sysbios_knl_Task_Module__diagsMask__C
0 00085de5 _ti_sysbios_knl_Task_Module__id__C
0 00085de6 _ti_sysbios_knl_Task_Module__loggerDefined__C
0 00085d82 _ti_sysbios_knl_Task_Module__loggerFxn2__C
0 00085d84 _ti_sysbios_knl_Task_Module__loggerFxn4__C
0 00085d86 _ti_sysbios_knl_Task_Module__loggerObj__C
1 00001172 _ti_sysbios_knl_Task_Module__root__V
1 00001200 _ti_sysbios_knl_Task_Module__state__V
0 0008249e _ti_sysbios_knl_Task_Module_startup__E
0 00085c80 _ti_sysbios_knl_Task_Object__DESC__C
0 00085b5a _ti_sysbios_knl_Task_Object__PARAMS__C
0 00085de7 _ti_sysbios_knl_Task_Object__count__C
0 00082e3c _ti_sysbios_knl_Task_Object__get__S
1 00000a44 _ti_sysbios_knl_Task_Object__table__V
0 000836d8 _ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S
0 000836a8 _ti_sysbios_knl_Task_SupportProxy_checkStack__E
0 000836ab _ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E
0 00082f9a _ti_sysbios_knl_Task_SupportProxy_start__E
0 000836ae _ti_sysbios_knl_Task_SupportProxy_swap__E
0 00085d88 _ti_sysbios_knl_Task_allBlockedFunc__C
0 000828b4 _ti_sysbios_knl_Task_allBlockedFunction__I
0 00081f49 _ti_sysbios_knl_Task_blockI__E
0 00081b78 _ti_sysbios_knl_Task_checkStacks__E
0 00082501 _ti_sysbios_knl_Task_create
0 00085d8a _ti_sysbios_knl_Task_defaultStackHeap__C
0 00085d8c _ti_sysbios_knl_Task_defaultStackSize__C
0 0008363b _ti_sysbios_knl_Task_disable__E
0 00082f4b _ti_sysbios_knl_Task_enabled__E
0 00082ec0 _ti_sysbios_knl_Task_enter__I
0 0008200a _ti_sysbios_knl_Task_exit__E
0 00082d1a _ti_sysbios_knl_Task_getMode__E
0 00085de8 _ti_sysbios_knl_Task_numConstructedTasks__C
0 000820b4 _ti_sysbios_knl_Task_postInit__I
0 00082aa4 _ti_sysbios_knl_Task_processVitalTaskFlag__I
0 00082d76 _ti_sysbios_knl_Task_restoreHwi__E
0 00082c18 _ti_sysbios_knl_Task_restore__E
0 00081d41 _ti_sysbios_knl_Task_schedule__I
0 00082ecd _ti_sysbios_knl_Task_sleepTimeout__I
0 00080b45 _ti_sysbios_knl_Task_sleep__E
0 00081bed _ti_sysbios_knl_Task_startCore__E
0 000836b1 _ti_sysbios_knl_Task_startup__E
0 00082062 _ti_sysbios_knl_Task_unblockI__E
0 00082fa5 _ti_sysbios_knl_Task_unblock__E
0 00085d8e _xdc_runtime_Assert_E_assertFailed__C
0 000826a7 _xdc_runtime_Assert_raise__I
0 00085d90 _xdc_runtime_Core_A_initializedParams__C
0 00085d92 _xdc_runtime_Core_Module__diagsEnabled__C
0 00085d94 _xdc_runtime_Core_Module__diagsIncluded__C
0 00085d96 _xdc_runtime_Core_Module__diagsMask__C
0 00085de9 _xdc_runtime_Core_Module__id__C
0 00082ad9 _xdc_runtime_Core_assignLabel__I
0 00082592 _xdc_runtime_Core_assignParams__I
0 00081869 _xdc_runtime_Core_constructObject__I
0 0008157a _xdc_runtime_Core_createObject__I
0 00082309 _xdc_runtime_Core_deleteObject__I
0 00085d98 _xdc_runtime_Error_E_memory__C
1 000011a4 _xdc_runtime_Error_IgnoreBlock
0 00085d9a _xdc_runtime_Error_Module__diagsEnabled__C
0 00085d9c _xdc_runtime_Error_Module__diagsIncluded__C
0 00085d9e _xdc_runtime_Error_Module__diagsMask__C
0 00085dea _xdc_runtime_Error_Module__loggerDefined__C
0 00085da0 _xdc_runtime_Error_Module__loggerFxn8__C
0 00085da2 _xdc_runtime_Error_Module__loggerObj__C
1 00001140 _xdc_runtime_Error_Module__state__V
0 00082eda _xdc_runtime_Error_check__E
0 000836e0 _xdc_runtime_Error_getSite__E
0 00083548 _xdc_runtime_Error_init__E
0 00085deb _xdc_runtime_Error_maxDepth__C
0 0008174b _xdc_runtime_Error_policyDefault__E
0 00085da4 _xdc_runtime_Error_policyFxn__C
0 00085dec _xdc_runtime_Error_policy__C
0 00082532 _xdc_runtime_Error_print__E
0 00085da6 _xdc_runtime_Error_raiseHook__C
0 00082d2d _xdc_runtime_Error_raiseX__E
0 000826d4 _xdc_runtime_Error_setX__E
0 00083641 _xdc_runtime_Gate_enterSystem__E
0 00083647 _xdc_runtime_Gate_leaveSystem__E
0 00085da8 _xdc_runtime_IFilterLogger_Interface__BASE__C
0 00085daa _xdc_runtime_IGateProvider_Interface__BASE__C
0 00085dac _xdc_runtime_IHeap_Interface__BASE__C
0 00085dae _xdc_runtime_ILogger_Interface__BASE__C
0 00085db0 _xdc_runtime_IModule_Interface__BASE__C
0 00085db2 _xdc_runtime_Log_L_error__C
0 00085db4 _xdc_runtime_LoggerBuf_E_badLevel__C
0 00082ee7 _xdc_runtime_LoggerBuf_Handle__label__S
1 00000a80 _xdc_runtime_LoggerBuf_Instance_State_0_entryArr__A
0 00082fb0 _xdc_runtime_LoggerBuf_Instance_finalize__E
0 00082562 _xdc_runtime_LoggerBuf_Instance_init__E
0 00082e8c _xdc_runtime_LoggerBuf_Module_GateProxy_Handle__label__S
0 000836b4 _xdc_runtime_LoggerBuf_Module_GateProxy_enter__E
0 000836b7 _xdc_runtime_LoggerBuf_Module_GateProxy_leave__E
0 00085b7a _xdc_runtime_LoggerBuf_Module__FXNS__C
0 00085db6 _xdc_runtime_LoggerBuf_Module__gateObj__C
0 00085ded _xdc_runtime_LoggerBuf_Module__id__C
1 00001176 _xdc_runtime_LoggerBuf_Module__root__V
1 00001146 _xdc_runtime_LoggerBuf_Module__state__V
0 00082c2f _xdc_runtime_LoggerBuf_Module_startup__E
0 00085c90 _xdc_runtime_LoggerBuf_Object__DESC__C
0 00085bfc _xdc_runtime_LoggerBuf_Object__PARAMS__C
0 00085dee _xdc_runtime_LoggerBuf_Object__count__C
0 0008275a _xdc_runtime_LoggerBuf_Object__create__S
0 00082d64 _xdc_runtime_LoggerBuf_Object__delete__S
0 00082e4a _xdc_runtime_LoggerBuf_Object__get__S
1 00000a6e _xdc_runtime_LoggerBuf_Object__table__V
0 000836ba _xdc_runtime_LoggerBuf_TimestampProxy_get64__E
0 0008365d _xdc_runtime_LoggerBuf_disable__E
0 0008364d _xdc_runtime_LoggerBuf_enable__E
0 00085def _xdc_runtime_LoggerBuf_filterByLevel__C
0 00082915 _xdc_runtime_LoggerBuf_filterOutEvent__I
0 00082347 _xdc_runtime_LoggerBuf_getFilterLevel__E
0 00082ba2 _xdc_runtime_LoggerBuf_reset__E
0 00082384 _xdc_runtime_LoggerBuf_setFilterLevel__E
0 00085db8 _xdc_runtime_LoggerBuf_statusLogger__C
0 00082ef4 _xdc_runtime_LoggerBuf_write0__E
0 00082f01 _xdc_runtime_LoggerBuf_write1__E
0 00082de6 _xdc_runtime_LoggerBuf_write2__E
0 00081afe _xdc_runtime_LoggerBuf_write4__E
0 000811f2 _xdc_runtime_LoggerBuf_write8__E
0 00082e8c _xdc_runtime_Main_Module_GateProxy_Handle__label__S
0 00082ea6 _xdc_runtime_Memory_HeapProxy_Handle__label__S
0 000835e0 _xdc_runtime_Memory_HeapProxy_alloc__E
0 00083672 _xdc_runtime_Memory_HeapProxy_free__E
0 00085df0 _xdc_runtime_Memory_Module__id__C
1 00001142 _xdc_runtime_Memory_Module__state__V
0 0008224c _xdc_runtime_Memory_alloc__E
0 000835e8 _xdc_runtime_Memory_calloc__E
0 00085dba _xdc_runtime_Memory_defaultHeapInstance__C
0 00083552 _xdc_runtime_Memory_free__E
0 00083676 _xdc_runtime_Memory_getMaxDefaultTypeAlign__E
0 00082c46 _xdc_runtime_Memory_valloc__E
1 0000117a _xdc_runtime_Registry_Module__state__V
0 00082df5 _xdc_runtime_Registry_findById__E
1 00001180 _xdc_runtime_Startup_Module__state__V
abs 00000001 _xdc_runtime_Startup__EXECFXN__C
abs 00000001 _xdc_runtime_Startup__RESETFXN__C
0 00085dbc _xdc_runtime_Startup_execImpl__C
0 000825c1 _xdc_runtime_Startup_exec__E
0 0008359d _xdc_runtime_Startup_exec__I
0 00085cce _xdc_runtime_Startup_firstFxns__A
0 00085cde _xdc_runtime_Startup_firstFxns__C
0 00085ce2 _xdc_runtime_Startup_lastFxns__C
0 00085df1 _xdc_runtime_Startup_maxPasses__C
0 00082fc6 _xdc_runtime_Startup_reset__I
0 0008367a _xdc_runtime_Startup_rtsDone__E
0 00085cc4 _xdc_runtime_Startup_sfxnRts__A
0 00085dbe _xdc_runtime_Startup_sfxnRts__C
0 00085c0e _xdc_runtime_Startup_sfxnTab__A
0 00085dc0 _xdc_runtime_Startup_sfxnTab__C
0 00081cd0 _xdc_runtime_Startup_startMods__I
1 00000c80 _xdc_runtime_SysMin_Module_State_0_outbuf__A
1 00001184 _xdc_runtime_SysMin_Module__state__V
0 00082db8 _xdc_runtime_SysMin_Module_startup__E
0 00082c5d _xdc_runtime_SysMin_abort__E
0 00085dc2 _xdc_runtime_SysMin_bufSize__C
0 00082f57 _xdc_runtime_SysMin_exit__E
0 00085df2 _xdc_runtime_SysMin_flushAtExit__C
0 000827ff _xdc_runtime_SysMin_flush__E
0 00085dc4 _xdc_runtime_SysMin_outputFunc__C
0 00082a37 _xdc_runtime_SysMin_output__I
0 000829c5 _xdc_runtime_SysMin_putch__E
0 000835f0 _xdc_runtime_SysMin_ready__E
0 00082e8c _xdc_runtime_System_Module_GateProxy_Handle__label__S
0 000836bd _xdc_runtime_System_Module_GateProxy_enter__E
0 000836c0 _xdc_runtime_System_Module_GateProxy_leave__E
1 000012f0 _xdc_runtime_System_Module_State_0_atexitHandlers__A
0 00085dc6 _xdc_runtime_System_Module__gateObj__C
1 00001188 _xdc_runtime_System_Module__state__V
0 000836c3 _xdc_runtime_System_Module_startup__E
0 000836c6 _xdc_runtime_System_SupportProxy_abort__E
0 000836c9 _xdc_runtime_System_SupportProxy_exit__E
0 000836cc _xdc_runtime_System_SupportProxy_putch__E
0 000836cf _xdc_runtime_System_SupportProxy_ready__E
0 00085dc8 _xdc_runtime_System_abortFxn__C
0 000836d2 _xdc_runtime_System_abortStd__E
0 00082f0e _xdc_runtime_System_abort__E
0 0008360e _xdc_runtime_System_aprintf__E
0 00082af3 _xdc_runtime_System_aprintf_va__F
0 000828f5 _xdc_runtime_System_atexit__E
0 00082af3 _xdc_runtime_System_avprintf__E
0 0008002e _xdc_runtime_System_doPrint__I
0 00085dca _xdc_runtime_System_exitFxn__C
0 000836d5 _xdc_runtime_System_exitStd__E
0 00082fbb _xdc_runtime_System_exit__E
0 00085dcc _xdc_runtime_System_extendFxn__C
0 00082469 _xdc_runtime_System_formatNum__I
0 00085df3 _xdc_runtime_System_maxAtexitHandlers__C
0 0008136a _xdc_runtime_System_printfExtend__I
0 00083615 _xdc_runtime_System_printf__E
0 00082b58 _xdc_runtime_System_printf_va__F
0 00082891 _xdc_runtime_System_processAtExit__E
0 00082bba _xdc_runtime_System_putchar__I
0 0008355c _xdc_runtime_System_snprintf_va__F
0 00082b58 _xdc_runtime_System_vprintf__E
0 0008355c _xdc_runtime_System_vsnprintf__E
1 0000118c _xdc_runtime_Text_Module__state__V
0 00085df4 _xdc_runtime_Text_charCnt__C
0 00084000 _xdc_runtime_Text_charTab__A
0 00085dce _xdc_runtime_Text_charTab__C
0 00082d87 _xdc_runtime_Text_cordText__E
0 00085df5 _xdc_runtime_Text_isLoaded__C
0 00085dd0 _xdc_runtime_Text_nameEmpty__C
0 00085dd2 _xdc_runtime_Text_nameStatic__C
0 00085dd4 _xdc_runtime_Text_nameUnknown__C
0 00085a18 _xdc_runtime_Text_nodeTab__A
0 00085dd6 _xdc_runtime_Text_nodeTab__C
0 00082ca0 _xdc_runtime_Text_printVisFxn__I
0 000821cb _xdc_runtime_Text_putLab__E
0 0008228c _xdc_runtime_Text_putMod__E
0 00081faa _xdc_runtime_Text_putSite__E
0 00085df6 _xdc_runtime_Text_registryModsLastId__C
0 00083566 _xdc_runtime_Text_ropeText__E
0 00085df7 _xdc_runtime_Text_unnamedModsLastId__C
0 00082701 _xdc_runtime_Text_visitRope2__I
0 00085dd8 _xdc_runtime_Text_visitRopeFxn__C
0 000835a6 _xdc_runtime_Text_visitRope__I
0 00082786 _xdc_runtime_Text_xprintf__I
0 00083b4c binit
0 000836e9 cinit
0 00000000 code_start
0 000836e9 etext
abs ffffffff pinit
GLOBAL SYMBOLS: SORTED BY Symbol Address
page address name
---- ------- ----
0 00000000 ___ISA__
0 00000000 code_start
0 00000013 ___TARG__
0 00000037 ___PLAT__
0 0000005d ___TRDR__
0 00000084 ___ASM__
0 00002122 _F28x_usDelay
0 0000b000 _ti_catalog_c2800_initF2837x_Boot_initFlash
0 00080000 _ti_catalog_c2800_initF2837x_Boot_entry
0 0008002e .text
0 0008002e ___text__
0 0008002e _xdc_runtime_System_doPrint__I
0 00080261 _ti_sysbios_knl_Semaphore_pend__E
0 0008043d _ti_sysbios_heaps_HeapMem_freeUnprotected__E
0 000805de _ti_sysbios_heaps_HeapMem_allocUnprotected__E
0 0008074a _ti_sysbios_knl_Task_Instance_finalize__E
0 000808b5 _SetupADCContinuous
0 00080a04 _ti_sysbios_knl_Task_Instance_init__E
0 00080b45 _ti_sysbios_knl_Task_sleep__E
0 00080c7c LL$$DIV
0 00080cb8 LL$$MOD
0 00080cf2 ULL$$DIV
0 00080d21 ULL$$MOD
0 00080d83 _taskFxn
0 00080e7c _ti_sysbios_heaps_HeapMem_Instance_init__E
0 00080f6b _AdcSetMode
0 00081054 _ti_sysbios_family_c28_Hwi_clearInterrupt__E
0 00081130 _ti_sysbios_family_c28_Hwi_dispatchCore__I
0 000811f2 _xdc_runtime_LoggerBuf_write8__E
0 000812b2 _ti_sysbios_knl_Semaphore_post__E
0 0008136a _xdc_runtime_System_printfExtend__I
0 00081422 _ti_sysbios_knl_Clock_workFunc__E
0 000814d1 _ti_sysbios_knl_Swi_run__I
0 0008157a _xdc_runtime_Core_createObject__I
0 0008161a _ti_sysbios_family_c28_Hwi_dispatchTable
0 00081677 _ti_sysbios_family_c28_Hwi_dispatchPie
0 000816b5 _ti_catalog_c2800_initF2837x_Boot_defaultLimpAbortFunction
0 000816b6 ___TI_writemsg
0 00081709 C$$IO$$
0 0008170e ___TI_readmsg
0 0008174b _xdc_runtime_Error_policyDefault__E
0 000817db _ti_sysbios_family_c28_Hwi_enableInterrupt__E
0 00081869 _xdc_runtime_Core_constructObject__I
0 000818f6 FS$$DIV
0 0008197e _ti_sysbios_family_c28_Hwi_disableInterrupt__E
0 000819ff _ti_sysbios_family_c28_Hwi_disablePIEIER__E
0 00081a7f _ti_sysbios_family_c28_Hwi_enablePIEIER__E
0 00081afe _xdc_runtime_LoggerBuf_write4__E
0 00081b78 _ti_sysbios_knl_Task_checkStacks__E
0 00081bed _ti_sysbios_knl_Task_startCore__E
0 00081c5f _ti_sysbios_gates_GateMutex_enter__E
0 00081cd0 _xdc_runtime_Startup_startMods__I
0 00081d41 _ti_sysbios_knl_Task_schedule__I
0 00081daf _ti_sysbios_knl_Semaphore_Instance_init__E
0 00081e19 _c_int00
0 00081e82 _ti_sysbios_family_c28_Timer_stopAndClear__I
0 00081ee8 _ti_sysbios_knl_Swi_post__E
0 00081f49 _ti_sysbios_knl_Task_blockI__E
0 00081faa _xdc_runtime_Text_putSite__E
0 0008200a _ti_sysbios_knl_Task_exit__E
0 00082062 _ti_sysbios_knl_Task_unblockI__E
0 000820b4 _ti_sysbios_knl_Task_postInit__I
0 000820fd _ti_sysbios_family_c28_Hwi_Module_startup__E
0 00082144 _ti_catalog_c2800_initF2837x_Boot_configurePllDivs
0 00082189 _ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I
0 000821cb _xdc_runtime_Text_putLab__E
0 0008220c _ti_sysbios_family_c28_Timer_postInit__I
0 0008224c _xdc_runtime_Memory_alloc__E
0 0008228c _xdc_runtime_Text_putMod__E
0 000822cb _ti_sysbios_knl_Swi_restoreHwi__E
0 00082309 _xdc_runtime_Core_deleteObject__I
0 00082347 _xdc_runtime_LoggerBuf_getFilterLevel__E
0 00082384 _xdc_runtime_LoggerBuf_setFilterLevel__E
0 000823c0 _ti_sysbios_family_c28_TaskSupport_start__E
0 000823f9 _HOSTwrite
0 00082432 _ti_sysbios_knl_Clock_logTick__E
0 00082469 _xdc_runtime_System_formatNum__I
0 0008249e _ti_sysbios_knl_Task_Module_startup__E
0 000824d0 _ti_sysbios_heaps_HeapMem_alloc__E
0 00082501 _ti_sysbios_knl_Task_create
0 00082532 _xdc_runtime_Error_print__E
0 00082562 _xdc_runtime_LoggerBuf_Instance_init__E
0 00082592 _xdc_runtime_Core_assignParams__I
0 000825c1 _xdc_runtime_Startup_exec__E
0 000825f0 _ti_sysbios_family_c28_Hwi_getStackInfo__E
0 0008261e _ti_sysbios_knl_Swi_runLoop__I
0 0008264c _ti_sysbios_knl_Swi_schedule__I
0 0008267a _ti_sysbios_heaps_HeapMem_getStats__E
0 000826a7 _xdc_runtime_Assert_raise__I
0 000826d4 _xdc_runtime_Error_setX__E
0 00082701 _xdc_runtime_Text_visitRope2__I
0 0008272e _ti_sysbios_family_c28_Timer_start__E
0 0008275a _xdc_runtime_LoggerBuf_Object__create__S
0 00082786 _xdc_runtime_Text_xprintf__I
0 000827af C$$EXIT
0 000827af _abort
0 000827b1 _exit
0 000827d8 _ti_sysbios_heaps_HeapMem_init__I
0 000827ff _xdc_runtime_SysMin_flush__E
0 00082825 _ti_sysbios_family_c28_TaskSupport_buildTaskStack
0 0008284a _copy_in
0 0008286e _main
0 00082891 _xdc_runtime_System_processAtExit__E
0 000828b4 _ti_sysbios_knl_Task_allBlockedFunction__I
0 000828d5 _ti_sysbios_family_c28_Timer_setPrescale__E
0 000828f5 _xdc_runtime_System_atexit__E
0 00082915 _xdc_runtime_LoggerBuf_filterOutEvent__I
0 00082934 _ti_sysbios_family_c28_TaskSupport_swap__E
0 00082951 _ti_sysbios_gates_GateHwi_Object__create__S
0 0008296e _ti_sysbios_gates_GateMutex_Object__create__S
0 0008298b _ti_sysbios_heaps_HeapMem_Object__create__S
0 000829a8 _ti_sysbios_knl_Semaphore_construct
0 000829c5 _xdc_runtime_SysMin_putch__E
0 000829e2 _memcpy
0 000829ff _ti_sysbios_hal_Hwi_checkStack
0 00082a1b _ti_sysbios_heaps_HeapMem_free__E
0 00082a37 _xdc_runtime_SysMin_output__I
0 00082a53 _ConfigureADC
0 00082a6e _ti_sysbios_family_c28_Hwi_switchAndDispatch__I
0 00082a89 _ti_sysbios_hal_Hwi_initStack
0 00082aa4 _ti_sysbios_knl_Task_processVitalTaskFlag__I
0 00082abf _ti_sysbios_knl_Clock_addI__E
0 00082ad9 _xdc_runtime_Core_assignLabel__I
0 00082af3 _xdc_runtime_System_aprintf_va__F
0 00082af3 _xdc_runtime_System_avprintf__E
0 00082b0d _ti_sysbios_knl_Queue_construct
0 00082b26 _ti_sysbios_knl_Semaphore_pendTimeout__I
0 00082b3f _ti_sysbios_knl_Swi_restore__E
0 00082b58 _xdc_runtime_System_printf_va__F
0 00082b58 _xdc_runtime_System_vprintf__E
0 00082b71 __args_main
0 00082b8a _ti_sysbios_family_xxx_Hwi_switchAndRunFunc
0 00082ba2 _xdc_runtime_LoggerBuf_reset__E
0 00082bba _xdc_runtime_System_putchar__I
0 00082bd2 LL$$AND
0 00082bda LL$$OR
0 00082be2 LL$$XOR
0 00082bea _ti_sysbios_family_c28_Timer_startup__E
0 00082c01 _ti_sysbios_knl_Clock_doTick__I
0 00082c18 _ti_sysbios_knl_Task_restore__E
0 00082c2f _xdc_runtime_LoggerBuf_Module_startup__E
0 00082c46 _xdc_runtime_Memory_valloc__E
0 00082c5d _xdc_runtime_SysMin_abort__E
0 00082c74 _ti_sysbios_BIOS_atExitFunc__I
0 00082c8a _ti_sysbios_family_c28_Timer_Module_startup__E
0 00082ca0 _xdc_runtime_Text_printVisFxn__I
0 00082cb6 _ti_sysbios_BIOS_startFunc__I
0 00082ccb _ti_sysbios_knl_Swi_Module_startup__E
0 00082ce0 _ti_sysbios_knl_Idle_run__E
0 00082cf4 _ti_sysbios_gates_GateMutex_Object__delete__S
0 00082d07 _ti_sysbios_knl_Clock_Module_startup__E
0 00082d1a _ti_sysbios_knl_Task_getMode__E
0 00082d2d _xdc_runtime_Error_raiseX__E
0 00082d40 _ti_sysbios_gates_GateHwi_Object__delete__S
0 00082d52 _ti_sysbios_heaps_HeapMem_Object__delete__S
0 00082d64 _xdc_runtime_LoggerBuf_Object__delete__S
0 00082d76 _ti_sysbios_knl_Task_restoreHwi__E
0 00082d87 _xdc_runtime_Text_cordText__E
0 00082d98 _ti_sysbios_BIOS_errorRaiseHook__I
0 00082da8 _ti_sysbios_family_c28_Timer_stop__E
0 00082db8 _xdc_runtime_SysMin_Module_startup__E
0 00082dc8 _ti_sysbios_BIOS_removeRTSLock__I
0 00082dd7 _ti_sysbios_gates_GateMutex_Instance_init__E
0 00082de6 _xdc_runtime_LoggerBuf_write2__E
0 00082df5 _xdc_runtime_Registry_findById__E
0 00082e04 _ti_sysbios_family_c28_f2837x_TimestampProvider_get64__E
0 00082e12 _ti_sysbios_heaps_HeapMem_Object__get__S
0 00082e20 _ti_sysbios_knl_Semaphore_destruct
0 00082e2e _ti_sysbios_knl_Swi_Object__get__S
0 00082e3c _ti_sysbios_knl_Task_Object__get__S
0 00082e4a _xdc_runtime_LoggerBuf_Object__get__S
0 00082e58 _EMPTY_ISR
0 00082e65 _ti_sysbios_BIOS_registerRTSLock__I
0 00082e72 _ti_sysbios_BIOS_rtsLock__I
0 00082e7f _ti_sysbios_family_c28_Hwi_dispatchC__I
0 00082e8c _ti_sysbios_gates_GateHwi_Handle__label__S
0 00082e8c _xdc_runtime_LoggerBuf_Module_GateProxy_Handle__label__S
0 00082e8c _xdc_runtime_Main_Module_GateProxy_Handle__label__S
0 00082e8c _xdc_runtime_System_Module_GateProxy_Handle__label__S
0 00082e99 _ti_sysbios_BIOS_RtsGateProxy_Handle__label__S
0 00082e99 _ti_sysbios_gates_GateMutex_Handle__label__S
0 00082e99 _ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S
0 00082ea6 _ti_sysbios_heaps_HeapMem_Handle__label__S
0 00082ea6 _xdc_runtime_Memory_HeapProxy_Handle__label__S
0 00082eb3 _ti_sysbios_knl_Queue_destruct
0 00082ec0 _ti_sysbios_knl_Task_enter__I
0 00082ecd _ti_sysbios_knl_Task_sleepTimeout__I
0 00082eda _xdc_runtime_Error_check__E
0 00082ee7 _xdc_runtime_LoggerBuf_Handle__label__S
0 00082ef4 _xdc_runtime_LoggerBuf_write0__E
0 00082f01 _xdc_runtime_LoggerBuf_write1__E
0 00082f0e _xdc_runtime_System_abort__E
0 00082f1b _ti_sysbios_BIOS_exitFunc__I
0 00082f27 _ti_sysbios_family_c28_Hwi_disableIER__E
0 00082f33 _ti_sysbios_gates_GateMutex_leave__E
0 00082f3f _ti_sysbios_knl_Queue_put__E
0 00082f4b _ti_sysbios_knl_Task_enabled__E
0 00082f57 _xdc_runtime_SysMin_exit__E
0 00082f63 _ti_sysbios_family_c28_Hwi_Module__startupDone__F
0 00082f63 _ti_sysbios_family_c28_Hwi_Module__startupDone__S
0 00082f63 _ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S
0 00082f6e _ti_sysbios_family_c28_Hwi_Object__get__S
0 00082f79 _ti_sysbios_family_c28_Hwi_enableIER__E
0 00082f84 _ti_sysbios_family_c28_Timer_Module__startupDone__F
0 00082f84 _ti_sysbios_family_c28_Timer_Module__startupDone__S
0 00082f84 _ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S
0 00082f8f _ti_sysbios_knl_Queue_Object__get__S
0 00082f9a _ti_sysbios_knl_Task_SupportProxy_start__E
0 00082fa5 _ti_sysbios_knl_Task_unblock__E
0 00082fb0 _xdc_runtime_LoggerBuf_Instance_finalize__E
0 00082fbb _xdc_runtime_System_exit__E
0 00082fc6 _ti_catalog_c2800_initF2837x_Boot_init
0 00082fc6 _xdc_runtime_Startup_reset__I
0 00082fd0 _ADCA1_ISR
0 00082fda _ADCA2_ISR
0 00082fe4 _ADCA3_ISR
0 00082fee _ADCA4_ISR
0 00082ff8 _ADCA_EVT_ISR
0 00083002 _ADCB1_ISR
0 0008300c _ADCB2_ISR
0 00083016 _ADCB3_ISR
0 00083020 _ADCB4_ISR
0 0008302a _ADCB_EVT_ISR
0 00083034 _ADCC1_ISR
0 0008303e _ADCC2_ISR
0 00083048 _ADCC3_ISR
0 00083052 _ADCC4_ISR
0 0008305c _ADCC_EVT_ISR
0 00083066 _ADCD1_ISR
0 00083070 _ADCD2_ISR
0 0008307a _ADCD3_ISR
0 00083084 _ADCD4_ISR
0 0008308e _ADCD_EVT_ISR
0 00083098 _AUX_PLL_SLIP_ISR
0 000830a2 _CANA0_ISR
0 000830ac _CANA1_ISR
0 000830b6 _CANB0_ISR
0 000830c0 _CANB1_ISR
0 000830ca _CLA1_1_ISR
0 000830d4 _CLA1_2_ISR
0 000830de _CLA1_3_ISR
0 000830e8 _CLA1_4_ISR
0 000830f2 _CLA1_5_ISR
0 000830fc _CLA1_6_ISR
0 00083106 _CLA1_7_ISR
0 00083110 _CLA1_8_ISR
0 0008311a _CLA_OVERFLOW_ISR
0 00083124 _CLA_UNDERFLOW_ISR
0 0008312e _DATALOG_ISR
0 00083138 _DMA_CH1_ISR
0 00083142 _DMA_CH2_ISR
0 0008314c _DMA_CH3_ISR
0 00083156 _DMA_CH4_ISR
0 00083160 _DMA_CH5_ISR
0 0008316a _DMA_CH6_ISR
0 00083174 _ECAP1_ISR
0 0008317e _ECAP2_ISR
0 00083188 _ECAP3_ISR
0 00083192 _ECAP4_ISR
0 0008319c _ECAP5_ISR
0 000831a6 _ECAP6_ISR
0 000831b0 _EMIF_ERROR_ISR
0 000831ba _EMU_ISR
0 000831c4 _EPWM10_ISR
0 000831ce _EPWM10_TZ_ISR
0 000831d8 _EPWM11_ISR
0 000831e2 _EPWM11_TZ_ISR
0 000831ec _EPWM12_ISR
0 000831f6 _EPWM12_TZ_ISR
0 00083200 _EPWM1_ISR
0 0008320a _EPWM1_TZ_ISR
0 00083214 _EPWM2_ISR
0 0008321e _EPWM2_TZ_ISR
0 00083228 _EPWM3_ISR
0 00083232 _EPWM3_TZ_ISR
0 0008323c _EPWM4_ISR
0 00083246 _EPWM4_TZ_ISR
0 00083250 _EPWM5_ISR
0 0008325a _EPWM5_TZ_ISR
0 00083264 _EPWM6_ISR
0 0008326e _EPWM6_TZ_ISR
0 00083278 _EPWM7_ISR
0 00083282 _EPWM7_TZ_ISR
0 0008328c _EPWM8_ISR
0 00083296 _EPWM8_TZ_ISR
0 000832a0 _EPWM9_ISR
0 000832aa _EPWM9_TZ_ISR
0 000832b4 _EQEP1_ISR
0 000832be _EQEP2_ISR
0 000832c8 _EQEP3_ISR
0 000832d2 _FLASH_CORRECTABLE_ERROR_ISR
0 000832dc _FPU_OVERFLOW_ISR
0 000832e6 _FPU_UNDERFLOW_ISR
0 000832f0 _I2CA_FIFO_ISR
0 000832fa _I2CA_ISR
0 00083304 _I2CB_FIFO_ISR
0 0008330e _I2CB_ISR
0 00083318 _ILLEGAL_ISR
0 00083322 _IPC0_ISR
0 0008332c _IPC1_ISR
0 00083336 _IPC2_ISR
0 00083340 _IPC3_ISR
0 0008334a _MCBSPA_RX_ISR
0 00083354 _MCBSPA_TX_ISR
0 0008335e _MCBSPB_RX_ISR
0 00083368 _MCBSPB_TX_ISR
0 00083372 _NMI_ISR
0 0008337c _NOTUSED_ISR
0 00083386 _PIE_RESERVED_ISR
0 00083390 _RAM_ACCESS_VIOLATION_ISR
0 0008339a _RAM_CORRECTABLE_ERROR_ISR
0 000833a4 _RTOS_ISR
0 000833ae _SCIA_RX_ISR
0 000833b8 _SCIA_TX_ISR
0 000833c2 _SCIB_RX_ISR
0 000833cc _SCIB_TX_ISR
0 000833d6 _SCIC_RX_ISR
0 000833e0 _SCIC_TX_ISR
0 000833ea _SCID_RX_ISR
0 000833f4 _SCID_TX_ISR
0 000833fe _SD1_ISR
0 00083408 _SD2_ISR
0 00083412 _SPIA_RX_ISR
0 0008341c _SPIA_TX_ISR
0 00083426 _SPIB_RX_ISR
0 00083430 _SPIB_TX_ISR
0 0008343a _SPIC_RX_ISR
0 00083444 _SPIC_TX_ISR
0 0008344e _SYS_PLL_SLIP_ISR
0 00083458 _TIMER0_ISR
0 00083462 _TIMER1_ISR
0 0008346c _TIMER2_ISR
0 00083476 _UPPA_ISR
0 00083480 _USBA_ISR
0 0008348a _USER10_ISR
0 00083494 _USER11_ISR
0 0008349e _USER12_ISR
0 000834a8 _USER1_ISR
0 000834b2 _USER2_ISR
0 000834bc _USER3_ISR
0 000834c6 _USER4_ISR
0 000834d0 _USER5_ISR
0 000834da _USER6_ISR
0 000834e4 _USER7_ISR
0 000834ee _USER8_ISR
0 000834f8 _USER9_ISR
0 00083502 _VCU_ISR
0 0008350c _WAKE_ISR
0 00083516 _XINT1_ISR
0 00083520 _XINT2_ISR
0 0008352a _XINT3_ISR
0 00083534 _XINT4_ISR
0 0008353e _XINT5_ISR
0 00083548 _xdc_runtime_Error_init__E
0 00083552 _xdc_runtime_Memory_free__E
0 0008355c _xdc_runtime_System_snprintf_va__F
0 0008355c _xdc_runtime_System_vsnprintf__E
0 00083566 _xdc_runtime_Text_ropeText__E
0 00083570 _ti_sysbios_BIOS_rtsUnlock__I
0 00083579 _ti_sysbios_family_c28_Hwi_restoreIER__E
0 00083582 _ti_sysbios_family_c28_TaskSupport_checkStack__E
0 0008358b _ti_sysbios_family_c28_TaskSupport_glue
0 00083594 _ti_sysbios_hal_Hwi_Module_startup__E
0 0008359d _xdc_runtime_Startup_exec__I
0 000835a6 _xdc_runtime_Text_visitRope__I
0 000835af __register_unlock
0 000835b3 __register_lock
0 000835b7 __nop
0 000835b8 _ti_catalog_c2800_initF2837x_Boot_initSharedRAMs
0 000835c8 _ti_sysbios_BIOS_setThreadType__E
0 000835d0 _ti_sysbios_gates_GateMutex_Instance_finalize__E
0 000835d8 _ti_sysbios_knl_Semaphore_Instance_finalize__E
0 000835e0 _xdc_runtime_Memory_HeapProxy_alloc__E
0 000835e8 _xdc_runtime_Memory_calloc__E
0 000835f0 _xdc_runtime_SysMin_ready__E
0 000835f8 _strlen
0 00083600 _ti_catalog_c2800_initF2837x_Boot_initStartup
0 00083607 _ti_sysbios_knl_Queue_empty__E
0 0008360e _xdc_runtime_System_aprintf__E
0 00083615 _xdc_runtime_System_printf__E
0 0008361c _memset
0 00083623 _ti_sysbios_BIOS_exit__E
0 00083629 _ti_sysbios_BIOS_start__E
0 0008362f _ti_sysbios_family_c28_IntrinsicsSupport_maxbit__E
0 00083635 _ti_sysbios_knl_Swi_disable__E
0 0008363b _ti_sysbios_knl_Task_disable__E
0 00083641 _xdc_runtime_Gate_enterSystem__E
0 00083647 _xdc_runtime_Gate_leaveSystem__E
0 0008364d _xdc_runtime_LoggerBuf_enable__E
0 00083653 _ti_sysbios_family_c28_Hwi_switchFromBootStack__E
0 00083658 _ti_sysbios_gates_GateHwi_enter__E
0 0008365d _xdc_runtime_LoggerBuf_disable__E
0 00083662 _ti_sysbios_family_c28_Hwi_startup__E
0 00083662 _ti_sysbios_hal_Hwi_HwiProxy_startup__E
0 00083666 _ti_sysbios_family_c28_TaskSupport_getStackAlignment__E
0 0008366a _ti_sysbios_heaps_HeapMem_isBlocking__E
0 0008366e _ti_sysbios_knl_Swi_startup__E
0 00083672 _xdc_runtime_Memory_HeapProxy_free__E
0 00083676 _xdc_runtime_Memory_getMaxDefaultTypeAlign__E
0 0008367a _xdc_runtime_Startup_rtsDone__E
0 0008367e _ti_catalog_c2800_initF2837x_Boot_limpAbort
0 00083681 ___xdc__init
0 00083684 _ti_sysbios_BIOS_RtsGateProxy_enter__E
0 00083687 _ti_sysbios_BIOS_RtsGateProxy_leave__E
0 0008368a _ti_sysbios_gates_GateHwi_leave__E
0 0008368d _ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E
0 00083690 _ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E
0 00083693 _ti_sysbios_hal_Hwi_startup__E
0 00083696 _ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E
0 00083699 _ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E
0 0008369c _ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E
0 0008369f _ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E
0 000836a2 _ti_sysbios_knl_Idle_loop__E
0 000836a5 _ti_sysbios_knl_Queue_Instance_init__E
0 000836a8 _ti_sysbios_knl_Task_SupportProxy_checkStack__E
0 000836ab _ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E
0 000836ae _ti_sysbios_knl_Task_SupportProxy_swap__E
0 000836b1 _ti_sysbios_knl_Task_startup__E
0 000836b4 _xdc_runtime_LoggerBuf_Module_GateProxy_enter__E
0 000836b7 _xdc_runtime_LoggerBuf_Module_GateProxy_leave__E
0 000836ba _xdc_runtime_LoggerBuf_TimestampProxy_get64__E
0 000836bd _xdc_runtime_System_Module_GateProxy_enter__E
0 000836c0 _xdc_runtime_System_Module_GateProxy_leave__E
0 000836c3 _xdc_runtime_System_Module_startup__E
0 000836c6 _xdc_runtime_System_SupportProxy_abort__E
0 000836c9 _xdc_runtime_System_SupportProxy_exit__E
0 000836cc _xdc_runtime_System_SupportProxy_putch__E
0 000836cf _xdc_runtime_System_SupportProxy_ready__E
0 000836d2 _xdc_runtime_System_abortStd__E
0 000836d5 _xdc_runtime_System_exitStd__E
0 000836d8 _ti_sysbios_family_c28_TaskSupport_Module__startupDone__S
0 000836d8 _ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S
0 000836da _ti_sysbios_family_c28_Timer_getMaxTicks__E
0 000836dc _ti_sysbios_gates_GateHwi_query__E
0 000836de _ti_sysbios_gates_GateMutex_query__E
0 000836e0 _xdc_runtime_Error_getSite__E
0 000836e2 __system_pre_init
0 000836e4 _ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E
0 000836e5 _ti_sysbios_BIOS_nullFunc__I
0 000836e6 _ti_sysbios_family_c28_Hwi_interruptReturn__I
0 000836e7 _ti_sysbios_gates_GateHwi_Instance_init__E
0 000836e8 __system_post_cinit
0 000836e9 ___cinit__
0 000836e9 ___etext__
0 000836e9 cinit
0 000836e9 etext
0 00083b4c __TI_table_binit
0 00083b4c ___binit__
0 00083b4c binit
0 00084000 _xdc_runtime_Text_charTab__A
0 00085794 _ti_sysbios_family_c28_Hwi_vectors
0 000859bf _ti_sysbios_family_c28_Hwi_Module__id__C
0 00085a18 _xdc_runtime_Text_nodeTab__A
0 00085ab3 _ti_sysbios_family_c28_Hwi_Module__loggerDefined__C
0 00085af7 _ti_sysbios_family_c28_Hwi_NUM_INTERRUPTS_ALL__C
0 00085b2f _ti_sysbios_family_c28_Hwi_Object__count__C
0 00085b5a _ti_sysbios_knl_Task_Object__PARAMS__C
0 00085b7a _xdc_runtime_LoggerBuf_Module__FXNS__C
0 00085bb1 _ti_sysbios_family_c28_TaskSupport_Module__id__C
0 00085bb2 _ti_sysbios_heaps_HeapMem_Module__FXNS__C
0 00085bc6 _ti_sysbios_gates_GateHwi_Module__FXNS__C
0 00085bd8 _ti_sysbios_gates_GateMutex_Module__FXNS__C
0 00085bea _ti_sysbios_heaps_HeapMem_Object__PARAMS__C
0 00085bfc _xdc_runtime_LoggerBuf_Object__PARAMS__C
0 00085c0e _xdc_runtime_Startup_sfxnTab__A
0 00085c20 _ti_sysbios_gates_GateHwi_Object__DESC__C
0 00085c30 _ti_sysbios_gates_GateMutex_Object__DESC__C
0 00085c40 _ti_sysbios_heaps_HeapMem_Object__DESC__C
0 00085c50 _ti_sysbios_knl_Queue_Object__DESC__C
0 00085c60 _ti_sysbios_knl_Semaphore_Object__DESC__C
0 00085c70 _ti_sysbios_knl_Semaphore_Object__PARAMS__C
0 00085c80 _ti_sysbios_knl_Task_Object__DESC__C
0 00085c90 _xdc_runtime_LoggerBuf_Object__DESC__C
0 00085ca0 _ti_sysbios_gates_GateHwi_Object__PARAMS__C
0 00085cac _ti_sysbios_gates_GateMutex_Object__PARAMS__C
0 00085cb8 _ti_sysbios_knl_Queue_Object__PARAMS__C
0 00085cc4 _xdc_runtime_Startup_sfxnRts__A
0 00085ccd _ti_sysbios_family_c28_TaskSupport_stackAlignment__C
0 00085cce _xdc_runtime_Startup_firstFxns__A
0 00085cd9 _ti_sysbios_family_c28_Timer_startupNeeded__C
0 00085cda _ti_sysbios_knl_Idle_funcList__C
0 00085cde _xdc_runtime_Startup_firstFxns__C
0 00085ce2 _xdc_runtime_Startup_lastFxns__C
0 00085ce6 _ti_sysbios_family_c28_Hwi_A_badIntNum__C
0 00085ce8 _ti_sysbios_family_c28_Hwi_A_invalidArg__C
0 00085cea _ti_sysbios_family_c28_Hwi_E_unpluggedInterrupt__C
0 00085cec _ti_sysbios_family_c28_Hwi_LD_end__C
0 00085cee _ti_sysbios_family_c28_Hwi_LM_begin__C
0 00085cf0 _ti_sysbios_family_c28_Hwi_Module__diagsEnabled__C
0 00085cf2 _ti_sysbios_family_c28_Hwi_Module__diagsIncluded__C
0 00085cf4 _ti_sysbios_family_c28_Hwi_Module__diagsMask__C
0 00085cf6 _ti_sysbios_family_c28_Hwi_Module__loggerFxn1__C
0 00085cf8 _ti_sysbios_family_c28_Hwi_Module__loggerFxn8__C
0 00085cfa _ti_sysbios_family_c28_Hwi_Module__loggerObj__C
0 00085cfc _ti_sysbios_family_c28_TaskSupport_E_invalidStack__C
0 00085cfe _ti_sysbios_gates_GateMutex_A_badContext__C
0 00085d00 _ti_sysbios_gates_GateMutex_Instance_State_sem__O
0 00085d02 _ti_sysbios_gates_GateMutex_Module__diagsEnabled__C
0 00085d04 _ti_sysbios_gates_GateMutex_Module__diagsIncluded__C
0 00085d06 _ti_sysbios_gates_GateMutex_Module__diagsMask__C
0 00085d08 _ti_sysbios_hal_Hwi_E_stackOverflow__C
0 00085d0a _ti_sysbios_heaps_HeapMem_A_align__C
0 00085d0c _ti_sysbios_heaps_HeapMem_A_heapSize__C
0 00085d0e _ti_sysbios_heaps_HeapMem_A_invalidFree__C
0 00085d10 _ti_sysbios_heaps_HeapMem_A_zeroBlock__C
0 00085d12 _ti_sysbios_heaps_HeapMem_E_memory__C
0 00085d14 _ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C
0 00085d16 _ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C
0 00085d18 _ti_sysbios_heaps_HeapMem_Module__diagsMask__C
0 00085d1a _ti_sysbios_heaps_HeapMem_Module__gateObj__C
0 00085d1c _ti_sysbios_heaps_HeapMem_reqAlign__C
0 00085d1e _ti_sysbios_knl_Clock_LM_begin__C
0 00085d20 _ti_sysbios_knl_Clock_LM_tick__C
0 00085d22 _ti_sysbios_knl_Clock_LW_delayed__C
0 00085d24 _ti_sysbios_knl_Clock_Module_State_clockQ__O
0 00085d26 _ti_sysbios_knl_Clock_Module__diagsEnabled__C
0 00085d28 _ti_sysbios_knl_Clock_Module__diagsIncluded__C
0 00085d2a _ti_sysbios_knl_Clock_Module__diagsMask__C
0 00085d2c _ti_sysbios_knl_Clock_Module__loggerFxn1__C
0 00085d2e _ti_sysbios_knl_Clock_Module__loggerFxn2__C
0 00085d30 _ti_sysbios_knl_Clock_Module__loggerObj__C
0 00085d32 _ti_sysbios_knl_Idle_funcList__A
0 00085d34 _ti_sysbios_knl_Semaphore_A_badContext__C
0 00085d36 _ti_sysbios_knl_Semaphore_A_noEvents__C
0 00085d38 _ti_sysbios_knl_Semaphore_A_overflow__C
0 00085d3a _ti_sysbios_knl_Semaphore_A_pendTaskDisabled__C
0 00085d3c _ti_sysbios_knl_Semaphore_Instance_State_pendQ__O
0 00085d3e _ti_sysbios_knl_Semaphore_LM_pend__C
0 00085d40 _ti_sysbios_knl_Semaphore_LM_post__C
0 00085d42 _ti_sysbios_knl_Semaphore_Module__diagsEnabled__C
0 00085d44 _ti_sysbios_knl_Semaphore_Module__diagsIncluded__C
0 00085d46 _ti_sysbios_knl_Semaphore_Module__diagsMask__C
0 00085d48 _ti_sysbios_knl_Semaphore_Module__loggerFxn2__C
0 00085d4a _ti_sysbios_knl_Semaphore_Module__loggerFxn4__C
0 00085d4c _ti_sysbios_knl_Semaphore_Module__loggerObj__C
0 00085d4e _ti_sysbios_knl_Swi_LD_end__C
0 00085d50 _ti_sysbios_knl_Swi_LM_begin__C
0 00085d52 _ti_sysbios_knl_Swi_LM_post__C
0 00085d54 _ti_sysbios_knl_Swi_Module__diagsEnabled__C
0 00085d56 _ti_sysbios_knl_Swi_Module__diagsIncluded__C
0 00085d58 _ti_sysbios_knl_Swi_Module__diagsMask__C
0 00085d5a _ti_sysbios_knl_Swi_Module__loggerFxn1__C
0 00085d5c _ti_sysbios_knl_Swi_Module__loggerFxn4__C
0 00085d5e _ti_sysbios_knl_Swi_Module__loggerObj__C
0 00085d60 _ti_sysbios_knl_Task_A_badPriority__C
0 00085d62 _ti_sysbios_knl_Task_A_badTaskState__C
0 00085d64 _ti_sysbios_knl_Task_A_badThreadType__C
0 00085d66 _ti_sysbios_knl_Task_A_badTimeout__C
0 00085d68 _ti_sysbios_knl_Task_A_noPendElem__C
0 00085d6a _ti_sysbios_knl_Task_A_sleepTaskDisabled__C
0 00085d6c _ti_sysbios_knl_Task_E_spOutOfBounds__C
0 00085d6e _ti_sysbios_knl_Task_E_stackOverflow__C
0 00085d70 _ti_sysbios_knl_Task_LD_block__C
0 00085d72 _ti_sysbios_knl_Task_LD_exit__C
0 00085d74 _ti_sysbios_knl_Task_LD_ready__C
0 00085d76 _ti_sysbios_knl_Task_LM_sleep__C
0 00085d78 _ti_sysbios_knl_Task_LM_switch__C
0 00085d7a _ti_sysbios_knl_Task_Module_State_inactiveQ__O
0 00085d7c _ti_sysbios_knl_Task_Module__diagsEnabled__C
0 00085d7e _ti_sysbios_knl_Task_Module__diagsIncluded__C
0 00085d80 _ti_sysbios_knl_Task_Module__diagsMask__C
0 00085d82 _ti_sysbios_knl_Task_Module__loggerFxn2__C
0 00085d84 _ti_sysbios_knl_Task_Module__loggerFxn4__C
0 00085d86 _ti_sysbios_knl_Task_Module__loggerObj__C
0 00085d88 _ti_sysbios_knl_Task_allBlockedFunc__C
0 00085d8a _ti_sysbios_knl_Task_defaultStackHeap__C
0 00085d8c _ti_sysbios_knl_Task_defaultStackSize__C
0 00085d8e _xdc_runtime_Assert_E_assertFailed__C
0 00085d90 _xdc_runtime_Core_A_initializedParams__C
0 00085d92 _xdc_runtime_Core_Module__diagsEnabled__C
0 00085d94 _xdc_runtime_Core_Module__diagsIncluded__C
0 00085d96 _xdc_runtime_Core_Module__diagsMask__C
0 00085d98 _xdc_runtime_Error_E_memory__C
0 00085d9a _xdc_runtime_Error_Module__diagsEnabled__C
0 00085d9c _xdc_runtime_Error_Module__diagsIncluded__C
0 00085d9e _xdc_runtime_Error_Module__diagsMask__C
0 00085da0 _xdc_runtime_Error_Module__loggerFxn8__C
0 00085da2 _xdc_runtime_Error_Module__loggerObj__C
0 00085da4 _xdc_runtime_Error_policyFxn__C
0 00085da6 _xdc_runtime_Error_raiseHook__C
0 00085da8 _xdc_runtime_IFilterLogger_Interface__BASE__C
0 00085daa _xdc_runtime_IGateProvider_Interface__BASE__C
0 00085dac _xdc_runtime_IHeap_Interface__BASE__C
0 00085dae _xdc_runtime_ILogger_Interface__BASE__C
0 00085db0 _xdc_runtime_IModule_Interface__BASE__C
0 00085db2 _xdc_runtime_Log_L_error__C
0 00085db4 _xdc_runtime_LoggerBuf_E_badLevel__C
0 00085db6 _xdc_runtime_LoggerBuf_Module__gateObj__C
0 00085db8 _xdc_runtime_LoggerBuf_statusLogger__C
0 00085dba _xdc_runtime_Memory_defaultHeapInstance__C
0 00085dbc _xdc_runtime_Startup_execImpl__C
0 00085dbe _xdc_runtime_Startup_sfxnRts__C
0 00085dc0 _xdc_runtime_Startup_sfxnTab__C
0 00085dc2 _xdc_runtime_SysMin_bufSize__C
0 00085dc4 _xdc_runtime_SysMin_outputFunc__C
0 00085dc6 _xdc_runtime_System_Module__gateObj__C
0 00085dc8 _xdc_runtime_System_abortFxn__C
0 00085dca _xdc_runtime_System_exitFxn__C
0 00085dcc _xdc_runtime_System_extendFxn__C
0 00085dce _xdc_runtime_Text_charTab__C
0 00085dd0 _xdc_runtime_Text_nameEmpty__C
0 00085dd2 _xdc_runtime_Text_nameStatic__C
0 00085dd4 _xdc_runtime_Text_nameUnknown__C
0 00085dd6 _xdc_runtime_Text_nodeTab__C
0 00085dd8 _xdc_runtime_Text_visitRopeFxn__C
0 00085dda _ti_sysbios_gates_GateMutex_Module__id__C
0 00085ddb _ti_sysbios_hal_Hwi_Module__id__C
0 00085ddc _ti_sysbios_heaps_HeapMem_Module__id__C
0 00085ddd _ti_sysbios_heaps_HeapMem_Object__count__C
0 00085dde _ti_sysbios_knl_Clock_Module__id__C
0 00085ddf _ti_sysbios_knl_Clock_Module__loggerDefined__C
0 00085de0 _ti_sysbios_knl_Semaphore_Module__id__C
0 00085de1 _ti_sysbios_knl_Semaphore_Module__loggerDefined__C
0 00085de2 _ti_sysbios_knl_Swi_Module__id__C
0 00085de3 _ti_sysbios_knl_Swi_Module__loggerDefined__C
0 00085de4 _ti_sysbios_knl_Swi_Object__count__C
0 00085de5 _ti_sysbios_knl_Task_Module__id__C
0 00085de6 _ti_sysbios_knl_Task_Module__loggerDefined__C
0 00085de7 _ti_sysbios_knl_Task_Object__count__C
0 00085de8 _ti_sysbios_knl_Task_numConstructedTasks__C
0 00085de9 _xdc_runtime_Core_Module__id__C
0 00085dea _xdc_runtime_Error_Module__loggerDefined__C
0 00085deb _xdc_runtime_Error_maxDepth__C
0 00085dec _xdc_runtime_Error_policy__C
0 00085ded _xdc_runtime_LoggerBuf_Module__id__C
0 00085dee _xdc_runtime_LoggerBuf_Object__count__C
0 00085def _xdc_runtime_LoggerBuf_filterByLevel__C
0 00085df0 _xdc_runtime_Memory_Module__id__C
0 00085df1 _xdc_runtime_Startup_maxPasses__C
0 00085df2 _xdc_runtime_SysMin_flushAtExit__C
0 00085df3 _xdc_runtime_System_maxAtexitHandlers__C
0 00085df4 _xdc_runtime_Text_charCnt__C
0 00085df5 _xdc_runtime_Text_isLoaded__C
0 00085df6 _xdc_runtime_Text_registryModsLastId__C
0 00085df7 _xdc_runtime_Text_unnamedModsLastId__C
1 00000002 _AnalogSubsysRegs
1 00000040 _DmaRegs
1 00000120 _FlashPumpSemaphoreRegs
1 00000122 _RomPrefetchRegs
1 00000124 _ti_sysbios_gates_GateMutex_Object__table__V
1 00000140 _ti_sysbios_knl_Task_Instance_State_0_stack__A
1 00000240 _ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A
1 00000a43 _resultsIndex
1 00000a44 _ti_sysbios_knl_Task_Object__table__V
1 00000a6e _xdc_runtime_LoggerBuf_Object__table__V
1 00000a80 _xdc_runtime_LoggerBuf_Instance_State_0_entryArr__A
1 00000c80 _xdc_runtime_SysMin_Module_State_0_outbuf__A
1 00000e80 _ti_sysbios_family_c28_Hwi_Module_State_0_dispatchTable__A
1 00001040 _AdcaResults
1 00001140 _xdc_runtime_Error_Module__state__V
1 00001142 _xdc_runtime_Memory_Module__state__V
1 00001144 ___xdc__init__addr
1 00001146 _xdc_runtime_LoggerBuf_Module__state__V
1 0000114a _ti_sysbios_family_c28_Hwi_Module__root__V
1 0000114e _ti_sysbios_family_c28_Timer_Module__root__V
1 00001152 _ti_sysbios_gates_GateHwi_Module__root__V
1 00001156 _ti_sysbios_gates_GateMutex_Module__root__V
1 0000115a _ti_sysbios_hal_Hwi_Module__root__V
1 0000115e _ti_sysbios_heaps_HeapMem_Module__root__V
1 00001162 _ti_sysbios_knl_Clock_Module__root__V
1 00001166 _ti_sysbios_knl_Queue_Module__root__V
1 0000116a _ti_sysbios_knl_Semaphore_Module__root__V
1 0000116e _ti_sysbios_knl_Swi_Module__root__V
1 00001172 _ti_sysbios_knl_Task_Module__root__V
1 00001176 _xdc_runtime_LoggerBuf_Module__root__V
1 0000117a _xdc_runtime_Registry_Module__state__V
1 00001180 _xdc_runtime_Startup_Module__state__V
1 00001184 _xdc_runtime_SysMin_Module__state__V
1 00001188 _xdc_runtime_System_Module__state__V
1 0000118c _xdc_runtime_Text_Module__state__V
1 00001190 _ti_sysbios_family_c28_Timer_Module__state__V
1 00001198 _ti_sysbios_knl_Swi_Module__state__V
1 000011a4 _xdc_runtime_Error_IgnoreBlock
1 000011c0 _ti_sysbios_family_c28_Hwi_Module__state__V
1 000011d0 _ti_sysbios_BIOS_Module__state__V
1 000011e2 _ti_sysbios_knl_Clock_Module__state__V
1 00001200 _ti_sysbios_knl_Task_Module__state__V
1 00001220 _ti_sysbios_family_c28_Timer_Object__table__V
1 00001238 _parmbuf
1 00001240 _ti_sysbios_knl_Swi_Module_State_0_readyQ__A
1 00001280 _ti_sysbios_knl_Task_Module_State_0_readyQ__A
1 000012c0 _ti_sysbios_knl_Swi_Object__table__V
1 000012d4 _ti_sysbios_family_c28_Hwi_Object__table__V
1 000012e4 _ti_sysbios_heaps_HeapMem_Object__table__V
1 000012f0 _xdc_runtime_System_Module_State_0_atexitHandlers__A
1 000012f8 ___TI_enable_exit_profile_output
1 000012fa ___TI_cleanup_ptr
1 000012fc ___TI_dtors_ptr
1 000012fe __lock
1 00001300 __unlock
1 00001302 _ti_sysbios_gates_GateHwi_Object__table__V
1 00001304 _ti_sysbios_knl_Task_Module_State_0_idleTask__A
1 00001306 _MemoryErrorRegs
1 00001340 _PieVectTable
1 00001500 _Flash0CtrlRegs
1 00001682 _Cla1Regs
1 000016c0 _GpioCtrlRegs
1 00001840 _CanaRegs
1 000019a4 _Cmpss1Regs
1 000019bf _EmuBMode
1 000019c0 _CanbRegs
1 00001b24 _Cmpss2Regs
1 00001b3f _EmuBootPins
1 00001b40 _DevCfgRegs
1 00001c6e _SciaRegs
1 00001c7e _RomWaitStateRegs
1 00001c80 _EPwm10Regs
1 00001d80 _EPwm11Regs
1 00001e80 _EPwm12Regs
1 00001f80 _EPwm1Regs
1 00002080 _CpuSysRegs
1 00002102 _InputXbarRegs
1 00002122 _RamfuncsLoadEnd
1 00002122 _RamfuncsLoadStart
1 00002122 _RamfuncsRunEnd
1 00002122 _RamfuncsRunStart
1 00002126 __stack
1 0000314a _ClkCfgRegs
1 0000314a __STACK_END
1 0000317c _Cla1SoftIntRegs
1 00003180 __CIOBUF_
1 000032a0 _Cmpss3Regs
1 000032c0 _EPwm2Regs
1 000033c0 _EPwm3Regs
1 000034c0 _EPwm4Regs
1 000035c0 _EPwm5Regs
1 000036c0 _EPwm6Regs
1 000037c0 _EPwm7Regs
1 000038c0 _EPwm8Regs
1 000039c0 _EPwm9Regs
1 00003ac0 _AdcaRegs
1 00003b40 _AdcbRegs
1 00003bc0 _AdccRegs
1 00003c40 _AdcdRegs
1 00003cc0 _MemCfgRegs
1 00003d36 _Emif1ConfigRegs
1 00003d40 _Sdfm1Regs
1 00003d88 _GpioDataRegs
1 00003db8 _CpuTimer0Regs
1 00003dc0 _Sdfm2Regs
1 00003e08 _AccessProtectionRegs
1 00003e36 _Emif2ConfigRegs
1 00003e40 _UppRegs
1 00003e88 _WdRegs
1 00003eb3 _XintRegs
1 00003ec0 _EPwmXbarRegs
1 00003f00 _OutputXbarRegs
1 00003f40 _Emif1Regs
1 00003f68 _AdcaResultRegs
1 00003f80 _Emif2Regs
1 00003fa8 _AdcbResultRegs
1 00003fc0 _Flash0EccRegs
1 00003fe8 _AdccResultRegs
1 00004000 _IpcRegs
1 00004024 _Cmpss4Regs
1 00004040 _McbspaRegs
1 00004064 _Cmpss5Regs
1 00004080 _McbspbRegs
1 000040a4 _Cmpss6Regs
1 000040c0 _DcsmZ1Regs
1 000040e2 _Cmpss7Regs
1 00004100 _DcsmZ2Regs
1 00004122 _Cmpss8Regs
1 00004140 _EQep1Regs
1 00004162 _DmaClaSrcSelRegs
1 00004180 _EQep2Regs
1 000041a2 _ECap1Regs
1 000041c0 _EQep3Regs
1 000041e2 _ECap2Regs
1 00004200 _I2caRegs
1 00004222 _ECap3Regs
1 00004240 _I2cbRegs
1 00004262 _ECap4Regs
1 00004280 _ECap5Regs
1 0000429a _ECap6Regs
1 000042b4 _CpuTimer1Regs
1 000042c0 _PieCtrlRegs
1 000042da _AdcdResultRegs
1 000042f2 _XbarRegs
1 00004300 _ScibRegs
1 00004310 _ScicRegs
1 00004320 _ScidRegs
1 00004330 _SpiaRegs
1 00004340 _SpibRegs
1 00004350 _SpicRegs
1 00004360 _CpuTimer2Regs
1 00004368 _DacaRegs
1 0000436f _DacbRegs
1 00004376 _DaccRegs
1 00004380 _NmiIntruptRegs
1 00004388 _DcsmCommonRegs
1 0000438e _SyncSocRegs
abs 00000000 _RamfuncsLoadSize
abs 00000000 _RamfuncsRunSize
abs 00000001 _xdc_runtime_Startup__EXECFXN__C
abs 00000001 _xdc_runtime_Startup__RESETFXN__C
abs 00001024 __STACK_SIZE
abs ffffffff ___TI_pprof_out_hndl
abs ffffffff ___TI_prof_data_size
abs ffffffff ___TI_prof_data_start
abs ffffffff ___c_args__
abs ffffffff ___pinit__
abs ffffffff pinit
[803 symbols]
Hi,
I believe the following thread is on the same issue. From the map file you shared, looks like the section ti_catalog_c2800_initF2837x_begin is occupying the BEGIN memory section
TMS320F28075: 28075 codestart will not fit into available memory and GPIO72 concern - C2000 microcontrollers...
Regards,
Veena
Hello,
I made the changes folowing the thread above and running into another problem.
Break at address "0x3fe493" with no debug information available, or outside of program code.
This issue I have found in many other threads and none of them has helped in solving.Can you suggest what could have made the error.
Thanks in advance.
Hi Rekha,
After loading the code, did the PC reach the main function?
Are you using BIOS?
Regards,
Veena
Hello,
No it did not reach the main function.
Yes , the project is a SY/BIOS project.
If you are using SYS/BIOS and have checked the "Enable boot from Flash" box in your cfg file, you don't also need to include the CodeStartBranch.asm file. They do the same thing (jump from the flash entry point to c_int00), so you only need one of them. That's the reason for the earlier error.
Once you've removed CodeStartBranch.asm, let me know if you're still running into the same issue (not able to run to main()). See if checking the "Disable the watchdog timer" option in your cfg file makes any difference if you don't have it selected already.
Whitney
Hello,
I removed the CodeStartBranch.asm file but still getting the same error.
This is my app.cfg file.
var Defaults = xdc.useModule('xdc.runtime.Defaults');
var Diags = xdc.useModule('xdc.runtime.Diags');
var Error = xdc.useModule('xdc.runtime.Error');
var Log = xdc.useModule('xdc.runtime.Log');
var LoggerBuf = xdc.useModule('xdc.runtime.LoggerBuf');
var Main = xdc.useModule('xdc.runtime.Main');
var Memory = xdc.useModule('xdc.runtime.Memory')
var SysMin = xdc.useModule('xdc.runtime.SysMin');
var System = xdc.useModule('xdc.runtime.System');
var Text = xdc.useModule('xdc.runtime.Text');
var BIOS = xdc.useModule('ti.sysbios.BIOS');
var Clock = xdc.useModule('ti.sysbios.knl.Clock');
var Swi = xdc.useModule('ti.sysbios.knl.Swi');
var Task = xdc.useModule('ti.sysbios.knl.Task');
var Semaphore = xdc.useModule('ti.sysbios.knl.Semaphore');
var Hwi = xdc.useModule('ti.sysbios.family.c28.Hwi');
xdc.useModule('ti.posix.tirtos.Settings');
/*
* Uncomment this line to globally disable Asserts.
* All modules inherit the default from the 'Defaults' module. You
* can override these defaults on a per-module basis using Module.common$.
* Disabling Asserts will save code space and improve runtime performance.
Defaults.common$.diags_ASSERT = Diags.ALWAYS_OFF;
*/
/*
* Uncomment this line to keep module names from being loaded on the target.
* The module name strings are placed in the .const section. Setting this
* parameter to false will save space in the .const section. Error and
* Assert messages will contain an "unknown module" prefix instead
* of the actual module name.
Defaults.common$.namedModule = false;
*/
/*
* Minimize exit handler array in System. The System module includes
* an array of functions that are registered with System_atexit() to be
* called by System_exit().
*/
System.maxAtexitHandlers = 4;
/*
* Uncomment this line to disable the Error print function.
* We lose error information when this is disabled since the errors are
* not printed. Disabling the raiseHook will save some code space if
* your app is not using System_printf() since the Error_print() function
* calls System_printf().
Error.raiseHook = null;
*/
/*
* Uncomment this line to keep Error, Assert, and Log strings from being
* loaded on the target. These strings are placed in the .const section.
* Setting this parameter to false will save space in the .const section.
* Error, Assert and Log message will print raw ids and args instead of
* a formatted message.
Text.isLoaded = false;
*/
/*
* Uncomment this line to disable the output of characters by SysMin
* when the program exits. SysMin writes characters to a circular buffer.
* This buffer can be viewed using the SysMin Output view in ROV.
SysMin.flushAtExit = false;
*/
/*
* The BIOS module will create the default heap for the system.
* Specify the size of this default heap.
*/
BIOS.heapSize = 0x800;
/*
* Build a custom SYS/BIOS library from sources.
*/
BIOS.libType = BIOS.LibType_Custom;
/* System stack size (used by ISRs and Swis) */
Program.stack = 0x1024;
/* Circular buffer size for System_printf() */
SysMin.bufSize = 0x200;
/*
* Create and install logger for the whole system
*/
var loggerBufParams = new LoggerBuf.Params();
loggerBufParams.numEntries = 32;
var logger0 = LoggerBuf.create(loggerBufParams);
Defaults.common$.logger = logger0;
Main.common$.diags_INFO = Diags.ALWAYS_ON;
System.SupportProxy = SysMin;
Can you suggest some solution.
Thanks in advance.
Hello,
Tried removing the CodeStartBranch.asm file but the problem exists.
This is mu app.cfg file.
var Defaults = xdc.useModule('xdc.runtime.Defaults');
var Diags = xdc.useModule('xdc.runtime.Diags');
var Error = xdc.useModule('xdc.runtime.Error');
var Log = xdc.useModule('xdc.runtime.Log');
var LoggerBuf = xdc.useModule('xdc.runtime.LoggerBuf');
var Main = xdc.useModule('xdc.runtime.Main');
var Memory = xdc.useModule('xdc.runtime.Memory')
var SysMin = xdc.useModule('xdc.runtime.SysMin');
var System = xdc.useModule('xdc.runtime.System');
var Text = xdc.useModule('xdc.runtime.Text');
var BIOS = xdc.useModule('ti.sysbios.BIOS');
var Clock = xdc.useModule('ti.sysbios.knl.Clock');
var Swi = xdc.useModule('ti.sysbios.knl.Swi');
var Task = xdc.useModule('ti.sysbios.knl.Task');
var Semaphore = xdc.useModule('ti.sysbios.knl.Semaphore');
var Hwi = xdc.useModule('ti.sysbios.family.c28.Hwi');
xdc.useModule('ti.posix.tirtos.Settings');
/*
* Uncomment this line to globally disable Asserts.
* All modules inherit the default from the 'Defaults' module. You
* can override these defaults on a per-module basis using Module.common$.
* Disabling Asserts will save code space and improve runtime performance.
Defaults.common$.diags_ASSERT = Diags.ALWAYS_OFF;
*/
/*
* Uncomment this line to keep module names from being loaded on the target.
* The module name strings are placed in the .const section. Setting this
* parameter to false will save space in the .const section. Error and
* Assert messages will contain an "unknown module" prefix instead
* of the actual module name.
Defaults.common$.namedModule = false;
*/
/*
* Minimize exit handler array in System. The System module includes
* an array of functions that are registered with System_atexit() to be
* called by System_exit().
*/
System.maxAtexitHandlers = 4;
/*
* Uncomment this line to disable the Error print function.
* We lose error information when this is disabled since the errors are
* not printed. Disabling the raiseHook will save some code space if
* your app is not using System_printf() since the Error_print() function
* calls System_printf().
Error.raiseHook = null;
*/
/*
* Uncomment this line to keep Error, Assert, and Log strings from being
* loaded on the target. These strings are placed in the .const section.
* Setting this parameter to false will save space in the .const section.
* Error, Assert and Log message will print raw ids and args instead of
* a formatted message.
Text.isLoaded = false;
*/
/*
* Uncomment this line to disable the output of characters by SysMin
* when the program exits. SysMin writes characters to a circular buffer.
* This buffer can be viewed using the SysMin Output view in ROV.
SysMin.flushAtExit = false;
*/
/*
* The BIOS module will create the default heap for the system.
* Specify the size of this default heap.
*/
BIOS.heapSize = 0x800;
/*
* Build a custom SYS/BIOS library from sources.
*/
BIOS.libType = BIOS.LibType_Custom;
/* System stack size (used by ISRs and Swis) */
Program.stack = 0x1024;
/* Circular buffer size for System_printf() */
SysMin.bufSize = 0x200;
/*
* Create and install logger for the whole system
*/
var loggerBufParams = new LoggerBuf.Params();
loggerBufParams.numEntries = 32;
var logger0 = LoggerBuf.create(loggerBufParams);
Defaults.common$.logger = logger0;
Main.common$.diags_INFO = Diags.ALWAYS_ON;
System.SupportProxy = SysMin;
Can you give suggestions on how to solve this issue.
Thanks in advance.
Please try enabled the Boot module and then checking the "Disable the watchdog timer" option and see if that makes a difference. In the cfg script it will add the lines
var Boot = xdc.useModule('ti.catalog.c2800.initF2837x.Boot');
Boot.disableWatchdog = true;
Whitney