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.

Compiler/LAUNCHXL-CC2650: Memory Available Problem

Part Number: LAUNCHXL-CC2650
Other Parts Discussed in Thread: CC2650

Tool/software: TI C/C++ Compiler

Hi everyone

I'm trying to modify the "project zero" project adding some functionalities. But when I tried to compile, I have this problem:

Description Resource Path Location Type
#10099-D program will not fit into available memory. placement with alignment fails for section ".const" size 0x1d7e . Available memory ranges: cc26xx_app.cmd /mt8442_cc2650launchxl/TOOLS line 121 C/C++ Problem

So, here is the command file where the problem is:

/******************************************************************************

 @file  cc26xx_app.cmd

 @brief CC2650F128 linker configuration file for TI-RTOS with Code Composer 
        Studio.

 Group: WCS, BTS
 Target Device: CC2650, CC2640, CC1350

 ******************************************************************************
 
 Copyright (c) 2013-2016, 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.

 ******************************************************************************
 Release Name: ble_sdk_2_02_00_31
 Release Date: 2016-06-16 18:57:29
 *****************************************************************************/


/* Retain interrupt vector table variable                                    */
--retain=g_pfnVectors
/* Override default entry point.                                             */
--entry_point ResetISR
/* Suppress warnings and errors:                                             */
/* - 10063: Warning about entry point not being _c_int00                     */
/* - 16011, 16012: 8-byte alignment errors. Observed when linking in object  */ 
/*   files compiled using Keil (ARM compiler)                                */
--diag_suppress=10063,16011,16012

/* The following command line options are set as part of the CCS project.    */
	/* If you are building using the command line, or for some reason want to    */
/* define them here, you can uncomment and modify these lines as needed.     */
/* If you are using CCS for building, it is probably better to make any such */
/* modifications in your CCS project and leave this file alone.              */
/*                                                                           */
/* --heap_size=0                                                             */
/* --stack_size=256                                                          */
/* --library=rtsv7M3_T_le_eabi.lib                                           */

/* The starting address of the application.  Normally the interrupt vectors  */
/* must be located at the beginning of the application. Flash is 128KB, with */
/* sector length of 4KB                                                      */
#define FLASH_APP_BASE          0x00000000
#define FLASH_LEN               0x20000
#define FLASH_PAGE_LEN          0x1000

/* Last page of Flash is allocated to App: 0x1F000 - 0x1FFFF */
#define FLASH_LAST_PAGE_START   FLASH_LEN - FLASH_PAGE_LEN

/* RAM starts at 0x20000000 and is 20KB */
#define RAM_APP_BASE            0x20000000
#define RAM_LEN                 0x5000
/* RAM reserved by ROM code starts. */
#define RAM_RESERVED_OFFSET      0x4F00

/* System memory map */

MEMORY
{
    /* EDITOR'S NOTE:
     * the FLASH and SRAM lengths can be changed by defining
     * ICALL_STACK0_START or ICALL_RAM0_START in
     * Properties->ARM Linker->Advanced Options->Command File Preprocessing.
     */

    /* Application stored in and executes from internal flash */
    /* Flash Size 128 KB */
    #ifdef ICALL_STACK0_START
        FLASH (RX) : origin = FLASH_APP_BASE, length = ICALL_STACK0_START - FLASH_APP_BASE
    #else // default
        FLASH (RX) : origin = FLASH_APP_BASE, length = FLASH_LEN - FLASH_PAGE_LEN
    #endif

    // CCFG Page, contains .ccfg code section and some application code.
    FLASH_LAST_PAGE (RX) :  origin = FLASH_LAST_PAGE_START, length = FLASH_PAGE_LEN

    /* Application uses internal RAM for data */
    /* RAM Size 16 KB */
    #ifdef ICALL_RAM0_START
        SRAM (RWX) : origin = RAM_APP_BASE, length = ICALL_RAM0_START - RAM_APP_BASE
    #else //default
        SRAM (RWX) : origin = RAM_APP_BASE, length = RAM_RESERVED_OFFSET
    #endif
}

/* Section allocation in memory */

SECTIONS
{
    .intvecs        :   >  FLASH_APP_BASE
    .text           :   >> FLASH | FLASH_LAST_PAGE
    .const          :   >> FLASH | FLASH_LAST_PAGE
    .constdata      :   >> FLASH | FLASH_LAST_PAGE
    .rodata         :   >> FLASH | FLASH_LAST_PAGE
    .cinit          :   >  FLASH | FLASH_LAST_PAGE
    .pinit          :   >> FLASH | FLASH_LAST_PAGE
    .init_array     :   >> FLASH | FLASH_LAST_PAGE
    .emb_text       :   >> FLASH | FLASH_LAST_PAGE
    .ccfg           :   >  FLASH_LAST_PAGE (HIGH)

	GROUP > SRAM
	{
	    .data
	    .bss
		.vtable
	    .vtable_ram
	     vtable_ram
	    .sysmem
    	.nonretenvar
	} LOAD_END(heapStart)

	.stack          :   >  SRAM (HIGH) LOAD_START(heapEnd)
}

/* Create global constant that points to top of stack */
/* CCS: Change stack size under Project Properties    */
__STACK_TOP = __stack + __STACK_SIZE;

/* Allow main() to take args */
--args 0x8

What would I do to fix the problem?

Thanks in advance!

  • From the error message it is not clear if your program is too large to fit in the available flash, or if the linker is failing to allocate space in the flash correctly.

    Can you post the linker .map file, as that shows the size of all the sections the linker is trying to allocate.

  • Hi Chester! Thanks for repling

    Yes, I don't know why is generating 2 .map's files. But here it is:

    mt8442_cc2650launchxl.map:

    ******************************************************************************
                      TI ARM Linker PC v5.2.6                      
    ******************************************************************************
    >> Linked Fri Dec 30 11:37:02 2016
    
    OUTPUT FILE NAME:   <mt8442_cc2650launchxl.out>
    ENTRY POINT SYMBOL: "ResetISR"  address: 0000c861
    
    
    MEMORY CONFIGURATION
    
             name            origin    length      used     unused   attr    fill
    ----------------------  --------  ---------  --------  --------  ----  --------
      FLASH                 00000000   0000f000  0000effa  00000006  R  X
      FLASH_LAST_PAGE       0001f000   00001000  00000d9a  00000266  R  X
      SRAM                  20000000   00004368  00002f94  000013d4  RW X
    
    
    SEGMENT ALLOCATION MAP
    
    run origin  load origin   length   init length attrs members
    ----------  ----------- ---------- ----------- ----- -------
    00000000    00000000    0000003c   0000003c    r--
      00000000    00000000    0000003c   0000003c    r-- .resetVecs
    00000000    00000000    00001734   00001734    r--
      00000000    00000000    00001734   00001734    r-- .const.1
    0000003c    0000003c    0000efc4   0000efc4    r-x
      0000003c    0000003c    000000c4   000000c4    r-x .text.1
      00000100    00000100    0000003c   0000003c    r-- .const:ti_sysbios_knl_Task_Object__PARAMS__C
      0000013c    0000013c    00000034   00000034    r-- .const:ti_sysbios_knl_Mailbox_Object__PARAMS__C
      00000170    00000170    00000030   00000030    r-- .const:ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C
      000001a0    000001a0    0000002c   0000002c    r-- .const:ti_sysbios_hal_Hwi_Object__PARAMS__C
      000001cc    000001cc    00000028   00000028    r-- .const:ti_sysbios_heaps_HeapMem_Module__FXNS__C
      000001f4    000001f4    00000028   00000028    r-- .const:ti_sysbios_knl_Swi_Object__PARAMS__C
      0000021c    0000021c    00000024   00000024    r-- .const:ti_sysbios_gates_GateHwi_Module__FXNS__C
      00000240    00000240    00000024   00000024    r-- .const:ti_sysbios_gates_GateMutex_Module__FXNS__C
      00000264    00000264    00000024   00000024    r-- .const:ti_sysbios_heaps_HeapMem_Object__PARAMS__C
      00000288    00000288    00000024   00000024    r-- .const:ti_sysbios_knl_Clock_Object__PARAMS__C
      000002ac    000002ac    00000024   00000024    r-- .const:ti_sysbios_knl_Semaphore_Object__PARAMS__C
      000002d0    000002d0    00000020   00000020    r-- .const:ti_sysbios_family_arm_m3_Hwi_Object__DESC__C
      000002f0    000002f0    00000020   00000020    r-- .const:ti_sysbios_gates_GateHwi_Object__DESC__C
      00000310    00000310    00000020   00000020    r-- .const:ti_sysbios_gates_GateMutex_Object__DESC__C
      00000330    00000330    00000020   00000020    r-- .const:ti_sysbios_hal_Hwi_Object__DESC__C
      00000350    00000350    00000020   00000020    r-- .const:ti_sysbios_heaps_HeapMem_Object__DESC__C
      00000370    00000370    00000020   00000020    r-- .const:ti_sysbios_knl_Clock_Object__DESC__C
      00000390    00000390    00000020   00000020    r-- .const:ti_sysbios_knl_Mailbox_Object__DESC__C
      000003b0    000003b0    00000020   00000020    r-- .const:ti_sysbios_knl_Queue_Object__DESC__C
      000003d0    000003d0    00000020   00000020    r-- .const:ti_sysbios_knl_Semaphore_Object__DESC__C
      000003f0    000003f0    00000020   00000020    r-- .const:ti_sysbios_knl_Swi_Object__DESC__C
      00000410    00000410    00000020   00000020    r-- .const:ti_sysbios_knl_Task_Object__DESC__C
      00000430    00000430    00000018   00000018    r-- .const:ti_sysbios_gates_GateHwi_Object__PARAMS__C
      00000448    00000448    00000018   00000018    r-- .const:ti_sysbios_gates_GateMutex_Object__PARAMS__C
      00000460    00000460    00000018   00000018    r-- .const:ti_sysbios_knl_Queue_Object__PARAMS__C
      00000478    00000478    00000008   00000008    r-- .const:ti_sysbios_knl_Idle_funcList__C
      00000480    00000480    00000004   00000004    r-x .text.2
      00000484    00000484    00000004   00000004    r-- .const:ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C
      00000488    00000488    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C
      0000048c    0000048c    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C
      00000490    00000490    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C
      00000494    00000494    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_Object__count__C
      00000498    00000498    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_Object__table__C
      0000049c    0000049c    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_ccr__C
      000004a0    000004a0    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C
      000004a4    000004a4    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C
      000004a8    000004a8    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C
      000004ac    000004ac    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_priGroup__C
      000004b0    000004b0    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C
      000004b4    000004b4    00000004   00000004    r-- .const:ti_sysbios_heaps_HeapMem_E_memory__C
      000004b8    000004b8    00000004   00000004    r-- .const:ti_sysbios_heaps_HeapMem_Module__gateObj__C
      000004bc    000004bc    00000004   00000004    r-- .const:ti_sysbios_heaps_HeapMem_Object__count__C
      000004c0    000004c0    00000004   00000004    r-- .const:ti_sysbios_heaps_HeapMem_Object__table__C
      000004c4    000004c4    00000004   00000004    r-- .const:ti_sysbios_heaps_HeapMem_reqAlign__C
      000004c8    000004c8    00000004   00000004    r-- .const:ti_sysbios_knl_Clock_serviceMargin__C
      000004cc    000004cc    00000004   00000004    r-- .const:ti_sysbios_knl_Mailbox_Object__count__C
      000004d0    000004d0    00000004   00000004    r-- .const:ti_sysbios_knl_Mailbox_Object__table__C
      000004d4    000004d4    00000004   00000004    r-- .const:ti_sysbios_knl_Queue_Object__count__C
      000004d8    000004d8    00000004   00000004    r-- .const:ti_sysbios_knl_Queue_Object__table__C
      000004dc    000004dc    00000004   00000004    r-- .const:ti_sysbios_knl_Swi_Object__count__C
      000004e0    000004e0    00000004   00000004    r-- .const:ti_sysbios_knl_Swi_Object__table__C
      000004e4    000004e4    00000004   00000004    r-- .const:ti_sysbios_knl_Swi_numPriorities__C
      000004e8    000004e8    00000004   00000004    r-- .const:ti_sysbios_knl_Task_Object__count__C
      000004ec    000004ec    00000004   00000004    r-- .const:ti_sysbios_knl_Task_Object__table__C
      000004f0    000004f0    00000004   00000004    r-- .const:ti_sysbios_knl_Task_allBlockedFunc__C
      000004f4    000004f4    00000004   00000004    r-- .const:ti_sysbios_knl_Task_defaultStackHeap__C
      000004f8    000004f8    00000004   00000004    r-- .const:ti_sysbios_knl_Task_defaultStackSize__C
      000004fc    000004fc    00000004   00000004    r-- .const:ti_sysbios_knl_Task_numConstructedTasks__C
      00000500    00000500    00000002   00000002    r-x .text.3
      00000502    00000502    00000002   00000002    r-- .const:ti_sysbios_family_arm_cc26xx_Timer_Module__id__C
      00000504    00000504    00000002   00000002    r-- .const:ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C
      00000506    00000506    00000002   00000002    r-- .const:ti_sysbios_family_arm_m3_Hwi_Module__id__C
      00000508    00000508    00000002   00000002    r-- .const:ti_sysbios_gates_GateHwi_Module__id__C
      0000050a    0000050a    00000002   00000002    r-- .const:ti_sysbios_gates_GateMutex_Module__id__C
      0000050c    0000050c    00000002   00000002    r-- .const:ti_sysbios_heaps_HeapMem_Module__id__C
      0000050e    0000050e    00000002   00000002    r-- .const:ti_sysbios_knl_Task_initStackFlag__C
      00000510    00000510    00000001   00000001    r-- .const:ti_sysbios_knl_Clock_tickMode__C
      00000514    00000514    00000008   00000008    r-- .const:xdc_runtime_Startup_firstFxns__C
      0000051c    0000051c    00000008   00000008    r-- .const:xdc_runtime_Startup_lastFxns__C
      00000524    00000524    00000004   00000004    r-- .const:xdc_runtime_Assert_E_assertFailed__C
      00000528    00000528    00000004   00000004    r-- .const:xdc_runtime_Error_E_memory__C
      0000052c    0000052c    00000004   00000004    r-- .const:xdc_runtime_Error_policyFxn__C
      00000530    00000530    00000004   00000004    r-- .const:xdc_runtime_IGateProvider_Interface__BASE__C
      00000534    00000534    00000004   00000004    r-- .const:xdc_runtime_IHeap_Interface__BASE__C
      00000538    00000538    00000004   00000004    r-- .const:xdc_runtime_IModule_Interface__BASE__C
      0000053c    0000053c    00000004   00000004    r-- .const:xdc_runtime_Main_Module__diagsEnabled__C
      00000540    00000540    00000004   00000004    r-- .const:xdc_runtime_Main_Module__diagsIncluded__C
      00000544    00000544    00000004   00000004    r-- .const:xdc_runtime_Main_Module__diagsMask__C
      00000548    00000548    00000004   00000004    r-- .const:xdc_runtime_Memory_defaultHeapInstance__C
      0000054c    0000054c    00000004   00000004    r-- .const:xdc_runtime_Startup_execImpl__C
      00000550    00000550    00000004   00000004    r-- .const:xdc_runtime_Startup_maxPasses__C
      00000554    00000554    00000004   00000004    r-- .const:xdc_runtime_Startup_sfxnRts__C
      00000558    00000558    00000004   00000004    r-- .const:xdc_runtime_Startup_sfxnTab__C
      0000055c    0000055c    00000004   00000004    r-- .const:xdc_runtime_Startup_startModsFxn__C
      00000560    00000560    00000004   00000004    r-- .const:xdc_runtime_SysCallback_abortFxn__C
      00000564    00000564    00000004   00000004    r-- .const:xdc_runtime_SysCallback_exitFxn__C
      00000568    00000568    00000004   00000004    r-- .const:xdc_runtime_System_abortFxn__C
      0000056c    0000056c    00000004   00000004    r-- .const:xdc_runtime_System_exitFxn__C
      00000570    00000570    00000004   00000004    r-- .const:xdc_runtime_System_maxAtexitHandlers__C
      00000574    00000574    00000004   00000004    r-- .const:xdc_runtime_Text_charTab__C
      00000578    00000578    00000004   00000004    r-- .const:xdc_runtime_Text_nameEmpty__C
      0000057c    0000057c    00000004   00000004    r-- .const:xdc_runtime_Text_nameStatic__C
      00000580    00000580    00000004   00000004    r-- .const:xdc_runtime_Text_nameUnknown__C
      00000584    00000584    00000002   00000002    r-- .const:xdc_runtime_Main_Module__id__C
      00000586    00000586    00000002   00000002    r-- .const:xdc_runtime_Memory_Module__id__C
      00000588    00000588    00000002   00000002    r-- .const:xdc_runtime_Text_charCnt__C
      0000058a    0000058a    00000002   00000002    r-- .const:xdc_runtime_Text_isLoaded__C
      0000058c    0000058c    00000001   00000001    r-- .const:xdc_runtime_Error_policy__C
      00000590    00000590    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_AONRTCChannelEnable
      00000594    00000594    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_AONRTCCompareValueSet
      00000598    00000598    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_AONRTCCurrentCompareValueGet
      0000059c    0000059c    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_AONRTCEventClear
      000005a0    000005a0    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E
      000005a4    000005a4    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E
      000005a8    000005a8    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E
      000005ac    000005ac    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_initDevice__I
      000005b0    000005b0    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E
      000005b4    000005b4    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I
      000005b8    000005b8    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_start__E
      000005bc    000005bc    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E
      000005c0    000005c0    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_xdc_runtime_Startup_getState__I
      000005c4    000005c4    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_abort__E
      000005c8    000005c8    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_exit__E
      000005cc    000005cc    00000004   00000004    r-- .const:ti_sysbios_gates_GateMutex_Instance_State_sem__O
      000005d0    000005d0    00000004   00000004    r-- .const:ti_sysbios_knl_Clock_Module_State_clockQ__O
      000005d4    000005d4    00000004   00000004    r-- .const:ti_sysbios_knl_Mailbox_Instance_State_dataQue__O
      000005d8    000005d8    00000004   00000004    r-- .const:ti_sysbios_knl_Mailbox_Instance_State_dataSem__O
      000005dc    000005dc    00000004   00000004    r-- .const:ti_sysbios_knl_Mailbox_Instance_State_freeQue__O
      000005e0    000005e0    00000004   00000004    r-- .const:ti_sysbios_knl_Mailbox_Instance_State_freeSem__O
      000005e4    000005e4    00000004   00000004    r-- .const:ti_sysbios_knl_Semaphore_Instance_State_pendQ__O
      000005e8    000005e8    00000004   00000004    r-- .const:ti_sysbios_knl_Task_Module_State_inactiveQ__O
      000005ec    000005ec    0000ea14   0000ea14    r-x .text.4
    0001f000    0001f000    0000074a   0000074a    r-x
      0001f000    0001f000    000001a8   000001a8    r-x .text.5
      0001f1a8    0001f1a8    000005a2   000005a2    r-- .const.2
    0001f74c    0001f74c    00000008   00000008    rw-
      0001f74c    0001f74c    00000008   00000008    rw- .args
    0001f758    0001f758    000005f0   000005f0    r--
      0001f758    0001f758    000005f0   000005f0    r-- .cinit
    0001ffa8    0001ffa8    00000058   00000058    r--
      0001ffa8    0001ffa8    00000058   00000058    r-- .ccfg
    20000000    20000000    000000c8   00000000    rw-
      20000000    20000000    000000c8   00000000    rw- .vecs
    20000100    20000100    00000104   00000000    rw-
      20000100    20000100    00000044   00000000    rw- .data:ti_sysbios_knl_Task_Module__state__V
      20000144    20000144    00000034   00000000    rw- .data:ti_sysbios_family_arm_m3_Hwi_Module__state__V
      20000178    20000178    0000002c   00000000    rw- .data:ti_sysbios_knl_Clock_Module__state__V
      200001a4    200001a4    00000024   00000000    rw- .data:ti_sysbios_BIOS_Module__state__V
      200001c8    200001c8    0000001c   00000000    rw- .data:ti_sysbios_knl_Swi_Module__state__V
      200001e4    200001e4    00000008   00000000    rw- .data:ti_sysbios_family_arm_cc26xx_Timer_Module__state__V
      200001ec    200001ec    00000004   00000000    rw- .data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V
      200001f0    200001f0    00000008   00000000    rw- .data:xdc_runtime_Startup_Module__state__V
      200001f8    200001f8    00000008   00000000    rw- .data:xdc_runtime_System_Module__state__V
      20000200    20000200    00000004   00000000    rw- .data:xdc_runtime_Memory_Module__state__V
    20000300    20000300    000028da   00000000    rw-
      20000300    20000300    000019c2   00000000    rw- .data
      20001cc8    20001cc8    00000f12   00000000    rw- .bss
    20002c00    20002c00    000000c8   00000000    rw-
      20002c00    20002c00    000000c8   00000000    rw- .vtable_ram
    20003f68    20003f68    00000400   00000000    rw-
      20003f68    20003f68    00000400   00000000    rw- .stack
    
    
    SECTION ALLOCATION MAP
    
     output                                  attributes/
    section   page    origin      length       input sections
    --------  ----  ----------  ----------   ----------------
    .resetVecs 
    *          0    00000000    0000003c     
                      00000000    0000003c     app_ble_uartlog_pem3.oem3 (.resetVecs)
    
    .const.1   0    00000000    00001734     FAILED TO ALLOCATE
    .text.1    0    0000003c    000000c4     
                      0000003c    000000b8     button_service.obj (.text:ButtonService_RegisterAppCBs)
                      000000f4    0000000c     drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:FsmNextState)
    
    .const:ti_sysbios_knl_Task_Object__PARAMS__C 
    *          0    00000100    0000003c     
                      00000100    0000003c     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Task_Object__PARAMS__C)
    
    .const:ti_sysbios_knl_Mailbox_Object__PARAMS__C 
    *          0    0000013c    00000034     
                      0000013c    00000034     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Object__PARAMS__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C 
    *          0    00000170    00000030     
                      00000170    00000030     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C)
    
    .const:ti_sysbios_hal_Hwi_Object__PARAMS__C 
    *          0    000001a0    0000002c     
                      000001a0    0000002c     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_hal_Hwi_Object__PARAMS__C)
    
    .const:ti_sysbios_heaps_HeapMem_Module__FXNS__C 
    *          0    000001cc    00000028     
                      000001cc    00000028     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Module__FXNS__C)
    
    .const:ti_sysbios_knl_Swi_Object__PARAMS__C 
    *          0    000001f4    00000028     
                      000001f4    00000028     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Swi_Object__PARAMS__C)
    
    .const:ti_sysbios_gates_GateHwi_Module__FXNS__C 
    *          0    0000021c    00000024     
                      0000021c    00000024     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_gates_GateHwi_Module__FXNS__C)
    
    .const:ti_sysbios_gates_GateMutex_Module__FXNS__C 
    *          0    00000240    00000024     
                      00000240    00000024     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Module__FXNS__C)
    
    .const:ti_sysbios_heaps_HeapMem_Object__PARAMS__C 
    *          0    00000264    00000024     
                      00000264    00000024     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Object__PARAMS__C)
    
    .const:ti_sysbios_knl_Clock_Object__PARAMS__C 
    *          0    00000288    00000024     
                      00000288    00000024     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Clock_Object__PARAMS__C)
    
    .const:ti_sysbios_knl_Semaphore_Object__PARAMS__C 
    *          0    000002ac    00000024     
                      000002ac    00000024     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Semaphore_Object__PARAMS__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_Object__DESC__C 
    *          0    000002d0    00000020     
                      000002d0    00000020     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Object__DESC__C)
    
    .const:ti_sysbios_gates_GateHwi_Object__DESC__C 
    *          0    000002f0    00000020     
                      000002f0    00000020     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_gates_GateHwi_Object__DESC__C)
    
    .const:ti_sysbios_gates_GateMutex_Object__DESC__C 
    *          0    00000310    00000020     
                      00000310    00000020     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Object__DESC__C)
    
    .const:ti_sysbios_hal_Hwi_Object__DESC__C 
    *          0    00000330    00000020     
                      00000330    00000020     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_hal_Hwi_Object__DESC__C)
    
    .const:ti_sysbios_heaps_HeapMem_Object__DESC__C 
    *          0    00000350    00000020     
                      00000350    00000020     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Object__DESC__C)
    
    .const:ti_sysbios_knl_Clock_Object__DESC__C 
    *          0    00000370    00000020     
                      00000370    00000020     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Clock_Object__DESC__C)
    
    .const:ti_sysbios_knl_Mailbox_Object__DESC__C 
    *          0    00000390    00000020     
                      00000390    00000020     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Object__DESC__C)
    
    .const:ti_sysbios_knl_Queue_Object__DESC__C 
    *          0    000003b0    00000020     
                      000003b0    00000020     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Queue_Object__DESC__C)
    
    .const:ti_sysbios_knl_Semaphore_Object__DESC__C 
    *          0    000003d0    00000020     
                      000003d0    00000020     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Semaphore_Object__DESC__C)
    
    .const:ti_sysbios_knl_Swi_Object__DESC__C 
    *          0    000003f0    00000020     
                      000003f0    00000020     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Swi_Object__DESC__C)
    
    .const:ti_sysbios_knl_Task_Object__DESC__C 
    *          0    00000410    00000020     
                      00000410    00000020     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Task_Object__DESC__C)
    
    .const:ti_sysbios_gates_GateHwi_Object__PARAMS__C 
    *          0    00000430    00000018     
                      00000430    00000018     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_gates_GateHwi_Object__PARAMS__C)
    
    .const:ti_sysbios_gates_GateMutex_Object__PARAMS__C 
    *          0    00000448    00000018     
                      00000448    00000018     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Object__PARAMS__C)
    
    .const:ti_sysbios_knl_Queue_Object__PARAMS__C 
    *          0    00000460    00000018     
                      00000460    00000018     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Queue_Object__PARAMS__C)
    
    .const:ti_sysbios_knl_Idle_funcList__C 
    *          0    00000478    00000008     
                      00000478    00000008     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Idle_funcList__C)
    
    .text.2    0    00000480    00000004     
                      00000480    00000004     icall_api.obj (.text:GATTServApp_AddService)
    
    .const:ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C 
    *          0    00000484    00000004     
                      00000484    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C 
    *          0    00000488    00000004     
                      00000488    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C 
    *          0    0000048c    00000004     
                      0000048c    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C 
    *          0    00000490    00000004     
                      00000490    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_Object__count__C 
    *          0    00000494    00000004     
                      00000494    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Object__count__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_Object__table__C 
    *          0    00000498    00000004     
                      00000498    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Object__table__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_ccr__C 
    *          0    0000049c    00000004     
                      0000049c    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_ccr__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C 
    *          0    000004a0    00000004     
                      000004a0    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C 
    *          0    000004a4    00000004     
                      000004a4    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C 
    *          0    000004a8    00000004     
                      000004a8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_priGroup__C 
    *          0    000004ac    00000004     
                      000004ac    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_priGroup__C)
    
    .const:ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C 
    *          0    000004b0    00000004     
                      000004b0    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C)
    
    .const:ti_sysbios_heaps_HeapMem_E_memory__C 
    *          0    000004b4    00000004     
                      000004b4    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_E_memory__C)
    
    .const:ti_sysbios_heaps_HeapMem_Module__gateObj__C 
    *          0    000004b8    00000004     
                      000004b8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Module__gateObj__C)
    
    .const:ti_sysbios_heaps_HeapMem_Object__count__C 
    *          0    000004bc    00000004     
                      000004bc    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Object__count__C)
    
    .const:ti_sysbios_heaps_HeapMem_Object__table__C 
    *          0    000004c0    00000004     
                      000004c0    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Object__table__C)
    
    .const:ti_sysbios_heaps_HeapMem_reqAlign__C 
    *          0    000004c4    00000004     
                      000004c4    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_reqAlign__C)
    
    .const:ti_sysbios_knl_Clock_serviceMargin__C 
    *          0    000004c8    00000004     
                      000004c8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Clock_serviceMargin__C)
    
    .const:ti_sysbios_knl_Mailbox_Object__count__C 
    *          0    000004cc    00000004     
                      000004cc    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Object__count__C)
    
    .const:ti_sysbios_knl_Mailbox_Object__table__C 
    *          0    000004d0    00000004     
                      000004d0    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Object__table__C)
    
    .const:ti_sysbios_knl_Queue_Object__count__C 
    *          0    000004d4    00000004     
                      000004d4    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Queue_Object__count__C)
    
    .const:ti_sysbios_knl_Queue_Object__table__C 
    *          0    000004d8    00000004     
                      000004d8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Queue_Object__table__C)
    
    .const:ti_sysbios_knl_Swi_Object__count__C 
    *          0    000004dc    00000004     
                      000004dc    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Swi_Object__count__C)
    
    .const:ti_sysbios_knl_Swi_Object__table__C 
    *          0    000004e0    00000004     
                      000004e0    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Swi_Object__table__C)
    
    .const:ti_sysbios_knl_Swi_numPriorities__C 
    *          0    000004e4    00000004     
                      000004e4    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Swi_numPriorities__C)
    
    .const:ti_sysbios_knl_Task_Object__count__C 
    *          0    000004e8    00000004     
                      000004e8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Task_Object__count__C)
    
    .const:ti_sysbios_knl_Task_Object__table__C 
    *          0    000004ec    00000004     
                      000004ec    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Task_Object__table__C)
    
    .const:ti_sysbios_knl_Task_allBlockedFunc__C 
    *          0    000004f0    00000004     
                      000004f0    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Task_allBlockedFunc__C)
    
    .const:ti_sysbios_knl_Task_defaultStackHeap__C 
    *          0    000004f4    00000004     
                      000004f4    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Task_defaultStackHeap__C)
    
    .const:ti_sysbios_knl_Task_defaultStackSize__C 
    *          0    000004f8    00000004     
                      000004f8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Task_defaultStackSize__C)
    
    .const:ti_sysbios_knl_Task_numConstructedTasks__C 
    *          0    000004fc    00000004     
                      000004fc    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Task_numConstructedTasks__C)
    
    .text.3    0    00000500    00000002     
                      00000500    00000002     ble_user_config.obj (.text:DefaultAssertCback)
    
    .const:ti_sysbios_family_arm_cc26xx_Timer_Module__id__C 
    *          0    00000502    00000002     
                      00000502    00000002     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_cc26xx_Timer_Module__id__C)
    
    .const:ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C 
    *          0    00000504    00000002     
                      00000504    00000002     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_Module__id__C 
    *          0    00000506    00000002     
                      00000506    00000002     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Module__id__C)
    
    .const:ti_sysbios_gates_GateHwi_Module__id__C 
    *          0    00000508    00000002     
                      00000508    00000002     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_gates_GateHwi_Module__id__C)
    
    .const:ti_sysbios_gates_GateMutex_Module__id__C 
    *          0    0000050a    00000002     
                      0000050a    00000002     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Module__id__C)
    
    .const:ti_sysbios_heaps_HeapMem_Module__id__C 
    *          0    0000050c    00000002     
                      0000050c    00000002     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Module__id__C)
    
    .const:ti_sysbios_knl_Task_initStackFlag__C 
    *          0    0000050e    00000002     
                      0000050e    00000002     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Task_initStackFlag__C)
    
    .const:ti_sysbios_knl_Clock_tickMode__C 
    *          0    00000510    00000001     
                      00000510    00000001     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Clock_tickMode__C)
    
    .const:xdc_runtime_Startup_firstFxns__C 
    *          0    00000514    00000008     
                      00000514    00000008     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Startup_firstFxns__C)
    
    .const:xdc_runtime_Startup_lastFxns__C 
    *          0    0000051c    00000008     
                      0000051c    00000008     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Startup_lastFxns__C)
    
    .const:xdc_runtime_Assert_E_assertFailed__C 
    *          0    00000524    00000004     
                      00000524    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Assert_E_assertFailed__C)
    
    .const:xdc_runtime_Error_E_memory__C 
    *          0    00000528    00000004     
                      00000528    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Error_E_memory__C)
    
    .const:xdc_runtime_Error_policyFxn__C 
    *          0    0000052c    00000004     
                      0000052c    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Error_policyFxn__C)
    
    .const:xdc_runtime_IGateProvider_Interface__BASE__C 
    *          0    00000530    00000004     
                      00000530    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_IGateProvider_Interface__BASE__C)
    
    .const:xdc_runtime_IHeap_Interface__BASE__C 
    *          0    00000534    00000004     
                      00000534    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_IHeap_Interface__BASE__C)
    
    .const:xdc_runtime_IModule_Interface__BASE__C 
    *          0    00000538    00000004     
                      00000538    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_IModule_Interface__BASE__C)
    
    .const:xdc_runtime_Main_Module__diagsEnabled__C 
    *          0    0000053c    00000004     
                      0000053c    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Main_Module__diagsEnabled__C)
    
    .const:xdc_runtime_Main_Module__diagsIncluded__C 
    *          0    00000540    00000004     
                      00000540    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Main_Module__diagsIncluded__C)
    
    .const:xdc_runtime_Main_Module__diagsMask__C 
    *          0    00000544    00000004     
                      00000544    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Main_Module__diagsMask__C)
    
    .const:xdc_runtime_Memory_defaultHeapInstance__C 
    *          0    00000548    00000004     
                      00000548    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Memory_defaultHeapInstance__C)
    
    .const:xdc_runtime_Startup_execImpl__C 
    *          0    0000054c    00000004     
                      0000054c    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Startup_execImpl__C)
    
    .const:xdc_runtime_Startup_maxPasses__C 
    *          0    00000550    00000004     
                      00000550    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Startup_maxPasses__C)
    
    .const:xdc_runtime_Startup_sfxnRts__C 
    *          0    00000554    00000004     
                      00000554    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Startup_sfxnRts__C)
    
    .const:xdc_runtime_Startup_sfxnTab__C 
    *          0    00000558    00000004     
                      00000558    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Startup_sfxnTab__C)
    
    .const:xdc_runtime_Startup_startModsFxn__C 
    *          0    0000055c    00000004     
                      0000055c    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Startup_startModsFxn__C)
    
    .const:xdc_runtime_SysCallback_abortFxn__C 
    *          0    00000560    00000004     
                      00000560    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_SysCallback_abortFxn__C)
    
    .const:xdc_runtime_SysCallback_exitFxn__C 
    *          0    00000564    00000004     
                      00000564    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_SysCallback_exitFxn__C)
    
    .const:xdc_runtime_System_abortFxn__C 
    *          0    00000568    00000004     
                      00000568    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_System_abortFxn__C)
    
    .const:xdc_runtime_System_exitFxn__C 
    *          0    0000056c    00000004     
                      0000056c    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_System_exitFxn__C)
    
    .const:xdc_runtime_System_maxAtexitHandlers__C 
    *          0    00000570    00000004     
                      00000570    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_System_maxAtexitHandlers__C)
    
    .const:xdc_runtime_Text_charTab__C 
    *          0    00000574    00000004     
                      00000574    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Text_charTab__C)
    
    .const:xdc_runtime_Text_nameEmpty__C 
    *          0    00000578    00000004     
                      00000578    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Text_nameEmpty__C)
    
    .const:xdc_runtime_Text_nameStatic__C 
    *          0    0000057c    00000004     
                      0000057c    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Text_nameStatic__C)
    
    .const:xdc_runtime_Text_nameUnknown__C 
    *          0    00000580    00000004     
                      00000580    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Text_nameUnknown__C)
    
    .const:xdc_runtime_Main_Module__id__C 
    *          0    00000584    00000002     
                      00000584    00000002     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Main_Module__id__C)
    
    .const:xdc_runtime_Memory_Module__id__C 
    *          0    00000586    00000002     
                      00000586    00000002     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Memory_Module__id__C)
    
    .const:xdc_runtime_Text_charCnt__C 
    *          0    00000588    00000002     
                      00000588    00000002     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Text_charCnt__C)
    
    .const:xdc_runtime_Text_isLoaded__C 
    *          0    0000058a    00000002     
                      0000058a    00000002     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Text_isLoaded__C)
    
    .const:xdc_runtime_Error_policy__C 
    *          0    0000058c    00000001     
                      0000058c    00000001     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Error_policy__C)
    
    .const:ti_sysbios_rom_ROM_AONRTCChannelEnable 
    *          0    00000590    00000004     
                      00000590    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_AONRTCChannelEnable)
    
    .const:ti_sysbios_rom_ROM_AONRTCCompareValueSet 
    *          0    00000594    00000004     
                      00000594    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_AONRTCCompareValueSet)
    
    .const:ti_sysbios_rom_ROM_AONRTCCurrentCompareValueGet 
    *          0    00000598    00000004     
                      00000598    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_AONRTCCurrentCompareValueGet)
    
    .const:ti_sysbios_rom_ROM_AONRTCEventClear 
    *          0    0000059c    00000004     
                      0000059c    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_AONRTCEventClear)
    
    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E 
    *          0    000005a0    00000004     
                      000005a0    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E)
    
    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E 
    *          0    000005a4    00000004     
                      000005a4    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E)
    
    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E 
    *          0    000005a8    00000004     
                      000005a8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E)
    
    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_initDevice__I 
    *          0    000005ac    00000004     
                      000005ac    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_initDevice__I)
    
    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E 
    *          0    000005b0    00000004     
                      000005b0    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E)
    
    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I 
    *          0    000005b4    00000004     
                      000005b4    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I)
    
    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_start__E 
    *          0    000005b8    00000004     
                      000005b8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_start__E)
    
    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E 
    *          0    000005bc    00000004     
                      000005bc    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E)
    
    .const:ti_sysbios_rom_ROM_xdc_runtime_Startup_getState__I 
    *          0    000005c0    00000004     
                      000005c0    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_xdc_runtime_Startup_getState__I)
    
    .const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_abort__E 
    *          0    000005c4    00000004     
                      000005c4    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_abort__E)
    
    .const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_exit__E 
    *          0    000005c8    00000004     
                      000005c8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_exit__E)
    
    .const:ti_sysbios_gates_GateMutex_Instance_State_sem__O 
    *          0    000005cc    00000004     
                      000005cc    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Instance_State_sem__O)
    
    .const:ti_sysbios_knl_Clock_Module_State_clockQ__O 
    *          0    000005d0    00000004     
                      000005d0    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Clock_Module_State_clockQ__O)
    
    .const:ti_sysbios_knl_Mailbox_Instance_State_dataQue__O 
    *          0    000005d4    00000004     
                      000005d4    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Instance_State_dataQue__O)
    
    .const:ti_sysbios_knl_Mailbox_Instance_State_dataSem__O 
    *          0    000005d8    00000004     
                      000005d8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Instance_State_dataSem__O)
    
    .const:ti_sysbios_knl_Mailbox_Instance_State_freeQue__O 
    *          0    000005dc    00000004     
                      000005dc    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Instance_State_freeQue__O)
    
    .const:ti_sysbios_knl_Mailbox_Instance_State_freeSem__O 
    *          0    000005e0    00000004     
                      000005e0    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Instance_State_freeSem__O)
    
    .const:ti_sysbios_knl_Semaphore_Instance_State_pendQ__O 
    *          0    000005e4    00000004     
                      000005e4    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Semaphore_Instance_State_pendQ__O)
    
    .const:ti_sysbios_knl_Task_Module_State_inactiveQ__O 
    *          0    000005e8    00000004     
                      000005e8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Task_Module_State_inactiveQ__O)
    
    .text.4    0    000005ec    0000ea14     
                      000005ec    000004f8     project_zero.obj (.text:ProjectZero_init$1)
                      00000ae4    00000424     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excDumpRegs__I)
                      00000f08    000003ec     data_service.obj (.text:Data_Service_WriteAttrCB$10)
                      000012f4    000003d8     display_balanza.obj (.text:display_balanza_init)
                      000016cc    000003d4     driverlib.lib : setup.obj (.text:HapiTrimDeviceShutDown$29)
                      00001aa0    00000344     data_service.obj (.text:DataService_SetParameter)
                      00001de4    00000338     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_System_doPrint__I)
                      0000211c    00000334     drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                      00002450    00000328     button_service.obj (.text:ButtonService_SetParameter)
                      00002778    0000031c     drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:fsmActiveState)
                      00002a94    00000310     led_service.obj (.text:LED_Service_WriteAttrCB$14)
                      00002da4    000002b8     project_zero.obj (.text:user_processApplicationMessage$1)
                      0000305c    000002b4     project_zero.obj (.text:user_processGapStateChangeEvt$1)
                      00003310    000002a4     project_zero.obj (.text:conversion_mt8442_ext_hex)
                      000035b4    00000278     drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                      0000382c    00000244     project_zero.obj (.text:ProjectZero_processGATTMsg$1)
                      00003a70    00000240     button_service.obj (.text:Button_Service_ReadAttrCB$9)
                      00003cb0    0000023c     data_service.obj (.text:Data_Service_ReadAttrCB$10)
                      00003eec    0000023c     peripheral.obj (.text:GAPRole_SetParameter)
                      00004128    0000023c     led_service.obj (.text:LED_Service_ReadAttrCB$14)
                      00004364    0000023c     peripheral.obj (.text:gapRole_processGAPMsg$15)
                      000045a0    00000234     project_zero.obj (.text:user_LedService_ValueChangeHandler$1)
                      000047d4    00000228     drivers_cc26xxware_instrumented.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
                      000049fc    00000224                                          : RF.oem3 (.text:abortCmd)
                      00004c20    0000021c     led_service.obj (.text:LedService_SetParameter)
                      00004e3c    00000214     drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:RF_postCmd)
                      00005050    00000204     driverlib.lib : sys_ctrl.obj (.text:SysCtrlSetRechargeBeforePowerDown)
                      00005254    000001f4     rtsv7M3_T_le_eabi.lib : ull_div_t2.obj (.text)
                      00005448    000001e0     drivers_cc26xxware_instrumented.aem3 : PINCC26XX.oem3 (.text:PIN_init)
                      00005628    000001e0                                          : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                      00005808    000001d4     app_ble_uartlog_pem3.oem3 (.text:xdc_runtime_System_printfExtend__I)
                      000059dc    000001d0     button_service.obj (.text:Button_Service_WriteAttrCB$9)
                      00005bac    000001d0     drivers_cc26xxware_instrumented.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:calibrateRcoscHf1)
                      00005d7c    000001b6     rtsv7M3_T_le_eabi.lib : fd_add_t2.obj (.text)
                      00005f32    00000002     driverlib.lib : rfc.obj (.text:NOROM_RFCRTrim)
                      00005f34    000001a0     project_zero.obj (.text:user_gapBondMgr_pairStateCB$1)
                      000060d4    0000019c     display_balanza.obj (.text:display_hex2int)
                      00006270    00000186     project_zero.obj (.text:conversion_mt8442_hex)
                      000063f6    00000002     drivers_cc26xxware_instrumented.aem3 : PowerCC26XX.oem3 (.text:emptyClockFunc)
                      000063f8    00000180                                          : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_doCalibrate)
                      00006578    00000178     project_zero.obj (.text:ProjectZero_freeAttRsp$1)
                      000066f0    0000016c     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excBusFault__I)
                      0000685c    0000016c     project_zero.obj (.text:user_ButtonService_CfgChangeHandler$1)
                      000069c8    00000160     drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_hwiIntFxn)
                      00006b28    0000015c     display_balanza.obj (.text:display_getPesoPrecio)
                      00006c84    00000158     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excUsageFault__I)
                      00006ddc    00000158     uart_logs.obj (.text:uartLog_doPrint$18)
                      00006f34    00000154     drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_initHw)
                      00007088    00000140     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excMemFault__I)
                      000071c8    0000013c     project_zero.obj (.text:user_DataService_ValueChangeHandler$1)
                      00007304    00000134     drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:rf_init)
                      00007438    00000128                                          : RF.oem3 (.text:fsmSetupState)
                      00007560    00000120     peripheral.obj (.text:GAPRole_GetParameter)
                      00007680    0000011c     display_balanza.obj (.text:display_balanza_HIFxn$0)
                      0000779c    0000011c     project_zero.obj (.text:user_DataService_CfgChangeHandler$1)
                      000078b8    0000011c     drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.text:writeFinishedDoCallback)
                      000079d4    00000118                                          : PowerCC26XX.oem3 (.text:Power_init)
                      00007aec    00000118                                          : UARTCC26XX.oem3 (.text:UARTCC26XX_writeCancel)
                      00007c04    00000118                                          : RF.oem3 (.text:hwiFxnCpe0Active)
                      00007d1c    00000114                                          : PowerCC26XX.oem3 (.text:Power_releaseDependency)
                      00007e30    00000114                                          : RF.oem3 (.text:RF_close)
                      00007f44    00000100     project_zero.obj (.text:user_handleButtonPress$1)
                      00008044    000000fc     drivers_cc26xxware_instrumented.aem3 : PowerCC26XX.oem3 (.text:Power_setDependency)
                      00008140    000000fc     display_balanza.obj (.text:display_balanza_createTask)
                      0000823c    000000fc     peripheral.obj (.text:gapRole_taskFxn$15)
                      00008338    000000fc     rtsv7M3_T_le_eabi.lib : fd_mul_t2.obj (.text)
                      00008434    000000fc     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excFillContext__I)
                      00008530    000000fa     rtsv7M3_T_le_eabi.lib : fs_add_t2.obj (.text)
                      0000862a    00000002                           : i_div0.obj (.text)
                      0000862c    000000f8     project_zero.obj (.text:ProjectZero_sendAttRsp$1)
                      00008724    000000f8     drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_readCancel)
                      0000881c    000000f4     project_zero.obj (.text:user_service_ValueChangeCB$1)
                      00008910    000000f0     project_zero.obj (.text:user_service_CfgChangeCB$1)
                      00008a00    000000ec     icall.obj (.text:ICall_primWaitMatch$5)
                      00008aec    000000ec     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excHandlerMax__I)
                      00008bd8    000000e8     drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:RF_pendCmd)
                      00008cc0    000000e0     button_service.obj (.text:ButtonService_AddService)
                      00008da0    000000e0     drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_close)
                      00008e80    000000d8                                          : RF.oem3 (.text:RF_open)
                      00008f58    000000d8     project_zero.obj (.text:buttonCallbackFxn$1)
                      00009030    000000d4     drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_swiIntFxn)
                      00009104    000000cc                                          : UARTCC26XX.oem3 (.text:readData)
                      000091d0    000000cc                                          : UARTCC26XX.oem3 (.text:writeData)
                      0000929c    000000c8     data_service.obj (.text:DataService_AddService)
                      00009364    000000c4     drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:fsmPowerUpState)
                      00009428    000000c0     display_balanza.obj (.text:display_balanza_taskFxn)
                      000094e8    000000bc     power_cc26xx_tirtos_instrumented.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
                      000095a4    000000b8     drivers_cc26xxware_instrumented.aem3 : PINCC26XX.oem3 (.text:PINCC26XX_setIoCfg)
                      0000965c    000000b8     project_zero.obj (.text:ProjectZero_processStackMsg$1)
                      00009714    000000b8     project_zero.obj (.text:user_gapStateChangeCB$1)
                      000097cc    000000b4     led_service.obj (.text:LedService_RegisterAppCBs)
                      00009880    000000b4     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excDebugMon__I)
                      00009934    000000b4                      : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excHardFault__I)
                      000099e8    000000b0     data_service.obj (.text:DataService_RegisterAppCBs)
                      00009a98    000000b0     devinfoservice.obj (.text:devInfo_ReadAttrCB$11)
                      00009b48    000000ac     led_service.obj (.text:LedService_AddService)
                      00009bf4    000000ac     drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:swiFxnHw)
                      00009ca0    000000a8                                          : RF.oem3 (.text:RF_ratCapture)
                      00009d48    000000a0     auto_init.aem3 : auto_init.oem3 (.text)
                      00009de8    000000a0     driverlib.lib : setup.obj (.text:trimDevice)
                      00009e88    0000009c     display_balanza.obj (.text:display_balanza_getData)
                      00009f24    0000009c     rtsv7M3_T_le_eabi.lib : memcpy_t2.obj (.text)
                      00009fc0    0000009a     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_putSite__E)
                      0000a05a    00000002     app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_nullFunc__I)
                      0000a05c    00000098     gattservapp_util.obj (.text:GATTServApp_ProcessCharCfg)
                      0000a0f4    00000098     drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:RF_yield)
                      0000a18c    00000098     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
                      0000a224    00000094     drivers_cc26xxware_instrumented.aem3 : PINCC26XX.oem3 (.text:PIN_open)
                      0000a2b8    00000094     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_putMod__E)
                      0000a34c    00000090     peripheral.obj (.text:gapRole_init$15)
                      0000a3dc    00000090     drivers_cc26xxware_instrumented.aem3 : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                      0000a46c    0000008c                                          : UARTCC26XX.oem3 (.text:UARTCC26XX_initIO)
                      0000a4f8    0000008c                                          : UARTCC26XX.oem3 (.text:readSemCallback)
                      0000a584    0000008c                                          : UARTCC26XX.oem3 (.text:writeSemCallback)
                      0000a610    00000088     driverlib.lib : osc.obj (.text:OSCHF_GetStartupTime)
                      0000a698    00000086     rtsv7M3_T_le_eabi.lib : fd_cmp_t2.obj (.text:__aeabi_cdcmple)
                      0000a71e    00000086                           : fd_cmp_t2.obj (.text:__aeabi_cdrcmple)
                      0000a7a4    00000084     icall.obj (.text:ICall_heapMalloc)
                      0000a828    00000084     icall.obj (.text:ICall_primSetTimer$5)
                      0000a8ac    00000084     drivers_cc26xxware_instrumented.aem3 : PowerCC26XX.oem3 (.text:Power_releaseConstraint)
                      0000a930    00000084                                          : RF.oem3 (.text:RF_ratDisableChannel)
                      0000a9b4    00000080     project_zero.obj (.text:ProjectZero_taskFxn$1)
                      0000aa34    0000007c     icall.obj (.text:ICall_createRemoteTasks)
                      0000aab0    0000007c     drivers_cc26xxware_instrumented.aem3 : PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
                      0000ab2c    0000007c     uart_logs.obj (.text:uartLog_outputFxn)
                      0000aba8    0000007a     rtsv7M3_T_le_eabi.lib : fs_mul_t2.obj (.text)
                      0000ac22    0000007a                           : memset_t2.obj (.text)
                      0000ac9c    00000074     icall_cc2650.obj (.text:ICallPlatform_pwrUpdActivityCounter)
                      0000ad10    00000074     icall.obj (.text:ICall_primSend$5)
                      0000ad84    00000074     drivers_cc26xxware_instrumented.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_auxISR)
                      0000adf8    00000074                                          : PowerCC26XX_calibrateRCOSC.oem3 (.text:calibrateRcoscHf2)
                      0000ae6c    00000074                                          : RF.oem3 (.text:fsmPowerDownState)
                      0000aee0    00000074     peripheral.obj (.text:gapRole_startConnUpdate$15)
                      0000af54    00000074     drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.text:writeTxFifoFlush)
                      0000afc8    00000070     driverlib.lib : chipinfo.obj (.text:ChipInfo_GetHwRevision)
                      0000b038    00000070     gattservapp_util.obj (.text:gattServApp_SendNotiInd$13)
                      0000b0a8    0000006e     rtsv7M3_T_le_eabi.lib : fd_tos_t2.obj (.text)
                      0000b116    00000002     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_triggerFunc__I)
                      0000b118    0000006d                      : rom_sysbios.obj (.text:xdc_runtime_System_formatNum__I)
                      0000b185    00000001     --HOLE-- [fill = 0]
                      0000b186    00000002     app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_rom_cortexm_cc26xx_CC26xx_badRomRevision__E)
                      0000b188    0000006c     icall.obj (.text:ICall_heapInit)
                      0000b1f4    0000006c     drivers_cc26xxware_instrumented.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
                      0000b260    0000006c     project_zero.obj (.text:buttonDebounceSwiFxn$1)
                      0000b2cc    0000006a     rtsv7M3_T_le_eabi.lib : copy_decompress_rle.obj (.text)
                      0000b336    00000002     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_defaultAbort)
                      0000b338    00000068     driverlib.lib : setup.obj (.text:GetTrimForAmpcompCtrl$29)
                      0000b3a0    00000068     drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:RF_getCurrentTime)
                      0000b408    00000068                                          : RF.oem3 (.text:RF_getInfo)
                      0000b470    00000068     driverlib.lib : sys_ctrl.obj (.text:SysCtrl_DCDC_VoltageConditionalControl)
                      0000b4d8    00000068     project_zero.obj (.text:Util_convertArrayToHexString$1)
                      0000b540    00000068     uart_logs.obj (.text:uartLog_flush)
                      0000b5a8    00000064     driverlib.lib : setup.obj (.text:GetTrimForAnabypassValue1$29)
                      0000b60c    00000064     drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:RF_ratCompare)
                      0000b670    00000064                                          : RF.oem3 (.text:decActiveClientCnt)
                      0000b6d4    00000064     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_start__E)
                      0000b738    00000060     icall.obj (.text:ICall_primEnroll$5)
                      0000b798    00000060     drivers_cc26xxware_instrumented.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:updateSubSecInc)
                      0000b7f8    0000005c     icall.obj (.text:ICall_primThreadServes$5)
                      0000b854    0000005c     driverlib.lib : osc.obj (.text:OSCHF_AttemptToSwitchToXosc)
                      0000b8b0    0000005c     drivers_cc26xxware_instrumented.aem3 : PINCC26XX.oem3 (.text:PIN_remove)
                      0000b90c    0000005c                                          : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_RCOSC_clockFunc)
                      0000b968    0000005c                                          : PowerCC26XX.oem3 (.text:Power_setConstraint)
                      0000b9c4    0000005c     driverlib.lib : sys_ctrl.obj (.text:SysCtrlAdjustRechargeAfterPowerDown)
                      0000ba20    0000005c     project_zero.obj (.text:conversion_mt8442_ascii)
                      0000ba7c    0000005c     project_zero.obj (.text:conversion_mt8442_ext_ascii)
                      0000bad8    0000005c     drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:fsmPatchState)
                      0000bb34    0000005c     app_ble_uartlog_pem3.oem3 (.text:xdc_runtime_Startup_getState__I)
                      0000bb90    0000005b     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_putLab__E)
                      0000bbeb    00000001     --HOLE-- [fill = 0]
                      0000bbec    00000058     drivers_cc26xxware_instrumented.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
                      0000bc44    00000058                                          : UARTCC26XX.oem3 (.text:UARTCC26XX_control)
                      0000bc9c    00000058                                          : RF.oem3 (.text:ratChanFree)
                      0000bcf4    00000054                                          : PowerCC26XX.oem3 (.text:configureXOSCHF)
                      0000bd48    00000054                                          : RF.oem3 (.text:dispatchOpWhen)
                      0000bd9c    00000054                                          : RF.oem3 (.text:fsmXOSCState)
                      0000bdf0    00000054                                          : RF.oem3 (.text:hwiFxnHw)
                      0000be44    00000054     project_zero.obj (.text:user_enqueueCharDataMsg$1)
                      0000be98    00000008     (.tramp.ti_sysbios_knl_Queue_enqueue__E.1)
                      0000bea0    00000052     icall.obj (.text:ICall_primWait$5)
                      0000bef2    00000002     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_defaultExit)
                      0000bef4    00000050     icall_api.obj (.text:GAP_DeviceInit)
                      0000bf44    00000050     icall_api.obj (.text:GAP_UpdateAdvertisingData)
                      0000bf94    00000050     icall.obj (.text:ICall_primRegisterApp$5)
                      0000bfe4    00000050     driverlib.lib : setup.obj (.text:SetupCacheModeAccordingToCcfgSetting$29)
                      0000c034    00000050     util.obj (.text:Util_convertBdAddr2Str)
                      0000c084    00000050     drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:ratChanAlloc)
                      0000c0d4    00000050                                          : UARTCC26XX.oem3 (.text:startTxFifoEmptyClk)
                      0000c124    00000050                                          : RF.oem3 (.text:syncCb)
                      0000c174    0000004c     button_service.obj (.text:Button_Service_findCharParamId$9)
                      0000c1c0    0000004c     data_service.obj (.text:Data_Service_findCharParamId$10)
                      0000c20c    0000004c     icall_cc2650.obj (.text:ICallPlatform_pwrRegisterNotify)
                      0000c258    0000004c     icall.obj (.text:ICall_newTask$5)
                      0000c2a4    00000008     (.tramp.ti_sysbios_knl_Semaphore_create.1)
                      0000c2ac    0000004c     icall.obj (.text:ICall_primGetEntityId$5)
                      0000c2f8    0000004c     led_service.obj (.text:LED_Service_findCharParamId$14)
                      0000c344    0000004c     driverlib.lib : osc.obj (.text:NOROM_OSCClockSourceSet)
                      0000c390    0000004c     peripheral.obj (.text:gapRole_processStackMsg$15)
                      0000c3dc    0000004c     rtsv7M3_T_le_eabi.lib : cpy_tbl.obj (.text)
                      0000c428    0000004c     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_visitRope2__I)
                      0000c474    0000004a     gattservapp_util.obj (.text:GATTServApp_ProcessCCCWriteReq)
                      0000c4be    00000002     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_defaultPutch)
                      0000c4c0    00000048     driverlib.lib : chipinfo.obj (.text:ChipInfo_GetChipFamily)
                      0000c508    00000048                   : ddi.obj (.text:NOROM_DDI16BitfieldWrite)
                      0000c550    00000048     drivers_cc26xxware_instrumented.aem3 : PINCC26XX.oem3 (.text:PIN_setOutputEnable)
                      0000c598    00000048                                          : PINCC26XX.oem3 (.text:PIN_swi)
                      0000c5e0    00000048                                          : RF.oem3 (.text:RF_getRssi)
                      0000c628    00000048                                          : RF.oem3 (.text:RF_runCmd)
                      0000c670    00000048     project_zero.obj (.text:Util_getLocalNameStr$1)
                      0000c6b8    00000048     icall_api.obj (.text:gattIndNoti$8)
                      0000c700    00000048     drivers_cc26xxware_instrumented.aem3 : PowerCC26XX.oem3 (.text:notify)
                      0000c748    00000048     rtsv7M3_T_le_eabi.lib : fd_toi_t2.obj (.text)
                      0000c790    00000048     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excReserved__I)
                      0000c7d8    00000044     main.obj (.text:AssertHandler)
                      0000c81c    00000044     icall_api.obj (.text:GAP_TerminateLinkReq)
                      0000c860    00000044     boot.aem3 : boot.oem3 (.text)
                      0000c8a4    00000008     (.tramp.xdc_runtime_System_exit__E.1)
                      0000c8ac    00000044     icall_api.obj (.text:gapSendParamAndPtrCmd$8)
                      0000c8f0    00000044     rtsv7M3_T_le_eabi.lib : exit.obj (.text)
                      0000c934    00000044                           : fd_tou_t2.obj (.text)
                      0000c978    00000044     project_zero.obj (.text:user_enqueueRawAppMsg$1)
                      0000c9bc    00000044     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_write8__E)
                      0000ca00    00000044                      : rom_sysbios.obj (.text:xdc_runtime_Text_xprintf__I)
                      0000ca44    00000042     icall.obj (.text:ICall_primCreateTask$5)
                      0000ca86    00000002     --HOLE-- [fill = 0]
                      0000ca88    00000040     peripheral.obj (.text:GAPRole_SendUpdateParam)
                      0000cac8    00000040     peripheral.obj (.text:GAPRole_createTask)
                      0000cb08    00000008     (.tramp.ti_sysbios_knl_Task_construct.1)
                      0000cb10    00000040     icall_api.obj (.text:GATT_SendRsp)
                      0000cb50    00000040     driverlib.lib : ddi.obj (.text:NOROM_DDI16BitfieldRead)
                      0000cb90    00000040     project_zero.obj (.text:ProjectZero_createTask)
                      0000cbd0    00000040     rtsv7M3_T_le_eabi.lib : u_divt2.obj (.text)
                      0000cc10    00000040     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_Module_startup__E)
                      0000cc50    0000003e     icall_api.obj (.text:hciSendParamsCmd$8)
                      0000cc8e    00000002     --HOLE-- [fill = 0]
                      0000cc90    0000003c     icall_api.obj (.text:GAP_GetParamValue)
                      0000cccc    0000003c     icall_api.obj (.text:GATTServApp_RegisterService)
                      0000cd08    0000003c     icall_cc2650.obj (.text:ICallPlatform_pwrConfigACAction)
                      0000cd44    0000003c     driverlib.lib : rfc.obj (.text:NOROM_RFCSynthPowerDown)
                      0000cd80    0000003c                   : osc.obj (.text:OSC_HPOSCRelativeFrequencyOffsetGet)
                      0000cdbc    0000003c     drivers_cc26xxware_instrumented.aem3 : PINCC26XX.oem3 (.text:PIN_setOutputValue)
                      0000cdf8    0000003c                                          : PowerCC26XX.oem3 (.text:Power_getDependencyCount)
                      0000ce34    0000003c                                          : RF.oem3 (.text:RF_runDirectCmd)
                      0000ce70    0000003c                                          : RF.oem3 (.text:RF_runImmediateCmd)
                      0000ceac    0000003c     main.obj (.text:main)
                      0000cee8    00000008     (.tramp.ti_sysbios_BIOS_start__E.1)
                      0000cef0    0000003c     drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:postDirImmCmd)
                      0000cf2c    0000003c     icall_api.obj (.text:profileSetParameter$8)
                      0000cf68    0000003c     icall_api.obj (.text:sendWaitMatchCS$8)
                      0000cfa4    0000003c     icall_api.obj (.text:sendWaitMatchValueCS$8)
                      0000cfe0    0000003c     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excSvCall__I)
                      0000d01c    00000038     icall_api.obj (.text:GAPBondMgr_LinkEst)
                      0000d054    00000038     icall.obj (.text:ICall_primGetMaxMSecs$5)
                      0000d08c    00000038     driverlib.lib : interrupt.obj (.text:NOROM_IntRegister)
                      0000d0c4    00000038     drivers_cc26xxware_instrumented.aem3 : UART.oem3 (.text:UART_init)
                      0000d0fc    00000038     util.obj (.text:Util_restartClock)
                      0000d134    00000038     icall_api.obj (.text:linkDB_NumConns)
                      0000d16c    00000038     icall_api.obj (.text:registerTask$8)
                      0000d1a4    00000038     rtsv7M3_T_le_eabi.lib : fs_tod_t2.obj (.text)
                      0000d1dc    00000038     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E)
                      0000d214    00000038                      : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excNoIsr__I)
                      0000d24c    00000036     drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:updateImplicitState)
                      0000d282    00000002     --HOLE-- [fill = 0]
                      0000d284    00000034     icall_api.obj (.text:GAPBondMgr_SetParameter)
                      0000d2b8    00000034     icall_api.obj (.text:GAP_SetParamValue)
                      0000d2ec    00000034     icall.obj (.text:ICall_primEntityId2ServiceId$5)
                      0000d320    00000034     icall.obj (.text:ICall_primFetchMsg$5)
                      0000d354    00000034     icall.obj (.text:ICall_primRegisterISR$5)
                      0000d388    00000008     (.tramp.ti_sysbios_hal_Hwi_create.1)
                      0000d390    00000034     icall.obj (.text:ICall_primRegisterISR_Ext$5)
                      0000d3c4    00000034     icall.obj (.text:ICall_searchServiceEntity)
                      0000d3f8    00000034     driverlib.lib : osc.obj (.text:OSCHF_SwitchToRcOscTurnOffXosc)
                      0000d42c    00000034     drivers_cc26xxware_instrumented.aem3 : PINCC26XX.oem3 (.text:PIN_setConfig)
                      0000d460    00000034                                          : PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
                      0000d494    00000034                                          : RF.oem3 (.text:Q_push)
                      0000d4c8    00000034     util.obj (.text:Util_constructClock)
                      0000d4fc    00000034     icall_api.obj (.text:osal_snv_read)
                      0000d530    00000034     icall_api.obj (.text:osal_snv_write)
                      0000d564    00000034     icall_api.obj (.text:profileAddService$8)
                      0000d598    00000034     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excNmi__I)
                      0000d5cc    00000034                      : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_write4__E)
                      0000d600    00000032     icall_api.obj (.text:gapSendParamsCmd$8)
                      0000d632    00000032     icall_api.obj (.text:gapSendPtrParamsCmd$8)
                      0000d664    00000032     icall_api.obj (.text:matchGapSetGetParamCS$8)
                      0000d696    00000032     icall_api.obj (.text:matchGattCmdStatus$8)
                      0000d6c8    00000032     icall_api.obj (.text:matchUtilNvCS$8)
                      0000d6fa    00000032     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E)
                      0000d72c    00000030     icall_api.obj (.text:GAPBondMgr_PasscodeRsp)
                      0000d75c    00000030     icall_cc2650.obj (.text:ICallPlatform_pwrNotify$6)
                      0000d78c    00000030     icall.obj (.text:ICall_msecs2Ticks$5)
                      0000d7bc    00000030     icall.obj (.text:ICall_searchTask$5)
                      0000d7ec    00000030     drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:RF_Params_init)
                      0000d81c    00000030     driverlib.lib : setup.obj (.text:SetAonRtcSubSecInc$29)
                      0000d84c    00000030     drivers_cc26xxware_instrumented.aem3 : UART.oem3 (.text:UART_open)
                      0000d87c    00000030     app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
                      0000d8ac    00000030     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_initDevice__I)
                      0000d8dc    00000030                      : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I)
                      0000d90c    00000030     app_ble_uartlog_pem3.oem3 (.text:xdc_runtime_LoggerCallback_Object__create__S)
                      0000d93c    00000008     (.tramp.xdc_runtime_Core_createObject__I.1)
                      0000d944    0000002f     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_printVisFxn__I)
                      0000d973    00000001     --HOLE-- [fill = 0]
                      0000d974    0000002e     icall_cc2650.obj (.text:ICallPlatform_pwrDispenseImpl$6)
                      0000d9a2    0000002e     icall_cc2650.obj (.text:ICallPlatform_pwrRequireImpl$6)
                      0000d9d0    0000002e     peripheral.obj (.text:ICall_fetchServiceMsg$15)
                      0000d9fe    0000002e     project_zero.obj (.text:ICall_fetchServiceMsg$1)
                      0000da2c    0000002e     icall.obj (.text:ICall_msgDequeue$5)
                      0000da5a    0000002e     app_ble_uartlog_pem3.oem3 (.text:malloc)
                      0000da88    00000008     (.tramp.xdc_runtime_Memory_alloc__E.1)
                      0000da90    0000002e     icall_api.obj (.text:matchProfileAddServiceCS$8)
                      0000dabe    0000002e     rtsv7M3_T_le_eabi.lib : i_tofd_t2.obj (.text)
                      0000daec    0000002c     icall_api.obj (.text:GAPBondMgr_Register)
                      0000db18    0000002c     icall_api.obj (.text:HCI_EXT_ConnEventNoticeCmd)
                      0000db44    0000002c     icall.obj (.text:ICall_heapFree)
                      0000db70    0000002c     data_service.obj (.text:ICall_malloc$10)
                      0000db9c    0000002c     button_service.obj (.text:ICall_malloc$9)
                      0000dbc8    0000002c     icall.obj (.text:ICall_msgEnqueue$5)
                      0000dbf4    0000002c     icall.obj (.text:ICall_primAllocMsg$5)
                      0000dc20    0000002c     icall.obj (.text:ICall_primFetchServiceMsg$5)
                      0000dc4c    0000002c     icall_api.obj (.text:ICall_sendServiceMsg$8)
                      0000dc78    0000002c     drivers_cc26xxware_instrumented.aem3 : PINCC26XX.oem3 (.text:PINCC26XX_setMux)
                      0000dca4    0000002c     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_getTicksUntilInterrupt__E)
                      0000dcd0    0000002c                      : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_write2__E)
                      0000dcfc    0000002a     icall_api.obj (.text:ICall_waitMatch$8)
                      0000dd26    0000002a     icall_api.obj (.text:matchProfileCS$8)
                      0000dd50    0000002a     project_zero.obj (.text:user_updateCharVal$1)
                      0000dd7a    0000002a     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_System_putchar__I)
                      0000dda4    00000028     driverlib.lib : aon_batmon.obj (.text:AONBatMonTemperatureGetDegC)
                      0000ddcc    00000028     gattservapp_util.obj (.text:GATTServApp_WriteCharCfg)
                      0000ddf4    00000028     driverlib.lib : setup.obj (.text:GetTrimForRadcExtCfg$29)
                      0000de1c    00000028     icall.obj (.text:ICall_init)
                      0000de44    00000028     icall.obj (.text:ICall_msgPrepend$5)
                      0000de6c    00000028     peripheral.obj (.text:ICall_registerApp$15)
                      0000de94    00000028     project_zero.obj (.text:ICall_registerApp$1)
                      0000debc    00000028     drivers_cc26xxware_instrumented.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
                      0000dee4    00000028                                          : PowerCC26XX.oem3 (.text:Power_registerNotify)
                      0000df0c    00000028     driverlib.lib : adi.obj (.text:SafeHapiVoid)
                      0000df34    00000028     gattservapp_util.obj (.text:gattServApp_FindCharCfgItem$13)
                      0000df5c    00000028     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E)
                      0000df84    00000028                      : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_write0__E)
                      0000dfac    00000028                      : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_write1__E)
                      0000dfd4    00000026     drivers_cc26xxware_instrumented.aem3 : List.oem3 (.text:List_put)
                      0000dffa    00000024     icall_api.obj (.text:GAPBondMgr_LinkTerm)
                      0000e01e    00000024     icall_api.obj (.text:ICall_getLocalMsgEntityId$8)
                      0000e042    00000002     --HOLE-- [fill = 0]
                      0000e044    00000024     icall.obj (.text:ICall_searchService$5)
                      0000e068    00000024     icall_api.obj (.text:ICall_threadServes$8)
                      0000e08c    00000024     drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:RF_ratHwOutput)
                      0000e0b0    00000024                                          : PowerCC26XX_calibrateRCOSC.oem3 (.text:getTdcSemaphore)
                      0000e0d4    00000024                                          : RF.oem3 (.text:hwiFxnCpe0PowerFsm)
                      0000e0f8    00000024     rtsv7M3_T_le_eabi.lib : u_tofs_t2.obj (.text)
                      0000e11c    00000024     app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_registerRTSLock__I)
                      0000e140    00000024     app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_removeRTSLock__I)
                      0000e164    00000024     app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
                      0000e188    00000008     (.tramp.xdc_runtime_System_atexit__E.1)
                      0000e190    00000008     (.tramp.ti_sysbios_family_arm_cc26xx_Timer_startup__E.1)
                      0000e198    00000008     (.tramp.ti_sysbios_hal_Hwi_HwiProxy_startup__E.1)
                      0000e1a0    00000008     (.tramp.ti_sysbios_knl_Swi_startup__E.1)
                      0000e1a8    00000008     (.tramp.ti_sysbios_knl_Task_startup__E.1)
                      0000e1b0    00000024     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_System_vprintf__E)
                      0000e1d4    00000022     icall.obj (.text:ICall_dispatch$5)
                      0000e1f6    00000022     rtsv7M3_T_le_eabi.lib : memcmp.obj (.text)
                      0000e218    00000020     gattservapp_util.obj (.text:GATTServApp_InitCharCfg)
                      0000e238    00000020     icall_api.obj (.text:GATT_bm_alloc)
                      0000e258    00000020     driverlib.lib : setup.obj (.text:GetTrimForXoscHfCtl$29)
                      0000e278    00000020     icall_api.obj (.text:ICall_allocMsg$8)
                      0000e298    00000020     icall_api.obj (.text:ICall_getEntityId$8)
                      0000e2b8    00000020     project_zero.obj (.text:ICall_malloc$1)
                      0000e2d8    00000020     icall.obj (.text:ICall_primService$5)
                      0000e2f8    00000020     driverlib.lib : rfc.obj (.text:NOROM_RFCDoorbellSendTo)
                      0000e318    00000020                   : rfc.obj (.text:NOROM_RFCRfTrimRead)
                      0000e338    00000020     drivers_cc26xxware_instrumented.aem3 : PowerCC26XX.oem3 (.text:Power_idleFunc)
                      0000e358    00000020                                          : PowerCC26XX.oem3 (.text:Power_unregisterNotify)
                      0000e378    00000020                                          : RF.oem3 (.text:applyExtraAdi3VcoLdoVoltageModeOverrideCC13xx)
                      0000e398    00000020     project_zero.obj (.text:convert_uint2char)
                      0000e3b8    00000020     rtsv7M3_T_le_eabi.lib : u_tofd_t2.obj (.text)
                      0000e3d8    00000020     app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_rtsLock__I)
                      0000e3f8    00000008     (.tramp.ti_sysbios_BIOS_RtsGateProxy_enter__E.1)
                      0000e400    00000020     rom_sysbios.aem3 : rom_sysbios_config.obj (.text:ti_sysbios_family_arm_m3_Hwi_Handle__label__S)
                      0000e420    00000008     (.tramp.xdc_runtime_Core_assignLabel__I.1)
                      0000e428    00000020                      : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_stop__E)
                      0000e448    00000020                      : rom_sysbios_config.obj (.text:ti_sysbios_knl_Swi_Handle__label__S)
                      0000e468    00000020                      : rom_sysbios_config.obj (.text:ti_sysbios_knl_Task_Handle__label__S)
                      0000e488    00000020                      : rom_sysbios.obj (.text:xdc_runtime_Registry_findById__E)
                      0000e4a8    0000001e     icall.obj (.text:ICall_primSendServiceMsg$5)
                      0000e4c6    0000001e     drivers_cc26xxware_instrumented.aem3 : PINCC26XX.oem3 (.text:PIN_close)
                      0000e4e4    0000001e                                          : PowerCC26XX.oem3 (.text:Power_getTransitionLatency)
                      0000e502    0000001e     icall_api.obj (.text:matchHciCS$8)
                      0000e520    0000001e     project_zero.obj (.text:user_gapBondMgr_passcodeCB$1)
                      0000e53e    0000001e     icall_api.obj (.text:waitMatchCS$8)
                      0000e55c    0000001c     icall_api.obj (.text:GATT_bm_free)
                      0000e578    0000001c     driverlib.lib : setup.obj (.text:GetTrimForAmpcompTh2$29)
                      0000e594    0000001c     icall.obj (.text:ICall_initPrim$5)
                      0000e5b0    0000001c     peripheral.obj (.text:ICall_wait$15)
                      0000e5cc    0000001c     project_zero.obj (.text:ICall_wait$1)
                      0000e5e8    0000001c     driverlib.lib : osc.obj (.text:NOROM_OSCClockSourceGet)
                      0000e604    0000001c     drivers_cc26xxware_instrumented.aem3 : PINCC26XX.oem3 (.text:PINCC26XX_setIoCfgMux)
                      0000e620    0000001c                                          : PINCC26XX.oem3 (.text:PIN_hwi)
                      0000e63c    0000001c                                          : RF.oem3 (.text:RF_getCmdOp)
                      0000e658    0000001c                                          : RF.oem3 (.text:clkPowerUpFxn)
                      0000e674    0000001c     peripheral.obj (.text:gapRole_HandleParamUpdateNoSuccess$15)
                      0000e690    0000001c     icall_api.obj (.text:getStatusValueFromErrNo$8)
                      0000e6ac    0000001c     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_dynamicStub__E)
                      0000e6c8    0000001c                      : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_Instance_init__E)
                      0000e6e4    0000001a     icall.obj (.text:ICall_enterCSImpl)
                      0000e6fe    0000001a     icall.obj (.text:ICall_primSetTimerMSecs$5)
                      0000e718    0000001a     drivers_cc26xxware_instrumented.aem3 : List.oem3 (.text:List_remove)
                      0000e732    0000001a     icall_api.obj (.text:matchGattIndNotiCS$8)
                      0000e74c    0000001a     rom_sysbios.aem3 : rom_sysbios_config.obj (.text:xdc_runtime_System_printf__E)
                      0000e766    0000001a                      : rom_sysbios_config.obj (.text:xdc_runtime_System_snprintf__E)
                      0000e780    00000018     driverlib.lib : chipinfo.obj (.text:ChipInfo_GetPackageType)
                      0000e798    00000018     peripheral.obj (.text:GAPRole_StartDevice)
                      0000e7b0    00000018     peripheral.obj (.text:GAPRole_TerminateConnection)
                      0000e7c8    00000018     icall_api.obj (.text:GATT_Notification)
                      0000e7e0    00000018     driverlib.lib : setup.obj (.text:GetTrimForAdcShModeEn$29)
                      0000e7f8    00000018                   : setup.obj (.text:GetTrimForAdcShVbufEn$29)
                      0000e810    00000018                   : setup.obj (.text:GetTrimForAmpcompTh1$29)
                      0000e828    00000018                   : setup.obj (.text:GetTrimForDblrLoopFilterResetVoltage$29)
                      0000e840    00000018                   : setup.obj (.text:GetTrimForRcOscLfIBiasTrim$29)
                      0000e858    00000018                   : setup.obj (.text:GetTrimForRcOscLfRtuneCtuneTrim$29)
                      0000e870    00000018                   : setup.obj (.text:GetTrimForXoscLfRegulatorAndCmirrwrRatio$29)
                      0000e888    00000018     icall_cc2650.obj (.text:ICallPlatform_pwrDispense)
                      0000e8a0    00000018     icall_cc2650.obj (.text:ICallPlatform_pwrRequire)
                      0000e8b8    00000018     project_zero.obj (.text:ICall_free$1)
                      0000e8d0    00000018     peripheral.obj (.text:ICall_freeMsg$15)
                      0000e8e8    00000018     project_zero.obj (.text:ICall_freeMsg$1)
                      0000e900    00000018     icall.obj (.text:ICall_freeMsg$5)
                      0000e918    00000018     icall_api.obj (.text:ICall_freeMsg$8)
                      0000e930    00000018     icall.obj (.text:ICall_primMalloc$5)
                      0000e948    00000018     driverlib.lib : aon_rtc.obj (.text:NOROM_AONRTCCurrentCompareValueGet)
                      0000e960    00000018                   : i2c.obj (.text:NOROM_I2CIntRegister)
                      0000e978    00000018                   : rfc.obj (.text:NOROM_RFCCpeIntGetAndClear)
                      0000e990    00000018                   : osc.obj (.text:OSCHF_TurnOnXosc)
                      0000e9a8    00000018     drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:Q_pop)
                      0000e9c0    00000018                                          : UARTCC26XX.oem3 (.text:UARTCC26XX_init)
                      0000e9d8    00000018                                          : PowerCC26XX.oem3 (.text:configureRFCoreClocks)
                      0000e9f0    00000018     peripheral.obj (.text:gapRole_setEvent$15)
                      0000ea08    00000018     rtsv7M3_T_le_eabi.lib : args_main.obj (.text)
                      0000ea20    00000018                           : ll_mul_t2.obj (.text)
                      0000ea38    00000018     drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:swiFxnFsm)
                      0000ea50    00000018     app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_rtsUnlock__I)
                      0000ea68    00000008     (.tramp.ti_sysbios_BIOS_RtsGateProxy_leave__E.1)
                      0000ea70    00000018     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Swi_or__E)
                      0000ea88    00000018     app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_rom_cortexm_cc26xx_CC26xx_checkRevision__E)
                      0000eaa0    00000016     icall.obj (.text:ICall_abort$5)
                      0000eab6    00000016     icall.obj (.text:ICall_leaveCSImpl)
                      0000eacc    00000016     icall.obj (.text:ICall_primStopTimer$5)
                      0000eae2    00000016     app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__I)
                      0000eaf8    00000014     devinfoservice.obj (.text:DevInfo_AddService)
                      0000eb0c    00000014     driverlib.lib : aon_rtc.obj (.text:NOROM_AONRTCCurrent64BitValueGet)
                      0000eb20    00000014     drivers_cc26xxware_instrumented.aem3 : PINCC26XX.oem3 (.text:PINCC26XX_getInputValue)
                      0000eb34    00000014     driverlib.lib : chipinfo.obj (.text:ThisCodeIsBuiltForCC26xxHwRev22AndLater_HaltIfViolated)
                      0000eb48    00000014     rtsv7M3_T_le_eabi.lib : _lock.obj (.text)
                      0000eb5c    00000014                           : strlen.obj (.text)
                      0000eb70    00000014     icall_api.obj (.text:setICallCmdEvtHdr$8)
                      0000eb84    00000014     app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_knl_Clock_doTick__I)
                      0000eb98    00000008     (.tramp.ti_sysbios_knl_Clock_logTick__E.1)
                      0000eba0    00000012     gattservapp_util.obj (.text:GATTServApp_FindAttr)
                      0000ebb2    00000012     app_ble_uartlog_pem3.oem3 (.text:xdc_runtime_Startup_exec__I)
                      0000ebc4    00000008     (.tramp.xdc_runtime_Startup_startMods__I.1)
                      0000ebcc    00000010     devinfoservice.obj (.text:DevInfo_SetParameter)
                      0000ebdc    00000010     drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:FsmDispatch)
                      0000ebec    00000010     icall_api.obj (.text:GAP_EndDiscoverable)
                      0000ebfc    00000010     gattservapp_util.obj (.text:GATTServApp_ReadCharCfg)
                      0000ec0c    00000010     driverlib.lib : setup.obj (.text:GetTrimForXoscHfFastStart$29)
                      0000ec1c    00000010                   : setup.obj (.text:GetTrimForXoscHfIbiastherm$29)
                      0000ec2c    00000010     icall_cc2650.obj (.text:ICallPlatform_pwrGetXOSCStartupTime)
                      0000ec3c    00000010     icall.obj (.text:ICall_primGetTickPeriod$5)
                      0000ec4c    00000010     icall.obj (.text:ICall_taskEntry$5)
                      0000ec5c    00000010     driverlib.lib : rfc.obj (.text:NOROM_RFCRfTrimSet)
                      0000ec6c    00000010     ble_user_config.obj (.text:RegisterAssertCback)
                      0000ec7c    00000010     util.obj (.text:Util_isActive)
                      0000ec8c    00000010     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_getHandle__E)
                      0000ec9c    00000010                      : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_post__E)
                      0000ecac    00000010     drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.text:uartPostNotify)
                      0000ecbc    00000010     app_ble_uartlog_pem3.oem3 (.text:xdc_runtime_LoggerCallback_Object__get__S)
                      0000eccc    00000010     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_putch__E)
                      0000ecdc    00000010                      : rom_sysbios.obj (.text:xdc_runtime_SysCallback_ready__E)
                      0000ecec    00000010                      : rom_sysbios.obj (.text:xdc_runtime_System_vsnprintf__E)
                      0000ecfc    0000000e     icall_cc2650.obj (.text:ICallPlatform_pwrGetTransitionState)
                      0000ed0a    0000000e     icall_cc2650.obj (.text:ICallPlatform_pwrIsStableXOSCHF)
                      0000ed18    0000000e     icall.obj (.text:ICall_primDisableMInt$5)
                      0000ed26    0000000e     icall.obj (.text:ICall_primEnableMInt$5)
                      0000ed34    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_enableFxn__E.1)
                      0000ed3c    00000008     (.tramp.ti_sysbios_knl_Task_enable__E.1)
                      0000ed44    0000000e     icall.obj (.text:ICall_primFreeMsg$5)
                      0000ed52    0000000e     icall.obj (.text:ICall_primGetTicks$5)
                      0000ed60    0000000e     driverlib.lib : vims.obj (.text:NOROM_VIMSModeGet)
                      0000ed6e    0000000e                   : setup.obj (.text:SignExtendVddrTrimValue)
                      0000ed7c    0000000e     rtsv7M3_T_le_eabi.lib : copy_decompress_none.obj (.text:decompress:none)
                      0000ed8a    0000000e     icall_api.obj (.text:matchGSARegisterServiceCS$8)
                      0000ed98    0000000e     icall_api.obj (.text:matchGapLinkEstCS$8)
                      0000eda6    0000000e     icall_api.obj (.text:matchGapPasscodeCS$8)
                      0000edb4    0000000e     icall_api.obj (.text:matchGattSendRspCS$8)
                      0000edc2    0000000e     icall_api.obj (.text:matchLinkDBNumConnsCS$8)
                      0000edd0    0000000e     icall_api.obj (.text:setDispatchCmdEvtHdr$8)
                      0000edde    0000000e     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E)
                      0000edec    0000000c     icall_api.obj (.text:GAP_MakeDiscoverable)
                      0000edf8    0000000c     icall_api.obj (.text:GAP_TerminateAuth)
                      0000ee04    0000000c     icall_api.obj (.text:GAP_UpdateLinkParamReq)
                      0000ee10    0000000c     icall_api.obj (.text:GGS_SetParameter)
                      0000ee1c    0000000c     icall.obj (.text:ICall_clockFunc$5)
                      0000ee28    0000000c     icall.obj (.text:ICall_primDisableInt$5)
                      0000ee34    00000008     (.tramp.ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E.1)
                      0000ee3c    0000000c     icall.obj (.text:ICall_primEnableInt$5)
                      0000ee48    00000008     (.tramp.ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E.1)
                      0000ee50    0000000c     icall.obj (.text:ICall_primFree$5)
                      0000ee5c    0000000c     icall.obj (.text:ICall_primSignal$5)
                      0000ee68    0000000c     driverlib.lib : cpu.obj (.text:NOROM_CPUcpsid)
                      0000ee74    0000000c                   : cpu.obj (.text:NOROM_CPUcpsie)
                      0000ee80    0000000c     drivers_cc26xxware_instrumented.aem3 : PINCC26XX.oem3 (.text:PIN_registerIntCb)
                      0000ee8c    0000000c                                          : PowerCC26XX.oem3 (.text:Power_getConstraintMask)
                      0000ee98    00000008     (.tramp.ti_sysbios_knl_Queue_dequeue__E.1)
                      0000eea0    00000008     (.tramp.ti_sysbios_knl_Queue_empty__E.1)
                      0000eea8    00000008     (.tramp.ti_sysbios_knl_Clock_create.1)
                      0000eeb0    00000008     (.tramp.ti_sysbios_knl_Clock_scheduleNextTick__E.1)
                      0000eeb8    00000008     (.tramp.ti_sysbios_knl_Clock_walkQueueDynamic__E.1)
                      0000eec0    00000008     (.tramp.ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E.1)
                      0000eec8    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E.1)
                      0000eed0    00000008     (.tramp.ti_sysbios_BIOS_exit__E.1)
                      0000eed8    00000008     (.tramp.ti_sysbios_BIOS_setThreadType__E.1)
                      0000eee0    00000008     (.tramp.ti_sysbios_knl_Semaphore_post__E.1)
                      0000eee8    00000008     (.tramp.ti_sysbios_knl_Clock_getTicks__E.1)
                      0000eef0    00000008     (.tramp.ti_sysbios_knl_Task_self__E.1)
                      0000eef8    00000008     (.tramp.ti_sysbios_knl_Task_create.1)
                      0000ef00    00000008     (.tramp.ti_sysbios_knl_Task_Params__init__S.1)
                      0000ef08    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_destruct.1)
                      0000ef10    00000008     (.tramp.ti_sysbios_knl_Swi_destruct.1)
                      0000ef18    00000008     (.tramp.ti_sysbios_knl_Clock_destruct.1)
                      0000ef20    00000008     (.tramp.ti_sysbios_knl_Semaphore_destruct.1)
                      0000ef28    00000008     (.tramp.ti_sysbios_BIOS_getCpuFreq__E.1)
                      0000ef30    00000008     (.tramp.xdc_runtime_Text_ropeText__E.1)
                      0000ef38    00000008     (.tramp.ti_sysbios_knl_Swi_post__E.1)
                      0000ef40    00000008     (.tramp.xdc_runtime_Error_raiseX__E.1)
                      0000ef48    00000008     (.tramp.xdc_runtime_Error_init__E.1)
                      0000ef50    00000008     (.tramp.ti_sysbios_knl_Task_restore__E.1)
                      0000ef58    00000008     (.tramp.ti_sysbios_knl_Swi_restore__E.1)
                      0000ef60    00000008     (.tramp.ti_sysbios_knl_Swi_disable__E.1)
                      0000ef68    00000008     (.tramp.ti_sysbios_knl_Task_disable__E.1)
                      0000ef70    00000008     (.tramp.ti_sysbios_knl_Semaphore_pend__E.1)
                      0000ef78    00000008     (.tramp.ti_sysbios_knl_Task_sleep__E.1)
                      0000ef80    00000008     (.tramp.ti_sysbios_knl_Clock_start__E.1)
                      0000ef88    00000008     (.tramp.ti_sysbios_knl_Clock_setTimeout__E.1)
                      0000ef90    00000008     (.tramp.ti_sysbios_knl_Semaphore_construct.1)
                      0000ef98    00000008     (.tramp.ti_sysbios_knl_Semaphore_Params__init__S.1)
                      0000efa0    00000008     (.tramp.ti_sysbios_knl_Swi_construct.1)
                      0000efa8    00000008     (.tramp.ti_sysbios_knl_Swi_Params__init__S.1)
                      0000efb0    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_construct.1)
                      0000efb8    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_Params__init__S.1)
                      0000efc0    00000008     (.tramp.xdc_runtime_Assert_raise__I.1)
                      0000efc8    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_restoreFxn__E.1)
                      0000efd0    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_disableFxn__E.1)
                      0000efd8    00000008     (.tramp.xdc_runtime_System_abort__E.1)
                      0000efe0    00000008     (.tramp.ti_sysbios_knl_Clock_construct.1)
                      0000efe8    00000008     (.tramp.ti_sysbios_knl_Clock_Params__init__S.1)
                      0000eff0    00000008     (.tramp.ti_sysbios_knl_Task_exit__E.1)
                      0000eff8    00000008     (.tramp.ti_sysbios_knl_Queue_construct.1)
    
    .text.5    0    0001f000    000001a8     
                      0001f000    0000000c     drivers_cc26xxware_instrumented.aem3 : PowerCC26XX.oem3 (.text:Power_getTransitionState)
                      0001f00c    0000000c     uart_logs.obj (.text:UartLog_doInit)
                      0001f018    0000000c     rtsv7M3_T_le_eabi.lib : copy_zero_init.obj (.text:decompress:ZI)
                      0001f024    0000000c     icall_api.obj (.text:matchProfileSetParamCS$8)
                      0001f030    0000000c     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_BIOS_getThreadType__E)
                      0001f03c    0000000c                      : rom_sysbios_config.obj (.text:ti_sysbios_hal_Hwi_Params__init__S)
                      0001f048    00000008     (.tramp.xdc_runtime_Core_assignParams__I.1)
                      0001f050    0000000c                      : rom_sysbios.obj (.text:ti_sysbios_knl_Swi_getTrigger__E)
                      0001f05c    0000000c                      : rom_sysbios.obj (.text:ti_sysbios_knl_Swi_self__E)
                      0001f068    0000000c     app_ble_uartlog_pem3.oem3 (.text:xdc_runtime_Startup_reset__I)
                      0001f074    0000000c     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Startup_rtsDone__E)
                      0001f080    0000000a     icall_cc2650.obj (.text:ICallPlatform_pwrSwitchXOSCHF)
                      0001f08a    0000000a     icall.obj (.text:ICall_primE2S$5)
                      0001f094    0000000a     drivers_cc26xxware_instrumented.aem3 : List.oem3 (.text:List_empty)
                      0001f09e    0000000a                                          : UART.oem3 (.text:UART_write)
                      0001f0a8    0000000a     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_disable__E)
                      0001f0b2    0000000a                      : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_enable__E)
                      0001f0bc    0000000a     app_ble_uartlog_pem3.oem3 (.text:xdc_runtime_Text_visitRope__I)
                      0001f0c6    00000008     icall_api.obj (.text:GAP_RegisterForMsgs)
                      0001f0ce    00000008     icall_api.obj (.text:GATT_RegisterForMsgs)
                      0001f0d6    00000008     drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:RF_flushCmd)
                      0001f0de    00000008     icall_api.obj (.text:matchHciExtConnEventNoticeCS$8)
                      0001f0e6    00000006     icall_api.obj (.text:GATT_Indication)
                      0001f0ec    00000006     icall_api.obj (.text:GGS_AddService)
                      0001f0f2    00000006     icall.obj (.text:ICall_mallocImpl)
                      0001f0f8    00000006     drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_readPolling)
                      0001f0fe    00000006                                          : UARTCC26XX.oem3 (.text:UARTCC26XX_writePolling)
                      0001f104    00000006     rom_sysbios.aem3 : rom_sysbios.obj (.text:__xdc__init)
                      0001f10a    00000006     drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:clkInactivityFxn)
                      0001f110    00000006     rtsv7M3_T_le_eabi.lib : copy_decompress_rle.obj (.text:decompress:rle24)
                      0001f116    00000006     icall_api.obj (.text:gattAddService$8)
                      0001f11c    00000006     icall_api.obj (.text:matchBondMgrSetParamCS$8)
                      0001f122    00000006     icall_api.obj (.text:matchGGSSetParamCS$8)
                      0001f128    00000006     icall_api.obj (.text:matchGapDeviceInitCS$8)
                      0001f12e    00000006     icall_api.obj (.text:matchGapEndDiscoverableCS$8)
                      0001f134    00000006     icall_api.obj (.text:matchGapGetParamCS$8)
                      0001f13a    00000006     icall_api.obj (.text:matchGapMakeDiscoverableCS$8)
                      0001f140    00000006     icall_api.obj (.text:matchGapSetParamCS$8)
                      0001f146    00000006     icall_api.obj (.text:matchGapTerminateAuthCS$8)
                      0001f14c    00000006     icall_api.obj (.text:matchGapTerminateLinkReqCS$8)
                      0001f152    00000006     icall_api.obj (.text:matchGapUpdateAdvDataCS$8)
                      0001f158    00000006     icall_api.obj (.text:matchGapUpdateLinkParamReqCS$8)
                      0001f15e    00000006     icall_api.obj (.text:matchUtilNvReadCS$8)
                      0001f164    00000006     icall_api.obj (.text:matchUtilNvWriteCS$8)
                      0001f16a    00000006     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_setFunc__E)
                      0001f170    00000004     tirtosport.aem3 : HwiP_tirtos.oem3 (.text:HwiP_disable)
                      0001f174    00000004     icall.obj (.text:ICall_primAbort$5)
                      0001f178    00000004     drivers_cc26xxware_instrumented.aem3 : List.oem3 (.text:List_head)
                      0001f17c    00000004                                          : List.oem3 (.text:List_next)
                      0001f180    00000004                                          : RF.oem3 (.text:Q_peek)
                      0001f184    00000004     util.obj (.text:Util_stopClock)
                      0001f188    00000004     peripheral.obj (.text:gapRole_SetupGAP$15)
                      0001f18c    00000004     drivers_cc26xxware_instrumented.aem3 : PowerCC26XX.oem3 (.text:nopResourceHandler)
                      0001f190    00000004     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_getCount64__E)
                      0001f194    00000004                      : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_isActive__E)
                      0001f198    00000004                      : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_defaultCreate)
                      0001f19c    00000004                      : rom_sysbios.obj (.text:xdc_runtime_SysCallback_defaultReady)
                      0001f1a0    00000004                      : rom_sysbios.obj (.text:xdc_runtime_System_printf_va__F)
                      0001f1a4    00000004                      : rom_sysbios.obj (.text:xdc_runtime_System_snprintf_va__F)
    
    .const.2   0    0001f1a8    000005a2     
                      0001f1a8    000000c0     icall.obj (.const)
                      0001f268    0000004c     drivers_cc26xxware_instrumented.aem3 : PowerCC26XX.oem3 (.const:resourceDB)
                      0001f2b4    0000004c     ble_user_config.obj (.const:rfDriverTable)
                      0001f300    00000048     app_ble_uartlog_pem3.oem3 (.const:.string)
                      0001f348    00000040     drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.const)
                      0001f388    0000003c     project_zero.obj (.const)
                      0001f3c4    00000034     button_service.obj (.const)
                      0001f3f8    00000034     data_service.obj (.const)
                      0001f42c    00000034     led_service.obj (.const)
                      0001f460    00000034     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_LoggerCallback_Module__FXNS__C)
                      0001f494    0000002c     CC2650_LAUNCHXL.obj (.const:BoardGpioInitTable)
                      0001f4c0    0000002c     gatt_uuid.obj (.const)
                      0001f4ec    00000028     drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.const:UARTCC26XX_fxnTable)
                      0001f514    00000028     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Startup_sfxnTab__A)
                      0001f53c    00000027     ble_user_config.obj (.const:txPowerTable)
                      0001f563    00000001     --HOLE-- [fill = 0]
                      0001f564    00000024     drivers_cc26xxware_instrumented.aem3 : UART.oem3 (.const:UART_defaultParams)
                      0001f588    00000020     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_LoggerCallback_Object__DESC__C)
                      0001f5a8    0000001c     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_LoggerCallback_Object__PARAMS__C)
                      0001f5c4    00000018     CC2650_LAUNCHXL.obj (.const:UART_config)
                      0001f5dc    00000018     CC2650_LAUNCHXL.obj (.const:uartCC26XXHWAttrs)
                      0001f5f4    00000014     devinfoservice.obj (.const:.string)
                      0001f608    00000014     CC2650_LAUNCHXL.obj (.const)
                      0001f61c    00000014     devinfoservice.obj (.const)
                      0001f630    00000014     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Startup_sfxnRts__A)
                      0001f644    00000011     util.obj (.const:.string)
                      0001f655    00000010     button_service.obj (.const:.string)
                      0001f665    00000010     data_service.obj (.const:.string)
                      0001f675    00000010     led_service.obj (.const:.string)
                      0001f685    00000001     --HOLE-- [fill = 0]
                      0001f686    00000010     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Text_nodeTab__A)
                      0001f696    00000002     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Swi_Module__id__C)
                      0001f698    0000000c     drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.const)
                      0001f6a4    0000000c     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Startup_firstFxns__A)
                      0001f6b0    00000008     CC2650_LAUNCHXL.obj (.const:PINCC26XX_hwAttrs)
                      0001f6b8    00000008     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_excHookFuncs__A)
                      0001f6c0    00000008     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Idle_funcList__A)
                      0001f6c8    00000006     ble_user_config.obj (.const)
                      0001f6ce    00000002     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Task_Module__id__C)
                      0001f6d0    00000004     icall_cc2650.obj (.const)
                      0001f6d4    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_E_NMI__C)
                      0001f6d8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_E_busFault__C)
                      0001f6dc    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_E_debugMon__C)
                      0001f6e0    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_E_hardFault__C)
                      0001f6e4    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_E_memFault__C)
                      0001f6e8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_E_noIsr__C)
                      0001f6ec    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_E_reserved__C)
                      0001f6f0    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_E_svCall__C)
                      0001f6f4    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_E_usageFault__C)
                      0001f6f8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_excHookFuncs__C)
                      0001f6fc    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Clock_tickPeriod__C)
                      0001f700    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Clock_triggerClock__C)
                      0001f704    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_ILogger_Interface__BASE__C)
                      0001f708    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Log_L_error__C)
                      0001f70c    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Log_L_info__C)
                      0001f710    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Log_L_warning__C)
                      0001f714    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_LoggerCallback_Object__count__C)
                      0001f718    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_LoggerCallback_createInstFxn__C)
                      0001f71c    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_LoggerCallback_outputFxn__C)
                      0001f720    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerFxn2__C)
                      0001f724    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerFxn4__C)
                      0001f728    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerFxn8__C)
                      0001f72c    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerObj__C)
                      0001f730    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_SysCallback_putchFxn__C)
                      0001f734    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_SysCallback_readyFxn__C)
                      0001f738    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_System_extendFxn__C)
                      0001f73c    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Text_nodeTab__C)
                      0001f740    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Text_visitRopeFxn__C)
                      0001f744    00000002     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerDefined__C)
                      0001f746    00000002     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Text_registryModsLastId__C)
                      0001f748    00000002     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Text_unnamedModsLastId__C)
    
    .args      0    0001f74c    00000008     
                      0001f74c    00000008     --HOLE-- [fill = 0]
    
    .cinit     0    0001f758    000005f0     
                      0001f758    00000496     (.cinit..data.load) [load image, compression = rle]
                      0001fbee    00000002     --HOLE-- [fill = 0]
                      0001fbf0    0000001e     (.cinit..data:ti_sysbios_knl_Task_Module__state__V.load) [load image, compression = rle]
                      0001fc0e    00000002     --HOLE-- [fill = 0]
                      0001fc10    00000017     (.cinit..data:ti_sysbios_BIOS_Module__state__V.load) [load image, compression = rle]
                      0001fc27    00000001     --HOLE-- [fill = 0]
                      0001fc28    00000013     (.cinit..data:ti_sysbios_family_arm_m3_Hwi_Module__state__V.load) [load image, compression = rle]
                      0001fc3b    00000005     --HOLE-- [fill = 0]
                      0001fc40    00000011     (.cinit..data:ti_sysbios_knl_Clock_Module__state__V.load) [load image, compression = rle]
                      0001fc51    00000003     --HOLE-- [fill = 0]
                      0001fc54    0000000c     (__TI_handler_table)
                      0001fc60    0000000a     (.cinit..data:ti_sysbios_knl_Swi_Module__state__V.load) [load image, compression = rle]
                      0001fc6a    00000006     --HOLE-- [fill = 0]
                      0001fc70    0000000a     (.cinit..data:xdc_runtime_Memory_Module__state__V.load) [load image, compression = rle]
                      0001fc7a    00000006     --HOLE-- [fill = 0]
                      0001fc80    00000009     (.cinit..data:ti_sysbios_family_arm_cc26xx_Timer_Module__state__V.load) [load image, compression = rle]
                      0001fc89    00000007     --HOLE-- [fill = 0]
                      0001fc90    00000009     (.cinit..data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V.load) [load image, compression = rle]
                      0001fc99    00000007     --HOLE-- [fill = 0]
                      0001fca0    00000009     (.cinit..data:xdc_runtime_Startup_Module__state__V.load) [load image, compression = rle]
                      0001fca9    00000007     --HOLE-- [fill = 0]
                      0001fcb0    00000009     (.cinit..data:xdc_runtime_System_Module__state__V.load) [load image, compression = rle]
                      0001fcb9    00000007     --HOLE-- [fill = 0]
                      0001fcc0    00000008     (.cinit..bss.load) [load image, compression = zero_init]
                      0001fcc8    00000008     (.cinit..vecs.load) [load image, compression = zero_init]
                      0001fcd0    00000008     (.cinit..vtable_ram.load) [load image, compression = zero_init]
                      0001fcd8    00000070     (__TI_cinit_table)
    
    .ccfg      0    0001ffa8    00000058     
                      0001ffa8    00000058     ccfg_app_ble.obj (.ccfg:retain)
    
    .vecs      0    20000000    000000c8     UNINITIALIZED
                      20000000    000000c8     app_ble_uartlog_pem3.oem3 (.vecs)
    
    .data:ti_sysbios_knl_Task_Module__state__V 
    *          0    20000100    00000044     UNINITIALIZED
                      20000100    00000044     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_knl_Task_Module__state__V)
    
    .data:ti_sysbios_family_arm_m3_Hwi_Module__state__V 
    *          0    20000144    00000034     UNINITIALIZED
                      20000144    00000034     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module__state__V)
    
    .data:ti_sysbios_knl_Clock_Module__state__V 
    *          0    20000178    0000002c     UNINITIALIZED
                      20000178    0000002c     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_knl_Clock_Module__state__V)
    
    .data:ti_sysbios_BIOS_Module__state__V 
    *          0    200001a4    00000024     UNINITIALIZED
                      200001a4    00000024     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_BIOS_Module__state__V)
    
    .data:ti_sysbios_knl_Swi_Module__state__V 
    *          0    200001c8    0000001c     UNINITIALIZED
                      200001c8    0000001c     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_knl_Swi_Module__state__V)
    
    .data:ti_sysbios_family_arm_cc26xx_Timer_Module__state__V 
    *          0    200001e4    00000008     UNINITIALIZED
                      200001e4    00000008     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_family_arm_cc26xx_Timer_Module__state__V)
    
    .data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V 
    *          0    200001ec    00000004     UNINITIALIZED
                      200001ec    00000004     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V)
    
    .data:xdc_runtime_Startup_Module__state__V 
    *          0    200001f0    00000008     UNINITIALIZED
                      200001f0    00000008     app_ble_uartlog_pem3.oem3 (.data:xdc_runtime_Startup_Module__state__V)
    
    .data:xdc_runtime_System_Module__state__V 
    *          0    200001f8    00000008     UNINITIALIZED
                      200001f8    00000008     app_ble_uartlog_pem3.oem3 (.data:xdc_runtime_System_Module__state__V)
    
    .data:xdc_runtime_Memory_Module__state__V 
    *          0    20000200    00000004     UNINITIALIZED
                      20000200    00000004     app_ble_uartlog_pem3.oem3 (.data:xdc_runtime_Memory_Module__state__V)
    
    .bootVecs 
    *          0    00000000    00000008     DSECT
                      00000000    00000008     boot.aem3 : boot.oem3 (.bootVecs)
    
    xdc.meta   0    00000000    0000010d     COPY SECTION
                      00000000    0000010d     app_ble_uartlog_pem3.oem3 (xdc.meta)
    
    .init_array 
    *          0    00000000    00000000     UNINITIALIZED
    
    .data      0    20000300    000019c2     UNINITIALIZED
                      20000300    000005b8     uart_logs.obj (.data)
                      200008b8    00000508     project_zero.obj (.data)
                      20000dc0    00000388     display_balanza.obj (.data)
                      20001148    0000036c     peripheral.obj (.data)
                      200014b4    000001e0     devinfoservice.obj (.data)
                      20001694    0000010c     drivers_cc26xxware_instrumented.aem3 : PowerCC26XX.oem3 (.data:PowerCC26XX_module)
                      200017a0    000000e8     app_ble_uartlog_pem3.oem3 (.data)
                      20001888    000000b0     data_service.obj (.data)
                      20001938    00000094     icall.obj (.data)
                      200019cc    00000088     button_service.obj (.data)
                      20001a54    00000060     led_service.obj (.data)
                      20001ab4    00000050     ble_user_config.obj (.data:rfRegTbl)
                      20001b04    0000004c     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_knl_Task_Object__table__V)
                      20001b50    00000048     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_family_arm_cc26xx_Timer_Object__table__V)
                      20001b98    00000038     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_gates_GateMutex_Object__table__V)
                      20001bd0    00000030     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_knl_Swi_Module_State_0_readyQ__A)
                      20001c00    00000030     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_knl_Swi_Object__table__V)
                      20001c30    00000030     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_knl_Task_Module_State_0_readyQ__A)
                      20001c60    00000028     main.obj (.data:user0Cfg)
                      20001c88    0000000c     icall_api.obj (.data)
                      20001c94    00000008     icall_cc2650.obj (.data)
                      20001c9c    00000008     rtsv7M3_T_le_eabi.lib : _lock.obj (.data)
                      20001ca4    00000008                           : exit.obj (.data)
                      20001cac    00000008     app_ble_uartlog_pem3.oem3 (.data:xdc_runtime_Registry_Module__state__V)
                      20001cb4    00000004     ble_user_config.obj (.data)
                      20001cb8    00000004     drivers_cc26xxware_instrumented.aem3 : UART.oem3 (.data)
                      20001cbc    00000004     rtsv7M3_T_le_eabi.lib : stkdepth_vars.obj (.data)
                      20001cc0    00000002     drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.data)
    
    .bss       0    20001cc8    00000f12     UNINITIALIZED
                      20001cc8    00000680     app_ble_uartlog_pem3.oem3 (.bss:ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A)
                      20002348    00000300     app_ble_uartlog_pem3.oem3 (.bss:taskStackSection)
                      20002648    00000140     drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.bss:aCmdPool)
                      20002788    00000114     CC2650_LAUNCHXL.obj (.bss:uartCC26XXObjects)
                      2000289c    000000c8     app_ble_uartlog_pem3.oem3 (.bss:ti_sysbios_family_arm_m3_Hwi_dispatchTable)
                      20002964    0000007c     drivers_cc26xxware_instrumented.aem3 : PINCC26XX.oem3 (.bss:PIN_HandleTable)
                      200029e0    00000034                                          : PINCC26XX.oem3 (.bss:PinSwi)
                      20002a14    00000034                                          : RF.oem3 (.bss:swiFsm)
                      20002a48    00000034                                          : RF.oem3 (.bss:swiHw)
                      20002a7c    00000024                                          : RF.oem3 (.bss:clkPowerUp)
                      20002aa0    00000024                                          : RF.oem3 (.bss:cmdDirImm)
                      20002ac4    00000020     (.common:PinGpioConfigTable)
                      20002ae4    0000001c     (.common:PinHwi)
                      20002b00    0000001c     (.common:PinSem)
                      20002b1c    0000001c     (.common:hwiCpe0)
                      20002b38    0000001c     (.common:hwiHw)
                      20002b54    00000014     (.common:cmdQ)
                      20002b68    00000014     (.common:opRatSync)
                      20002b7c    00000014     (.common:oscHfGlobals$27)
                      20002b90    00000010     (.common:str$1$2)
                      20002ba0    00000008     (.common:powerQualGlobals$30)
                      20002ba8    00000004     (.common:PIN_NumPins)
                      20002bac    00000004     (.common:activeTimeInUs)
                      20002bb0    00000004     (.common:dispatchInUs)
                      20002bb4    00000004     (.common:nRtc1)
                      20002bb8    00000004     (.common:nRtc2)
                      20002bbc    00000004     (.common:nRtc3)
                      20002bc0    00000004     (.common:pCurrClient)
                      20002bc4    00000004     (.common:pFsmState)
                      20002bc8    00000004     (.common:pPinGpio)
                      20002bcc    00000001     (.common:bInitAvailRatCh)
                      20002bcd    00000001     (.common:bPowerDownActive)
                      20002bce    00000001     (.common:bPowerUpActive)
                      20002bcf    00000001     (.common:bRadioActive)
                      20002bd0    00000001     (.common:bRestart)
                      20002bd1    00000001     (.common:bStart)
                      20002bd2    00000001     (.common:bYieldPwrDnCalled)
                      20002bd3    00000001     (.common:bYieldPwrDnCancel)
                      20002bd4    00000001     (.common:driverlib_release_0_45566)
                      20002bd5    00000001     (.common:isCC13xx)
                      20002bd6    00000001     (.common:nActiveClients)
                      20002bd7    00000001     (.common:nClients)
                      20002bd8    00000001     (.common:uartRxPowerConstraint)
                      20002bd9    00000001     (.common:uartTxPowerConstraint)
    
    .vtable    0    20002bda    00000000     UNINITIALIZED
    
    .vtable_ram 
    *          0    20002c00    000000c8     UNINITIALIZED
                      20002c00    000000c8     driverlib.lib : interrupt.obj (.vtable_ram)
    
    vtable_ram 
    *          0    20002cc8    00000000     UNINITIALIZED
    
    .sysmem    0    20002cc8    00000000     UNINITIALIZED
    
    .nonretenvar 
    *          0    20002cc8    00000000     UNINITIALIZED
    
    .stack     0    20003f68    00000400     UNINITIALIZED
                      20003f68    00000400     --HOLE--
    
    
    LINKER GENERATED COPY TABLES
    
    __TI_cinit_table @ 0001fcd8 records: 14, size/record: 8, table size: 112
    	.data: load addr=0001f758, load size=00000496 bytes, run addr=20000300, run size=000019c2 bytes, compression=rle
    	.data:ti_sysbios_knl_Task_Module__state__V: load addr=0001fbf0, load size=0000001e bytes, run addr=20000100, run size=00000044 bytes, compression=rle
    	.data:ti_sysbios_BIOS_Module__state__V: load addr=0001fc10, load size=00000017 bytes, run addr=200001a4, run size=00000024 bytes, compression=rle
    	.data:ti_sysbios_family_arm_m3_Hwi_Module__state__V: load addr=0001fc28, load size=00000013 bytes, run addr=20000144, run size=00000034 bytes, compression=rle
    	.data:ti_sysbios_knl_Clock_Module__state__V: load addr=0001fc40, load size=00000011 bytes, run addr=20000178, run size=0000002c bytes, compression=rle
    	.data:ti_sysbios_knl_Swi_Module__state__V: load addr=0001fc60, load size=0000000a bytes, run addr=200001c8, run size=0000001c bytes, compression=rle
    	.data:xdc_runtime_Memory_Module__state__V: load addr=0001fc70, load size=0000000a bytes, run addr=20000200, run size=00000004 bytes, compression=rle
    	.data:ti_sysbios_family_arm_cc26xx_Timer_Module__state__V: load addr=0001fc80, load size=00000009 bytes, run addr=200001e4, run size=00000008 bytes, compression=rle
    	.data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V: load addr=0001fc90, load size=00000009 bytes, run addr=200001ec, run size=00000004 bytes, compression=rle
    	.data:xdc_runtime_Startup_Module__state__V: load addr=0001fca0, load size=00000009 bytes, run addr=200001f0, run size=00000008 bytes, compression=rle
    	.data:xdc_runtime_System_Module__state__V: load addr=0001fcb0, load size=00000009 bytes, run addr=200001f8, run size=00000008 bytes, compression=rle
    	.bss: load addr=0001fcc0, load size=00000008 bytes, run addr=20001cc8, run size=00000f12 bytes, compression=zero_init
    	.vecs: load addr=0001fcc8, load size=00000008 bytes, run addr=20000000, run size=000000c8 bytes, compression=zero_init
    	.vtable_ram: load addr=0001fcd0, load size=00000008 bytes, run addr=20002c00, run size=000000c8 bytes, compression=zero_init
    
    
    LINKER GENERATED HANDLER TABLE
    
    __TI_handler_table @ 0001fc54 records: 3, size/record: 4, table size: 12
    	index: 0, handler: __TI_decompress_rle24
    	index: 1, handler: __TI_decompress_none
    	index: 2, handler: __TI_zero_init
    
    
    FAR CALL TRAMPOLINES
    
    callee name               trampoline name
       callee addr  tramp addr   call addr  call info
    --------------  -----------  ---------  ----------------
    ti_sysbios_knl_Queue_enqueue__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_enqueue__E
       1001c1b5     0000be98     0000be86   project_zero.obj (.text:user_enqueueCharDataMsg$1)
                                 0000c9a8   project_zero.obj (.text:user_enqueueRawAppMsg$1)
    ti_sysbios_knl_Semaphore_create  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_create
       1001b5ad     0000c2a4     0000c27c   icall.obj (.text:ICall_newTask$5)
    xdc_runtime_System_exit__E  $Tramp$TT$L$PI$$xdc_runtime_System_exit__E
       1001c7d1     0000c8a4     0000c88c   boot.aem3 : boot.oem3 (.text)
                                 0000eaf2   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__I)
    ti_sysbios_knl_Task_construct  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_construct
       1001b125     0000cb08     0000caf6   peripheral.obj (.text:GAPRole_createTask)
                                 0000cbbe   project_zero.obj (.text:ProjectZero_createTask)
    ti_sysbios_BIOS_start__E  $Tramp$TT$L$PI$$ti_sysbios_BIOS_start__E
       1001c055     0000cee8     0000cedc   main.obj (.text:main)
    ti_sysbios_hal_Hwi_create  $Tramp$TT$L$PI$$ti_sysbios_hal_Hwi_create
       1001ab79     0000d388     0000d374   icall.obj (.text:ICall_primRegisterISR$5)
                                 0000d3b0   icall.obj (.text:ICall_primRegisterISR_Ext$5)
    xdc_runtime_Core_createObject__I  $Tramp$TT$L$PI$$xdc_runtime_Core_createObject__I
       1001c405     0000d93c     0000d920   app_ble_uartlog_pem3.oem3 (.text:xdc_runtime_LoggerCallback_Object__create__S)
    xdc_runtime_Memory_alloc__E  $Tramp$TT$L$PI$$xdc_runtime_Memory_alloc__E
       1001c489     0000da88     0000da74   app_ble_uartlog_pem3.oem3 (.text:malloc)
    xdc_runtime_System_atexit__E  $Tramp$TT$L$PI$$xdc_runtime_System_atexit__E
       1001c681     0000e188     0000e168   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    ti_sysbios_family_arm_cc26xx_Timer_startup__E  $Tramp$TT$L$PI$$ti_sysbios_family_arm_cc26xx_Timer_startup__E
       1001b795     0000e190     0000e170   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    ti_sysbios_hal_Hwi_HwiProxy_startup__E  $Tramp$TT$L$PI$$ti_sysbios_hal_Hwi_HwiProxy_startup__E
       1001c28d     0000e198     0000e174   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    ti_sysbios_knl_Swi_startup__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_startup__E
       1001c23d     0000e1a0     0000e178   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    ti_sysbios_knl_Task_startup__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_startup__E
       1001c309     0000e1a8     0000e17c   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    ti_sysbios_BIOS_RtsGateProxy_enter__E  $Tramp$TT$L$PI$$ti_sysbios_BIOS_RtsGateProxy_enter__E
       1001c249     0000e3f8     0000e3de   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_rtsLock__I)
    xdc_runtime_Core_assignLabel__I  $Tramp$TT$L$PI$$xdc_runtime_Core_assignLabel__I
       1001c6ed     0000e420     0000e412   rom_sysbios.aem3 : rom_sysbios_config.obj (.text:ti_sysbios_family_arm_m3_Hwi_Handle__label__S)
                                 0000e45c                    : rom_sysbios_config.obj (.text:ti_sysbios_knl_Swi_Handle__label__S)
                                 0000e47c                    : rom_sysbios_config.obj (.text:ti_sysbios_knl_Task_Handle__label__S)
    ti_sysbios_BIOS_RtsGateProxy_leave__E  $Tramp$TT$L$PI$$ti_sysbios_BIOS_RtsGateProxy_leave__E
       1001c24d     0000ea68     0000ea5e   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_rtsUnlock__I)
    ti_sysbios_knl_Clock_logTick__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_logTick__E
       1001be67     0000eb98     0000eb86   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_knl_Clock_doTick__I)
    xdc_runtime_Startup_startMods__I  $Tramp$TT$L$PI$$xdc_runtime_Startup_startMods__I
       1001c30d     0000ebc4     0000ebbc   app_ble_uartlog_pem3.oem3 (.text:xdc_runtime_Startup_exec__I)
    ti_sysbios_family_arm_m3_Hwi_enableFxn__E  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_enableFxn__E
       1001c155     0000ed34     0000ed28   icall.obj (.text:ICall_primEnableMInt$5)
    ti_sysbios_knl_Task_enable__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_enable__E
       1001c243     0000ed3c     0000ed2c   icall.obj (.text:ICall_primEnableMInt$5)
    ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E  $Tramp$TT$L$PI$$ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E
       1001c281     0000ee34     0000ee2c   icall.obj (.text:ICall_primDisableInt$5)
    ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E  $Tramp$TT$L$PI$$ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E
       1001c285     0000ee48     0000ee40   icall.obj (.text:ICall_primEnableInt$5)
    ti_sysbios_knl_Queue_dequeue__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_dequeue__E
       1001c1a9     0000ee98     0000aa1e   project_zero.obj (.text:ProjectZero_taskFxn$1)
    ti_sysbios_knl_Queue_empty__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_empty__E
       1001c113     0000eea0     0000aa14   project_zero.obj (.text:ProjectZero_taskFxn$1)
    ti_sysbios_knl_Clock_create  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_create
       1001b3ed     0000eea8     0000a85a   icall.obj (.text:ICall_primSetTimer$5)
    ti_sysbios_knl_Clock_scheduleNextTick__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_scheduleNextTick__E
       1001bebd     0000eeb0     0000a20a   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
    ti_sysbios_knl_Clock_walkQueueDynamic__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_walkQueueDynamic__E
       1001a80d     0000eeb8     0000a1d2   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
                                 0000a1ee                    : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
    ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E
       1001c095     0000eec0     0000a1a0   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
                                 0000dcb6                    : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_getTicksUntilInterrupt__E)
    ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E
       1001b2dd     0000eec8     000093f2   drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:fsmPowerUpState)
    ti_sysbios_BIOS_exit__E   $Tramp$TT$L$PI$$ti_sysbios_BIOS_exit__E
       1001c035     0000eed0     00008ba8   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excHandlerMax__I)
    ti_sysbios_BIOS_setThreadType__E  $Tramp$TT$L$PI$$ti_sysbios_BIOS_setThreadType__E
       1001c045     0000eed8     00008b10   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excHandlerMax__I)
                                 0000d888   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
                                 0000eaec   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__I)
    ti_sysbios_knl_Semaphore_post__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_post__E
       1001ac41     0000eee0     00008adc   icall.obj (.text:ICall_primWaitMatch$5)
                                 0000a29e   drivers_cc26xxware_instrumented.aem3 : PINCC26XX.oem3 (.text:PIN_open)
                                 0000a53c                                        : UARTCC26XX.oem3 (.text:readSemCallback)
                                 0000a5c8                                        : UARTCC26XX.oem3 (.text:writeSemCallback)
                                 0000ad6e   icall.obj (.text:ICall_primSend$5)
                                 0000ae8a   drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:fsmPowerDownState)
                                 0000be8c   project_zero.obj (.text:user_enqueueCharDataMsg$1)
                                 0000c16c   drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:syncCb)
                                 0000c9ae   project_zero.obj (.text:user_enqueueRawAppMsg$1)
                                 0000e9fe   peripheral.obj (.text:gapRole_setEvent$15)
                                 0000ee60   icall.obj (.text:ICall_primSignal$5)
    ti_sysbios_knl_Clock_getTicks__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_getTicks__E
       1001b6d9     0000eee8     00008a54   icall.obj (.text:ICall_primWaitMatch$5)
                                 00008abe   icall.obj (.text:ICall_primWaitMatch$5)
                                 0000ed56   icall.obj (.text:ICall_primGetTicks$5)
    ti_sysbios_knl_Task_self__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_self__E
       1001c1e5     0000eef0     000084a4   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excFillContext__I)
                                 000084aa                    : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excFillContext__I)
                                 000084b0                    : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excFillContext__I)
                                 00008a0a   icall.obj (.text:ICall_primWaitMatch$5)
                                 0000b73c   icall.obj (.text:ICall_primEnroll$5)
                                 0000b80c   icall.obj (.text:ICall_primThreadServes$5)
                                 0000bea4   icall.obj (.text:ICall_primWait$5)
                                 0000bf98   icall.obj (.text:ICall_primRegisterApp$5)
                                 0000c2b0   icall.obj (.text:ICall_primGetEntityId$5)
                                 0000d324   icall.obj (.text:ICall_primFetchMsg$5)
    ti_sysbios_knl_Task_create  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_create
       1001ae19     0000eef8     000081ba   display_balanza.obj (.text:display_balanza_createTask)
                                 0000aa6e   icall.obj (.text:ICall_createRemoteTasks)
                                 0000ca6e   icall.obj (.text:ICall_primCreateTask$5)
    ti_sysbios_knl_Task_Params__init__S  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_Params__init__S
       1001c1d9     0000ef00     0000819a   display_balanza.obj (.text:display_balanza_createTask)
                                 0000aa52   icall.obj (.text:ICall_createRemoteTasks)
                                 0000ca58   icall.obj (.text:ICall_primCreateTask$5)
                                 0000cad6   peripheral.obj (.text:GAPRole_createTask)
                                 0000cb9e   project_zero.obj (.text:ProjectZero_createTask)
    ti_sysbios_family_arm_m3_Hwi_destruct  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_destruct
       1001c261     0000ef08     00007eba   drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:RF_close)
                                 00007ec6                                        : RF.oem3 (.text:RF_close)
                                 00008dcc                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_close)
    ti_sysbios_knl_Swi_destruct  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_destruct
       1001c2e9     0000ef10     00007eb4   drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:RF_close)
                                 00007ec0                                        : RF.oem3 (.text:RF_close)
                                 00008dd4                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_close)
    ti_sysbios_knl_Clock_destruct  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_destruct
       1001c2b9     0000ef18     00007eae   drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:RF_close)
                                 00007ecc                                        : RF.oem3 (.text:RF_close)
                                 00007efe                                        : RF.oem3 (.text:RF_close)
                                 00008df4                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_close)
    ti_sysbios_knl_Semaphore_destruct  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_destruct
       1001c2e1     0000ef20     00007ea6   drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:RF_close)
                                 00007ef6                                        : RF.oem3 (.text:RF_close)
                                 00008de0                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_close)
                                 00008dec                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_close)
    ti_sysbios_BIOS_getCpuFreq__E  $Tramp$TT$L$PI$$ti_sysbios_BIOS_getCpuFreq__E
       1001bff9     0000ef28     00006f84   drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_initHw)
    xdc_runtime_Text_ropeText__E  $Tramp$TT$L$PI$$xdc_runtime_Text_ropeText__E
       1001c7e9     0000ef30     00006e56   uart_logs.obj (.text:uartLog_doPrint$18)
                                 0000c444   rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_visitRope2__I)
                                 0000c452                    : rom_sysbios.obj (.text:xdc_runtime_Text_visitRope2__I)
    ti_sysbios_knl_Swi_post__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_post__E
       1001b321     0000ef38     00006a66   drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_hwiIntFxn)
                                 0000ea84   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Swi_or__E)
                                 0000eb8e   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_knl_Clock_doTick__I)
    xdc_runtime_Error_raiseX__E  $Tramp$TT$L$PI$$xdc_runtime_Error_raiseX__E
       1001c769     0000ef40     0000675e   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excBusFault__I)
                                 00006cfa                    : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excUsageFault__I)
                                 000070e8                    : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excMemFault__I)
                                 000098ea                    : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excDebugMon__I)
                                 00009974                    : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excHardFault__I)
                                 0000998a                    : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excHardFault__I)
                                 000099a4                    : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excHardFault__I)
                                 0000c7b6                    : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excReserved__I)
                                 0000d00a                    : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excSvCall__I)
                                 0000d23c                    : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excNoIsr__I)
                                 0000d5ba                    : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excNmi__I)
    xdc_runtime_Error_init__E  $Tramp$TT$L$PI$$xdc_runtime_Error_init__E
       1001c841     0000ef48     000066f8   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excBusFault__I)
                                 00006c8c                    : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excUsageFault__I)
                                 00007090                    : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excMemFault__I)
                                 0000818a   display_balanza.obj (.text:display_balanza_createTask)
                                 00009888   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excDebugMon__I)
                                 0000993c                    : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excHardFault__I)
                                 0000c79a                    : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excReserved__I)
                                 0000cfea                    : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excSvCall__I)
                                 0000d220                    : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excNoIsr__I)
                                 0000d5a0                    : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excNmi__I)
                                 0000da64   app_ble_uartlog_pem3.oem3 (.text:malloc)
    ti_sysbios_knl_Task_restore__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_restore__E
       1001ba49     0000ef50     000049bc   drivers_cc26xxware_instrumented.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
                                 0000aa92   icall.obj (.text:ICall_createRemoteTasks)
                                 0000eac6   icall.obj (.text:ICall_leaveCSImpl)
    ti_sysbios_knl_Swi_restore__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_restore__E
       1001b5e1     0000ef58     000049b2   drivers_cc26xxware_instrumented.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
                                 00004bdc                                        : RF.oem3 (.text:abortCmd)
                                 00008c38                                        : RF.oem3 (.text:RF_pendCmd)
                                 00008c74                                        : RF.oem3 (.text:RF_pendCmd)
                                 00008c90                                        : RF.oem3 (.text:RF_pendCmd)
    ti_sysbios_knl_Swi_disable__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_disable__E
       1001c0d5     0000ef60     0000480e   drivers_cc26xxware_instrumented.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
                                 00004b96                                        : RF.oem3 (.text:abortCmd)
                                 00008c0c                                        : RF.oem3 (.text:RF_pendCmd)
                                 0000d87e   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
    ti_sysbios_knl_Task_disable__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_disable__E
       1001c0f5     0000ef68     000047f6   drivers_cc26xxware_instrumented.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
                                 0000aa3c   icall.obj (.text:ICall_createRemoteTasks)
                                 0000d882   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
                                 0000e6e6   icall.obj (.text:ICall_enterCSImpl)
                                 0000ed1a   icall.obj (.text:ICall_primDisableMInt$5)
    ti_sysbios_knl_Semaphore_pend__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_pend__E
       1001a0cd     0000ef70     00003658   drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 000036c4                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 000056a6                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                                 00007e9e                                        : RF.oem3 (.text:RF_close)
                                 00008a68   icall.obj (.text:ICall_primWaitMatch$5)
                                 00008c80   drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:RF_pendCmd)
                                 0000a236                                        : PINCC26XX.oem3 (.text:PIN_open)
                                 0000af9a                                        : UARTCC26XX.oem3 (.text:writeTxFifoFlush)
                                 0000bee4   icall.obj (.text:ICall_primWait$5)
    ti_sysbios_knl_Task_sleep__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_sleep__E
       1001a96d     0000ef78     00002f3c   project_zero.obj (.text:user_processApplicationMessage$1)
                                 00002f82   project_zero.obj (.text:user_processApplicationMessage$1)
                                 00009482   display_balanza.obj (.text:display_balanza_taskFxn)
                                 00009492   display_balanza.obj (.text:display_balanza_taskFxn)
    ti_sysbios_knl_Clock_start__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_start__E
       1001bfe3     0000ef80     000029a6   drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:fsmActiveState)
                                 00004faa                                        : RF.oem3 (.text:RF_postCmd)
                                 0000654e                                        : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_doCalibrate)
                                 00007976                                        : UARTCC26XX.oem3 (.text:writeFinishedDoCallback)
                                 00007aae                                        : PowerCC26XX.oem3 (.text:Power_init)
                                 00008fc4   project_zero.obj (.text:buttonCallbackFxn$1)
                                 0000952c   power_cc26xx_tirtos_instrumented.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
                                 0000a42e   drivers_cc26xxware_instrumented.aem3 : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                                 0000a89e   icall.obj (.text:ICall_primSetTimer$5)
                                 0000aae8   drivers_cc26xxware_instrumented.aem3 : PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
                                 0000b6b4                                        : RF.oem3 (.text:decActiveClientCnt)
                                 0000bd32                                        : PowerCC26XX.oem3 (.text:configureXOSCHF)
                                 0000bdbc                                        : RF.oem3 (.text:fsmXOSCState)
                                 0000c110                                        : UARTCC26XX.oem3 (.text:startTxFifoEmptyClk)
                                 0000d128   util.obj (.text:Util_restartClock)
                                 0000e43a   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_stop__E)
    ti_sysbios_knl_Clock_setTimeout__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_setTimeout__E
       1001c2c1     0000ef88     0000299e   drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:fsmActiveState)
                                 00004fa4                                        : RF.oem3 (.text:RF_postCmd)
                                 00007970                                        : UARTCC26XX.oem3 (.text:writeFinishedDoCallback)
                                 00007aa8                                        : PowerCC26XX.oem3 (.text:Power_init)
                                 00009526   power_cc26xx_tirtos_instrumented.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
                                 0000a428   drivers_cc26xxware_instrumented.aem3 : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                                 0000a898   icall.obj (.text:ICall_primSetTimer$5)
                                 0000aae2   drivers_cc26xxware_instrumented.aem3 : PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
                                 0000b6ae                                        : RF.oem3 (.text:decActiveClientCnt)
                                 0000bd2c                                        : PowerCC26XX.oem3 (.text:configureXOSCHF)
                                 0000bdb6                                        : RF.oem3 (.text:fsmXOSCState)
                                 0000c10a                                        : UARTCC26XX.oem3 (.text:startTxFifoEmptyClk)
                                 0000d122   util.obj (.text:Util_restartClock)
    ti_sysbios_knl_Semaphore_construct  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_construct
       1001b709     0000ef90     000022c4   drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 000022d8                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 00005530                                        : PINCC26XX.oem3 (.text:PIN_init)
                                 00008f18                                        : RF.oem3 (.text:RF_open)
    ti_sysbios_knl_Semaphore_Params__init__S  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_Params__init__S
       1001c1c1     0000ef98     000022ae   drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 0000551e                                        : PINCC26XX.oem3 (.text:PIN_init)
                                 00008f08                                        : RF.oem3 (.text:RF_open)
    ti_sysbios_knl_Swi_construct  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_construct
       1001b085     0000efa0     000022a2   drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 000055c0                                        : PINCC26XX.oem3 (.text:PIN_init)
                                 00007332                                        : RF.oem3 (.text:rf_init)
                                 00007372                                        : RF.oem3 (.text:rf_init)
    ti_sysbios_knl_Swi_Params__init__S  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_Params__init__S
       1001c1cd     0000efa8     0000228c   drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 000055ae                                        : PINCC26XX.oem3 (.text:PIN_init)
                                 00007320                                        : RF.oem3 (.text:rf_init)
                                 00007362                                        : RF.oem3 (.text:rf_init)
    ti_sysbios_family_arm_m3_Hwi_construct  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_construct
       1001af29     0000efb0     00002280   drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 000055a2                                        : PINCC26XX.oem3 (.text:PIN_init)
                                 00007356                                        : RF.oem3 (.text:rf_init)
                                 00007396                                        : RF.oem3 (.text:rf_init)
                                 0000b24a                                        : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
    ti_sysbios_family_arm_m3_Hwi_Params__init__S  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_Params__init__S
       1001c13d     0000efb8     00002264   drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 0000558c                                        : PINCC26XX.oem3 (.text:PIN_init)
                                 0000733e                                        : RF.oem3 (.text:rf_init)
                                 0000737e                                        : RF.oem3 (.text:rf_init)
    xdc_runtime_Assert_raise__I  $Tramp$TT$L$PI$$xdc_runtime_Assert_raise__I
       1001c5a9     0000efc0     00002166   drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 00002180                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 000035e0                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 00004a12                                        : RF.oem3 (.text:abortCmd)
                                 00004e5c                                        : RF.oem3 (.text:RF_postCmd)
                                 00004e70                                        : RF.oem3 (.text:RF_postCmd)
                                 00007d36                                        : PowerCC26XX.oem3 (.text:Power_releaseDependency)
                                 00007d52                                        : PowerCC26XX.oem3 (.text:Power_releaseDependency)
                                 00007e42                                        : RF.oem3 (.text:RF_close)
                                 0000805a                                        : PowerCC26XX.oem3 (.text:Power_setDependency)
                                 00008bf6                                        : RF.oem3 (.text:RF_pendCmd)
                                 00008c08                                        : RF.oem3 (.text:RF_pendCmd)
                                 00008e9e                                        : RF.oem3 (.text:RF_open)
                                 0000a106                                        : RF.oem3 (.text:RF_yield)
                                 0000a8ca                                        : PowerCC26XX.oem3 (.text:Power_releaseConstraint)
                                 0000a8f0                                        : PowerCC26XX.oem3 (.text:Power_releaseConstraint)
                                 0000b97c                                        : PowerCC26XX.oem3 (.text:Power_setConstraint)
                                 0000ce0a                                        : PowerCC26XX.oem3 (.text:Power_getDependencyCount)
                                 0000ce48                                        : RF.oem3 (.text:RF_runDirectCmd)
                                 0000ce84                                        : RF.oem3 (.text:RF_runImmediateCmd)
                                 0000d7fe                                        : RF.oem3 (.text:RF_Params_init)
    ti_sysbios_family_arm_m3_Hwi_restoreFxn__E  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_restoreFxn__E
       1001c219     0000efc8     0000214c   drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 00002254                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 00002350                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 000029dc                                        : RF.oem3 (.text:fsmActiveState)
                                 00003608                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 00003624                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 00003682                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 000036f8                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 00003742                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 00004aa0                                        : RF.oem3 (.text:abortCmd)
                                 00004b06                                        : RF.oem3 (.text:abortCmd)
                                 00004b20                                        : RF.oem3 (.text:abortCmd)
                                 00004baa                                        : RF.oem3 (.text:abortCmd)
                                 00004e8e                                        : RF.oem3 (.text:RF_postCmd)
                                 00004ea4                                        : RF.oem3 (.text:RF_postCmd)
                                 00004f4c                                        : RF.oem3 (.text:RF_postCmd)
                                 00004f88                                        : RF.oem3 (.text:RF_postCmd)
                                 00004fb4                                        : RF.oem3 (.text:RF_postCmd)
                                 00004ff4                                        : RF.oem3 (.text:RF_postCmd)
                                 00005660                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                                 0000567c                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                                 000056d0                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                                 00005724                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                                 000078ee                                        : UARTCC26XX.oem3 (.text:writeFinishedDoCallback)
                                 00007b06                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_writeCancel)
                                 00007b10                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_writeCancel)
                                 00007b52                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_writeCancel)
                                 00007dfa                                        : PowerCC26XX.oem3 (.text:Power_releaseDependency)
                                 00007e82                                        : RF.oem3 (.text:RF_close)
                                 00007ee4                                        : RF.oem3 (.text:RF_close)
                                 0000810e                                        : PowerCC26XX.oem3 (.text:Power_setDependency)
                                 0000873c                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_readCancel)
                                 0000876a                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_readCancel)
                                 000087c6                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_readCancel)
                                 00008e00                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_close)
                                 00008eca                                        : RF.oem3 (.text:RF_open)
                                 00008ed8                                        : RF.oem3 (.text:RF_open)
                                 00009052                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_swiIntFxn)
                                 00009644                                        : PINCC26XX.oem3 (.text:PINCC26XX_setIoCfg)
                                 00009c38                                        : RF.oem3 (.text:swiFxnHw)
                                 00009c52                                        : RF.oem3 (.text:swiFxnHw)
                                 00009d28                                        : RF.oem3 (.text:RF_ratCapture)
                                 0000a16a                                        : RF.oem3 (.text:RF_yield)
                                 0000a456                                        : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                                 0000a90a                                        : PowerCC26XX.oem3 (.text:Power_releaseConstraint)
                                 0000a992                                        : RF.oem3 (.text:RF_ratDisableChannel)
                                 0000ab9c   uart_logs.obj (.text:uartLog_outputFxn)
                                 0000b3b0   drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:RF_getCurrentTime)
                                 0000b3b8                                        : RF.oem3 (.text:RF_getCurrentTime)
                                 0000b456                                        : RF.oem3 (.text:RF_getInfo)
                                 0000b58e   uart_logs.obj (.text:uartLog_flush)
                                 0000b6ba   drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:decActiveClientCnt)
                                 0000b9a0                                        : PowerCC26XX.oem3 (.text:Power_setConstraint)
                                 0000bc12                                        : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
                                 0000bc80                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_control)
                                 0000bce2                                        : RF.oem3 (.text:ratChanFree)
                                 0000c582                                        : PINCC26XX.oem3 (.text:PIN_setOutputEnable)
                                 0000c602                                        : RF.oem3 (.text:RF_getRssi)
                                 0000cf0a                                        : RF.oem3 (.text:postDirImmCmd)
                                 0000cf1e                                        : RF.oem3 (.text:postDirImmCmd)
                                 0000d482                                        : PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
                                 0000d4c0                                        : RF.oem3 (.text:Q_push)
                                 0000deda                                        : PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
                                 0000dff4                                        : List.oem3 (.text:List_put)
                                 0000e36c                                        : PowerCC26XX.oem3 (.text:Power_unregisterNotify)
                                 0000e9b8                                        : RF.oem3 (.text:Q_pop)
                                 0000eabe   icall.obj (.text:ICall_leaveCSImpl)
    ti_sysbios_family_arm_m3_Hwi_disableFxn__E  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_disableFxn__E
       1001c149     0000efd0     00002130   drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 0000224e                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 000029c8                                        : RF.oem3 (.text:fsmActiveState)
                                 000035e4                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 0000360c                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 0000366e                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 000036e4                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 00004a20                                        : RF.oem3 (.text:abortCmd)
                                 00004e74                                        : RF.oem3 (.text:RF_postCmd)
                                 00004f1c                                        : RF.oem3 (.text:RF_postCmd)
                                 00004f66                                        : RF.oem3 (.text:RF_postCmd)
                                 00004fc8                                        : RF.oem3 (.text:RF_postCmd)
                                 0000563c                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                                 00005664                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                                 000056bc                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                                 000078d6                                        : UARTCC26XX.oem3 (.text:writeFinishedDoCallback)
                                 00007af6                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_writeCancel)
                                 00007b3c                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_writeCancel)
                                 00007d3a                                        : PowerCC26XX.oem3 (.text:Power_releaseDependency)
                                 00007e6a                                        : RF.oem3 (.text:RF_close)
                                 0000805e                                        : PowerCC26XX.oem3 (.text:Power_setDependency)
                                 0000872e                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_readCancel)
                                 00008754                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_readCancel)
                                 00008df8                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_close)
                                 00008ec0                                        : RF.oem3 (.text:RF_open)
                                 0000903a                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_swiIntFxn)
                                 00009626                                        : PINCC26XX.oem3 (.text:PINCC26XX_setIoCfg)
                                 00009bf6                                        : RF.oem3 (.text:swiFxnHw)
                                 00009cc2                                        : RF.oem3 (.text:RF_ratCapture)
                                 0000a10a                                        : RF.oem3 (.text:RF_yield)
                                 0000a3e0                                        : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                                 0000a8ce                                        : PowerCC26XX.oem3 (.text:Power_releaseConstraint)
                                 0000a964                                        : RF.oem3 (.text:RF_ratDisableChannel)
                                 0000ab32   uart_logs.obj (.text:uartLog_outputFxn)
                                 0000b3a2   drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:RF_getCurrentTime)
                                 0000b410                                        : RF.oem3 (.text:RF_getInfo)
                                 0000b556   uart_logs.obj (.text:uartLog_flush)
                                 0000b674   drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:decActiveClientCnt)
                                 0000b980                                        : PowerCC26XX.oem3 (.text:Power_setConstraint)
                                 0000bbfe                                        : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
                                 0000bc62                                        : UARTCC26XX.oem3 (.text:UARTCC26XX_control)
                                 0000bca0                                        : RF.oem3 (.text:ratChanFree)
                                 0000c56c                                        : PINCC26XX.oem3 (.text:PIN_setOutputEnable)
                                 0000c5f2                                        : RF.oem3 (.text:RF_getRssi)
                                 0000cef4                                        : RF.oem3 (.text:postDirImmCmd)
                                 0000d462                                        : PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
                                 0000d4a2                                        : RF.oem3 (.text:Q_push)
                                 0000d4aa                                        : RF.oem3 (.text:Q_push)
                                 0000debe                                        : PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
                                 0000e35c                                        : PowerCC26XX.oem3 (.text:Power_unregisterNotify)
                                 0000e6f0   icall.obj (.text:ICall_enterCSImpl)
                                 0000e9ac   drivers_cc26xxware_instrumented.aem3 : RF.oem3 (.text:Q_pop)
                                 0000ed1e   icall.obj (.text:ICall_primDisableMInt$5)
                                 0001f170   tirtosport.aem3 : HwiP_tirtos.oem3 (.text:HwiP_disable)
    xdc_runtime_System_abort__E  $Tramp$TT$L$PI$$xdc_runtime_System_abort__E
       1001c749     0000efd8     0000135e   display_balanza.obj (.text:display_balanza_init)
                                 000013b6   display_balanza.obj (.text:display_balanza_init)
                                 000081c4   display_balanza.obj (.text:display_balanza_createTask)
    ti_sysbios_knl_Clock_construct  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_construct
       1001b579     0000efe0     000007d8   project_zero.obj (.text:ProjectZero_init$1)
                                 000007f4   project_zero.obj (.text:ProjectZero_init$1)
                                 00002300   drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 000073a2                                        : RF.oem3 (.text:rf_init)
                                 00007a14                                        : PowerCC26XX.oem3 (.text:Power_init)
                                 00007a22                                        : PowerCC26XX.oem3 (.text:Power_init)
                                 00007a30                                        : PowerCC26XX.oem3 (.text:Power_init)
                                 00008f34                                        : RF.oem3 (.text:RF_open)
                                 0000b23a                                        : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
                                 0000d4ee   util.obj (.text:Util_constructClock)
    ti_sysbios_knl_Clock_Params__init__S  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_Params__init__S
       1001c185     0000efe8     000007b2   project_zero.obj (.text:ProjectZero_init$1)
                                 000022e8   drivers_cc26xxware_instrumented.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 000079fc                                        : PowerCC26XX.oem3 (.text:Power_init)
                                 00008f24                                        : RF.oem3 (.text:RF_open)
                                 0000a846   icall.obj (.text:ICall_primSetTimer$5)
                                 0000b220   drivers_cc26xxware_instrumented.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
                                 0000d4da   util.obj (.text:Util_constructClock)
    ti_sysbios_knl_Task_exit__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_exit__E
       1001b429     0000eff0     000006aa   project_zero.obj (.text:ProjectZero_init$1)
                                 000006fc   project_zero.obj (.text:ProjectZero_init$1)
                                 000007a6   project_zero.obj (.text:ProjectZero_init$1)
    ti_sysbios_knl_Queue_construct  $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_construct
       1001b8f5     0000eff8     00000652   project_zero.obj (.text:ProjectZero_init$1)
    xdc_runtime_Core_assignParams__I  $Tramp$TT$L$PI$$xdc_runtime_Core_assignParams__I
       1001c5f1     0001f048     0001f040   rom_sysbios.aem3 : rom_sysbios_config.obj (.text:ti_sysbios_hal_Hwi_Params__init__S)
    
    [68 trampolines]
    [366 trampoline calls]
    
    
    GLOBAL SYMBOLS: SORTED ALPHABETICALLY BY Name 
    
    address   name                                                                      
    -------   ----                                                                      
    10014c00  A1_rw                                                                     
    10019ffe  A2_rw                                                                     
    10019ffc  A3_rw                                                                     
    20004f2c  A4_rw                                                                     
    20004f7c  ACCX                                                                      
    20004f80  ACCY                                                                      
    20004f84  ACCZ                                                                      
    0000dda5  AONBatMonTemperatureGetDegC                                               
    10015229  ATOMICPATTERN                                                             
    10016c29  AddRoundKeySubBytes_Sw                                                    
    10018a19  AesCcm_authEncrypt_Sw                                                     
    10018a35  AesCcm_decryptAuth_Sw                                                     
    10018b09  AesCcm_getNumBlocks_Sw                                                    
    10018ac5  Aes_decrypt_Sw                                                            
    10018a99  Aes_encrypt_Sw                                                            
    0000c7d9  AssertHandler                                                             
    200008ec  B                                                                         
    0001f494  BoardGpioInitTable                                                        
    0001f655  ButtonServiceUUID                                                         
    00008cc1  ButtonService_AddService                                                  
    0000003d  ButtonService_RegisterAppCBs                                              
    00002451  ButtonService_SetParameter                                                
    0001f3cc  Button_ServiceCBs                                                         
    0000c8f1  C$$EXIT                                                                   
    20004f2c  COMMON_RAM_BASE_ADDR                                                      
    10014c01  COMMON_ROM_BASE_ADDR                                                      
    10015a6d  COPY                                                                      
    0000c4c1  ChipInfo_GetChipFamily                                                    
    0000afc9  ChipInfo_GetHwRevision                                                    
    0000e781  ChipInfo_GetPackageType                                                   
    0001f665  DataServiceUUID                                                           
    0000929d  DataService_AddService                                                    
    000099e9  DataService_RegisterAppCBs                                                
    00001aa1  DataService_SetParameter                                                  
    0001f400  Data_ServiceCBs                                                           
    00000501  DefaultAssertCback                                                        
    0000eaf9  DevInfo_AddService                                                        
    0000ebcd  DevInfo_SetParameter                                                      
    10017959  ECC_allocWorkzone                                                         
    10017961  ECC_setWin                                                                
    10017969  ECDSA_sign                                                                
    10017b01  ECDSA_verif                                                               
    10015a11  EXPORTOPERAND                                                             
    20004f78  EXPW                                                                      
    20004f6c  EXPX                                                                      
    20004f70  EXPY                                                                      
    20004f74  EXPZ                                                                      
    10016f58  FFMult2                                                                   
    10017058  FFMult3                                                                   
    10016d05  FFMult_Sw                                                                 
    10018d6c  Fill1                                                                     
    0000d01d  GAPBondMgr_LinkEst                                                        
    0000dffb  GAPBondMgr_LinkTerm                                                       
    0000d72d  GAPBondMgr_PasscodeRsp                                                    
    0000daed  GAPBondMgr_Register                                                       
    0000d285  GAPBondMgr_SetParameter                                                   
    00007561  GAPRole_GetParameter                                                      
    0000ca89  GAPRole_SendUpdateParam                                                   
    00003eed  GAPRole_SetParameter                                                      
    0000e799  GAPRole_StartDevice                                                       
    0000e7b1  GAPRole_TerminateConnection                                               
    0000cac9  GAPRole_createTask                                                        
    0000bef5  GAP_DeviceInit                                                            
    0000ebed  GAP_EndDiscoverable                                                       
    0000cc91  GAP_GetParamValue                                                         
    0000eded  GAP_MakeDiscoverable                                                      
    0001f0c7  GAP_RegisterForMsgs                                                       
    0000d2b9  GAP_SetParamValue                                                         
    0000edf9  GAP_TerminateAuth                                                         
    0000c81d  GAP_TerminateLinkReq                                                      
    0000bf45  GAP_UpdateAdvertisingData                                                 
    0000ee05  GAP_UpdateLinkParamReq                                                    
    00000481  GATTServApp_AddService                                                    
    0000eba1  GATTServApp_FindAttr                                                      
    0000e219  GATTServApp_InitCharCfg                                                   
    0000c475  GATTServApp_ProcessCCCWriteReq                                            
    0000a05d  GATTServApp_ProcessCharCfg                                                
    0000ebfd  GATTServApp_ReadCharCfg                                                   
    0000cccd  GATTServApp_RegisterService                                               
    0000ddcd  GATTServApp_WriteCharCfg                                                  
    0001f0e7  GATT_Indication                                                           
    0000e7c9  GATT_Notification                                                         
    0001f0cf  GATT_RegisterForMsgs                                                      
    0000cb11  GATT_SendRsp                                                              
    0000e239  GATT_bm_alloc                                                             
    0000e55d  GATT_bm_free                                                              
    10015141  GETBIT                                                                    
    10015155  GETDIGIT                                                                  
    100151a5  GETDIGITL2R                                                               
    0001f0ed  GGS_AddService                                                            
    0000ee11  GGS_SetParameter                                                          
    0000db19  HCI_EXT_ConnEventNoticeCmd                                                
    2000195c  HEAPMGR_SIZE                                                              
    0001f171  HwiP_disable                                                              
    UNDEFED   HwiP_restore                                                              
    0000cd09  ICallPlatform_pwrConfigACAction                                           
    0000e889  ICallPlatform_pwrDispense                                                 
    0000ecfd  ICallPlatform_pwrGetTransitionState                                       
    0000ec2d  ICallPlatform_pwrGetXOSCStartupTime                                       
    0000ed0b  ICallPlatform_pwrIsStableXOSCHF                                           
    0000c20d  ICallPlatform_pwrRegisterNotify                                           
    0000e8a1  ICallPlatform_pwrRequire                                                  
    0001f081  ICallPlatform_pwrSwitchXOSCHF                                             
    0000ac9d  ICallPlatform_pwrUpdActivityCounter                                       
    0000aa35  ICall_createRemoteTasks                                                   
    20001938  ICall_dispatcher                                                          
    0000e6e5  ICall_enterCSImpl                                                         
    20001940  ICall_enterCriticalSection                                                
    0000db45  ICall_freeImpl                                                            
    0000db45  ICall_heapFree                                                            
    0000b189  ICall_heapInit                                                            
    0000a7a5  ICall_heapMalloc                                                          
    0000de1d  ICall_init                                                                
    0000eab7  ICall_leaveCSImpl                                                         
    20001944  ICall_leaveCriticalSection                                                
    0001f0f3  ICall_mallocImpl                                                          
    0000d3c5  ICall_searchServiceEntity                                                 
    10015a35  IMPORTDATA                                                                
    100159a9  IMPORTLENGTH                                                              
    100159ad  IMPORTMODULUS                                                             
    100159d1  IMPORTOPERAND                                                             
    1001568d  INVERT                                                                    
    10016da1  InvAddRoundKey_Sw                                                         
    10016ed5  InvMixColumns_Sw                                                          
    10016dc9  InvRoundKey_Sw                                                            
    10017264  InvSbox                                                                   
    10016ea1  InvShiftRows_Sw                                                           
    10016e8d  InvSubBytes_Sw                                                            
    100154f5  JACADD                                                                    
    0001f434  LED_ServiceCBs                                                            
    20004fe8  LEN                                                                       
    100158ac  LUTC                                                                      
    100158dc  LUTINCI                                                                   
    100158f4  LUTJ                                                                      
    1001588c  LUTOPCODE                                                                 
    10015894  LUTOPSIGN                                                                 
    100158c4  LUTSE                                                                     
    1001596c  LUTSTATE                                                                  
    0001f675  LedServiceUUID                                                            
    00009b49  LedService_AddService                                                     
    000097cd  LedService_RegisterAppCBs                                                 
    00004c21  LedService_SetParameter                                                   
    0001f095  List_empty                                                                
    0001f179  List_head                                                                 
    0001f17d  List_next                                                                 
    0000dfd5  List_put                                                                  
    0000e719  List_remove                                                               
    10018825  MB_ClearInts                                                              
    100187f5  MB_DisableInts                                                            
    10018835  MB_EnableHWInts                                                           
    10018799  MB_EnableInts                                                             
    10018945  MB_FwDebugDump                                                            
    10018755  MB_Init                                                                   
    10018935  MB_ReadMailboxStatus                                                      
    1001893d  MB_RegisterIsrCback                                                       
    10018865  MB_SendCommand                                                            
    100188a5  MB_SendCommandSynch                                                       
    20004fe4  MOD                                                                       
    20004fd8  MSBMOD                                                                    
    10016c79  MixColumns_Sw                                                             
    10018b9c  NIST_Curve_P256_Gx                                                        
    10018bc0  NIST_Curve_P256_Gy                                                        
    10018b54  NIST_Curve_P256_a                                                         
    10018b78  NIST_Curve_P256_b                                                         
    10018b0c  NIST_Curve_P256_p                                                         
    10018b30  NIST_Curve_P256_r                                                         
    0000eb0d  NOROM_AONRTCCurrent64BitValueGet                                          
    0000e949  NOROM_AONRTCCurrentCompareValueGet                                        
    0000ee69  NOROM_CPUcpsid                                                            
    0000ee75  NOROM_CPUcpsie                                                            
    0000cb51  NOROM_DDI16BitfieldRead                                                   
    0000c509  NOROM_DDI16BitfieldWrite                                                  
    0000e961  NOROM_I2CIntRegister                                                      
    0000d08d  NOROM_IntRegister                                                         
    0000e5e9  NOROM_OSCClockSourceGet                                                   
    0000c345  NOROM_OSCClockSourceSet                                                   
    0000e979  NOROM_RFCCpeIntGetAndClear                                                
    0000e2f9  NOROM_RFCDoorbellSendTo                                                   
    00005f33  NOROM_RFCRTrim                                                            
    0000e319  NOROM_RFCRfTrimRead                                                       
    0000ec5d  NOROM_RFCRfTrimSet                                                        
    0000cd45  NOROM_RFCSynthPowerDown                                                   
    0000ed61  NOROM_VIMSModeGet                                                         
    0000b855  OSCHF_AttemptToSwitchToXosc                                               
    0000a611  OSCHF_GetStartupTime                                                      
    0000d3f9  OSCHF_SwitchToRcOscTurnOffXosc                                            
    0000e991  OSCHF_TurnOnXosc                                                          
    0000cd81  OSC_HPOSCRelativeFrequencyOffsetGet                                       
    10014c04  P1_ro                                                                     
    10019ffe  P1_ro_2                                                                   
    20004f40  P2_rw                                                                     
    20004f40  P2_s0                                                                     
    20004fac  P2_zi                                                                     
    0001f6b0  PINCC26XX_hwAttrs                                                         
    0000dc79  PINCC26XX_setMux                                                          
    20002964  PIN_HandleTable                                                           
    20002ba8  PIN_NumPins                                                               
    0000e4c7  PIN_close                                                                 
    0000eb21  PIN_getInputValue                                                         
    00005449  PIN_init                                                                  
    0000a225  PIN_open                                                                  
    0000ee81  PIN_registerIntCb                                                         
    0000b8b1  PIN_remove                                                                
    0000d42d  PIN_setConfig                                                             
    0000c551  PIN_setOutputEnable                                                       
    0000cdbd  PIN_setOutputValue                                                        
    0000b90d  PowerCC26XX_RCOSC_clockFunc                                               
    0000ad85  PowerCC26XX_auxISR                                                        
    0000b1f5  PowerCC26XX_calibrate                                                     
    0001f608  PowerCC26XX_config                                                        
    000063f9  PowerCC26XX_doCalibrate                                                   
    0000a611  PowerCC26XX_getXoscStartupTime                                            
    0000bbed  PowerCC26XX_initiateCalibration                                           
    0000d461  PowerCC26XX_isStableXOSC_HF                                               
    20001694  PowerCC26XX_module                                                        
    000094e9  PowerCC26XX_standbyPolicy                                                 
    0000debd  PowerCC26XX_switchXOSC_HF                                                 
    0000ee8d  Power_getConstraintMask                                                   
    0000cdf9  Power_getDependencyCount                                                  
    0000e4e5  Power_getTransitionLatency                                                
    0001f001  Power_getTransitionState                                                  
    0000e339  Power_idleFunc                                                            
    000079d5  Power_init                                                                
    0000dee5  Power_registerNotify                                                      
    0000a8ad  Power_releaseConstraint                                                   
    00007d1d  Power_releaseDependency                                                   
    0000b969  Power_setConstraint                                                       
    00008045  Power_setDependency                                                       
    000047d5  Power_sleep                                                               
    0000e359  Power_unregisterNotify                                                    
    0000cb91  ProjectZero_createTask                                                    
    200008f0  R                                                                         
    10017158  RCon                                                                      
    0001f618  RFCC26XX_hwAttrs                                                          
    10018415  RFHAL_AddTxDataEntry                                                      
    100184f9  RFHAL_AllocDataEntry                                                      
    100184a9  RFHAL_AllocDataEntryQueue                                                 
    10018315  RFHAL_AllocRatChan                                                        
    100185e1  RFHAL_BuildDataEntryRingBuffer                                            
    10018669  RFHAL_BuildLinkedBuffer                                                   
    10018551  RFHAL_BuildRingBuffer                                                     
    10018549  RFHAL_FreeDataEntry                                                       
    100184c5  RFHAL_FreeDataEntryQueue                                                  
    10018485  RFHAL_FreeNextTxDataEntry                                                 
    1001833d  RFHAL_FreeRatChan                                                         
    100184cd  RFHAL_GetNextDataEntry                                                    
    100184d1  RFHAL_GetTempDataEntry                                                    
    100183b9  RFHAL_InitDataQueue                                                       
    100182ad  RFHAL_InitRfHal                                                           
    10018369  RFHAL_MapRatChansToInt                                                    
    100184d5  RFHAL_NextDataEntryDone                                                   
    100183c5  RFHAL_QueueRFDataEntries                                                  
    10018391  RFHAL_RegisterRatChanCallback                                             
    0000d7ed  RF_Params_init                                                            
    000049fd  RF_cancelCmd                                                              
    00007e31  RF_close                                                                  
    0001f0d7  RF_flushCmd                                                               
    0000e63d  RF_getCmdOp                                                               
    0000b3a1  RF_getCurrentTime                                                         
    0000b409  RF_getInfo                                                                
    0000c5e1  RF_getRssi                                                                
    00008e81  RF_open                                                                   
    00008bd9  RF_pendCmd                                                                
    00004e3d  RF_postCmd                                                                
    00009ca1  RF_ratCapture                                                             
    0000b60d  RF_ratCompare                                                             
    0000a931  RF_ratDisableChannel                                                      
    0000e08d  RF_ratHwOutput                                                            
    0000c629  RF_runCmd                                                                 
    0000ce35  RF_runDirectCmd                                                           
    0000ce71  RF_runImmediateCmd                                                        
    0000a0f5  RF_yield                                                                  
    0000ec6d  RegisterAssertCback                                                       
    0000c861  ResetISR                                                                  
    10016b79  RoundKey_Sw                                                               
    10015101  SAVEPOINT                                                                 
    20004f68  SCAL                                                                      
    100150e5  SCALARMUL                                                                 
    10014ced  SCALARMUL_core                                                            
    10015019  SCALARMUL_final                                                           
    10014c05  SCALARMUL_init                                                            
    10015a51  SETOPERAND                                                                
    10015a91  SETWORD                                                                   
    10018089  SHA256_final                                                              
    10018129  SHA256_full                                                               
    10017ffd  SHA256_init                                                               
    10017ef1  SHA256_nextState                                                          
    10018019  SHA256_process                                                            
    10017e75  SHA256_round                                                              
    10017f49  SHA256_saveBuffer                                                         
    10017e39  SHA256_updateW                                                            
    UNDEFED   SHT$$INIT_ARRAY$$Base                                                     
    UNDEFED   SHT$$INIT_ARRAY$$Limit                                                    
    10015821  SQUAREMULTIPLYWORD                                                        
    10017895  SSP_CCM_Auth_Encrypt_Sw                                                   
    10017365  SSP_CCM_Auth_Sw                                                           
    1001767d  SSP_CCM_Decrypt_Sw                                                        
    100174fd  SSP_CCM_Encrypt_Sw                                                        
    100178f5  SSP_CCM_InvAuth_Decrypt_Sw                                                
    10017839  SSP_CCM_InvAuth_Sw                                                        
    10017771  SSP_CTR_Decrypt_Sw                                                        
    100175ed  SSP_CTR_Encrypt_Sw                                                        
    0000df0d  SafeHapiVoid                                                              
    10017164  Sbox                                                                      
    10015215  SelectReg                                                                 
    10016c45  ShiftRows_Sw                                                              
    0000ed6f  SignExtendVddrTrimValue                                                   
    0000b9c5  SysCtrlAdjustRechargeAfterPowerDown                                       
    00005051  SysCtrlSetRechargeBeforePowerDown                                         
    0000b471  SysCtrl_DCDC_VoltageConditionalControl                                    
    20004f88  TMP1                                                                      
    20004f8c  TMP2                                                                      
    20004f90  TMP3                                                                      
    20004f94  TMP4                                                                      
    20004f98  TMP5                                                                      
    20004f9c  TMP6                                                                      
    0000eb35  ThisCodeIsBuiltForCC26xxHwRev22AndLater_HaltIfViolated                    
    00008da1  UARTCC26XX_close                                                          
    0000bc45  UARTCC26XX_control                                                        
    0001f4ec  UARTCC26XX_fxnTable                                                       
    000069c9  UARTCC26XX_hwiIntFxn                                                      
    0000e9c1  UARTCC26XX_init                                                           
    0000211d  UARTCC26XX_open                                                           
    00005629  UARTCC26XX_read                                                           
    00008725  UARTCC26XX_readCancel                                                     
    0001f0f9  UARTCC26XX_readPolling                                                    
    00009031  UARTCC26XX_swiIntFxn                                                      
    000035b5  UARTCC26XX_write                                                          
    00007aed  UARTCC26XX_writeCancel                                                    
    0001f0ff  UARTCC26XX_writePolling                                                   
    0001f5c4  UART_config                                                               
    0001f564  UART_defaultParams                                                        
    0000d0c5  UART_init                                                                 
    0000d84d  UART_open                                                                 
    0001f09f  UART_write                                                                
    0001f00d  UartLog_doInit                                                            
    0000d4c9  Util_constructClock                                                       
    0000c035  Util_convertBdAddr2Str                                                    
    0000ec7d  Util_isActive                                                             
    0000d0fd  Util_restartClock                                                         
    0001f185  Util_stopClock                                                            
    10015a85  ZERO                                                                      
    00000000  __ASM__                                                                   
    00000087  __ISA__                                                                   
    00000099  __PLAT__                                                                  
    20004368  __STACK_END                                                               
    00000400  __STACK_SIZE                                                              
    20004368  __STACK_TOP                                                               
    000000c0  __TARG__                                                                  
    0001fcd8  __TI_CINIT_Base                                                           
    0001fd48  __TI_CINIT_Limit                                                          
    0001fc54  __TI_Handler_Table_Base                                                   
    0001fc60  __TI_Handler_Table_Limit                                                  
    00009d49  __TI_auto_init                                                            
    20001ca4  __TI_cleanup_ptr                                                          
    0000ed7d  __TI_decompress_none                                                      
    0001f111  __TI_decompress_rle24                                                     
    20001ca8  __TI_dtors_ptr                                                            
    00000000  __TI_static_base__                                                        
    0001f019  __TI_zero_init                                                            
    000000e5  __TRDR__                                                                  
    0000a699  __aeabi_cdcmpeq                                                           
    0000a699  __aeabi_cdcmple                                                           
    0000a71f  __aeabi_cdrcmple                                                          
    0000b0a9  __aeabi_d2f                                                               
    0000c749  __aeabi_d2iz                                                              
    0000c935  __aeabi_d2uiz                                                             
    00005d87  __aeabi_dadd                                                              
    00008339  __aeabi_dmul                                                              
    00005d7d  __aeabi_dsub                                                              
    0000d1a5  __aeabi_f2d                                                               
    00008535  __aeabi_fadd                                                              
    0000aba9  __aeabi_fmul                                                              
    00008531  __aeabi_fsub                                                              
    0000dabf  __aeabi_i2d                                                               
    0000862b  __aeabi_idiv0                                                             
    0000ea21  __aeabi_lmul                                                              
    0000ac23  __aeabi_memclr                                                            
    0000ac23  __aeabi_memclr4                                                           
    0000ac23  __aeabi_memclr8                                                           
    00009f25  __aeabi_memcpy                                                            
    00009f25  __aeabi_memcpy4                                                           
    00009f25  __aeabi_memcpy8                                                           
    0000ac25  __aeabi_memset                                                            
    0000ac25  __aeabi_memset4                                                           
    0000ac25  __aeabi_memset8                                                           
    0000e3b9  __aeabi_ui2d                                                              
    0000e0f9  __aeabi_ui2f                                                              
    0000cbd1  __aeabi_uidiv                                                             
    0000cbd1  __aeabi_uidivmod                                                          
    00005255  __aeabi_uldivmod                                                          
    ffffffff  __binit__                                                                 
    0001f74c  __c_args__                                                                
    0001ffa8  __ccfg                                                                    
    10019ffe  __checksum_CommonROM                                                      
    10014c00  __checksum_begin_CommonROM                                                
    10019ffd  __checksum_end_CommonROM                                                  
    0000e0ea  __checksum_value_CommonROM                                                
    10018ced  __exit                                                                    
    20003f68  __stack                                                                   
    0001f105  __xdc__init                                                               
    20001884  __xdc__init__addr                                                         
    0000ea09  _args_main                                                                
    0000c861  _c_int00                                                                  
    20001c9c  _lock                                                                     
    0000eb49  _nop                                                                      
    0000eb51  _register_lock                                                            
    0000eb4b  _register_unlock                                                          
    20001ca0  _unlock                                                                   
    0000c8f5  abort                                                                     
    20001cb4  appAssertCback                                                            
    0001f4da  appearanceUUID                                                            
    20004fdc  aux64                                                                     
    20000dc5  bank                                                                      
    ffffffff  binit                                                                     
    0001f3d8  bs_BUTTON0UUID                                                            
    0001f3e8  bs_BUTTON1UUID                                                            
    20000954  buttonPinTable                                                            
    0001f4d6  charAggFormatUUID                                                         
    0001f4ce  charExtPropsUUID                                                          
    0001f4d4  charFormatUUID                                                            
    0001f4d0  charUserDescUUID                                                          
    0001f4c2  characterUUID                                                             
    20000dc2  chip                                                                      
    0001f4c4  clientCharCfgUUID                                                         
    200009fc  codigo_balanza                                                            
    20000dd8  contador                                                                  
    0000ba21  conversion_mt8442_ascii                                                   
    0000ba7d  conversion_mt8442_ext_ascii                                               
    00003311  conversion_mt8442_ext_hex                                                 
    00006271  conversion_mt8442_hex                                                     
    0000e399  convert_uint2char                                                         
    0000c3dd  copy_in                                                                   
    20000dc3  data_pointer                                                              
    20000f48  db_TaskStack                                                              
    20000e14  db_eb                                                                     
    20000df0  db_ledPinTable                                                            
    20000dd4  db_taskHandle                                                             
    20000e44  db_taskParams                                                             
    20000dc7  decimalpoint_peso                                                         
    20000dc6  decimalpoint_precio                                                       
    0001f604  devInfo11073CertUUID                                                      
    0001f624  devInfoCBs                                                                
    0001f5fc  devInfoFirmwareRevUUID                                                    
    0001f5fe  devInfoHardwareRevUUID                                                    
    0001f602  devInfoMfrNameUUID                                                        
    0001f5f8  devInfoModelNumberUUID                                                    
    0001f606  devInfoPnpIdUUID                                                          
    0001f5fa  devInfoSerialNumberUUID                                                   
    0001f5f4  devInfoServUUID                                                           
    0001f600  devInfoSoftwareRevUUID                                                    
    0001f5f6  devInfoSystemIdUUID                                                       
    0001f4d8  deviceNameUUID                                                            
    200008e0  dispHandle                                                                
    00008141  display_balanza_createTask                                                
    00009e89  display_balanza_getData                                                   
    000012f5  display_balanza_init                                                      
    00009429  display_balanza_taskFxn                                                   
    00006b29  display_getPesoPrecio                                                     
    000060d5  display_hex2int                                                           
    20002bd4  driverlib_release_0_45566                                                 
    0001f41c  ds_StreamUUID                                                             
    0001f40c  ds_StringUUID                                                             
    10017dbd  eccRom_genKeys                                                            
    10017ded  eccRom_genSharedSecret                                                    
    20004fa0  eccRom_param_Gx                                                           
    20004fa4  eccRom_param_Gy                                                           
    20004f50  eccRom_param_a                                                            
    20004fa8  eccRom_param_b                                                            
    20004f48  eccRom_param_p                                                            
    20004f4c  eccRom_param_r                                                            
    20004f40  eccRom_windowSize                                                         
    20004f44  eccRom_workzone                                                           
    0000c8fd  exit                                                                      
    0001f4e6  extReportRefUUID                                                          
    200008c0  flag                                                                      
    20004fcc  fwInfoCmd                                                                 
    20002c00  g_pfnRAMVectors                                                           
    2000125c  gapRoleTask                                                               
    200012ac  gapRoleTaskStack                                                          
    0000e9f1  gapRole_clockHandler                                                      
    0001f4c6  gapServiceUUID                                                            
    0001f4c8  gattServiceUUID                                                           
    20003f68  heapEnd                                                                   
    20002cc8  heapStart                                                                 
    20000dc0  i                                                                         
    20000e80  i2cDataArray                                                              
    20000ee4  i2cDataArray_datapointer                                                  
    20000e08  i2cPinTable                                                               
    20004f58  inPointX                                                                  
    20004f5c  inPointY                                                                  
    20004f54  inScalar                                                                  
    0001f4cc  includeUUID                                                               
    200008e4  largo_codigo                                                              
    200008b8  largo_teclado_mt8224                                                      
    200008bc  largo_teclado_mt8224_ext                                                  
    20001c88  lastAppOpcodeSent                                                         
    20000948  ledPinTable                                                               
    20001148  linkDBNumConns                                                            
    0000d135  linkDB_NumConns                                                           
    0001f440  ls_LED0UUID                                                               
    0001f450  ls_LED1UUID                                                               
    10016551  mADD                                                                      
    10015bd5  mINVK                                                                     
    10015f81  mMULT                                                                     
    10016749  mOUT                                                                      
    10015a9d  mSET                                                                      
    1001664d  mSUB                                                                      
    0000cead  main                                                                      
    20001cbc  main_func_sp                                                              
    0000da5b  malloc                                                                    
    10018949  mbCmdAckIsr                                                               
    1001895d  mbCpe0Isr                                                                 
    10018985  mbCpe1Isr                                                                 
    100189e5  mbHwIsr                                                                   
    0000e1f7  memcmp                                                                    
    00009f25  memcpy                                                                    
    0000ac2b  memset                                                                    
    20000dc4  mode_set                                                                  
    20000a24  multiplexorPinTable                                                       
    0000d4fd  osal_snv_read                                                             
    0000d531  osal_snv_write                                                            
    20004f60  outPointX                                                                 
    20004f64  outPointY                                                                 
    20004ffc  pSspAesEncrypt_Sw                                                         
    0001f4e0  periConnParamUUID                                                         
    0001f4dc  periPrivacyFlagUUID                                                       
    20000ddc  peso                                                                      
    20001c8c  pfnBMAlloc                                                                
    20001c90  pfnBMFree                                                                 
    20000dc8  posiciondatapointer_chip                                                  
    20000de0  precio                                                                    
    0001f4c0  primaryServiceUUID                                                        
    20000a50  przTask                                                                   
    20000aa0  przTaskStack                                                              
    20004fac  ratChanInfo                                                               
    0001f4de  reconnectAddrUUID                                                         
    0001f4e8  reportRefUUID                                                             
    0001f268  resourceDB                                                                
    0001f2b4  rfDriverTable                                                             
    20001ab4  rfRegTbl                                                                  
    0001f4ca  secondaryServiceUUID                                                      
    0001f4d2  servCharCfgUUID                                                           
    0001f4e2  serviceChangedUUID                                                        
    10016d29  sspAesDecrypt_Sw                                                          
    10016af5  sspAesEncryptBasic_Sw                                                     
    10016a99  sspAesEncryptKeyExp_Sw                                                    
    10016979  sspAesEncrypt_Sw                                                          
    10016985  sspKeyExpansion_Sw                                                        
    10016975  ssp_KeyInit_Sw                                                            
    20000dc1  start                                                                     
    0000eb5d  strlen                                                                    
    200001a4  ti_sysbios_BIOS_Module__state__V                                          
    1001bc29  ti_sysbios_BIOS_RtsGateProxy_Handle__label__S                             
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_Handle__label__S__mangled__                  
    1001bab9  ti_sysbios_BIOS_RtsGateProxy_Object__delete__S                            
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_Object__delete__S__mangled__                 
    1001c179  ti_sysbios_BIOS_RtsGateProxy_Params__init__S                              
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_Params__init__S__mangled__                   
    1001c249  ti_sysbios_BIOS_RtsGateProxy_enter__E                                     
    1001c24d  ti_sysbios_BIOS_RtsGateProxy_leave__E                                     
    1001c275  ti_sysbios_BIOS_RtsGateProxy_query__E                                     
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_query__E__mangled__                          
    0000d87d  ti_sysbios_BIOS_atExitFunc__I                                             
    0000eae3  ti_sysbios_BIOS_exitFunc__I                                               
    1001c035  ti_sysbios_BIOS_exit__E                                                   
    1001bff9  ti_sysbios_BIOS_getCpuFreq__E                                             
    0001f031  ti_sysbios_BIOS_getThreadType__E                                          
    0000a05b  ti_sysbios_BIOS_nullFunc__I                                               
    0000e11d  ti_sysbios_BIOS_registerRTSLock__I                                        
    0000e141  ti_sysbios_BIOS_removeRTSLock__I                                          
    0000e3d9  ti_sysbios_BIOS_rtsLock__I                                                
    0000ea51  ti_sysbios_BIOS_rtsUnlock__I                                              
    1001c045  ti_sysbios_BIOS_setThreadType__E                                          
    0000e165  ti_sysbios_BIOS_startFunc__I                                              
    1001c055  ti_sysbios_BIOS_start__E                                                  
    00009de9  ti_sysbios_family_arm_cc26xx_Boot_trimDevice                              
    00000502  ti_sysbios_family_arm_cc26xx_Timer_Module__id__C                          
    200017a0  ti_sysbios_family_arm_cc26xx_Timer_Module__root__V                        
    1001bb49  ti_sysbios_family_arm_cc26xx_Timer_Module__startupDone__S                 
    200001e4  ti_sysbios_family_arm_cc26xx_Timer_Module__state__V                       
    1001ba71  ti_sysbios_family_arm_cc26xx_Timer_Module_startup__E                      
    20001b50  ti_sysbios_family_arm_cc26xx_Timer_Object__table__V                       
    0000e6ad  ti_sysbios_family_arm_cc26xx_Timer_dynamicStub__E                         
    0001f191  ti_sysbios_family_arm_cc26xx_Timer_getCount64__E                          
    0000d1dd  ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E                      
    1001c251  ti_sysbios_family_arm_cc26xx_Timer_getExpiredTicks__E                     
    0000df5d  ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E                         
    1001c255  ti_sysbios_family_arm_cc26xx_Timer_getPeriod__E                           
    0000d8ad  ti_sysbios_family_arm_cc26xx_Timer_initDevice__I                          
    1001a469  ti_sysbios_family_arm_cc26xx_Timer_periodicStub__E                        
    1001b769  ti_sysbios_family_arm_cc26xx_Timer_postInit__I                            
    0000d6fb  ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E                         
    1001c259  ti_sysbios_family_arm_cc26xx_Timer_setPeriod__E                           
    0000d8dd  ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I                        
    0000b6d5  ti_sysbios_family_arm_cc26xx_Timer_start__E                               
    00000484  ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C                       
    1001b795  ti_sysbios_family_arm_cc26xx_Timer_startup__E                             
    200001ec  ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V           
    1001bb69  ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_startup__E          
    0000eddf  ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E                   
    1001b9d1  ti_sysbios_family_arm_cc26xx_TimestampProvider_get64__E                   
    1001c12f  ti_sysbios_family_arm_cc26xx_TimestampProvider_getFreq__E                 
    00000504  ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C           
    0001f6d4  ti_sysbios_family_arm_m3_Hwi_E_NMI__C                                     
    00000488  ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C                          
    0001f6d8  ti_sysbios_family_arm_m3_Hwi_E_busFault__C                                
    0001f6dc  ti_sysbios_family_arm_m3_Hwi_E_debugMon__C                                
    0001f6e0  ti_sysbios_family_arm_m3_Hwi_E_hardFault__C                               
    0000048c  ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C                        
    0001f6e4  ti_sysbios_family_arm_m3_Hwi_E_memFault__C                                
    0001f6e8  ti_sysbios_family_arm_m3_Hwi_E_noIsr__C                                   
    0001f6ec  ti_sysbios_family_arm_m3_Hwi_E_reserved__C                                
    0001f6f0  ti_sysbios_family_arm_m3_Hwi_E_svCall__C                                  
    0001f6f4  ti_sysbios_family_arm_m3_Hwi_E_usageFault__C                              
    0000e401  ti_sysbios_family_arm_m3_Hwi_Handle__label__S                             
    1001aed1  ti_sysbios_family_arm_m3_Hwi_Instance_finalize__E                         
    1001a3c9  ti_sysbios_family_arm_m3_Hwi_Instance_init__E                             
    200017c8  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A                  
    200017cc  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A                 
    200017d0  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A                   
    00000506  ti_sysbios_family_arm_m3_Hwi_Module__id__C                                
    200017a8  ti_sysbios_family_arm_m3_Hwi_Module__root__V                              
    1001bb89  ti_sysbios_family_arm_m3_Hwi_Module__startupDone__S                       
    20000144  ti_sysbios_family_arm_m3_Hwi_Module__state__V                             
    1001b1c1  ti_sysbios_family_arm_m3_Hwi_Module_startup__E                            
    00000490  ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C                            
    000002d0  ti_sysbios_family_arm_m3_Hwi_Object__DESC__C                              
    00000170  ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C                            
    00000494  ti_sysbios_family_arm_m3_Hwi_Object__count__C                             
    1001aab1  ti_sysbios_family_arm_m3_Hwi_Object__create__S                            
    1001bba9  ti_sysbios_family_arm_m3_Hwi_Object__delete__S                            
    1001be69  ti_sysbios_family_arm_m3_Hwi_Object__destruct__S                          
    1001b7c1  ti_sysbios_family_arm_m3_Hwi_Object__get__S                               
    00000498  ti_sysbios_family_arm_m3_Hwi_Object__table__C                             
    200017b0  ti_sysbios_family_arm_m3_Hwi_Object__table__V                             
    1001c13d  ti_sysbios_family_arm_m3_Hwi_Params__init__S                              
    0000049c  ti_sysbios_family_arm_m3_Hwi_ccr__C                                       
    1001af29  ti_sysbios_family_arm_m3_Hwi_construct                                    
    1001ab15  ti_sysbios_family_arm_m3_Hwi_create                                       
    1001c25d  ti_sysbios_family_arm_m3_Hwi_delete                                       
    1001c261  ti_sysbios_family_arm_m3_Hwi_destruct                                     
    1001c149  ti_sysbios_family_arm_m3_Hwi_disableFxn__E                                
    1001b299  ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E                          
    1001aa49  ti_sysbios_family_arm_m3_Hwi_dispatchC__I                                 
    2000289c  ti_sysbios_family_arm_m3_Hwi_dispatchTable                                
    1001c89d  ti_sysbios_family_arm_m3_Hwi_dispatch__I                                  
    1001c1fb  ti_sysbios_family_arm_m3_Hwi_doSwiRestore__I                              
    1001c213  ti_sysbios_family_arm_m3_Hwi_doTaskRestore__I                             
    1001c155  ti_sysbios_family_arm_m3_Hwi_enableFxn__E                                 
    1001b2dd  ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E                           
    000066f1  ti_sysbios_family_arm_m3_Hwi_excBusFault__I                               
    00009881  ti_sysbios_family_arm_m3_Hwi_excDebugMon__I                               
    00000ae5  ti_sysbios_family_arm_m3_Hwi_excDumpRegs__I                               
    00008435  ti_sysbios_family_arm_m3_Hwi_excFillContext__I                            
    1001ca01  ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I                             
    000004a0  ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C                            
    00008aed  ti_sysbios_family_arm_m3_Hwi_excHandlerMax__I                             
    1001bbc9  ti_sysbios_family_arm_m3_Hwi_excHandler__I                                
    00009935  ti_sysbios_family_arm_m3_Hwi_excHardFault__I                              
    0001f6b8  ti_sysbios_family_arm_m3_Hwi_excHookFuncs__A                              
    0001f6f8  ti_sysbios_family_arm_m3_Hwi_excHookFuncs__C                              
    00007089  ti_sysbios_family_arm_m3_Hwi_excMemFault__I                               
    0000d599  ti_sysbios_family_arm_m3_Hwi_excNmi__I                                    
    0000d215  ti_sysbios_family_arm_m3_Hwi_excNoIsr__I                                  
    0000c791  ti_sysbios_family_arm_m3_Hwi_excReserved__I                               
    0000cfe1  ti_sysbios_family_arm_m3_Hwi_excSvCall__I                                 
    00006c85  ti_sysbios_family_arm_m3_Hwi_excUsageFault__I                             
    0000ec8d  ti_sysbios_family_arm_m3_Hwi_getHandle__E                                 
    1001b465  ti_sysbios_family_arm_m3_Hwi_getStackInfo__E                              
    1001a699  ti_sysbios_family_arm_m3_Hwi_initNVIC__E                                  
    1001c9b9  ti_sysbios_family_arm_m3_Hwi_initStacks__E                                
    000004a4  ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C                               
    000004a8  ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C                       
    e000e000  ti_sysbios_family_arm_m3_Hwi_nvic                                         
    1001ca3f  ti_sysbios_family_arm_m3_Hwi_pendSV__I                                    
    1001c065  ti_sysbios_family_arm_m3_Hwi_plug__E                                      
    1001a319  ti_sysbios_family_arm_m3_Hwi_postInit__I                                  
    0000ec9d  ti_sysbios_family_arm_m3_Hwi_post__E                                      
    000004ac  ti_sysbios_family_arm_m3_Hwi_priGroup__C                                  
    20000000  ti_sysbios_family_arm_m3_Hwi_ramVectors                                   
    00000000  ti_sysbios_family_arm_m3_Hwi_resetVectors                                 
    1001c219  ti_sysbios_family_arm_m3_Hwi_restoreFxn__E                                
    1001ca57  ti_sysbios_family_arm_m3_Hwi_return                                       
    0001f16b  ti_sysbios_family_arm_m3_Hwi_setFunc__E                                   
    1001be85  ti_sysbios_family_arm_m3_Hwi_setPriority__E                               
    1001c203  ti_sysbios_family_arm_m3_Hwi_startup__E                                   
    1001c00d  ti_sysbios_family_arm_m3_Hwi_switchFromBootStack__E                       
    1001c265  ti_sysbios_family_arm_m3_TaskSupport_Module__startupDone__S               
    1001c96d  ti_sysbios_family_arm_m3_TaskSupport_buildTaskStack                       
    1001c161  ti_sysbios_family_arm_m3_TaskSupport_getStackAlignment__E                 
    1001ca59  ti_sysbios_family_arm_m3_TaskSupport_glue                                 
    000004b0  ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C                    
    1001b49d  ti_sysbios_family_arm_m3_TaskSupport_start__E                             
    1001ca69  ti_sysbios_family_arm_m3_TaskSupport_swap__E                              
    1001ca21  ti_sysbios_family_xxx_Hwi_switchAndRunFunc                                
    1001bbe9  ti_sysbios_gates_GateHwi_Handle__label__S                                 
    1001b463  ti_sysbios_gates_GateHwi_Instance_init__E                                 
    0000021c  ti_sysbios_gates_GateHwi_Module__FXNS__C                                  
    00000508  ti_sysbios_gates_GateHwi_Module__id__C                                    
    200017d4  ti_sysbios_gates_GateHwi_Module__root__V                                  
    000002f0  ti_sysbios_gates_GateHwi_Object__DESC__C                                  
    00000430  ti_sysbios_gates_GateHwi_Object__PARAMS__C                                
    1001ba95  ti_sysbios_gates_GateHwi_Object__create__S                                
    1001bc09  ti_sysbios_gates_GateHwi_Object__delete__S                                
    200017dc  ti_sysbios_gates_GateHwi_Object__table__V                                 
    1001c16d  ti_sysbios_gates_GateHwi_enter__E                                         
    1001c21f  ti_sysbios_gates_GateHwi_leave__E                                         
    1001c269  ti_sysbios_gates_GateHwi_query__E                                         
    1001bc29  ti_sysbios_gates_GateMutex_Handle__label__S                               
    000005cc  ti_sysbios_gates_GateMutex_Instance_State_sem__O                          
    1001c075  ti_sysbios_gates_GateMutex_Instance_finalize__E                           
    1001bea1  ti_sysbios_gates_GateMutex_Instance_init__E                               
    00000240  ti_sysbios_gates_GateMutex_Module__FXNS__C                                
    0000050a  ti_sysbios_gates_GateMutex_Module__id__C                                  
    200017e0  ti_sysbios_gates_GateMutex_Module__root__V                                
    00000310  ti_sysbios_gates_GateMutex_Object__DESC__C                                
    00000448  ti_sysbios_gates_GateMutex_Object__PARAMS__C                              
    1001b649  ti_sysbios_gates_GateMutex_Object__create__S                              
    1001bab9  ti_sysbios_gates_GateMutex_Object__delete__S                              
    1001bc49  ti_sysbios_gates_GateMutex_Object__destruct__S                            
    20001b98  ti_sysbios_gates_GateMutex_Object__table__V                               
    1001c179  ti_sysbios_gates_GateMutex_Params__init__S                                
    1001b7ed  ti_sysbios_gates_GateMutex_construct                                      
    1001b679  ti_sysbios_gates_GateMutex_create                                         
    1001c26d  ti_sysbios_gates_GateMutex_delete                                         
    1001c271  ti_sysbios_gates_GateMutex_destruct                                       
    1001b6a9  ti_sysbios_gates_GateMutex_enter__E                                       
    1001bf9d  ti_sysbios_gates_GateMutex_leave__E                                       
    1001c275  ti_sysbios_gates_GateMutex_query__E                                       
    0000e401  ti_sysbios_hal_Hwi_HwiProxy_Handle__label__S                              
    1001c279  ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S                        
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S__mangled__             
    1001c085  ti_sysbios_hal_Hwi_HwiProxy_Object__create__S                             
    1001bba9  ti_sysbios_hal_Hwi_HwiProxy_Object__delete__S                             
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_Object__delete__S__mangled__                  
    1001c13d  ti_sysbios_hal_Hwi_HwiProxy_Params__init__S                               
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_Params__init__S__mangled__                    
    1001be49  ti_sysbios_hal_Hwi_HwiProxy_create                                        
    1001c27d  ti_sysbios_hal_Hwi_HwiProxy_delete                                        
    1001c281  ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E                           
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E__mangled__                
    1001c285  ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E                            
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E__mangled__                 
    1001c289  ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E                               
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E__mangled__                    
    0000ec9d  ti_sysbios_hal_Hwi_HwiProxy_post__E                                       
    1001c28d  ti_sysbios_hal_Hwi_HwiProxy_startup__E                                    
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_startup__E__mangled__                         
    1001c291  ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E                        
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E__mangled__             
    1001c1f1  ti_sysbios_hal_Hwi_Instance_finalize__E                                   
    1001b9f9  ti_sysbios_hal_Hwi_Instance_init__E                                       
    200017e8  ti_sysbios_hal_Hwi_Module__root__V                                        
    1001c021  ti_sysbios_hal_Hwi_Module_startup__E                                      
    00000330  ti_sysbios_hal_Hwi_Object__DESC__C                                        
    000001a0  ti_sysbios_hal_Hwi_Object__PARAMS__C                                      
    1001bc69  ti_sysbios_hal_Hwi_Object__delete__S                                      
    0001f03d  ti_sysbios_hal_Hwi_Params__init__S                                        
    1001ab79  ti_sysbios_hal_Hwi_create                                                 
    1001c295  ti_sysbios_hal_Hwi_delete                                                 
    1001c281  ti_sysbios_hal_Hwi_disableInterrupt__E                                    
    UNDEFED   ti_sysbios_hal_Hwi_disableInterrupt__E                                    
    1001c285  ti_sysbios_hal_Hwi_enableInterrupt__E                                     
    UNDEFED   ti_sysbios_hal_Hwi_enableInterrupt__E                                     
    1001c289  ti_sysbios_hal_Hwi_getStackInfo__E                                        
    UNDEFED   ti_sysbios_hal_Hwi_getStackInfo__E                                        
    1001b819  ti_sysbios_hal_Hwi_initStack                                              
    0000ec9d  ti_sysbios_hal_Hwi_post__E                                                
    1001c28d  ti_sysbios_hal_Hwi_startup__E                                             
    UNDEFED   ti_sysbios_hal_Hwi_startup__E                                             
    1001c299  ti_sysbios_hal_Hwi_switchFromBootStack__E                                 
    UNDEFED   ti_sysbios_hal_Hwi_switchFromBootStack__E                                 
    000004b4  ti_sysbios_heaps_HeapMem_E_memory__C                                      
    1001bc89  ti_sysbios_heaps_HeapMem_Handle__label__S                                 
    20001cc8  ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A                          
    1001b4d5  ti_sysbios_heaps_HeapMem_Instance_init__E                                 
    1001bc29  ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S                
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S__mangled__     
    1001bab9  ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__delete__S               
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__delete__S__mangled__    
    1001c179  ti_sysbios_heaps_HeapMem_Module_GateProxy_Params__init__S                 
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_Params__init__S__mangled__      
    1001c29d  ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E                        
    1001c2a1  ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E                        
    1001c275  ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E                        
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E__mangled__             
    000001cc  ti_sysbios_heaps_HeapMem_Module__FXNS__C                                  
    000004b8  ti_sysbios_heaps_HeapMem_Module__gateObj__C                               
    0000050c  ti_sysbios_heaps_HeapMem_Module__id__C                                    
    200017f0  ti_sysbios_heaps_HeapMem_Module__root__V                                  
    00000350  ti_sysbios_heaps_HeapMem_Object__DESC__C                                  
    00000264  ti_sysbios_heaps_HeapMem_Object__PARAMS__C                                
    000004bc  ti_sysbios_heaps_HeapMem_Object__count__C                                 
    1001b845  ti_sysbios_heaps_HeapMem_Object__create__S                                
    1001bca9  ti_sysbios_heaps_HeapMem_Object__delete__S                                
    1001b871  ti_sysbios_heaps_HeapMem_Object__get__S                                   
    000004c0  ti_sysbios_heaps_HeapMem_Object__table__C                                 
    200017f8  ti_sysbios_heaps_HeapMem_Object__table__V                                 
    1001a199  ti_sysbios_heaps_HeapMem_alloc__E                                         
    1001a795  ti_sysbios_heaps_HeapMem_free__E                                          
    1001b209  ti_sysbios_heaps_HeapMem_getStats__E                                      
    1001b545  ti_sysbios_heaps_HeapMem_init__I                                          
    1001c2a5  ti_sysbios_heaps_HeapMem_isBlocking__E                                    
    000004c4  ti_sysbios_heaps_HeapMem_reqAlign__C                                      
    1001c105  ti_sysbios_heaps_HeapMem_restore__E                                       
    1001bfcd  ti_sysbios_knl_Clock_Instance_finalize__E                                 
    1001b50d  ti_sysbios_knl_Clock_Instance_init__E                                     
    000005d0  ti_sysbios_knl_Clock_Module_State_clockQ__O                               
    20001810  ti_sysbios_knl_Clock_Module__root__V                                      
    20000178  ti_sysbios_knl_Clock_Module__state__V                                     
    1001bcc9  ti_sysbios_knl_Clock_Module_startup__E                                    
    00000370  ti_sysbios_knl_Clock_Object__DESC__C                                      
    00000288  ti_sysbios_knl_Clock_Object__PARAMS__C                                    
    1001badd  ti_sysbios_knl_Clock_Object__delete__S                                    
    1001bce9  ti_sysbios_knl_Clock_Object__destruct__S                                  
    20001818  ti_sysbios_knl_Clock_Object__table__V                                     
    1001c185  ti_sysbios_knl_Clock_Params__init__S                                      
    1001c2a9  ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S                    
    UNDEFED   ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S__mangled__         
    1001c095  ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E                         
    1001c2ad  ti_sysbios_knl_Clock_TimerProxy_getExpiredTicks__E                        
    1001c0a5  ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E                            
    1001c2b1  ti_sysbios_knl_Clock_TimerProxy_getPeriod__E                              
    1001c0b5  ti_sysbios_knl_Clock_TimerProxy_setNextTick__E                            
    1001b795  ti_sysbios_knl_Clock_TimerProxy_startup__E                                
    UNDEFED   ti_sysbios_knl_Clock_TimerProxy_startup__E__mangled__                     
    1001ba21  ti_sysbios_knl_Clock_addI__E                                              
    1001b579  ti_sysbios_knl_Clock_construct                                            
    1001b3ed  ti_sysbios_knl_Clock_create                                               
    1001c2b5  ti_sysbios_knl_Clock_delete                                               
    1001c2b9  ti_sysbios_knl_Clock_destruct                                             
    0000eb85  ti_sysbios_knl_Clock_doTick__I                                            
    0000dca5  ti_sysbios_knl_Clock_getTicksUntilInterrupt__E                            
    1001b6d9  ti_sysbios_knl_Clock_getTicks__E                                          
    1001c191  ti_sysbios_knl_Clock_getTimerHandle__E                                    
    0001f195  ti_sysbios_knl_Clock_isActive__E                                          
    1001be67  ti_sysbios_knl_Clock_logTick__E                                           
    1001c2bd  ti_sysbios_knl_Clock_removeI__E                                           
    1001bebd  ti_sysbios_knl_Clock_scheduleNextTick__E                                  
    000004c8  ti_sysbios_knl_Clock_serviceMargin__C                                     
    1001c2c1  ti_sysbios_knl_Clock_setTimeout__E                                        
    1001a719  ti_sysbios_knl_Clock_startI__E                                            
    1001bfe3  ti_sysbios_knl_Clock_start__E                                             
    0000e429  ti_sysbios_knl_Clock_stop__E                                              
    00000510  ti_sysbios_knl_Clock_tickMode__C                                          
    0001f6fc  ti_sysbios_knl_Clock_tickPeriod__C                                        
    0001f700  ti_sysbios_knl_Clock_triggerClock__C                                      
    0000b117  ti_sysbios_knl_Clock_triggerFunc__I                                       
    1001a80d  ti_sysbios_knl_Clock_walkQueueDynamic__E                                  
    0000a18d  ti_sysbios_knl_Clock_workFuncDynamic__E                                   
    1001a885  ti_sysbios_knl_Clock_workFunc__E                                          
    20001838  ti_sysbios_knl_Event_Module__root__V                                      
    0001f6c0  ti_sysbios_knl_Idle_funcList__A                                           
    00000478  ti_sysbios_knl_Idle_funcList__C                                           
    1001c20b  ti_sysbios_knl_Idle_loop__E                                               
    1001bd09  ti_sysbios_knl_Idle_run__E                                                
    000005d4  ti_sysbios_knl_Mailbox_Instance_State_dataQue__O                          
    000005d8  ti_sysbios_knl_Mailbox_Instance_State_dataSem__O                          
    000005dc  ti_sysbios_knl_Mailbox_Instance_State_freeQue__O                          
    000005e0  ti_sysbios_knl_Mailbox_Instance_State_freeSem__O                          
    1001a9dd  ti_sysbios_knl_Mailbox_Instance_finalize__E                               
    1001a001  ti_sysbios_knl_Mailbox_Instance_init__E                                   
    20001840  ti_sysbios_knl_Mailbox_Module__root__V                                    
    1001b251  ti_sysbios_knl_Mailbox_Module_startup__E                                  
    00000390  ti_sysbios_knl_Mailbox_Object__DESC__C                                    
    0000013c  ti_sysbios_knl_Mailbox_Object__PARAMS__C                                  
    000004cc  ti_sysbios_knl_Mailbox_Object__count__C                                   
    1001bd29  ti_sysbios_knl_Mailbox_Object__delete__S                                  
    1001bed9  ti_sysbios_knl_Mailbox_Object__destruct__S                                
    1001b89d  ti_sysbios_knl_Mailbox_Object__get__S                                     
    000004d0  ti_sysbios_knl_Mailbox_Object__table__C                                   
    1001c19d  ti_sysbios_knl_Mailbox_Params__init__S                                    
    1001af81  ti_sysbios_knl_Mailbox_construct                                          
    1001abdd  ti_sysbios_knl_Mailbox_create                                             
    1001c2c5  ti_sysbios_knl_Mailbox_delete                                             
    1001c2c9  ti_sysbios_knl_Mailbox_destruct                                           
    1001a8fd  ti_sysbios_knl_Mailbox_pend__E                                            
    1001b8c9  ti_sysbios_knl_Mailbox_postInit__I                                        
    1001a591  ti_sysbios_knl_Mailbox_post__E                                            
    1001c22b  ti_sysbios_knl_Queue_Instance_init__E                                     
    20001848  ti_sysbios_knl_Queue_Module__root__V                                      
    000003b0  ti_sysbios_knl_Queue_Object__DESC__C                                      
    00000460  ti_sysbios_knl_Queue_Object__PARAMS__C                                    
    000004d4  ti_sysbios_knl_Queue_Object__count__C                                     
    1001bd49  ti_sysbios_knl_Queue_Object__delete__S                                    
    1001bef5  ti_sysbios_knl_Queue_Object__destruct__S                                  
    1001bd69  ti_sysbios_knl_Queue_Object__get__S                                       
    000004d8  ti_sysbios_knl_Queue_Object__table__C                                     
    1001b8f5  ti_sysbios_knl_Queue_construct                                            
    1001b921  ti_sysbios_knl_Queue_create                                               
    1001c2cd  ti_sysbios_knl_Queue_delete                                               
    1001c1a9  ti_sysbios_knl_Queue_dequeue__E                                           
    1001c2d1  ti_sysbios_knl_Queue_destruct                                             
    1001c231  ti_sysbios_knl_Queue_elemClear__E                                         
    1001c113  ti_sysbios_knl_Queue_empty__E                                             
    1001c1b5  ti_sysbios_knl_Queue_enqueue__E                                           
    1001bf11  ti_sysbios_knl_Queue_get__E                                               
    1001c2d5  ti_sysbios_knl_Queue_head__E                                              
    1001c2d9  ti_sysbios_knl_Queue_next__E                                              
    1001bf2d  ti_sysbios_knl_Queue_put__E                                               
    1001c121  ti_sysbios_knl_Queue_remove__E                                            
    000005e4  ti_sysbios_knl_Semaphore_Instance_State_pendQ__O                          
    1001c0c5  ti_sysbios_knl_Semaphore_Instance_finalize__E                             
    1001bb01  ti_sysbios_knl_Semaphore_Instance_init__E                                 
    20001850  ti_sysbios_knl_Semaphore_Module__root__V                                  
    000003d0  ti_sysbios_knl_Semaphore_Object__DESC__C                                  
    000002ac  ti_sysbios_knl_Semaphore_Object__PARAMS__C                                
    1001bb25  ti_sysbios_knl_Semaphore_Object__delete__S                                
    1001bd89  ti_sysbios_knl_Semaphore_Object__destruct__S                              
    1001c1c1  ti_sysbios_knl_Semaphore_Params__init__S                                  
    1001b709  ti_sysbios_knl_Semaphore_construct                                        
    1001b5ad  ti_sysbios_knl_Semaphore_create                                           
    1001c2dd  ti_sysbios_knl_Semaphore_delete                                           
    1001c2e1  ti_sysbios_knl_Semaphore_destruct                                         
    1001b94d  ti_sysbios_knl_Semaphore_pendTimeout__I                                   
    1001a0cd  ti_sysbios_knl_Semaphore_pend__E                                          
    1001ac41  ti_sysbios_knl_Semaphore_post__E                                          
    0000e449  ti_sysbios_knl_Swi_Handle__label__S                                       
    1001bf9b  ti_sysbios_knl_Swi_Instance_finalize__E                                   
    1001aca5  ti_sysbios_knl_Swi_Instance_init__E                                       
    20001bd0  ti_sysbios_knl_Swi_Module_State_0_readyQ__A                               
    0001f696  ti_sysbios_knl_Swi_Module__id__C                                          
    20001858  ti_sysbios_knl_Swi_Module__root__V                                        
    200001c8  ti_sysbios_knl_Swi_Module__state__V                                       
    1001c237  ti_sysbios_knl_Swi_Module_startup__E                                      
    000003f0  ti_sysbios_knl_Swi_Object__DESC__C                                        
    000001f4  ti_sysbios_knl_Swi_Object__PARAMS__C                                      
    000004dc  ti_sysbios_knl_Swi_Object__count__C                                       
    1001bda9  ti_sysbios_knl_Swi_Object__delete__S                                      
    1001bf49  ti_sysbios_knl_Swi_Object__destruct__S                                    
    1001b979  ti_sysbios_knl_Swi_Object__get__S                                         
    000004e0  ti_sysbios_knl_Swi_Object__table__C                                       
    20001c00  ti_sysbios_knl_Swi_Object__table__V                                       
    1001c1cd  ti_sysbios_knl_Swi_Params__init__S                                        
    1001b085  ti_sysbios_knl_Swi_construct                                              
    1001ad05  ti_sysbios_knl_Swi_create                                                 
    1001c2e5  ti_sysbios_knl_Swi_delete                                                 
    1001c2e9  ti_sysbios_knl_Swi_destruct                                               
    1001c0d5  ti_sysbios_knl_Swi_disable__E                                             
    1001c0e5  ti_sysbios_knl_Swi_enabled__E                                             
    0001f051  ti_sysbios_knl_Swi_getTrigger__E                                          
    000004e4  ti_sysbios_knl_Swi_numPriorities__C                                       
    0000ea71  ti_sysbios_knl_Swi_or__E                                                  
    1001c2ed  ti_sysbios_knl_Swi_postInit__I                                            
    1001b321  ti_sysbios_knl_Swi_post__E                                                
    1001ad61  ti_sysbios_knl_Swi_restoreHwi__E                                          
    1001b5e1  ti_sysbios_knl_Swi_restore__E                                             
    1001b0d5  ti_sysbios_knl_Swi_runLoop__I                                             
    1001afd9  ti_sysbios_knl_Swi_run__I                                                 
    1001b031  ti_sysbios_knl_Swi_schedule__I                                            
    0001f05d  ti_sysbios_knl_Swi_self__E                                                
    1001c23d  ti_sysbios_knl_Swi_startup__E                                             
    0000e469  ti_sysbios_knl_Task_Handle__label__S                                      
    20002348  ti_sysbios_knl_Task_Instance_State_0_stack__A                             
    1001a4fd  ti_sysbios_knl_Task_Instance_finalize__E                                  
    1001a25d  ti_sysbios_knl_Task_Instance_init__E                                      
    20001868  ti_sysbios_knl_Task_Module_State_0_idleTask__A                            
    20001c30  ti_sysbios_knl_Task_Module_State_0_readyQ__A                              
    000005e8  ti_sysbios_knl_Task_Module_State_inactiveQ__O                             
    0001f6ce  ti_sysbios_knl_Task_Module__id__C                                         
    20001860  ti_sysbios_knl_Task_Module__root__V                                       
    20000100  ti_sysbios_knl_Task_Module__state__V                                      
    1001adbd  ti_sysbios_knl_Task_Module_startup__E                                     
    00000410  ti_sysbios_knl_Task_Object__DESC__C                                       
    00000100  ti_sysbios_knl_Task_Object__PARAMS__C                                     
    000004e8  ti_sysbios_knl_Task_Object__count__C                                      
    1001bdc9  ti_sysbios_knl_Task_Object__delete__S                                     
    1001bf65  ti_sysbios_knl_Task_Object__destruct__S                                   
    1001bde9  ti_sysbios_knl_Task_Object__get__S                                        
    000004ec  ti_sysbios_knl_Task_Object__table__C                                      
    20001b04  ti_sysbios_knl_Task_Object__table__V                                      
    1001c1d9  ti_sysbios_knl_Task_Params__init__S                                       
    1001c2f1  ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S                   
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S__mangled__        
    1001c2f5  ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E                     
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E__mangled__          
    1001c2f9  ti_sysbios_knl_Task_SupportProxy_start__E                                 
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_start__E__mangled__                      
    1001c2fd  ti_sysbios_knl_Task_SupportProxy_swap__E                                  
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_swap__E__mangled__                       
    000004f0  ti_sysbios_knl_Task_allBlockedFunc__C                                     
    1001b365  ti_sysbios_knl_Task_allBlockedFunction__I                                 
    1001b615  ti_sysbios_knl_Task_blockI__E                                             
    1001b125  ti_sysbios_knl_Task_construct                                             
    1001ae19  ti_sysbios_knl_Task_create                                                
    000004f4  ti_sysbios_knl_Task_defaultStackHeap__C                                   
    000004f8  ti_sysbios_knl_Task_defaultStackSize__C                                   
    1001c301  ti_sysbios_knl_Task_delete                                                
    1001c305  ti_sysbios_knl_Task_destruct                                              
    1001c0f5  ti_sysbios_knl_Task_disable__E                                            
    1001c243  ti_sysbios_knl_Task_enable__E                                             
    1001be09  ti_sysbios_knl_Task_enter__I                                              
    1001b429  ti_sysbios_knl_Task_exit__E                                               
    0000050e  ti_sysbios_knl_Task_initStackFlag__C                                      
    000004fc  ti_sysbios_knl_Task_numConstructedTasks__C                                
    1001a615  ti_sysbios_knl_Task_postInit__I                                           
    1001b739  ti_sysbios_knl_Task_processVitalTaskFlag__I                               
    1001be29  ti_sysbios_knl_Task_restoreHwi__E                                         
    1001ba49  ti_sysbios_knl_Task_restore__E                                            
    1001b175  ti_sysbios_knl_Task_schedule__I                                           
    1001c1e5  ti_sysbios_knl_Task_self__E                                               
    1001bf81  ti_sysbios_knl_Task_sleepTimeout__I                                       
    1001a96d  ti_sysbios_knl_Task_sleep__E                                              
    1001ae75  ti_sysbios_knl_Task_startCore__E                                          
    1001c309  ti_sysbios_knl_Task_startup__E                                            
    1001ca71  ti_sysbios_knl_Task_swapReturn                                            
    1001b9a5  ti_sysbios_knl_Task_unblockI__E                                           
    1001bfb5  ti_sysbios_knl_Task_unblock__E                                            
    1001b3a9  ti_sysbios_knl_Task_yield__E                                              
    00000590  ti_sysbios_rom_ROM_AONRTCChannelEnable                                    
    00000594  ti_sysbios_rom_ROM_AONRTCCompareValueSet                                  
    00000598  ti_sysbios_rom_ROM_AONRTCCurrentCompareValueGet                           
    0000059c  ti_sysbios_rom_ROM_AONRTCEventClear                                       
    000005a0  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E       
    000005a4  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E   
    000005a8  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E      
    000005ac  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_initDevice__I       
    000005b0  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E      
    000005b4  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I     
    000005b8  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_start__E            
    000005bc  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E
    000005c0  ti_sysbios_rom_ROM_xdc_runtime_Startup_getState__I                        
    000005c4  ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_abort__E               
    000005c8  ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_exit__E                
    0000b187  ti_sysbios_rom_cortexm_cc26xx_CC26xx_badRomRevision__E                    
    0000ea89  ti_sysbios_rom_cortexm_cc26xx_CC26xx_checkRevision__E                     
    1001ca9b  ti_sysbios_rom_cortexm_cc26xx_CC26xx_getRevision__E                       
    00009de9  trimDevice                                                                
    0001f53c  txPowerTable                                                              
    0001f6c8  txPwrTbl                                                                  
    0001f5dc  uartCC26XXHWAttrs                                                         
    20002788  uartCC26XXObjects                                                         
    200003b8  uartLog_evBuf                                                             
    20000302  uartLog_evBufIsEmpty                                                      
    20000304  uartLog_evtNum                                                            
    0000b541  uartLog_flush                                                             
    20000301  uartLog_head                                                              
    2000030c  uartLog_outBuf                                                            
    0000ab2d  uartLog_outputFxn                                                         
    20000300  uartLog_tail                                                              
    20001c60  user0Cfg                                                                  
    0001f4e4  validRangeUUID                                                            
    00000524  xdc_runtime_Assert_E_assertFailed__C                                      
    1001c5a9  xdc_runtime_Assert_raise__I                                               
    1001c6ed  xdc_runtime_Core_assignLabel__I                                           
    1001c5f1  xdc_runtime_Core_assignParams__I                                          
    1001c639  xdc_runtime_Core_constructObject__I                                       
    1001c405  xdc_runtime_Core_createObject__I                                          
    1001c4f9  xdc_runtime_Core_deleteObject__I                                          
    1001c7a1  xdc_runtime_Core_destructObject__I                                        
    00000528  xdc_runtime_Error_E_memory__C                                             
    1001c7b9  xdc_runtime_Error_check__E                                                
    1001c841  xdc_runtime_Error_init__E                                                 
    0000052c  xdc_runtime_Error_policyFxn__C                                            
    1001c487  xdc_runtime_Error_policySpin__E                                           
    0000058c  xdc_runtime_Error_policy__C                                               
    1001c769  xdc_runtime_Error_raiseX__E                                               
    1001c885  xdc_runtime_Gate_enterSystem__E                                           
    1001c879  xdc_runtime_Gate_leaveSystem__E                                           
    00000530  xdc_runtime_IGateProvider_Interface__BASE__C                              
    00000534  xdc_runtime_IHeap_Interface__BASE__C                                      
    0001f704  xdc_runtime_ILogger_Interface__BASE__C                                    
    00000538  xdc_runtime_IModule_Interface__BASE__C                                    
    0001f708  xdc_runtime_Log_L_error__C                                                
    0001f70c  xdc_runtime_Log_L_info__C                                                 
    0001f710  xdc_runtime_Log_L_warning__C                                              
    0000e6c9  xdc_runtime_LoggerCallback_Instance_init__E                               
    0001f460  xdc_runtime_LoggerCallback_Module__FXNS__C                                
    2000186c  xdc_runtime_LoggerCallback_Module__root__V                                
    0000cc11  xdc_runtime_LoggerCallback_Module_startup__E                              
    0001f588  xdc_runtime_LoggerCallback_Object__DESC__C                                
    0001f5a8  xdc_runtime_LoggerCallback_Object__PARAMS__C                              
    0001f714  xdc_runtime_LoggerCallback_Object__count__C                               
    0000d90d  xdc_runtime_LoggerCallback_Object__create__S                              
    0000ecbd  xdc_runtime_LoggerCallback_Object__get__S                                 
    20001874  xdc_runtime_LoggerCallback_Object__table__V                               
    0001f718  xdc_runtime_LoggerCallback_createInstFxn__C                               
    0001f199  xdc_runtime_LoggerCallback_defaultCreate                                  
    0001f0a9  xdc_runtime_LoggerCallback_disable__E                                     
    0001f0b3  xdc_runtime_LoggerCallback_enable__E                                      
    0001f71c  xdc_runtime_LoggerCallback_outputFxn__C                                   
    0000df85  xdc_runtime_LoggerCallback_write0__E                                      
    0000dfad  xdc_runtime_LoggerCallback_write1__E                                      
    0000dcd1  xdc_runtime_LoggerCallback_write2__E                                      
    0000d5cd  xdc_runtime_LoggerCallback_write4__E                                      
    0000c9bd  xdc_runtime_LoggerCallback_write8__E                                      
    UNDEFED   xdc_runtime_Main_Module_GateProxy_Handle__label__S                        
    UNDEFED   xdc_runtime_Main_Module_GateProxy_Object__delete__S                       
    UNDEFED   xdc_runtime_Main_Module_GateProxy_query__E                                
    0000053c  xdc_runtime_Main_Module__diagsEnabled__C                                  
    00000540  xdc_runtime_Main_Module__diagsIncluded__C                                 
    00000544  xdc_runtime_Main_Module__diagsMask__C                                     
    00000584  xdc_runtime_Main_Module__id__C                                            
    0001f744  xdc_runtime_Main_Module__loggerDefined__C                                 
    0001f720  xdc_runtime_Main_Module__loggerFxn2__C                                    
    0001f724  xdc_runtime_Main_Module__loggerFxn4__C                                    
    0001f728  xdc_runtime_Main_Module__loggerFxn8__C                                    
    0001f72c  xdc_runtime_Main_Module__loggerObj__C                                     
    1001bc89  xdc_runtime_Memory_HeapProxy_Handle__label__S                             
    UNDEFED   xdc_runtime_Memory_HeapProxy_Handle__label__S__mangled__                  
    1001bca9  xdc_runtime_Memory_HeapProxy_Object__delete__S                            
    UNDEFED   xdc_runtime_Memory_HeapProxy_Object__delete__S__mangled__                 
    1001c889  xdc_runtime_Memory_HeapProxy_alloc__E                                     
    1001c88d  xdc_runtime_Memory_HeapProxy_free__E                                      
    00000586  xdc_runtime_Memory_Module__id__C                                          
    20000200  xdc_runtime_Memory_Module__state__V                                       
    1001c489  xdc_runtime_Memory_alloc__E                                               
    1001c84d  xdc_runtime_Memory_calloc__E                                              
    00000548  xdc_runtime_Memory_defaultHeapInstance__C                                 
    1001c801  xdc_runtime_Memory_free__E                                                
    1001c859  xdc_runtime_Memory_getMaxDefaultTypeAlign__E                              
    1001c785  xdc_runtime_Memory_valloc__E                                              
    20001cac  xdc_runtime_Registry_Module__state__V                                     
    0000e489  xdc_runtime_Registry_findById__E                                          
    200001f0  xdc_runtime_Startup_Module__state__V                                      
    00000001  xdc_runtime_Startup__EXECFXN__C                                           
    00000001  xdc_runtime_Startup__RESETFXN__C                                          
    0000054c  xdc_runtime_Startup_execImpl__C                                           
    1001c559  xdc_runtime_Startup_exec__E                                               
    0000ebb3  xdc_runtime_Startup_exec__I                                               
    0001f6a4  xdc_runtime_Startup_firstFxns__A                                          
    00000514  xdc_runtime_Startup_firstFxns__C                                          
    0000bb35  xdc_runtime_Startup_getState__I                                           
    0000051c  xdc_runtime_Startup_lastFxns__C                                           
    00000550  xdc_runtime_Startup_maxPasses__C                                          
    0001f069  xdc_runtime_Startup_reset__I                                              
    0001f075  xdc_runtime_Startup_rtsDone__E                                            
    0001f630  xdc_runtime_Startup_sfxnRts__A                                            
    00000554  xdc_runtime_Startup_sfxnRts__C                                            
    0001f514  xdc_runtime_Startup_sfxnTab__A                                            
    00000558  xdc_runtime_Startup_sfxnTab__C                                            
    0000055c  xdc_runtime_Startup_startModsFxn__C                                       
    1001c30d  xdc_runtime_Startup_startMods__I                                          
    00000560  xdc_runtime_SysCallback_abortFxn__C                                       
    1001c811  xdc_runtime_SysCallback_abort__E                                          
    0000b337  xdc_runtime_SysCallback_defaultAbort                                      
    0000bef3  xdc_runtime_SysCallback_defaultExit                                       
    0000c4bf  xdc_runtime_SysCallback_defaultPutch                                      
    0001f19d  xdc_runtime_SysCallback_defaultReady                                      
    00000564  xdc_runtime_SysCallback_exitFxn__C                                        
    1001c821  xdc_runtime_SysCallback_exit__E                                           
    0001f730  xdc_runtime_SysCallback_putchFxn__C                                       
    0000eccd  xdc_runtime_SysCallback_putch__E                                          
    0001f734  xdc_runtime_SysCallback_readyFxn__C                                       
    0000ecdd  xdc_runtime_SysCallback_ready__E                                          
    1001bbe9  xdc_runtime_System_Module_GateProxy_Handle__label__S                      
    UNDEFED   xdc_runtime_System_Module_GateProxy_Handle__label__S__mangled__           
    1001bc09  xdc_runtime_System_Module_GateProxy_Object__delete__S                     
    UNDEFED   xdc_runtime_System_Module_GateProxy_Object__delete__S__mangled__          
    1001c891  xdc_runtime_System_Module_GateProxy_enter__E                              
    1001c895  xdc_runtime_System_Module_GateProxy_leave__E                              
    1001c269  xdc_runtime_System_Module_GateProxy_query__E                              
    UNDEFED   xdc_runtime_System_Module_GateProxy_query__E__mangled__                   
    200001f8  xdc_runtime_System_Module__state__V                                       
    1001c87f  xdc_runtime_System_Module_startup__E                                      
    UNDEFED   xdc_runtime_System_SupportProxy_abort__E                                  
    UNDEFED   xdc_runtime_System_SupportProxy_exit__E                                   
    0000eccd  xdc_runtime_System_SupportProxy_putch__E                                  
    0000ecdd  xdc_runtime_System_SupportProxy_ready__E                                  
    00000568  xdc_runtime_System_abortFxn__C                                            
    1001c899  xdc_runtime_System_abortSpin__E                                           
    0000c8f5  xdc_runtime_System_abortStd__E                                            
    1001c749  xdc_runtime_System_abort__E                                               
    1001c681  xdc_runtime_System_atexit__E                                              
    00001de5  xdc_runtime_System_doPrint__I                                             
    0000056c  xdc_runtime_System_exitFxn__C                                             
    1001c89b  xdc_runtime_System_exitSpin__E                                            
    0000c8fd  xdc_runtime_System_exitStd__E                                             
    1001c7d1  xdc_runtime_System_exit__E                                                
    0001f738  xdc_runtime_System_extendFxn__C                                           
    0000b119  xdc_runtime_System_formatNum__I                                           
    00000570  xdc_runtime_System_maxAtexitHandlers__C                                   
    00005809  xdc_runtime_System_printfExtend__I                                        
    0000e74d  xdc_runtime_System_printf__E                                              
    0001f1a1  xdc_runtime_System_printf_va__F                                           
    1001c6b9  xdc_runtime_System_processAtExit__E                                       
    0000dd7b  xdc_runtime_System_putchar__I                                             
    0000e767  xdc_runtime_System_snprintf__E                                            
    0001f1a5  xdc_runtime_System_snprintf_va__F                                         
    0000e1b1  xdc_runtime_System_vprintf__E                                             
    0000eced  xdc_runtime_System_vsnprintf__E                                           
    00000588  xdc_runtime_Text_charCnt__C                                               
    00000000  xdc_runtime_Text_charTab__A                                               
    00000574  xdc_runtime_Text_charTab__C                                               
    1001c71d  xdc_runtime_Text_cordText__E                                              
    0000058a  xdc_runtime_Text_isLoaded__C                                              
    00000578  xdc_runtime_Text_nameEmpty__C                                             
    0000057c  xdc_runtime_Text_nameStatic__C                                            
    00000580  xdc_runtime_Text_nameUnknown__C                                           
    0001f686  xdc_runtime_Text_nodeTab__A                                               
    0001f73c  xdc_runtime_Text_nodeTab__C                                               
    0000d945  xdc_runtime_Text_printVisFxn__I                                           
    0000bb91  xdc_runtime_Text_putLab__E                                                
    0000a2b9  xdc_runtime_Text_putMod__E                                                
    00009fc1  xdc_runtime_Text_putSite__E                                               
    0001f746  xdc_runtime_Text_registryModsLastId__C                                    
    1001c7e9  xdc_runtime_Text_ropeText__E                                              
    0001f748  xdc_runtime_Text_unnamedModsLastId__C                                     
    0000c429  xdc_runtime_Text_visitRope2__I                                            
    0001f740  xdc_runtime_Text_visitRopeFxn__C                                          
    0001f0bd  xdc_runtime_Text_visitRope__I                                             
    0000ca01  xdc_runtime_Text_xprintf__I                                               
    1001c831  xdc_runtime_Timestamp_SupportProxy_get32__E                               
    0000eddf  xdc_runtime_Timestamp_SupportProxy_get32__E__mangled__                    
    1001b9d1  xdc_runtime_Timestamp_SupportProxy_get64__E                               
    UNDEFED   xdc_runtime_Timestamp_SupportProxy_get64__E__mangled__                    
    1001c12f  xdc_runtime_Timestamp_SupportProxy_getFreq__E                             
    UNDEFED   xdc_runtime_Timestamp_SupportProxy_getFreq__E__mangled__                  
    1001c831  xdc_runtime_Timestamp_get32__E                                            
    UNDEFED   xdc_runtime_Timestamp_get32__E                                            
    1001b9d1  xdc_runtime_Timestamp_get64__E                                            
    UNDEFED   xdc_runtime_Timestamp_get64__E                                            
    1001c12f  xdc_runtime_Timestamp_getFreq__E                                          
    UNDEFED   xdc_runtime_Timestamp_getFreq__E                                          
    10015d19  zADD                                                                      
    10015eb5  zADD32                                                                    
    10015de9  zMACC32                                                                   
    10015f0d  zMULT32                                                                   
    10015bcd  zSET                                                                      
    10015d5d  zSUB                                                                      
    10015e69  zSUB32                                                                    
    
    
    GLOBAL SYMBOLS: SORTED BY Symbol Address 
    
    address   name                                                                      
    -------   ----                                                                      
    00000000  __ASM__                                                                   
    00000000  __TI_static_base__                                                        
    00000000  ti_sysbios_family_arm_m3_Hwi_resetVectors                                 
    00000000  xdc_runtime_Text_charTab__A                                               
    00000001  xdc_runtime_Startup__EXECFXN__C                                           
    00000001  xdc_runtime_Startup__RESETFXN__C                                          
    0000003d  ButtonService_RegisterAppCBs                                              
    00000087  __ISA__                                                                   
    00000099  __PLAT__                                                                  
    000000c0  __TARG__                                                                  
    000000e5  __TRDR__                                                                  
    00000100  ti_sysbios_knl_Task_Object__PARAMS__C                                     
    0000013c  ti_sysbios_knl_Mailbox_Object__PARAMS__C                                  
    00000170  ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C                            
    000001a0  ti_sysbios_hal_Hwi_Object__PARAMS__C                                      
    000001cc  ti_sysbios_heaps_HeapMem_Module__FXNS__C                                  
    000001f4  ti_sysbios_knl_Swi_Object__PARAMS__C                                      
    0000021c  ti_sysbios_gates_GateHwi_Module__FXNS__C                                  
    00000240  ti_sysbios_gates_GateMutex_Module__FXNS__C                                
    00000264  ti_sysbios_heaps_HeapMem_Object__PARAMS__C                                
    00000288  ti_sysbios_knl_Clock_Object__PARAMS__C                                    
    000002ac  ti_sysbios_knl_Semaphore_Object__PARAMS__C                                
    000002d0  ti_sysbios_family_arm_m3_Hwi_Object__DESC__C                              
    000002f0  ti_sysbios_gates_GateHwi_Object__DESC__C                                  
    00000310  ti_sysbios_gates_GateMutex_Object__DESC__C                                
    00000330  ti_sysbios_hal_Hwi_Object__DESC__C                                        
    00000350  ti_sysbios_heaps_HeapMem_Object__DESC__C                                  
    00000370  ti_sysbios_knl_Clock_Object__DESC__C                                      
    00000390  ti_sysbios_knl_Mailbox_Object__DESC__C                                    
    000003b0  ti_sysbios_knl_Queue_Object__DESC__C                                      
    000003d0  ti_sysbios_knl_Semaphore_Object__DESC__C                                  
    000003f0  ti_sysbios_knl_Swi_Object__DESC__C                                        
    00000400  __STACK_SIZE                                                              
    00000410  ti_sysbios_knl_Task_Object__DESC__C                                       
    00000430  ti_sysbios_gates_GateHwi_Object__PARAMS__C                                
    00000448  ti_sysbios_gates_GateMutex_Object__PARAMS__C                              
    00000460  ti_sysbios_knl_Queue_Object__PARAMS__C                                    
    00000478  ti_sysbios_knl_Idle_funcList__C                                           
    00000481  GATTServApp_AddService                                                    
    00000484  ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C                       
    00000488  ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C                          
    0000048c  ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C                        
    00000490  ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C                            
    00000494  ti_sysbios_family_arm_m3_Hwi_Object__count__C                             
    00000498  ti_sysbios_family_arm_m3_Hwi_Object__table__C                             
    0000049c  ti_sysbios_family_arm_m3_Hwi_ccr__C                                       
    000004a0  ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C                            
    000004a4  ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C                               
    000004a8  ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C                       
    000004ac  ti_sysbios_family_arm_m3_Hwi_priGroup__C                                  
    000004b0  ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C                    
    000004b4  ti_sysbios_heaps_HeapMem_E_memory__C                                      
    000004b8  ti_sysbios_heaps_HeapMem_Module__gateObj__C                               
    000004bc  ti_sysbios_heaps_HeapMem_Object__count__C                                 
    000004c0  ti_sysbios_heaps_HeapMem_Object__table__C                                 
    000004c4  ti_sysbios_heaps_HeapMem_reqAlign__C                                      
    000004c8  ti_sysbios_knl_Clock_serviceMargin__C                                     
    000004cc  ti_sysbios_knl_Mailbox_Object__count__C                                   
    000004d0  ti_sysbios_knl_Mailbox_Object__table__C                                   
    000004d4  ti_sysbios_knl_Queue_Object__count__C                                     
    000004d8  ti_sysbios_knl_Queue_Object__table__C                                     
    000004dc  ti_sysbios_knl_Swi_Object__count__C                                       
    000004e0  ti_sysbios_knl_Swi_Object__table__C                                       
    000004e4  ti_sysbios_knl_Swi_numPriorities__C                                       
    000004e8  ti_sysbios_knl_Task_Object__count__C                                      
    000004ec  ti_sysbios_knl_Task_Object__table__C                                      
    000004f0  ti_sysbios_knl_Task_allBlockedFunc__C                                     
    000004f4  ti_sysbios_knl_Task_defaultStackHeap__C                                   
    000004f8  ti_sysbios_knl_Task_defaultStackSize__C                                   
    000004fc  ti_sysbios_knl_Task_numConstructedTasks__C                                
    00000501  DefaultAssertCback                                                        
    00000502  ti_sysbios_family_arm_cc26xx_Timer_Module__id__C                          
    00000504  ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C           
    00000506  ti_sysbios_family_arm_m3_Hwi_Module__id__C                                
    00000508  ti_sysbios_gates_GateHwi_Module__id__C                                    
    0000050a  ti_sysbios_gates_GateMutex_Module__id__C                                  
    0000050c  ti_sysbios_heaps_HeapMem_Module__id__C                                    
    0000050e  ti_sysbios_knl_Task_initStackFlag__C                                      
    00000510  ti_sysbios_knl_Clock_tickMode__C                                          
    00000514  xdc_runtime_Startup_firstFxns__C                                          
    0000051c  xdc_runtime_Startup_lastFxns__C                                           
    00000524  xdc_runtime_Assert_E_assertFailed__C                                      
    00000528  xdc_runtime_Error_E_memory__C                                             
    0000052c  xdc_runtime_Error_policyFxn__C                                            
    00000530  xdc_runtime_IGateProvider_Interface__BASE__C                              
    00000534  xdc_runtime_IHeap_Interface__BASE__C                                      
    00000538  xdc_runtime_IModule_Interface__BASE__C                                    
    0000053c  xdc_runtime_Main_Module__diagsEnabled__C                                  
    00000540  xdc_runtime_Main_Module__diagsIncluded__C                                 
    00000544  xdc_runtime_Main_Module__diagsMask__C                                     
    00000548  xdc_runtime_Memory_defaultHeapInstance__C                                 
    0000054c  xdc_runtime_Startup_execImpl__C                                           
    00000550  xdc_runtime_Startup_maxPasses__C                                          
    00000554  xdc_runtime_Startup_sfxnRts__C                                            
    00000558  xdc_runtime_Startup_sfxnTab__C                                            
    0000055c  xdc_runtime_Startup_startModsFxn__C                                       
    00000560  xdc_runtime_SysCallback_abortFxn__C                                       
    00000564  xdc_runtime_SysCallback_exitFxn__C                                        
    00000568  xdc_runtime_System_abortFxn__C                                            
    0000056c  xdc_runtime_System_exitFxn__C                                             
    00000570  xdc_runtime_System_maxAtexitHandlers__C                                   
    00000574  xdc_runtime_Text_charTab__C                                               
    00000578  xdc_runtime_Text_nameEmpty__C                                             
    0000057c  xdc_runtime_Text_nameStatic__C                                            
    00000580  xdc_runtime_Text_nameUnknown__C                                           
    00000584  xdc_runtime_Main_Module__id__C                                            
    00000586  xdc_runtime_Memory_Module__id__C                                          
    00000588  xdc_runtime_Text_charCnt__C                                               
    0000058a  xdc_runtime_Text_isLoaded__C                                              
    0000058c  xdc_runtime_Error_policy__C                                               
    00000590  ti_sysbios_rom_ROM_AONRTCChannelEnable                                    
    00000594  ti_sysbios_rom_ROM_AONRTCCompareValueSet                                  
    00000598  ti_sysbios_rom_ROM_AONRTCCurrentCompareValueGet                           
    0000059c  ti_sysbios_rom_ROM_AONRTCEventClear                                       
    000005a0  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E       
    000005a4  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E   
    000005a8  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E      
    000005ac  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_initDevice__I       
    000005b0  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E      
    000005b4  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I     
    000005b8  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_start__E            
    000005bc  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E
    000005c0  ti_sysbios_rom_ROM_xdc_runtime_Startup_getState__I                        
    000005c4  ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_abort__E               
    000005c8  ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_exit__E                
    000005cc  ti_sysbios_gates_GateMutex_Instance_State_sem__O                          
    000005d0  ti_sysbios_knl_Clock_Module_State_clockQ__O                               
    000005d4  ti_sysbios_knl_Mailbox_Instance_State_dataQue__O                          
    000005d8  ti_sysbios_knl_Mailbox_Instance_State_dataSem__O                          
    000005dc  ti_sysbios_knl_Mailbox_Instance_State_freeQue__O                          
    000005e0  ti_sysbios_knl_Mailbox_Instance_State_freeSem__O                          
    000005e4  ti_sysbios_knl_Semaphore_Instance_State_pendQ__O                          
    000005e8  ti_sysbios_knl_Task_Module_State_inactiveQ__O                             
    00000ae5  ti_sysbios_family_arm_m3_Hwi_excDumpRegs__I                               
    000012f5  display_balanza_init                                                      
    00001aa1  DataService_SetParameter                                                  
    00001de5  xdc_runtime_System_doPrint__I                                             
    0000211d  UARTCC26XX_open                                                           
    00002451  ButtonService_SetParameter                                                
    00003311  conversion_mt8442_ext_hex                                                 
    000035b5  UARTCC26XX_write                                                          
    00003eed  GAPRole_SetParameter                                                      
    000047d5  Power_sleep                                                               
    000049fd  RF_cancelCmd                                                              
    00004c21  LedService_SetParameter                                                   
    00004e3d  RF_postCmd                                                                
    00005051  SysCtrlSetRechargeBeforePowerDown                                         
    00005255  __aeabi_uldivmod                                                          
    00005449  PIN_init                                                                  
    00005629  UARTCC26XX_read                                                           
    00005809  xdc_runtime_System_printfExtend__I                                        
    00005d7d  __aeabi_dsub                                                              
    00005d87  __aeabi_dadd                                                              
    00005f33  NOROM_RFCRTrim                                                            
    000060d5  display_hex2int                                                           
    00006271  conversion_mt8442_hex                                                     
    000063f9  PowerCC26XX_doCalibrate                                                   
    000066f1  ti_sysbios_family_arm_m3_Hwi_excBusFault__I                               
    000069c9  UARTCC26XX_hwiIntFxn                                                      
    00006b29  display_getPesoPrecio                                                     
    00006c85  ti_sysbios_family_arm_m3_Hwi_excUsageFault__I                             
    00007089  ti_sysbios_family_arm_m3_Hwi_excMemFault__I                               
    00007561  GAPRole_GetParameter                                                      
    000079d5  Power_init                                                                
    00007aed  UARTCC26XX_writeCancel                                                    
    00007d1d  Power_releaseDependency                                                   
    00007e31  RF_close                                                                  
    00008045  Power_setDependency                                                       
    00008141  display_balanza_createTask                                                
    00008339  __aeabi_dmul                                                              
    00008435  ti_sysbios_family_arm_m3_Hwi_excFillContext__I                            
    00008531  __aeabi_fsub                                                              
    00008535  __aeabi_fadd                                                              
    0000862b  __aeabi_idiv0                                                             
    00008725  UARTCC26XX_readCancel                                                     
    00008aed  ti_sysbios_family_arm_m3_Hwi_excHandlerMax__I                             
    00008bd9  RF_pendCmd                                                                
    00008cc1  ButtonService_AddService                                                  
    00008da1  UARTCC26XX_close                                                          
    00008e81  RF_open                                                                   
    00009031  UARTCC26XX_swiIntFxn                                                      
    0000929d  DataService_AddService                                                    
    00009429  display_balanza_taskFxn                                                   
    000094e9  PowerCC26XX_standbyPolicy                                                 
    000097cd  LedService_RegisterAppCBs                                                 
    00009881  ti_sysbios_family_arm_m3_Hwi_excDebugMon__I                               
    00009935  ti_sysbios_family_arm_m3_Hwi_excHardFault__I                              
    000099e9  DataService_RegisterAppCBs                                                
    00009b49  LedService_AddService                                                     
    00009ca1  RF_ratCapture                                                             
    00009d49  __TI_auto_init                                                            
    00009de9  ti_sysbios_family_arm_cc26xx_Boot_trimDevice                              
    00009de9  trimDevice                                                                
    00009e89  display_balanza_getData                                                   
    00009f25  __aeabi_memcpy                                                            
    00009f25  __aeabi_memcpy4                                                           
    00009f25  __aeabi_memcpy8                                                           
    00009f25  memcpy                                                                    
    00009fc1  xdc_runtime_Text_putSite__E                                               
    0000a05b  ti_sysbios_BIOS_nullFunc__I                                               
    0000a05d  GATTServApp_ProcessCharCfg                                                
    0000a0f5  RF_yield                                                                  
    0000a18d  ti_sysbios_knl_Clock_workFuncDynamic__E                                   
    0000a225  PIN_open                                                                  
    0000a2b9  xdc_runtime_Text_putMod__E                                                
    0000a611  OSCHF_GetStartupTime                                                      
    0000a611  PowerCC26XX_getXoscStartupTime                                            
    0000a699  __aeabi_cdcmpeq                                                           
    0000a699  __aeabi_cdcmple                                                           
    0000a71f  __aeabi_cdrcmple                                                          
    0000a7a5  ICall_heapMalloc                                                          
    0000a8ad  Power_releaseConstraint                                                   
    0000a931  RF_ratDisableChannel                                                      
    0000aa35  ICall_createRemoteTasks                                                   
    0000ab2d  uartLog_outputFxn                                                         
    0000aba9  __aeabi_fmul                                                              
    0000ac23  __aeabi_memclr                                                            
    0000ac23  __aeabi_memclr4                                                           
    0000ac23  __aeabi_memclr8                                                           
    0000ac25  __aeabi_memset                                                            
    0000ac25  __aeabi_memset4                                                           
    0000ac25  __aeabi_memset8                                                           
    0000ac2b  memset                                                                    
    0000ac9d  ICallPlatform_pwrUpdActivityCounter                                       
    0000ad85  PowerCC26XX_auxISR                                                        
    0000afc9  ChipInfo_GetHwRevision                                                    
    0000b0a9  __aeabi_d2f                                                               
    0000b117  ti_sysbios_knl_Clock_triggerFunc__I                                       
    0000b119  xdc_runtime_System_formatNum__I                                           
    0000b187  ti_sysbios_rom_cortexm_cc26xx_CC26xx_badRomRevision__E                    
    0000b189  ICall_heapInit                                                            
    0000b1f5  PowerCC26XX_calibrate                                                     
    0000b337  xdc_runtime_SysCallback_defaultAbort                                      
    0000b3a1  RF_getCurrentTime                                                         
    0000b409  RF_getInfo                                                                
    0000b471  SysCtrl_DCDC_VoltageConditionalControl                                    
    0000b541  uartLog_flush                                                             
    0000b60d  RF_ratCompare                                                             
    0000b6d5  ti_sysbios_family_arm_cc26xx_Timer_start__E                               
    0000b855  OSCHF_AttemptToSwitchToXosc                                               
    0000b8b1  PIN_remove                                                                
    0000b90d  PowerCC26XX_RCOSC_clockFunc                                               
    0000b969  Power_setConstraint                                                       
    0000b9c5  SysCtrlAdjustRechargeAfterPowerDown                                       
    0000ba21  conversion_mt8442_ascii                                                   
    0000ba7d  conversion_mt8442_ext_ascii                                               
    0000bb35  xdc_runtime_Startup_getState__I                                           
    0000bb91  xdc_runtime_Text_putLab__E                                                
    0000bbed  PowerCC26XX_initiateCalibration                                           
    0000bc45  UARTCC26XX_control                                                        
    0000bef3  xdc_runtime_SysCallback_defaultExit                                       
    0000bef5  GAP_DeviceInit                                                            
    0000bf45  GAP_UpdateAdvertisingData                                                 
    0000c035  Util_convertBdAddr2Str                                                    
    0000c20d  ICallPlatform_pwrRegisterNotify                                           
    0000c345  NOROM_OSCClockSourceSet                                                   
    0000c3dd  copy_in                                                                   
    0000c429  xdc_runtime_Text_visitRope2__I                                            
    0000c475  GATTServApp_ProcessCCCWriteReq                                            
    0000c4bf  xdc_runtime_SysCallback_defaultPutch                                      
    0000c4c1  ChipInfo_GetChipFamily                                                    
    0000c509  NOROM_DDI16BitfieldWrite                                                  
    0000c551  PIN_setOutputEnable                                                       
    0000c5e1  RF_getRssi                                                                
    0000c629  RF_runCmd                                                                 
    0000c749  __aeabi_d2iz                                                              
    0000c791  ti_sysbios_family_arm_m3_Hwi_excReserved__I                               
    0000c7d9  AssertHandler                                                             
    0000c81d  GAP_TerminateLinkReq                                                      
    0000c861  ResetISR                                                                  
    0000c861  _c_int00                                                                  
    0000c8f1  C$$EXIT                                                                   
    0000c8f5  abort                                                                     
    0000c8f5  xdc_runtime_System_abortStd__E                                            
    0000c8fd  exit                                                                      
    0000c8fd  xdc_runtime_System_exitStd__E                                             
    0000c935  __aeabi_d2uiz                                                             
    0000c9bd  xdc_runtime_LoggerCallback_write8__E                                      
    0000ca01  xdc_runtime_Text_xprintf__I                                               
    0000ca89  GAPRole_SendUpdateParam                                                   
    0000cac9  GAPRole_createTask                                                        
    0000cb11  GATT_SendRsp                                                              
    0000cb51  NOROM_DDI16BitfieldRead                                                   
    0000cb91  ProjectZero_createTask                                                    
    0000cbd1  __aeabi_uidiv                                                             
    0000cbd1  __aeabi_uidivmod                                                          
    0000cc11  xdc_runtime_LoggerCallback_Module_startup__E                              
    0000cc91  GAP_GetParamValue                                                         
    0000cccd  GATTServApp_RegisterService                                               
    0000cd09  ICallPlatform_pwrConfigACAction                                           
    0000cd45  NOROM_RFCSynthPowerDown                                                   
    0000cd81  OSC_HPOSCRelativeFrequencyOffsetGet                                       
    0000cdbd  PIN_setOutputValue                                                        
    0000cdf9  Power_getDependencyCount                                                  
    0000ce35  RF_runDirectCmd                                                           
    0000ce71  RF_runImmediateCmd                                                        
    0000cead  main                                                                      
    0000cfe1  ti_sysbios_family_arm_m3_Hwi_excSvCall__I                                 
    0000d01d  GAPBondMgr_LinkEst                                                        
    0000d08d  NOROM_IntRegister                                                         
    0000d0c5  UART_init                                                                 
    0000d0fd  Util_restartClock                                                         
    0000d135  linkDB_NumConns                                                           
    0000d1a5  __aeabi_f2d                                                               
    0000d1dd  ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E                      
    0000d215  ti_sysbios_family_arm_m3_Hwi_excNoIsr__I                                  
    0000d285  GAPBondMgr_SetParameter                                                   
    0000d2b9  GAP_SetParamValue                                                         
    0000d3c5  ICall_searchServiceEntity                                                 
    0000d3f9  OSCHF_SwitchToRcOscTurnOffXosc                                            
    0000d42d  PIN_setConfig                                                             
    0000d461  PowerCC26XX_isStableXOSC_HF                                               
    0000d4c9  Util_constructClock                                                       
    0000d4fd  osal_snv_read                                                             
    0000d531  osal_snv_write                                                            
    0000d599  ti_sysbios_family_arm_m3_Hwi_excNmi__I                                    
    0000d5cd  xdc_runtime_LoggerCallback_write4__E                                      
    0000d6fb  ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E                         
    0000d72d  GAPBondMgr_PasscodeRsp                                                    
    0000d7ed  RF_Params_init                                                            
    0000d84d  UART_open                                                                 
    0000d87d  ti_sysbios_BIOS_atExitFunc__I                                             
    0000d8ad  ti_sysbios_family_arm_cc26xx_Timer_initDevice__I                          
    0000d8dd  ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I                        
    0000d90d  xdc_runtime_LoggerCallback_Object__create__S                              
    0000d945  xdc_runtime_Text_printVisFxn__I                                           
    0000da5b  malloc                                                                    
    0000dabf  __aeabi_i2d                                                               
    0000daed  GAPBondMgr_Register                                                       
    0000db19  HCI_EXT_ConnEventNoticeCmd                                                
    0000db45  ICall_freeImpl                                                            
    0000db45  ICall_heapFree                                                            
    0000dc79  PINCC26XX_setMux                                                          
    0000dca5  ti_sysbios_knl_Clock_getTicksUntilInterrupt__E                            
    0000dcd1  xdc_runtime_LoggerCallback_write2__E                                      
    0000dd7b  xdc_runtime_System_putchar__I                                             
    0000dda5  AONBatMonTemperatureGetDegC                                               
    0000ddcd  GATTServApp_WriteCharCfg                                                  
    0000de1d  ICall_init                                                                
    0000debd  PowerCC26XX_switchXOSC_HF                                                 
    0000dee5  Power_registerNotify                                                      
    0000df0d  SafeHapiVoid                                                              
    0000df5d  ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E                         
    0000df85  xdc_runtime_LoggerCallback_write0__E                                      
    0000dfad  xdc_runtime_LoggerCallback_write1__E                                      
    0000dfd5  List_put                                                                  
    0000dffb  GAPBondMgr_LinkTerm                                                       
    0000e08d  RF_ratHwOutput                                                            
    0000e0ea  __checksum_value_CommonROM                                                
    0000e0f9  __aeabi_ui2f                                                              
    0000e11d  ti_sysbios_BIOS_registerRTSLock__I                                        
    0000e141  ti_sysbios_BIOS_removeRTSLock__I                                          
    0000e165  ti_sysbios_BIOS_startFunc__I                                              
    0000e1b1  xdc_runtime_System_vprintf__E                                             
    0000e1f7  memcmp                                                                    
    0000e219  GATTServApp_InitCharCfg                                                   
    0000e239  GATT_bm_alloc                                                             
    0000e2f9  NOROM_RFCDoorbellSendTo                                                   
    0000e319  NOROM_RFCRfTrimRead                                                       
    0000e339  Power_idleFunc                                                            
    0000e359  Power_unregisterNotify                                                    
    0000e399  convert_uint2char                                                         
    0000e3b9  __aeabi_ui2d                                                              
    0000e3d9  ti_sysbios_BIOS_rtsLock__I                                                
    0000e401  ti_sysbios_family_arm_m3_Hwi_Handle__label__S                             
    0000e401  ti_sysbios_hal_Hwi_HwiProxy_Handle__label__S                              
    0000e429  ti_sysbios_knl_Clock_stop__E                                              
    0000e449  ti_sysbios_knl_Swi_Handle__label__S                                       
    0000e469  ti_sysbios_knl_Task_Handle__label__S                                      
    0000e489  xdc_runtime_Registry_findById__E                                          
    0000e4c7  PIN_close                                                                 
    0000e4e5  Power_getTransitionLatency                                                
    0000e55d  GATT_bm_free                                                              
    0000e5e9  NOROM_OSCClockSourceGet                                                   
    0000e63d  RF_getCmdOp                                                               
    0000e6ad  ti_sysbios_family_arm_cc26xx_Timer_dynamicStub__E                         
    0000e6c9  xdc_runtime_LoggerCallback_Instance_init__E                               
    0000e6e5  ICall_enterCSImpl                                                         
    0000e719  List_remove                                                               
    0000e74d  xdc_runtime_System_printf__E                                              
    0000e767  xdc_runtime_System_snprintf__E                                            
    0000e781  ChipInfo_GetPackageType                                                   
    0000e799  GAPRole_StartDevice                                                       
    0000e7b1  GAPRole_TerminateConnection                                               
    0000e7c9  GATT_Notification                                                         
    0000e889  ICallPlatform_pwrDispense                                                 
    0000e8a1  ICallPlatform_pwrRequire                                                  
    0000e949  NOROM_AONRTCCurrentCompareValueGet                                        
    0000e961  NOROM_I2CIntRegister                                                      
    0000e979  NOROM_RFCCpeIntGetAndClear                                                
    0000e991  OSCHF_TurnOnXosc                                                          
    0000e9c1  UARTCC26XX_init                                                           
    0000e9f1  gapRole_clockHandler                                                      
    0000ea09  _args_main                                                                
    0000ea21  __aeabi_lmul                                                              
    0000ea51  ti_sysbios_BIOS_rtsUnlock__I                                              
    0000ea71  ti_sysbios_knl_Swi_or__E                                                  
    0000ea89  ti_sysbios_rom_cortexm_cc26xx_CC26xx_checkRevision__E                     
    0000eab7  ICall_leaveCSImpl                                                         
    0000eae3  ti_sysbios_BIOS_exitFunc__I                                               
    0000eaf9  DevInfo_AddService                                                        
    0000eb0d  NOROM_AONRTCCurrent64BitValueGet                                          
    0000eb21  PIN_getInputValue                                                         
    0000eb35  ThisCodeIsBuiltForCC26xxHwRev22AndLater_HaltIfViolated                    
    0000eb49  _nop                                                                      
    0000eb4b  _register_unlock                                                          
    0000eb51  _register_lock                                                            
    0000eb5d  strlen                                                                    
    0000eb85  ti_sysbios_knl_Clock_doTick__I                                            
    0000eba1  GATTServApp_FindAttr                                                      
    0000ebb3  xdc_runtime_Startup_exec__I                                               
    0000ebcd  DevInfo_SetParameter                                                      
    0000ebed  GAP_EndDiscoverable                                                       
    0000ebfd  GATTServApp_ReadCharCfg                                                   
    0000ec2d  ICallPlatform_pwrGetXOSCStartupTime                                       
    0000ec5d  NOROM_RFCRfTrimSet                                                        
    0000ec6d  RegisterAssertCback                                                       
    0000ec7d  Util_isActive                                                             
    0000ec8d  ti_sysbios_family_arm_m3_Hwi_getHandle__E                                 
    0000ec9d  ti_sysbios_family_arm_m3_Hwi_post__E                                      
    0000ec9d  ti_sysbios_hal_Hwi_HwiProxy_post__E                                       
    0000ec9d  ti_sysbios_hal_Hwi_post__E                                                
    0000ecbd  xdc_runtime_LoggerCallback_Object__get__S                                 
    0000eccd  xdc_runtime_SysCallback_putch__E                                          
    0000eccd  xdc_runtime_System_SupportProxy_putch__E                                  
    0000ecdd  xdc_runtime_SysCallback_ready__E                                          
    0000ecdd  xdc_runtime_System_SupportProxy_ready__E                                  
    0000eced  xdc_runtime_System_vsnprintf__E                                           
    0000ecfd  ICallPlatform_pwrGetTransitionState                                       
    0000ed0b  ICallPlatform_pwrIsStableXOSCHF                                           
    0000ed61  NOROM_VIMSModeGet                                                         
    0000ed6f  SignExtendVddrTrimValue                                                   
    0000ed7d  __TI_decompress_none                                                      
    0000eddf  ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E                   
    0000eddf  xdc_runtime_Timestamp_SupportProxy_get32__E__mangled__                    
    0000eded  GAP_MakeDiscoverable                                                      
    0000edf9  GAP_TerminateAuth                                                         
    0000ee05  GAP_UpdateLinkParamReq                                                    
    0000ee11  GGS_SetParameter                                                          
    0000ee69  NOROM_CPUcpsid                                                            
    0000ee75  NOROM_CPUcpsie                                                            
    0000ee81  PIN_registerIntCb                                                         
    0000ee8d  Power_getConstraintMask                                                   
    0001f001  Power_getTransitionState                                                  
    0001f00d  UartLog_doInit                                                            
    0001f019  __TI_zero_init                                                            
    0001f031  ti_sysbios_BIOS_getThreadType__E                                          
    0001f03d  ti_sysbios_hal_Hwi_Params__init__S                                        
    0001f051  ti_sysbios_knl_Swi_getTrigger__E                                          
    0001f05d  ti_sysbios_knl_Swi_self__E                                                
    0001f069  xdc_runtime_Startup_reset__I                                              
    0001f075  xdc_runtime_Startup_rtsDone__E                                            
    0001f081  ICallPlatform_pwrSwitchXOSCHF                                             
    0001f095  List_empty                                                                
    0001f09f  UART_write                                                                
    0001f0a9  xdc_runtime_LoggerCallback_disable__E                                     
    0001f0b3  xdc_runtime_LoggerCallback_enable__E                                      
    0001f0bd  xdc_runtime_Text_visitRope__I                                             
    0001f0c7  GAP_RegisterForMsgs                                                       
    0001f0cf  GATT_RegisterForMsgs                                                      
    0001f0d7  RF_flushCmd                                                               
    0001f0e7  GATT_Indication                                                           
    0001f0ed  GGS_AddService                                                            
    0001f0f3  ICall_mallocImpl                                                          
    0001f0f9  UARTCC26XX_readPolling                                                    
    0001f0ff  UARTCC26XX_writePolling                                                   
    0001f105  __xdc__init                                                               
    0001f111  __TI_decompress_rle24                                                     
    0001f16b  ti_sysbios_family_arm_m3_Hwi_setFunc__E                                   
    0001f171  HwiP_disable                                                              
    0001f179  List_head                                                                 
    0001f17d  List_next                                                                 
    0001f185  Util_stopClock                                                            
    0001f191  ti_sysbios_family_arm_cc26xx_Timer_getCount64__E                          
    0001f195  ti_sysbios_knl_Clock_isActive__E                                          
    0001f199  xdc_runtime_LoggerCallback_defaultCreate                                  
    0001f19d  xdc_runtime_SysCallback_defaultReady                                      
    0001f1a1  xdc_runtime_System_printf_va__F                                           
    0001f1a5  xdc_runtime_System_snprintf_va__F                                         
    0001f268  resourceDB                                                                
    0001f2b4  rfDriverTable                                                             
    0001f3cc  Button_ServiceCBs                                                         
    0001f3d8  bs_BUTTON0UUID                                                            
    0001f3e8  bs_BUTTON1UUID                                                            
    0001f400  Data_ServiceCBs                                                           
    0001f40c  ds_StringUUID                                                             
    0001f41c  ds_StreamUUID                                                             
    0001f434  LED_ServiceCBs                                                            
    0001f440  ls_LED0UUID                                                               
    0001f450  ls_LED1UUID                                                               
    0001f460  xdc_runtime_LoggerCallback_Module__FXNS__C                                
    0001f494  BoardGpioInitTable                                                        
    0001f4c0  primaryServiceUUID                                                        
    0001f4c2  characterUUID                                                             
    0001f4c4  clientCharCfgUUID                                                         
    0001f4c6  gapServiceUUID                                                            
    0001f4c8  gattServiceUUID                                                           
    0001f4ca  secondaryServiceUUID                                                      
    0001f4cc  includeUUID                                                               
    0001f4ce  charExtPropsUUID                                                          
    0001f4d0  charUserDescUUID                                                          
    0001f4d2  servCharCfgUUID                                                           
    0001f4d4  charFormatUUID                                                            
    0001f4d6  charAggFormatUUID                                                         
    0001f4d8  deviceNameUUID                                                            
    0001f4da  appearanceUUID                                                            
    0001f4dc  periPrivacyFlagUUID                                                       
    0001f4de  reconnectAddrUUID                                                         
    0001f4e0  periConnParamUUID                                                         
    0001f4e2  serviceChangedUUID                                                        
    0001f4e4  validRangeUUID                                                            
    0001f4e6  extReportRefUUID                                                          
    0001f4e8  reportRefUUID                                                             
    0001f4ec  UARTCC26XX_fxnTable                                                       
    0001f514  xdc_runtime_Startup_sfxnTab__A                                            
    0001f53c  txPowerTable                                                              
    0001f564  UART_defaultParams                                                        
    0001f588  xdc_runtime_LoggerCallback_Object__DESC__C                                
    0001f5a8  xdc_runtime_LoggerCallback_Object__PARAMS__C                              
    0001f5c4  UART_config                                                               
    0001f5dc  uartCC26XXHWAttrs                                                         
    0001f5f4  devInfoServUUID                                                           
    0001f5f6  devInfoSystemIdUUID                                                       
    0001f5f8  devInfoModelNumberUUID                                                    
    0001f5fa  devInfoSerialNumberUUID                                                   
    0001f5fc  devInfoFirmwareRevUUID                                                    
    0001f5fe  devInfoHardwareRevUUID                                                    
    0001f600  devInfoSoftwareRevUUID                                                    
    0001f602  devInfoMfrNameUUID                                                        
    0001f604  devInfo11073CertUUID                                                      
    0001f606  devInfoPnpIdUUID                                                          
    0001f608  PowerCC26XX_config                                                        
    0001f618  RFCC26XX_hwAttrs                                                          
    0001f624  devInfoCBs                                                                
    0001f630  xdc_runtime_Startup_sfxnRts__A                                            
    0001f655  ButtonServiceUUID                                                         
    0001f665  DataServiceUUID                                                           
    0001f675  LedServiceUUID                                                            
    0001f686  xdc_runtime_Text_nodeTab__A                                               
    0001f696  ti_sysbios_knl_Swi_Module__id__C                                          
    0001f6a4  xdc_runtime_Startup_firstFxns__A                                          
    0001f6b0  PINCC26XX_hwAttrs                                                         
    0001f6b8  ti_sysbios_family_arm_m3_Hwi_excHookFuncs__A                              
    0001f6c0  ti_sysbios_knl_Idle_funcList__A                                           
    0001f6c8  txPwrTbl                                                                  
    0001f6ce  ti_sysbios_knl_Task_Module__id__C                                         
    0001f6d4  ti_sysbios_family_arm_m3_Hwi_E_NMI__C                                     
    0001f6d8  ti_sysbios_family_arm_m3_Hwi_E_busFault__C                                
    0001f6dc  ti_sysbios_family_arm_m3_Hwi_E_debugMon__C                                
    0001f6e0  ti_sysbios_family_arm_m3_Hwi_E_hardFault__C                               
    0001f6e4  ti_sysbios_family_arm_m3_Hwi_E_memFault__C                                
    0001f6e8  ti_sysbios_family_arm_m3_Hwi_E_noIsr__C                                   
    0001f6ec  ti_sysbios_family_arm_m3_Hwi_E_reserved__C                                
    0001f6f0  ti_sysbios_family_arm_m3_Hwi_E_svCall__C                                  
    0001f6f4  ti_sysbios_family_arm_m3_Hwi_E_usageFault__C                              
    0001f6f8  ti_sysbios_family_arm_m3_Hwi_excHookFuncs__C                              
    0001f6fc  ti_sysbios_knl_Clock_tickPeriod__C                                        
    0001f700  ti_sysbios_knl_Clock_triggerClock__C                                      
    0001f704  xdc_runtime_ILogger_Interface__BASE__C                                    
    0001f708  xdc_runtime_Log_L_error__C                                                
    0001f70c  xdc_runtime_Log_L_info__C                                                 
    0001f710  xdc_runtime_Log_L_warning__C                                              
    0001f714  xdc_runtime_LoggerCallback_Object__count__C                               
    0001f718  xdc_runtime_LoggerCallback_createInstFxn__C                               
    0001f71c  xdc_runtime_LoggerCallback_outputFxn__C                                   
    0001f720  xdc_runtime_Main_Module__loggerFxn2__C                                    
    0001f724  xdc_runtime_Main_Module__loggerFxn4__C                                    
    0001f728  xdc_runtime_Main_Module__loggerFxn8__C                                    
    0001f72c  xdc_runtime_Main_Module__loggerObj__C                                     
    0001f730  xdc_runtime_SysCallback_putchFxn__C                                       
    0001f734  xdc_runtime_SysCallback_readyFxn__C                                       
    0001f738  xdc_runtime_System_extendFxn__C                                           
    0001f73c  xdc_runtime_Text_nodeTab__C                                               
    0001f740  xdc_runtime_Text_visitRopeFxn__C                                          
    0001f744  xdc_runtime_Main_Module__loggerDefined__C                                 
    0001f746  xdc_runtime_Text_registryModsLastId__C                                    
    0001f748  xdc_runtime_Text_unnamedModsLastId__C                                     
    0001f74c  __c_args__                                                                
    0001fc54  __TI_Handler_Table_Base                                                   
    0001fc60  __TI_Handler_Table_Limit                                                  
    0001fcd8  __TI_CINIT_Base                                                           
    0001fd48  __TI_CINIT_Limit                                                          
    0001ffa8  __ccfg                                                                    
    10014c00  A1_rw                                                                     
    10014c00  __checksum_begin_CommonROM                                                
    10014c01  COMMON_ROM_BASE_ADDR                                                      
    10014c04  P1_ro                                                                     
    10014c05  SCALARMUL_init                                                            
    10014ced  SCALARMUL_core                                                            
    10015019  SCALARMUL_final                                                           
    100150e5  SCALARMUL                                                                 
    10015101  SAVEPOINT                                                                 
    10015141  GETBIT                                                                    
    10015155  GETDIGIT                                                                  
    100151a5  GETDIGITL2R                                                               
    10015215  SelectReg                                                                 
    10015229  ATOMICPATTERN                                                             
    100154f5  JACADD                                                                    
    1001568d  INVERT                                                                    
    10015821  SQUAREMULTIPLYWORD                                                        
    1001588c  LUTOPCODE                                                                 
    10015894  LUTOPSIGN                                                                 
    100158ac  LUTC                                                                      
    100158c4  LUTSE                                                                     
    100158dc  LUTINCI                                                                   
    100158f4  LUTJ                                                                      
    1001596c  LUTSTATE                                                                  
    100159a9  IMPORTLENGTH                                                              
    100159ad  IMPORTMODULUS                                                             
    100159d1  IMPORTOPERAND                                                             
    10015a11  EXPORTOPERAND                                                             
    10015a35  IMPORTDATA                                                                
    10015a51  SETOPERAND                                                                
    10015a6d  COPY                                                                      
    10015a85  ZERO                                                                      
    10015a91  SETWORD                                                                   
    10015a9d  mSET                                                                      
    10015bcd  zSET                                                                      
    10015bd5  mINVK                                                                     
    10015d19  zADD                                                                      
    10015d5d  zSUB                                                                      
    10015de9  zMACC32                                                                   
    10015e69  zSUB32                                                                    
    10015eb5  zADD32                                                                    
    10015f0d  zMULT32                                                                   
    10015f81  mMULT                                                                     
    10016551  mADD                                                                      
    1001664d  mSUB                                                                      
    10016749  mOUT                                                                      
    10016975  ssp_KeyInit_Sw                                                            
    10016979  sspAesEncrypt_Sw                                                          
    10016985  sspKeyExpansion_Sw                                                        
    10016a99  sspAesEncryptKeyExp_Sw                                                    
    10016af5  sspAesEncryptBasic_Sw                                                     
    10016b79  RoundKey_Sw                                                               
    10016c29  AddRoundKeySubBytes_Sw                                                    
    10016c45  ShiftRows_Sw                                                              
    10016c79  MixColumns_Sw                                                             
    10016d05  FFMult_Sw                                                                 
    10016d29  sspAesDecrypt_Sw                                                          
    10016da1  InvAddRoundKey_Sw                                                         
    10016dc9  InvRoundKey_Sw                                                            
    10016e8d  InvSubBytes_Sw                                                            
    10016ea1  InvShiftRows_Sw                                                           
    10016ed5  InvMixColumns_Sw                                                          
    10016f58  FFMult2                                                                   
    10017058  FFMult3                                                                   
    10017158  RCon                                                                      
    10017164  Sbox                                                                      
    10017264  InvSbox                                                                   
    10017365  SSP_CCM_Auth_Sw                                                           
    100174fd  SSP_CCM_Encrypt_Sw                                                        
    100175ed  SSP_CTR_Encrypt_Sw                                                        
    1001767d  SSP_CCM_Decrypt_Sw                                                        
    10017771  SSP_CTR_Decrypt_Sw                                                        
    10017839  SSP_CCM_InvAuth_Sw                                                        
    10017895  SSP_CCM_Auth_Encrypt_Sw                                                   
    100178f5  SSP_CCM_InvAuth_Decrypt_Sw                                                
    10017959  ECC_allocWorkzone                                                         
    10017961  ECC_setWin                                                                
    10017969  ECDSA_sign                                                                
    10017b01  ECDSA_verif                                                               
    10017dbd  eccRom_genKeys                                                            
    10017ded  eccRom_genSharedSecret                                                    
    10017e39  SHA256_updateW                                                            
    10017e75  SHA256_round                                                              
    10017ef1  SHA256_nextState                                                          
    10017f49  SHA256_saveBuffer                                                         
    10017ffd  SHA256_init                                                               
    10018019  SHA256_process                                                            
    10018089  SHA256_final                                                              
    10018129  SHA256_full                                                               
    100182ad  RFHAL_InitRfHal                                                           
    10018315  RFHAL_AllocRatChan                                                        
    1001833d  RFHAL_FreeRatChan                                                         
    10018369  RFHAL_MapRatChansToInt                                                    
    10018391  RFHAL_RegisterRatChanCallback                                             
    100183b9  RFHAL_InitDataQueue                                                       
    100183c5  RFHAL_QueueRFDataEntries                                                  
    10018415  RFHAL_AddTxDataEntry                                                      
    10018485  RFHAL_FreeNextTxDataEntry                                                 
    100184a9  RFHAL_AllocDataEntryQueue                                                 
    100184c5  RFHAL_FreeDataEntryQueue                                                  
    100184cd  RFHAL_GetNextDataEntry                                                    
    100184d1  RFHAL_GetTempDataEntry                                                    
    100184d5  RFHAL_NextDataEntryDone                                                   
    100184f9  RFHAL_AllocDataEntry                                                      
    10018549  RFHAL_FreeDataEntry                                                       
    10018551  RFHAL_BuildRingBuffer                                                     
    100185e1  RFHAL_BuildDataEntryRingBuffer                                            
    10018669  RFHAL_BuildLinkedBuffer                                                   
    10018755  MB_Init                                                                   
    10018799  MB_EnableInts                                                             
    100187f5  MB_DisableInts                                                            
    10018825  MB_ClearInts                                                              
    10018835  MB_EnableHWInts                                                           
    10018865  MB_SendCommand                                                            
    100188a5  MB_SendCommandSynch                                                       
    10018935  MB_ReadMailboxStatus                                                      
    1001893d  MB_RegisterIsrCback                                                       
    10018945  MB_FwDebugDump                                                            
    10018949  mbCmdAckIsr                                                               
    1001895d  mbCpe0Isr                                                                 
    10018985  mbCpe1Isr                                                                 
    100189e5  mbHwIsr                                                                   
    10018a19  AesCcm_authEncrypt_Sw                                                     
    10018a35  AesCcm_decryptAuth_Sw                                                     
    10018a99  Aes_encrypt_Sw                                                            
    10018ac5  Aes_decrypt_Sw                                                            
    10018b09  AesCcm_getNumBlocks_Sw                                                    
    10018b0c  NIST_Curve_P256_p                                                         
    10018b30  NIST_Curve_P256_r                                                         
    10018b54  NIST_Curve_P256_a                                                         
    10018b78  NIST_Curve_P256_b                                                         
    10018b9c  NIST_Curve_P256_Gx                                                        
    10018bc0  NIST_Curve_P256_Gy                                                        
    10018ced  __exit                                                                    
    10018d6c  Fill1                                                                     
    10019ffc  A3_rw                                                                     
    10019ffd  __checksum_end_CommonROM                                                  
    10019ffe  A2_rw                                                                     
    10019ffe  P1_ro_2                                                                   
    10019ffe  __checksum_CommonROM                                                      
    1001a001  ti_sysbios_knl_Mailbox_Instance_init__E                                   
    1001a0cd  ti_sysbios_knl_Semaphore_pend__E                                          
    1001a199  ti_sysbios_heaps_HeapMem_alloc__E                                         
    1001a25d  ti_sysbios_knl_Task_Instance_init__E                                      
    1001a319  ti_sysbios_family_arm_m3_Hwi_postInit__I                                  
    1001a3c9  ti_sysbios_family_arm_m3_Hwi_Instance_init__E                             
    1001a469  ti_sysbios_family_arm_cc26xx_Timer_periodicStub__E                        
    1001a4fd  ti_sysbios_knl_Task_Instance_finalize__E                                  
    1001a591  ti_sysbios_knl_Mailbox_post__E                                            
    1001a615  ti_sysbios_knl_Task_postInit__I                                           
    1001a699  ti_sysbios_family_arm_m3_Hwi_initNVIC__E                                  
    1001a719  ti_sysbios_knl_Clock_startI__E                                            
    1001a795  ti_sysbios_heaps_HeapMem_free__E                                          
    1001a80d  ti_sysbios_knl_Clock_walkQueueDynamic__E                                  
    1001a885  ti_sysbios_knl_Clock_workFunc__E                                          
    1001a8fd  ti_sysbios_knl_Mailbox_pend__E                                            
    1001a96d  ti_sysbios_knl_Task_sleep__E                                              
    1001a9dd  ti_sysbios_knl_Mailbox_Instance_finalize__E                               
    1001aa49  ti_sysbios_family_arm_m3_Hwi_dispatchC__I                                 
    1001aab1  ti_sysbios_family_arm_m3_Hwi_Object__create__S                            
    1001ab15  ti_sysbios_family_arm_m3_Hwi_create                                       
    1001ab79  ti_sysbios_hal_Hwi_create                                                 
    1001abdd  ti_sysbios_knl_Mailbox_create                                             
    1001ac41  ti_sysbios_knl_Semaphore_post__E                                          
    1001aca5  ti_sysbios_knl_Swi_Instance_init__E                                       
    1001ad05  ti_sysbios_knl_Swi_create                                                 
    1001ad61  ti_sysbios_knl_Swi_restoreHwi__E                                          
    1001adbd  ti_sysbios_knl_Task_Module_startup__E                                     
    1001ae19  ti_sysbios_knl_Task_create                                                
    1001ae75  ti_sysbios_knl_Task_startCore__E                                          
    1001aed1  ti_sysbios_family_arm_m3_Hwi_Instance_finalize__E                         
    1001af29  ti_sysbios_family_arm_m3_Hwi_construct                                    
    1001af81  ti_sysbios_knl_Mailbox_construct                                          
    1001afd9  ti_sysbios_knl_Swi_run__I                                                 
    1001b031  ti_sysbios_knl_Swi_schedule__I                                            
    1001b085  ti_sysbios_knl_Swi_construct                                              
    1001b0d5  ti_sysbios_knl_Swi_runLoop__I                                             
    1001b125  ti_sysbios_knl_Task_construct                                             
    1001b175  ti_sysbios_knl_Task_schedule__I                                           
    1001b1c1  ti_sysbios_family_arm_m3_Hwi_Module_startup__E                            
    1001b209  ti_sysbios_heaps_HeapMem_getStats__E                                      
    1001b251  ti_sysbios_knl_Mailbox_Module_startup__E                                  
    1001b299  ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E                          
    1001b2dd  ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E                           
    1001b321  ti_sysbios_knl_Swi_post__E                                                
    1001b365  ti_sysbios_knl_Task_allBlockedFunction__I                                 
    1001b3a9  ti_sysbios_knl_Task_yield__E                                              
    1001b3ed  ti_sysbios_knl_Clock_create                                               
    1001b429  ti_sysbios_knl_Task_exit__E                                               
    1001b463  ti_sysbios_gates_GateHwi_Instance_init__E                                 
    1001b465  ti_sysbios_family_arm_m3_Hwi_getStackInfo__E                              
    1001b49d  ti_sysbios_family_arm_m3_TaskSupport_start__E                             
    1001b4d5  ti_sysbios_heaps_HeapMem_Instance_init__E                                 
    1001b50d  ti_sysbios_knl_Clock_Instance_init__E                                     
    1001b545  ti_sysbios_heaps_HeapMem_init__I                                          
    1001b579  ti_sysbios_knl_Clock_construct                                            
    1001b5ad  ti_sysbios_knl_Semaphore_create                                           
    1001b5e1  ti_sysbios_knl_Swi_restore__E                                             
    1001b615  ti_sysbios_knl_Task_blockI__E                                             
    1001b649  ti_sysbios_gates_GateMutex_Object__create__S                              
    1001b679  ti_sysbios_gates_GateMutex_create                                         
    1001b6a9  ti_sysbios_gates_GateMutex_enter__E                                       
    1001b6d9  ti_sysbios_knl_Clock_getTicks__E                                          
    1001b709  ti_sysbios_knl_Semaphore_construct                                        
    1001b739  ti_sysbios_knl_Task_processVitalTaskFlag__I                               
    1001b769  ti_sysbios_family_arm_cc26xx_Timer_postInit__I                            
    1001b795  ti_sysbios_family_arm_cc26xx_Timer_startup__E                             
    1001b795  ti_sysbios_knl_Clock_TimerProxy_startup__E                                
    1001b7c1  ti_sysbios_family_arm_m3_Hwi_Object__get__S                               
    1001b7ed  ti_sysbios_gates_GateMutex_construct                                      
    1001b819  ti_sysbios_hal_Hwi_initStack                                              
    1001b845  ti_sysbios_heaps_HeapMem_Object__create__S                                
    1001b871  ti_sysbios_heaps_HeapMem_Object__get__S                                   
    1001b89d  ti_sysbios_knl_Mailbox_Object__get__S                                     
    1001b8c9  ti_sysbios_knl_Mailbox_postInit__I                                        
    1001b8f5  ti_sysbios_knl_Queue_construct                                            
    1001b921  ti_sysbios_knl_Queue_create                                               
    1001b94d  ti_sysbios_knl_Semaphore_pendTimeout__I                                   
    1001b979  ti_sysbios_knl_Swi_Object__get__S                                         
    1001b9a5  ti_sysbios_knl_Task_unblockI__E                                           
    1001b9d1  ti_sysbios_family_arm_cc26xx_TimestampProvider_get64__E                   
    1001b9d1  xdc_runtime_Timestamp_SupportProxy_get64__E                               
    1001b9d1  xdc_runtime_Timestamp_get64__E                                            
    1001b9f9  ti_sysbios_hal_Hwi_Instance_init__E                                       
    1001ba21  ti_sysbios_knl_Clock_addI__E                                              
    1001ba49  ti_sysbios_knl_Task_restore__E                                            
    1001ba71  ti_sysbios_family_arm_cc26xx_Timer_Module_startup__E                      
    1001ba95  ti_sysbios_gates_GateHwi_Object__create__S                                
    1001bab9  ti_sysbios_BIOS_RtsGateProxy_Object__delete__S                            
    1001bab9  ti_sysbios_gates_GateMutex_Object__delete__S                              
    1001bab9  ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__delete__S               
    1001badd  ti_sysbios_knl_Clock_Object__delete__S                                    
    1001bb01  ti_sysbios_knl_Semaphore_Instance_init__E                                 
    1001bb25  ti_sysbios_knl_Semaphore_Object__delete__S                                
    1001bb49  ti_sysbios_family_arm_cc26xx_Timer_Module__startupDone__S                 
    1001bb69  ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_startup__E          
    1001bb89  ti_sysbios_family_arm_m3_Hwi_Module__startupDone__S                       
    1001bba9  ti_sysbios_family_arm_m3_Hwi_Object__delete__S                            
    1001bba9  ti_sysbios_hal_Hwi_HwiProxy_Object__delete__S                             
    1001bbc9  ti_sysbios_family_arm_m3_Hwi_excHandler__I                                
    1001bbe9  ti_sysbios_gates_GateHwi_Handle__label__S                                 
    1001bbe9  xdc_runtime_System_Module_GateProxy_Handle__label__S                      
    1001bc09  ti_sysbios_gates_GateHwi_Object__delete__S                                
    1001bc09  xdc_runtime_System_Module_GateProxy_Object__delete__S                     
    1001bc29  ti_sysbios_BIOS_RtsGateProxy_Handle__label__S                             
    1001bc29  ti_sysbios_gates_GateMutex_Handle__label__S                               
    1001bc29  ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S                
    1001bc49  ti_sysbios_gates_GateMutex_Object__destruct__S                            
    1001bc69  ti_sysbios_hal_Hwi_Object__delete__S                                      
    1001bc89  ti_sysbios_heaps_HeapMem_Handle__label__S                                 
    1001bc89  xdc_runtime_Memory_HeapProxy_Handle__label__S                             
    1001bca9  ti_sysbios_heaps_HeapMem_Object__delete__S                                
    1001bca9  xdc_runtime_Memory_HeapProxy_Object__delete__S                            
    1001bcc9  ti_sysbios_knl_Clock_Module_startup__E                                    
    1001bce9  ti_sysbios_knl_Clock_Object__destruct__S                                  
    1001bd09  ti_sysbios_knl_Idle_run__E                                                
    1001bd29  ti_sysbios_knl_Mailbox_Object__delete__S                                  
    1001bd49  ti_sysbios_knl_Queue_Object__delete__S                                    
    1001bd69  ti_sysbios_knl_Queue_Object__get__S                                       
    1001bd89  ti_sysbios_knl_Semaphore_Object__destruct__S                              
    1001bda9  ti_sysbios_knl_Swi_Object__delete__S                                      
    1001bdc9  ti_sysbios_knl_Task_Object__delete__S                                     
    1001bde9  ti_sysbios_knl_Task_Object__get__S                                        
    1001be09  ti_sysbios_knl_Task_enter__I                                              
    1001be29  ti_sysbios_knl_Task_restoreHwi__E                                         
    1001be49  ti_sysbios_hal_Hwi_HwiProxy_create                                        
    1001be67  ti_sysbios_knl_Clock_logTick__E                                           
    1001be69  ti_sysbios_family_arm_m3_Hwi_Object__destruct__S                          
    1001be85  ti_sysbios_family_arm_m3_Hwi_setPriority__E                               
    1001bea1  ti_sysbios_gates_GateMutex_Instance_init__E                               
    1001bebd  ti_sysbios_knl_Clock_scheduleNextTick__E                                  
    1001bed9  ti_sysbios_knl_Mailbox_Object__destruct__S                                
    1001bef5  ti_sysbios_knl_Queue_Object__destruct__S                                  
    1001bf11  ti_sysbios_knl_Queue_get__E                                               
    1001bf2d  ti_sysbios_knl_Queue_put__E                                               
    1001bf49  ti_sysbios_knl_Swi_Object__destruct__S                                    
    1001bf65  ti_sysbios_knl_Task_Object__destruct__S                                   
    1001bf81  ti_sysbios_knl_Task_sleepTimeout__I                                       
    1001bf9b  ti_sysbios_knl_Swi_Instance_finalize__E                                   
    1001bf9d  ti_sysbios_gates_GateMutex_leave__E                                       
    1001bfb5  ti_sysbios_knl_Task_unblock__E                                            
    1001bfcd  ti_sysbios_knl_Clock_Instance_finalize__E                                 
    1001bfe3  ti_sysbios_knl_Clock_start__E                                             
    1001bff9  ti_sysbios_BIOS_getCpuFreq__E                                             
    1001c00d  ti_sysbios_family_arm_m3_Hwi_switchFromBootStack__E                       
    1001c021  ti_sysbios_hal_Hwi_Module_startup__E                                      
    1001c035  ti_sysbios_BIOS_exit__E                                                   
    1001c045  ti_sysbios_BIOS_setThreadType__E                                          
    1001c055  ti_sysbios_BIOS_start__E                                                  
    1001c065  ti_sysbios_family_arm_m3_Hwi_plug__E                                      
    1001c075  ti_sysbios_gates_GateMutex_Instance_finalize__E                           
    1001c085  ti_sysbios_hal_Hwi_HwiProxy_Object__create__S                             
    1001c095  ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E                         
    1001c0a5  ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E                            
    1001c0b5  ti_sysbios_knl_Clock_TimerProxy_setNextTick__E                            
    1001c0c5  ti_sysbios_knl_Semaphore_Instance_finalize__E                             
    1001c0d5  ti_sysbios_knl_Swi_disable__E                                             
    1001c0e5  ti_sysbios_knl_Swi_enabled__E                                             
    1001c0f5  ti_sysbios_knl_Task_disable__E                                            
    1001c105  ti_sysbios_heaps_HeapMem_restore__E                                       
    1001c113  ti_sysbios_knl_Queue_empty__E                                             
    1001c121  ti_sysbios_knl_Queue_remove__E                                            
    1001c12f  ti_sysbios_family_arm_cc26xx_TimestampProvider_getFreq__E                 
    1001c12f  xdc_runtime_Timestamp_SupportProxy_getFreq__E                             
    1001c12f  xdc_runtime_Timestamp_getFreq__E                                          
    1001c13d  ti_sysbios_family_arm_m3_Hwi_Params__init__S                              
    1001c13d  ti_sysbios_hal_Hwi_HwiProxy_Params__init__S                               
    1001c149  ti_sysbios_family_arm_m3_Hwi_disableFxn__E                                
    1001c155  ti_sysbios_family_arm_m3_Hwi_enableFxn__E                                 
    1001c161  ti_sysbios_family_arm_m3_TaskSupport_getStackAlignment__E                 
    1001c16d  ti_sysbios_gates_GateHwi_enter__E                                         
    1001c179  ti_sysbios_BIOS_RtsGateProxy_Params__init__S                              
    1001c179  ti_sysbios_gates_GateMutex_Params__init__S                                
    1001c179  ti_sysbios_heaps_HeapMem_Module_GateProxy_Params__init__S                 
    1001c185  ti_sysbios_knl_Clock_Params__init__S                                      
    1001c191  ti_sysbios_knl_Clock_getTimerHandle__E                                    
    1001c19d  ti_sysbios_knl_Mailbox_Params__init__S                                    
    1001c1a9  ti_sysbios_knl_Queue_dequeue__E                                           
    1001c1b5  ti_sysbios_knl_Queue_enqueue__E                                           
    1001c1c1  ti_sysbios_knl_Semaphore_Params__init__S                                  
    1001c1cd  ti_sysbios_knl_Swi_Params__init__S                                        
    1001c1d9  ti_sysbios_knl_Task_Params__init__S                                       
    1001c1e5  ti_sysbios_knl_Task_self__E                                               
    1001c1f1  ti_sysbios_hal_Hwi_Instance_finalize__E                                   
    1001c1fb  ti_sysbios_family_arm_m3_Hwi_doSwiRestore__I                              
    1001c203  ti_sysbios_family_arm_m3_Hwi_startup__E                                   
    1001c20b  ti_sysbios_knl_Idle_loop__E                                               
    1001c213  ti_sysbios_family_arm_m3_Hwi_doTaskRestore__I                             
    1001c219  ti_sysbios_family_arm_m3_Hwi_restoreFxn__E                                
    1001c21f  ti_sysbios_gates_GateHwi_leave__E                                         
    1001c22b  ti_sysbios_knl_Queue_Instance_init__E                                     
    1001c231  ti_sysbios_knl_Queue_elemClear__E                                         
    1001c237  ti_sysbios_knl_Swi_Module_startup__E                                      
    1001c23d  ti_sysbios_knl_Swi_startup__E                                             
    1001c243  ti_sysbios_knl_Task_enable__E                                             
    1001c249  ti_sysbios_BIOS_RtsGateProxy_enter__E                                     
    1001c24d  ti_sysbios_BIOS_RtsGateProxy_leave__E                                     
    1001c251  ti_sysbios_family_arm_cc26xx_Timer_getExpiredTicks__E                     
    1001c255  ti_sysbios_family_arm_cc26xx_Timer_getPeriod__E                           
    1001c259  ti_sysbios_family_arm_cc26xx_Timer_setPeriod__E                           
    1001c25d  ti_sysbios_family_arm_m3_Hwi_delete                                       
    1001c261  ti_sysbios_family_arm_m3_Hwi_destruct                                     
    1001c265  ti_sysbios_family_arm_m3_TaskSupport_Module__startupDone__S               
    1001c269  ti_sysbios_gates_GateHwi_query__E                                         
    1001c269  xdc_runtime_System_Module_GateProxy_query__E                              
    1001c26d  ti_sysbios_gates_GateMutex_delete                                         
    1001c271  ti_sysbios_gates_GateMutex_destruct                                       
    1001c275  ti_sysbios_BIOS_RtsGateProxy_query__E                                     
    1001c275  ti_sysbios_gates_GateMutex_query__E                                       
    1001c275  ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E                        
    1001c279  ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S                        
    1001c27d  ti_sysbios_hal_Hwi_HwiProxy_delete                                        
    1001c281  ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E                           
    1001c281  ti_sysbios_hal_Hwi_disableInterrupt__E                                    
    1001c285  ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E                            
    1001c285  ti_sysbios_hal_Hwi_enableInterrupt__E                                     
    1001c289  ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E                               
    1001c289  ti_sysbios_hal_Hwi_getStackInfo__E                                        
    1001c28d  ti_sysbios_hal_Hwi_HwiProxy_startup__E                                    
    1001c28d  ti_sysbios_hal_Hwi_startup__E                                             
    1001c291  ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E                        
    1001c295  ti_sysbios_hal_Hwi_delete                                                 
    1001c299  ti_sysbios_hal_Hwi_switchFromBootStack__E                                 
    1001c29d  ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E                        
    1001c2a1  ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E                        
    1001c2a5  ti_sysbios_heaps_HeapMem_isBlocking__E                                    
    1001c2a9  ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S                    
    1001c2ad  ti_sysbios_knl_Clock_TimerProxy_getExpiredTicks__E                        
    1001c2b1  ti_sysbios_knl_Clock_TimerProxy_getPeriod__E                              
    1001c2b5  ti_sysbios_knl_Clock_delete                                               
    1001c2b9  ti_sysbios_knl_Clock_destruct                                             
    1001c2bd  ti_sysbios_knl_Clock_removeI__E                                           
    1001c2c1  ti_sysbios_knl_Clock_setTimeout__E                                        
    1001c2c5  ti_sysbios_knl_Mailbox_delete                                             
    1001c2c9  ti_sysbios_knl_Mailbox_destruct                                           
    1001c2cd  ti_sysbios_knl_Queue_delete                                               
    1001c2d1  ti_sysbios_knl_Queue_destruct                                             
    1001c2d5  ti_sysbios_knl_Queue_head__E                                              
    1001c2d9  ti_sysbios_knl_Queue_next__E                                              
    1001c2dd  ti_sysbios_knl_Semaphore_delete                                           
    1001c2e1  ti_sysbios_knl_Semaphore_destruct                                         
    1001c2e5  ti_sysbios_knl_Swi_delete                                                 
    1001c2e9  ti_sysbios_knl_Swi_destruct                                               
    1001c2ed  ti_sysbios_knl_Swi_postInit__I                                            
    1001c2f1  ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S                   
    1001c2f5  ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E                     
    1001c2f9  ti_sysbios_knl_Task_SupportProxy_start__E                                 
    1001c2fd  ti_sysbios_knl_Task_SupportProxy_swap__E                                  
    1001c301  ti_sysbios_knl_Task_delete                                                
    1001c305  ti_sysbios_knl_Task_destruct                                              
    1001c309  ti_sysbios_knl_Task_startup__E                                            
    1001c30d  xdc_runtime_Startup_startMods__I                                          
    1001c405  xdc_runtime_Core_createObject__I                                          
    1001c487  xdc_runtime_Error_policySpin__E                                           
    1001c489  xdc_runtime_Memory_alloc__E                                               
    1001c4f9  xdc_runtime_Core_deleteObject__I                                          
    1001c559  xdc_runtime_Startup_exec__E                                               
    1001c5a9  xdc_runtime_Assert_raise__I                                               
    1001c5f1  xdc_runtime_Core_assignParams__I                                          
    1001c639  xdc_runtime_Core_constructObject__I                                       
    1001c681  xdc_runtime_System_atexit__E                                              
    1001c6b9  xdc_runtime_System_processAtExit__E                                       
    1001c6ed  xdc_runtime_Core_assignLabel__I                                           
    1001c71d  xdc_runtime_Text_cordText__E                                              
    1001c749  xdc_runtime_System_abort__E                                               
    1001c769  xdc_runtime_Error_raiseX__E                                               
    1001c785  xdc_runtime_Memory_valloc__E                                              
    1001c7a1  xdc_runtime_Core_destructObject__I                                        
    1001c7b9  xdc_runtime_Error_check__E                                                
    1001c7d1  xdc_runtime_System_exit__E                                                
    1001c7e9  xdc_runtime_Text_ropeText__E                                              
    1001c801  xdc_runtime_Memory_free__E                                                
    1001c811  xdc_runtime_SysCallback_abort__E                                          
    1001c821  xdc_runtime_SysCallback_exit__E                                           
    1001c831  xdc_runtime_Timestamp_SupportProxy_get32__E                               
    1001c831  xdc_runtime_Timestamp_get32__E                                            
    1001c841  xdc_runtime_Error_init__E                                                 
    1001c84d  xdc_runtime_Memory_calloc__E                                              
    1001c859  xdc_runtime_Memory_getMaxDefaultTypeAlign__E                              
    1001c879  xdc_runtime_Gate_leaveSystem__E                                           
    1001c87f  xdc_runtime_System_Module_startup__E                                      
    1001c885  xdc_runtime_Gate_enterSystem__E                                           
    1001c889  xdc_runtime_Memory_HeapProxy_alloc__E                                     
    1001c88d  xdc_runtime_Memory_HeapProxy_free__E                                      
    1001c891  xdc_runtime_System_Module_GateProxy_enter__E                              
    1001c895  xdc_runtime_System_Module_GateProxy_leave__E                              
    1001c899  xdc_runtime_System_abortSpin__E                                           
    1001c89b  xdc_runtime_System_exitSpin__E                                            
    1001c89d  ti_sysbios_family_arm_m3_Hwi_dispatch__I                                  
    1001c96d  ti_sysbios_family_arm_m3_TaskSupport_buildTaskStack                       
    1001c9b9  ti_sysbios_family_arm_m3_Hwi_initStacks__E                                
    1001ca01  ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I                             
    1001ca21  ti_sysbios_family_xxx_Hwi_switchAndRunFunc                                
    1001ca3f  ti_sysbios_family_arm_m3_Hwi_pendSV__I                                    
    1001ca57  ti_sysbios_family_arm_m3_Hwi_return                                       
    1001ca59  ti_sysbios_family_arm_m3_TaskSupport_glue                                 
    1001ca69  ti_sysbios_family_arm_m3_TaskSupport_swap__E                              
    1001ca71  ti_sysbios_knl_Task_swapReturn                                            
    1001ca9b  ti_sysbios_rom_cortexm_cc26xx_CC26xx_getRevision__E                       
    20000000  ti_sysbios_family_arm_m3_Hwi_ramVectors                                   
    20000100  ti_sysbios_knl_Task_Module__state__V                                      
    20000144  ti_sysbios_family_arm_m3_Hwi_Module__state__V                             
    20000178  ti_sysbios_knl_Clock_Module__state__V                                     
    200001a4  ti_sysbios_BIOS_Module__state__V                                          
    200001c8  ti_sysbios_knl_Swi_Module__state__V                                       
    200001e4  ti_sysbios_family_arm_cc26xx_Timer_Module__state__V                       
    200001ec  ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V           
    200001f0  xdc_runtime_Startup_Module__state__V                                      
    200001f8  xdc_runtime_System_Module__state__V                                       
    20000200  xdc_runtime_Memory_Module__state__V                                       
    20000300  uartLog_tail                                                              
    20000301  uartLog_head                                                              
    20000302  uartLog_evBufIsEmpty                                                      
    20000304  uartLog_evtNum                                                            
    2000030c  uartLog_outBuf                                                            
    200003b8  uartLog_evBuf                                                             
    200008b8  largo_teclado_mt8224                                                      
    200008bc  largo_teclado_mt8224_ext                                                  
    200008c0  flag                                                                      
    200008e0  dispHandle                                                                
    200008e4  largo_codigo                                                              
    200008ec  B                                                                         
    200008f0  R                                                                         
    20000948  ledPinTable                                                               
    20000954  buttonPinTable                                                            
    200009fc  codigo_balanza                                                            
    20000a24  multiplexorPinTable                                                       
    20000a50  przTask                                                                   
    20000aa0  przTaskStack                                                              
    20000dc0  i                                                                         
    20000dc1  start                                                                     
    20000dc2  chip                                                                      
    20000dc3  data_pointer                                                              
    20000dc4  mode_set                                                                  
    20000dc5  bank                                                                      
    20000dc6  decimalpoint_precio                                                       
    20000dc7  decimalpoint_peso                                                         
    20000dc8  posiciondatapointer_chip                                                  
    20000dd4  db_taskHandle                                                             
    20000dd8  contador                                                                  
    20000ddc  peso                                                                      
    20000de0  precio                                                                    
    20000df0  db_ledPinTable                                                            
    20000e08  i2cPinTable                                                               
    20000e14  db_eb                                                                     
    20000e44  db_taskParams                                                             
    20000e80  i2cDataArray                                                              
    20000ee4  i2cDataArray_datapointer                                                  
    20000f48  db_TaskStack                                                              
    20001148  linkDBNumConns                                                            
    2000125c  gapRoleTask                                                               
    200012ac  gapRoleTaskStack                                                          
    20001694  PowerCC26XX_module                                                        
    200017a0  ti_sysbios_family_arm_cc26xx_Timer_Module__root__V                        
    200017a8  ti_sysbios_family_arm_m3_Hwi_Module__root__V                              
    200017b0  ti_sysbios_family_arm_m3_Hwi_Object__table__V                             
    200017c8  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A                  
    200017cc  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A                 
    200017d0  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A                   
    200017d4  ti_sysbios_gates_GateHwi_Module__root__V                                  
    200017dc  ti_sysbios_gates_GateHwi_Object__table__V                                 
    200017e0  ti_sysbios_gates_GateMutex_Module__root__V                                
    200017e8  ti_sysbios_hal_Hwi_Module__root__V                                        
    200017f0  ti_sysbios_heaps_HeapMem_Module__root__V                                  
    200017f8  ti_sysbios_heaps_HeapMem_Object__table__V                                 
    20001810  ti_sysbios_knl_Clock_Module__root__V                                      
    20001818  ti_sysbios_knl_Clock_Object__table__V                                     
    20001838  ti_sysbios_knl_Event_Module__root__V                                      
    20001840  ti_sysbios_knl_Mailbox_Module__root__V                                    
    20001848  ti_sysbios_knl_Queue_Module__root__V                                      
    20001850  ti_sysbios_knl_Semaphore_Module__root__V                                  
    20001858  ti_sysbios_knl_Swi_Module__root__V                                        
    20001860  ti_sysbios_knl_Task_Module__root__V                                       
    20001868  ti_sysbios_knl_Task_Module_State_0_idleTask__A                            
    2000186c  xdc_runtime_LoggerCallback_Module__root__V                                
    20001874  xdc_runtime_LoggerCallback_Object__table__V                               
    20001884  __xdc__init__addr                                                         
    20001938  ICall_dispatcher                                                          
    20001940  ICall_enterCriticalSection                                                
    20001944  ICall_leaveCriticalSection                                                
    2000195c  HEAPMGR_SIZE                                                              
    20001ab4  rfRegTbl                                                                  
    20001b04  ti_sysbios_knl_Task_Object__table__V                                      
    20001b50  ti_sysbios_family_arm_cc26xx_Timer_Object__table__V                       
    20001b98  ti_sysbios_gates_GateMutex_Object__table__V                               
    20001bd0  ti_sysbios_knl_Swi_Module_State_0_readyQ__A                               
    20001c00  ti_sysbios_knl_Swi_Object__table__V                                       
    20001c30  ti_sysbios_knl_Task_Module_State_0_readyQ__A                              
    20001c60  user0Cfg                                                                  
    20001c88  lastAppOpcodeSent                                                         
    20001c8c  pfnBMAlloc                                                                
    20001c90  pfnBMFree                                                                 
    20001c9c  _lock                                                                     
    20001ca0  _unlock                                                                   
    20001ca4  __TI_cleanup_ptr                                                          
    20001ca8  __TI_dtors_ptr                                                            
    20001cac  xdc_runtime_Registry_Module__state__V                                     
    20001cb4  appAssertCback                                                            
    20001cbc  main_func_sp                                                              
    20001cc8  ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A                          
    20002348  ti_sysbios_knl_Task_Instance_State_0_stack__A                             
    20002788  uartCC26XXObjects                                                         
    2000289c  ti_sysbios_family_arm_m3_Hwi_dispatchTable                                
    20002964  PIN_HandleTable                                                           
    20002ba8  PIN_NumPins                                                               
    20002bd4  driverlib_release_0_45566                                                 
    20002c00  g_pfnRAMVectors                                                           
    20002cc8  heapStart                                                                 
    20003f68  __stack                                                                   
    20003f68  heapEnd                                                                   
    20004368  __STACK_END                                                               
    20004368  __STACK_TOP                                                               
    20004f2c  A4_rw                                                                     
    20004f2c  COMMON_RAM_BASE_ADDR                                                      
    20004f40  P2_rw                                                                     
    20004f40  P2_s0                                                                     
    20004f40  eccRom_windowSize                                                         
    20004f44  eccRom_workzone                                                           
    20004f48  eccRom_param_p                                                            
    20004f4c  eccRom_param_r                                                            
    20004f50  eccRom_param_a                                                            
    20004f54  inScalar                                                                  
    20004f58  inPointX                                                                  
    20004f5c  inPointY                                                                  
    20004f60  outPointX                                                                 
    20004f64  outPointY                                                                 
    20004f68  SCAL                                                                      
    20004f6c  EXPX                                                                      
    20004f70  EXPY                                                                      
    20004f74  EXPZ                                                                      
    20004f78  EXPW                                                                      
    20004f7c  ACCX                                                                      
    20004f80  ACCY                                                                      
    20004f84  ACCZ                                                                      
    20004f88  TMP1                                                                      
    20004f8c  TMP2                                                                      
    20004f90  TMP3                                                                      
    20004f94  TMP4                                                                      
    20004f98  TMP5                                                                      
    20004f9c  TMP6                                                                      
    20004fa0  eccRom_param_Gx                                                           
    20004fa4  eccRom_param_Gy                                                           
    20004fa8  eccRom_param_b                                                            
    20004fac  P2_zi                                                                     
    20004fac  ratChanInfo                                                               
    20004fcc  fwInfoCmd                                                                 
    20004fd8  MSBMOD                                                                    
    20004fdc  aux64                                                                     
    20004fe4  MOD                                                                       
    20004fe8  LEN                                                                       
    20004ffc  pSspAesEncrypt_Sw                                                         
    e000e000  ti_sysbios_family_arm_m3_Hwi_nvic                                         
    ffffffff  __binit__                                                                 
    ffffffff  binit                                                                     
    UNDEFED   HwiP_restore                                                              
    UNDEFED   SHT$$INIT_ARRAY$$Base                                                     
    UNDEFED   SHT$$INIT_ARRAY$$Limit                                                    
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_Handle__label__S__mangled__                  
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_Object__delete__S__mangled__                 
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_Params__init__S__mangled__                   
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_query__E__mangled__                          
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S__mangled__             
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_Object__delete__S__mangled__                  
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_Params__init__S__mangled__                    
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E__mangled__                
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E__mangled__                 
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E__mangled__                    
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_startup__E__mangled__                         
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E__mangled__             
    UNDEFED   ti_sysbios_hal_Hwi_disableInterrupt__E                                    
    UNDEFED   ti_sysbios_hal_Hwi_enableInterrupt__E                                     
    UNDEFED   ti_sysbios_hal_Hwi_getStackInfo__E                                        
    UNDEFED   ti_sysbios_hal_Hwi_startup__E                                             
    UNDEFED   ti_sysbios_hal_Hwi_switchFromBootStack__E                                 
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S__mangled__     
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__delete__S__mangled__    
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_Params__init__S__mangled__      
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E__mangled__             
    UNDEFED   ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S__mangled__         
    UNDEFED   ti_sysbios_knl_Clock_TimerProxy_startup__E__mangled__                     
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S__mangled__        
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E__mangled__          
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_start__E__mangled__                      
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_swap__E__mangled__                       
    UNDEFED   xdc_runtime_Main_Module_GateProxy_Handle__label__S                        
    UNDEFED   xdc_runtime_Main_Module_GateProxy_Object__delete__S                       
    UNDEFED   xdc_runtime_Main_Module_GateProxy_query__E                                
    UNDEFED   xdc_runtime_Memory_HeapProxy_Handle__label__S__mangled__                  
    UNDEFED   xdc_runtime_Memory_HeapProxy_Object__delete__S__mangled__                 
    UNDEFED   xdc_runtime_System_Module_GateProxy_Handle__label__S__mangled__           
    UNDEFED   xdc_runtime_System_Module_GateProxy_Object__delete__S__mangled__          
    UNDEFED   xdc_runtime_System_Module_GateProxy_query__E__mangled__                   
    UNDEFED   xdc_runtime_System_SupportProxy_abort__E                                  
    UNDEFED   xdc_runtime_System_SupportProxy_exit__E                                   
    UNDEFED   xdc_runtime_Timestamp_SupportProxy_get64__E__mangled__                    
    UNDEFED   xdc_runtime_Timestamp_SupportProxy_getFreq__E__mangled__                  
    UNDEFED   xdc_runtime_Timestamp_get32__E                                            
    UNDEFED   xdc_runtime_Timestamp_get64__E                                            
    UNDEFED   xdc_runtime_Timestamp_getFreq__E                                          
    
    [1222 symbols]
    

    And here is the other file, with the old name of the project. I did a clean project but it is still there.

    project_zero_app_cc2650launchxl.map:
    ******************************************************************************
                      TI ARM Linker PC v5.2.6                      
    ******************************************************************************
    >> Linked Wed Nov 02 11:15:12 2016
    
    OUTPUT FILE NAME:   <project_zero_app_cc2650launchxl.out>
    ENTRY POINT SYMBOL: "ResetISR"  address: 0000a07d
    
    
    MEMORY CONFIGURATION
    
             name            origin    length      used     unused   attr    fill
    ----------------------  --------  ---------  --------  --------  ----  --------
      FLASH                 00000000   0000f000  0000ebd8  00000428  R  X
      FLASH_LAST_PAGE       0001f000   00001000  00000058  00000fa8  R  X
      SRAM                  20000000   00004368  00002abe  000018aa  RW X
    
    
    SEGMENT ALLOCATION MAP
    
    run origin  load origin   length   init length attrs members
    ----------  ----------- ---------- ----------- ----- -------
    00000000    00000000    0000e40e   0000e40e    r-x
      00000000    00000000    0000003c   0000003c    r-- .resetVecs
      0000003c    0000003c    000000c4   000000c4    r-x .text.1
      00000100    00000100    0000003c   0000003c    r-- .const:ti_sysbios_knl_Task_Object__PARAMS__C
      0000013c    0000013c    00000034   00000034    r-- .const:ti_sysbios_knl_Mailbox_Object__PARAMS__C
      00000170    00000170    00000030   00000030    r-- .const:ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C
      000001a0    000001a0    0000002c   0000002c    r-- .const:ti_sysbios_hal_Hwi_Object__PARAMS__C
      000001cc    000001cc    00000028   00000028    r-- .const:ti_sysbios_heaps_HeapMem_Module__FXNS__C
      000001f4    000001f4    00000028   00000028    r-- .const:ti_sysbios_knl_Swi_Object__PARAMS__C
      0000021c    0000021c    00000024   00000024    r-- .const:ti_sysbios_gates_GateHwi_Module__FXNS__C
      00000240    00000240    00000024   00000024    r-- .const:ti_sysbios_gates_GateMutex_Module__FXNS__C
      00000264    00000264    00000024   00000024    r-- .const:ti_sysbios_heaps_HeapMem_Object__PARAMS__C
      00000288    00000288    00000024   00000024    r-- .const:ti_sysbios_knl_Clock_Object__PARAMS__C
      000002ac    000002ac    00000024   00000024    r-- .const:ti_sysbios_knl_Semaphore_Object__PARAMS__C
      000002d0    000002d0    00000020   00000020    r-- .const:ti_sysbios_family_arm_m3_Hwi_Object__DESC__C
      000002f0    000002f0    00000020   00000020    r-- .const:ti_sysbios_gates_GateHwi_Object__DESC__C
      00000310    00000310    00000020   00000020    r-- .const:ti_sysbios_gates_GateMutex_Object__DESC__C
      00000330    00000330    00000020   00000020    r-- .const:ti_sysbios_hal_Hwi_Object__DESC__C
      00000350    00000350    00000020   00000020    r-- .const:ti_sysbios_heaps_HeapMem_Object__DESC__C
      00000370    00000370    00000020   00000020    r-- .const:ti_sysbios_knl_Clock_Object__DESC__C
      00000390    00000390    00000020   00000020    r-- .const:ti_sysbios_knl_Mailbox_Object__DESC__C
      000003b0    000003b0    00000020   00000020    r-- .const:ti_sysbios_knl_Queue_Object__DESC__C
      000003d0    000003d0    00000020   00000020    r-- .const:ti_sysbios_knl_Semaphore_Object__DESC__C
      000003f0    000003f0    00000020   00000020    r-- .const:ti_sysbios_knl_Swi_Object__DESC__C
      00000410    00000410    00000020   00000020    r-- .const:ti_sysbios_knl_Task_Object__DESC__C
      00000430    00000430    00000018   00000018    r-- .const:ti_sysbios_gates_GateHwi_Object__PARAMS__C
      00000448    00000448    00000018   00000018    r-- .const:ti_sysbios_gates_GateMutex_Object__PARAMS__C
      00000460    00000460    00000018   00000018    r-- .const:ti_sysbios_knl_Queue_Object__PARAMS__C
      00000478    00000478    00000008   00000008    r-- .const:ti_sysbios_knl_Idle_funcList__C
      00000480    00000480    00000004   00000004    r-x .text.2
      00000484    00000484    00000004   00000004    r-- .const:ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C
      00000488    00000488    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C
      0000048c    0000048c    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C
      00000490    00000490    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C
      00000494    00000494    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_Object__count__C
      00000498    00000498    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_Object__table__C
      0000049c    0000049c    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_ccr__C
      000004a0    000004a0    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C
      000004a4    000004a4    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C
      000004a8    000004a8    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C
      000004ac    000004ac    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_priGroup__C
      000004b0    000004b0    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C
      000004b4    000004b4    00000004   00000004    r-- .const:ti_sysbios_heaps_HeapMem_E_memory__C
      000004b8    000004b8    00000004   00000004    r-- .const:ti_sysbios_heaps_HeapMem_Module__gateObj__C
      000004bc    000004bc    00000004   00000004    r-- .const:ti_sysbios_heaps_HeapMem_Object__count__C
      000004c0    000004c0    00000004   00000004    r-- .const:ti_sysbios_heaps_HeapMem_Object__table__C
      000004c4    000004c4    00000004   00000004    r-- .const:ti_sysbios_heaps_HeapMem_reqAlign__C
      000004c8    000004c8    00000004   00000004    r-- .const:ti_sysbios_knl_Clock_serviceMargin__C
      000004cc    000004cc    00000004   00000004    r-- .const:ti_sysbios_knl_Mailbox_Object__count__C
      000004d0    000004d0    00000004   00000004    r-- .const:ti_sysbios_knl_Mailbox_Object__table__C
      000004d4    000004d4    00000004   00000004    r-- .const:ti_sysbios_knl_Queue_Object__count__C
      000004d8    000004d8    00000004   00000004    r-- .const:ti_sysbios_knl_Queue_Object__table__C
      000004dc    000004dc    00000004   00000004    r-- .const:ti_sysbios_knl_Swi_Object__count__C
      000004e0    000004e0    00000004   00000004    r-- .const:ti_sysbios_knl_Swi_Object__table__C
      000004e4    000004e4    00000004   00000004    r-- .const:ti_sysbios_knl_Swi_numPriorities__C
      000004e8    000004e8    00000004   00000004    r-- .const:ti_sysbios_knl_Task_Object__count__C
      000004ec    000004ec    00000004   00000004    r-- .const:ti_sysbios_knl_Task_Object__table__C
      000004f0    000004f0    00000004   00000004    r-- .const:ti_sysbios_knl_Task_allBlockedFunc__C
      000004f4    000004f4    00000004   00000004    r-- .const:ti_sysbios_knl_Task_defaultStackHeap__C
      000004f8    000004f8    00000004   00000004    r-- .const:ti_sysbios_knl_Task_defaultStackSize__C
      000004fc    000004fc    00000004   00000004    r-- .const:ti_sysbios_knl_Task_numConstructedTasks__C
      00000500    00000500    00000002   00000002    r-x .text.3
      00000502    00000502    00000002   00000002    r-- .const:ti_sysbios_family_arm_cc26xx_Timer_Module__id__C
      00000504    00000504    00000002   00000002    r-- .const:ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C
      00000506    00000506    00000002   00000002    r-- .const:ti_sysbios_family_arm_m3_Hwi_Module__id__C
      00000508    00000508    00000002   00000002    r-- .const:ti_sysbios_gates_GateHwi_Module__id__C
      0000050a    0000050a    00000002   00000002    r-- .const:ti_sysbios_gates_GateMutex_Module__id__C
      0000050c    0000050c    00000002   00000002    r-- .const:ti_sysbios_heaps_HeapMem_Module__id__C
      0000050e    0000050e    00000002   00000002    r-- .const:ti_sysbios_knl_Task_initStackFlag__C
      00000510    00000510    00000001   00000001    r-- .const:ti_sysbios_knl_Clock_tickMode__C
      00000514    00000514    00000008   00000008    r-- .const:xdc_runtime_Startup_firstFxns__C
      0000051c    0000051c    00000008   00000008    r-- .const:xdc_runtime_Startup_lastFxns__C
      00000524    00000524    00000004   00000004    r-- .const:xdc_runtime_Assert_E_assertFailed__C
      00000528    00000528    00000004   00000004    r-- .const:xdc_runtime_Error_E_memory__C
      0000052c    0000052c    00000004   00000004    r-- .const:xdc_runtime_Error_policyFxn__C
      00000530    00000530    00000004   00000004    r-- .const:xdc_runtime_IGateProvider_Interface__BASE__C
      00000534    00000534    00000004   00000004    r-- .const:xdc_runtime_IHeap_Interface__BASE__C
      00000538    00000538    00000004   00000004    r-- .const:xdc_runtime_IModule_Interface__BASE__C
      0000053c    0000053c    00000004   00000004    r-- .const:xdc_runtime_Main_Module__diagsEnabled__C
      00000540    00000540    00000004   00000004    r-- .const:xdc_runtime_Main_Module__diagsIncluded__C
      00000544    00000544    00000004   00000004    r-- .const:xdc_runtime_Main_Module__diagsMask__C
      00000548    00000548    00000004   00000004    r-- .const:xdc_runtime_Memory_defaultHeapInstance__C
      0000054c    0000054c    00000004   00000004    r-- .const:xdc_runtime_Startup_execImpl__C
      00000550    00000550    00000004   00000004    r-- .const:xdc_runtime_Startup_maxPasses__C
      00000554    00000554    00000004   00000004    r-- .const:xdc_runtime_Startup_sfxnRts__C
      00000558    00000558    00000004   00000004    r-- .const:xdc_runtime_Startup_sfxnTab__C
      0000055c    0000055c    00000004   00000004    r-- .const:xdc_runtime_Startup_startModsFxn__C
      00000560    00000560    00000004   00000004    r-- .const:xdc_runtime_SysCallback_abortFxn__C
      00000564    00000564    00000004   00000004    r-- .const:xdc_runtime_SysCallback_exitFxn__C
      00000568    00000568    00000004   00000004    r-- .const:xdc_runtime_System_abortFxn__C
      0000056c    0000056c    00000004   00000004    r-- .const:xdc_runtime_System_exitFxn__C
      00000570    00000570    00000004   00000004    r-- .const:xdc_runtime_System_maxAtexitHandlers__C
      00000574    00000574    00000004   00000004    r-- .const:xdc_runtime_Text_charTab__C
      00000578    00000578    00000004   00000004    r-- .const:xdc_runtime_Text_nameEmpty__C
      0000057c    0000057c    00000004   00000004    r-- .const:xdc_runtime_Text_nameStatic__C
      00000580    00000580    00000004   00000004    r-- .const:xdc_runtime_Text_nameUnknown__C
      00000584    00000584    00000002   00000002    r-- .const:xdc_runtime_Main_Module__id__C
      00000586    00000586    00000002   00000002    r-- .const:xdc_runtime_Memory_Module__id__C
      00000588    00000588    00000002   00000002    r-- .const:xdc_runtime_Text_charCnt__C
      0000058a    0000058a    00000002   00000002    r-- .const:xdc_runtime_Text_isLoaded__C
      0000058c    0000058c    00000001   00000001    r-- .const:xdc_runtime_Error_policy__C
      00000590    00000590    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_AONRTCChannelEnable
      00000594    00000594    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_AONRTCCompareValueSet
      00000598    00000598    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_AONRTCCurrentCompareValueGet
      0000059c    0000059c    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_AONRTCEventClear
      000005a0    000005a0    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E
      000005a4    000005a4    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E
      000005a8    000005a8    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E
      000005ac    000005ac    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_initDevice__I
      000005b0    000005b0    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E
      000005b4    000005b4    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I
      000005b8    000005b8    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_start__E
      000005bc    000005bc    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E
      000005c0    000005c0    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_xdc_runtime_Startup_getState__I
      000005c4    000005c4    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_abort__E
      000005c8    000005c8    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_exit__E
      000005cc    000005cc    00000004   00000004    r-- .const:ti_sysbios_gates_GateMutex_Instance_State_sem__O
      000005d0    000005d0    00000004   00000004    r-- .const:ti_sysbios_knl_Clock_Module_State_clockQ__O
      000005d4    000005d4    00000004   00000004    r-- .const:ti_sysbios_knl_Mailbox_Instance_State_dataQue__O
      000005d8    000005d8    00000004   00000004    r-- .const:ti_sysbios_knl_Mailbox_Instance_State_dataSem__O
      000005dc    000005dc    00000004   00000004    r-- .const:ti_sysbios_knl_Mailbox_Instance_State_freeQue__O
      000005e0    000005e0    00000004   00000004    r-- .const:ti_sysbios_knl_Mailbox_Instance_State_freeSem__O
      000005e4    000005e4    00000004   00000004    r-- .const:ti_sysbios_knl_Semaphore_Instance_State_pendQ__O
      000005e8    000005e8    00000004   00000004    r-- .const:ti_sysbios_knl_Task_Module_State_inactiveQ__O
      000005ec    000005ec    0000c184   0000c184    r-x .text.4
      0000c770    0000c770    00001c9e   00001c9e    r-- .const
    0000e410    0000e410    00000008   00000008    rw-
      0000e410    0000e410    00000008   00000008    rw- .args
    0000e418    0000e418    000007c8   000007c8    r--
      0000e418    0000e418    000007c8   000007c8    r-- .cinit
    0001ffa8    0001ffa8    00000058   00000058    r--
      0001ffa8    0001ffa8    00000058   00000058    r-- .ccfg
    20000000    20000000    000000c8   00000000    rw-
      20000000    20000000    000000c8   00000000    rw- .vecs
    20000100    20000100    000025fa   00000000    rw-
      20000100    20000100    00000044   00000000    rw- .data:ti_sysbios_knl_Task_Module__state__V
      20000144    20000144    00000034   00000000    rw- .data:ti_sysbios_family_arm_m3_Hwi_Module__state__V
      20000178    20000178    0000002c   00000000    rw- .data:ti_sysbios_knl_Clock_Module__state__V
      200001a4    200001a4    00000024   00000000    rw- .data:ti_sysbios_BIOS_Module__state__V
      200001c8    200001c8    0000001c   00000000    rw- .data:ti_sysbios_knl_Swi_Module__state__V
      200001e4    200001e4    00000008   00000000    rw- .data:ti_sysbios_family_arm_cc26xx_Timer_Module__state__V
      200001ec    200001ec    00000004   00000000    rw- .data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V
      200001f0    200001f0    00000008   00000000    rw- .data:xdc_runtime_Startup_Module__state__V
      200001f8    200001f8    00000008   00000000    rw- .data:xdc_runtime_System_Module__state__V
      20000200    20000200    00000004   00000000    rw- .data:xdc_runtime_Memory_Module__state__V
      20000208    20000208    000016da   00000000    rw- .data
      200018e8    200018e8    00000e12   00000000    rw- .bss
    20003f68    20003f68    00000400   00000000    rw-
      20003f68    20003f68    00000400   00000000    rw- .stack
    
    
    SECTION ALLOCATION MAP
    
     output                                  attributes/
    section   page    origin      length       input sections
    --------  ----  ----------  ----------   ----------------
    .resetVecs 
    *          0    00000000    0000003c     
                      00000000    0000003c     app_ble_uartlog_pem3.oem3 (.resetVecs)
    
    .text.1    0    0000003c    000000c4     
                      0000003c    000000b8     button_service.obj (.text:ButtonService_RegisterAppCBs)
                      000000f4    0000000c     drivers_cc26xxware.aem3 : RF.oem3 (.text:FsmNextState)
    
    .const:ti_sysbios_knl_Task_Object__PARAMS__C 
    *          0    00000100    0000003c     
                      00000100    0000003c     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Task_Object__PARAMS__C)
    
    .const:ti_sysbios_knl_Mailbox_Object__PARAMS__C 
    *          0    0000013c    00000034     
                      0000013c    00000034     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Object__PARAMS__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C 
    *          0    00000170    00000030     
                      00000170    00000030     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C)
    
    .const:ti_sysbios_hal_Hwi_Object__PARAMS__C 
    *          0    000001a0    0000002c     
                      000001a0    0000002c     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_hal_Hwi_Object__PARAMS__C)
    
    .const:ti_sysbios_heaps_HeapMem_Module__FXNS__C 
    *          0    000001cc    00000028     
                      000001cc    00000028     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Module__FXNS__C)
    
    .const:ti_sysbios_knl_Swi_Object__PARAMS__C 
    *          0    000001f4    00000028     
                      000001f4    00000028     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Swi_Object__PARAMS__C)
    
    .const:ti_sysbios_gates_GateHwi_Module__FXNS__C 
    *          0    0000021c    00000024     
                      0000021c    00000024     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_gates_GateHwi_Module__FXNS__C)
    
    .const:ti_sysbios_gates_GateMutex_Module__FXNS__C 
    *          0    00000240    00000024     
                      00000240    00000024     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Module__FXNS__C)
    
    .const:ti_sysbios_heaps_HeapMem_Object__PARAMS__C 
    *          0    00000264    00000024     
                      00000264    00000024     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Object__PARAMS__C)
    
    .const:ti_sysbios_knl_Clock_Object__PARAMS__C 
    *          0    00000288    00000024     
                      00000288    00000024     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Clock_Object__PARAMS__C)
    
    .const:ti_sysbios_knl_Semaphore_Object__PARAMS__C 
    *          0    000002ac    00000024     
                      000002ac    00000024     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Semaphore_Object__PARAMS__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_Object__DESC__C 
    *          0    000002d0    00000020     
                      000002d0    00000020     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Object__DESC__C)
    
    .const:ti_sysbios_gates_GateHwi_Object__DESC__C 
    *          0    000002f0    00000020     
                      000002f0    00000020     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_gates_GateHwi_Object__DESC__C)
    
    .const:ti_sysbios_gates_GateMutex_Object__DESC__C 
    *          0    00000310    00000020     
                      00000310    00000020     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Object__DESC__C)
    
    .const:ti_sysbios_hal_Hwi_Object__DESC__C 
    *          0    00000330    00000020     
                      00000330    00000020     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_hal_Hwi_Object__DESC__C)
    
    .const:ti_sysbios_heaps_HeapMem_Object__DESC__C 
    *          0    00000350    00000020     
                      00000350    00000020     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Object__DESC__C)
    
    .const:ti_sysbios_knl_Clock_Object__DESC__C 
    *          0    00000370    00000020     
                      00000370    00000020     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Clock_Object__DESC__C)
    
    .const:ti_sysbios_knl_Mailbox_Object__DESC__C 
    *          0    00000390    00000020     
                      00000390    00000020     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Object__DESC__C)
    
    .const:ti_sysbios_knl_Queue_Object__DESC__C 
    *          0    000003b0    00000020     
                      000003b0    00000020     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Queue_Object__DESC__C)
    
    .const:ti_sysbios_knl_Semaphore_Object__DESC__C 
    *          0    000003d0    00000020     
                      000003d0    00000020     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Semaphore_Object__DESC__C)
    
    .const:ti_sysbios_knl_Swi_Object__DESC__C 
    *          0    000003f0    00000020     
                      000003f0    00000020     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Swi_Object__DESC__C)
    
    .const:ti_sysbios_knl_Task_Object__DESC__C 
    *          0    00000410    00000020     
                      00000410    00000020     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Task_Object__DESC__C)
    
    .const:ti_sysbios_gates_GateHwi_Object__PARAMS__C 
    *          0    00000430    00000018     
                      00000430    00000018     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_gates_GateHwi_Object__PARAMS__C)
    
    .const:ti_sysbios_gates_GateMutex_Object__PARAMS__C 
    *          0    00000448    00000018     
                      00000448    00000018     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Object__PARAMS__C)
    
    .const:ti_sysbios_knl_Queue_Object__PARAMS__C 
    *          0    00000460    00000018     
                      00000460    00000018     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Queue_Object__PARAMS__C)
    
    .const:ti_sysbios_knl_Idle_funcList__C 
    *          0    00000478    00000008     
                      00000478    00000008     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Idle_funcList__C)
    
    .text.2    0    00000480    00000004     
                      00000480    00000004     icall_api.obj (.text:GATTServApp_AddService)
    
    .const:ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C 
    *          0    00000484    00000004     
                      00000484    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C 
    *          0    00000488    00000004     
                      00000488    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C 
    *          0    0000048c    00000004     
                      0000048c    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C 
    *          0    00000490    00000004     
                      00000490    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_Object__count__C 
    *          0    00000494    00000004     
                      00000494    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Object__count__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_Object__table__C 
    *          0    00000498    00000004     
                      00000498    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Object__table__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_ccr__C 
    *          0    0000049c    00000004     
                      0000049c    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_ccr__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C 
    *          0    000004a0    00000004     
                      000004a0    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C 
    *          0    000004a4    00000004     
                      000004a4    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C 
    *          0    000004a8    00000004     
                      000004a8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_priGroup__C 
    *          0    000004ac    00000004     
                      000004ac    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_priGroup__C)
    
    .const:ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C 
    *          0    000004b0    00000004     
                      000004b0    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C)
    
    .const:ti_sysbios_heaps_HeapMem_E_memory__C 
    *          0    000004b4    00000004     
                      000004b4    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_E_memory__C)
    
    .const:ti_sysbios_heaps_HeapMem_Module__gateObj__C 
    *          0    000004b8    00000004     
                      000004b8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Module__gateObj__C)
    
    .const:ti_sysbios_heaps_HeapMem_Object__count__C 
    *          0    000004bc    00000004     
                      000004bc    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Object__count__C)
    
    .const:ti_sysbios_heaps_HeapMem_Object__table__C 
    *          0    000004c0    00000004     
                      000004c0    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Object__table__C)
    
    .const:ti_sysbios_heaps_HeapMem_reqAlign__C 
    *          0    000004c4    00000004     
                      000004c4    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_reqAlign__C)
    
    .const:ti_sysbios_knl_Clock_serviceMargin__C 
    *          0    000004c8    00000004     
                      000004c8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Clock_serviceMargin__C)
    
    .const:ti_sysbios_knl_Mailbox_Object__count__C 
    *          0    000004cc    00000004     
                      000004cc    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Object__count__C)
    
    .const:ti_sysbios_knl_Mailbox_Object__table__C 
    *          0    000004d0    00000004     
                      000004d0    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Object__table__C)
    
    .const:ti_sysbios_knl_Queue_Object__count__C 
    *          0    000004d4    00000004     
                      000004d4    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Queue_Object__count__C)
    
    .const:ti_sysbios_knl_Queue_Object__table__C 
    *          0    000004d8    00000004     
                      000004d8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Queue_Object__table__C)
    
    .const:ti_sysbios_knl_Swi_Object__count__C 
    *          0    000004dc    00000004     
                      000004dc    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Swi_Object__count__C)
    
    .const:ti_sysbios_knl_Swi_Object__table__C 
    *          0    000004e0    00000004     
                      000004e0    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Swi_Object__table__C)
    
    .const:ti_sysbios_knl_Swi_numPriorities__C 
    *          0    000004e4    00000004     
                      000004e4    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Swi_numPriorities__C)
    
    .const:ti_sysbios_knl_Task_Object__count__C 
    *          0    000004e8    00000004     
                      000004e8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Task_Object__count__C)
    
    .const:ti_sysbios_knl_Task_Object__table__C 
    *          0    000004ec    00000004     
                      000004ec    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Task_Object__table__C)
    
    .const:ti_sysbios_knl_Task_allBlockedFunc__C 
    *          0    000004f0    00000004     
                      000004f0    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Task_allBlockedFunc__C)
    
    .const:ti_sysbios_knl_Task_defaultStackHeap__C 
    *          0    000004f4    00000004     
                      000004f4    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Task_defaultStackHeap__C)
    
    .const:ti_sysbios_knl_Task_defaultStackSize__C 
    *          0    000004f8    00000004     
                      000004f8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Task_defaultStackSize__C)
    
    .const:ti_sysbios_knl_Task_numConstructedTasks__C 
    *          0    000004fc    00000004     
                      000004fc    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Task_numConstructedTasks__C)
    
    .text.3    0    00000500    00000002     
                      00000500    00000002     ble_user_config.obj (.text:DefaultAssertCback)
    
    .const:ti_sysbios_family_arm_cc26xx_Timer_Module__id__C 
    *          0    00000502    00000002     
                      00000502    00000002     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_cc26xx_Timer_Module__id__C)
    
    .const:ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C 
    *          0    00000504    00000002     
                      00000504    00000002     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_Module__id__C 
    *          0    00000506    00000002     
                      00000506    00000002     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Module__id__C)
    
    .const:ti_sysbios_gates_GateHwi_Module__id__C 
    *          0    00000508    00000002     
                      00000508    00000002     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_gates_GateHwi_Module__id__C)
    
    .const:ti_sysbios_gates_GateMutex_Module__id__C 
    *          0    0000050a    00000002     
                      0000050a    00000002     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Module__id__C)
    
    .const:ti_sysbios_heaps_HeapMem_Module__id__C 
    *          0    0000050c    00000002     
                      0000050c    00000002     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Module__id__C)
    
    .const:ti_sysbios_knl_Task_initStackFlag__C 
    *          0    0000050e    00000002     
                      0000050e    00000002     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Task_initStackFlag__C)
    
    .const:ti_sysbios_knl_Clock_tickMode__C 
    *          0    00000510    00000001     
                      00000510    00000001     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Clock_tickMode__C)
    
    .const:xdc_runtime_Startup_firstFxns__C 
    *          0    00000514    00000008     
                      00000514    00000008     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Startup_firstFxns__C)
    
    .const:xdc_runtime_Startup_lastFxns__C 
    *          0    0000051c    00000008     
                      0000051c    00000008     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Startup_lastFxns__C)
    
    .const:xdc_runtime_Assert_E_assertFailed__C 
    *          0    00000524    00000004     
                      00000524    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Assert_E_assertFailed__C)
    
    .const:xdc_runtime_Error_E_memory__C 
    *          0    00000528    00000004     
                      00000528    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Error_E_memory__C)
    
    .const:xdc_runtime_Error_policyFxn__C 
    *          0    0000052c    00000004     
                      0000052c    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Error_policyFxn__C)
    
    .const:xdc_runtime_IGateProvider_Interface__BASE__C 
    *          0    00000530    00000004     
                      00000530    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_IGateProvider_Interface__BASE__C)
    
    .const:xdc_runtime_IHeap_Interface__BASE__C 
    *          0    00000534    00000004     
                      00000534    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_IHeap_Interface__BASE__C)
    
    .const:xdc_runtime_IModule_Interface__BASE__C 
    *          0    00000538    00000004     
                      00000538    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_IModule_Interface__BASE__C)
    
    .const:xdc_runtime_Main_Module__diagsEnabled__C 
    *          0    0000053c    00000004     
                      0000053c    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Main_Module__diagsEnabled__C)
    
    .const:xdc_runtime_Main_Module__diagsIncluded__C 
    *          0    00000540    00000004     
                      00000540    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Main_Module__diagsIncluded__C)
    
    .const:xdc_runtime_Main_Module__diagsMask__C 
    *          0    00000544    00000004     
                      00000544    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Main_Module__diagsMask__C)
    
    .const:xdc_runtime_Memory_defaultHeapInstance__C 
    *          0    00000548    00000004     
                      00000548    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Memory_defaultHeapInstance__C)
    
    .const:xdc_runtime_Startup_execImpl__C 
    *          0    0000054c    00000004     
                      0000054c    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Startup_execImpl__C)
    
    .const:xdc_runtime_Startup_maxPasses__C 
    *          0    00000550    00000004     
                      00000550    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Startup_maxPasses__C)
    
    .const:xdc_runtime_Startup_sfxnRts__C 
    *          0    00000554    00000004     
                      00000554    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Startup_sfxnRts__C)
    
    .const:xdc_runtime_Startup_sfxnTab__C 
    *          0    00000558    00000004     
                      00000558    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Startup_sfxnTab__C)
    
    .const:xdc_runtime_Startup_startModsFxn__C 
    *          0    0000055c    00000004     
                      0000055c    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Startup_startModsFxn__C)
    
    .const:xdc_runtime_SysCallback_abortFxn__C 
    *          0    00000560    00000004     
                      00000560    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_SysCallback_abortFxn__C)
    
    .const:xdc_runtime_SysCallback_exitFxn__C 
    *          0    00000564    00000004     
                      00000564    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_SysCallback_exitFxn__C)
    
    .const:xdc_runtime_System_abortFxn__C 
    *          0    00000568    00000004     
                      00000568    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_System_abortFxn__C)
    
    .const:xdc_runtime_System_exitFxn__C 
    *          0    0000056c    00000004     
                      0000056c    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_System_exitFxn__C)
    
    .const:xdc_runtime_System_maxAtexitHandlers__C 
    *          0    00000570    00000004     
                      00000570    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_System_maxAtexitHandlers__C)
    
    .const:xdc_runtime_Text_charTab__C 
    *          0    00000574    00000004     
                      00000574    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Text_charTab__C)
    
    .const:xdc_runtime_Text_nameEmpty__C 
    *          0    00000578    00000004     
                      00000578    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Text_nameEmpty__C)
    
    .const:xdc_runtime_Text_nameStatic__C 
    *          0    0000057c    00000004     
                      0000057c    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Text_nameStatic__C)
    
    .const:xdc_runtime_Text_nameUnknown__C 
    *          0    00000580    00000004     
                      00000580    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Text_nameUnknown__C)
    
    .const:xdc_runtime_Main_Module__id__C 
    *          0    00000584    00000002     
                      00000584    00000002     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Main_Module__id__C)
    
    .const:xdc_runtime_Memory_Module__id__C 
    *          0    00000586    00000002     
                      00000586    00000002     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Memory_Module__id__C)
    
    .const:xdc_runtime_Text_charCnt__C 
    *          0    00000588    00000002     
                      00000588    00000002     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Text_charCnt__C)
    
    .const:xdc_runtime_Text_isLoaded__C 
    *          0    0000058a    00000002     
                      0000058a    00000002     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Text_isLoaded__C)
    
    .const:xdc_runtime_Error_policy__C 
    *          0    0000058c    00000001     
                      0000058c    00000001     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Error_policy__C)
    
    .const:ti_sysbios_rom_ROM_AONRTCChannelEnable 
    *          0    00000590    00000004     
                      00000590    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_AONRTCChannelEnable)
    
    .const:ti_sysbios_rom_ROM_AONRTCCompareValueSet 
    *          0    00000594    00000004     
                      00000594    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_AONRTCCompareValueSet)
    
    .const:ti_sysbios_rom_ROM_AONRTCCurrentCompareValueGet 
    *          0    00000598    00000004     
                      00000598    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_AONRTCCurrentCompareValueGet)
    
    .const:ti_sysbios_rom_ROM_AONRTCEventClear 
    *          0    0000059c    00000004     
                      0000059c    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_AONRTCEventClear)
    
    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E 
    *          0    000005a0    00000004     
                      000005a0    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E)
    
    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E 
    *          0    000005a4    00000004     
                      000005a4    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E)
    
    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E 
    *          0    000005a8    00000004     
                      000005a8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E)
    
    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_initDevice__I 
    *          0    000005ac    00000004     
                      000005ac    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_initDevice__I)
    
    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E 
    *          0    000005b0    00000004     
                      000005b0    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E)
    
    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I 
    *          0    000005b4    00000004     
                      000005b4    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I)
    
    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_start__E 
    *          0    000005b8    00000004     
                      000005b8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_start__E)
    
    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E 
    *          0    000005bc    00000004     
                      000005bc    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E)
    
    .const:ti_sysbios_rom_ROM_xdc_runtime_Startup_getState__I 
    *          0    000005c0    00000004     
                      000005c0    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_xdc_runtime_Startup_getState__I)
    
    .const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_abort__E 
    *          0    000005c4    00000004     
                      000005c4    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_abort__E)
    
    .const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_exit__E 
    *          0    000005c8    00000004     
                      000005c8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_exit__E)
    
    .const:ti_sysbios_gates_GateMutex_Instance_State_sem__O 
    *          0    000005cc    00000004     
                      000005cc    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Instance_State_sem__O)
    
    .const:ti_sysbios_knl_Clock_Module_State_clockQ__O 
    *          0    000005d0    00000004     
                      000005d0    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Clock_Module_State_clockQ__O)
    
    .const:ti_sysbios_knl_Mailbox_Instance_State_dataQue__O 
    *          0    000005d4    00000004     
                      000005d4    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Instance_State_dataQue__O)
    
    .const:ti_sysbios_knl_Mailbox_Instance_State_dataSem__O 
    *          0    000005d8    00000004     
                      000005d8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Instance_State_dataSem__O)
    
    .const:ti_sysbios_knl_Mailbox_Instance_State_freeQue__O 
    *          0    000005dc    00000004     
                      000005dc    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Instance_State_freeQue__O)
    
    .const:ti_sysbios_knl_Mailbox_Instance_State_freeSem__O 
    *          0    000005e0    00000004     
                      000005e0    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Instance_State_freeSem__O)
    
    .const:ti_sysbios_knl_Semaphore_Instance_State_pendQ__O 
    *          0    000005e4    00000004     
                      000005e4    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Semaphore_Instance_State_pendQ__O)
    
    .const:ti_sysbios_knl_Task_Module_State_inactiveQ__O 
    *          0    000005e8    00000004     
                      000005e8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Task_Module_State_inactiveQ__O)
    
    .text.4    0    000005ec    0000c184     
                      000005ec    00000544     project_zero.obj (.text:ProjectZero_init$0)
                      00000b30    000003ec     data_service.obj (.text:Data_Service_WriteAttrCB$9)
                      00000f1c    000003d4     driverlib.lib : setup.obj (.text:HapiTrimDeviceShutDown$26)
                      000012f0    00000344     data_service.obj (.text:DataService_SetParameter)
                      00001634    00000338     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_System_doPrint__I)
                      0000196c    00000328     button_service.obj (.text:ButtonService_SetParameter)
                      00001c94    0000031c     drivers_cc26xxware.aem3 : RF.oem3 (.text:fsmActiveState)
                      00001fb0    00000310     led_service.obj (.text:LED_Service_WriteAttrCB$13)
                      000022c0    000002cc     project_zero.obj (.text:user_processApplicationMessage$0)
                      0000258c    000002b4     project_zero.obj (.text:user_processGapStateChangeEvt$0)
                      00002840    000002a4     project_zero.obj (.text:conversion_mt8442_ext_hex)
                      00002ae4    00000244     project_zero.obj (.text:ProjectZero_processGATTMsg$0)
                      00002d28    00000240     button_service.obj (.text:Button_Service_ReadAttrCB$8)
                      00002f68    0000023c     data_service.obj (.text:Data_Service_ReadAttrCB$9)
                      000031a4    0000023c     peripheral.obj (.text:GAPRole_SetParameter)
                      000033e0    0000023c     led_service.obj (.text:LED_Service_ReadAttrCB$13)
                      0000361c    0000023c     peripheral.obj (.text:gapRole_processGAPMsg$14)
                      00003858    00000234     project_zero.obj (.text:user_LedService_ValueChangeHandler$0)
                      00003a8c    00000228     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
                      00003cb4    0000021c     led_service.obj (.text:LedService_SetParameter)
                      00003ed0    00000204     driverlib.lib : sys_ctrl.obj (.text:SysCtrlSetRechargeBeforePowerDown)
                      000040d4    00000204     drivers_cc26xxware.aem3 : RF.oem3 (.text:abortCmd)
                      000042d8    000001f4     rtsv7M3_T_le_eabi.lib : ull_div_t2.obj (.text)
                      000044cc    000001e0     drivers_cc26xxware.aem3 : PINCC26XX.oem3 (.text:PIN_init)
                      000046ac    000001e0                             : RF.oem3 (.text:RF_postCmd)
                      0000488c    000001d0     button_service.obj (.text:Button_Service_WriteAttrCB$8)
                      00004a5c    000001d0     drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:calibrateRcoscHf1)
                      00004c2c    000001a0     project_zero.obj (.text:user_gapBondMgr_pairStateCB$0)
                      00004dcc    00000190     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                      00004f5c    00000186     project_zero.obj (.text:conversion_mt8442_hex)
                      000050e2    00000002     driverlib.lib : rfc.obj (.text:NOROM_RFCRTrim)
                      000050e4    00000180     drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_doCalibrate)
                      00005264    00000178     project_zero.obj (.text:ProjectZero_freeAttRsp$0)
                      000053dc    0000016c     project_zero.obj (.text:user_ButtonService_CfgChangeHandler$0)
                      00005548    00000158     uart_logs.obj (.text:uartLog_doPrint$17)
                      000056a0    00000134     drivers_cc26xxware.aem3 : RF.oem3 (.text:rf_init)
                      000057d4    00000130     project_zero.obj (.text:user_DataService_ValueChangeHandler$0)
                      00005904    00000128     drivers_cc26xxware.aem3 : RF.oem3 (.text:fsmSetupState)
                      00005a2c    00000120     peripheral.obj (.text:GAPRole_GetParameter)
                      00005b4c    0000011c     project_zero.obj (.text:user_DataService_CfgChangeHandler$0)
                      00005c68    00000118     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_init)
                      00005d80    00000118                             : RF.oem3 (.text:hwiFxnCpe0Active)
                      00005e98    00000100     project_zero.obj (.text:user_handleButtonPress$0)
                      00005f98    000000fc     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                      00006094    000000fc     peripheral.obj (.text:gapRole_taskFxn$14)
                      00006190    000000fc     rtsv7M3_T_le_eabi.lib : fd_mul_t2.obj (.text)
                      0000628c    000000f8     project_zero.obj (.text:ProjectZero_sendAttRsp$0)
                      00006384    000000f8     drivers_cc26xxware.aem3 : RF.oem3 (.text:RF_close)
                      0000647c    000000f8     app_ble_uartlog_pem3.oem3 (.text:xdc_runtime_System_printfExtend__I)
                      00006574    000000f4     project_zero.obj (.text:user_service_ValueChangeCB$0)
                      00006668    000000f0     project_zero.obj (.text:user_service_CfgChangeCB$0)
                      00006758    000000ec     icall.obj (.text:ICall_primWaitMatch$4)
                      00006844    000000ec     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_hwiIntFxn)
                      00006930    000000e0     button_service.obj (.text:ButtonService_AddService)
                      00006a10    000000d8     project_zero.obj (.text:buttonCallbackFxn$0)
                      00006ae8    000000d4     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_releaseDependency)
                      00006bbc    000000d0                             : PowerCC26XX.oem3 (.text:Power_setDependency)
                      00006c8c    000000c8     data_service.obj (.text:DataService_AddService)
                      00006d54    000000c8     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_initHw)
                      00006e1c    000000c4                             : RF.oem3 (.text:fsmPowerUpState)
                      00006ee0    000000bc     power_cc26xx_tirtos.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
                      00006f9c    000000bc     drivers_cc26xxware.aem3 : RF.oem3 (.text:RF_open)
                      00007058    000000bc                             : RF.oem3 (.text:RF_pendCmd)
                      00007114    000000bc                             : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                      000071d0    000000b8                             : PINCC26XX.oem3 (.text:PINCC26XX_setIoCfg)
                      00007288    000000b8     project_zero.obj (.text:ProjectZero_processStackMsg$0)
                      00007340    000000b8     project_zero.obj (.text:user_gapStateChangeCB$0)
                      000073f8    000000b4     led_service.obj (.text:LedService_RegisterAppCBs)
                      000074ac    000000b0     data_service.obj (.text:DataService_RegisterAppCBs)
                      0000755c    000000b0     devinfoservice.obj (.text:devInfo_ReadAttrCB$10)
                      0000760c    000000ac     led_service.obj (.text:LedService_AddService)
                      000076b8    000000ac     drivers_cc26xxware.aem3 : RF.oem3 (.text:swiFxnHw)
                      00007764    000000a8                             : RF.oem3 (.text:RF_ratCapture)
                      0000780c    000000a0     auto_init.aem3 : auto_init.oem3 (.text)
                      000078ac    000000a0     driverlib.lib : setup.obj (.text:trimDevice)
                      0000794c    0000009c     rtsv7M3_T_le_eabi.lib : memcpy_t2.obj (.text)
                      000079e8    0000009a     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_putSite__E)
                      00007a82    00000002     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:emptyClockFunc)
                      00007a84    00000098     gattservapp_util.obj (.text:GATTServApp_ProcessCharCfg)
                      00007b1c    00000098     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
                      00007bb4    00000094     drivers_cc26xxware.aem3 : PINCC26XX.oem3 (.text:PIN_open)
                      00007c48    00000094                             : UARTCC26XX.oem3 (.text:writeFinishedDoCallback)
                      00007cdc    00000094     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_putMod__E)
                      00007d70    00000090     peripheral.obj (.text:gapRole_init$14)
                      00007e00    00000090     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                      00007e90    0000008c                             : UARTCC26XX.oem3 (.text:UARTCC26XX_initIO)
                      00007f1c    0000008c                             : UARTCC26XX.oem3 (.text:UARTCC26XX_writeCancel)
                      00007fa8    00000088     driverlib.lib : osc.obj (.text:OSCHF_GetStartupTime)
                      00008030    00000084     icall.obj (.text:ICall_heapMalloc)
                      000080b4    00000084     icall.obj (.text:ICall_primSetTimer$4)
                      00008138    00000084     drivers_cc26xxware.aem3 : RF.oem3 (.text:RF_ratDisableChannel)
                      000081bc    00000080     project_zero.obj (.text:ProjectZero_taskFxn$0)
                      0000823c    0000007c     icall.obj (.text:ICall_createRemoteTasks)
                      000082b8    0000007c     drivers_cc26xxware.aem3 : RF.oem3 (.text:RF_yield)
                      00008334    0000007c                             : PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
                      000083b0    0000007c     uart_logs.obj (.text:uartLog_outputFxn)
                      0000842c    0000007a     rtsv7M3_T_le_eabi.lib : memset_t2.obj (.text)
                      000084a6    00000002                           : i_div0.obj (.text)
                      000084a8    00000078     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_close)
                      00008520    00000074     icall_cc2650.obj (.text:ICallPlatform_pwrUpdActivityCounter)
                      00008594    00000074     icall.obj (.text:ICall_primSend$4)
                      00008608    00000074     drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_auxISR)
                      0000867c    00000074                             : PowerCC26XX_calibrateRCOSC.oem3 (.text:calibrateRcoscHf2)
                      000086f0    00000074                             : RF.oem3 (.text:fsmPowerDownState)
                      00008764    00000074     peripheral.obj (.text:gapRole_startConnUpdate$14)
                      000087d8    00000074     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:writeTxFifoFlush)
                      0000884c    00000070     driverlib.lib : chipinfo.obj (.text:ChipInfo_GetHwRevision)
                      000088bc    00000070     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_readCancel)
                      0000892c    00000070     gattservapp_util.obj (.text:gattServApp_SendNotiInd$12)
                      0000899c    0000006d     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_System_formatNum__I)
                      00008a09    00000001     --HOLE-- [fill = 0]
                      00008a0a    00000002     app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_nullFunc__I)
                      00008a0c    0000006c     icall.obj (.text:ICall_heapInit)
                      00008a78    0000006c     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
                      00008ae4    0000006c     project_zero.obj (.text:buttonDebounceSwiFxn$0)
                      00008b50    0000006a     rtsv7M3_T_le_eabi.lib : copy_decompress_rle.obj (.text)
                      00008bba    00000002     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_triggerFunc__I)
                      00008bbc    00000068     driverlib.lib : setup.obj (.text:GetTrimForAmpcompCtrl$26)
                      00008c24    00000068     drivers_cc26xxware.aem3 : RF.oem3 (.text:RF_getCurrentTime)
                      00008c8c    00000068                             : RF.oem3 (.text:RF_getInfo)
                      00008cf4    00000068     driverlib.lib : sys_ctrl.obj (.text:SysCtrl_DCDC_VoltageConditionalControl)
                      00008d5c    00000068     project_zero.obj (.text:Util_convertArrayToHexString$0)
                      00008dc4    00000068     uart_logs.obj (.text:uartLog_flush)
                      00008e2c    00000064     driverlib.lib : setup.obj (.text:GetTrimForAnabypassValue1$26)
                      00008e90    00000064     drivers_cc26xxware.aem3 : RF.oem3 (.text:RF_ratCompare)
                      00008ef4    00000064                             : RF.oem3 (.text:decActiveClientCnt)
                      00008f58    00000064     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_start__E)
                      00008fbc    00000060     icall.obj (.text:ICall_primEnroll$4)
                      0000901c    00000060     drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:updateSubSecInc)
                      0000907c    0000005c     icall.obj (.text:ICall_primThreadServes$4)
                      000090d8    0000005c     driverlib.lib : osc.obj (.text:OSCHF_AttemptToSwitchToXosc)
                      00009134    0000005c     drivers_cc26xxware.aem3 : PINCC26XX.oem3 (.text:PIN_remove)
                      00009190    0000005c                             : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_RCOSC_clockFunc)
                      000091ec    0000005c     driverlib.lib : sys_ctrl.obj (.text:SysCtrlAdjustRechargeAfterPowerDown)
                      00009248    0000005c     project_zero.obj (.text:conversion_mt8442_ascii)
                      000092a4    0000005c     project_zero.obj (.text:conversion_mt8442_ext_ascii)
                      00009300    0000005c     drivers_cc26xxware.aem3 : RF.oem3 (.text:fsmPatchState)
                      0000935c    0000005c     app_ble_uartlog_pem3.oem3 (.text:xdc_runtime_Startup_getState__I)
                      000093b8    0000005b     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_putLab__E)
                      00009413    00000001     --HOLE-- [fill = 0]
                      00009414    00000058     drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
                      0000946c    00000058                             : UARTCC26XX.oem3 (.text:UARTCC26XX_control)
                      000094c4    00000058                             : RF.oem3 (.text:ratChanFree)
                      0000951c    00000054                             : PowerCC26XX.oem3 (.text:configureXOSCHF)
                      00009570    00000054                             : RF.oem3 (.text:dispatchOpWhen)
                      000095c4    00000054                             : RF.oem3 (.text:fsmXOSCState)
                      00009618    00000054                             : RF.oem3 (.text:hwiFxnHw)
                      0000966c    00000054     project_zero.obj (.text:user_enqueueCharDataMsg$0)
                      000096c0    00000052     icall.obj (.text:ICall_primWait$4)
                      00009712    00000002     app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_rom_cortexm_cc26xx_CC26xx_badRomRevision__E)
                      00009714    00000050     icall_api.obj (.text:GAP_DeviceInit)
                      00009764    00000050     icall_api.obj (.text:GAP_UpdateAdvertisingData)
                      000097b4    00000050     icall.obj (.text:ICall_primRegisterApp$4)
                      00009804    00000050     driverlib.lib : setup.obj (.text:SetupCacheModeAccordingToCcfgSetting$26)
                      00009854    00000050     util.obj (.text:Util_convertBdAddr2Str)
                      000098a4    00000050     drivers_cc26xxware.aem3 : RF.oem3 (.text:ratChanAlloc)
                      000098f4    00000050                             : UARTCC26XX.oem3 (.text:startTxFifoEmptyClk)
                      00009944    00000050                             : RF.oem3 (.text:syncCb)
                      00009994    0000004c     button_service.obj (.text:Button_Service_findCharParamId$8)
                      000099e0    0000004c     data_service.obj (.text:Data_Service_findCharParamId$9)
                      00009a2c    0000004c     icall_cc2650.obj (.text:ICallPlatform_pwrRegisterNotify)
                      00009a78    0000004c     icall.obj (.text:ICall_newTask$4)
                      00009ac4    0000004c     icall.obj (.text:ICall_primGetEntityId$4)
                      00009b10    0000004c     led_service.obj (.text:LED_Service_findCharParamId$13)
                      00009b5c    0000004c     driverlib.lib : osc.obj (.text:NOROM_OSCClockSourceSet)
                      00009ba8    0000004c     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_swiIntFxn)
                      00009bf4    0000004c     peripheral.obj (.text:gapRole_processStackMsg$14)
                      00009c40    0000004c     rtsv7M3_T_le_eabi.lib : cpy_tbl.obj (.text)
                      00009c8c    0000004c     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_visitRope2__I)
                      00009cd8    0000004a     gattservapp_util.obj (.text:GATTServApp_ProcessCCCWriteReq)
                      00009d22    00000002     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_defaultAbort)
                      00009d24    00000048     driverlib.lib : chipinfo.obj (.text:ChipInfo_GetChipFamily)
                      00009d6c    00000048                   : ddi.obj (.text:NOROM_DDI16BitfieldWrite)
                      00009db4    00000048     drivers_cc26xxware.aem3 : PINCC26XX.oem3 (.text:PIN_setOutputEnable)
                      00009dfc    00000048                             : PINCC26XX.oem3 (.text:PIN_swi)
                      00009e44    00000048                             : RF.oem3 (.text:RF_getRssi)
                      00009e8c    00000048                             : RF.oem3 (.text:RF_runCmd)
                      00009ed4    00000048     project_zero.obj (.text:Util_getLocalNameStr$0)
                      00009f1c    00000048     icall_api.obj (.text:gattIndNoti$7)
                      00009f64    00000048     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:notify)
                      00009fac    00000048     rtsv7M3_T_le_eabi.lib : fd_toi_t2.obj (.text)
                      00009ff4    00000044     main.obj (.text:AssertHandler)
                      0000a038    00000044     icall_api.obj (.text:GAP_TerminateLinkReq)
                      0000a07c    00000044     boot.aem3 : boot.oem3 (.text)
                      0000a0c0    00000044     icall_api.obj (.text:gapSendParamAndPtrCmd$7)
                      0000a104    00000044     rtsv7M3_T_le_eabi.lib : exit.obj (.text)
                      0000a148    00000044     project_zero.obj (.text:user_enqueueRawAppMsg$0)
                      0000a18c    00000044     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_write8__E)
                      0000a1d0    00000044                      : rom_sysbios.obj (.text:xdc_runtime_Text_xprintf__I)
                      0000a214    00000042     icall.obj (.text:ICall_primCreateTask$4)
                      0000a256    00000002     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_defaultExit)
                      0000a258    00000040     peripheral.obj (.text:GAPRole_SendUpdateParam)
                      0000a298    00000040     peripheral.obj (.text:GAPRole_createTask)
                      0000a2d8    00000040     icall_api.obj (.text:GATT_SendRsp)
                      0000a318    00000040     driverlib.lib : ddi.obj (.text:NOROM_DDI16BitfieldRead)
                      0000a358    00000040     project_zero.obj (.text:ProjectZero_createTask)
                      0000a398    00000040     rtsv7M3_T_le_eabi.lib : u_divt2.obj (.text)
                      0000a3d8    00000040     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_Module_startup__E)
                      0000a418    0000003e     icall_api.obj (.text:hciSendParamsCmd$7)
                      0000a456    00000002     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_defaultPutch)
                      0000a458    0000003c     icall_api.obj (.text:GAP_GetParamValue)
                      0000a494    0000003c     icall_api.obj (.text:GATTServApp_RegisterService)
                      0000a4d0    0000003c     icall_cc2650.obj (.text:ICallPlatform_pwrConfigACAction)
                      0000a50c    0000003c     driverlib.lib : rfc.obj (.text:NOROM_RFCSynthPowerDown)
                      0000a548    0000003c                   : osc.obj (.text:OSC_HPOSCRelativeFrequencyOffsetGet)
                      0000a584    0000003c     drivers_cc26xxware.aem3 : PINCC26XX.oem3 (.text:PIN_setOutputValue)
                      0000a5c0    0000003c                             : RF.oem3 (.text:postDirImmCmd)
                      0000a5fc    0000003c     icall_api.obj (.text:profileSetParameter$7)
                      0000a638    0000003c     icall_api.obj (.text:sendWaitMatchCS$7)
                      0000a674    0000003c     icall_api.obj (.text:sendWaitMatchValueCS$7)
                      0000a6b0    00000038     icall_api.obj (.text:GAPBondMgr_LinkEst)
                      0000a6e8    00000038     icall.obj (.text:ICall_primGetMaxMSecs$4)
                      0000a720    00000038     drivers_cc26xxware.aem3 : UART.oem3 (.text:UART_init)
                      0000a758    00000038     util.obj (.text:Util_restartClock)
                      0000a790    00000038     icall_api.obj (.text:linkDB_NumConns)
                      0000a7c8    00000038     main.obj (.text:main)
                      0000a800    00000038     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:readData)
                      0000a838    00000038     icall_api.obj (.text:registerTask$7)
                      0000a870    00000038     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E)
                      0000a8a8    00000038     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:writeData)
                      0000a8e0    00000036                             : RF.oem3 (.text:updateImplicitState)
                      0000a916    00000002     --HOLE-- [fill = 0]
                      0000a918    00000034     icall_api.obj (.text:GAPBondMgr_SetParameter)
                      0000a94c    00000034     icall_api.obj (.text:GAP_SetParamValue)
                      0000a980    00000034     icall.obj (.text:ICall_primEntityId2ServiceId$4)
                      0000a9b4    00000034     icall.obj (.text:ICall_primFetchMsg$4)
                      0000a9e8    00000034     icall.obj (.text:ICall_primRegisterISR$4)
                      0000aa1c    00000034     icall.obj (.text:ICall_primRegisterISR_Ext$4)
                      0000aa50    00000034     icall.obj (.text:ICall_searchServiceEntity)
                      0000aa84    00000034     driverlib.lib : osc.obj (.text:OSCHF_SwitchToRcOscTurnOffXosc)
                      0000aab8    00000034     drivers_cc26xxware.aem3 : PINCC26XX.oem3 (.text:PIN_setConfig)
                      0000aaec    00000034                             : PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
                      0000ab20    00000034                             : RF.oem3 (.text:Q_push)
                      0000ab54    00000034     util.obj (.text:Util_constructClock)
                      0000ab88    00000034     icall_api.obj (.text:osal_snv_read)
                      0000abbc    00000034     icall_api.obj (.text:osal_snv_write)
                      0000abf0    00000034     icall_api.obj (.text:profileAddService$7)
                      0000ac24    00000034     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_write4__E)
                      0000ac58    00000032     icall_api.obj (.text:gapSendParamsCmd$7)
                      0000ac8a    00000032     icall_api.obj (.text:gapSendPtrParamsCmd$7)
                      0000acbc    00000032     icall_api.obj (.text:matchGapSetGetParamCS$7)
                      0000acee    00000032     icall_api.obj (.text:matchGattCmdStatus$7)
                      0000ad20    00000032     icall_api.obj (.text:matchUtilNvCS$7)
                      0000ad52    00000032     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E)
                      0000ad84    00000030     icall_api.obj (.text:GAPBondMgr_PasscodeRsp)
                      0000adb4    00000030     icall_cc2650.obj (.text:ICallPlatform_pwrNotify$5)
                      0000ade4    00000030     icall.obj (.text:ICall_msecs2Ticks$4)
                      0000ae14    00000030     icall.obj (.text:ICall_searchTask$4)
                      0000ae44    00000030     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_releaseConstraint)
                      0000ae74    00000030                             : PowerCC26XX.oem3 (.text:Power_setConstraint)
                      0000aea4    00000030     driverlib.lib : setup.obj (.text:SetAonRtcSubSecInc$26)
                      0000aed4    00000030     drivers_cc26xxware.aem3 : UART.oem3 (.text:UART_open)
                      0000af04    00000030     app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
                      0000af34    00000008     (.tramp.ti_sysbios_BIOS_setThreadType__E.1)
                      0000af3c    00000030     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_initDevice__I)
                      0000af6c    00000030                      : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I)
                      0000af9c    00000030     app_ble_uartlog_pem3.oem3 (.text:xdc_runtime_LoggerCallback_Object__create__S)
                      0000afcc    00000008     (.tramp.xdc_runtime_Core_createObject__I.1)
                      0000afd4    0000002f     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_printVisFxn__I)
                      0000b003    00000001     --HOLE-- [fill = 0]
                      0000b004    0000002e     icall_cc2650.obj (.text:ICallPlatform_pwrDispenseImpl$5)
                      0000b032    0000002e     icall_cc2650.obj (.text:ICallPlatform_pwrRequireImpl$5)
                      0000b060    0000002e     project_zero.obj (.text:ICall_fetchServiceMsg$0)
                      0000b08e    0000002e     peripheral.obj (.text:ICall_fetchServiceMsg$14)
                      0000b0bc    0000002e     icall.obj (.text:ICall_msgDequeue$4)
                      0000b0ea    0000002e     app_ble_uartlog_pem3.oem3 (.text:malloc)
                      0000b118    00000008     (.tramp.xdc_runtime_Error_init__E.1)
                      0000b120    00000008     (.tramp.xdc_runtime_Memory_alloc__E.1)
                      0000b128    0000002e     icall_api.obj (.text:matchProfileAddServiceCS$7)
                      0000b156    00000002     --HOLE-- [fill = 0]
                      0000b158    0000002c     icall_api.obj (.text:GAPBondMgr_Register)
                      0000b184    0000002c     icall_api.obj (.text:HCI_EXT_ConnEventNoticeCmd)
                      0000b1b0    0000002c     icall.obj (.text:ICall_heapFree)
                      0000b1dc    0000002c     button_service.obj (.text:ICall_malloc$8)
                      0000b208    0000002c     data_service.obj (.text:ICall_malloc$9)
                      0000b234    0000002c     icall.obj (.text:ICall_msgEnqueue$4)
                      0000b260    0000002c     icall.obj (.text:ICall_primAllocMsg$4)
                      0000b28c    0000002c     icall.obj (.text:ICall_primFetchServiceMsg$4)
                      0000b2b8    0000002c     icall_api.obj (.text:ICall_sendServiceMsg$7)
                      0000b2e4    0000002c     drivers_cc26xxware.aem3 : PINCC26XX.oem3 (.text:PINCC26XX_setMux)
                      0000b310    0000002c                             : PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
                      0000b33c    0000002c     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_getTicksUntilInterrupt__E)
                      0000b368    0000002c                      : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_write2__E)
                      0000b394    0000002a     icall_api.obj (.text:ICall_waitMatch$7)
                      0000b3be    0000002a     icall_api.obj (.text:matchProfileCS$7)
                      0000b3e8    0000002a     project_zero.obj (.text:user_updateCharVal$0)
                      0000b412    0000002a     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_System_putchar__I)
                      0000b43c    00000028     driverlib.lib : aon_batmon.obj (.text:AONBatMonTemperatureGetDegC)
                      0000b464    00000028     gattservapp_util.obj (.text:GATTServApp_WriteCharCfg)
                      0000b48c    00000028     driverlib.lib : setup.obj (.text:GetTrimForRadcExtCfg$26)
                      0000b4b4    00000028     icall.obj (.text:ICall_init)
                      0000b4dc    00000028     icall.obj (.text:ICall_msgPrepend$4)
                      0000b504    00000028     project_zero.obj (.text:ICall_registerApp$0)
                      0000b52c    00000028     peripheral.obj (.text:ICall_registerApp$14)
                      0000b554    00000028     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_registerNotify)
                      0000b57c    00000028     driverlib.lib : adi.obj (.text:SafeHapiVoid)
                      0000b5a4    00000028     gattservapp_util.obj (.text:gattServApp_FindCharCfgItem$12)
                      0000b5cc    00000028     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E)
                      0000b5f4    00000028                      : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_write0__E)
                      0000b61c    00000028                      : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_write1__E)
                      0000b644    00000026     drivers_cc26xxware.aem3 : List.oem3 (.text:List_put)
                      0000b66a    00000024     icall_api.obj (.text:GAPBondMgr_LinkTerm)
                      0000b68e    00000024     icall_api.obj (.text:ICall_getLocalMsgEntityId$7)
                      0000b6b2    00000002     --HOLE-- [fill = 0]
                      0000b6b4    00000024     icall.obj (.text:ICall_searchService$4)
                      0000b6d8    00000024     icall_api.obj (.text:ICall_threadServes$7)
                      0000b6fc    00000024     drivers_cc26xxware.aem3 : RF.oem3 (.text:RF_ratHwOutput)
                      0000b720    00000024                             : PowerCC26XX_calibrateRCOSC.oem3 (.text:getTdcSemaphore)
                      0000b744    00000024                             : RF.oem3 (.text:hwiFxnCpe0PowerFsm)
                      0000b768    00000024     app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_registerRTSLock__I)
                      0000b78c    00000024     app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_removeRTSLock__I)
                      0000b7b0    00000024     app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
                      0000b7d4    00000008     (.tramp.xdc_runtime_System_atexit__E.1)
                      0000b7dc    00000008     (.tramp.ti_sysbios_family_arm_cc26xx_Timer_startup__E.1)
                      0000b7e4    00000008     (.tramp.ti_sysbios_hal_Hwi_HwiProxy_startup__E.1)
                      0000b7ec    00000008     (.tramp.ti_sysbios_knl_Swi_startup__E.1)
                      0000b7f4    00000008     (.tramp.ti_sysbios_knl_Task_startup__E.1)
                      0000b7fc    00000022     icall.obj (.text:ICall_dispatch$4)
                      0000b81e    00000022     rtsv7M3_T_le_eabi.lib : memcmp.obj (.text)
                      0000b840    00000020     gattservapp_util.obj (.text:GATTServApp_InitCharCfg)
                      0000b860    00000020     icall_api.obj (.text:GATT_bm_alloc)
                      0000b880    00000020     driverlib.lib : setup.obj (.text:GetTrimForXoscHfCtl$26)
                      0000b8a0    00000020     icall_api.obj (.text:ICall_allocMsg$7)
                      0000b8c0    00000020     icall_api.obj (.text:ICall_getEntityId$7)
                      0000b8e0    00000020     project_zero.obj (.text:ICall_malloc$0)
                      0000b900    00000020     icall.obj (.text:ICall_primService$4)
                      0000b920    00000020     driverlib.lib : rfc.obj (.text:NOROM_RFCDoorbellSendTo)
                      0000b940    00000020                   : rfc.obj (.text:NOROM_RFCRfTrimRead)
                      0000b960    00000020     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_unregisterNotify)
                      0000b980    00000020                             : RF.oem3 (.text:applyExtraAdi3VcoLdoVoltageModeOverrideCC13xx)
                      0000b9a0    00000020     project_zero.obj (.text:convert_uint2char)
                      0000b9c0    00000020     rtsv7M3_T_le_eabi.lib : u_tofd_t2.obj (.text)
                      0000b9e0    00000020     app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_rtsLock__I)
                      0000ba00    00000008     (.tramp.ti_sysbios_BIOS_RtsGateProxy_enter__E.1)
                      0000ba08    00000020     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_stop__E)
                      0000ba28    00000020                      : rom_sysbios.obj (.text:xdc_runtime_Registry_findById__E)
                      0000ba48    0000001e     icall.obj (.text:ICall_primSendServiceMsg$4)
                      0000ba66    0000001e     drivers_cc26xxware.aem3 : PINCC26XX.oem3 (.text:PIN_close)
                      0000ba84    0000001e                             : PowerCC26XX.oem3 (.text:Power_getTransitionLatency)
                      0000baa2    0000001e     icall_api.obj (.text:matchHciCS$7)
                      0000bac0    0000001e     project_zero.obj (.text:user_gapBondMgr_passcodeCB$0)
                      0000bade    0000001e     icall_api.obj (.text:waitMatchCS$7)
                      0000bafc    0000001c     icall_api.obj (.text:GATT_bm_free)
                      0000bb18    0000001c     driverlib.lib : setup.obj (.text:GetTrimForAmpcompTh2$26)
                      0000bb34    0000001c     icall.obj (.text:ICall_initPrim$4)
                      0000bb50    0000001c     project_zero.obj (.text:ICall_wait$0)
                      0000bb6c    0000001c     peripheral.obj (.text:ICall_wait$14)
                      0000bb88    0000001c     driverlib.lib : osc.obj (.text:NOROM_OSCClockSourceGet)
                      0000bba4    0000001c     drivers_cc26xxware.aem3 : PINCC26XX.oem3 (.text:PINCC26XX_setIoCfgMux)
                      0000bbc0    0000001c                             : PINCC26XX.oem3 (.text:PIN_hwi)
                      0000bbdc    0000001c                             : PowerCC26XX.oem3 (.text:Power_idleFunc)
                      0000bbf8    0000001c                             : RF.oem3 (.text:RF_getCmdOp)
                      0000bc14    0000001c                             : RF.oem3 (.text:clkPowerUpFxn)
                      0000bc30    0000001c     peripheral.obj (.text:gapRole_HandleParamUpdateNoSuccess$14)
                      0000bc4c    0000001c     icall_api.obj (.text:getStatusValueFromErrNo$7)
                      0000bc68    0000001c     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_dynamicStub__E)
                      0000bc84    0000001c                      : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_Instance_init__E)
                      0000bca0    0000001a     icall.obj (.text:ICall_enterCSImpl)
                      0000bcba    0000001a     icall.obj (.text:ICall_primSetTimerMSecs$4)
                      0000bcd4    0000001a     drivers_cc26xxware.aem3 : List.oem3 (.text:List_remove)
                      0000bcee    0000001a     icall_api.obj (.text:matchGattIndNotiCS$7)
                      0000bd08    0000001a     rom_sysbios.aem3 : rom_sysbios_config.obj (.text:xdc_runtime_System_snprintf__E)
                      0000bd22    00000002     --HOLE-- [fill = 0]
                      0000bd24    00000018     driverlib.lib : chipinfo.obj (.text:ChipInfo_GetPackageType)
                      0000bd3c    00000018     peripheral.obj (.text:GAPRole_StartDevice)
                      0000bd54    00000018     peripheral.obj (.text:GAPRole_TerminateConnection)
                      0000bd6c    00000018     icall_api.obj (.text:GATT_Notification)
                      0000bd84    00000018     driverlib.lib : setup.obj (.text:GetTrimForAdcShModeEn$26)
                      0000bd9c    00000018                   : setup.obj (.text:GetTrimForAdcShVbufEn$26)
                      0000bdb4    00000018                   : setup.obj (.text:GetTrimForAmpcompTh1$26)
                      0000bdcc    00000018                   : setup.obj (.text:GetTrimForDblrLoopFilterResetVoltage$26)
                      0000bde4    00000018                   : setup.obj (.text:GetTrimForRcOscLfIBiasTrim$26)
                      0000bdfc    00000018                   : setup.obj (.text:GetTrimForRcOscLfRtuneCtuneTrim$26)
                      0000be14    00000018                   : setup.obj (.text:GetTrimForXoscLfRegulatorAndCmirrwrRatio$26)
                      0000be2c    00000018     icall_cc2650.obj (.text:ICallPlatform_pwrDispense)
                      0000be44    00000018     icall_cc2650.obj (.text:ICallPlatform_pwrRequire)
                      0000be5c    00000018     project_zero.obj (.text:ICall_free$0)
                      0000be74    00000018     project_zero.obj (.text:ICall_freeMsg$0)
                      0000be8c    00000018     peripheral.obj (.text:ICall_freeMsg$14)
                      0000bea4    00000018     icall.obj (.text:ICall_freeMsg$4)
                      0000bebc    00000018     icall_api.obj (.text:ICall_freeMsg$7)
                      0000bed4    00000018     icall.obj (.text:ICall_primMalloc$4)
                      0000beec    00000018     driverlib.lib : aon_rtc.obj (.text:NOROM_AONRTCCurrentCompareValueGet)
                      0000bf04    00000018                   : rfc.obj (.text:NOROM_RFCCpeIntGetAndClear)
                      0000bf1c    00000018                   : osc.obj (.text:OSCHF_TurnOnXosc)
                      0000bf34    00000018     drivers_cc26xxware.aem3 : RF.oem3 (.text:Q_pop)
                      0000bf4c    00000018                             : RF.oem3 (.text:RF_runDirectCmd)
                      0000bf64    00000018                             : RF.oem3 (.text:RF_runImmediateCmd)
                      0000bf7c    00000018                             : UARTCC26XX.oem3 (.text:UARTCC26XX_init)
                      0000bf94    00000018                             : PowerCC26XX.oem3 (.text:configureRFCoreClocks)
                      0000bfac    00000018     peripheral.obj (.text:gapRole_setEvent$14)
                      0000bfc4    00000018     rtsv7M3_T_le_eabi.lib : args_main.obj (.text)
                      0000bfdc    00000018                           : ll_mul_t2.obj (.text)
                      0000bff4    00000018     drivers_cc26xxware.aem3 : RF.oem3 (.text:swiFxnFsm)
                      0000c00c    00000018     app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_rtsUnlock__I)
                      0000c024    00000008     (.tramp.ti_sysbios_BIOS_RtsGateProxy_leave__E.1)
                      0000c02c    00000018     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Swi_or__E)
                      0000c044    00000018     app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_rom_cortexm_cc26xx_CC26xx_checkRevision__E)
                      0000c05c    00000016     icall.obj (.text:ICall_abort$4)
                      0000c072    00000016     icall.obj (.text:ICall_leaveCSImpl)
                      0000c088    00000016     icall.obj (.text:ICall_primStopTimer$4)
                      0000c09e    00000016     app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__I)
                      0000c0b4    00000014     devinfoservice.obj (.text:DevInfo_AddService)
                      0000c0c8    00000014     driverlib.lib : aon_rtc.obj (.text:NOROM_AONRTCCurrent64BitValueGet)
                      0000c0dc    00000014     drivers_cc26xxware.aem3 : PINCC26XX.oem3 (.text:PINCC26XX_getInputValue)
                      0000c0f0    00000014     driverlib.lib : chipinfo.obj (.text:ThisCodeIsBuiltForCC26xxHwRev22AndLater_HaltIfViolated)
                      0000c104    00000014     rtsv7M3_T_le_eabi.lib : _lock.obj (.text)
                      0000c118    00000014                           : strlen.obj (.text)
                      0000c12c    00000014     icall_api.obj (.text:setICallCmdEvtHdr$7)
                      0000c140    00000014     app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_knl_Clock_doTick__I)
                      0000c154    00000008     (.tramp.ti_sysbios_knl_Clock_logTick__E.1)
                      0000c15c    00000012     gattservapp_util.obj (.text:GATTServApp_FindAttr)
                      0000c16e    00000012     app_ble_uartlog_pem3.oem3 (.text:xdc_runtime_Startup_exec__I)
                      0000c180    00000008     (.tramp.xdc_runtime_Startup_startMods__I.1)
                      0000c188    00000010     devinfoservice.obj (.text:DevInfo_SetParameter)
                      0000c198    00000010     drivers_cc26xxware.aem3 : RF.oem3 (.text:FsmDispatch)
                      0000c1a8    00000010     icall_api.obj (.text:GAP_EndDiscoverable)
                      0000c1b8    00000010     gattservapp_util.obj (.text:GATTServApp_ReadCharCfg)
                      0000c1c8    00000010     driverlib.lib : setup.obj (.text:GetTrimForXoscHfFastStart$26)
                      0000c1d8    00000010                   : setup.obj (.text:GetTrimForXoscHfIbiastherm$26)
                      0000c1e8    00000010     icall_cc2650.obj (.text:ICallPlatform_pwrGetXOSCStartupTime)
                      0000c1f8    00000010     icall.obj (.text:ICall_primGetTickPeriod$4)
                      0000c208    00000010     icall.obj (.text:ICall_taskEntry$4)
                      0000c218    00000010     driverlib.lib : rfc.obj (.text:NOROM_RFCRfTrimSet)
                      0000c228    00000010     drivers_cc26xxware.aem3 : RF.oem3 (.text:RF_Params_init)
                      0000c238    00000010     ble_user_config.obj (.text:RegisterAssertCback)
                      0000c248    00000010     util.obj (.text:Util_isActive)
                      0000c258    00000010     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_post__E)
                      0000c268    00000010     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:uartPostNotify)
                      0000c278    00000010     app_ble_uartlog_pem3.oem3 (.text:xdc_runtime_LoggerCallback_Object__get__S)
                      0000c288    00000010     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_putch__E)
                      0000c298    00000010                      : rom_sysbios.obj (.text:xdc_runtime_SysCallback_ready__E)
                      0000c2a8    00000010                      : rom_sysbios.obj (.text:xdc_runtime_System_vsnprintf__E)
                      0000c2b8    0000000e     icall_cc2650.obj (.text:ICallPlatform_pwrGetTransitionState)
                      0000c2c6    0000000e     icall_cc2650.obj (.text:ICallPlatform_pwrIsStableXOSCHF)
                      0000c2d4    0000000e     icall.obj (.text:ICall_primDisableMInt$4)
                      0000c2e2    0000000e     icall.obj (.text:ICall_primEnableMInt$4)
                      0000c2f0    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_enableFxn__E.1)
                      0000c2f8    00000008     (.tramp.ti_sysbios_knl_Task_enable__E.1)
                      0000c300    0000000e     icall.obj (.text:ICall_primFreeMsg$4)
                      0000c30e    0000000e     icall.obj (.text:ICall_primGetTicks$4)
                      0000c31c    0000000e     driverlib.lib : vims.obj (.text:NOROM_VIMSModeGet)
                      0000c32a    0000000e                   : setup.obj (.text:SignExtendVddrTrimValue)
                      0000c338    0000000e     rtsv7M3_T_le_eabi.lib : copy_decompress_none.obj (.text:decompress:none)
                      0000c346    0000000e     icall_api.obj (.text:matchGSARegisterServiceCS$7)
                      0000c354    0000000e     icall_api.obj (.text:matchGapLinkEstCS$7)
                      0000c362    0000000e     icall_api.obj (.text:matchGapPasscodeCS$7)
                      0000c370    0000000e     icall_api.obj (.text:matchGattSendRspCS$7)
                      0000c37e    0000000e     icall_api.obj (.text:matchLinkDBNumConnsCS$7)
                      0000c38c    0000000e     icall_api.obj (.text:setDispatchCmdEvtHdr$7)
                      0000c39a    0000000e     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E)
                      0000c3a8    0000000c     icall_api.obj (.text:GAP_MakeDiscoverable)
                      0000c3b4    0000000c     icall_api.obj (.text:GAP_TerminateAuth)
                      0000c3c0    0000000c     icall_api.obj (.text:GAP_UpdateLinkParamReq)
                      0000c3cc    0000000c     icall_api.obj (.text:GGS_SetParameter)
                      0000c3d8    0000000c     icall.obj (.text:ICall_clockFunc$4)
                      0000c3e4    0000000c     icall.obj (.text:ICall_primDisableInt$4)
                      0000c3f0    00000008     (.tramp.ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E.1)
                      0000c3f8    0000000c     icall.obj (.text:ICall_primEnableInt$4)
                      0000c404    00000008     (.tramp.ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E.1)
                      0000c40c    0000000c     icall.obj (.text:ICall_primFree$4)
                      0000c418    0000000c     icall.obj (.text:ICall_primSignal$4)
                      0000c424    0000000c     driverlib.lib : cpu.obj (.text:NOROM_CPUcpsid)
                      0000c430    0000000c                   : cpu.obj (.text:NOROM_CPUcpsie)
                      0000c43c    0000000c     drivers_cc26xxware.aem3 : PINCC26XX.oem3 (.text:PIN_registerIntCb)
                      0000c448    0000000c                             : PowerCC26XX.oem3 (.text:Power_getConstraintMask)
                      0000c454    0000000c                             : PowerCC26XX.oem3 (.text:Power_getDependencyCount)
                      0000c460    0000000c                             : PowerCC26XX.oem3 (.text:Power_getTransitionState)
                      0000c46c    0000000c     uart_logs.obj (.text:UartLog_doInit)
                      0000c478    0000000c     rtsv7M3_T_le_eabi.lib : copy_zero_init.obj (.text:decompress:ZI)
                      0000c484    0000000c     icall_api.obj (.text:matchProfileSetParamCS$7)
                      0000c490    0000000c     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_BIOS_getThreadType__E)
                      0000c49c    0000000c                      : rom_sysbios_config.obj (.text:ti_sysbios_hal_Hwi_Params__init__S)
                      0000c4a8    00000008     (.tramp.xdc_runtime_Core_assignParams__I.1)
                      0000c4b0    0000000c                      : rom_sysbios.obj (.text:ti_sysbios_knl_Swi_getTrigger__E)
                      0000c4bc    0000000c     app_ble_uartlog_pem3.oem3 (.text:xdc_runtime_Startup_reset__I)
                      0000c4c8    0000000c     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Startup_rtsDone__E)
                      0000c4d4    0000000a     icall_cc2650.obj (.text:ICallPlatform_pwrSwitchXOSCHF)
                      0000c4de    0000000a     icall.obj (.text:ICall_primE2S$4)
                      0000c4e8    0000000a     drivers_cc26xxware.aem3 : List.oem3 (.text:List_empty)
                      0000c4f2    0000000a                             : UART.oem3 (.text:UART_write)
                      0000c4fc    0000000a     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_disable__E)
                      0000c506    0000000a                      : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_enable__E)
                      0000c510    0000000a     app_ble_uartlog_pem3.oem3 (.text:xdc_runtime_Text_visitRope__I)
                      0000c51a    00000008     icall_api.obj (.text:GAP_RegisterForMsgs)
                      0000c522    00000008     icall_api.obj (.text:GATT_RegisterForMsgs)
                      0000c52a    00000008     drivers_cc26xxware.aem3 : RF.oem3 (.text:RF_flushCmd)
                      0000c532    00000008     icall_api.obj (.text:matchHciExtConnEventNoticeCS$7)
                      0000c53a    00000008     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:readSemCallback)
                      0000c542    00000008                             : UARTCC26XX.oem3 (.text:writeSemCallback)
                      0000c54a    00000006     icall_api.obj (.text:GATT_Indication)
                      0000c550    00000006     icall_api.obj (.text:GGS_AddService)
                      0000c556    00000006     icall.obj (.text:ICall_mallocImpl)
                      0000c55c    00000006     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_readPolling)
                      0000c562    00000006                             : UARTCC26XX.oem3 (.text:UARTCC26XX_writePolling)
                      0000c568    00000006     rom_sysbios.aem3 : rom_sysbios.obj (.text:__xdc__init)
                      0000c56e    00000006     drivers_cc26xxware.aem3 : RF.oem3 (.text:clkInactivityFxn)
                      0000c574    00000006     rtsv7M3_T_le_eabi.lib : copy_decompress_rle.obj (.text:decompress:rle24)
                      0000c57a    00000006     icall_api.obj (.text:gattAddService$7)
                      0000c580    00000006     icall_api.obj (.text:matchBondMgrSetParamCS$7)
                      0000c586    00000006     icall_api.obj (.text:matchGGSSetParamCS$7)
                      0000c58c    00000006     icall_api.obj (.text:matchGapDeviceInitCS$7)
                      0000c592    00000006     icall_api.obj (.text:matchGapEndDiscoverableCS$7)
                      0000c598    00000006     icall_api.obj (.text:matchGapGetParamCS$7)
                      0000c59e    00000006     icall_api.obj (.text:matchGapMakeDiscoverableCS$7)
                      0000c5a4    00000006     icall_api.obj (.text:matchGapSetParamCS$7)
                      0000c5aa    00000006     icall_api.obj (.text:matchGapTerminateAuthCS$7)
                      0000c5b0    00000006     icall_api.obj (.text:matchGapTerminateLinkReqCS$7)
                      0000c5b6    00000006     icall_api.obj (.text:matchGapUpdateAdvDataCS$7)
                      0000c5bc    00000006     icall_api.obj (.text:matchGapUpdateLinkParamReqCS$7)
                      0000c5c2    00000006     icall_api.obj (.text:matchUtilNvReadCS$7)
                      0000c5c8    00000006     icall_api.obj (.text:matchUtilNvWriteCS$7)
                      0000c5ce    00000006     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_setFunc__E)
                      0000c5d4    00000004     tirtosport.aem3 : HwiP_tirtos.oem3 (.text:HwiP_disable)
                      0000c5d8    00000004     icall.obj (.text:ICall_primAbort$4)
                      0000c5dc    00000004     drivers_cc26xxware.aem3 : List.oem3 (.text:List_head)
                      0000c5e0    00000004                             : List.oem3 (.text:List_next)
                      0000c5e4    00000004                             : RF.oem3 (.text:Q_peek)
                      0000c5e8    00000004     util.obj (.text:Util_stopClock)
                      0000c5ec    00000004     peripheral.obj (.text:gapRole_SetupGAP$14)
                      0000c5f0    00000004     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:nopResourceHandler)
                      0000c5f4    00000004     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_getCount64__E)
                      0000c5f8    00000004                      : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_isActive__E)
                      0000c5fc    00000004                      : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_defaultCreate)
                      0000c600    00000004                      : rom_sysbios.obj (.text:xdc_runtime_SysCallback_defaultReady)
                      0000c604    00000004                      : rom_sysbios.obj (.text:xdc_runtime_System_snprintf_va__F)
                      0000c608    00000008     (.tramp.ti_sysbios_hal_Hwi_create.1)
                      0000c610    00000008     (.tramp.ti_sysbios_BIOS_start__E.1)
                      0000c618    00000008     (.tramp.ti_sysbios_knl_Task_construct.1)
                      0000c620    00000008     (.tramp.xdc_runtime_System_exit__E.1)
                      0000c628    00000008     (.tramp.ti_sysbios_knl_Semaphore_create.1)
                      0000c630    00000008     (.tramp.ti_sysbios_knl_Queue_enqueue__E.1)
                      0000c638    00000008     (.tramp.ti_sysbios_knl_Task_create.1)
                      0000c640    00000008     (.tramp.ti_sysbios_knl_Task_Params__init__S.1)
                      0000c648    00000008     (.tramp.ti_sysbios_knl_Queue_dequeue__E.1)
                      0000c650    00000008     (.tramp.ti_sysbios_knl_Queue_empty__E.1)
                      0000c658    00000008     (.tramp.ti_sysbios_knl_Clock_create.1)
                      0000c660    00000008     (.tramp.ti_sysbios_knl_Clock_scheduleNextTick__E.1)
                      0000c668    00000008     (.tramp.ti_sysbios_knl_Clock_walkQueueDynamic__E.1)
                      0000c670    00000008     (.tramp.ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E.1)
                      0000c678    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E.1)
                      0000c680    00000008     (.tramp.ti_sysbios_BIOS_getCpuFreq__E.1)
                      0000c688    00000008     (.tramp.ti_sysbios_knl_Swi_post__E.1)
                      0000c690    00000008     (.tramp.ti_sysbios_knl_Semaphore_post__E.1)
                      0000c698    00000008     (.tramp.ti_sysbios_knl_Clock_getTicks__E.1)
                      0000c6a0    00000008     (.tramp.ti_sysbios_knl_Task_self__E.1)
                      0000c6a8    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_destruct.1)
                      0000c6b0    00000008     (.tramp.ti_sysbios_knl_Swi_destruct.1)
                      0000c6b8    00000008     (.tramp.ti_sysbios_knl_Clock_destruct.1)
                      0000c6c0    00000008     (.tramp.ti_sysbios_knl_Semaphore_destruct.1)
                      0000c6c8    00000008     (.tramp.ti_sysbios_knl_Semaphore_pend__E.1)
                      0000c6d0    00000008     (.tramp.xdc_runtime_Text_ropeText__E.1)
                      0000c6d8    00000008     (.tramp.ti_sysbios_knl_Swi_construct.1)
                      0000c6e0    00000008     (.tramp.ti_sysbios_knl_Swi_Params__init__S.1)
                      0000c6e8    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_construct.1)
                      0000c6f0    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_Params__init__S.1)
                      0000c6f8    00000008     (.tramp.ti_sysbios_knl_Semaphore_construct.1)
                      0000c700    00000008     (.tramp.ti_sysbios_knl_Semaphore_Params__init__S.1)
                      0000c708    00000008     (.tramp.ti_sysbios_knl_Task_restore__E.1)
                      0000c710    00000008     (.tramp.ti_sysbios_knl_Swi_restore__E.1)
                      0000c718    00000008     (.tramp.ti_sysbios_knl_Swi_disable__E.1)
                      0000c720    00000008     (.tramp.ti_sysbios_knl_Task_disable__E.1)
                      0000c728    00000008     (.tramp.ti_sysbios_knl_Task_sleep__E.1)
                      0000c730    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_restoreFxn__E.1)
                      0000c738    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_disableFxn__E.1)
                      0000c740    00000008     (.tramp.ti_sysbios_knl_Clock_start__E.1)
                      0000c748    00000008     (.tramp.ti_sysbios_knl_Clock_setTimeout__E.1)
                      0000c750    00000008     (.tramp.ti_sysbios_knl_Clock_construct.1)
                      0000c758    00000008     (.tramp.ti_sysbios_knl_Clock_Params__init__S.1)
                      0000c760    00000008     (.tramp.ti_sysbios_knl_Task_exit__E.1)
                      0000c768    00000008     (.tramp.ti_sysbios_knl_Queue_construct.1)
    
    .const     0    0000c770    00001c9e     
                      0000c770    00001734     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Text_charTab__A)
                      0000dea4    000000c0     icall.obj (.const)
                      0000df64    0000004c     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.const:resourceDB)
                      0000dfb0    0000004c     ble_user_config.obj (.const:rfDriverTable)
                      0000dffc    00000048     app_ble_uartlog_pem3.oem3 (.const:.string)
                      0000e044    00000040     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.const)
                      0000e084    0000003c     project_zero.obj (.const)
                      0000e0c0    00000034     button_service.obj (.const)
                      0000e0f4    00000034     data_service.obj (.const)
                      0000e128    00000034     led_service.obj (.const)
                      0000e15c    00000034     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_LoggerCallback_Module__FXNS__C)
                      0000e190    0000002c     CC2650_LAUNCHXL.obj (.const:BoardGpioInitTable)
                      0000e1bc    0000002c     gatt_uuid.obj (.const)
                      0000e1e8    00000028     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.const:UARTCC26XX_fxnTable)
                      0000e210    00000028     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Startup_sfxnTab__A)
                      0000e238    00000027     ble_user_config.obj (.const:txPowerTable)
                      0000e25f    00000001     --HOLE-- [fill = 0]
                      0000e260    00000024     drivers_cc26xxware.aem3 : UART.oem3 (.const:UART_defaultParams)
                      0000e284    00000020     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_LoggerCallback_Object__DESC__C)
                      0000e2a4    0000001c     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_LoggerCallback_Object__PARAMS__C)
                      0000e2c0    00000018     CC2650_LAUNCHXL.obj (.const:UART_config)
                      0000e2d8    00000018     CC2650_LAUNCHXL.obj (.const:uartCC26XXHWAttrs)
                      0000e2f0    00000014     devinfoservice.obj (.const:.string)
                      0000e304    00000014     CC2650_LAUNCHXL.obj (.const)
                      0000e318    00000014     devinfoservice.obj (.const)
                      0000e32c    00000014     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Startup_sfxnRts__A)
                      0000e340    00000011     util.obj (.const:.string)
                      0000e351    00000010     button_service.obj (.const:.string)
                      0000e361    00000010     data_service.obj (.const:.string)
                      0000e371    00000010     led_service.obj (.const:.string)
                      0000e381    00000001     --HOLE-- [fill = 0]
                      0000e382    00000010     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Text_nodeTab__A)
                      0000e392    00000002     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerDefined__C)
                      0000e394    0000000c     drivers_cc26xxware.aem3 : RF.oem3 (.const)
                      0000e3a0    0000000c     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Startup_firstFxns__A)
                      0000e3ac    00000008     CC2650_LAUNCHXL.obj (.const:PINCC26XX_hwAttrs)
                      0000e3b4    00000008     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Idle_funcList__A)
                      0000e3bc    00000006     ble_user_config.obj (.const)
                      0000e3c2    00000002     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Text_registryModsLastId__C)
                      0000e3c4    00000004     icall_cc2650.obj (.const)
                      0000e3c8    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Clock_tickPeriod__C)
                      0000e3cc    00000004     app_ble_uartlog_pem3.oem3 (.const:ti_sysbios_knl_Clock_triggerClock__C)
                      0000e3d0    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_ILogger_Interface__BASE__C)
                      0000e3d4    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Log_L_error__C)
                      0000e3d8    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Log_L_info__C)
                      0000e3dc    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Log_L_warning__C)
                      0000e3e0    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_LoggerCallback_Object__count__C)
                      0000e3e4    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_LoggerCallback_createInstFxn__C)
                      0000e3e8    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_LoggerCallback_outputFxn__C)
                      0000e3ec    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerFxn4__C)
                      0000e3f0    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerFxn8__C)
                      0000e3f4    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerObj__C)
                      0000e3f8    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_SysCallback_putchFxn__C)
                      0000e3fc    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_SysCallback_readyFxn__C)
                      0000e400    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_System_extendFxn__C)
                      0000e404    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Text_nodeTab__C)
                      0000e408    00000004     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Text_visitRopeFxn__C)
                      0000e40c    00000002     app_ble_uartlog_pem3.oem3 (.const:xdc_runtime_Text_unnamedModsLastId__C)
    
    .args      0    0000e410    00000008     
                      0000e410    00000008     --HOLE-- [fill = 0]
    
    .cinit     0    0000e418    000007c8     
                      0000e418    0000062e     (.cinit..data.load) [load image, compression = rle]
                      0000ea46    00000002     --HOLE-- [fill = 0]
                      0000ea48    0000002d     (.cinit..data:ti_sysbios_family_arm_m3_Hwi_Module__state__V.load) [load image, compression = rle]
                      0000ea75    00000003     --HOLE-- [fill = 0]
                      0000ea78    0000002c     (.cinit..data:ti_sysbios_knl_Task_Module__state__V.load) [load image, compression = rle]
                      0000eaa4    00000004     --HOLE-- [fill = 0]
                      0000eaa8    00000021     (.cinit..data:ti_sysbios_knl_Clock_Module__state__V.load) [load image, compression = rle]
                      0000eac9    00000007     --HOLE-- [fill = 0]
                      0000ead0    0000001f     (.cinit..data:ti_sysbios_BIOS_Module__state__V.load) [load image, compression = rle]
                      0000eaef    00000001     --HOLE-- [fill = 0]
                      0000eaf0    00000011     (.cinit..data:ti_sysbios_knl_Swi_Module__state__V.load) [load image, compression = rle]
                      0000eb01    00000007     --HOLE-- [fill = 0]
                      0000eb08    0000000d     (.cinit..data:ti_sysbios_family_arm_cc26xx_Timer_Module__state__V.load) [load image, compression = rle]
                      0000eb15    00000003     --HOLE-- [fill = 0]
                      0000eb18    0000000c     (__TI_handler_table)
                      0000eb24    00000004     --HOLE-- [fill = 0]
                      0000eb28    0000000a     (.cinit..data:xdc_runtime_Memory_Module__state__V.load) [load image, compression = rle]
                      0000eb32    00000006     --HOLE-- [fill = 0]
                      0000eb38    00000009     (.cinit..data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V.load) [load image, compression = rle]
                      0000eb41    00000007     --HOLE-- [fill = 0]
                      0000eb48    00000009     (.cinit..data:xdc_runtime_Startup_Module__state__V.load) [load image, compression = rle]
                      0000eb51    00000007     --HOLE-- [fill = 0]
                      0000eb58    00000009     (.cinit..data:xdc_runtime_System_Module__state__V.load) [load image, compression = rle]
                      0000eb61    00000007     --HOLE-- [fill = 0]
                      0000eb68    00000008     (.cinit..bss.load) [load image, compression = zero_init]
                      0000eb70    00000008     (.cinit..vecs.load) [load image, compression = zero_init]
                      0000eb78    00000068     (__TI_cinit_table)
    
    .ccfg      0    0001ffa8    00000058     
                      0001ffa8    00000058     ccfg_app_ble.obj (.ccfg:retain)
    
    .vecs      0    20000000    000000c8     UNINITIALIZED
                      20000000    000000c8     app_ble_uartlog_pem3.oem3 (.vecs)
    
    .data:ti_sysbios_knl_Task_Module__state__V 
    *          0    20000100    00000044     UNINITIALIZED
                      20000100    00000044     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_knl_Task_Module__state__V)
    
    .data:ti_sysbios_family_arm_m3_Hwi_Module__state__V 
    *          0    20000144    00000034     UNINITIALIZED
                      20000144    00000034     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module__state__V)
    
    .data:ti_sysbios_knl_Clock_Module__state__V 
    *          0    20000178    0000002c     UNINITIALIZED
                      20000178    0000002c     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_knl_Clock_Module__state__V)
    
    .data:ti_sysbios_BIOS_Module__state__V 
    *          0    200001a4    00000024     UNINITIALIZED
                      200001a4    00000024     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_BIOS_Module__state__V)
    
    .data:ti_sysbios_knl_Swi_Module__state__V 
    *          0    200001c8    0000001c     UNINITIALIZED
                      200001c8    0000001c     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_knl_Swi_Module__state__V)
    
    .data:ti_sysbios_family_arm_cc26xx_Timer_Module__state__V 
    *          0    200001e4    00000008     UNINITIALIZED
                      200001e4    00000008     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_family_arm_cc26xx_Timer_Module__state__V)
    
    .data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V 
    *          0    200001ec    00000004     UNINITIALIZED
                      200001ec    00000004     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V)
    
    .data:xdc_runtime_Startup_Module__state__V 
    *          0    200001f0    00000008     UNINITIALIZED
                      200001f0    00000008     app_ble_uartlog_pem3.oem3 (.data:xdc_runtime_Startup_Module__state__V)
    
    .data:xdc_runtime_System_Module__state__V 
    *          0    200001f8    00000008     UNINITIALIZED
                      200001f8    00000008     app_ble_uartlog_pem3.oem3 (.data:xdc_runtime_System_Module__state__V)
    
    .data:xdc_runtime_Memory_Module__state__V 
    *          0    20000200    00000004     UNINITIALIZED
                      20000200    00000004     app_ble_uartlog_pem3.oem3 (.data:xdc_runtime_Memory_Module__state__V)
    
    .bootVecs 
    *          0    00000000    00000008     DSECT
                      00000000    00000008     boot.aem3 : boot.oem3 (.bootVecs)
    
    xdc.meta   0    00000000    00000105     COPY SECTION
                      00000000    00000105     app_ble_uartlog_pem3.oem3 (xdc.meta)
    
    .init_array 
    *          0    00000000    00000000     UNINITIALIZED
    
    .data      0    20000208    000016da     UNINITIALIZED
                      20000208    000005b8     uart_logs.obj (.data)
                      200007c0    000005a8     project_zero.obj (.data)
                      20000d68    0000036c     peripheral.obj (.data)
                      200010d4    000001e0     devinfoservice.obj (.data)
                      200012b4    0000010c     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.data:PowerCC26XX_module)
                      200013c0    000000e8     app_ble_uartlog_pem3.oem3 (.data)
                      200014a8    000000b0     data_service.obj (.data)
                      20001558    00000094     icall.obj (.data)
                      200015ec    00000088     button_service.obj (.data)
                      20001674    00000060     led_service.obj (.data)
                      200016d4    00000050     ble_user_config.obj (.data:rfRegTbl)
                      20001724    0000004c     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_knl_Task_Object__table__V)
                      20001770    00000048     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_family_arm_cc26xx_Timer_Object__table__V)
                      200017b8    00000038     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_gates_GateMutex_Object__table__V)
                      200017f0    00000030     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_knl_Swi_Module_State_0_readyQ__A)
                      20001820    00000030     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_knl_Swi_Object__table__V)
                      20001850    00000030     app_ble_uartlog_pem3.oem3 (.data:ti_sysbios_knl_Task_Module_State_0_readyQ__A)
                      20001880    00000028     main.obj (.data:user0Cfg)
                      200018a8    0000000c     icall_api.obj (.data)
                      200018b4    00000008     icall_cc2650.obj (.data)
                      200018bc    00000008     rtsv7M3_T_le_eabi.lib : _lock.obj (.data)
                      200018c4    00000008                           : exit.obj (.data)
                      200018cc    00000008     app_ble_uartlog_pem3.oem3 (.data:xdc_runtime_Registry_Module__state__V)
                      200018d4    00000004     ble_user_config.obj (.data)
                      200018d8    00000004     drivers_cc26xxware.aem3 : UART.oem3 (.data)
                      200018dc    00000004     rtsv7M3_T_le_eabi.lib : stkdepth_vars.obj (.data)
                      200018e0    00000002     drivers_cc26xxware.aem3 : RF.oem3 (.data)
    
    .bss       0    200018e8    00000e12     UNINITIALIZED
                      200018e8    00000680     app_ble_uartlog_pem3.oem3 (.bss:ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A)
                      20001f68    00000200     app_ble_uartlog_pem3.oem3 (.bss:taskStackSection)
                      20002168    00000140     drivers_cc26xxware.aem3 : RF.oem3 (.bss:aCmdPool)
                      200022a8    00000114     CC2650_LAUNCHXL.obj (.bss:uartCC26XXObjects)
                      200023bc    000000c8     app_ble_uartlog_pem3.oem3 (.bss:ti_sysbios_family_arm_m3_Hwi_dispatchTable)
                      20002484    0000007c     drivers_cc26xxware.aem3 : PINCC26XX.oem3 (.bss:PIN_HandleTable)
                      20002500    00000034                             : PINCC26XX.oem3 (.bss:PinSwi)
                      20002534    00000034                             : RF.oem3 (.bss:swiFsm)
                      20002568    00000034                             : RF.oem3 (.bss:swiHw)
                      2000259c    00000024                             : RF.oem3 (.bss:clkPowerUp)
                      200025c0    00000024                             : RF.oem3 (.bss:cmdDirImm)
                      200025e4    00000020     (.common:PinGpioConfigTable)
                      20002604    0000001c     (.common:PinHwi)
                      20002620    0000001c     (.common:PinSem)
                      2000263c    0000001c     (.common:hwiCpe0)
                      20002658    0000001c     (.common:hwiHw)
                      20002674    00000014     (.common:cmdQ)
                      20002688    00000014     (.common:opRatSync)
                      2000269c    00000014     (.common:oscHfGlobals$24)
                      200026b0    00000010     (.common:str$1$1)
                      200026c0    00000008     (.common:powerQualGlobals$27)
                      200026c8    00000004     (.common:PIN_NumPins)
                      200026cc    00000004     (.common:activeTimeInUs)
                      200026d0    00000004     (.common:dispatchInUs)
                      200026d4    00000004     (.common:nRtc1)
                      200026d8    00000004     (.common:nRtc2)
                      200026dc    00000004     (.common:nRtc3)
                      200026e0    00000004     (.common:pCurrClient)
                      200026e4    00000004     (.common:pFsmState)
                      200026e8    00000004     (.common:pPinGpio)
                      200026ec    00000001     (.common:bInitAvailRatCh)
                      200026ed    00000001     (.common:bPowerDownActive)
                      200026ee    00000001     (.common:bPowerUpActive)
                      200026ef    00000001     (.common:bRadioActive)
                      200026f0    00000001     (.common:bRestart)
                      200026f1    00000001     (.common:bStart)
                      200026f2    00000001     (.common:bYieldPwrDnCalled)
                      200026f3    00000001     (.common:bYieldPwrDnCancel)
                      200026f4    00000001     (.common:driverlib_release_0_45566)
                      200026f5    00000001     (.common:isCC13xx)
                      200026f6    00000001     (.common:nActiveClients)
                      200026f7    00000001     (.common:nClients)
                      200026f8    00000001     (.common:uartRxPowerConstraint)
                      200026f9    00000001     (.common:uartTxPowerConstraint)
    
    .vtable    0    200026fa    00000000     UNINITIALIZED
    
    .vtable_ram 
    *          0    200026fa    00000000     UNINITIALIZED
    
    vtable_ram 
    *          0    200026fa    00000000     UNINITIALIZED
    
    .sysmem    0    200026fa    00000000     UNINITIALIZED
    
    .nonretenvar 
    *          0    200026fa    00000000     UNINITIALIZED
    
    .stack     0    20003f68    00000400     UNINITIALIZED
                      20003f68    00000400     --HOLE--
    
    
    LINKER GENERATED COPY TABLES
    
    __TI_cinit_table @ 0000eb78 records: 13, size/record: 8, table size: 104
    	.data: load addr=0000e418, load size=0000062e bytes, run addr=20000208, run size=000016da bytes, compression=rle
    	.data:ti_sysbios_family_arm_m3_Hwi_Module__state__V: load addr=0000ea48, load size=0000002d bytes, run addr=20000144, run size=00000034 bytes, compression=rle
    	.data:ti_sysbios_knl_Task_Module__state__V: load addr=0000ea78, load size=0000002c bytes, run addr=20000100, run size=00000044 bytes, compression=rle
    	.data:ti_sysbios_knl_Clock_Module__state__V: load addr=0000eaa8, load size=00000021 bytes, run addr=20000178, run size=0000002c bytes, compression=rle
    	.data:ti_sysbios_BIOS_Module__state__V: load addr=0000ead0, load size=0000001f bytes, run addr=200001a4, run size=00000024 bytes, compression=rle
    	.data:ti_sysbios_knl_Swi_Module__state__V: load addr=0000eaf0, load size=00000011 bytes, run addr=200001c8, run size=0000001c bytes, compression=rle
    	.data:ti_sysbios_family_arm_cc26xx_Timer_Module__state__V: load addr=0000eb08, load size=0000000d bytes, run addr=200001e4, run size=00000008 bytes, compression=rle
    	.data:xdc_runtime_Memory_Module__state__V: load addr=0000eb28, load size=0000000a bytes, run addr=20000200, run size=00000004 bytes, compression=rle
    	.data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V: load addr=0000eb38, load size=00000009 bytes, run addr=200001ec, run size=00000004 bytes, compression=rle
    	.data:xdc_runtime_Startup_Module__state__V: load addr=0000eb48, load size=00000009 bytes, run addr=200001f0, run size=00000008 bytes, compression=rle
    	.data:xdc_runtime_System_Module__state__V: load addr=0000eb58, load size=00000009 bytes, run addr=200001f8, run size=00000008 bytes, compression=rle
    	.bss: load addr=0000eb68, load size=00000008 bytes, run addr=200018e8, run size=00000e12 bytes, compression=zero_init
    	.vecs: load addr=0000eb70, load size=00000008 bytes, run addr=20000000, run size=000000c8 bytes, compression=zero_init
    
    
    LINKER GENERATED HANDLER TABLE
    
    __TI_handler_table @ 0000eb18 records: 3, size/record: 4, table size: 12
    	index: 0, handler: __TI_decompress_rle24
    	index: 1, handler: __TI_decompress_none
    	index: 2, handler: __TI_zero_init
    
    
    FAR CALL TRAMPOLINES
    
    callee name               trampoline name
       callee addr  tramp addr   call addr  call info
    --------------  -----------  ---------  ----------------
    ti_sysbios_BIOS_setThreadType__E  $Tramp$TT$L$PI$$ti_sysbios_BIOS_setThreadType__E
       1001c045     0000af34     0000af10   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
                                 0000c0a8   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__I)
    xdc_runtime_Core_createObject__I  $Tramp$TT$L$PI$$xdc_runtime_Core_createObject__I
       1001c405     0000afcc     0000afb0   app_ble_uartlog_pem3.oem3 (.text:xdc_runtime_LoggerCallback_Object__create__S)
    xdc_runtime_Error_init__E  $Tramp$TT$L$PI$$xdc_runtime_Error_init__E
       1001c841     0000b118     0000b0f4   app_ble_uartlog_pem3.oem3 (.text:malloc)
    xdc_runtime_Memory_alloc__E  $Tramp$TT$L$PI$$xdc_runtime_Memory_alloc__E
       1001c489     0000b120     0000b104   app_ble_uartlog_pem3.oem3 (.text:malloc)
    xdc_runtime_System_atexit__E  $Tramp$TT$L$PI$$xdc_runtime_System_atexit__E
       1001c681     0000b7d4     0000b7b4   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    ti_sysbios_family_arm_cc26xx_Timer_startup__E  $Tramp$TT$L$PI$$ti_sysbios_family_arm_cc26xx_Timer_startup__E
       1001b795     0000b7dc     0000b7bc   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    ti_sysbios_hal_Hwi_HwiProxy_startup__E  $Tramp$TT$L$PI$$ti_sysbios_hal_Hwi_HwiProxy_startup__E
       1001c28d     0000b7e4     0000b7c0   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    ti_sysbios_knl_Swi_startup__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_startup__E
       1001c23d     0000b7ec     0000b7c4   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    ti_sysbios_knl_Task_startup__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_startup__E
       1001c309     0000b7f4     0000b7c8   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    ti_sysbios_BIOS_RtsGateProxy_enter__E  $Tramp$TT$L$PI$$ti_sysbios_BIOS_RtsGateProxy_enter__E
       1001c249     0000ba00     0000b9e6   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_rtsLock__I)
    ti_sysbios_BIOS_RtsGateProxy_leave__E  $Tramp$TT$L$PI$$ti_sysbios_BIOS_RtsGateProxy_leave__E
       1001c24d     0000c024     0000c01a   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_rtsUnlock__I)
    ti_sysbios_knl_Clock_logTick__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_logTick__E
       1001be67     0000c154     0000c142   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_knl_Clock_doTick__I)
    xdc_runtime_Startup_startMods__I  $Tramp$TT$L$PI$$xdc_runtime_Startup_startMods__I
       1001c30d     0000c180     0000c178   app_ble_uartlog_pem3.oem3 (.text:xdc_runtime_Startup_exec__I)
    ti_sysbios_family_arm_m3_Hwi_enableFxn__E  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_enableFxn__E
       1001c155     0000c2f0     0000c2e4   icall.obj (.text:ICall_primEnableMInt$4)
    ti_sysbios_knl_Task_enable__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_enable__E
       1001c243     0000c2f8     0000c2e8   icall.obj (.text:ICall_primEnableMInt$4)
    ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E  $Tramp$TT$L$PI$$ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E
       1001c281     0000c3f0     0000c3e8   icall.obj (.text:ICall_primDisableInt$4)
    ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E  $Tramp$TT$L$PI$$ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E
       1001c285     0000c404     0000c3fc   icall.obj (.text:ICall_primEnableInt$4)
    xdc_runtime_Core_assignParams__I  $Tramp$TT$L$PI$$xdc_runtime_Core_assignParams__I
       1001c5f1     0000c4a8     0000c4a0   rom_sysbios.aem3 : rom_sysbios_config.obj (.text:ti_sysbios_hal_Hwi_Params__init__S)
    ti_sysbios_hal_Hwi_create  $Tramp$TT$L$PI$$ti_sysbios_hal_Hwi_create
       1001ab79     0000c608     0000aa08   icall.obj (.text:ICall_primRegisterISR$4)
                                 0000aa3c   icall.obj (.text:ICall_primRegisterISR_Ext$4)
    ti_sysbios_BIOS_start__E  $Tramp$TT$L$PI$$ti_sysbios_BIOS_start__E
       1001c055     0000c610     0000a7f4   main.obj (.text:main)
    ti_sysbios_knl_Task_construct  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_construct
       1001b125     0000c618     0000a2c6   peripheral.obj (.text:GAPRole_createTask)
                                 0000a386   project_zero.obj (.text:ProjectZero_createTask)
    xdc_runtime_System_exit__E  $Tramp$TT$L$PI$$xdc_runtime_System_exit__E
       1001c7d1     0000c620     0000a0a8   boot.aem3 : boot.oem3 (.text)
                                 0000c0ae   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__I)
    ti_sysbios_knl_Semaphore_create  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_create
       1001b5ad     0000c628     00009a9c   icall.obj (.text:ICall_newTask$4)
    ti_sysbios_knl_Queue_enqueue__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_enqueue__E
       1001c1b5     0000c630     000096ae   project_zero.obj (.text:user_enqueueCharDataMsg$0)
                                 0000a178   project_zero.obj (.text:user_enqueueRawAppMsg$0)
    ti_sysbios_knl_Task_create  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_create
       1001ae19     0000c638     00008276   icall.obj (.text:ICall_createRemoteTasks)
                                 0000a23e   icall.obj (.text:ICall_primCreateTask$4)
    ti_sysbios_knl_Task_Params__init__S  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_Params__init__S
       1001c1d9     0000c640     0000825a   icall.obj (.text:ICall_createRemoteTasks)
                                 0000a228   icall.obj (.text:ICall_primCreateTask$4)
                                 0000a2a6   peripheral.obj (.text:GAPRole_createTask)
                                 0000a366   project_zero.obj (.text:ProjectZero_createTask)
    ti_sysbios_knl_Queue_dequeue__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_dequeue__E
       1001c1a9     0000c648     00008226   project_zero.obj (.text:ProjectZero_taskFxn$0)
    ti_sysbios_knl_Queue_empty__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_empty__E
       1001c113     0000c650     0000821c   project_zero.obj (.text:ProjectZero_taskFxn$0)
    ti_sysbios_knl_Clock_create  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_create
       1001b3ed     0000c658     000080e6   icall.obj (.text:ICall_primSetTimer$4)
    ti_sysbios_knl_Clock_scheduleNextTick__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_scheduleNextTick__E
       1001bebd     0000c660     00007b9a   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
    ti_sysbios_knl_Clock_walkQueueDynamic__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_walkQueueDynamic__E
       1001a80d     0000c668     00007b62   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
                                 00007b7e                    : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
    ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E
       1001c095     0000c670     00007b30   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
                                 0000b34e                    : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_getTicksUntilInterrupt__E)
    ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E
       1001b2dd     0000c678     00006eaa   drivers_cc26xxware.aem3 : RF.oem3 (.text:fsmPowerUpState)
    ti_sysbios_BIOS_getCpuFreq__E  $Tramp$TT$L$PI$$ti_sysbios_BIOS_getCpuFreq__E
       1001bff9     0000c680     00006da4   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_initHw)
    ti_sysbios_knl_Swi_post__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_post__E
       1001b321     0000c688     000068a6   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_hwiIntFxn)
                                 0000c040   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Swi_or__E)
                                 0000c14a   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_knl_Clock_doTick__I)
    ti_sysbios_knl_Semaphore_post__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_post__E
       1001ac41     0000c690     00006834   icall.obj (.text:ICall_primWaitMatch$4)
                                 00007c2e   drivers_cc26xxware.aem3 : PINCC26XX.oem3 (.text:PIN_open)
                                 000085f2   icall.obj (.text:ICall_primSend$4)
                                 0000870e   drivers_cc26xxware.aem3 : RF.oem3 (.text:fsmPowerDownState)
                                 000096b4   project_zero.obj (.text:user_enqueueCharDataMsg$0)
                                 0000998c   drivers_cc26xxware.aem3 : RF.oem3 (.text:syncCb)
                                 0000a17e   project_zero.obj (.text:user_enqueueRawAppMsg$0)
                                 0000bfba   peripheral.obj (.text:gapRole_setEvent$14)
                                 0000c41c   icall.obj (.text:ICall_primSignal$4)
                                 0000c53e   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:readSemCallback)
                                 0000c546                           : UARTCC26XX.oem3 (.text:writeSemCallback)
    ti_sysbios_knl_Clock_getTicks__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_getTicks__E
       1001b6d9     0000c698     000067ac   icall.obj (.text:ICall_primWaitMatch$4)
                                 00006816   icall.obj (.text:ICall_primWaitMatch$4)
                                 0000c312   icall.obj (.text:ICall_primGetTicks$4)
    ti_sysbios_knl_Task_self__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_self__E
       1001c1e5     0000c6a0     00006762   icall.obj (.text:ICall_primWaitMatch$4)
                                 00008fc0   icall.obj (.text:ICall_primEnroll$4)
                                 00009090   icall.obj (.text:ICall_primThreadServes$4)
                                 000096c4   icall.obj (.text:ICall_primWait$4)
                                 000097b8   icall.obj (.text:ICall_primRegisterApp$4)
                                 00009ac8   icall.obj (.text:ICall_primGetEntityId$4)
                                 0000a9b8   icall.obj (.text:ICall_primFetchMsg$4)
    ti_sysbios_family_arm_m3_Hwi_destruct  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_destruct
       1001c261     0000c6a8     000063fc   drivers_cc26xxware.aem3 : RF.oem3 (.text:RF_close)
                                 00006408                           : RF.oem3 (.text:RF_close)
                                 000084d4                           : UARTCC26XX.oem3 (.text:UARTCC26XX_close)
    ti_sysbios_knl_Swi_destruct  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_destruct
       1001c2e9     0000c6b0     000063f6   drivers_cc26xxware.aem3 : RF.oem3 (.text:RF_close)
                                 00006402                           : RF.oem3 (.text:RF_close)
                                 000084dc                           : UARTCC26XX.oem3 (.text:UARTCC26XX_close)
    ti_sysbios_knl_Clock_destruct  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_destruct
       1001c2b9     0000c6b8     000063f0   drivers_cc26xxware.aem3 : RF.oem3 (.text:RF_close)
                                 0000640e                           : RF.oem3 (.text:RF_close)
                                 00006440                           : RF.oem3 (.text:RF_close)
                                 000084fc                           : UARTCC26XX.oem3 (.text:UARTCC26XX_close)
    ti_sysbios_knl_Semaphore_destruct  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_destruct
       1001c2e1     0000c6c0     000063e8   drivers_cc26xxware.aem3 : RF.oem3 (.text:RF_close)
                                 00006438                           : RF.oem3 (.text:RF_close)
                                 000084e8                           : UARTCC26XX.oem3 (.text:UARTCC26XX_close)
                                 000084f4                           : UARTCC26XX.oem3 (.text:UARTCC26XX_close)
    ti_sysbios_knl_Semaphore_pend__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_pend__E
       1001a0cd     0000c6c8     0000600e   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 0000604a                           : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 000063e0                           : RF.oem3 (.text:RF_close)
                                 000067c0   icall.obj (.text:ICall_primWaitMatch$4)
                                 000070e0   drivers_cc26xxware.aem3 : RF.oem3 (.text:RF_pendCmd)
                                 0000718c                           : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                                 00007bc6                           : PINCC26XX.oem3 (.text:PIN_open)
                                 0000881e                           : UARTCC26XX.oem3 (.text:writeTxFifoFlush)
                                 00009704   icall.obj (.text:ICall_primWait$4)
    xdc_runtime_Text_ropeText__E  $Tramp$TT$L$PI$$xdc_runtime_Text_ropeText__E
       1001c7e9     0000c6d0     000055c2   uart_logs.obj (.text:uartLog_doPrint$17)
                                 00009ca8   rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_visitRope2__I)
                                 00009cb6                    : rom_sysbios.obj (.text:xdc_runtime_Text_visitRope2__I)
    ti_sysbios_knl_Swi_construct  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_construct
       1001b085     0000c6d8     00004644   drivers_cc26xxware.aem3 : PINCC26XX.oem3 (.text:PIN_init)
                                 00004eca                           : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 000056ce                           : RF.oem3 (.text:rf_init)
                                 0000570e                           : RF.oem3 (.text:rf_init)
    ti_sysbios_knl_Swi_Params__init__S  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_Params__init__S
       1001c1cd     0000c6e0     00004632   drivers_cc26xxware.aem3 : PINCC26XX.oem3 (.text:PIN_init)
                                 00004eb4                           : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 000056bc                           : RF.oem3 (.text:rf_init)
                                 000056fe                           : RF.oem3 (.text:rf_init)
    ti_sysbios_family_arm_m3_Hwi_construct  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_construct
       1001af29     0000c6e8     00004626   drivers_cc26xxware.aem3 : PINCC26XX.oem3 (.text:PIN_init)
                                 00004ea8                           : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 000056f2                           : RF.oem3 (.text:rf_init)
                                 00005732                           : RF.oem3 (.text:rf_init)
                                 00008ace                           : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
    ti_sysbios_family_arm_m3_Hwi_Params__init__S  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_Params__init__S
       1001c13d     0000c6f0     00004610   drivers_cc26xxware.aem3 : PINCC26XX.oem3 (.text:PIN_init)
                                 00004e90                           : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 000056da                           : RF.oem3 (.text:rf_init)
                                 0000571a                           : RF.oem3 (.text:rf_init)
    ti_sysbios_knl_Semaphore_construct  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_construct
       1001b709     0000c6f8     000045b4   drivers_cc26xxware.aem3 : PINCC26XX.oem3 (.text:PIN_init)
                                 00004eea                           : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 00004efe                           : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 00007022                           : RF.oem3 (.text:RF_open)
    ti_sysbios_knl_Semaphore_Params__init__S  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_Params__init__S
       1001c1c1     0000c700     000045a2   drivers_cc26xxware.aem3 : PINCC26XX.oem3 (.text:PIN_init)
                                 00004ed6                           : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 00007012                           : RF.oem3 (.text:RF_open)
    ti_sysbios_knl_Task_restore__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_restore__E
       1001ba49     0000c708     00003c74   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
                                 0000829a   icall.obj (.text:ICall_createRemoteTasks)
                                 0000c082   icall.obj (.text:ICall_leaveCSImpl)
    ti_sysbios_knl_Swi_restore__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_restore__E
       1001b5e1     0000c710     00003c6a   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
                                 000042a0                           : RF.oem3 (.text:abortCmd)
                                 00007098                           : RF.oem3 (.text:RF_pendCmd)
                                 000070d4                           : RF.oem3 (.text:RF_pendCmd)
                                 000070f0                           : RF.oem3 (.text:RF_pendCmd)
    ti_sysbios_knl_Swi_disable__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_disable__E
       1001c0d5     0000c718     00003ac6   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
                                 0000425a                           : RF.oem3 (.text:abortCmd)
                                 00007064                           : RF.oem3 (.text:RF_pendCmd)
                                 0000af06   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
    ti_sysbios_knl_Task_disable__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_disable__E
       1001c0f5     0000c720     00003aae   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
                                 00008244   icall.obj (.text:ICall_createRemoteTasks)
                                 0000af0a   app_ble_uartlog_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
                                 0000bca2   icall.obj (.text:ICall_enterCSImpl)
                                 0000c2d6   icall.obj (.text:ICall_primDisableMInt$4)
    ti_sysbios_knl_Task_sleep__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_sleep__E
       1001a96d     0000c728     00002462   project_zero.obj (.text:user_processApplicationMessage$0)
                                 000024a8   project_zero.obj (.text:user_processApplicationMessage$0)
    ti_sysbios_family_arm_m3_Hwi_restoreFxn__E  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_restoreFxn__E
       1001c219     0000c730     00001ef8   drivers_cc26xxware.aem3 : RF.oem3 (.text:fsmActiveState)
                                 00004164                           : RF.oem3 (.text:abortCmd)
                                 000041ca                           : RF.oem3 (.text:abortCmd)
                                 000041e4                           : RF.oem3 (.text:abortCmd)
                                 0000426e                           : RF.oem3 (.text:abortCmd)
                                 000046d6                           : RF.oem3 (.text:RF_postCmd)
                                 000046ec                           : RF.oem3 (.text:RF_postCmd)
                                 00004796                           : RF.oem3 (.text:RF_postCmd)
                                 000047d2                           : RF.oem3 (.text:RF_postCmd)
                                 000047fc                           : RF.oem3 (.text:RF_postCmd)
                                 0000483c                           : RF.oem3 (.text:RF_postCmd)
                                 00004dea                           : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 00004dfa                           : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 00004e80                           : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 00005fc6                           : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 00005fe2                           : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 00006080                           : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 000063c4                           : RF.oem3 (.text:RF_close)
                                 00006426                           : RF.oem3 (.text:RF_close)
                                 00006ba2                           : PowerCC26XX.oem3 (.text:Power_releaseDependency)
                                 00006c72                           : PowerCC26XX.oem3 (.text:Power_setDependency)
                                 00006fd4                           : RF.oem3 (.text:RF_open)
                                 00006fe2                           : RF.oem3 (.text:RF_open)
                                 00007130                           : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                                 00007148                           : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                                 00007164                           : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                                 000071b2                           : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                                 00007270                           : PINCC26XX.oem3 (.text:PINCC26XX_setIoCfg)
                                 000076fc                           : RF.oem3 (.text:swiFxnHw)
                                 00007716                           : RF.oem3 (.text:swiFxnHw)
                                 000077ec                           : RF.oem3 (.text:RF_ratCapture)
                                 00007c7e                           : UARTCC26XX.oem3 (.text:writeFinishedDoCallback)
                                 00007e7a                           : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                                 00007f36                           : UARTCC26XX.oem3 (.text:UARTCC26XX_writeCancel)
                                 00007f42                           : UARTCC26XX.oem3 (.text:UARTCC26XX_writeCancel)
                                 00007f84                           : UARTCC26XX.oem3 (.text:UARTCC26XX_writeCancel)
                                 0000819a                           : RF.oem3 (.text:RF_ratDisableChannel)
                                 0000831c                           : RF.oem3 (.text:RF_yield)
                                 00008420   uart_logs.obj (.text:uartLog_outputFxn)
                                 00008508   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_close)
                                 000088d2                           : UARTCC26XX.oem3 (.text:UARTCC26XX_readCancel)
                                 00008900                           : UARTCC26XX.oem3 (.text:UARTCC26XX_readCancel)
                                 0000891c                           : UARTCC26XX.oem3 (.text:UARTCC26XX_readCancel)
                                 00008c34                           : RF.oem3 (.text:RF_getCurrentTime)
                                 00008c3c                           : RF.oem3 (.text:RF_getCurrentTime)
                                 00008cda                           : RF.oem3 (.text:RF_getInfo)
                                 00008e12   uart_logs.obj (.text:uartLog_flush)
                                 00008f3e   drivers_cc26xxware.aem3 : RF.oem3 (.text:decActiveClientCnt)
                                 0000943a                           : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
                                 000094a8                           : UARTCC26XX.oem3 (.text:UARTCC26XX_control)
                                 0000950a                           : RF.oem3 (.text:ratChanFree)
                                 00009bca                           : UARTCC26XX.oem3 (.text:UARTCC26XX_swiIntFxn)
                                 00009de6                           : PINCC26XX.oem3 (.text:PIN_setOutputEnable)
                                 00009e66                           : RF.oem3 (.text:RF_getRssi)
                                 0000a5da                           : RF.oem3 (.text:postDirImmCmd)
                                 0000a5ee                           : RF.oem3 (.text:postDirImmCmd)
                                 0000ab10                           : PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
                                 0000ab4c                           : RF.oem3 (.text:Q_push)
                                 0000ae68                           : PowerCC26XX.oem3 (.text:Power_releaseConstraint)
                                 0000ae98                           : PowerCC26XX.oem3 (.text:Power_setConstraint)
                                 0000b330                           : PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
                                 0000b664                           : List.oem3 (.text:List_put)
                                 0000b974                           : PowerCC26XX.oem3 (.text:Power_unregisterNotify)
                                 0000bf44                           : RF.oem3 (.text:Q_pop)
                                 0000c07a   icall.obj (.text:ICall_leaveCSImpl)
    ti_sysbios_family_arm_m3_Hwi_disableFxn__E  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_disableFxn__E
       1001c149     0000c738     00001ee4   drivers_cc26xxware.aem3 : RF.oem3 (.text:fsmActiveState)
                                 000040e6                           : RF.oem3 (.text:abortCmd)
                                 000046b8                           : RF.oem3 (.text:RF_postCmd)
                                 00004766                           : RF.oem3 (.text:RF_postCmd)
                                 000047b0                           : RF.oem3 (.text:RF_postCmd)
                                 00004810                           : RF.oem3 (.text:RF_postCmd)
                                 00004de0                           : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 00004e7a                           : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 00005fa8                           : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 00005fca                           : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 00006022                           : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 0000606c                           : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 000063ac                           : RF.oem3 (.text:RF_close)
                                 00006aee                           : PowerCC26XX.oem3 (.text:Power_releaseDependency)
                                 00006bc2                           : PowerCC26XX.oem3 (.text:Power_setDependency)
                                 00006fca                           : RF.oem3 (.text:RF_open)
                                 00007120                           : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                                 0000714c                           : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                                 0000719e                           : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                                 00007252                           : PINCC26XX.oem3 (.text:PINCC26XX_setIoCfg)
                                 000076ba                           : RF.oem3 (.text:swiFxnHw)
                                 00007786                           : RF.oem3 (.text:RF_ratCapture)
                                 00007c66                           : UARTCC26XX.oem3 (.text:writeFinishedDoCallback)
                                 00007e04                           : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                                 00007f26                           : UARTCC26XX.oem3 (.text:UARTCC26XX_writeCancel)
                                 00007f6e                           : UARTCC26XX.oem3 (.text:UARTCC26XX_writeCancel)
                                 0000816c                           : RF.oem3 (.text:RF_ratDisableChannel)
                                 000082bc                           : RF.oem3 (.text:RF_yield)
                                 000083b6   uart_logs.obj (.text:uartLog_outputFxn)
                                 00008500   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_close)
                                 000088c6                           : UARTCC26XX.oem3 (.text:UARTCC26XX_readCancel)
                                 000088ea                           : UARTCC26XX.oem3 (.text:UARTCC26XX_readCancel)
                                 00008c26                           : RF.oem3 (.text:RF_getCurrentTime)
                                 00008c94                           : RF.oem3 (.text:RF_getInfo)
                                 00008dda   uart_logs.obj (.text:uartLog_flush)
                                 00008ef8   drivers_cc26xxware.aem3 : RF.oem3 (.text:decActiveClientCnt)
                                 00009426                           : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
                                 0000948a                           : UARTCC26XX.oem3 (.text:UARTCC26XX_control)
                                 000094c8                           : RF.oem3 (.text:ratChanFree)
                                 00009bb2                           : UARTCC26XX.oem3 (.text:UARTCC26XX_swiIntFxn)
                                 00009dd0                           : PINCC26XX.oem3 (.text:PIN_setOutputEnable)
                                 00009e56                           : RF.oem3 (.text:RF_getRssi)
                                 0000a5c4                           : RF.oem3 (.text:postDirImmCmd)
                                 0000aaee                           : PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
                                 0000ab2e                           : RF.oem3 (.text:Q_push)
                                 0000ab36                           : RF.oem3 (.text:Q_push)
                                 0000ae48                           : PowerCC26XX.oem3 (.text:Power_releaseConstraint)
                                 0000ae78                           : PowerCC26XX.oem3 (.text:Power_setConstraint)
                                 0000b312                           : PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
                                 0000b964                           : PowerCC26XX.oem3 (.text:Power_unregisterNotify)
                                 0000bcac   icall.obj (.text:ICall_enterCSImpl)
                                 0000bf38   drivers_cc26xxware.aem3 : RF.oem3 (.text:Q_pop)
                                 0000c2da   icall.obj (.text:ICall_primDisableMInt$4)
                                 0000c5d4   tirtosport.aem3 : HwiP_tirtos.oem3 (.text:HwiP_disable)
    ti_sysbios_knl_Clock_start__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_start__E
       1001bfe3     0000c740     00001ec2   drivers_cc26xxware.aem3 : RF.oem3 (.text:fsmActiveState)
                                 000047f4                           : RF.oem3 (.text:RF_postCmd)
                                 0000523a                           : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_doCalibrate)
                                 00005d42                           : PowerCC26XX.oem3 (.text:Power_init)
                                 00006a7c   project_zero.obj (.text:buttonCallbackFxn$0)
                                 00006f24   power_cc26xx_tirtos.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
                                 00007cc6   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:writeFinishedDoCallback)
                                 00007e52                           : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                                 0000812a   icall.obj (.text:ICall_primSetTimer$4)
                                 0000836c   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
                                 00008f38                           : RF.oem3 (.text:decActiveClientCnt)
                                 0000955a                           : PowerCC26XX.oem3 (.text:configureXOSCHF)
                                 000095e4                           : RF.oem3 (.text:fsmXOSCState)
                                 00009930                           : UARTCC26XX.oem3 (.text:startTxFifoEmptyClk)
                                 0000a784   util.obj (.text:Util_restartClock)
                                 0000ba1a   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_stop__E)
    ti_sysbios_knl_Clock_setTimeout__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_setTimeout__E
       1001c2c1     0000c748     00001eba   drivers_cc26xxware.aem3 : RF.oem3 (.text:fsmActiveState)
                                 000047ee                           : RF.oem3 (.text:RF_postCmd)
                                 00005d3c                           : PowerCC26XX.oem3 (.text:Power_init)
                                 00006f1e   power_cc26xx_tirtos.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
                                 00007cc0   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:writeFinishedDoCallback)
                                 00007e4c                           : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                                 00008124   icall.obj (.text:ICall_primSetTimer$4)
                                 00008366   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
                                 00008f32                           : RF.oem3 (.text:decActiveClientCnt)
                                 00009554                           : PowerCC26XX.oem3 (.text:configureXOSCHF)
                                 000095de                           : RF.oem3 (.text:fsmXOSCState)
                                 0000992a                           : UARTCC26XX.oem3 (.text:startTxFifoEmptyClk)
                                 0000a77e   util.obj (.text:Util_restartClock)
    ti_sysbios_knl_Clock_construct  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_construct
       1001b579     0000c750     00000816   project_zero.obj (.text:ProjectZero_init$0)
                                 00000832   project_zero.obj (.text:ProjectZero_init$0)
                                 00004f26   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 0000573e                           : RF.oem3 (.text:rf_init)
                                 00005ca8                           : PowerCC26XX.oem3 (.text:Power_init)
                                 00005cb6                           : PowerCC26XX.oem3 (.text:Power_init)
                                 00005cc4                           : PowerCC26XX.oem3 (.text:Power_init)
                                 0000703e                           : RF.oem3 (.text:RF_open)
                                 00008abe                           : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
                                 0000ab7a   util.obj (.text:Util_constructClock)
    ti_sysbios_knl_Clock_Params__init__S  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_Params__init__S
       1001c185     0000c758     000007f0   project_zero.obj (.text:ProjectZero_init$0)
                                 00004f0e   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 00005c90                           : PowerCC26XX.oem3 (.text:Power_init)
                                 0000702e                           : RF.oem3 (.text:RF_open)
                                 000080d2   icall.obj (.text:ICall_primSetTimer$4)
                                 00008aa4   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
                                 0000ab66   util.obj (.text:Util_constructClock)
    ti_sysbios_knl_Task_exit__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_exit__E
       1001b429     0000c760     000006aa   project_zero.obj (.text:ProjectZero_init$0)
                                 000006fc   project_zero.obj (.text:ProjectZero_init$0)
                                 000007e4   project_zero.obj (.text:ProjectZero_init$0)
    ti_sysbios_knl_Queue_construct  $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_construct
       1001b8f5     0000c768     00000652   project_zero.obj (.text:ProjectZero_init$0)
    
    [63 trampolines]
    [307 trampoline calls]
    
    
    GLOBAL SYMBOLS: SORTED ALPHABETICALLY BY Name 
    
    address   name                                                                      
    -------   ----                                                                      
    10014c00  A1_rw                                                                     
    10019ffe  A2_rw                                                                     
    10019ffc  A3_rw                                                                     
    20004f2c  A4_rw                                                                     
    20004f7c  ACCX                                                                      
    20004f80  ACCY                                                                      
    20004f84  ACCZ                                                                      
    0000b43d  AONBatMonTemperatureGetDegC                                               
    10015229  ATOMICPATTERN                                                             
    10016c29  AddRoundKeySubBytes_Sw                                                    
    10018a19  AesCcm_authEncrypt_Sw                                                     
    10018a35  AesCcm_decryptAuth_Sw                                                     
    10018b09  AesCcm_getNumBlocks_Sw                                                    
    10018ac5  Aes_decrypt_Sw                                                            
    10018a99  Aes_encrypt_Sw                                                            
    00009ff5  AssertHandler                                                             
    200007f0  B                                                                         
    0000e190  BoardGpioInitTable                                                        
    0000e351  ButtonServiceUUID                                                         
    00006931  ButtonService_AddService                                                  
    0000003d  ButtonService_RegisterAppCBs                                              
    0000196d  ButtonService_SetParameter                                                
    0000e0c8  Button_ServiceCBs                                                         
    0000a105  C$$EXIT                                                                   
    20004f2c  COMMON_RAM_BASE_ADDR                                                      
    10014c01  COMMON_ROM_BASE_ADDR                                                      
    10015a6d  COPY                                                                      
    00009d25  ChipInfo_GetChipFamily                                                    
    0000884d  ChipInfo_GetHwRevision                                                    
    0000bd25  ChipInfo_GetPackageType                                                   
    0000e361  DataServiceUUID                                                           
    00006c8d  DataService_AddService                                                    
    000074ad  DataService_RegisterAppCBs                                                
    000012f1  DataService_SetParameter                                                  
    0000e0fc  Data_ServiceCBs                                                           
    00000501  DefaultAssertCback                                                        
    0000c0b5  DevInfo_AddService                                                        
    0000c189  DevInfo_SetParameter                                                      
    10017959  ECC_allocWorkzone                                                         
    10017961  ECC_setWin                                                                
    10017969  ECDSA_sign                                                                
    10017b01  ECDSA_verif                                                               
    10015a11  EXPORTOPERAND                                                             
    20004f78  EXPW                                                                      
    20004f6c  EXPX                                                                      
    20004f70  EXPY                                                                      
    20004f74  EXPZ                                                                      
    10016f58  FFMult2                                                                   
    10017058  FFMult3                                                                   
    10016d05  FFMult_Sw                                                                 
    10018d6c  Fill1                                                                     
    0000a6b1  GAPBondMgr_LinkEst                                                        
    0000b66b  GAPBondMgr_LinkTerm                                                       
    0000ad85  GAPBondMgr_PasscodeRsp                                                    
    0000b159  GAPBondMgr_Register                                                       
    0000a919  GAPBondMgr_SetParameter                                                   
    00005a2d  GAPRole_GetParameter                                                      
    0000a259  GAPRole_SendUpdateParam                                                   
    000031a5  GAPRole_SetParameter                                                      
    0000bd3d  GAPRole_StartDevice                                                       
    0000bd55  GAPRole_TerminateConnection                                               
    0000a299  GAPRole_createTask                                                        
    00009715  GAP_DeviceInit                                                            
    0000c1a9  GAP_EndDiscoverable                                                       
    0000a459  GAP_GetParamValue                                                         
    0000c3a9  GAP_MakeDiscoverable                                                      
    0000c51b  GAP_RegisterForMsgs                                                       
    0000a94d  GAP_SetParamValue                                                         
    0000c3b5  GAP_TerminateAuth                                                         
    0000a039  GAP_TerminateLinkReq                                                      
    00009765  GAP_UpdateAdvertisingData                                                 
    0000c3c1  GAP_UpdateLinkParamReq                                                    
    00000481  GATTServApp_AddService                                                    
    0000c15d  GATTServApp_FindAttr                                                      
    0000b841  GATTServApp_InitCharCfg                                                   
    00009cd9  GATTServApp_ProcessCCCWriteReq                                            
    00007a85  GATTServApp_ProcessCharCfg                                                
    0000c1b9  GATTServApp_ReadCharCfg                                                   
    0000a495  GATTServApp_RegisterService                                               
    0000b465  GATTServApp_WriteCharCfg                                                  
    0000c54b  GATT_Indication                                                           
    0000bd6d  GATT_Notification                                                         
    0000c523  GATT_RegisterForMsgs                                                      
    0000a2d9  GATT_SendRsp                                                              
    0000b861  GATT_bm_alloc                                                             
    0000bafd  GATT_bm_free                                                              
    10015141  GETBIT                                                                    
    10015155  GETDIGIT                                                                  
    100151a5  GETDIGITL2R                                                               
    0000c551  GGS_AddService                                                            
    0000c3cd  GGS_SetParameter                                                          
    0000b185  HCI_EXT_ConnEventNoticeCmd                                                
    2000157c  HEAPMGR_SIZE                                                              
    0000c5d5  HwiP_disable                                                              
    UNDEFED   HwiP_restore                                                              
    0000a4d1  ICallPlatform_pwrConfigACAction                                           
    0000be2d  ICallPlatform_pwrDispense                                                 
    0000c2b9  ICallPlatform_pwrGetTransitionState                                       
    0000c1e9  ICallPlatform_pwrGetXOSCStartupTime                                       
    0000c2c7  ICallPlatform_pwrIsStableXOSCHF                                           
    00009a2d  ICallPlatform_pwrRegisterNotify                                           
    0000be45  ICallPlatform_pwrRequire                                                  
    0000c4d5  ICallPlatform_pwrSwitchXOSCHF                                             
    00008521  ICallPlatform_pwrUpdActivityCounter                                       
    0000823d  ICall_createRemoteTasks                                                   
    20001558  ICall_dispatcher                                                          
    0000bca1  ICall_enterCSImpl                                                         
    20001560  ICall_enterCriticalSection                                                
    0000b1b1  ICall_freeImpl                                                            
    0000b1b1  ICall_heapFree                                                            
    00008a0d  ICall_heapInit                                                            
    00008031  ICall_heapMalloc                                                          
    0000b4b5  ICall_init                                                                
    0000c073  ICall_leaveCSImpl                                                         
    20001564  ICall_leaveCriticalSection                                                
    0000c557  ICall_mallocImpl                                                          
    0000aa51  ICall_searchServiceEntity                                                 
    10015a35  IMPORTDATA                                                                
    100159a9  IMPORTLENGTH                                                              
    100159ad  IMPORTMODULUS                                                             
    100159d1  IMPORTOPERAND                                                             
    1001568d  INVERT                                                                    
    10016da1  InvAddRoundKey_Sw                                                         
    10016ed5  InvMixColumns_Sw                                                          
    10016dc9  InvRoundKey_Sw                                                            
    10017264  InvSbox                                                                   
    10016ea1  InvShiftRows_Sw                                                           
    10016e8d  InvSubBytes_Sw                                                            
    100154f5  JACADD                                                                    
    0000e130  LED_ServiceCBs                                                            
    20004fe8  LEN                                                                       
    100158ac  LUTC                                                                      
    100158dc  LUTINCI                                                                   
    100158f4  LUTJ                                                                      
    1001588c  LUTOPCODE                                                                 
    10015894  LUTOPSIGN                                                                 
    100158c4  LUTSE                                                                     
    1001596c  LUTSTATE                                                                  
    0000e371  LedServiceUUID                                                            
    0000760d  LedService_AddService                                                     
    000073f9  LedService_RegisterAppCBs                                                 
    00003cb5  LedService_SetParameter                                                   
    0000c4e9  List_empty                                                                
    0000c5dd  List_head                                                                 
    0000c5e1  List_next                                                                 
    0000b645  List_put                                                                  
    0000bcd5  List_remove                                                               
    10018825  MB_ClearInts                                                              
    100187f5  MB_DisableInts                                                            
    10018835  MB_EnableHWInts                                                           
    10018799  MB_EnableInts                                                             
    10018945  MB_FwDebugDump                                                            
    10018755  MB_Init                                                                   
    10018935  MB_ReadMailboxStatus                                                      
    1001893d  MB_RegisterIsrCback                                                       
    10018865  MB_SendCommand                                                            
    100188a5  MB_SendCommandSynch                                                       
    20004fe4  MOD                                                                       
    20004fd8  MSBMOD                                                                    
    10016c79  MixColumns_Sw                                                             
    10018b9c  NIST_Curve_P256_Gx                                                        
    10018bc0  NIST_Curve_P256_Gy                                                        
    10018b54  NIST_Curve_P256_a                                                         
    10018b78  NIST_Curve_P256_b                                                         
    10018b0c  NIST_Curve_P256_p                                                         
    10018b30  NIST_Curve_P256_r                                                         
    0000c0c9  NOROM_AONRTCCurrent64BitValueGet                                          
    0000beed  NOROM_AONRTCCurrentCompareValueGet                                        
    0000c425  NOROM_CPUcpsid                                                            
    0000c431  NOROM_CPUcpsie                                                            
    0000a319  NOROM_DDI16BitfieldRead                                                   
    00009d6d  NOROM_DDI16BitfieldWrite                                                  
    0000bb89  NOROM_OSCClockSourceGet                                                   
    00009b5d  NOROM_OSCClockSourceSet                                                   
    0000bf05  NOROM_RFCCpeIntGetAndClear                                                
    0000b921  NOROM_RFCDoorbellSendTo                                                   
    000050e3  NOROM_RFCRTrim                                                            
    0000b941  NOROM_RFCRfTrimRead                                                       
    0000c219  NOROM_RFCRfTrimSet                                                        
    0000a50d  NOROM_RFCSynthPowerDown                                                   
    0000c31d  NOROM_VIMSModeGet                                                         
    000090d9  OSCHF_AttemptToSwitchToXosc                                               
    00007fa9  OSCHF_GetStartupTime                                                      
    0000aa85  OSCHF_SwitchToRcOscTurnOffXosc                                            
    0000bf1d  OSCHF_TurnOnXosc                                                          
    0000a549  OSC_HPOSCRelativeFrequencyOffsetGet                                       
    10014c04  P1_ro                                                                     
    10019ffe  P1_ro_2                                                                   
    20004f40  P2_rw                                                                     
    20004f40  P2_s0                                                                     
    20004fac  P2_zi                                                                     
    0000e3ac  PINCC26XX_hwAttrs                                                         
    0000b2e5  PINCC26XX_setMux                                                          
    20002484  PIN_HandleTable                                                           
    200026c8  PIN_NumPins                                                               
    0000ba67  PIN_close                                                                 
    0000c0dd  PIN_getInputValue                                                         
    000044cd  PIN_init                                                                  
    00007bb5  PIN_open                                                                  
    0000c43d  PIN_registerIntCb                                                         
    00009135  PIN_remove                                                                
    0000aab9  PIN_setConfig                                                             
    00009db5  PIN_setOutputEnable                                                       
    0000a585  PIN_setOutputValue                                                        
    00009191  PowerCC26XX_RCOSC_clockFunc                                               
    00008609  PowerCC26XX_auxISR                                                        
    00008a79  PowerCC26XX_calibrate                                                     
    0000e304  PowerCC26XX_config                                                        
    000050e5  PowerCC26XX_doCalibrate                                                   
    00007fa9  PowerCC26XX_getXoscStartupTime                                            
    00009415  PowerCC26XX_initiateCalibration                                           
    0000aaed  PowerCC26XX_isStableXOSC_HF                                               
    200012b4  PowerCC26XX_module                                                        
    00006ee1  PowerCC26XX_standbyPolicy                                                 
    0000b311  PowerCC26XX_switchXOSC_HF                                                 
    0000c449  Power_getConstraintMask                                                   
    0000c455  Power_getDependencyCount                                                  
    0000ba85  Power_getTransitionLatency                                                
    0000c461  Power_getTransitionState                                                  
    0000bbdd  Power_idleFunc                                                            
    00005c69  Power_init                                                                
    0000b555  Power_registerNotify                                                      
    0000ae45  Power_releaseConstraint                                                   
    00006ae9  Power_releaseDependency                                                   
    0000ae75  Power_setConstraint                                                       
    00006bbd  Power_setDependency                                                       
    00003a8d  Power_sleep                                                               
    0000b961  Power_unregisterNotify                                                    
    0000a359  ProjectZero_createTask                                                    
    200007f4  R                                                                         
    10017158  RCon                                                                      
    0000e314  RFCC26XX_hwAttrs                                                          
    10018415  RFHAL_AddTxDataEntry                                                      
    100184f9  RFHAL_AllocDataEntry                                                      
    100184a9  RFHAL_AllocDataEntryQueue                                                 
    10018315  RFHAL_AllocRatChan                                                        
    100185e1  RFHAL_BuildDataEntryRingBuffer                                            
    10018669  RFHAL_BuildLinkedBuffer                                                   
    10018551  RFHAL_BuildRingBuffer                                                     
    10018549  RFHAL_FreeDataEntry                                                       
    100184c5  RFHAL_FreeDataEntryQueue                                                  
    10018485  RFHAL_FreeNextTxDataEntry                                                 
    1001833d  RFHAL_FreeRatChan                                                         
    100184cd  RFHAL_GetNextDataEntry                                                    
    100184d1  RFHAL_GetTempDataEntry                                                    
    100183b9  RFHAL_InitDataQueue                                                       
    100182ad  RFHAL_InitRfHal                                                           
    10018369  RFHAL_MapRatChansToInt                                                    
    100184d5  RFHAL_NextDataEntryDone                                                   
    100183c5  RFHAL_QueueRFDataEntries                                                  
    10018391  RFHAL_RegisterRatChanCallback                                             
    0000c229  RF_Params_init                                                            
    000040d5  RF_cancelCmd                                                              
    00006385  RF_close                                                                  
    0000c52b  RF_flushCmd                                                               
    0000bbf9  RF_getCmdOp                                                               
    00008c25  RF_getCurrentTime                                                         
    00008c8d  RF_getInfo                                                                
    00009e45  RF_getRssi                                                                
    00006f9d  RF_open                                                                   
    00007059  RF_pendCmd                                                                
    000046ad  RF_postCmd                                                                
    00007765  RF_ratCapture                                                             
    00008e91  RF_ratCompare                                                             
    00008139  RF_ratDisableChannel                                                      
    0000b6fd  RF_ratHwOutput                                                            
    00009e8d  RF_runCmd                                                                 
    0000bf4d  RF_runDirectCmd                                                           
    0000bf65  RF_runImmediateCmd                                                        
    000082b9  RF_yield                                                                  
    0000c239  RegisterAssertCback                                                       
    0000a07d  ResetISR                                                                  
    10016b79  RoundKey_Sw                                                               
    10015101  SAVEPOINT                                                                 
    20004f68  SCAL                                                                      
    100150e5  SCALARMUL                                                                 
    10014ced  SCALARMUL_core                                                            
    10015019  SCALARMUL_final                                                           
    10014c05  SCALARMUL_init                                                            
    10015a51  SETOPERAND                                                                
    10015a91  SETWORD                                                                   
    10018089  SHA256_final                                                              
    10018129  SHA256_full                                                               
    10017ffd  SHA256_init                                                               
    10017ef1  SHA256_nextState                                                          
    10018019  SHA256_process                                                            
    10017e75  SHA256_round                                                              
    10017f49  SHA256_saveBuffer                                                         
    10017e39  SHA256_updateW                                                            
    UNDEFED   SHT$$INIT_ARRAY$$Base                                                     
    UNDEFED   SHT$$INIT_ARRAY$$Limit                                                    
    10015821  SQUAREMULTIPLYWORD                                                        
    10017895  SSP_CCM_Auth_Encrypt_Sw                                                   
    10017365  SSP_CCM_Auth_Sw                                                           
    1001767d  SSP_CCM_Decrypt_Sw                                                        
    100174fd  SSP_CCM_Encrypt_Sw                                                        
    100178f5  SSP_CCM_InvAuth_Decrypt_Sw                                                
    10017839  SSP_CCM_InvAuth_Sw                                                        
    10017771  SSP_CTR_Decrypt_Sw                                                        
    100175ed  SSP_CTR_Encrypt_Sw                                                        
    0000b57d  SafeHapiVoid                                                              
    10017164  Sbox                                                                      
    10015215  SelectReg                                                                 
    10016c45  ShiftRows_Sw                                                              
    0000c32b  SignExtendVddrTrimValue                                                   
    000091ed  SysCtrlAdjustRechargeAfterPowerDown                                       
    00003ed1  SysCtrlSetRechargeBeforePowerDown                                         
    00008cf5  SysCtrl_DCDC_VoltageConditionalControl                                    
    20004f88  TMP1                                                                      
    20004f8c  TMP2                                                                      
    20004f90  TMP3                                                                      
    20004f94  TMP4                                                                      
    20004f98  TMP5                                                                      
    20004f9c  TMP6                                                                      
    0000c0f1  ThisCodeIsBuiltForCC26xxHwRev22AndLater_HaltIfViolated                    
    000084a9  UARTCC26XX_close                                                          
    0000946d  UARTCC26XX_control                                                        
    0000e1e8  UARTCC26XX_fxnTable                                                       
    00006845  UARTCC26XX_hwiIntFxn                                                      
    0000bf7d  UARTCC26XX_init                                                           
    00004dcd  UARTCC26XX_open                                                           
    00007115  UARTCC26XX_read                                                           
    000088bd  UARTCC26XX_readCancel                                                     
    0000c55d  UARTCC26XX_readPolling                                                    
    00009ba9  UARTCC26XX_swiIntFxn                                                      
    00005f99  UARTCC26XX_write                                                          
    00007f1d  UARTCC26XX_writeCancel                                                    
    0000c563  UARTCC26XX_writePolling                                                   
    0000e2c0  UART_config                                                               
    0000e260  UART_defaultParams                                                        
    0000a721  UART_init                                                                 
    0000aed5  UART_open                                                                 
    0000c4f3  UART_write                                                                
    0000c46d  UartLog_doInit                                                            
    0000ab55  Util_constructClock                                                       
    00009855  Util_convertBdAddr2Str                                                    
    0000c249  Util_isActive                                                             
    0000a759  Util_restartClock                                                         
    0000c5e9  Util_stopClock                                                            
    10015a85  ZERO                                                                      
    00000000  __ASM__                                                                   
    0000007f  __ISA__                                                                   
    00000091  __PLAT__                                                                  
    20004368  __STACK_END                                                               
    00000400  __STACK_SIZE                                                              
    20004368  __STACK_TOP                                                               
    000000b8  __TARG__                                                                  
    0000eb78  __TI_CINIT_Base                                                           
    0000ebe0  __TI_CINIT_Limit                                                          
    0000eb18  __TI_Handler_Table_Base                                                   
    0000eb24  __TI_Handler_Table_Limit                                                  
    0000780d  __TI_auto_init                                                            
    200018c4  __TI_cleanup_ptr                                                          
    0000c339  __TI_decompress_none                                                      
    0000c575  __TI_decompress_rle24                                                     
    200018c8  __TI_dtors_ptr                                                            
    00000000  __TI_static_base__                                                        
    0000c479  __TI_zero_init                                                            
    000000dd  __TRDR__                                                                  
    00009fad  __aeabi_d2iz                                                              
    00006191  __aeabi_dmul                                                              
    000084a7  __aeabi_idiv0                                                             
    0000bfdd  __aeabi_lmul                                                              
    0000842d  __aeabi_memclr                                                            
    0000842d  __aeabi_memclr4                                                           
    0000842d  __aeabi_memclr8                                                           
    0000794d  __aeabi_memcpy                                                            
    0000794d  __aeabi_memcpy4                                                           
    0000794d  __aeabi_memcpy8                                                           
    0000842f  __aeabi_memset                                                            
    0000842f  __aeabi_memset4                                                           
    0000842f  __aeabi_memset8                                                           
    0000b9c1  __aeabi_ui2d                                                              
    0000a399  __aeabi_uidiv                                                             
    0000a399  __aeabi_uidivmod                                                          
    000042d9  __aeabi_uldivmod                                                          
    ffffffff  __binit__                                                                 
    0000e410  __c_args__                                                                
    0001ffa8  __ccfg                                                                    
    10019ffe  __checksum_CommonROM                                                      
    10014c00  __checksum_begin_CommonROM                                                
    10019ffd  __checksum_end_CommonROM                                                  
    0000e0ea  __checksum_value_CommonROM                                                
    10018ced  __exit                                                                    
    20003f68  __stack                                                                   
    0000c569  __xdc__init                                                               
    200014a4  __xdc__init__addr                                                         
    0000bfc5  _args_main                                                                
    0000a07d  _c_int00                                                                  
    200018bc  _lock                                                                     
    0000c105  _nop                                                                      
    0000c10d  _register_lock                                                            
    0000c107  _register_unlock                                                          
    200018c0  _unlock                                                                   
    0000a109  abort                                                                     
    200018d4  appAssertCback                                                            
    0000e1d6  appearanceUUID                                                            
    20004fdc  aux64                                                                     
    ffffffff  binit                                                                     
    0000e0d4  bs_BUTTON0UUID                                                            
    0000e0e4  bs_BUTTON1UUID                                                            
    20000858  buttonPinTable                                                            
    0000e1d2  charAggFormatUUID                                                         
    0000e1ca  charExtPropsUUID                                                          
    0000e1d0  charFormatUUID                                                            
    0000e1cc  charUserDescUUID                                                          
    0000e1be  characterUUID                                                             
    0000e1c0  clientCharCfgUUID                                                         
    20000900  codigo_balanza                                                            
    00009249  conversion_mt8442_ascii                                                   
    000092a5  conversion_mt8442_ext_ascii                                               
    00002841  conversion_mt8442_ext_hex                                                 
    00004f5d  conversion_mt8442_hex                                                     
    0000b9a1  convert_uint2char                                                         
    00009c41  copy_in                                                                   
    0000e300  devInfo11073CertUUID                                                      
    0000e320  devInfoCBs                                                                
    0000e2f8  devInfoFirmwareRevUUID                                                    
    0000e2fa  devInfoHardwareRevUUID                                                    
    0000e2fe  devInfoMfrNameUUID                                                        
    0000e2f4  devInfoModelNumberUUID                                                    
    0000e302  devInfoPnpIdUUID                                                          
    0000e2f6  devInfoSerialNumberUUID                                                   
    0000e2f0  devInfoServUUID                                                           
    0000e2fc  devInfoSoftwareRevUUID                                                    
    0000e2f2  devInfoSystemIdUUID                                                       
    0000e1d4  deviceNameUUID                                                            
    200007dc  dispHandle                                                                
    200026f4  driverlib_release_0_45566                                                 
    0000e118  ds_StreamUUID                                                             
    0000e108  ds_StringUUID                                                             
    10017dbd  eccRom_genKeys                                                            
    10017ded  eccRom_genSharedSecret                                                    
    20004fa0  eccRom_param_Gx                                                           
    20004fa4  eccRom_param_Gy                                                           
    20004f50  eccRom_param_a                                                            
    20004fa8  eccRom_param_b                                                            
    20004f48  eccRom_param_p                                                            
    20004f4c  eccRom_param_r                                                            
    20004f40  eccRom_windowSize                                                         
    20004f44  eccRom_workzone                                                           
    0000a111  exit                                                                      
    0000e1e2  extReportRefUUID                                                          
    20004fcc  fwInfoCmd                                                                 
    20000e7c  gapRoleTask                                                               
    20000ecc  gapRoleTaskStack                                                          
    0000bfad  gapRole_clockHandler                                                      
    0000e1c2  gapServiceUUID                                                            
    0000e1c4  gattServiceUUID                                                           
    20003f68  heapEnd                                                                   
    200026fa  heapStart                                                                 
    20004f58  inPointX                                                                  
    20004f5c  inPointY                                                                  
    20004f54  inScalar                                                                  
    0000e1c8  includeUUID                                                               
    200007e0  largo_codigo                                                              
    200007e4  largo_teclado_mt8224                                                      
    200007e8  largo_teclado_mt8224_ext                                                  
    200018a8  lastAppOpcodeSent                                                         
    2000084c  ledPinTable                                                               
    20000d68  linkDBNumConns                                                            
    0000a791  linkDB_NumConns                                                           
    0000e13c  ls_LED0UUID                                                               
    0000e14c  ls_LED1UUID                                                               
    10016551  mADD                                                                      
    10015bd5  mINVK                                                                     
    10015f81  mMULT                                                                     
    10016749  mOUT                                                                      
    10015a9d  mSET                                                                      
    1001664d  mSUB                                                                      
    0000a7c9  main                                                                      
    200018dc  main_func_sp                                                              
    0000b0eb  malloc                                                                    
    10018949  mbCmdAckIsr                                                               
    1001895d  mbCpe0Isr                                                                 
    10018985  mbCpe1Isr                                                                 
    100189e5  mbHwIsr                                                                   
    0000b81f  memcmp                                                                    
    0000794d  memcpy                                                                    
    00008435  memset                                                                    
    20000928  multiplexorPinTable                                                       
    0000ab89  osal_snv_read                                                             
    0000abbd  osal_snv_write                                                            
    20004f60  outPointX                                                                 
    20004f64  outPointY                                                                 
    20004ffc  pSspAesEncrypt_Sw                                                         
    0000e1dc  periConnParamUUID                                                         
    0000e1d8  periPrivacyFlagUUID                                                       
    200018ac  pfnBMAlloc                                                                
    200018b0  pfnBMFree                                                                 
    0000e1bc  primaryServiceUUID                                                        
    2000098c  przTask                                                                   
    20000a45  przTaskStack                                                              
    20004fac  ratChanInfo                                                               
    0000e1da  reconnectAddrUUID                                                         
    0000e1e4  reportRefUUID                                                             
    0000df64  resourceDB                                                                
    0000dfb0  rfDriverTable                                                             
    200016d4  rfRegTbl                                                                  
    0000e1c6  secondaryServiceUUID                                                      
    0000e1ce  servCharCfgUUID                                                           
    0000e1de  serviceChangedUUID                                                        
    10016d29  sspAesDecrypt_Sw                                                          
    10016af5  sspAesEncryptBasic_Sw                                                     
    10016a99  sspAesEncryptKeyExp_Sw                                                    
    10016979  sspAesEncrypt_Sw                                                          
    10016985  sspKeyExpansion_Sw                                                        
    10016975  ssp_KeyInit_Sw                                                            
    0000c119  strlen                                                                    
    20000954  teclado_mt2884                                                            
    200009dc  teclado_mt2884_ext                                                        
    200001a4  ti_sysbios_BIOS_Module__state__V                                          
    1001bc29  ti_sysbios_BIOS_RtsGateProxy_Handle__label__S                             
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_Handle__label__S__mangled__                  
    1001bab9  ti_sysbios_BIOS_RtsGateProxy_Object__delete__S                            
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_Object__delete__S__mangled__                 
    1001c179  ti_sysbios_BIOS_RtsGateProxy_Params__init__S                              
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_Params__init__S__mangled__                   
    1001c249  ti_sysbios_BIOS_RtsGateProxy_enter__E                                     
    1001c24d  ti_sysbios_BIOS_RtsGateProxy_leave__E                                     
    1001c275  ti_sysbios_BIOS_RtsGateProxy_query__E                                     
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_query__E__mangled__                          
    0000af05  ti_sysbios_BIOS_atExitFunc__I                                             
    0000c09f  ti_sysbios_BIOS_exitFunc__I                                               
    1001c035  ti_sysbios_BIOS_exit__E                                                   
    1001bff9  ti_sysbios_BIOS_getCpuFreq__E                                             
    0000c491  ti_sysbios_BIOS_getThreadType__E                                          
    00008a0b  ti_sysbios_BIOS_nullFunc__I                                               
    0000b769  ti_sysbios_BIOS_registerRTSLock__I                                        
    0000b78d  ti_sysbios_BIOS_removeRTSLock__I                                          
    0000b9e1  ti_sysbios_BIOS_rtsLock__I                                                
    0000c00d  ti_sysbios_BIOS_rtsUnlock__I                                              
    1001c045  ti_sysbios_BIOS_setThreadType__E                                          
    0000b7b1  ti_sysbios_BIOS_startFunc__I                                              
    1001c055  ti_sysbios_BIOS_start__E                                                  
    000078ad  ti_sysbios_family_arm_cc26xx_Boot_trimDevice                              
    00000502  ti_sysbios_family_arm_cc26xx_Timer_Module__id__C                          
    200013c0  ti_sysbios_family_arm_cc26xx_Timer_Module__root__V                        
    1001bb49  ti_sysbios_family_arm_cc26xx_Timer_Module__startupDone__S                 
    200001e4  ti_sysbios_family_arm_cc26xx_Timer_Module__state__V                       
    1001ba71  ti_sysbios_family_arm_cc26xx_Timer_Module_startup__E                      
    20001770  ti_sysbios_family_arm_cc26xx_Timer_Object__table__V                       
    0000bc69  ti_sysbios_family_arm_cc26xx_Timer_dynamicStub__E                         
    0000c5f5  ti_sysbios_family_arm_cc26xx_Timer_getCount64__E                          
    0000a871  ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E                      
    1001c251  ti_sysbios_family_arm_cc26xx_Timer_getExpiredTicks__E                     
    0000b5cd  ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E                         
    1001c255  ti_sysbios_family_arm_cc26xx_Timer_getPeriod__E                           
    0000af3d  ti_sysbios_family_arm_cc26xx_Timer_initDevice__I                          
    1001a469  ti_sysbios_family_arm_cc26xx_Timer_periodicStub__E                        
    1001b769  ti_sysbios_family_arm_cc26xx_Timer_postInit__I                            
    0000ad53  ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E                         
    1001c259  ti_sysbios_family_arm_cc26xx_Timer_setPeriod__E                           
    0000af6d  ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I                        
    00008f59  ti_sysbios_family_arm_cc26xx_Timer_start__E                               
    00000484  ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C                       
    1001b795  ti_sysbios_family_arm_cc26xx_Timer_startup__E                             
    200001ec  ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V           
    1001bb69  ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_startup__E          
    0000c39b  ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E                   
    1001b9d1  ti_sysbios_family_arm_cc26xx_TimestampProvider_get64__E                   
    1001c12f  ti_sysbios_family_arm_cc26xx_TimestampProvider_getFreq__E                 
    00000504  ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C           
    00000488  ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C                          
    0000048c  ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C                        
    1001aed1  ti_sysbios_family_arm_m3_Hwi_Instance_finalize__E                         
    1001a3c9  ti_sysbios_family_arm_m3_Hwi_Instance_init__E                             
    200013e8  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A                  
    200013ec  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A                 
    200013f0  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A                   
    00000506  ti_sysbios_family_arm_m3_Hwi_Module__id__C                                
    200013c8  ti_sysbios_family_arm_m3_Hwi_Module__root__V                              
    1001bb89  ti_sysbios_family_arm_m3_Hwi_Module__startupDone__S                       
    20000144  ti_sysbios_family_arm_m3_Hwi_Module__state__V                             
    1001b1c1  ti_sysbios_family_arm_m3_Hwi_Module_startup__E                            
    00000490  ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C                            
    000002d0  ti_sysbios_family_arm_m3_Hwi_Object__DESC__C                              
    00000170  ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C                            
    00000494  ti_sysbios_family_arm_m3_Hwi_Object__count__C                             
    1001aab1  ti_sysbios_family_arm_m3_Hwi_Object__create__S                            
    1001bba9  ti_sysbios_family_arm_m3_Hwi_Object__delete__S                            
    1001be69  ti_sysbios_family_arm_m3_Hwi_Object__destruct__S                          
    1001b7c1  ti_sysbios_family_arm_m3_Hwi_Object__get__S                               
    00000498  ti_sysbios_family_arm_m3_Hwi_Object__table__C                             
    200013d0  ti_sysbios_family_arm_m3_Hwi_Object__table__V                             
    1001c13d  ti_sysbios_family_arm_m3_Hwi_Params__init__S                              
    0000049c  ti_sysbios_family_arm_m3_Hwi_ccr__C                                       
    1001af29  ti_sysbios_family_arm_m3_Hwi_construct                                    
    1001ab15  ti_sysbios_family_arm_m3_Hwi_create                                       
    1001c25d  ti_sysbios_family_arm_m3_Hwi_delete                                       
    1001c261  ti_sysbios_family_arm_m3_Hwi_destruct                                     
    1001c149  ti_sysbios_family_arm_m3_Hwi_disableFxn__E                                
    1001b299  ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E                          
    1001aa49  ti_sysbios_family_arm_m3_Hwi_dispatchC__I                                 
    200023bc  ti_sysbios_family_arm_m3_Hwi_dispatchTable                                
    1001c89d  ti_sysbios_family_arm_m3_Hwi_dispatch__I                                  
    1001c1fb  ti_sysbios_family_arm_m3_Hwi_doSwiRestore__I                              
    1001c213  ti_sysbios_family_arm_m3_Hwi_doTaskRestore__I                             
    1001c155  ti_sysbios_family_arm_m3_Hwi_enableFxn__E                                 
    1001b2dd  ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E                           
    1001ca01  ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I                             
    000004a0  ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C                            
    1001bbc9  ti_sysbios_family_arm_m3_Hwi_excHandler__I                                
    1001b465  ti_sysbios_family_arm_m3_Hwi_getStackInfo__E                              
    1001a699  ti_sysbios_family_arm_m3_Hwi_initNVIC__E                                  
    1001c9b9  ti_sysbios_family_arm_m3_Hwi_initStacks__E                                
    000004a4  ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C                               
    000004a8  ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C                       
    e000e000  ti_sysbios_family_arm_m3_Hwi_nvic                                         
    1001ca3f  ti_sysbios_family_arm_m3_Hwi_pendSV__I                                    
    1001c065  ti_sysbios_family_arm_m3_Hwi_plug__E                                      
    1001a319  ti_sysbios_family_arm_m3_Hwi_postInit__I                                  
    0000c259  ti_sysbios_family_arm_m3_Hwi_post__E                                      
    000004ac  ti_sysbios_family_arm_m3_Hwi_priGroup__C                                  
    20000000  ti_sysbios_family_arm_m3_Hwi_ramVectors                                   
    00000000  ti_sysbios_family_arm_m3_Hwi_resetVectors                                 
    1001c219  ti_sysbios_family_arm_m3_Hwi_restoreFxn__E                                
    1001ca57  ti_sysbios_family_arm_m3_Hwi_return                                       
    0000c5cf  ti_sysbios_family_arm_m3_Hwi_setFunc__E                                   
    1001be85  ti_sysbios_family_arm_m3_Hwi_setPriority__E                               
    1001c203  ti_sysbios_family_arm_m3_Hwi_startup__E                                   
    1001c00d  ti_sysbios_family_arm_m3_Hwi_switchFromBootStack__E                       
    1001c265  ti_sysbios_family_arm_m3_TaskSupport_Module__startupDone__S               
    1001c96d  ti_sysbios_family_arm_m3_TaskSupport_buildTaskStack                       
    1001c161  ti_sysbios_family_arm_m3_TaskSupport_getStackAlignment__E                 
    1001ca59  ti_sysbios_family_arm_m3_TaskSupport_glue                                 
    000004b0  ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C                    
    1001b49d  ti_sysbios_family_arm_m3_TaskSupport_start__E                             
    1001ca69  ti_sysbios_family_arm_m3_TaskSupport_swap__E                              
    1001ca21  ti_sysbios_family_xxx_Hwi_switchAndRunFunc                                
    1001bbe9  ti_sysbios_gates_GateHwi_Handle__label__S                                 
    1001b463  ti_sysbios_gates_GateHwi_Instance_init__E                                 
    0000021c  ti_sysbios_gates_GateHwi_Module__FXNS__C                                  
    00000508  ti_sysbios_gates_GateHwi_Module__id__C                                    
    200013f4  ti_sysbios_gates_GateHwi_Module__root__V                                  
    000002f0  ti_sysbios_gates_GateHwi_Object__DESC__C                                  
    00000430  ti_sysbios_gates_GateHwi_Object__PARAMS__C                                
    1001ba95  ti_sysbios_gates_GateHwi_Object__create__S                                
    1001bc09  ti_sysbios_gates_GateHwi_Object__delete__S                                
    200013fc  ti_sysbios_gates_GateHwi_Object__table__V                                 
    1001c16d  ti_sysbios_gates_GateHwi_enter__E                                         
    1001c21f  ti_sysbios_gates_GateHwi_leave__E                                         
    1001c269  ti_sysbios_gates_GateHwi_query__E                                         
    1001bc29  ti_sysbios_gates_GateMutex_Handle__label__S                               
    000005cc  ti_sysbios_gates_GateMutex_Instance_State_sem__O                          
    1001c075  ti_sysbios_gates_GateMutex_Instance_finalize__E                           
    1001bea1  ti_sysbios_gates_GateMutex_Instance_init__E                               
    00000240  ti_sysbios_gates_GateMutex_Module__FXNS__C                                
    0000050a  ti_sysbios_gates_GateMutex_Module__id__C                                  
    20001400  ti_sysbios_gates_GateMutex_Module__root__V                                
    00000310  ti_sysbios_gates_GateMutex_Object__DESC__C                                
    00000448  ti_sysbios_gates_GateMutex_Object__PARAMS__C                              
    1001b649  ti_sysbios_gates_GateMutex_Object__create__S                              
    1001bab9  ti_sysbios_gates_GateMutex_Object__delete__S                              
    1001bc49  ti_sysbios_gates_GateMutex_Object__destruct__S                            
    200017b8  ti_sysbios_gates_GateMutex_Object__table__V                               
    1001c179  ti_sysbios_gates_GateMutex_Params__init__S                                
    1001b7ed  ti_sysbios_gates_GateMutex_construct                                      
    1001b679  ti_sysbios_gates_GateMutex_create                                         
    1001c26d  ti_sysbios_gates_GateMutex_delete                                         
    1001c271  ti_sysbios_gates_GateMutex_destruct                                       
    1001b6a9  ti_sysbios_gates_GateMutex_enter__E                                       
    1001bf9d  ti_sysbios_gates_GateMutex_leave__E                                       
    1001c275  ti_sysbios_gates_GateMutex_query__E                                       
    1001c279  ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S                        
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S__mangled__             
    1001c085  ti_sysbios_hal_Hwi_HwiProxy_Object__create__S                             
    1001bba9  ti_sysbios_hal_Hwi_HwiProxy_Object__delete__S                             
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_Object__delete__S__mangled__                  
    1001c13d  ti_sysbios_hal_Hwi_HwiProxy_Params__init__S                               
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_Params__init__S__mangled__                    
    1001be49  ti_sysbios_hal_Hwi_HwiProxy_create                                        
    1001c27d  ti_sysbios_hal_Hwi_HwiProxy_delete                                        
    1001c281  ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E                           
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E__mangled__                
    1001c285  ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E                            
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E__mangled__                 
    1001c289  ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E                               
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E__mangled__                    
    0000c259  ti_sysbios_hal_Hwi_HwiProxy_post__E                                       
    1001c28d  ti_sysbios_hal_Hwi_HwiProxy_startup__E                                    
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_startup__E__mangled__                         
    1001c291  ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E                        
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E__mangled__             
    1001c1f1  ti_sysbios_hal_Hwi_Instance_finalize__E                                   
    1001b9f9  ti_sysbios_hal_Hwi_Instance_init__E                                       
    20001408  ti_sysbios_hal_Hwi_Module__root__V                                        
    1001c021  ti_sysbios_hal_Hwi_Module_startup__E                                      
    00000330  ti_sysbios_hal_Hwi_Object__DESC__C                                        
    000001a0  ti_sysbios_hal_Hwi_Object__PARAMS__C                                      
    1001bc69  ti_sysbios_hal_Hwi_Object__delete__S                                      
    0000c49d  ti_sysbios_hal_Hwi_Params__init__S                                        
    1001ab79  ti_sysbios_hal_Hwi_create                                                 
    1001c295  ti_sysbios_hal_Hwi_delete                                                 
    1001c281  ti_sysbios_hal_Hwi_disableInterrupt__E                                    
    UNDEFED   ti_sysbios_hal_Hwi_disableInterrupt__E                                    
    1001c285  ti_sysbios_hal_Hwi_enableInterrupt__E                                     
    UNDEFED   ti_sysbios_hal_Hwi_enableInterrupt__E                                     
    1001c289  ti_sysbios_hal_Hwi_getStackInfo__E                                        
    UNDEFED   ti_sysbios_hal_Hwi_getStackInfo__E                                        
    1001b819  ti_sysbios_hal_Hwi_initStack                                              
    0000c259  ti_sysbios_hal_Hwi_post__E                                                
    1001c28d  ti_sysbios_hal_Hwi_startup__E                                             
    UNDEFED   ti_sysbios_hal_Hwi_startup__E                                             
    1001c299  ti_sysbios_hal_Hwi_switchFromBootStack__E                                 
    UNDEFED   ti_sysbios_hal_Hwi_switchFromBootStack__E                                 
    000004b4  ti_sysbios_heaps_HeapMem_E_memory__C                                      
    1001bc89  ti_sysbios_heaps_HeapMem_Handle__label__S                                 
    200018e8  ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A                          
    1001b4d5  ti_sysbios_heaps_HeapMem_Instance_init__E                                 
    1001bc29  ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S                
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S__mangled__     
    1001bab9  ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__delete__S               
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__delete__S__mangled__    
    1001c179  ti_sysbios_heaps_HeapMem_Module_GateProxy_Params__init__S                 
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_Params__init__S__mangled__      
    1001c29d  ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E                        
    1001c2a1  ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E                        
    1001c275  ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E                        
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E__mangled__             
    000001cc  ti_sysbios_heaps_HeapMem_Module__FXNS__C                                  
    000004b8  ti_sysbios_heaps_HeapMem_Module__gateObj__C                               
    0000050c  ti_sysbios_heaps_HeapMem_Module__id__C                                    
    20001410  ti_sysbios_heaps_HeapMem_Module__root__V                                  
    00000350  ti_sysbios_heaps_HeapMem_Object__DESC__C                                  
    00000264  ti_sysbios_heaps_HeapMem_Object__PARAMS__C                                
    000004bc  ti_sysbios_heaps_HeapMem_Object__count__C                                 
    1001b845  ti_sysbios_heaps_HeapMem_Object__create__S                                
    1001bca9  ti_sysbios_heaps_HeapMem_Object__delete__S                                
    1001b871  ti_sysbios_heaps_HeapMem_Object__get__S                                   
    000004c0  ti_sysbios_heaps_HeapMem_Object__table__C                                 
    20001418  ti_sysbios_heaps_HeapMem_Object__table__V                                 
    1001a199  ti_sysbios_heaps_HeapMem_alloc__E                                         
    1001a795  ti_sysbios_heaps_HeapMem_free__E                                          
    1001b209  ti_sysbios_heaps_HeapMem_getStats__E                                      
    1001b545  ti_sysbios_heaps_HeapMem_init__I                                          
    1001c2a5  ti_sysbios_heaps_HeapMem_isBlocking__E                                    
    000004c4  ti_sysbios_heaps_HeapMem_reqAlign__C                                      
    1001c105  ti_sysbios_heaps_HeapMem_restore__E                                       
    1001bfcd  ti_sysbios_knl_Clock_Instance_finalize__E                                 
    1001b50d  ti_sysbios_knl_Clock_Instance_init__E                                     
    000005d0  ti_sysbios_knl_Clock_Module_State_clockQ__O                               
    20001430  ti_sysbios_knl_Clock_Module__root__V                                      
    20000178  ti_sysbios_knl_Clock_Module__state__V                                     
    1001bcc9  ti_sysbios_knl_Clock_Module_startup__E                                    
    00000370  ti_sysbios_knl_Clock_Object__DESC__C                                      
    00000288  ti_sysbios_knl_Clock_Object__PARAMS__C                                    
    1001badd  ti_sysbios_knl_Clock_Object__delete__S                                    
    1001bce9  ti_sysbios_knl_Clock_Object__destruct__S                                  
    20001438  ti_sysbios_knl_Clock_Object__table__V                                     
    1001c185  ti_sysbios_knl_Clock_Params__init__S                                      
    1001c2a9  ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S                    
    UNDEFED   ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S__mangled__         
    1001c095  ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E                         
    1001c2ad  ti_sysbios_knl_Clock_TimerProxy_getExpiredTicks__E                        
    1001c0a5  ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E                            
    1001c2b1  ti_sysbios_knl_Clock_TimerProxy_getPeriod__E                              
    1001c0b5  ti_sysbios_knl_Clock_TimerProxy_setNextTick__E                            
    1001b795  ti_sysbios_knl_Clock_TimerProxy_startup__E                                
    UNDEFED   ti_sysbios_knl_Clock_TimerProxy_startup__E__mangled__                     
    1001ba21  ti_sysbios_knl_Clock_addI__E                                              
    1001b579  ti_sysbios_knl_Clock_construct                                            
    1001b3ed  ti_sysbios_knl_Clock_create                                               
    1001c2b5  ti_sysbios_knl_Clock_delete                                               
    1001c2b9  ti_sysbios_knl_Clock_destruct                                             
    0000c141  ti_sysbios_knl_Clock_doTick__I                                            
    0000b33d  ti_sysbios_knl_Clock_getTicksUntilInterrupt__E                            
    1001b6d9  ti_sysbios_knl_Clock_getTicks__E                                          
    1001c191  ti_sysbios_knl_Clock_getTimerHandle__E                                    
    0000c5f9  ti_sysbios_knl_Clock_isActive__E                                          
    1001be67  ti_sysbios_knl_Clock_logTick__E                                           
    1001c2bd  ti_sysbios_knl_Clock_removeI__E                                           
    1001bebd  ti_sysbios_knl_Clock_scheduleNextTick__E                                  
    000004c8  ti_sysbios_knl_Clock_serviceMargin__C                                     
    1001c2c1  ti_sysbios_knl_Clock_setTimeout__E                                        
    1001a719  ti_sysbios_knl_Clock_startI__E                                            
    1001bfe3  ti_sysbios_knl_Clock_start__E                                             
    0000ba09  ti_sysbios_knl_Clock_stop__E                                              
    00000510  ti_sysbios_knl_Clock_tickMode__C                                          
    0000e3c8  ti_sysbios_knl_Clock_tickPeriod__C                                        
    0000e3cc  ti_sysbios_knl_Clock_triggerClock__C                                      
    00008bbb  ti_sysbios_knl_Clock_triggerFunc__I                                       
    1001a80d  ti_sysbios_knl_Clock_walkQueueDynamic__E                                  
    00007b1d  ti_sysbios_knl_Clock_workFuncDynamic__E                                   
    1001a885  ti_sysbios_knl_Clock_workFunc__E                                          
    20001458  ti_sysbios_knl_Event_Module__root__V                                      
    0000e3b4  ti_sysbios_knl_Idle_funcList__A                                           
    00000478  ti_sysbios_knl_Idle_funcList__C                                           
    1001c20b  ti_sysbios_knl_Idle_loop__E                                               
    1001bd09  ti_sysbios_knl_Idle_run__E                                                
    000005d4  ti_sysbios_knl_Mailbox_Instance_State_dataQue__O                          
    000005d8  ti_sysbios_knl_Mailbox_Instance_State_dataSem__O                          
    000005dc  ti_sysbios_knl_Mailbox_Instance_State_freeQue__O                          
    000005e0  ti_sysbios_knl_Mailbox_Instance_State_freeSem__O                          
    1001a9dd  ti_sysbios_knl_Mailbox_Instance_finalize__E                               
    1001a001  ti_sysbios_knl_Mailbox_Instance_init__E                                   
    20001460  ti_sysbios_knl_Mailbox_Module__root__V                                    
    1001b251  ti_sysbios_knl_Mailbox_Module_startup__E                                  
    00000390  ti_sysbios_knl_Mailbox_Object__DESC__C                                    
    0000013c  ti_sysbios_knl_Mailbox_Object__PARAMS__C                                  
    000004cc  ti_sysbios_knl_Mailbox_Object__count__C                                   
    1001bd29  ti_sysbios_knl_Mailbox_Object__delete__S                                  
    1001bed9  ti_sysbios_knl_Mailbox_Object__destruct__S                                
    1001b89d  ti_sysbios_knl_Mailbox_Object__get__S                                     
    000004d0  ti_sysbios_knl_Mailbox_Object__table__C                                   
    1001c19d  ti_sysbios_knl_Mailbox_Params__init__S                                    
    1001af81  ti_sysbios_knl_Mailbox_construct                                          
    1001abdd  ti_sysbios_knl_Mailbox_create                                             
    1001c2c5  ti_sysbios_knl_Mailbox_delete                                             
    1001c2c9  ti_sysbios_knl_Mailbox_destruct                                           
    1001a8fd  ti_sysbios_knl_Mailbox_pend__E                                            
    1001b8c9  ti_sysbios_knl_Mailbox_postInit__I                                        
    1001a591  ti_sysbios_knl_Mailbox_post__E                                            
    1001c22b  ti_sysbios_knl_Queue_Instance_init__E                                     
    20001468  ti_sysbios_knl_Queue_Module__root__V                                      
    000003b0  ti_sysbios_knl_Queue_Object__DESC__C                                      
    00000460  ti_sysbios_knl_Queue_Object__PARAMS__C                                    
    000004d4  ti_sysbios_knl_Queue_Object__count__C                                     
    1001bd49  ti_sysbios_knl_Queue_Object__delete__S                                    
    1001bef5  ti_sysbios_knl_Queue_Object__destruct__S                                  
    1001bd69  ti_sysbios_knl_Queue_Object__get__S                                       
    000004d8  ti_sysbios_knl_Queue_Object__table__C                                     
    1001b8f5  ti_sysbios_knl_Queue_construct                                            
    1001b921  ti_sysbios_knl_Queue_create                                               
    1001c2cd  ti_sysbios_knl_Queue_delete                                               
    1001c1a9  ti_sysbios_knl_Queue_dequeue__E                                           
    1001c2d1  ti_sysbios_knl_Queue_destruct                                             
    1001c231  ti_sysbios_knl_Queue_elemClear__E                                         
    1001c113  ti_sysbios_knl_Queue_empty__E                                             
    1001c1b5  ti_sysbios_knl_Queue_enqueue__E                                           
    1001bf11  ti_sysbios_knl_Queue_get__E                                               
    1001c2d5  ti_sysbios_knl_Queue_head__E                                              
    1001c2d9  ti_sysbios_knl_Queue_next__E                                              
    1001bf2d  ti_sysbios_knl_Queue_put__E                                               
    1001c121  ti_sysbios_knl_Queue_remove__E                                            
    000005e4  ti_sysbios_knl_Semaphore_Instance_State_pendQ__O                          
    1001c0c5  ti_sysbios_knl_Semaphore_Instance_finalize__E                             
    1001bb01  ti_sysbios_knl_Semaphore_Instance_init__E                                 
    20001470  ti_sysbios_knl_Semaphore_Module__root__V                                  
    000003d0  ti_sysbios_knl_Semaphore_Object__DESC__C                                  
    000002ac  ti_sysbios_knl_Semaphore_Object__PARAMS__C                                
    1001bb25  ti_sysbios_knl_Semaphore_Object__delete__S                                
    1001bd89  ti_sysbios_knl_Semaphore_Object__destruct__S                              
    1001c1c1  ti_sysbios_knl_Semaphore_Params__init__S                                  
    1001b709  ti_sysbios_knl_Semaphore_construct                                        
    1001b5ad  ti_sysbios_knl_Semaphore_create                                           
    1001c2dd  ti_sysbios_knl_Semaphore_delete                                           
    1001c2e1  ti_sysbios_knl_Semaphore_destruct                                         
    1001b94d  ti_sysbios_knl_Semaphore_pendTimeout__I                                   
    1001a0cd  ti_sysbios_knl_Semaphore_pend__E                                          
    1001ac41  ti_sysbios_knl_Semaphore_post__E                                          
    1001bf9b  ti_sysbios_knl_Swi_Instance_finalize__E                                   
    1001aca5  ti_sysbios_knl_Swi_Instance_init__E                                       
    200017f0  ti_sysbios_knl_Swi_Module_State_0_readyQ__A                               
    20001478  ti_sysbios_knl_Swi_Module__root__V                                        
    200001c8  ti_sysbios_knl_Swi_Module__state__V                                       
    1001c237  ti_sysbios_knl_Swi_Module_startup__E                                      
    000003f0  ti_sysbios_knl_Swi_Object__DESC__C                                        
    000001f4  ti_sysbios_knl_Swi_Object__PARAMS__C                                      
    000004dc  ti_sysbios_knl_Swi_Object__count__C                                       
    1001bda9  ti_sysbios_knl_Swi_Object__delete__S                                      
    1001bf49  ti_sysbios_knl_Swi_Object__destruct__S                                    
    1001b979  ti_sysbios_knl_Swi_Object__get__S                                         
    000004e0  ti_sysbios_knl_Swi_Object__table__C                                       
    20001820  ti_sysbios_knl_Swi_Object__table__V                                       
    1001c1cd  ti_sysbios_knl_Swi_Params__init__S                                        
    1001b085  ti_sysbios_knl_Swi_construct                                              
    1001ad05  ti_sysbios_knl_Swi_create                                                 
    1001c2e5  ti_sysbios_knl_Swi_delete                                                 
    1001c2e9  ti_sysbios_knl_Swi_destruct                                               
    1001c0d5  ti_sysbios_knl_Swi_disable__E                                             
    1001c0e5  ti_sysbios_knl_Swi_enabled__E                                             
    0000c4b1  ti_sysbios_knl_Swi_getTrigger__E                                          
    000004e4  ti_sysbios_knl_Swi_numPriorities__C                                       
    0000c02d  ti_sysbios_knl_Swi_or__E                                                  
    1001c2ed  ti_sysbios_knl_Swi_postInit__I                                            
    1001b321  ti_sysbios_knl_Swi_post__E                                                
    1001ad61  ti_sysbios_knl_Swi_restoreHwi__E                                          
    1001b5e1  ti_sysbios_knl_Swi_restore__E                                             
    1001b0d5  ti_sysbios_knl_Swi_runLoop__I                                             
    1001afd9  ti_sysbios_knl_Swi_run__I                                                 
    1001b031  ti_sysbios_knl_Swi_schedule__I                                            
    1001c23d  ti_sysbios_knl_Swi_startup__E                                             
    20001f68  ti_sysbios_knl_Task_Instance_State_0_stack__A                             
    1001a4fd  ti_sysbios_knl_Task_Instance_finalize__E                                  
    1001a25d  ti_sysbios_knl_Task_Instance_init__E                                      
    20001488  ti_sysbios_knl_Task_Module_State_0_idleTask__A                            
    20001850  ti_sysbios_knl_Task_Module_State_0_readyQ__A                              
    000005e8  ti_sysbios_knl_Task_Module_State_inactiveQ__O                             
    20001480  ti_sysbios_knl_Task_Module__root__V                                       
    20000100  ti_sysbios_knl_Task_Module__state__V                                      
    1001adbd  ti_sysbios_knl_Task_Module_startup__E                                     
    00000410  ti_sysbios_knl_Task_Object__DESC__C                                       
    00000100  ti_sysbios_knl_Task_Object__PARAMS__C                                     
    000004e8  ti_sysbios_knl_Task_Object__count__C                                      
    1001bdc9  ti_sysbios_knl_Task_Object__delete__S                                     
    1001bf65  ti_sysbios_knl_Task_Object__destruct__S                                   
    1001bde9  ti_sysbios_knl_Task_Object__get__S                                        
    000004ec  ti_sysbios_knl_Task_Object__table__C                                      
    20001724  ti_sysbios_knl_Task_Object__table__V                                      
    1001c1d9  ti_sysbios_knl_Task_Params__init__S                                       
    1001c2f1  ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S                   
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S__mangled__        
    1001c2f5  ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E                     
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E__mangled__          
    1001c2f9  ti_sysbios_knl_Task_SupportProxy_start__E                                 
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_start__E__mangled__                      
    1001c2fd  ti_sysbios_knl_Task_SupportProxy_swap__E                                  
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_swap__E__mangled__                       
    000004f0  ti_sysbios_knl_Task_allBlockedFunc__C                                     
    1001b365  ti_sysbios_knl_Task_allBlockedFunction__I                                 
    1001b615  ti_sysbios_knl_Task_blockI__E                                             
    1001b125  ti_sysbios_knl_Task_construct                                             
    1001ae19  ti_sysbios_knl_Task_create                                                
    000004f4  ti_sysbios_knl_Task_defaultStackHeap__C                                   
    000004f8  ti_sysbios_knl_Task_defaultStackSize__C                                   
    1001c301  ti_sysbios_knl_Task_delete                                                
    1001c305  ti_sysbios_knl_Task_destruct                                              
    1001c0f5  ti_sysbios_knl_Task_disable__E                                            
    1001c243  ti_sysbios_knl_Task_enable__E                                             
    1001be09  ti_sysbios_knl_Task_enter__I                                              
    1001b429  ti_sysbios_knl_Task_exit__E                                               
    0000050e  ti_sysbios_knl_Task_initStackFlag__C                                      
    000004fc  ti_sysbios_knl_Task_numConstructedTasks__C                                
    1001a615  ti_sysbios_knl_Task_postInit__I                                           
    1001b739  ti_sysbios_knl_Task_processVitalTaskFlag__I                               
    1001be29  ti_sysbios_knl_Task_restoreHwi__E                                         
    1001ba49  ti_sysbios_knl_Task_restore__E                                            
    1001b175  ti_sysbios_knl_Task_schedule__I                                           
    1001c1e5  ti_sysbios_knl_Task_self__E                                               
    1001bf81  ti_sysbios_knl_Task_sleepTimeout__I                                       
    1001a96d  ti_sysbios_knl_Task_sleep__E                                              
    1001ae75  ti_sysbios_knl_Task_startCore__E                                          
    1001c309  ti_sysbios_knl_Task_startup__E                                            
    1001ca71  ti_sysbios_knl_Task_swapReturn                                            
    1001b9a5  ti_sysbios_knl_Task_unblockI__E                                           
    1001bfb5  ti_sysbios_knl_Task_unblock__E                                            
    1001b3a9  ti_sysbios_knl_Task_yield__E                                              
    00000590  ti_sysbios_rom_ROM_AONRTCChannelEnable                                    
    00000594  ti_sysbios_rom_ROM_AONRTCCompareValueSet                                  
    00000598  ti_sysbios_rom_ROM_AONRTCCurrentCompareValueGet                           
    0000059c  ti_sysbios_rom_ROM_AONRTCEventClear                                       
    000005a0  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E       
    000005a4  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E   
    000005a8  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E      
    000005ac  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_initDevice__I       
    000005b0  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E      
    000005b4  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I     
    000005b8  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_start__E            
    000005bc  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E
    000005c0  ti_sysbios_rom_ROM_xdc_runtime_Startup_getState__I                        
    000005c4  ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_abort__E               
    000005c8  ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_exit__E                
    00009713  ti_sysbios_rom_cortexm_cc26xx_CC26xx_badRomRevision__E                    
    0000c045  ti_sysbios_rom_cortexm_cc26xx_CC26xx_checkRevision__E                     
    1001ca9b  ti_sysbios_rom_cortexm_cc26xx_CC26xx_getRevision__E                       
    000078ad  trimDevice                                                                
    0000e238  txPowerTable                                                              
    0000e3bc  txPwrTbl                                                                  
    0000e2d8  uartCC26XXHWAttrs                                                         
    200022a8  uartCC26XXObjects                                                         
    200002c0  uartLog_evBuf                                                             
    2000020a  uartLog_evBufIsEmpty                                                      
    2000020c  uartLog_evtNum                                                            
    00008dc5  uartLog_flush                                                             
    20000209  uartLog_head                                                              
    20000214  uartLog_outBuf                                                            
    000083b1  uartLog_outputFxn                                                         
    20000208  uartLog_tail                                                              
    20001880  user0Cfg                                                                  
    0000e1e0  validRangeUUID                                                            
    00000524  xdc_runtime_Assert_E_assertFailed__C                                      
    1001c5a9  xdc_runtime_Assert_raise__I                                               
    1001c6ed  xdc_runtime_Core_assignLabel__I                                           
    1001c5f1  xdc_runtime_Core_assignParams__I                                          
    1001c639  xdc_runtime_Core_constructObject__I                                       
    1001c405  xdc_runtime_Core_createObject__I                                          
    1001c4f9  xdc_runtime_Core_deleteObject__I                                          
    1001c7a1  xdc_runtime_Core_destructObject__I                                        
    00000528  xdc_runtime_Error_E_memory__C                                             
    1001c7b9  xdc_runtime_Error_check__E                                                
    1001c841  xdc_runtime_Error_init__E                                                 
    0000052c  xdc_runtime_Error_policyFxn__C                                            
    1001c487  xdc_runtime_Error_policySpin__E                                           
    0000058c  xdc_runtime_Error_policy__C                                               
    1001c769  xdc_runtime_Error_raiseX__E                                               
    1001c885  xdc_runtime_Gate_enterSystem__E                                           
    1001c879  xdc_runtime_Gate_leaveSystem__E                                           
    00000530  xdc_runtime_IGateProvider_Interface__BASE__C                              
    00000534  xdc_runtime_IHeap_Interface__BASE__C                                      
    0000e3d0  xdc_runtime_ILogger_Interface__BASE__C                                    
    00000538  xdc_runtime_IModule_Interface__BASE__C                                    
    0000e3d4  xdc_runtime_Log_L_error__C                                                
    0000e3d8  xdc_runtime_Log_L_info__C                                                 
    0000e3dc  xdc_runtime_Log_L_warning__C                                              
    0000bc85  xdc_runtime_LoggerCallback_Instance_init__E                               
    0000e15c  xdc_runtime_LoggerCallback_Module__FXNS__C                                
    2000148c  xdc_runtime_LoggerCallback_Module__root__V                                
    0000a3d9  xdc_runtime_LoggerCallback_Module_startup__E                              
    0000e284  xdc_runtime_LoggerCallback_Object__DESC__C                                
    0000e2a4  xdc_runtime_LoggerCallback_Object__PARAMS__C                              
    0000e3e0  xdc_runtime_LoggerCallback_Object__count__C                               
    0000af9d  xdc_runtime_LoggerCallback_Object__create__S                              
    0000c279  xdc_runtime_LoggerCallback_Object__get__S                                 
    20001494  xdc_runtime_LoggerCallback_Object__table__V                               
    0000e3e4  xdc_runtime_LoggerCallback_createInstFxn__C                               
    0000c5fd  xdc_runtime_LoggerCallback_defaultCreate                                  
    0000c4fd  xdc_runtime_LoggerCallback_disable__E                                     
    0000c507  xdc_runtime_LoggerCallback_enable__E                                      
    0000e3e8  xdc_runtime_LoggerCallback_outputFxn__C                                   
    0000b5f5  xdc_runtime_LoggerCallback_write0__E                                      
    0000b61d  xdc_runtime_LoggerCallback_write1__E                                      
    0000b369  xdc_runtime_LoggerCallback_write2__E                                      
    0000ac25  xdc_runtime_LoggerCallback_write4__E                                      
    0000a18d  xdc_runtime_LoggerCallback_write8__E                                      
    UNDEFED   xdc_runtime_Main_Module_GateProxy_Handle__label__S                        
    UNDEFED   xdc_runtime_Main_Module_GateProxy_Object__delete__S                       
    UNDEFED   xdc_runtime_Main_Module_GateProxy_query__E                                
    0000053c  xdc_runtime_Main_Module__diagsEnabled__C                                  
    00000540  xdc_runtime_Main_Module__diagsIncluded__C                                 
    00000544  xdc_runtime_Main_Module__diagsMask__C                                     
    00000584  xdc_runtime_Main_Module__id__C                                            
    0000e392  xdc_runtime_Main_Module__loggerDefined__C                                 
    0000e3ec  xdc_runtime_Main_Module__loggerFxn4__C                                    
    0000e3f0  xdc_runtime_Main_Module__loggerFxn8__C                                    
    0000e3f4  xdc_runtime_Main_Module__loggerObj__C                                     
    1001bc89  xdc_runtime_Memory_HeapProxy_Handle__label__S                             
    UNDEFED   xdc_runtime_Memory_HeapProxy_Handle__label__S__mangled__                  
    1001bca9  xdc_runtime_Memory_HeapProxy_Object__delete__S                            
    UNDEFED   xdc_runtime_Memory_HeapProxy_Object__delete__S__mangled__                 
    1001c889  xdc_runtime_Memory_HeapProxy_alloc__E                                     
    1001c88d  xdc_runtime_Memory_HeapProxy_free__E                                      
    00000586  xdc_runtime_Memory_Module__id__C                                          
    20000200  xdc_runtime_Memory_Module__state__V                                       
    1001c489  xdc_runtime_Memory_alloc__E                                               
    1001c84d  xdc_runtime_Memory_calloc__E                                              
    00000548  xdc_runtime_Memory_defaultHeapInstance__C                                 
    1001c801  xdc_runtime_Memory_free__E                                                
    1001c859  xdc_runtime_Memory_getMaxDefaultTypeAlign__E                              
    1001c785  xdc_runtime_Memory_valloc__E                                              
    200018cc  xdc_runtime_Registry_Module__state__V                                     
    0000ba29  xdc_runtime_Registry_findById__E                                          
    200001f0  xdc_runtime_Startup_Module__state__V                                      
    00000001  xdc_runtime_Startup__EXECFXN__C                                           
    00000001  xdc_runtime_Startup__RESETFXN__C                                          
    0000054c  xdc_runtime_Startup_execImpl__C                                           
    1001c559  xdc_runtime_Startup_exec__E                                               
    0000c16f  xdc_runtime_Startup_exec__I                                               
    0000e3a0  xdc_runtime_Startup_firstFxns__A                                          
    00000514  xdc_runtime_Startup_firstFxns__C                                          
    0000935d  xdc_runtime_Startup_getState__I                                           
    0000051c  xdc_runtime_Startup_lastFxns__C                                           
    00000550  xdc_runtime_Startup_maxPasses__C                                          
    0000c4bd  xdc_runtime_Startup_reset__I                                              
    0000c4c9  xdc_runtime_Startup_rtsDone__E                                            
    0000e32c  xdc_runtime_Startup_sfxnRts__A                                            
    00000554  xdc_runtime_Startup_sfxnRts__C                                            
    0000e210  xdc_runtime_Startup_sfxnTab__A                                            
    00000558  xdc_runtime_Startup_sfxnTab__C                                            
    0000055c  xdc_runtime_Startup_startModsFxn__C                                       
    1001c30d  xdc_runtime_Startup_startMods__I                                          
    00000560  xdc_runtime_SysCallback_abortFxn__C                                       
    1001c811  xdc_runtime_SysCallback_abort__E                                          
    00009d23  xdc_runtime_SysCallback_defaultAbort                                      
    0000a257  xdc_runtime_SysCallback_defaultExit                                       
    0000a457  xdc_runtime_SysCallback_defaultPutch                                      
    0000c601  xdc_runtime_SysCallback_defaultReady                                      
    00000564  xdc_runtime_SysCallback_exitFxn__C                                        
    1001c821  xdc_runtime_SysCallback_exit__E                                           
    0000e3f8  xdc_runtime_SysCallback_putchFxn__C                                       
    0000c289  xdc_runtime_SysCallback_putch__E                                          
    0000e3fc  xdc_runtime_SysCallback_readyFxn__C                                       
    0000c299  xdc_runtime_SysCallback_ready__E                                          
    1001bbe9  xdc_runtime_System_Module_GateProxy_Handle__label__S                      
    UNDEFED   xdc_runtime_System_Module_GateProxy_Handle__label__S__mangled__           
    1001bc09  xdc_runtime_System_Module_GateProxy_Object__delete__S                     
    UNDEFED   xdc_runtime_System_Module_GateProxy_Object__delete__S__mangled__          
    1001c891  xdc_runtime_System_Module_GateProxy_enter__E                              
    1001c895  xdc_runtime_System_Module_GateProxy_leave__E                              
    1001c269  xdc_runtime_System_Module_GateProxy_query__E                              
    UNDEFED   xdc_runtime_System_Module_GateProxy_query__E__mangled__                   
    200001f8  xdc_runtime_System_Module__state__V                                       
    1001c87f  xdc_runtime_System_Module_startup__E                                      
    UNDEFED   xdc_runtime_System_SupportProxy_abort__E                                  
    UNDEFED   xdc_runtime_System_SupportProxy_exit__E                                   
    0000c289  xdc_runtime_System_SupportProxy_putch__E                                  
    0000c299  xdc_runtime_System_SupportProxy_ready__E                                  
    00000568  xdc_runtime_System_abortFxn__C                                            
    1001c899  xdc_runtime_System_abortSpin__E                                           
    0000a109  xdc_runtime_System_abortStd__E                                            
    1001c749  xdc_runtime_System_abort__E                                               
    1001c681  xdc_runtime_System_atexit__E                                              
    00001635  xdc_runtime_System_doPrint__I                                             
    0000056c  xdc_runtime_System_exitFxn__C                                             
    1001c89b  xdc_runtime_System_exitSpin__E                                            
    0000a111  xdc_runtime_System_exitStd__E                                             
    1001c7d1  xdc_runtime_System_exit__E                                                
    0000e400  xdc_runtime_System_extendFxn__C                                           
    0000899d  xdc_runtime_System_formatNum__I                                           
    00000570  xdc_runtime_System_maxAtexitHandlers__C                                   
    0000647d  xdc_runtime_System_printfExtend__I                                        
    1001c6b9  xdc_runtime_System_processAtExit__E                                       
    0000b413  xdc_runtime_System_putchar__I                                             
    0000bd09  xdc_runtime_System_snprintf__E                                            
    0000c605  xdc_runtime_System_snprintf_va__F                                         
    0000c2a9  xdc_runtime_System_vsnprintf__E                                           
    00000588  xdc_runtime_Text_charCnt__C                                               
    0000c770  xdc_runtime_Text_charTab__A                                               
    00000574  xdc_runtime_Text_charTab__C                                               
    1001c71d  xdc_runtime_Text_cordText__E                                              
    0000058a  xdc_runtime_Text_isLoaded__C                                              
    00000578  xdc_runtime_Text_nameEmpty__C                                             
    0000057c  xdc_runtime_Text_nameStatic__C                                            
    00000580  xdc_runtime_Text_nameUnknown__C                                           
    0000e382  xdc_runtime_Text_nodeTab__A                                               
    0000e404  xdc_runtime_Text_nodeTab__C                                               
    0000afd5  xdc_runtime_Text_printVisFxn__I                                           
    000093b9  xdc_runtime_Text_putLab__E                                                
    00007cdd  xdc_runtime_Text_putMod__E                                                
    000079e9  xdc_runtime_Text_putSite__E                                               
    0000e3c2  xdc_runtime_Text_registryModsLastId__C                                    
    1001c7e9  xdc_runtime_Text_ropeText__E                                              
    0000e40c  xdc_runtime_Text_unnamedModsLastId__C                                     
    00009c8d  xdc_runtime_Text_visitRope2__I                                            
    0000e408  xdc_runtime_Text_visitRopeFxn__C                                          
    0000c511  xdc_runtime_Text_visitRope__I                                             
    0000a1d1  xdc_runtime_Text_xprintf__I                                               
    1001c831  xdc_runtime_Timestamp_SupportProxy_get32__E                               
    0000c39b  xdc_runtime_Timestamp_SupportProxy_get32__E__mangled__                    
    1001b9d1  xdc_runtime_Timestamp_SupportProxy_get64__E                               
    UNDEFED   xdc_runtime_Timestamp_SupportProxy_get64__E__mangled__                    
    1001c12f  xdc_runtime_Timestamp_SupportProxy_getFreq__E                             
    UNDEFED   xdc_runtime_Timestamp_SupportProxy_getFreq__E__mangled__                  
    1001c831  xdc_runtime_Timestamp_get32__E                                            
    UNDEFED   xdc_runtime_Timestamp_get32__E                                            
    1001b9d1  xdc_runtime_Timestamp_get64__E                                            
    UNDEFED   xdc_runtime_Timestamp_get64__E                                            
    1001c12f  xdc_runtime_Timestamp_getFreq__E                                          
    UNDEFED   xdc_runtime_Timestamp_getFreq__E                                          
    10015d19  zADD                                                                      
    10015eb5  zADD32                                                                    
    10015de9  zMACC32                                                                   
    10015f0d  zMULT32                                                                   
    10015bcd  zSET                                                                      
    10015d5d  zSUB                                                                      
    10015e69  zSUB32                                                                    
    
    
    GLOBAL SYMBOLS: SORTED BY Symbol Address 
    
    address   name                                                                      
    -------   ----                                                                      
    00000000  __ASM__                                                                   
    00000000  __TI_static_base__                                                        
    00000000  ti_sysbios_family_arm_m3_Hwi_resetVectors                                 
    00000001  xdc_runtime_Startup__EXECFXN__C                                           
    00000001  xdc_runtime_Startup__RESETFXN__C                                          
    0000003d  ButtonService_RegisterAppCBs                                              
    0000007f  __ISA__                                                                   
    00000091  __PLAT__                                                                  
    000000b8  __TARG__                                                                  
    000000dd  __TRDR__                                                                  
    00000100  ti_sysbios_knl_Task_Object__PARAMS__C                                     
    0000013c  ti_sysbios_knl_Mailbox_Object__PARAMS__C                                  
    00000170  ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C                            
    000001a0  ti_sysbios_hal_Hwi_Object__PARAMS__C                                      
    000001cc  ti_sysbios_heaps_HeapMem_Module__FXNS__C                                  
    000001f4  ti_sysbios_knl_Swi_Object__PARAMS__C                                      
    0000021c  ti_sysbios_gates_GateHwi_Module__FXNS__C                                  
    00000240  ti_sysbios_gates_GateMutex_Module__FXNS__C                                
    00000264  ti_sysbios_heaps_HeapMem_Object__PARAMS__C                                
    00000288  ti_sysbios_knl_Clock_Object__PARAMS__C                                    
    000002ac  ti_sysbios_knl_Semaphore_Object__PARAMS__C                                
    000002d0  ti_sysbios_family_arm_m3_Hwi_Object__DESC__C                              
    000002f0  ti_sysbios_gates_GateHwi_Object__DESC__C                                  
    00000310  ti_sysbios_gates_GateMutex_Object__DESC__C                                
    00000330  ti_sysbios_hal_Hwi_Object__DESC__C                                        
    00000350  ti_sysbios_heaps_HeapMem_Object__DESC__C                                  
    00000370  ti_sysbios_knl_Clock_Object__DESC__C                                      
    00000390  ti_sysbios_knl_Mailbox_Object__DESC__C                                    
    000003b0  ti_sysbios_knl_Queue_Object__DESC__C                                      
    000003d0  ti_sysbios_knl_Semaphore_Object__DESC__C                                  
    000003f0  ti_sysbios_knl_Swi_Object__DESC__C                                        
    00000400  __STACK_SIZE                                                              
    00000410  ti_sysbios_knl_Task_Object__DESC__C                                       
    00000430  ti_sysbios_gates_GateHwi_Object__PARAMS__C                                
    00000448  ti_sysbios_gates_GateMutex_Object__PARAMS__C                              
    00000460  ti_sysbios_knl_Queue_Object__PARAMS__C                                    
    00000478  ti_sysbios_knl_Idle_funcList__C                                           
    00000481  GATTServApp_AddService                                                    
    00000484  ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C                       
    00000488  ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C                          
    0000048c  ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C                        
    00000490  ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C                            
    00000494  ti_sysbios_family_arm_m3_Hwi_Object__count__C                             
    00000498  ti_sysbios_family_arm_m3_Hwi_Object__table__C                             
    0000049c  ti_sysbios_family_arm_m3_Hwi_ccr__C                                       
    000004a0  ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C                            
    000004a4  ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C                               
    000004a8  ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C                       
    000004ac  ti_sysbios_family_arm_m3_Hwi_priGroup__C                                  
    000004b0  ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C                    
    000004b4  ti_sysbios_heaps_HeapMem_E_memory__C                                      
    000004b8  ti_sysbios_heaps_HeapMem_Module__gateObj__C                               
    000004bc  ti_sysbios_heaps_HeapMem_Object__count__C                                 
    000004c0  ti_sysbios_heaps_HeapMem_Object__table__C                                 
    000004c4  ti_sysbios_heaps_HeapMem_reqAlign__C                                      
    000004c8  ti_sysbios_knl_Clock_serviceMargin__C                                     
    000004cc  ti_sysbios_knl_Mailbox_Object__count__C                                   
    000004d0  ti_sysbios_knl_Mailbox_Object__table__C                                   
    000004d4  ti_sysbios_knl_Queue_Object__count__C                                     
    000004d8  ti_sysbios_knl_Queue_Object__table__C                                     
    000004dc  ti_sysbios_knl_Swi_Object__count__C                                       
    000004e0  ti_sysbios_knl_Swi_Object__table__C                                       
    000004e4  ti_sysbios_knl_Swi_numPriorities__C                                       
    000004e8  ti_sysbios_knl_Task_Object__count__C                                      
    000004ec  ti_sysbios_knl_Task_Object__table__C                                      
    000004f0  ti_sysbios_knl_Task_allBlockedFunc__C                                     
    000004f4  ti_sysbios_knl_Task_defaultStackHeap__C                                   
    000004f8  ti_sysbios_knl_Task_defaultStackSize__C                                   
    000004fc  ti_sysbios_knl_Task_numConstructedTasks__C                                
    00000501  DefaultAssertCback                                                        
    00000502  ti_sysbios_family_arm_cc26xx_Timer_Module__id__C                          
    00000504  ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C           
    00000506  ti_sysbios_family_arm_m3_Hwi_Module__id__C                                
    00000508  ti_sysbios_gates_GateHwi_Module__id__C                                    
    0000050a  ti_sysbios_gates_GateMutex_Module__id__C                                  
    0000050c  ti_sysbios_heaps_HeapMem_Module__id__C                                    
    0000050e  ti_sysbios_knl_Task_initStackFlag__C                                      
    00000510  ti_sysbios_knl_Clock_tickMode__C                                          
    00000514  xdc_runtime_Startup_firstFxns__C                                          
    0000051c  xdc_runtime_Startup_lastFxns__C                                           
    00000524  xdc_runtime_Assert_E_assertFailed__C                                      
    00000528  xdc_runtime_Error_E_memory__C                                             
    0000052c  xdc_runtime_Error_policyFxn__C                                            
    00000530  xdc_runtime_IGateProvider_Interface__BASE__C                              
    00000534  xdc_runtime_IHeap_Interface__BASE__C                                      
    00000538  xdc_runtime_IModule_Interface__BASE__C                                    
    0000053c  xdc_runtime_Main_Module__diagsEnabled__C                                  
    00000540  xdc_runtime_Main_Module__diagsIncluded__C                                 
    00000544  xdc_runtime_Main_Module__diagsMask__C                                     
    00000548  xdc_runtime_Memory_defaultHeapInstance__C                                 
    0000054c  xdc_runtime_Startup_execImpl__C                                           
    00000550  xdc_runtime_Startup_maxPasses__C                                          
    00000554  xdc_runtime_Startup_sfxnRts__C                                            
    00000558  xdc_runtime_Startup_sfxnTab__C                                            
    0000055c  xdc_runtime_Startup_startModsFxn__C                                       
    00000560  xdc_runtime_SysCallback_abortFxn__C                                       
    00000564  xdc_runtime_SysCallback_exitFxn__C                                        
    00000568  xdc_runtime_System_abortFxn__C                                            
    0000056c  xdc_runtime_System_exitFxn__C                                             
    00000570  xdc_runtime_System_maxAtexitHandlers__C                                   
    00000574  xdc_runtime_Text_charTab__C                                               
    00000578  xdc_runtime_Text_nameEmpty__C                                             
    0000057c  xdc_runtime_Text_nameStatic__C                                            
    00000580  xdc_runtime_Text_nameUnknown__C                                           
    00000584  xdc_runtime_Main_Module__id__C                                            
    00000586  xdc_runtime_Memory_Module__id__C                                          
    00000588  xdc_runtime_Text_charCnt__C                                               
    0000058a  xdc_runtime_Text_isLoaded__C                                              
    0000058c  xdc_runtime_Error_policy__C                                               
    00000590  ti_sysbios_rom_ROM_AONRTCChannelEnable                                    
    00000594  ti_sysbios_rom_ROM_AONRTCCompareValueSet                                  
    00000598  ti_sysbios_rom_ROM_AONRTCCurrentCompareValueGet                           
    0000059c  ti_sysbios_rom_ROM_AONRTCEventClear                                       
    000005a0  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E       
    000005a4  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E   
    000005a8  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E      
    000005ac  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_initDevice__I       
    000005b0  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E      
    000005b4  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I     
    000005b8  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_start__E            
    000005bc  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E
    000005c0  ti_sysbios_rom_ROM_xdc_runtime_Startup_getState__I                        
    000005c4  ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_abort__E               
    000005c8  ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_exit__E                
    000005cc  ti_sysbios_gates_GateMutex_Instance_State_sem__O                          
    000005d0  ti_sysbios_knl_Clock_Module_State_clockQ__O                               
    000005d4  ti_sysbios_knl_Mailbox_Instance_State_dataQue__O                          
    000005d8  ti_sysbios_knl_Mailbox_Instance_State_dataSem__O                          
    000005dc  ti_sysbios_knl_Mailbox_Instance_State_freeQue__O                          
    000005e0  ti_sysbios_knl_Mailbox_Instance_State_freeSem__O                          
    000005e4  ti_sysbios_knl_Semaphore_Instance_State_pendQ__O                          
    000005e8  ti_sysbios_knl_Task_Module_State_inactiveQ__O                             
    000012f1  DataService_SetParameter                                                  
    00001635  xdc_runtime_System_doPrint__I                                             
    0000196d  ButtonService_SetParameter                                                
    00002841  conversion_mt8442_ext_hex                                                 
    000031a5  GAPRole_SetParameter                                                      
    00003a8d  Power_sleep                                                               
    00003cb5  LedService_SetParameter                                                   
    00003ed1  SysCtrlSetRechargeBeforePowerDown                                         
    000040d5  RF_cancelCmd                                                              
    000042d9  __aeabi_uldivmod                                                          
    000044cd  PIN_init                                                                  
    000046ad  RF_postCmd                                                                
    00004dcd  UARTCC26XX_open                                                           
    00004f5d  conversion_mt8442_hex                                                     
    000050e3  NOROM_RFCRTrim                                                            
    000050e5  PowerCC26XX_doCalibrate                                                   
    00005a2d  GAPRole_GetParameter                                                      
    00005c69  Power_init                                                                
    00005f99  UARTCC26XX_write                                                          
    00006191  __aeabi_dmul                                                              
    00006385  RF_close                                                                  
    0000647d  xdc_runtime_System_printfExtend__I                                        
    00006845  UARTCC26XX_hwiIntFxn                                                      
    00006931  ButtonService_AddService                                                  
    00006ae9  Power_releaseDependency                                                   
    00006bbd  Power_setDependency                                                       
    00006c8d  DataService_AddService                                                    
    00006ee1  PowerCC26XX_standbyPolicy                                                 
    00006f9d  RF_open                                                                   
    00007059  RF_pendCmd                                                                
    00007115  UARTCC26XX_read                                                           
    000073f9  LedService_RegisterAppCBs                                                 
    000074ad  DataService_RegisterAppCBs                                                
    0000760d  LedService_AddService                                                     
    00007765  RF_ratCapture                                                             
    0000780d  __TI_auto_init                                                            
    000078ad  ti_sysbios_family_arm_cc26xx_Boot_trimDevice                              
    000078ad  trimDevice                                                                
    0000794d  __aeabi_memcpy                                                            
    0000794d  __aeabi_memcpy4                                                           
    0000794d  __aeabi_memcpy8                                                           
    0000794d  memcpy                                                                    
    000079e9  xdc_runtime_Text_putSite__E                                               
    00007a85  GATTServApp_ProcessCharCfg                                                
    00007b1d  ti_sysbios_knl_Clock_workFuncDynamic__E                                   
    00007bb5  PIN_open                                                                  
    00007cdd  xdc_runtime_Text_putMod__E                                                
    00007f1d  UARTCC26XX_writeCancel                                                    
    00007fa9  OSCHF_GetStartupTime                                                      
    00007fa9  PowerCC26XX_getXoscStartupTime                                            
    00008031  ICall_heapMalloc                                                          
    00008139  RF_ratDisableChannel                                                      
    0000823d  ICall_createRemoteTasks                                                   
    000082b9  RF_yield                                                                  
    000083b1  uartLog_outputFxn                                                         
    0000842d  __aeabi_memclr                                                            
    0000842d  __aeabi_memclr4                                                           
    0000842d  __aeabi_memclr8                                                           
    0000842f  __aeabi_memset                                                            
    0000842f  __aeabi_memset4                                                           
    0000842f  __aeabi_memset8                                                           
    00008435  memset                                                                    
    000084a7  __aeabi_idiv0                                                             
    000084a9  UARTCC26XX_close                                                          
    00008521  ICallPlatform_pwrUpdActivityCounter                                       
    00008609  PowerCC26XX_auxISR                                                        
    0000884d  ChipInfo_GetHwRevision                                                    
    000088bd  UARTCC26XX_readCancel                                                     
    0000899d  xdc_runtime_System_formatNum__I                                           
    00008a0b  ti_sysbios_BIOS_nullFunc__I                                               
    00008a0d  ICall_heapInit                                                            
    00008a79  PowerCC26XX_calibrate                                                     
    00008bbb  ti_sysbios_knl_Clock_triggerFunc__I                                       
    00008c25  RF_getCurrentTime                                                         
    00008c8d  RF_getInfo                                                                
    00008cf5  SysCtrl_DCDC_VoltageConditionalControl                                    
    00008dc5  uartLog_flush                                                             
    00008e91  RF_ratCompare                                                             
    00008f59  ti_sysbios_family_arm_cc26xx_Timer_start__E                               
    000090d9  OSCHF_AttemptToSwitchToXosc                                               
    00009135  PIN_remove                                                                
    00009191  PowerCC26XX_RCOSC_clockFunc                                               
    000091ed  SysCtrlAdjustRechargeAfterPowerDown                                       
    00009249  conversion_mt8442_ascii                                                   
    000092a5  conversion_mt8442_ext_ascii                                               
    0000935d  xdc_runtime_Startup_getState__I                                           
    000093b9  xdc_runtime_Text_putLab__E                                                
    00009415  PowerCC26XX_initiateCalibration                                           
    0000946d  UARTCC26XX_control                                                        
    00009713  ti_sysbios_rom_cortexm_cc26xx_CC26xx_badRomRevision__E                    
    00009715  GAP_DeviceInit                                                            
    00009765  GAP_UpdateAdvertisingData                                                 
    00009855  Util_convertBdAddr2Str                                                    
    00009a2d  ICallPlatform_pwrRegisterNotify                                           
    00009b5d  NOROM_OSCClockSourceSet                                                   
    00009ba9  UARTCC26XX_swiIntFxn                                                      
    00009c41  copy_in                                                                   
    00009c8d  xdc_runtime_Text_visitRope2__I                                            
    00009cd9  GATTServApp_ProcessCCCWriteReq                                            
    00009d23  xdc_runtime_SysCallback_defaultAbort                                      
    00009d25  ChipInfo_GetChipFamily                                                    
    00009d6d  NOROM_DDI16BitfieldWrite                                                  
    00009db5  PIN_setOutputEnable                                                       
    00009e45  RF_getRssi                                                                
    00009e8d  RF_runCmd                                                                 
    00009fad  __aeabi_d2iz                                                              
    00009ff5  AssertHandler                                                             
    0000a039  GAP_TerminateLinkReq                                                      
    0000a07d  ResetISR                                                                  
    0000a07d  _c_int00                                                                  
    0000a105  C$$EXIT                                                                   
    0000a109  abort                                                                     
    0000a109  xdc_runtime_System_abortStd__E                                            
    0000a111  exit                                                                      
    0000a111  xdc_runtime_System_exitStd__E                                             
    0000a18d  xdc_runtime_LoggerCallback_write8__E                                      
    0000a1d1  xdc_runtime_Text_xprintf__I                                               
    0000a257  xdc_runtime_SysCallback_defaultExit                                       
    0000a259  GAPRole_SendUpdateParam                                                   
    0000a299  GAPRole_createTask                                                        
    0000a2d9  GATT_SendRsp                                                              
    0000a319  NOROM_DDI16BitfieldRead                                                   
    0000a359  ProjectZero_createTask                                                    
    0000a399  __aeabi_uidiv                                                             
    0000a399  __aeabi_uidivmod                                                          
    0000a3d9  xdc_runtime_LoggerCallback_Module_startup__E                              
    0000a457  xdc_runtime_SysCallback_defaultPutch                                      
    0000a459  GAP_GetParamValue                                                         
    0000a495  GATTServApp_RegisterService                                               
    0000a4d1  ICallPlatform_pwrConfigACAction                                           
    0000a50d  NOROM_RFCSynthPowerDown                                                   
    0000a549  OSC_HPOSCRelativeFrequencyOffsetGet                                       
    0000a585  PIN_setOutputValue                                                        
    0000a6b1  GAPBondMgr_LinkEst                                                        
    0000a721  UART_init                                                                 
    0000a759  Util_restartClock                                                         
    0000a791  linkDB_NumConns                                                           
    0000a7c9  main                                                                      
    0000a871  ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E                      
    0000a919  GAPBondMgr_SetParameter                                                   
    0000a94d  GAP_SetParamValue                                                         
    0000aa51  ICall_searchServiceEntity                                                 
    0000aa85  OSCHF_SwitchToRcOscTurnOffXosc                                            
    0000aab9  PIN_setConfig                                                             
    0000aaed  PowerCC26XX_isStableXOSC_HF                                               
    0000ab55  Util_constructClock                                                       
    0000ab89  osal_snv_read                                                             
    0000abbd  osal_snv_write                                                            
    0000ac25  xdc_runtime_LoggerCallback_write4__E                                      
    0000ad53  ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E                         
    0000ad85  GAPBondMgr_PasscodeRsp                                                    
    0000ae45  Power_releaseConstraint                                                   
    0000ae75  Power_setConstraint                                                       
    0000aed5  UART_open                                                                 
    0000af05  ti_sysbios_BIOS_atExitFunc__I                                             
    0000af3d  ti_sysbios_family_arm_cc26xx_Timer_initDevice__I                          
    0000af6d  ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I                        
    0000af9d  xdc_runtime_LoggerCallback_Object__create__S                              
    0000afd5  xdc_runtime_Text_printVisFxn__I                                           
    0000b0eb  malloc                                                                    
    0000b159  GAPBondMgr_Register                                                       
    0000b185  HCI_EXT_ConnEventNoticeCmd                                                
    0000b1b1  ICall_freeImpl                                                            
    0000b1b1  ICall_heapFree                                                            
    0000b2e5  PINCC26XX_setMux                                                          
    0000b311  PowerCC26XX_switchXOSC_HF                                                 
    0000b33d  ti_sysbios_knl_Clock_getTicksUntilInterrupt__E                            
    0000b369  xdc_runtime_LoggerCallback_write2__E                                      
    0000b413  xdc_runtime_System_putchar__I                                             
    0000b43d  AONBatMonTemperatureGetDegC                                               
    0000b465  GATTServApp_WriteCharCfg                                                  
    0000b4b5  ICall_init                                                                
    0000b555  Power_registerNotify                                                      
    0000b57d  SafeHapiVoid                                                              
    0000b5cd  ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E                         
    0000b5f5  xdc_runtime_LoggerCallback_write0__E                                      
    0000b61d  xdc_runtime_LoggerCallback_write1__E                                      
    0000b645  List_put                                                                  
    0000b66b  GAPBondMgr_LinkTerm                                                       
    0000b6fd  RF_ratHwOutput                                                            
    0000b769  ti_sysbios_BIOS_registerRTSLock__I                                        
    0000b78d  ti_sysbios_BIOS_removeRTSLock__I                                          
    0000b7b1  ti_sysbios_BIOS_startFunc__I                                              
    0000b81f  memcmp                                                                    
    0000b841  GATTServApp_InitCharCfg                                                   
    0000b861  GATT_bm_alloc                                                             
    0000b921  NOROM_RFCDoorbellSendTo                                                   
    0000b941  NOROM_RFCRfTrimRead                                                       
    0000b961  Power_unregisterNotify                                                    
    0000b9a1  convert_uint2char                                                         
    0000b9c1  __aeabi_ui2d                                                              
    0000b9e1  ti_sysbios_BIOS_rtsLock__I                                                
    0000ba09  ti_sysbios_knl_Clock_stop__E                                              
    0000ba29  xdc_runtime_Registry_findById__E                                          
    0000ba67  PIN_close                                                                 
    0000ba85  Power_getTransitionLatency                                                
    0000bafd  GATT_bm_free                                                              
    0000bb89  NOROM_OSCClockSourceGet                                                   
    0000bbdd  Power_idleFunc                                                            
    0000bbf9  RF_getCmdOp                                                               
    0000bc69  ti_sysbios_family_arm_cc26xx_Timer_dynamicStub__E                         
    0000bc85  xdc_runtime_LoggerCallback_Instance_init__E                               
    0000bca1  ICall_enterCSImpl                                                         
    0000bcd5  List_remove                                                               
    0000bd09  xdc_runtime_System_snprintf__E                                            
    0000bd25  ChipInfo_GetPackageType                                                   
    0000bd3d  GAPRole_StartDevice                                                       
    0000bd55  GAPRole_TerminateConnection                                               
    0000bd6d  GATT_Notification                                                         
    0000be2d  ICallPlatform_pwrDispense                                                 
    0000be45  ICallPlatform_pwrRequire                                                  
    0000beed  NOROM_AONRTCCurrentCompareValueGet                                        
    0000bf05  NOROM_RFCCpeIntGetAndClear                                                
    0000bf1d  OSCHF_TurnOnXosc                                                          
    0000bf4d  RF_runDirectCmd                                                           
    0000bf65  RF_runImmediateCmd                                                        
    0000bf7d  UARTCC26XX_init                                                           
    0000bfad  gapRole_clockHandler                                                      
    0000bfc5  _args_main                                                                
    0000bfdd  __aeabi_lmul                                                              
    0000c00d  ti_sysbios_BIOS_rtsUnlock__I                                              
    0000c02d  ti_sysbios_knl_Swi_or__E                                                  
    0000c045  ti_sysbios_rom_cortexm_cc26xx_CC26xx_checkRevision__E                     
    0000c073  ICall_leaveCSImpl                                                         
    0000c09f  ti_sysbios_BIOS_exitFunc__I                                               
    0000c0b5  DevInfo_AddService                                                        
    0000c0c9  NOROM_AONRTCCurrent64BitValueGet                                          
    0000c0dd  PIN_getInputValue                                                         
    0000c0f1  ThisCodeIsBuiltForCC26xxHwRev22AndLater_HaltIfViolated                    
    0000c105  _nop                                                                      
    0000c107  _register_unlock                                                          
    0000c10d  _register_lock                                                            
    0000c119  strlen                                                                    
    0000c141  ti_sysbios_knl_Clock_doTick__I                                            
    0000c15d  GATTServApp_FindAttr                                                      
    0000c16f  xdc_runtime_Startup_exec__I                                               
    0000c189  DevInfo_SetParameter                                                      
    0000c1a9  GAP_EndDiscoverable                                                       
    0000c1b9  GATTServApp_ReadCharCfg                                                   
    0000c1e9  ICallPlatform_pwrGetXOSCStartupTime                                       
    0000c219  NOROM_RFCRfTrimSet                                                        
    0000c229  RF_Params_init                                                            
    0000c239  RegisterAssertCback                                                       
    0000c249  Util_isActive                                                             
    0000c259  ti_sysbios_family_arm_m3_Hwi_post__E                                      
    0000c259  ti_sysbios_hal_Hwi_HwiProxy_post__E                                       
    0000c259  ti_sysbios_hal_Hwi_post__E                                                
    0000c279  xdc_runtime_LoggerCallback_Object__get__S                                 
    0000c289  xdc_runtime_SysCallback_putch__E                                          
    0000c289  xdc_runtime_System_SupportProxy_putch__E                                  
    0000c299  xdc_runtime_SysCallback_ready__E                                          
    0000c299  xdc_runtime_System_SupportProxy_ready__E                                  
    0000c2a9  xdc_runtime_System_vsnprintf__E                                           
    0000c2b9  ICallPlatform_pwrGetTransitionState                                       
    0000c2c7  ICallPlatform_pwrIsStableXOSCHF                                           
    0000c31d  NOROM_VIMSModeGet                                                         
    0000c32b  SignExtendVddrTrimValue                                                   
    0000c339  __TI_decompress_none                                                      
    0000c39b  ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E                   
    0000c39b  xdc_runtime_Timestamp_SupportProxy_get32__E__mangled__                    
    0000c3a9  GAP_MakeDiscoverable                                                      
    0000c3b5  GAP_TerminateAuth                                                         
    0000c3c1  GAP_UpdateLinkParamReq                                                    
    0000c3cd  GGS_SetParameter                                                          
    0000c425  NOROM_CPUcpsid                                                            
    0000c431  NOROM_CPUcpsie                                                            
    0000c43d  PIN_registerIntCb                                                         
    0000c449  Power_getConstraintMask                                                   
    0000c455  Power_getDependencyCount                                                  
    0000c461  Power_getTransitionState                                                  
    0000c46d  UartLog_doInit                                                            
    0000c479  __TI_zero_init                                                            
    0000c491  ti_sysbios_BIOS_getThreadType__E                                          
    0000c49d  ti_sysbios_hal_Hwi_Params__init__S                                        
    0000c4b1  ti_sysbios_knl_Swi_getTrigger__E                                          
    0000c4bd  xdc_runtime_Startup_reset__I                                              
    0000c4c9  xdc_runtime_Startup_rtsDone__E                                            
    0000c4d5  ICallPlatform_pwrSwitchXOSCHF                                             
    0000c4e9  List_empty                                                                
    0000c4f3  UART_write                                                                
    0000c4fd  xdc_runtime_LoggerCallback_disable__E                                     
    0000c507  xdc_runtime_LoggerCallback_enable__E                                      
    0000c511  xdc_runtime_Text_visitRope__I                                             
    0000c51b  GAP_RegisterForMsgs                                                       
    0000c523  GATT_RegisterForMsgs                                                      
    0000c52b  RF_flushCmd                                                               
    0000c54b  GATT_Indication                                                           
    0000c551  GGS_AddService                                                            
    0000c557  ICall_mallocImpl                                                          
    0000c55d  UARTCC26XX_readPolling                                                    
    0000c563  UARTCC26XX_writePolling                                                   
    0000c569  __xdc__init                                                               
    0000c575  __TI_decompress_rle24                                                     
    0000c5cf  ti_sysbios_family_arm_m3_Hwi_setFunc__E                                   
    0000c5d5  HwiP_disable                                                              
    0000c5dd  List_head                                                                 
    0000c5e1  List_next                                                                 
    0000c5e9  Util_stopClock                                                            
    0000c5f5  ti_sysbios_family_arm_cc26xx_Timer_getCount64__E                          
    0000c5f9  ti_sysbios_knl_Clock_isActive__E                                          
    0000c5fd  xdc_runtime_LoggerCallback_defaultCreate                                  
    0000c601  xdc_runtime_SysCallback_defaultReady                                      
    0000c605  xdc_runtime_System_snprintf_va__F                                         
    0000c770  xdc_runtime_Text_charTab__A                                               
    0000df64  resourceDB                                                                
    0000dfb0  rfDriverTable                                                             
    0000e0c8  Button_ServiceCBs                                                         
    0000e0d4  bs_BUTTON0UUID                                                            
    0000e0e4  bs_BUTTON1UUID                                                            
    0000e0ea  __checksum_value_CommonROM                                                
    0000e0fc  Data_ServiceCBs                                                           
    0000e108  ds_StringUUID                                                             
    0000e118  ds_StreamUUID                                                             
    0000e130  LED_ServiceCBs                                                            
    0000e13c  ls_LED0UUID                                                               
    0000e14c  ls_LED1UUID                                                               
    0000e15c  xdc_runtime_LoggerCallback_Module__FXNS__C                                
    0000e190  BoardGpioInitTable                                                        
    0000e1bc  primaryServiceUUID                                                        
    0000e1be  characterUUID                                                             
    0000e1c0  clientCharCfgUUID                                                         
    0000e1c2  gapServiceUUID                                                            
    0000e1c4  gattServiceUUID                                                           
    0000e1c6  secondaryServiceUUID                                                      
    0000e1c8  includeUUID                                                               
    0000e1ca  charExtPropsUUID                                                          
    0000e1cc  charUserDescUUID                                                          
    0000e1ce  servCharCfgUUID                                                           
    0000e1d0  charFormatUUID                                                            
    0000e1d2  charAggFormatUUID                                                         
    0000e1d4  deviceNameUUID                                                            
    0000e1d6  appearanceUUID                                                            
    0000e1d8  periPrivacyFlagUUID                                                       
    0000e1da  reconnectAddrUUID                                                         
    0000e1dc  periConnParamUUID                                                         
    0000e1de  serviceChangedUUID                                                        
    0000e1e0  validRangeUUID                                                            
    0000e1e2  extReportRefUUID                                                          
    0000e1e4  reportRefUUID                                                             
    0000e1e8  UARTCC26XX_fxnTable                                                       
    0000e210  xdc_runtime_Startup_sfxnTab__A                                            
    0000e238  txPowerTable                                                              
    0000e260  UART_defaultParams                                                        
    0000e284  xdc_runtime_LoggerCallback_Object__DESC__C                                
    0000e2a4  xdc_runtime_LoggerCallback_Object__PARAMS__C                              
    0000e2c0  UART_config                                                               
    0000e2d8  uartCC26XXHWAttrs                                                         
    0000e2f0  devInfoServUUID                                                           
    0000e2f2  devInfoSystemIdUUID                                                       
    0000e2f4  devInfoModelNumberUUID                                                    
    0000e2f6  devInfoSerialNumberUUID                                                   
    0000e2f8  devInfoFirmwareRevUUID                                                    
    0000e2fa  devInfoHardwareRevUUID                                                    
    0000e2fc  devInfoSoftwareRevUUID                                                    
    0000e2fe  devInfoMfrNameUUID                                                        
    0000e300  devInfo11073CertUUID                                                      
    0000e302  devInfoPnpIdUUID                                                          
    0000e304  PowerCC26XX_config                                                        
    0000e314  RFCC26XX_hwAttrs                                                          
    0000e320  devInfoCBs                                                                
    0000e32c  xdc_runtime_Startup_sfxnRts__A                                            
    0000e351  ButtonServiceUUID                                                         
    0000e361  DataServiceUUID                                                           
    0000e371  LedServiceUUID                                                            
    0000e382  xdc_runtime_Text_nodeTab__A                                               
    0000e392  xdc_runtime_Main_Module__loggerDefined__C                                 
    0000e3a0  xdc_runtime_Startup_firstFxns__A                                          
    0000e3ac  PINCC26XX_hwAttrs                                                         
    0000e3b4  ti_sysbios_knl_Idle_funcList__A                                           
    0000e3bc  txPwrTbl                                                                  
    0000e3c2  xdc_runtime_Text_registryModsLastId__C                                    
    0000e3c8  ti_sysbios_knl_Clock_tickPeriod__C                                        
    0000e3cc  ti_sysbios_knl_Clock_triggerClock__C                                      
    0000e3d0  xdc_runtime_ILogger_Interface__BASE__C                                    
    0000e3d4  xdc_runtime_Log_L_error__C                                                
    0000e3d8  xdc_runtime_Log_L_info__C                                                 
    0000e3dc  xdc_runtime_Log_L_warning__C                                              
    0000e3e0  xdc_runtime_LoggerCallback_Object__count__C                               
    0000e3e4  xdc_runtime_LoggerCallback_createInstFxn__C                               
    0000e3e8  xdc_runtime_LoggerCallback_outputFxn__C                                   
    0000e3ec  xdc_runtime_Main_Module__loggerFxn4__C                                    
    0000e3f0  xdc_runtime_Main_Module__loggerFxn8__C                                    
    0000e3f4  xdc_runtime_Main_Module__loggerObj__C                                     
    0000e3f8  xdc_runtime_SysCallback_putchFxn__C                                       
    0000e3fc  xdc_runtime_SysCallback_readyFxn__C                                       
    0000e400  xdc_runtime_System_extendFxn__C                                           
    0000e404  xdc_runtime_Text_nodeTab__C                                               
    0000e408  xdc_runtime_Text_visitRopeFxn__C                                          
    0000e40c  xdc_runtime_Text_unnamedModsLastId__C                                     
    0000e410  __c_args__                                                                
    0000eb18  __TI_Handler_Table_Base                                                   
    0000eb24  __TI_Handler_Table_Limit                                                  
    0000eb78  __TI_CINIT_Base                                                           
    0000ebe0  __TI_CINIT_Limit                                                          
    0001ffa8  __ccfg                                                                    
    10014c00  A1_rw                                                                     
    10014c00  __checksum_begin_CommonROM                                                
    10014c01  COMMON_ROM_BASE_ADDR                                                      
    10014c04  P1_ro                                                                     
    10014c05  SCALARMUL_init                                                            
    10014ced  SCALARMUL_core                                                            
    10015019  SCALARMUL_final                                                           
    100150e5  SCALARMUL                                                                 
    10015101  SAVEPOINT                                                                 
    10015141  GETBIT                                                                    
    10015155  GETDIGIT                                                                  
    100151a5  GETDIGITL2R                                                               
    10015215  SelectReg                                                                 
    10015229  ATOMICPATTERN                                                             
    100154f5  JACADD                                                                    
    1001568d  INVERT                                                                    
    10015821  SQUAREMULTIPLYWORD                                                        
    1001588c  LUTOPCODE                                                                 
    10015894  LUTOPSIGN                                                                 
    100158ac  LUTC                                                                      
    100158c4  LUTSE                                                                     
    100158dc  LUTINCI                                                                   
    100158f4  LUTJ                                                                      
    1001596c  LUTSTATE                                                                  
    100159a9  IMPORTLENGTH                                                              
    100159ad  IMPORTMODULUS                                                             
    100159d1  IMPORTOPERAND                                                             
    10015a11  EXPORTOPERAND                                                             
    10015a35  IMPORTDATA                                                                
    10015a51  SETOPERAND                                                                
    10015a6d  COPY                                                                      
    10015a85  ZERO                                                                      
    10015a91  SETWORD                                                                   
    10015a9d  mSET                                                                      
    10015bcd  zSET                                                                      
    10015bd5  mINVK                                                                     
    10015d19  zADD                                                                      
    10015d5d  zSUB                                                                      
    10015de9  zMACC32                                                                   
    10015e69  zSUB32                                                                    
    10015eb5  zADD32                                                                    
    10015f0d  zMULT32                                                                   
    10015f81  mMULT                                                                     
    10016551  mADD                                                                      
    1001664d  mSUB                                                                      
    10016749  mOUT                                                                      
    10016975  ssp_KeyInit_Sw                                                            
    10016979  sspAesEncrypt_Sw                                                          
    10016985  sspKeyExpansion_Sw                                                        
    10016a99  sspAesEncryptKeyExp_Sw                                                    
    10016af5  sspAesEncryptBasic_Sw                                                     
    10016b79  RoundKey_Sw                                                               
    10016c29  AddRoundKeySubBytes_Sw                                                    
    10016c45  ShiftRows_Sw                                                              
    10016c79  MixColumns_Sw                                                             
    10016d05  FFMult_Sw                                                                 
    10016d29  sspAesDecrypt_Sw                                                          
    10016da1  InvAddRoundKey_Sw                                                         
    10016dc9  InvRoundKey_Sw                                                            
    10016e8d  InvSubBytes_Sw                                                            
    10016ea1  InvShiftRows_Sw                                                           
    10016ed5  InvMixColumns_Sw                                                          
    10016f58  FFMult2                                                                   
    10017058  FFMult3                                                                   
    10017158  RCon                                                                      
    10017164  Sbox                                                                      
    10017264  InvSbox                                                                   
    10017365  SSP_CCM_Auth_Sw                                                           
    100174fd  SSP_CCM_Encrypt_Sw                                                        
    100175ed  SSP_CTR_Encrypt_Sw                                                        
    1001767d  SSP_CCM_Decrypt_Sw                                                        
    10017771  SSP_CTR_Decrypt_Sw                                                        
    10017839  SSP_CCM_InvAuth_Sw                                                        
    10017895  SSP_CCM_Auth_Encrypt_Sw                                                   
    100178f5  SSP_CCM_InvAuth_Decrypt_Sw                                                
    10017959  ECC_allocWorkzone                                                         
    10017961  ECC_setWin                                                                
    10017969  ECDSA_sign                                                                
    10017b01  ECDSA_verif                                                               
    10017dbd  eccRom_genKeys                                                            
    10017ded  eccRom_genSharedSecret                                                    
    10017e39  SHA256_updateW                                                            
    10017e75  SHA256_round                                                              
    10017ef1  SHA256_nextState                                                          
    10017f49  SHA256_saveBuffer                                                         
    10017ffd  SHA256_init                                                               
    10018019  SHA256_process                                                            
    10018089  SHA256_final                                                              
    10018129  SHA256_full                                                               
    100182ad  RFHAL_InitRfHal                                                           
    10018315  RFHAL_AllocRatChan                                                        
    1001833d  RFHAL_FreeRatChan                                                         
    10018369  RFHAL_MapRatChansToInt                                                    
    10018391  RFHAL_RegisterRatChanCallback                                             
    100183b9  RFHAL_InitDataQueue                                                       
    100183c5  RFHAL_QueueRFDataEntries                                                  
    10018415  RFHAL_AddTxDataEntry                                                      
    10018485  RFHAL_FreeNextTxDataEntry                                                 
    100184a9  RFHAL_AllocDataEntryQueue                                                 
    100184c5  RFHAL_FreeDataEntryQueue                                                  
    100184cd  RFHAL_GetNextDataEntry                                                    
    100184d1  RFHAL_GetTempDataEntry                                                    
    100184d5  RFHAL_NextDataEntryDone                                                   
    100184f9  RFHAL_AllocDataEntry                                                      
    10018549  RFHAL_FreeDataEntry                                                       
    10018551  RFHAL_BuildRingBuffer                                                     
    100185e1  RFHAL_BuildDataEntryRingBuffer                                            
    10018669  RFHAL_BuildLinkedBuffer                                                   
    10018755  MB_Init                                                                   
    10018799  MB_EnableInts                                                             
    100187f5  MB_DisableInts                                                            
    10018825  MB_ClearInts                                                              
    10018835  MB_EnableHWInts                                                           
    10018865  MB_SendCommand                                                            
    100188a5  MB_SendCommandSynch                                                       
    10018935  MB_ReadMailboxStatus                                                      
    1001893d  MB_RegisterIsrCback                                                       
    10018945  MB_FwDebugDump                                                            
    10018949  mbCmdAckIsr                                                               
    1001895d  mbCpe0Isr                                                                 
    10018985  mbCpe1Isr                                                                 
    100189e5  mbHwIsr                                                                   
    10018a19  AesCcm_authEncrypt_Sw                                                     
    10018a35  AesCcm_decryptAuth_Sw                                                     
    10018a99  Aes_encrypt_Sw                                                            
    10018ac5  Aes_decrypt_Sw                                                            
    10018b09  AesCcm_getNumBlocks_Sw                                                    
    10018b0c  NIST_Curve_P256_p                                                         
    10018b30  NIST_Curve_P256_r                                                         
    10018b54  NIST_Curve_P256_a                                                         
    10018b78  NIST_Curve_P256_b                                                         
    10018b9c  NIST_Curve_P256_Gx                                                        
    10018bc0  NIST_Curve_P256_Gy                                                        
    10018ced  __exit                                                                    
    10018d6c  Fill1                                                                     
    10019ffc  A3_rw                                                                     
    10019ffd  __checksum_end_CommonROM                                                  
    10019ffe  A2_rw                                                                     
    10019ffe  P1_ro_2                                                                   
    10019ffe  __checksum_CommonROM                                                      
    1001a001  ti_sysbios_knl_Mailbox_Instance_init__E                                   
    1001a0cd  ti_sysbios_knl_Semaphore_pend__E                                          
    1001a199  ti_sysbios_heaps_HeapMem_alloc__E                                         
    1001a25d  ti_sysbios_knl_Task_Instance_init__E                                      
    1001a319  ti_sysbios_family_arm_m3_Hwi_postInit__I                                  
    1001a3c9  ti_sysbios_family_arm_m3_Hwi_Instance_init__E                             
    1001a469  ti_sysbios_family_arm_cc26xx_Timer_periodicStub__E                        
    1001a4fd  ti_sysbios_knl_Task_Instance_finalize__E                                  
    1001a591  ti_sysbios_knl_Mailbox_post__E                                            
    1001a615  ti_sysbios_knl_Task_postInit__I                                           
    1001a699  ti_sysbios_family_arm_m3_Hwi_initNVIC__E                                  
    1001a719  ti_sysbios_knl_Clock_startI__E                                            
    1001a795  ti_sysbios_heaps_HeapMem_free__E                                          
    1001a80d  ti_sysbios_knl_Clock_walkQueueDynamic__E                                  
    1001a885  ti_sysbios_knl_Clock_workFunc__E                                          
    1001a8fd  ti_sysbios_knl_Mailbox_pend__E                                            
    1001a96d  ti_sysbios_knl_Task_sleep__E                                              
    1001a9dd  ti_sysbios_knl_Mailbox_Instance_finalize__E                               
    1001aa49  ti_sysbios_family_arm_m3_Hwi_dispatchC__I                                 
    1001aab1  ti_sysbios_family_arm_m3_Hwi_Object__create__S                            
    1001ab15  ti_sysbios_family_arm_m3_Hwi_create                                       
    1001ab79  ti_sysbios_hal_Hwi_create                                                 
    1001abdd  ti_sysbios_knl_Mailbox_create                                             
    1001ac41  ti_sysbios_knl_Semaphore_post__E                                          
    1001aca5  ti_sysbios_knl_Swi_Instance_init__E                                       
    1001ad05  ti_sysbios_knl_Swi_create                                                 
    1001ad61  ti_sysbios_knl_Swi_restoreHwi__E                                          
    1001adbd  ti_sysbios_knl_Task_Module_startup__E                                     
    1001ae19  ti_sysbios_knl_Task_create                                                
    1001ae75  ti_sysbios_knl_Task_startCore__E                                          
    1001aed1  ti_sysbios_family_arm_m3_Hwi_Instance_finalize__E                         
    1001af29  ti_sysbios_family_arm_m3_Hwi_construct                                    
    1001af81  ti_sysbios_knl_Mailbox_construct                                          
    1001afd9  ti_sysbios_knl_Swi_run__I                                                 
    1001b031  ti_sysbios_knl_Swi_schedule__I                                            
    1001b085  ti_sysbios_knl_Swi_construct                                              
    1001b0d5  ti_sysbios_knl_Swi_runLoop__I                                             
    1001b125  ti_sysbios_knl_Task_construct                                             
    1001b175  ti_sysbios_knl_Task_schedule__I                                           
    1001b1c1  ti_sysbios_family_arm_m3_Hwi_Module_startup__E                            
    1001b209  ti_sysbios_heaps_HeapMem_getStats__E                                      
    1001b251  ti_sysbios_knl_Mailbox_Module_startup__E                                  
    1001b299  ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E                          
    1001b2dd  ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E                           
    1001b321  ti_sysbios_knl_Swi_post__E                                                
    1001b365  ti_sysbios_knl_Task_allBlockedFunction__I                                 
    1001b3a9  ti_sysbios_knl_Task_yield__E                                              
    1001b3ed  ti_sysbios_knl_Clock_create                                               
    1001b429  ti_sysbios_knl_Task_exit__E                                               
    1001b463  ti_sysbios_gates_GateHwi_Instance_init__E                                 
    1001b465  ti_sysbios_family_arm_m3_Hwi_getStackInfo__E                              
    1001b49d  ti_sysbios_family_arm_m3_TaskSupport_start__E                             
    1001b4d5  ti_sysbios_heaps_HeapMem_Instance_init__E                                 
    1001b50d  ti_sysbios_knl_Clock_Instance_init__E                                     
    1001b545  ti_sysbios_heaps_HeapMem_init__I                                          
    1001b579  ti_sysbios_knl_Clock_construct                                            
    1001b5ad  ti_sysbios_knl_Semaphore_create                                           
    1001b5e1  ti_sysbios_knl_Swi_restore__E                                             
    1001b615  ti_sysbios_knl_Task_blockI__E                                             
    1001b649  ti_sysbios_gates_GateMutex_Object__create__S                              
    1001b679  ti_sysbios_gates_GateMutex_create                                         
    1001b6a9  ti_sysbios_gates_GateMutex_enter__E                                       
    1001b6d9  ti_sysbios_knl_Clock_getTicks__E                                          
    1001b709  ti_sysbios_knl_Semaphore_construct                                        
    1001b739  ti_sysbios_knl_Task_processVitalTaskFlag__I                               
    1001b769  ti_sysbios_family_arm_cc26xx_Timer_postInit__I                            
    1001b795  ti_sysbios_family_arm_cc26xx_Timer_startup__E                             
    1001b795  ti_sysbios_knl_Clock_TimerProxy_startup__E                                
    1001b7c1  ti_sysbios_family_arm_m3_Hwi_Object__get__S                               
    1001b7ed  ti_sysbios_gates_GateMutex_construct                                      
    1001b819  ti_sysbios_hal_Hwi_initStack                                              
    1001b845  ti_sysbios_heaps_HeapMem_Object__create__S                                
    1001b871  ti_sysbios_heaps_HeapMem_Object__get__S                                   
    1001b89d  ti_sysbios_knl_Mailbox_Object__get__S                                     
    1001b8c9  ti_sysbios_knl_Mailbox_postInit__I                                        
    1001b8f5  ti_sysbios_knl_Queue_construct                                            
    1001b921  ti_sysbios_knl_Queue_create                                               
    1001b94d  ti_sysbios_knl_Semaphore_pendTimeout__I                                   
    1001b979  ti_sysbios_knl_Swi_Object__get__S                                         
    1001b9a5  ti_sysbios_knl_Task_unblockI__E                                           
    1001b9d1  ti_sysbios_family_arm_cc26xx_TimestampProvider_get64__E                   
    1001b9d1  xdc_runtime_Timestamp_SupportProxy_get64__E                               
    1001b9d1  xdc_runtime_Timestamp_get64__E                                            
    1001b9f9  ti_sysbios_hal_Hwi_Instance_init__E                                       
    1001ba21  ti_sysbios_knl_Clock_addI__E                                              
    1001ba49  ti_sysbios_knl_Task_restore__E                                            
    1001ba71  ti_sysbios_family_arm_cc26xx_Timer_Module_startup__E                      
    1001ba95  ti_sysbios_gates_GateHwi_Object__create__S                                
    1001bab9  ti_sysbios_BIOS_RtsGateProxy_Object__delete__S                            
    1001bab9  ti_sysbios_gates_GateMutex_Object__delete__S                              
    1001bab9  ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__delete__S               
    1001badd  ti_sysbios_knl_Clock_Object__delete__S                                    
    1001bb01  ti_sysbios_knl_Semaphore_Instance_init__E                                 
    1001bb25  ti_sysbios_knl_Semaphore_Object__delete__S                                
    1001bb49  ti_sysbios_family_arm_cc26xx_Timer_Module__startupDone__S                 
    1001bb69  ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_startup__E          
    1001bb89  ti_sysbios_family_arm_m3_Hwi_Module__startupDone__S                       
    1001bba9  ti_sysbios_family_arm_m3_Hwi_Object__delete__S                            
    1001bba9  ti_sysbios_hal_Hwi_HwiProxy_Object__delete__S                             
    1001bbc9  ti_sysbios_family_arm_m3_Hwi_excHandler__I                                
    1001bbe9  ti_sysbios_gates_GateHwi_Handle__label__S                                 
    1001bbe9  xdc_runtime_System_Module_GateProxy_Handle__label__S                      
    1001bc09  ti_sysbios_gates_GateHwi_Object__delete__S                                
    1001bc09  xdc_runtime_System_Module_GateProxy_Object__delete__S                     
    1001bc29  ti_sysbios_BIOS_RtsGateProxy_Handle__label__S                             
    1001bc29  ti_sysbios_gates_GateMutex_Handle__label__S                               
    1001bc29  ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S                
    1001bc49  ti_sysbios_gates_GateMutex_Object__destruct__S                            
    1001bc69  ti_sysbios_hal_Hwi_Object__delete__S                                      
    1001bc89  ti_sysbios_heaps_HeapMem_Handle__label__S                                 
    1001bc89  xdc_runtime_Memory_HeapProxy_Handle__label__S                             
    1001bca9  ti_sysbios_heaps_HeapMem_Object__delete__S                                
    1001bca9  xdc_runtime_Memory_HeapProxy_Object__delete__S                            
    1001bcc9  ti_sysbios_knl_Clock_Module_startup__E                                    
    1001bce9  ti_sysbios_knl_Clock_Object__destruct__S                                  
    1001bd09  ti_sysbios_knl_Idle_run__E                                                
    1001bd29  ti_sysbios_knl_Mailbox_Object__delete__S                                  
    1001bd49  ti_sysbios_knl_Queue_Object__delete__S                                    
    1001bd69  ti_sysbios_knl_Queue_Object__get__S                                       
    1001bd89  ti_sysbios_knl_Semaphore_Object__destruct__S                              
    1001bda9  ti_sysbios_knl_Swi_Object__delete__S                                      
    1001bdc9  ti_sysbios_knl_Task_Object__delete__S                                     
    1001bde9  ti_sysbios_knl_Task_Object__get__S                                        
    1001be09  ti_sysbios_knl_Task_enter__I                                              
    1001be29  ti_sysbios_knl_Task_restoreHwi__E                                         
    1001be49  ti_sysbios_hal_Hwi_HwiProxy_create                                        
    1001be67  ti_sysbios_knl_Clock_logTick__E                                           
    1001be69  ti_sysbios_family_arm_m3_Hwi_Object__destruct__S                          
    1001be85  ti_sysbios_family_arm_m3_Hwi_setPriority__E                               
    1001bea1  ti_sysbios_gates_GateMutex_Instance_init__E                               
    1001bebd  ti_sysbios_knl_Clock_scheduleNextTick__E                                  
    1001bed9  ti_sysbios_knl_Mailbox_Object__destruct__S                                
    1001bef5  ti_sysbios_knl_Queue_Object__destruct__S                                  
    1001bf11  ti_sysbios_knl_Queue_get__E                                               
    1001bf2d  ti_sysbios_knl_Queue_put__E                                               
    1001bf49  ti_sysbios_knl_Swi_Object__destruct__S                                    
    1001bf65  ti_sysbios_knl_Task_Object__destruct__S                                   
    1001bf81  ti_sysbios_knl_Task_sleepTimeout__I                                       
    1001bf9b  ti_sysbios_knl_Swi_Instance_finalize__E                                   
    1001bf9d  ti_sysbios_gates_GateMutex_leave__E                                       
    1001bfb5  ti_sysbios_knl_Task_unblock__E                                            
    1001bfcd  ti_sysbios_knl_Clock_Instance_finalize__E                                 
    1001bfe3  ti_sysbios_knl_Clock_start__E                                             
    1001bff9  ti_sysbios_BIOS_getCpuFreq__E                                             
    1001c00d  ti_sysbios_family_arm_m3_Hwi_switchFromBootStack__E                       
    1001c021  ti_sysbios_hal_Hwi_Module_startup__E                                      
    1001c035  ti_sysbios_BIOS_exit__E                                                   
    1001c045  ti_sysbios_BIOS_setThreadType__E                                          
    1001c055  ti_sysbios_BIOS_start__E                                                  
    1001c065  ti_sysbios_family_arm_m3_Hwi_plug__E                                      
    1001c075  ti_sysbios_gates_GateMutex_Instance_finalize__E                           
    1001c085  ti_sysbios_hal_Hwi_HwiProxy_Object__create__S                             
    1001c095  ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E                         
    1001c0a5  ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E                            
    1001c0b5  ti_sysbios_knl_Clock_TimerProxy_setNextTick__E                            
    1001c0c5  ti_sysbios_knl_Semaphore_Instance_finalize__E                             
    1001c0d5  ti_sysbios_knl_Swi_disable__E                                             
    1001c0e5  ti_sysbios_knl_Swi_enabled__E                                             
    1001c0f5  ti_sysbios_knl_Task_disable__E                                            
    1001c105  ti_sysbios_heaps_HeapMem_restore__E                                       
    1001c113  ti_sysbios_knl_Queue_empty__E                                             
    1001c121  ti_sysbios_knl_Queue_remove__E                                            
    1001c12f  ti_sysbios_family_arm_cc26xx_TimestampProvider_getFreq__E                 
    1001c12f  xdc_runtime_Timestamp_SupportProxy_getFreq__E                             
    1001c12f  xdc_runtime_Timestamp_getFreq__E                                          
    1001c13d  ti_sysbios_family_arm_m3_Hwi_Params__init__S                              
    1001c13d  ti_sysbios_hal_Hwi_HwiProxy_Params__init__S                               
    1001c149  ti_sysbios_family_arm_m3_Hwi_disableFxn__E                                
    1001c155  ti_sysbios_family_arm_m3_Hwi_enableFxn__E                                 
    1001c161  ti_sysbios_family_arm_m3_TaskSupport_getStackAlignment__E                 
    1001c16d  ti_sysbios_gates_GateHwi_enter__E                                         
    1001c179  ti_sysbios_BIOS_RtsGateProxy_Params__init__S                              
    1001c179  ti_sysbios_gates_GateMutex_Params__init__S                                
    1001c179  ti_sysbios_heaps_HeapMem_Module_GateProxy_Params__init__S                 
    1001c185  ti_sysbios_knl_Clock_Params__init__S                                      
    1001c191  ti_sysbios_knl_Clock_getTimerHandle__E                                    
    1001c19d  ti_sysbios_knl_Mailbox_Params__init__S                                    
    1001c1a9  ti_sysbios_knl_Queue_dequeue__E                                           
    1001c1b5  ti_sysbios_knl_Queue_enqueue__E                                           
    1001c1c1  ti_sysbios_knl_Semaphore_Params__init__S                                  
    1001c1cd  ti_sysbios_knl_Swi_Params__init__S                                        
    1001c1d9  ti_sysbios_knl_Task_Params__init__S                                       
    1001c1e5  ti_sysbios_knl_Task_self__E                                               
    1001c1f1  ti_sysbios_hal_Hwi_Instance_finalize__E                                   
    1001c1fb  ti_sysbios_family_arm_m3_Hwi_doSwiRestore__I                              
    1001c203  ti_sysbios_family_arm_m3_Hwi_startup__E                                   
    1001c20b  ti_sysbios_knl_Idle_loop__E                                               
    1001c213  ti_sysbios_family_arm_m3_Hwi_doTaskRestore__I                             
    1001c219  ti_sysbios_family_arm_m3_Hwi_restoreFxn__E                                
    1001c21f  ti_sysbios_gates_GateHwi_leave__E                                         
    1001c22b  ti_sysbios_knl_Queue_Instance_init__E                                     
    1001c231  ti_sysbios_knl_Queue_elemClear__E                                         
    1001c237  ti_sysbios_knl_Swi_Module_startup__E                                      
    1001c23d  ti_sysbios_knl_Swi_startup__E                                             
    1001c243  ti_sysbios_knl_Task_enable__E                                             
    1001c249  ti_sysbios_BIOS_RtsGateProxy_enter__E                                     
    1001c24d  ti_sysbios_BIOS_RtsGateProxy_leave__E                                     
    1001c251  ti_sysbios_family_arm_cc26xx_Timer_getExpiredTicks__E                     
    1001c255  ti_sysbios_family_arm_cc26xx_Timer_getPeriod__E                           
    1001c259  ti_sysbios_family_arm_cc26xx_Timer_setPeriod__E                           
    1001c25d  ti_sysbios_family_arm_m3_Hwi_delete                                       
    1001c261  ti_sysbios_family_arm_m3_Hwi_destruct                                     
    1001c265  ti_sysbios_family_arm_m3_TaskSupport_Module__startupDone__S               
    1001c269  ti_sysbios_gates_GateHwi_query__E                                         
    1001c269  xdc_runtime_System_Module_GateProxy_query__E                              
    1001c26d  ti_sysbios_gates_GateMutex_delete                                         
    1001c271  ti_sysbios_gates_GateMutex_destruct                                       
    1001c275  ti_sysbios_BIOS_RtsGateProxy_query__E                                     
    1001c275  ti_sysbios_gates_GateMutex_query__E                                       
    1001c275  ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E                        
    1001c279  ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S                        
    1001c27d  ti_sysbios_hal_Hwi_HwiProxy_delete                                        
    1001c281  ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E                           
    1001c281  ti_sysbios_hal_Hwi_disableInterrupt__E                                    
    1001c285  ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E                            
    1001c285  ti_sysbios_hal_Hwi_enableInterrupt__E                                     
    1001c289  ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E                               
    1001c289  ti_sysbios_hal_Hwi_getStackInfo__E                                        
    1001c28d  ti_sysbios_hal_Hwi_HwiProxy_startup__E                                    
    1001c28d  ti_sysbios_hal_Hwi_startup__E                                             
    1001c291  ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E                        
    1001c295  ti_sysbios_hal_Hwi_delete                                                 
    1001c299  ti_sysbios_hal_Hwi_switchFromBootStack__E                                 
    1001c29d  ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E                        
    1001c2a1  ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E                        
    1001c2a5  ti_sysbios_heaps_HeapMem_isBlocking__E                                    
    1001c2a9  ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S                    
    1001c2ad  ti_sysbios_knl_Clock_TimerProxy_getExpiredTicks__E                        
    1001c2b1  ti_sysbios_knl_Clock_TimerProxy_getPeriod__E                              
    1001c2b5  ti_sysbios_knl_Clock_delete                                               
    1001c2b9  ti_sysbios_knl_Clock_destruct                                             
    1001c2bd  ti_sysbios_knl_Clock_removeI__E                                           
    1001c2c1  ti_sysbios_knl_Clock_setTimeout__E                                        
    1001c2c5  ti_sysbios_knl_Mailbox_delete                                             
    1001c2c9  ti_sysbios_knl_Mailbox_destruct                                           
    1001c2cd  ti_sysbios_knl_Queue_delete                                               
    1001c2d1  ti_sysbios_knl_Queue_destruct                                             
    1001c2d5  ti_sysbios_knl_Queue_head__E                                              
    1001c2d9  ti_sysbios_knl_Queue_next__E                                              
    1001c2dd  ti_sysbios_knl_Semaphore_delete                                           
    1001c2e1  ti_sysbios_knl_Semaphore_destruct                                         
    1001c2e5  ti_sysbios_knl_Swi_delete                                                 
    1001c2e9  ti_sysbios_knl_Swi_destruct                                               
    1001c2ed  ti_sysbios_knl_Swi_postInit__I                                            
    1001c2f1  ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S                   
    1001c2f5  ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E                     
    1001c2f9  ti_sysbios_knl_Task_SupportProxy_start__E                                 
    1001c2fd  ti_sysbios_knl_Task_SupportProxy_swap__E                                  
    1001c301  ti_sysbios_knl_Task_delete                                                
    1001c305  ti_sysbios_knl_Task_destruct                                              
    1001c309  ti_sysbios_knl_Task_startup__E                                            
    1001c30d  xdc_runtime_Startup_startMods__I                                          
    1001c405  xdc_runtime_Core_createObject__I                                          
    1001c487  xdc_runtime_Error_policySpin__E                                           
    1001c489  xdc_runtime_Memory_alloc__E                                               
    1001c4f9  xdc_runtime_Core_deleteObject__I                                          
    1001c559  xdc_runtime_Startup_exec__E                                               
    1001c5a9  xdc_runtime_Assert_raise__I                                               
    1001c5f1  xdc_runtime_Core_assignParams__I                                          
    1001c639  xdc_runtime_Core_constructObject__I                                       
    1001c681  xdc_runtime_System_atexit__E                                              
    1001c6b9  xdc_runtime_System_processAtExit__E                                       
    1001c6ed  xdc_runtime_Core_assignLabel__I                                           
    1001c71d  xdc_runtime_Text_cordText__E                                              
    1001c749  xdc_runtime_System_abort__E                                               
    1001c769  xdc_runtime_Error_raiseX__E                                               
    1001c785  xdc_runtime_Memory_valloc__E                                              
    1001c7a1  xdc_runtime_Core_destructObject__I                                        
    1001c7b9  xdc_runtime_Error_check__E                                                
    1001c7d1  xdc_runtime_System_exit__E                                                
    1001c7e9  xdc_runtime_Text_ropeText__E                                              
    1001c801  xdc_runtime_Memory_free__E                                                
    1001c811  xdc_runtime_SysCallback_abort__E                                          
    1001c821  xdc_runtime_SysCallback_exit__E                                           
    1001c831  xdc_runtime_Timestamp_SupportProxy_get32__E                               
    1001c831  xdc_runtime_Timestamp_get32__E                                            
    1001c841  xdc_runtime_Error_init__E                                                 
    1001c84d  xdc_runtime_Memory_calloc__E                                              
    1001c859  xdc_runtime_Memory_getMaxDefaultTypeAlign__E                              
    1001c879  xdc_runtime_Gate_leaveSystem__E                                           
    1001c87f  xdc_runtime_System_Module_startup__E                                      
    1001c885  xdc_runtime_Gate_enterSystem__E                                           
    1001c889  xdc_runtime_Memory_HeapProxy_alloc__E                                     
    1001c88d  xdc_runtime_Memory_HeapProxy_free__E                                      
    1001c891  xdc_runtime_System_Module_GateProxy_enter__E                              
    1001c895  xdc_runtime_System_Module_GateProxy_leave__E                              
    1001c899  xdc_runtime_System_abortSpin__E                                           
    1001c89b  xdc_runtime_System_exitSpin__E                                            
    1001c89d  ti_sysbios_family_arm_m3_Hwi_dispatch__I                                  
    1001c96d  ti_sysbios_family_arm_m3_TaskSupport_buildTaskStack                       
    1001c9b9  ti_sysbios_family_arm_m3_Hwi_initStacks__E                                
    1001ca01  ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I                             
    1001ca21  ti_sysbios_family_xxx_Hwi_switchAndRunFunc                                
    1001ca3f  ti_sysbios_family_arm_m3_Hwi_pendSV__I                                    
    1001ca57  ti_sysbios_family_arm_m3_Hwi_return                                       
    1001ca59  ti_sysbios_family_arm_m3_TaskSupport_glue                                 
    1001ca69  ti_sysbios_family_arm_m3_TaskSupport_swap__E                              
    1001ca71  ti_sysbios_knl_Task_swapReturn                                            
    1001ca9b  ti_sysbios_rom_cortexm_cc26xx_CC26xx_getRevision__E                       
    20000000  ti_sysbios_family_arm_m3_Hwi_ramVectors                                   
    20000100  ti_sysbios_knl_Task_Module__state__V                                      
    20000144  ti_sysbios_family_arm_m3_Hwi_Module__state__V                             
    20000178  ti_sysbios_knl_Clock_Module__state__V                                     
    200001a4  ti_sysbios_BIOS_Module__state__V                                          
    200001c8  ti_sysbios_knl_Swi_Module__state__V                                       
    200001e4  ti_sysbios_family_arm_cc26xx_Timer_Module__state__V                       
    200001ec  ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V           
    200001f0  xdc_runtime_Startup_Module__state__V                                      
    200001f8  xdc_runtime_System_Module__state__V                                       
    20000200  xdc_runtime_Memory_Module__state__V                                       
    20000208  uartLog_tail                                                              
    20000209  uartLog_head                                                              
    2000020a  uartLog_evBufIsEmpty                                                      
    2000020c  uartLog_evtNum                                                            
    20000214  uartLog_outBuf                                                            
    200002c0  uartLog_evBuf                                                             
    200007dc  dispHandle                                                                
    200007e0  largo_codigo                                                              
    200007e4  largo_teclado_mt8224                                                      
    200007e8  largo_teclado_mt8224_ext                                                  
    200007f0  B                                                                         
    200007f4  R                                                                         
    2000084c  ledPinTable                                                               
    20000858  buttonPinTable                                                            
    20000900  codigo_balanza                                                            
    20000928  multiplexorPinTable                                                       
    20000954  teclado_mt2884                                                            
    2000098c  przTask                                                                   
    200009dc  teclado_mt2884_ext                                                        
    20000a45  przTaskStack                                                              
    20000d68  linkDBNumConns                                                            
    20000e7c  gapRoleTask                                                               
    20000ecc  gapRoleTaskStack                                                          
    200012b4  PowerCC26XX_module                                                        
    200013c0  ti_sysbios_family_arm_cc26xx_Timer_Module__root__V                        
    200013c8  ti_sysbios_family_arm_m3_Hwi_Module__root__V                              
    200013d0  ti_sysbios_family_arm_m3_Hwi_Object__table__V                             
    200013e8  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A                  
    200013ec  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A                 
    200013f0  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A                   
    200013f4  ti_sysbios_gates_GateHwi_Module__root__V                                  
    200013fc  ti_sysbios_gates_GateHwi_Object__table__V                                 
    20001400  ti_sysbios_gates_GateMutex_Module__root__V                                
    20001408  ti_sysbios_hal_Hwi_Module__root__V                                        
    20001410  ti_sysbios_heaps_HeapMem_Module__root__V                                  
    20001418  ti_sysbios_heaps_HeapMem_Object__table__V                                 
    20001430  ti_sysbios_knl_Clock_Module__root__V                                      
    20001438  ti_sysbios_knl_Clock_Object__table__V                                     
    20001458  ti_sysbios_knl_Event_Module__root__V                                      
    20001460  ti_sysbios_knl_Mailbox_Module__root__V                                    
    20001468  ti_sysbios_knl_Queue_Module__root__V                                      
    20001470  ti_sysbios_knl_Semaphore_Module__root__V                                  
    20001478  ti_sysbios_knl_Swi_Module__root__V                                        
    20001480  ti_sysbios_knl_Task_Module__root__V                                       
    20001488  ti_sysbios_knl_Task_Module_State_0_idleTask__A                            
    2000148c  xdc_runtime_LoggerCallback_Module__root__V                                
    20001494  xdc_runtime_LoggerCallback_Object__table__V                               
    200014a4  __xdc__init__addr                                                         
    20001558  ICall_dispatcher                                                          
    20001560  ICall_enterCriticalSection                                                
    20001564  ICall_leaveCriticalSection                                                
    2000157c  HEAPMGR_SIZE                                                              
    200016d4  rfRegTbl                                                                  
    20001724  ti_sysbios_knl_Task_Object__table__V                                      
    20001770  ti_sysbios_family_arm_cc26xx_Timer_Object__table__V                       
    200017b8  ti_sysbios_gates_GateMutex_Object__table__V                               
    200017f0  ti_sysbios_knl_Swi_Module_State_0_readyQ__A                               
    20001820  ti_sysbios_knl_Swi_Object__table__V                                       
    20001850  ti_sysbios_knl_Task_Module_State_0_readyQ__A                              
    20001880  user0Cfg                                                                  
    200018a8  lastAppOpcodeSent                                                         
    200018ac  pfnBMAlloc                                                                
    200018b0  pfnBMFree                                                                 
    200018bc  _lock                                                                     
    200018c0  _unlock                                                                   
    200018c4  __TI_cleanup_ptr                                                          
    200018c8  __TI_dtors_ptr                                                            
    200018cc  xdc_runtime_Registry_Module__state__V                                     
    200018d4  appAssertCback                                                            
    200018dc  main_func_sp                                                              
    200018e8  ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A                          
    20001f68  ti_sysbios_knl_Task_Instance_State_0_stack__A                             
    200022a8  uartCC26XXObjects                                                         
    200023bc  ti_sysbios_family_arm_m3_Hwi_dispatchTable                                
    20002484  PIN_HandleTable                                                           
    200026c8  PIN_NumPins                                                               
    200026f4  driverlib_release_0_45566                                                 
    200026fa  heapStart                                                                 
    20003f68  __stack                                                                   
    20003f68  heapEnd                                                                   
    20004368  __STACK_END                                                               
    20004368  __STACK_TOP                                                               
    20004f2c  A4_rw                                                                     
    20004f2c  COMMON_RAM_BASE_ADDR                                                      
    20004f40  P2_rw                                                                     
    20004f40  P2_s0                                                                     
    20004f40  eccRom_windowSize                                                         
    20004f44  eccRom_workzone                                                           
    20004f48  eccRom_param_p                                                            
    20004f4c  eccRom_param_r                                                            
    20004f50  eccRom_param_a                                                            
    20004f54  inScalar                                                                  
    20004f58  inPointX                                                                  
    20004f5c  inPointY                                                                  
    20004f60  outPointX                                                                 
    20004f64  outPointY                                                                 
    20004f68  SCAL                                                                      
    20004f6c  EXPX                                                                      
    20004f70  EXPY                                                                      
    20004f74  EXPZ                                                                      
    20004f78  EXPW                                                                      
    20004f7c  ACCX                                                                      
    20004f80  ACCY                                                                      
    20004f84  ACCZ                                                                      
    20004f88  TMP1                                                                      
    20004f8c  TMP2                                                                      
    20004f90  TMP3                                                                      
    20004f94  TMP4                                                                      
    20004f98  TMP5                                                                      
    20004f9c  TMP6                                                                      
    20004fa0  eccRom_param_Gx                                                           
    20004fa4  eccRom_param_Gy                                                           
    20004fa8  eccRom_param_b                                                            
    20004fac  P2_zi                                                                     
    20004fac  ratChanInfo                                                               
    20004fcc  fwInfoCmd                                                                 
    20004fd8  MSBMOD                                                                    
    20004fdc  aux64                                                                     
    20004fe4  MOD                                                                       
    20004fe8  LEN                                                                       
    20004ffc  pSspAesEncrypt_Sw                                                         
    e000e000  ti_sysbios_family_arm_m3_Hwi_nvic                                         
    ffffffff  __binit__                                                                 
    ffffffff  binit                                                                     
    UNDEFED   HwiP_restore                                                              
    UNDEFED   SHT$$INIT_ARRAY$$Base                                                     
    UNDEFED   SHT$$INIT_ARRAY$$Limit                                                    
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_Handle__label__S__mangled__                  
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_Object__delete__S__mangled__                 
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_Params__init__S__mangled__                   
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_query__E__mangled__                          
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S__mangled__             
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_Object__delete__S__mangled__                  
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_Params__init__S__mangled__                    
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E__mangled__                
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E__mangled__                 
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E__mangled__                    
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_startup__E__mangled__                         
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E__mangled__             
    UNDEFED   ti_sysbios_hal_Hwi_disableInterrupt__E                                    
    UNDEFED   ti_sysbios_hal_Hwi_enableInterrupt__E                                     
    UNDEFED   ti_sysbios_hal_Hwi_getStackInfo__E                                        
    UNDEFED   ti_sysbios_hal_Hwi_startup__E                                             
    UNDEFED   ti_sysbios_hal_Hwi_switchFromBootStack__E                                 
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S__mangled__     
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__delete__S__mangled__    
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_Params__init__S__mangled__      
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E__mangled__             
    UNDEFED   ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S__mangled__         
    UNDEFED   ti_sysbios_knl_Clock_TimerProxy_startup__E__mangled__                     
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S__mangled__        
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E__mangled__          
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_start__E__mangled__                      
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_swap__E__mangled__                       
    UNDEFED   xdc_runtime_Main_Module_GateProxy_Handle__label__S                        
    UNDEFED   xdc_runtime_Main_Module_GateProxy_Object__delete__S                       
    UNDEFED   xdc_runtime_Main_Module_GateProxy_query__E                                
    UNDEFED   xdc_runtime_Memory_HeapProxy_Handle__label__S__mangled__                  
    UNDEFED   xdc_runtime_Memory_HeapProxy_Object__delete__S__mangled__                 
    UNDEFED   xdc_runtime_System_Module_GateProxy_Handle__label__S__mangled__           
    UNDEFED   xdc_runtime_System_Module_GateProxy_Object__delete__S__mangled__          
    UNDEFED   xdc_runtime_System_Module_GateProxy_query__E__mangled__                   
    UNDEFED   xdc_runtime_System_SupportProxy_abort__E                                  
    UNDEFED   xdc_runtime_System_SupportProxy_exit__E                                   
    UNDEFED   xdc_runtime_Timestamp_SupportProxy_get64__E__mangled__                    
    UNDEFED   xdc_runtime_Timestamp_SupportProxy_getFreq__E__mangled__                  
    UNDEFED   xdc_runtime_Timestamp_get32__E                                            
    UNDEFED   xdc_runtime_Timestamp_get64__E                                            
    UNDEFED   xdc_runtime_Timestamp_getFreq__E                                          
    
    [1146 symbols]
    

  • More general information about this error message can be found in this wiki article about linker diagnostic number 10099.

    Thanks and regards,

    -George

  • Daniel Rabinovich said:

    . But here it is:

    mt8442_cc2650launchxl.map:

    The linker map file for the mt8442_cc2650launchxl.out file shows there is a total of 0x26C unused bytes in the FLASH and the linker has failed to allocate a .const section of size 0x1734 bytes. This means the link failed due to the size of the program exceeding the FLASH size in the CC2650.

    Therefore, you need to reduce the required flash size of the program to make it fit.

    As this is a SYS/BIOS based project, are there any unnecessary options you can remove from the SYS/BIOS configuration?

    Also, maybe the CCS Optimizer Assistant can help to find a combination of the Optimization Level and Speed vs Size Trade-off settings to allow the program to fit into the available flash.