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.

BLE CC2640 -UART and FLASH Memory Access

Other Parts Discussed in Thread: CC2650, SYSBIOS, CC2650STK

In my current BLE project,I have first initialized UART  function and then Initialized flash memory.During this scenario, UART function is not working.If i disable the functions of flash ,UART is working.so i couldn't access both at a time.it is related to memory issue ??  can anyone please clarify me ??

  • Hi KPon,

    It's hard to tell what's going on, it's possible that both the flash and the UART are on the same GPIO pins, causing one to not initialize if the other one is initialized. At least that's what it sounds like!

    What's the return value when you attempt to open the handle?

    Can you provide the board file along with initialization code?

    Regards,
    Rebel
  • hi everyone,

    can anyone please help me i am also facing the same issue.

    I want to use both uart and NVS flash (on chip) in my project if i initialize the both in my code my uart is not working.

    i am using onchip flash so no need to initialize the flash using GPIO pins only gpios are using for uart initialization.

    /* Uart Initialization: */

    void Board_openUART(void)

    {

       UART_Params uartParams;

       UART_Params_init(&uartParams);

       uartParams.baudRate = 115200;

      UART_Handle hUart = UART_open(Board_UART, &uartParams);

    }

    /* NVS flash initialization */

    void File_System_Int(void)

    {

    NVS_init();

    NvsHandle = NVS_open(CC2650_LAUNCHXL_NVS1F000, NULL);

    /* + 1 to make sure to write the '\0' character */

    strSize = strlen("bar1") + 1;

    /* make sure the buffer size is a multiple of 4 */

    strSize = (strSize + 4) & 0xFFFFFFFFC;

    }

    4278.Board.h

    Thanks in advance.

  • Dear Rebel,

    As maniswa said,we used GPIO Pins only for UART Initialization.My board has on chip 128kb flash memory so we don't want to initialize my memory through GPIO pins

    Here i have attached my code

    /* Uart Initialization: */

    void Board_openUART(void)

    {

    UART_Params uartParams;

    UART_Params_init(&uartParams);

    uartParams.baudRate = 115200;

    UART_Handle hUart = UART_open(Board_UART, &uartParams);

    }

    /* NVS flash initialization */

    void File_System_Int(void)

    {

    NVS_init();

    NvsHandle = NVS_open(CC2650_LAUNCHXL_NVS1F000, NULL);

    /* + 1 to make sure to write the '\0' character */

    strSize = strlen("bar1") + 1;

    /* make sure the buffer size is a multiple of 4 */

    strSize = (strSize + 4) & 0xFFFFFFFFC;

    }


    Thanks,
  • Does the NVS code work ok by itself (ie without opening the UART)?

    Where are you placing the NVS region? Does it accidentally overlap with application code/data?

    Can you share your CCS project?

    If not, can you share just your NVS HWAttrs board file contents?

    Are you using TI, or GCC tools?

    Alan

  • Dear alan,

    Thank you for your reply.

    NVS flash and Uart both are working fine individually. If i use both at a time then i am not getting any data on serial port and code is not running.

    Here NVS and Uart both i am using in normal function not in any Task function. Is there any issue if i use like this. or i have to use both in task function.

    I am using only TI Tools i.e; CCS v6 only

    can u please tell me where can i find this NVS HWAttrs board file?

    Thanks in advance.

  • The board file which contains the NVS driver configuration content should be named something like "CC2650_LAUNCHXL.c". There will also be a corresponding linker command file named "CC2650_LAUNCHXL.cmd" that I would like to see. Can you also share the generated .map file in your project's "debug" or "release" directory?

    I'm suspecting that the NVS Flash region being used is overlapping with application code or data, thus causing the application to destroy itself when writing to the Flash.

    Alan
  • hi alan,

    Here i am attaching the files.

    CC2650_LAUNCHXL.cmd file content as follows

    /*
     * Copyright (c) 2015-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.
     */
    /*
     *  ======== CC2650_LAUNCHXL.cmd ========
     *  CC26x0F128 PG2 linker configuration file for Code Composer Studio
     */
    /* Override default entry point.                                             */
    --entry_point ResetISR
    /* Allow main() to take args                                                 */
    --args 0x8
    /* 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 starting address of the application.  Normally the interrupt vectors  */
    /* must be located at the beginning of the application.                      */
    #define FLASH_BASE              0x0
    #define FLASH_SIZE              0x20000
    #define RAM_BASE                0x20000000
    #define RAM_SIZE                0x5000
    /* System memory map */
    MEMORY
    {
        /* Application stored in and executes from internal flash */
        FLASH (RX) : origin = FLASH_BASE, length = FLASH_SIZE
        /* Application uses internal RAM for data */
        SRAM (RWX) : origin = RAM_BASE, length = RAM_SIZE
    }
    /* Section allocation in memory */
    SECTIONS
    {
        .text           :   > FLASH
        .const          :   > FLASH
        .constdata      :   > FLASH
        .rodata         :   > FLASH
        .cinit          :   > FLASH
        .pinit          :   > FLASH
        .init_array     :   > FLASH
        .emb_text       :   > FLASH
        .ccfg           :   > FLASH (HIGH)
    #ifdef __TI_COMPILER_VERSION__
    #if __TI_COMPILER_VERSION__ >= 15009000
        .TI.ramfunc     : {} load=FLASH, run=SRAM, table(BINIT)
    #endif
    #endif
        .data           :   > SRAM
        .bss            :   > SRAM
        .sysmem         :   > SRAM
        .stack          :   > SRAM (HIGH)
        .nonretenvar    :   > SRAM
    }
    Application Map File:
    ******************************************************************************
                      TI ARM Linker PC v15.12.3                    
    ******************************************************************************
    >> Linked Sun Sep 17 10:34:23 2017
    OUTPUT FILE NAME:   <bleV2_app.out>
    ENTRY POINT SYMBOL: "ResetISR"  address: 00008ff5
    MEMORY CONFIGURATION
             name            origin    length      used     unused   attr    fill
    ----------------------  --------  ---------  --------  --------  ----  --------
      FLASH                 00000000   00011000  0000cf8d  00004073  R  X
      FLASH_LAST_PAGE       0001f000   00001000  00000058  00000fa8  R  X
      SRAM                  20000000   00004428  0000435f  000000c9  RW X
    SEGMENT ALLOCATION MAP
    run origin  load origin   length   init length attrs members
    ----------  ----------- ---------- ----------- ----- -------
    00000000    00000000    0000cf94   0000cf94    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    0000ba48   0000ba48    r-x .text.4
      0000c034    0000c034    00000673   00000673    r-- .const
      0000c6a8    0000c6a8    000008ec   000008ec    r-- .cinit
    0001ffa8    0001ffa8    00000058   00000058    r--
      0001ffa8    0001ffa8    00000058   00000058    r-- .ccfg
    20000100    20000100    00003e9b   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    00001a82   00000000    rw- .data
      20001c90    20001c90    0000230b   00000000    rw- .bss
    20004028    20004028    00000400   00000000    rw-
      20004028    20004028    00000400   00000000    rw- .stack
    SECTION ALLOCATION MAP
     output                                  attributes/
    section   page    origin      length       input sections
    --------  ----  ----------  ----------   ----------------
    .resetVecs 
    *          0    00000000    0000003c     
                      00000000    0000003c     app_ble_pem3.oem3 (.resetVecs)
    .text.1    0    0000003c    000000c4     
                      0000003c    000000c0     ioservice.obj (.text:io_WriteAttrCB$32)
                      000000fc    00000004     icall_api.obj (.text:GATTServApp_AddService)
    .const:ti_sysbios_knl_Task_Object__PARAMS__C 
    *          0    00000100    0000003c     
                      00000100    0000003c     app_ble_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_pem3.oem3 (.const:ti_sysbios_knl_Queue_Object__PARAMS__C)
    .const:ti_sysbios_knl_Idle_funcList__C 
    *          0    00000478    00000008     
                      00000478    00000008     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Idle_funcList__C)
    .text.2    0    00000480    00000004     
                      00000480    00000004     icall.obj (.text:ICall_primAbort$21)
    .const:ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C 
    *          0    00000484    00000004     
                      00000484    00000004     app_ble_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Object__table__C)
    .const:ti_sysbios_heaps_HeapMem_reqAlign__C 
    *          0    000004c4    00000004     
                      000004c4    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_reqAlign__C)
    .const:ti_sysbios_knl_Clock_serviceMargin__C 
    *          0    000004c8    00000004     
                      000004c8    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Clock_serviceMargin__C)
    .const:ti_sysbios_knl_Mailbox_Object__count__C 
    *          0    000004cc    00000004     
                      000004cc    00000004     app_ble_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_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_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_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_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_pem3.oem3 (.const:ti_sysbios_knl_Swi_Object__table__C)
    .const:ti_sysbios_knl_Swi_numPriorities__C 
    *          0    000004e4    00000004     
                      000004e4    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Swi_numPriorities__C)
    .const:ti_sysbios_knl_Task_Object__count__C 
    *          0    000004e8    00000004     
                      000004e8    00000004     app_ble_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_pem3.oem3 (.const:ti_sysbios_knl_Task_Object__table__C)
    .const:ti_sysbios_knl_Task_allBlockedFunc__C 
    *          0    000004f0    00000004     
                      000004f0    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_allBlockedFunc__C)
    .const:ti_sysbios_knl_Task_defaultStackHeap__C 
    *          0    000004f4    00000004     
                      000004f4    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_defaultStackHeap__C)
    .const:ti_sysbios_knl_Task_defaultStackSize__C 
    *          0    000004f8    00000004     
                      000004f8    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_defaultStackSize__C)
    .const:ti_sysbios_knl_Task_numConstructedTasks__C 
    *          0    000004fc    00000004     
                      000004fc    00000004     app_ble_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_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_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_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_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_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_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Module__id__C)
    .const:ti_sysbios_knl_Task_initStackFlag__C 
    *          0    0000050e    00000002     
                      0000050e    00000002     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_initStackFlag__C)
    .const:ti_sysbios_knl_Clock_tickMode__C 
    *          0    00000510    00000001     
                      00000510    00000001     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Clock_tickMode__C)
    .const:xdc_runtime_Startup_firstFxns__C 
    *          0    00000514    00000008     
                      00000514    00000008     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_firstFxns__C)
    .const:xdc_runtime_Startup_lastFxns__C 
    *          0    0000051c    00000008     
                      0000051c    00000008     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_lastFxns__C)
    .const:xdc_runtime_Assert_E_assertFailed__C 
    *          0    00000524    00000004     
                      00000524    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Assert_E_assertFailed__C)
    .const:xdc_runtime_Error_E_memory__C 
    *          0    00000528    00000004     
                      00000528    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Error_E_memory__C)
    .const:xdc_runtime_Error_policyFxn__C 
    *          0    0000052c    00000004     
                      0000052c    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Error_policyFxn__C)
    .const:xdc_runtime_IGateProvider_Interface__BASE__C 
    *          0    00000530    00000004     
                      00000530    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_IGateProvider_Interface__BASE__C)
    .const:xdc_runtime_IHeap_Interface__BASE__C 
    *          0    00000534    00000004     
                      00000534    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_IHeap_Interface__BASE__C)
    .const:xdc_runtime_IModule_Interface__BASE__C 
    *          0    00000538    00000004     
                      00000538    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_IModule_Interface__BASE__C)
    .const:xdc_runtime_Main_Module__diagsEnabled__C 
    *          0    0000053c    00000004     
                      0000053c    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__diagsEnabled__C)
    .const:xdc_runtime_Main_Module__diagsIncluded__C 
    *          0    00000540    00000004     
                      00000540    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__diagsIncluded__C)
    .const:xdc_runtime_Main_Module__diagsMask__C 
    *          0    00000544    00000004     
                      00000544    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__diagsMask__C)
    .const:xdc_runtime_Memory_defaultHeapInstance__C 
    *          0    00000548    00000004     
                      00000548    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Memory_defaultHeapInstance__C)
    .const:xdc_runtime_Startup_execImpl__C 
    *          0    0000054c    00000004     
                      0000054c    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_execImpl__C)
    .const:xdc_runtime_Startup_maxPasses__C 
    *          0    00000550    00000004     
                      00000550    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_maxPasses__C)
    .const:xdc_runtime_Startup_sfxnRts__C 
    *          0    00000554    00000004     
                      00000554    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_sfxnRts__C)
    .const:xdc_runtime_Startup_sfxnTab__C 
    *          0    00000558    00000004     
                      00000558    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_sfxnTab__C)
    .const:xdc_runtime_Startup_startModsFxn__C 
    *          0    0000055c    00000004     
                      0000055c    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_startModsFxn__C)
    .const:xdc_runtime_SysCallback_abortFxn__C 
    *          0    00000560    00000004     
                      00000560    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_SysCallback_abortFxn__C)
    .const:xdc_runtime_SysCallback_exitFxn__C 
    *          0    00000564    00000004     
                      00000564    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_SysCallback_exitFxn__C)
    .const:xdc_runtime_System_abortFxn__C 
    *          0    00000568    00000004     
                      00000568    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_System_abortFxn__C)
    .const:xdc_runtime_System_exitFxn__C 
    *          0    0000056c    00000004     
                      0000056c    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_System_exitFxn__C)
    .const:xdc_runtime_System_maxAtexitHandlers__C 
    *          0    00000570    00000004     
                      00000570    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_System_maxAtexitHandlers__C)
    .const:xdc_runtime_Text_charTab__C 
    *          0    00000574    00000004     
                      00000574    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Text_charTab__C)
    .const:xdc_runtime_Text_nameEmpty__C 
    *          0    00000578    00000004     
                      00000578    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Text_nameEmpty__C)
    .const:xdc_runtime_Text_nameStatic__C 
    *          0    0000057c    00000004     
                      0000057c    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Text_nameStatic__C)
    .const:xdc_runtime_Text_nameUnknown__C 
    *          0    00000580    00000004     
                      00000580    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Text_nameUnknown__C)
    .const:xdc_runtime_Main_Module__id__C 
    *          0    00000584    00000002     
                      00000584    00000002     app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__id__C)
    .const:xdc_runtime_Memory_Module__id__C 
    *          0    00000586    00000002     
                      00000586    00000002     app_ble_pem3.oem3 (.const:xdc_runtime_Memory_Module__id__C)
    .const:xdc_runtime_Text_charCnt__C 
    *          0    00000588    00000002     
                      00000588    00000002     app_ble_pem3.oem3 (.const:xdc_runtime_Text_charCnt__C)
    .const:xdc_runtime_Text_isLoaded__C 
    *          0    0000058a    00000002     
                      0000058a    00000002     app_ble_pem3.oem3 (.const:xdc_runtime_Text_isLoaded__C)
    .const:xdc_runtime_Error_policy__C 
    *          0    0000058c    00000001     
                      0000058c    00000001     app_ble_pem3.oem3 (.const:xdc_runtime_Error_policy__C)
    .const:ti_sysbios_rom_ROM_AONRTCChannelEnable 
    *          0    00000590    00000004     
                      00000590    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_AONRTCChannelEnable)
    .const:ti_sysbios_rom_ROM_AONRTCCompareValueSet 
    *          0    00000594    00000004     
                      00000594    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_AONRTCCompareValueSet)
    .const:ti_sysbios_rom_ROM_AONRTCCurrentCompareValueGet 
    *          0    00000598    00000004     
                      00000598    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_AONRTCCurrentCompareValueGet)
    .const:ti_sysbios_rom_ROM_AONRTCEventClear 
    *          0    0000059c    00000004     
                      0000059c    00000004     app_ble_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_pem3.oem3 (.const:ti_sysbios_knl_Task_Module_State_inactiveQ__O)
    .text.4    0    000005ec    0000ba48     
                      000005ec    000006dc     I2CCC26XX.obj (.text:I2CCC26XX_hwiFxn$14)
                      00000cc8    000004a8     sensortag.obj (.text:SensorTag_init$1)
                      00001170    00000340     I2CCC26XX.obj (.text:I2CCC26XX_primeTransfer$14)
                      000014b0    00000314     RFCC26XX_singleMode.obj (.text:fsmActiveState$16)
                      000017c4    000002ec     peripheral.obj (.text:gapRole_processGAPMsg$36)
                      00001ab0    00000284     sensortag_bar.obj (.text:VL53L0xDefaultSettings)
                      00001d34    00000264     I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                      00001f98    00000248     water_capacitive.obj (.text:flash_local_clear_wash_water_data)
                      000021e0    0000023c     peripheral.obj (.text:GAPRole_SetParameter)
                      0000241c    00000228     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
                      00002644    00000204     driverlib.lib : sys_ctrl.obj (.text:NOROM_SysCtrlSetRechargeBeforePowerDown)
                      00002848    000001f4     I2CCC26XX.obj (.text:I2CCC26XX_open)
                      00002a3c    000001f4     rtsv7M3_T_le_eabi.lib : ull_div_t2.obj (.text)
                      00002c30    000001d0     drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:calibrateRcoscHf1)
                      00002e00    000001cc     I2CCC26XX.obj (.text:I2CCC26XX_swiFxn$14)
                      00002fcc    000001a8     PINCC26XX.obj (.text:PIN_init)
                      00003174    000001a8     RFCC26XX_singleMode.obj (.text:abortCmd$16)
                      0000331c    000001a0     drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_write)
                      000034bc    00000190                             : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                      0000364c    00000184                             : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_doCalibrate)
                      000037d0    00000170     RFCC26XX_singleMode.obj (.text:RF_postCmd)
                      00003940    00000150     sensor_publish.obj (.text:RestDeviceCount_ClockHandler)
                      00003a90    00000138     sensortag.obj (.text:SensorTag_taskFxn$1)
                      00003bc8    00000136     rtsv7M3_T_le_eabi.lib : fd_div_t2.obj (.text)
                      00003cfe    00000002     drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_close)
                      00003d00    00000130     driverlib.lib : setup.obj (.text:NOROM_SetupAfterColdResetWakeupFromShutDownCfg3)
                      00003e30    00000128     sensortag_bar.obj (.text:VL53L0X_init)
                      00003f58    0000011c     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_init)
                      00004074    00000118     sensortag_bar.obj (.text:Range_Sensor_Read)
                      0000418c    00000114     RFCC26XX_singleMode.obj (.text:fsmSetupState$16)
                      000042a0    00000110     sensortag_bar.obj (.text:ValidateSensorRead)
                      000043b0    00000110     RFCC26XX_singleMode.obj (.text:hwiFxnCpe0Active$16)
                      000044c0    0000010c     sensortag_bar.obj (.text:VL53L0x_getSpadInfo)
                      000045cc    0000010c     sensortag_bar.obj (.text:sensorTaskFxn$2)
                      000046d8    00000108     water_capacitive.obj (.text:Init_Peripherals)
                      000047e0    00000100     sensortag_hum.obj (.text:Validate_SensorRead)
                      000048e0    000000fc     water_capacitive.obj (.text:Init_clocksystem)
                      000049dc    000000fc     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                      00004ad8    000000fc     peripheral.obj (.text:gapRole_taskFxn$36)
                      00004bd4    000000fa     rtsv7M3_T_le_eabi.lib : fs_add_t2.obj (.text)
                      00004cce    00000002     drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_exit)
                      00004cd0    000000f8     sensortag_hum.obj (.text:sensorTaskFxn$4)
                      00004dc8    000000ec     icall.obj (.text:ICall_primWaitMatch$21)
                      00004eb4    000000ec     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_hwiIntFxn)
                      00004fa0    000000ec     sensortag_bar.obj (.text:VL53L0x_readRangeSingleMillimeters)
                      0000508c    000000ec     RFCC26XX_singleMode.obj (.text:rf_init$16)
                      00005178    000000e8     sensortag.obj (.text:SensorTag_processStateChangeEvt$1)
                      00005260    000000e8     registerservice.obj (.text:sensor_WriteAttrCB$37)
                      00005348    000000d4     driverlib.lib : setup.obj (.text:NOROM_SetupAfterColdResetWakeupFromShutDownCfg2)
                      0000541c    000000d4     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_releaseDependency)
                      000054f0    000000d0     I2CCC26XX.obj (.text:I2CCC26XX_close)
                      000055c0    000000d0     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_setDependency)
                      00005690    000000cc     driverlib.lib : setup.obj (.text:TrimAfterColdResetWakeupFromShutDown$65)
                      0000575c    000000c8     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_initHw)
                      00005824    000000c8     RFCC26XX_singleMode.obj (.text:fsmPowerUpState$16)
                      000058ec    000000c4     sensortag_hum.obj (.text:pressure_sensor_reading)
                      000059b0    000000c4     RFCC26XX_singleMode.obj (.text:swiFxnHw$16)
                      00005a74    000000c0     RFCC26XX_singleMode.obj (.text:RF_open)
                      00005b34    000000bc     power_cc26xx_tirtos.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
                      00005bf0    000000bc     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                      00005cac    000000b4     PINCC26XX.obj (.text:PINCC26XX_setIoCfg$15)
                      00005d60    000000b0     devinfoservice.obj (.text:devInfo_ReadAttrCB$28)
                      00005e10    000000b0     peripheral.obj (.text:gapRole_init$36)
                      00005ec0    000000a4     driverlib.lib : setup.obj (.text:NOROM_SetupTrimDevice)
                      00005f64    000000a0     auto_init.aem3 : auto_init.oem3 (.text)
                      00006004    000000a0     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Task_setPri__E)
                      000060a4    0000009c     driverlib.lib : aux_adc.obj (.text:NOROM_AUXADCDisable)
                      00006140    0000009c     rtsv7M3_T_le_eabi.lib : memcpy_t2.obj (.text)
                      000061dc    00000098     driverlib.lib : aux_adc.obj (.text:NOROM_AUXADCEnableSync)
                      00006274    00000098     PINCC26XX.obj (.text:PIN_open)
                      0000630c    00000098     sensortag_io.obj (.text:SensorTagIO_processCharChangeEvt)
                      000063a4    00000098     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
                      0000643c    00000094     gattservapp_util.obj (.text:GATTServApp_ProcessCharCfg)
                      000064d0    00000094     drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_open)
                      00006564    00000094                             : UARTCC26XX.oem3 (.text:writeFinishedDoCallback)
                      000065f8    00000092     rtsv7M3_T_le_eabi.lib : fs_div_t2.obj (.text)
                      0000668a    00000002     sensortag.obj (.text:SensorTag_callback$1)
                      0000668c    00000090     I2CCC26XX.obj (.text:I2CCC26XX_blockingCallback$14)
                      0000671c    00000090     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                      000067ac    0000008c     devinfoservice.obj (.text:DevInfo_SetParameter)
                      00006838    0000008c     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_initIO)
                      000068c4    0000008c                             : UARTCC26XX.oem3 (.text:UARTCC26XX_writeCancel)
                      00006950    00000088     I2CCC26XX.obj (.text:I2CCC26XX_cancel)
                      000069d8    00000088     driverlib.lib : osc.obj (.text:NOROM_OSCHF_GetStartupTime)
                      00006a60    00000088     sensortag_register.obj (.text:SensorTagRegister_processCharChangeEvt)
                      00006ae8    00000088     registerservice.obj (.text:sensor_ReadAttrCB$37)
                      00006b70    00000086     rtsv7M3_T_le_eabi.lib : fd_cmp_t2.obj (.text:__aeabi_cdrcmple)
                      00006bf6    00000002     drivers_cc26xxware.aem3 : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_close)
                      00006bf8    00000084     icall.obj (.text:ICall_heapMalloc)
                      00006c7c    00000084     icall.obj (.text:ICall_primSetTimer$21)
                      00006d00    00000084     TRNGCC26XX.obj (.text:TRNGCC26XX_getNumber)
                      00006d84    00000080     RFCC26XX_singleMode.obj (.text:RF_pendCmd)
                      00006e04    00000080     sensortag_bar.obj (.text:SensorTagBar_processCharChangeEvt)
                      00006e84    00000080     sensortag_hum.obj (.text:SensorTagHum_processCharChangeEvt)
                      00006f04    0000007c     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
                      00006f80    0000007a     rtsv7M3_T_le_eabi.lib : fs_mul_t2.obj (.text)
                      00006ffa    0000007a                           : memset_t2.obj (.text)
                      00007074    00000078     driverlib.lib : setup.obj (.text:NOROM_SetupAfterColdResetWakeupFromShutDownCfg1)
                      000070ec    00000078     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_close)
                      00007164    00000074     icall_cc2650.obj (.text:ICallPlatform_pwrUpdActivityCounter)
                      000071d8    00000074     icall.obj (.text:ICall_primSend$21)
                      0000724c    00000074     drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_auxISR)
                      000072c0    00000074     sensortag_register.obj (.text:SensorTagRegister_reset)
                      00007334    00000074     drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:calibrateRcoscHf2)
                      000073a8    00000074     peripheral.obj (.text:gapRole_startConnUpdate$36)
                      0000741c    00000074     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:writeTxFifoFlush)
                      00007490    00000070     driverlib.lib : chipinfo.obj (.text:NOROM_ChipInfo_GetHwRevision)
                      00007500    00000070     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_readCancel)
                      00007570    0000006c     sensortag.obj (.text:Board_writeString)
                      000075dc    0000006c     sensortag.obj (.text:Board_writeStringValue)
                      00007648    0000006c     icall.obj (.text:ICall_createRemoteTasks)
                      000076b4    0000006c     icall.obj (.text:ICall_heapInit)
                      00007720    0000006c     driverlib.lib : setup.obj (.text:NOROM_SetupGetTrimForAmpcompCtrl)
                      0000778c    0000006c     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
                      000077f8    0000006c     sensor_publish.obj (.text:PublishCount_ClockHandler)
                      00007864    0000006c     sensortag_tmp.obj (.text:SensorTagTmp_processCharChangeEvt)
                      000078d0    0000006c     gattservapp_util.obj (.text:gattServApp_SendNotiInd$30)
                      0000793c    0000006a     rtsv7M3_T_le_eabi.lib : copy_decompress_rle.obj (.text)
                      000079a6    00000002     RFCC26XX_singleMode.obj (.text:defaultErrCb$16)
                      000079a8    00000068     driverlib.lib : setup.obj (.text:NOROM_SetupGetTrimForAnabypassValue1)
                      00007a10    00000068                   : sys_ctrl.obj (.text:NOROM_SysCtrl_DCDC_VoltageConditionalControl)
                      00007a78    00000068     drivers_cc26xxware.aem3 : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_initHw)
                      00007ae0    00000068     RFCC26XX_singleMode.obj (.text:fsmPowerDownState$16)
                      00007b48    00000064     irtempservice.obj (.text:IRTemp_setParameter)
                      00007bac    00000064     water_capacitive.obj (.text:PeopleCount_ClockHandler$10)
                      00007c10    00000064     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_start__E)
                      00007c74    00000062     barometerservice.obj (.text:sensor_ReadAttrCB$26)
                      00007cd6    00000002     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:emptyClockFunc)
                      00007cd8    00000060     I2CCC26XX.obj (.text:I2CCC26XX_initIO$14)
                      00007d38    00000060     icall.obj (.text:ICall_primEnroll$21)
                      00007d98    00000060     drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_RCOSC_clockFunc)
                      00007df8    00000060     RFCC26XX_singleMode.obj (.text:RF_getCurrentTime)
                      00007e58    00000060     sensortag_bar.obj (.text:VL53L0XI2cInit)
                      00007eb8    00000060     rtsv7M3_T_le_eabi.lib : fs_cmp_t2.obj (.text:__aeabi_cfcmple)
                      00007f18    00000060     drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:updateSubSecInc)
                      00007f78    0000005e                             : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_open)
                      00007fd6    00000002     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E)
                      00007fd8    0000005c     icall.obj (.text:ICall_primThreadServes$21)
                      00008034    0000005c     driverlib.lib : osc.obj (.text:NOROM_OSCHF_AttemptToSwitchToXosc)
                      00008090    0000005c                   : sys_ctrl.obj (.text:NOROM_SysCtrlAdjustRechargeAfterPowerDown)
                      000080ec    0000005c     RFCC26XX_singleMode.obj (.text:applyRfCorePatch$16)
                      00008148    0000005c     RFCC26XX_singleMode.obj (.text:decActiveClientCnt$16)
                      000081a4    0000005c     app_ble_pem3.oem3 (.text:xdc_runtime_Startup_getState__I)
                      00008200    0000005a     humidityservice.obj (.text:sensor_ReadAttrCB$31)
                      0000825a    0000005a     irtempservice.obj (.text:sensor_ReadAttrCB$33)
                      000082b4    00000058     PINCC26XX.obj (.text:PIN_remove)
                      0000830c    00000058     drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
                      00008364    00000058                             : UARTCC26XX.oem3 (.text:UARTCC26XX_control)
                      000083bc    00000054     barometerservice.obj (.text:Barometer_setParameter)
                      00008410    00000054     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:configureXOSCHF)
                      00008464    00000054     RFCC26XX_singleMode.obj (.text:fsmXOSCState$16)
                      000084b8    00000054     RFCC26XX_singleMode.obj (.text:hwiFxnHw$16)
                      0000850c    00000054     RFCC26XX_singleMode.obj (.text:ratChanFree$16)
                      00008560    00000054     rtsv7M3_T_le_eabi.lib : exit.obj (.text)
                      000085b4    00000052     icall.obj (.text:ICall_primWait$21)
                      00008606    00000002     app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_nullFunc__I)
                      00008608    00000050     icall_api.obj (.text:GAP_DeviceInit)
                      00008658    00000050     icall_api.obj (.text:GAP_UpdateAdvertisingData)
                      000086a8    00000050     humidityservice.obj (.text:Humidity_setParameter)
                      000086f8    00000050     icall.obj (.text:ICall_primRegisterApp$21)
                      00008748    00000050     driverlib.lib : setup.obj (.text:NOROM_SetupSetCacheModeAccordingToCcfgSetting)
                      00008798    00000050     RFCC26XX_singleMode.obj (.text:RF_getInfo)
                      000087e8    00000050     sensortag.obj (.text:SensorTag_setDeviceInfo$1)
                      00008838    00000050     RFCC26XX_singleMode.obj (.text:syncCb$16)
                      00008888    0000004e     ioservice.obj (.text:io_ReadAttrCB$32)
                      000088d6    00000002     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_triggerFunc__I)
                      000088d8    0000004c     icall.obj (.text:ICall_newTask$21)
                      00008924    0000004c     icall.obj (.text:ICall_primGetEntityId$21)
                      00008970    0000004c     driverlib.lib : osc.obj (.text:NOROM_OSCClockSourceSet)
                      000089bc    0000004c     sensortag.obj (.text:SensorTag_processCharValueChangeEvt$1)
                      00008a08    0000004c     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_swiIntFxn)
                      00008a54    0000004c     util.obj (.text:Util_constructClock)
                      00008aa0    0000004c     RFCC26XX_singleMode.obj (.text:dispatchOpWhen$16)
                      00008aec    0000004c     peripheral.obj (.text:gapRole_processStackMsg$36)
                      00008b38    0000004c     rtsv7M3_T_le_eabi.lib : cpy_tbl.obj (.text)
                      00008b84    0000004c     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:startTxFifoEmptyClk)
                      00008bd0    0000004a     gattservapp_util.obj (.text:GATTServApp_ProcessCCCWriteReq)
                      00008c1a    00000002     app_ble_pem3.oem3 (.text:ti_sysbios_rom_cortexm_cc26xx_CC26xx_badRomRevision__E)
                      00008c1c    00000048     I2CCC26XX.obj (.text:I2CCC26XX_initHw$14)
                      00008c64    00000048     water_capacitive.obj (.text:Init_Capacitivesensor_System)
                      00008cac    00000048     driverlib.lib : chipinfo.obj (.text:NOROM_ChipInfo_GetChipFamily)
                      00008cf4    00000048                   : ddi.obj (.text:NOROM_DDI16BitfieldWrite)
                      00008d3c    00000048     sensortag_bar.obj (.text:VL53L0x_readMulti)
                      00008d84    00000048     sensortag_bar.obj (.text:VL53L0x_setSignalRateLimit)
                      00008dcc    00000048     icall_api.obj (.text:gattIndNoti$24)
                      00008e14    00000048     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:notify)
                      00008e5c    00000044     icall_api.obj (.text:GAP_TerminateLinkReq)
                      00008ea0    00000044     drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_control)
                      00008ee4    00000044                             : NVSCC26XX.oem3 (.text:NVSCC26XX_read)
                      00008f28    00000044     PINCC26XX.obj (.text:PIN_setOutputEnable)
                      00008f6c    00000044     PINCC26XX.obj (.text:PIN_swi$15)
                      00008fb0    00000044     sensortag_io.obj (.text:SensorTagIO_blinkLed)
                      00008ff4    00000044     boot.aem3 : boot.oem3 (.text)
                      00009038    00000044     icall_api.obj (.text:gapSendParamAndPtrCmd$24)
                      0000907c    00000044     rtsv7M3_T_le_eabi.lib : fd_tou_t2.obj (.text)
                      000090c0    00000042     icall.obj (.text:ICall_primCreateTask$21)
                      00009102    00000002     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_defaultAbort)
                      00009104    00000040     peripheral.obj (.text:GAPRole_SendUpdateParam)
                      00009144    00000040     peripheral.obj (.text:GAPRole_createTask)
                      00009184    00000040     driverlib.lib : ddi.obj (.text:NOROM_DDI16BitfieldRead)
                      000091c4    00000040     RFCC26XX_singleMode.obj (.text:RF_getRssi)
                      00009204    00000040     sensortag_io.obj (.text:SensorTagIO_reset)
                      00009244    00000040     sensortag_register.obj (.text:readRegister$6)
                      00009284    0000003c     icall_api.obj (.text:GAP_GetParamValue)
                      000092c0    0000003c     icall_api.obj (.text:GATTServApp_RegisterService)
                      000092fc    0000003c     icall_cc2650.obj (.text:ICallPlatform_pwrConfigACAction)
                      00009338    0000003c     driverlib.lib : osc.obj (.text:NOROM_OSC_HPOSCRelativeFrequencyOffsetGet)
                      00009374    0000003c                   : rfc.obj (.text:NOROM_RFCSynthPowerDown)
                      000093b0    0000003c     RFCC26XX_singleMode.obj (.text:RF_runCmd)
                      000093ec    0000003c     registerservice.obj (.text:Register_setParameter)
                      00009428    0000003c     sensortag_bar.obj (.text:SensorTagBar_createTask)
                      00009464    0000003c     sensortag_hum.obj (.text:SensorTagHum_createTask)
                      000094a0    0000003c     sensortag.obj (.text:SensorTag_createTask)
                      000094dc    0000003c     sensortag_bar.obj (.text:VL53L0XI2cWriteRead)
                      00009518    0000003c     sensortag.obj (.text:WDTInitFxn)
                      00009554    0000003c     zan_config.obj (.text:ZanInit)
                      00009590    0000003c     RFCC26XX_singleMode.obj (.text:postDirImmCmd$16)
                      000095cc    0000003c     icall_api.obj (.text:profileSetParameter$24)
                      00009608    0000003c     icall_api.obj (.text:sendWaitMatchCS$24)
                      00009644    0000003c     icall_api.obj (.text:sendWaitMatchValueCS$24)
                      00009680    00000038     icall_api.obj (.text:GAPBondMgr_LinkEst)
                      000096b8    00000038     I2C.obj (.text:I2C_init)
                      000096f0    00000038     icall.obj (.text:ICall_primGetMaxMSecs$21)
                      00009728    00000038     drivers_cc26xxware.aem3 : NVS.oem3 (.text:NVS_init)
                      00009760    00000038     PINCC26XX.obj (.text:PIN_setOutputValue)
                      00009798    00000038     drivers_cc26xxware.aem3 : UART.oem3 (.text:UART_init)
                      000097d0    00000038     util.obj (.text:Util_restartClock)
                      00009808    00000038     sensortag_bar.obj (.text:VL53L0XI2cWrite)
                      00009840    00000038     drivers_cc26xxware.aem3 : Watchdog.oem3 (.text:Watchdog_init)
                      00009878    00000038     icall_api.obj (.text:linkDB_NumConns)
                      000098b0    00000038     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:readData)
                      000098e8    00000038     rtsv7M3_T_le_eabi.lib : fs_toi_t2.obj (.text)
                      00009920    00000038     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E)
                      00009958    00000038     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:writeData)
                      00009990    00000036     RFCC26XX_singleMode.obj (.text:updateImplicitState$16)
                      000099c6    00000002     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_defaultExit)
                      000099c8    00000034     icall_api.obj (.text:GAPBondMgr_SetParameter)
                      000099fc    00000034     icall_api.obj (.text:GAP_SetParamValue)
                      00009a30    00000034     icall.obj (.text:ICall_primEntityId2ServiceId$21)
                      00009a64    00000034     icall.obj (.text:ICall_primFetchMsg$21)
                      00009a98    00000034     icall.obj (.text:ICall_primRegisterISR$21)
                      00009acc    00000034     icall.obj (.text:ICall_primRegisterISR_Ext$21)
                      00009b00    00000034     icall.obj (.text:ICall_searchServiceEntity)
                      00009b34    00000034     ioservice.obj (.text:Io_setParameter)
                      00009b68    00000034     driverlib.lib : ddi.obj (.text:NOROM_DDI32RegWrite)
                      00009b9c    00000034                   : osc.obj (.text:NOROM_OSCHF_SwitchToRcOscTurnOffXosc)
                      00009bd0    00000034     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
                      00009c04    00000034     RFCC26XX_singleMode.obj (.text:Q_push$16)
                      00009c38    00000034     registerservice.obj (.text:Register_getParameter)
                      00009c6c    00000034     sensortag_bar.obj (.text:VL53L0XI2cRead)
                      00009ca0    00000034     drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:disableFlashCache)
                      00009cd4    00000034     icall_api.obj (.text:osal_snv_read)
                      00009d08    00000034     icall_api.obj (.text:osal_snv_write)
                      00009d3c    00000034     icall_api.obj (.text:profileAddService$24)
                      00009d70    00000034     rtsv7M3_T_le_eabi.lib : fs_tou_t2.obj (.text)
                      00009da4    00000032     icall_api.obj (.text:gapSendParamsCmd$24)
                      00009dd6    00000032     icall_api.obj (.text:gapSendPtrParamsCmd$24)
                      00009e08    00000032     icall_api.obj (.text:matchGapSetGetParamCS$24)
                      00009e3a    00000032     icall_api.obj (.text:matchGattCmdStatus$24)
                      00009e6c    00000032     icall_api.obj (.text:matchUtilNvCS$24)
                      00009e9e    00000032     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E)
                      00009ed0    00000030     icall_cc2650.obj (.text:ICallPlatform_pwrNotify$22)
                      00009f00    00000030     icall_cc2650.obj (.text:ICallPlatform_pwrRegisterNotify)
                      00009f30    00000030     icall.obj (.text:ICall_msecs2Ticks$21)
                      00009f60    00000030     icall.obj (.text:ICall_searchTask$21)
                      00009f90    00000030     driverlib.lib : setup.obj (.text:NOROM_SetupSetAonRtcSubSecInc)
                      00009fc0    00000030                   : trng.obj (.text:NOROM_TRNGConfigure)
                      00009ff0    00000030     drivers_cc26xxware.aem3 : NVS.oem3 (.text:NVS_open)
                      0000a020    00000030                             : PowerCC26XX.oem3 (.text:Power_releaseConstraint)
                      0000a050    00000030                             : PowerCC26XX.oem3 (.text:Power_setConstraint)
                      0000a080    00000030     water_capacitive.obj (.text:Read_Watercap_Sensor$10)
                      0000a0b0    00000030     sensortag.obj (.text:SensorTag_resetAllModules$1)
                      0000a0e0    00000030     drivers_cc26xxware.aem3 : UART.oem3 (.text:UART_open)
                      0000a110    00000030                             : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_setReload)
                      0000a140    00000030                             : Watchdog.oem3 (.text:Watchdog_open)
                      0000a170    00000030     app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
                      0000a1a0    00000030     app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
                      0000a1d0    00000030     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_initDevice__I)
                      0000a200    00000030                      : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I)
                      0000a230    0000002e     icall_cc2650.obj (.text:ICallPlatform_pwrDispenseImpl$22)
                      0000a25e    0000002e     icall_cc2650.obj (.text:ICallPlatform_pwrRequireImpl$22)
                      0000a28c    0000002e     sensortag.obj (.text:ICall_fetchServiceMsg$1)
                      0000a2ba    0000002e     peripheral.obj (.text:ICall_fetchServiceMsg$36)
                      0000a2e8    0000002e     icall.obj (.text:ICall_msgDequeue$21)
                      0000a316    0000002e     icall_api.obj (.text:matchProfileAddServiceCS$24)
                      0000a344    0000002e     rtsv7M3_T_le_eabi.lib : i_tofd_t2.obj (.text)
                      0000a372    00000002     --HOLE-- [fill = 0]
                      0000a374    0000002c     sensortag.obj (.text:Board_openUART)
                      0000a3a0    0000002c     icall.obj (.text:ICall_heapFree)
                      0000a3cc    0000002c     ioservice.obj (.text:ICall_malloc$32)
                      0000a3f8    0000002c     icall.obj (.text:ICall_msgEnqueue$21)
                      0000a424    0000002c     icall.obj (.text:ICall_primAllocMsg$21)
                      0000a450    0000002c     icall.obj (.text:ICall_primFetchServiceMsg$21)
                      0000a47c    0000002c     icall_api.obj (.text:ICall_sendServiceMsg$24)
                      0000a4a8    0000002c     driverlib.lib : setup.obj (.text:NOROM_SetupGetTrimForRadcExtCfg)
                      0000a4d4    0000002c     PINCC26XX.obj (.text:PINCC26XX_setMux)
                      0000a500    0000002c     PINCC26XX.obj (.text:PIN_setConfig)
                      0000a52c    0000002c     driverlib.lib : adi.obj (.text:SafeHapiAuxAdiSelect)
                      0000a558    0000002c     RFCC26XX_singleMode.obj (.text:getCmd$16)
                      0000a584    0000002c     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_getTicksUntilInterrupt__E)
                      0000a5b0    0000002c     st_util.obj (.text:utilExtractUuid16)
                      0000a5dc    0000002a     icall_api.obj (.text:ICall_waitMatch$24)
                      0000a606    0000002a     TRNGCC26XX.obj (.text:TRNGCC26XX_isParamValid)
                      0000a630    0000002a     util.obj (.text:Util_enqueueMsg)
                      0000a65a    0000002a     icall_api.obj (.text:matchProfileCS$24)
                      0000a684    00000028     icall_api.obj (.text:GAPBondMgr_Register)
                      0000a6ac    00000028     gattservapp_util.obj (.text:GATTServApp_WriteCharCfg)
                      0000a6d4    00000028     water_capacitive.obj (.text:Get_Data_From_Flash)
                      0000a6fc    00000028     icall.obj (.text:ICall_init)
                      0000a724    00000028     icall.obj (.text:ICall_msgPrepend$21)
                      0000a74c    00000028     sensortag.obj (.text:ICall_registerApp$1)
                      0000a774    00000028     sensortag_bar.obj (.text:ICall_registerApp$2)
                      0000a79c    00000028     peripheral.obj (.text:ICall_registerApp$36)
                      0000a7c4    00000028     sensortag_hum.obj (.text:ICall_registerApp$4)
                      0000a7ec    00000028     ioservice.obj (.text:Io_addService)
                      0000a814    00000028     driverlib.lib : aon_batmon.obj (.text:NOROM_AONBatMonTemperatureGetDegC)
                      0000a83c    00000028     PINCC26XX.obj (.text:PINCC26XX_getPinCount)
                      0000a864    00000028     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
                      0000a88c    00000028                             : PowerCC26XX.oem3 (.text:Power_registerNotify)
                      0000a8b4    00000028     driverlib.lib : adi.obj (.text:SafeHapiVoid)
                      0000a8dc    00000028     sensortag_bar.obj (.text:SensorTagBar_reset)
                      0000a904    00000028     sensortag_hum.obj (.text:SensorTagHum_reset)
                      0000a92c    00000028     sensortag.obj (.text:SensorTag_enqueueMsg$1)
                      0000a954    00000028     TRNGCC26XX.obj (.text:TRNGCC26XX_init)
                      0000a97c    00000028     sensortag_bar.obj (.text:VL53L0XI2cwriteReg)
                      0000a9a4    00000028     drivers_cc26xxware.aem3 : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_convertMsToTicks)
                      0000a9cc    00000028     water_capacitive.obj (.text:Write_Data_To_Flash)
                      0000a9f4    00000028     RFCC26XX_singleMode.obj (.text:clkPowerUpFxn$16)
                      0000aa1c    00000028     gattservapp_util.obj (.text:gattServApp_FindCharCfgItem$30)
                      0000aa44    00000028     main.obj (.text:main)
                      0000aa6c    00000028     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E)
                      0000aa94    00000026     drivers_cc26xxware.aem3 : List.oem3 (.text:List_put)
                      0000aaba    00000002     --HOLE-- [fill = 0]
                      0000aabc    00000024     barometerservice.obj (.text:Barometer_getParameter)
                      0000aae0    00000024     icall_api.obj (.text:GAPBondMgr_LinkTerm)
                      0000ab04    00000024     I2C.obj (.text:I2C_open)
                      0000ab28    00000024     icall_api.obj (.text:ICall_getLocalMsgEntityId$24)
                      0000ab4c    00000024     icall_api.obj (.text:ICall_threadServes$24)
                      0000ab70    00000024     sensortag_register.obj (.text:SensorTagRegister_update)
                      0000ab94    00000024     drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:getTdcSemaphore)
                      0000abb8    00000024     RFCC26XX_singleMode.obj (.text:hwiFxnCpe0PowerFsm$16)
                      0000abdc    00000024     rtsv7M3_T_le_eabi.lib : u_tofs_t2.obj (.text)
                      0000ac00    00000024     app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_registerRTSLock__I)
                      0000ac24    00000024     app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_removeRTSLock__I)
                      0000ac48    00000022     icall.obj (.text:ICall_dispatch$21)
                      0000ac6a    00000022     sensortag.obj (.text:ICall_malloc$1)
                      0000ac8c    00000022     util.obj (.text:ICall_malloc$9)
                      0000acae    00000022     rtsv7M3_T_le_eabi.lib : memcmp.obj (.text)
                      0000acd0    00000020     sensortag_hum.obj (.text:Adc_Init)
                      0000acf0    00000020     water_capacitive.obj (.text:File_System_Int$10)
                      0000ad10    00000020     gattservapp_util.obj (.text:GATTServApp_InitCharCfg)
                      0000ad30    00000020     humidityservice.obj (.text:Humidity_getParameter)
                      0000ad50    00000020     icall_api.obj (.text:ICall_allocMsg$24)
                      0000ad70    00000020     icall_api.obj (.text:ICall_getEntityId$24)
                      0000ad90    00000020     devinfoservice.obj (.text:ICall_malloc$28)
                      0000adb0    00000020     icall.obj (.text:ICall_primService$21)
                      0000add0    00000020     icall.obj (.text:ICall_searchService$21)
                      0000adf0    00000020     irtempservice.obj (.text:IRTemp_getParameter)
                      0000ae10    00000020     driverlib.lib : rfc.obj (.text:NOROM_RFCDoorbellSendTo)
                      0000ae30    00000020                   : rfc.obj (.text:NOROM_RFCRfTrimRead)
                      0000ae50    00000020                   : setup.obj (.text:NOROM_SetupGetTrimForXoscHfCtl)
                      0000ae70    00000020     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_unregisterNotify)
                      0000ae90    00000020     sensortag_tmp.obj (.text:SensorTagTmp_reset)
                      0000aeb0    00000020     sensortag_hum.obj (.text:adcIsr)
                      0000aed0    00000020     RFCC26XX_singleMode.obj (.text:allocCmd$16)
                      0000aef0    00000020     rtsv7M3_T_le_eabi.lib : u_tofd_t2.obj (.text)
                      0000af10    00000020     app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsLock__I)
                      0000af30    00000020     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_stop__E)
                      0000af50    0000001e     icall.obj (.text:ICall_primSendServiceMsg$21)
                      0000af6e    0000001e     PINCC26XX.obj (.text:PIN_close)
                      0000af8c    0000001e     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_getTransitionLatency)
                      0000afaa    0000001e     icall_api.obj (.text:waitMatchCS$24)
                      0000afc8    0000001c     peripheral.obj (.text:GAPRole_StartDevice)
                      0000afe4    0000001c     icall_api.obj (.text:GATT_bm_alloc)
                      0000b000    0000001c     icall_api.obj (.text:GATT_bm_free)
                      0000b01c    0000001c     icall.obj (.text:ICall_initPrim$21)
                      0000b038    0000001c     sensortag.obj (.text:ICall_wait$1)
                      0000b054    0000001c     peripheral.obj (.text:ICall_wait$36)
                      0000b070    0000001c     driverlib.lib : flash.obj (.text:NOROM_FlashProgram)
                      0000b08c    0000001c                   : flash.obj (.text:NOROM_FlashSectorErase)
                      0000b0a8    0000001c                   : osc.obj (.text:NOROM_OSCClockSourceGet)
                      0000b0c4    0000001c                   : setup.obj (.text:NOROM_SetupGetTrimForAmpcompTh2)
                      0000b0e0    0000001c                   : setup.obj (.text:NOROM_SetupGetTrimForRcOscLfRtuneCtuneTrim)
                      0000b0fc    0000001c     drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_getAttrs)
                      0000b118    0000001c     PINCC26XX.obj (.text:PINCC26XX_setIoCfgMux$15)
                      0000b134    0000001c     PINCC26XX.obj (.text:PIN_hwi$15)
                      0000b150    0000001c     RFCC26XX_singleMode.obj (.text:RF_runDirectCmd)
                      0000b16c    0000001c     RFCC26XX_singleMode.obj (.text:RF_runImmediateCmd)
                      0000b188    0000001c     sensortag_io.obj (.text:SensorTagIO_init)
                      0000b1a4    0000001c     sensortag.obj (.text:SensorTag_processAppMsg$1)
                      0000b1c0    0000001c     TRNGCC26XX.obj (.text:TRNGCC26XX_open)
                      0000b1dc    0000001c     water_capacitive.obj (.text:Three_Clock_stop)
                      0000b1f8    0000001c     drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:enableFlashCache)
                      0000b214    0000001c     peripheral.obj (.text:gapRole_HandleParamUpdateNoSuccess$36)
                      0000b230    0000001c     icall_api.obj (.text:getStatusValueFromErrNo$24)
                      0000b24c    0000001c     TRNGCC26XX.obj (.text:openTRNG)
                      0000b268    0000001c     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_dynamicStub__E)
                      0000b284    0000001c     sensortag_register.obj (.text:writeRegister$6)
                      0000b2a0    0000001a     icall_api.obj (.text:GATT_Notification)
                      0000b2ba    0000001a     icall.obj (.text:ICall_enterCSImpl)
                      0000b2d4    0000001a     icall.obj (.text:ICall_primSetTimerMSecs$21)
                      0000b2ee    0000001a     drivers_cc26xxware.aem3 : List.oem3 (.text:List_remove)
                      0000b308    0000001a     util.obj (.text:Util_dequeueMsg)
                      0000b322    0000001a     icall_api.obj (.text:matchGattIndNotiCS$24)
                      0000b33c    00000018     peripheral.obj (.text:GAPRole_TerminateConnection)
                      0000b354    00000018     I2C.obj (.text:I2C_Params_init)
                      0000b36c    00000018     icall_cc2650.obj (.text:ICallPlatform_pwrDispense)
                      0000b384    00000018     icall_cc2650.obj (.text:ICallPlatform_pwrRequire)
                      0000b39c    00000018     sensortag.obj (.text:ICall_free$1)
                      0000b3b4    00000018     devinfoservice.obj (.text:ICall_free$28)
                      0000b3cc    00000018     util.obj (.text:ICall_free$9)
                      0000b3e4    00000018     sensortag.obj (.text:ICall_freeMsg$1)
                      0000b3fc    00000018     icall.obj (.text:ICall_freeMsg$21)
                      0000b414    00000018     icall_api.obj (.text:ICall_freeMsg$24)
                      0000b42c    00000018     peripheral.obj (.text:ICall_freeMsg$36)
                      0000b444    00000018     icall.obj (.text:ICall_primMalloc$21)
                      0000b45c    00000018     driverlib.lib : aon_rtc.obj (.text:NOROM_AONRTCCurrentCompareValueGet)
                      0000b474    00000018                   : chipinfo.obj (.text:NOROM_ChipInfo_GetPackageType)
                      0000b48c    00000018                   : osc.obj (.text:NOROM_OSCHF_TurnOnXosc)
                      0000b4a4    00000018                   : rfc.obj (.text:NOROM_RFCCpeIntGetAndClear)
                      0000b4bc    00000018                   : setup.obj (.text:NOROM_SetupGetTrimForAdcShModeEn)
                      0000b4d4    00000018                   : setup.obj (.text:NOROM_SetupGetTrimForAdcShVbufEn)
                      0000b4ec    00000018                   : setup.obj (.text:NOROM_SetupGetTrimForAmpcompTh1)
                      0000b504    00000018                   : setup.obj (.text:NOROM_SetupGetTrimForDblrLoopFilterResetVoltage)
                      0000b51c    00000018                   : setup.obj (.text:NOROM_SetupGetTrimForRcOscLfIBiasTrim)
                      0000b534    00000018                   : setup.obj (.text:NOROM_SetupGetTrimForXoscLfRegulatorAndCmirrwrRatio)
                      0000b54c    00000018                   : sys_ctrl.obj (.text:NOROM_SysCtrlResetSourceGet)
                      0000b564    00000018     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_idleFunc)
                      0000b57c    00000018     RFCC26XX_singleMode.obj (.text:Q_pop$16)
                      0000b594    00000018     registerservice.obj (.text:Register_registerAppCBs)
                      0000b5ac    00000018     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_init)
                      0000b5c4    00000018                             : UART.oem3 (.text:UART_Params_init)
                      0000b5dc    00000018     util.obj (.text:Util_constructQueue)
                      0000b5f4    00000018     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:configureRFCoreClocks)
                      0000b60c    00000018     peripheral.obj (.text:gapRole_setEvent$36)
                      0000b624    00000018     sensortag_bar.obj (.text:initCharacteristicValue$2)
                      0000b63c    00000018     sensortag_hum.obj (.text:initCharacteristicValue$4)
                      0000b654    00000018     sensortag_tmp.obj (.text:initCharacteristicValue$7)
                      0000b66c    00000018     rtsv7M3_T_le_eabi.lib : args_main.obj (.text)
                      0000b684    00000018                           : ll_mul_t2.obj (.text)
                      0000b69c    00000018     RFCC26XX_singleMode.obj (.text:swiFxnFsm$16)
                      0000b6b4    00000018     app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsUnlock__I)
                      0000b6cc    00000018     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Swi_or__E)
                      0000b6e4    00000018     app_ble_pem3.oem3 (.text:ti_sysbios_rom_cortexm_cc26xx_CC26xx_checkRevision__E)
                      0000b6fc    00000016     main.obj (.text:AssertHandler)
                      0000b712    00000016     icall.obj (.text:ICall_abort$21)
                      0000b728    00000016     icall.obj (.text:ICall_leaveCSImpl)
                      0000b73e    00000016     icall.obj (.text:ICall_primStopTimer$21)
                      0000b754    00000016     ble_user_config.obj (.text:driverTable_fnSpinlock)
                      0000b76a    00000016     app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__I)
                      0000b780    00000014     devinfoservice.obj (.text:DevInfo_AddService)
                      0000b794    00000014     ioservice.obj (.text:Io_getParameter)
                      0000b7a8    00000014     ioservice.obj (.text:Io_registerAppCBs)
                      0000b7bc    00000014     driverlib.lib : aon_rtc.obj (.text:NOROM_AONRTCCurrent64BitValueGet)
                      0000b7d0    00000014                   : chipinfo.obj (.text:NOROM_ThisCodeIsBuiltForCC26xxHwRev22AndLater_HaltIfViolated)
                      0000b7e4    00000014     RFCC26XX_singleMode.obj (.text:RF_Params_init)
                      0000b7f8    00000014     registerservice.obj (.text:Register_addService)
                      0000b80c    00000014     sensortag.obj (.text:SensorTag_clockHandler$1)
                      0000b820    00000014     sensortag.obj (.text:SensorTag_updateAdvertisingData)
                      0000b834    00000014     sensortag.obj (.text:SysCtrlSystemReset$1)
                      0000b848    00000014     sensortag_bar.obj (.text:SysCtrlSystemReset$2)
                      0000b85c    00000014     sensortag_hum.obj (.text:SysCtrlSystemReset$4)
                      0000b870    00000014     sensortag_io.obj (.text:SysCtrlSystemReset$5)
                      0000b884    00000014     rtsv7M3_T_le_eabi.lib : _lock.obj (.text)
                      0000b898    00000014                           : strlen.obj (.text)
                      0000b8ac    00000014     icall_api.obj (.text:setICallCmdEvtHdr$24)
                      0000b8c0    00000014     app_ble_pem3.oem3 (.text:ti_sysbios_knl_Clock_doTick__I)
                      0000b8d4    00000014     sensortag.obj (.text:wdtCallback)
                      0000b8e8    00000012     gattservapp_util.obj (.text:GATTServApp_FindAttr)
                      0000b8fa    00000012     RFCC26XX_singleMode.obj (.text:RF_getCmdOp)
                      0000b90c    00000012     app_ble_pem3.oem3 (.text:xdc_runtime_Startup_exec__I)
                      0000b91e    00000002     --HOLE-- [fill = 0]
                      0000b920    00000010     RFCC26XX_singleMode.obj (.text:FsmDispatch$16)
                      0000b930    00000010     peripheral.obj (.text:GAPRole_GetParameter)
                      0000b940    00000010     icall_api.obj (.text:GAP_EndDiscoverable)
                      0000b950    00000010     gattservapp_util.obj (.text:GATTServApp_ReadCharCfg)
                      0000b960    00000010     icall_cc2650.obj (.text:ICallPlatform_pwrGetXOSCStartupTime)
                      0000b970    00000010     icall.obj (.text:ICall_primGetTickPeriod$21)
                      0000b980    00000010     icall.obj (.text:ICall_taskEntry$21)
                      0000b990    00000010     driverlib.lib : aux_adc.obj (.text:NOROM_AUXADCReadFifo)
                      0000b9a0    00000010                   : rfc.obj (.text:NOROM_RFCRfTrimSet)
                      0000b9b0    00000010                   : setup.obj (.text:NOROM_SetupGetTrimForXoscHfFastStart)
                      0000b9c0    00000010                   : setup.obj (.text:NOROM_SetupGetTrimForXoscHfIbiastherm)
                      0000b9d0    00000010     drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_init)
                      0000b9e0    00000010     ble_user_config.obj (.text:RegisterAssertCback)
                      0000b9f0    00000010     sensortag_register.obj (.text:SensorTagRegister_init)
                      0000ba00    00000010     util.obj (.text:Util_isActive)
                      0000ba10    00000010     sensortag.obj (.text:WDTClose)
                      0000ba20    00000010     drivers_cc26xxware.aem3 : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_clear)
                      0000ba30    00000010                             : Watchdog.oem3 (.text:Watchdog_Params_init)
                      0000ba40    00000010     I2CCC26XX.obj (.text:i2cPostNotify$14)
                      0000ba50    00000010     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_post__E)
                      0000ba60    00000010     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:uartPostNotify)
                      0000ba70    00000010     sensortag_bar.obj (.text:writeReg)
                      0000ba80    0000000e     icall_api.obj (.text:GATT_Indication)
                      0000ba8e    0000000e     icall_cc2650.obj (.text:ICallPlatform_pwrGetTransitionState)
                      0000ba9c    0000000e     icall_cc2650.obj (.text:ICallPlatform_pwrIsStableXOSCHF)
                      0000baaa    0000000e     icall.obj (.text:ICall_primDisableMInt$21)
                      0000bab8    0000000e     icall.obj (.text:ICall_primEnableMInt$21)
                      0000bac6    0000000e     icall.obj (.text:ICall_primFreeMsg$21)
                      0000bad4    0000000e     icall.obj (.text:ICall_primGetTicks$21)
                      0000bae2    0000000e     driverlib.lib : setup.obj (.text:NOROM_SetupSignExtendVddrTrimValue)
                      0000baf0    0000000e                   : vims.obj (.text:NOROM_VIMSModeGet)
                      0000bafe    0000000e     drivers_cc26xxware.aem3 : NVS.oem3 (.text:NVS_write)
                      0000bb0c    0000000e     sensortag_bar.obj (.text:VL53L0XI2creadReg)
                      0000bb1a    0000000e     rtsv7M3_T_le_eabi.lib : copy_decompress_none.obj (.text:decompress:none)
                      0000bb28    0000000e     sensortag_bar.obj (.text:makeuint16)
                      0000bb36    0000000e     icall_api.obj (.text:matchGSARegisterServiceCS$24)
                      0000bb44    0000000e     icall_api.obj (.text:matchGapLinkEstCS$24)
                      0000bb52    0000000e     icall_api.obj (.text:matchLinkDBNumConnsCS$24)
                      0000bb60    0000000e     icall_api.obj (.text:setDispatchCmdEvtHdr$24)
                      0000bb6e    0000000e     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E)
                      0000bb7c    0000000c     RFCC26XX_singleMode.obj (.text:FsmNextState$16)
                      0000bb88    0000000c     icall_api.obj (.text:GAP_MakeDiscoverable)
                      0000bb94    0000000c     icall_api.obj (.text:GAP_TerminateAuth)
                      0000bba0    0000000c     icall_api.obj (.text:GAP_UpdateLinkParamReq)
                      0000bbac    0000000c     icall_api.obj (.text:GAP_UpdateLinkParamReqReply)
                      0000bbb8    0000000c     icall_api.obj (.text:GGS_SetParameter)
                      0000bbc4    0000000c     icall.obj (.text:ICall_clockFunc$21)
                      0000bbd0    0000000c     icall.obj (.text:ICall_primDisableInt$21)
                      0000bbdc    0000000c     icall.obj (.text:ICall_primEnableInt$21)
                      0000bbe8    0000000c     icall.obj (.text:ICall_primFree$21)
                      0000bbf4    0000000c     icall.obj (.text:ICall_primSignal$21)
                      0000bc00    0000000c     driverlib.lib : cpu.obj (.text:NOROM_CPUcpsid)
                      0000bc0c    0000000c                   : cpu.obj (.text:NOROM_CPUcpsie)
                      0000bc18    0000000c     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_getConstraintMask)
                      0000bc24    0000000c                             : PowerCC26XX.oem3 (.text:Power_getDependencyCount)
                      0000bc30    0000000c                             : PowerCC26XX.oem3 (.text:Power_getTransitionState)
                      0000bc3c    0000000c     sensortag.obj (.text:SensorTag_processGATTMsg$1)
                      0000bc48    0000000c     sensortag.obj (.text:SensorTag_processStackMsg$1)
                      0000bc54    0000000c     sensortag.obj (.text:SensorTag_testResult)
                      0000bc60    0000000c     uart_logs.obj (.text:UartLog_init)
                      0000bc6c    0000000c     util.obj (.text:Util_startClock)
                      0000bc78    0000000c     sensortag_bar.obj (.text:VL53L0XI2cDeselect)
                      0000bc84    0000000c     icall_api.obj (.text:matchProfileSetParamCS$24)
                      0000bc90    0000000c     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_BIOS_getThreadType__E)
                      0000bc9c    0000000c                      : rom_sysbios_config.obj (.text:ti_sysbios_hal_Hwi_Params__init__S)
                      0000bca8    0000000c                      : rom_sysbios.obj (.text:ti_sysbios_knl_Swi_getTrigger__E)
                      0000bcb4    0000000c     app_ble_pem3.oem3 (.text:xdc_runtime_Startup_reset__I)
                      0000bcc0    0000000c     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Startup_rtsDone__E)
                      0000bccc    0000000a     I2CCC26XX.obj (.text:I2CCC26XX_init)
                      0000bcd6    0000000a     I2C.obj (.text:I2C_transfer)
                      0000bce0    0000000a     icall_cc2650.obj (.text:ICallPlatform_pwrSwitchXOSCHF)
                      0000bcea    0000000a     icall.obj (.text:ICall_primE2S$21)
                      0000bcf4    0000000a     drivers_cc26xxware.aem3 : List.oem3 (.text:List_empty)
                      0000bcfe    0000000a                             : NVS.oem3 (.text:NVS_read)
                      0000bd08    0000000a     sensortag.obj (.text:SensorTag_charValueChangeCB)
                      0000bd12    0000000a     sensortag.obj (.text:SensorTag_stateChangeCB$1)
                      0000bd1c    0000000a     drivers_cc26xxware.aem3 : UART.oem3 (.text:UART_write)
                      0000bd26    0000000a                             : Watchdog.oem3 (.text:Watchdog_clear)
                      0000bd30    0000000a                             : Watchdog.oem3 (.text:Watchdog_close)
                      0000bd3a    0000000a                             : Watchdog.oem3 (.text:Watchdog_setReload)
                      0000bd44    00000008     RFCC26XX_singleMode.obj (.text:RF_flushCmd)
                      0000bd4c    00000008     drivers_cc26xxware.aem3 : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_init)
                      0000bd54    00000008     sensortag_io.obj (.text:ioChangeCB$5)
                      0000bd5c    00000008     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:readSemCallback)
                      0000bd64    00000008     sensortag_register.obj (.text:registerChangeCB$6)
                      0000bd6c    00000008     sensortag_tmp.obj (.text:sensorConfigChangeCB$7)
                      0000bd74    00000008     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:writeSemCallback)
                      0000bd7c    00000006     icall_api.obj (.text:GGS_AddService)
                      0000bd82    00000006     I2CCC26XX.obj (.text:I2CCC26XX_control)
                      0000bd88    00000006     icall.obj (.text:ICall_mallocImpl)
                      0000bd8e    00000006     driverlib.lib : cpu.obj (.text:NOROM_CPUdelay)
                      0000bd94    00000006     PINCC26XX.obj (.text:PIN_registerIntCb)
                      0000bd9a    00000006     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_readPolling)
                      0000bda0    00000006                             : UARTCC26XX.oem3 (.text:UARTCC26XX_writePolling)
                      0000bda6    00000006                             : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_control)
                      0000bdac    00000006     RFCC26XX_singleMode.obj (.text:clkInactivityFxn$16)
                      0000bdb2    00000006     rtsv7M3_T_le_eabi.lib : copy_decompress_rle.obj (.text:decompress:rle24)
                      0000bdb8    00000006     icall_api.obj (.text:gattAddService$24)
                      0000bdbe    00000006     icall_api.obj (.text:matchBondMgrSetParamCS$24)
                      0000bdc4    00000006     icall_api.obj (.text:matchGGSSetParamCS$24)
                      0000bdca    00000006     icall_api.obj (.text:matchGapConnParamUpdateReplyCS$24)
                      0000bdd0    00000006     icall_api.obj (.text:matchGapDeviceInitCS$24)
                      0000bdd6    00000006     icall_api.obj (.text:matchGapEndDiscoverableCS$24)
                      0000bddc    00000006     icall_api.obj (.text:matchGapGetParamCS$24)
                      0000bde2    00000006     icall_api.obj (.text:matchGapMakeDiscoverableCS$24)
                      0000bde8    00000006     icall_api.obj (.text:matchGapSetParamCS$24)
                      0000bdee    00000006     icall_api.obj (.text:matchGapTerminateAuthCS$24)
                      0000bdf4    00000006     icall_api.obj (.text:matchGapTerminateLinkReqCS$24)
                      0000bdfa    00000006     icall_api.obj (.text:matchGapUpdateAdvDataCS$24)
                      0000be00    00000006     icall_api.obj (.text:matchGapUpdateLinkParamReqCS$24)
                      0000be06    00000006     icall_api.obj (.text:matchUtilNvReadCS$24)
                      0000be0c    00000006     icall_api.obj (.text:matchUtilNvWriteCS$24)
                      0000be12    00000006     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_setFunc__E)
                      0000be18    00000004     tirtosport.aem3 : HwiP_tirtos.oem3 (.text:HwiP_disable)
                      0000be1c    00000004     drivers_cc26xxware.aem3 : List.oem3 (.text:List_head)
                      0000be20    00000004                             : List.oem3 (.text:List_next)
                      0000be24    00000004     RFCC26XX_singleMode.obj (.text:Q_peek$16)
                      0000be28    00000004     util.obj (.text:Util_stopClock)
                      0000be2c    00000004     zan_config.obj (.text:ZanConfig_Read)
                      0000be30    00000004     peripheral.obj (.text:gapRole_SetupGAP$36)
                      0000be34    00000004     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:nopResourceHandler)
                      0000be38    00000004     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_getCount64__E)
                      0000be3c    00000004                      : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_isActive__E)
                      0000be40    00000004                      : rom_sysbios.obj (.text:ti_sysbios_knl_Queue_insert__E)
                      0000be44    00000008     (.tramp.xdc_runtime_Core_assignParams__I.1)
                      0000be4c    00000008     (.tramp.ti_sysbios_hal_Hwi_enableInterrupt__E.1)
                      0000be54    00000008     (.tramp.ti_sysbios_hal_Hwi_disableInterrupt__E.1)
                      0000be5c    00000008     (.tramp.ti_sysbios_knl_Task_enable__E.1)
                      0000be64    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_enableFxn__E.1)
                      0000be6c    00000008     (.tramp.xdc_runtime_Startup_startMods__I.1)
                      0000be74    00000008     (.tramp.ti_sysbios_knl_Clock_logTick__E.1)
                      0000be7c    00000008     (.tramp.ti_sysbios_BIOS_RtsGateProxy_leave__E.1)
                      0000be84    00000008     (.tramp.ti_sysbios_knl_Queue_construct.1)
                      0000be8c    00000008     (.tramp.ti_sysbios_knl_Queue_get__E.1)
                      0000be94    00000008     (.tramp.ti_sysbios_BIOS_RtsGateProxy_enter__E.1)
                      0000be9c    00000008     (.tramp.ti_sysbios_BIOS_start__E.1)
                      0000bea4    00000008     (.tramp.ti_sysbios_knl_Queue_put__E.1)
                      0000beac    00000008     (.tramp.ti_sysbios_knl_Task_startup__E.1)
                      0000beb4    00000008     (.tramp.ti_sysbios_knl_Swi_startup__E.1)
                      0000bebc    00000008     (.tramp.ti_sysbios_hal_Hwi_startup__E.1)
                      0000bec4    00000008     (.tramp.ti_sysbios_family_arm_cc26xx_Timer_startup__E.1)
                      0000becc    00000008     (.tramp.xdc_runtime_System_atexit__E.1)
                      0000bed4    00000008     (.tramp.ti_sysbios_BIOS_setThreadType__E.1)
                      0000bedc    00000008     (.tramp.ti_sysbios_hal_Hwi_create.1)
                      0000bee4    00000008     (.tramp.ti_sysbios_knl_Task_construct.1)
                      0000beec    00000008     (.tramp.xdc_runtime_System_exit__E.1)
                      0000bef4    00000008     (.tramp.ti_sysbios_knl_Semaphore_create.1)
                      0000befc    00000008     (.tramp.ti_sysbios_knl_Task_create.1)
                      0000bf04    00000008     (.tramp.ti_sysbios_knl_Task_Params__init__S.1)
                      0000bf0c    00000008     (.tramp.ti_sysbios_knl_Clock_destruct.1)
                      0000bf14    00000008     (.tramp.ti_sysbios_knl_Clock_create.1)
                      0000bf1c    00000008     (.tramp.ti_sysbios_knl_Clock_scheduleNextTick__E.1)
                      0000bf24    00000008     (.tramp.ti_sysbios_knl_Clock_walkQueueDynamic__E.1)
                      0000bf2c    00000008     (.tramp.ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E.1)
                      0000bf34    00000008     (.tramp.ti_sysbios_knl_Queue_enqueue__E.1)
                      0000bf3c    00000008     (.tramp.ti_sysbios_knl_Queue_remove__E.1)
                      0000bf44    00000008     (.tramp.ti_sysbios_BIOS_getCpuFreq__E.1)
                      0000bf4c    00000008     (.tramp.ti_sysbios_knl_Semaphore_destruct.1)
                      0000bf54    00000008     (.tramp.ti_sysbios_knl_Swi_destruct.1)
                      0000bf5c    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_destruct.1)
                      0000bf64    00000008     (.tramp.ti_sysbios_knl_Task_self__E.1)
                      0000bf6c    00000008     (.tramp.ti_sysbios_knl_Clock_getTicks__E.1)
                      0000bf74    00000008     (.tramp.ti_sysbios_knl_Queue_empty__E.1)
                      0000bf7c    00000008     (.tramp.xdc_runtime_System_abortSpin__E.1)
                      0000bf84    00000008     (.tramp.ti_sysbios_knl_Clock_construct.1)
                      0000bf8c    00000008     (.tramp.ti_sysbios_knl_Clock_Params__init__S.1)
                      0000bf94    00000008     (.tramp.ti_sysbios_knl_Semaphore_construct.1)
                      0000bf9c    00000008     (.tramp.ti_sysbios_knl_Semaphore_Params__init__S.1)
                      0000bfa4    00000008     (.tramp.ti_sysbios_knl_Swi_construct.1)
                      0000bfac    00000008     (.tramp.ti_sysbios_knl_Swi_Params__init__S.1)
                      0000bfb4    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_construct.1)
                      0000bfbc    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_Params__init__S.1)
                      0000bfc4    00000008     (.tramp.ti_sysbios_knl_Task_restore__E.1)
                      0000bfcc    00000008     (.tramp.ti_sysbios_knl_Swi_restore__E.1)
                      0000bfd4    00000008     (.tramp.ti_sysbios_knl_Swi_disable__E.1)
                      0000bfdc    00000008     (.tramp.ti_sysbios_knl_Task_disable__E.1)
                      0000bfe4    00000008     (.tramp.ti_sysbios_knl_Semaphore_post__E.1)
                      0000bfec    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E.1)
                      0000bff4    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E.1)
                      0000bffc    00000008     (.tramp.ti_sysbios_knl_Semaphore_pend__E.1)
                      0000c004    00000008     (.tramp.ti_sysbios_knl_Clock_start__E.1)
                      0000c00c    00000008     (.tramp.ti_sysbios_knl_Clock_setTimeout__E.1)
                      0000c014    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_restoreFxn__E.1)
                      0000c01c    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_disableFxn__E.1)
                      0000c024    00000008     (.tramp.ti_sysbios_knl_Task_sleep__E.1)
                      0000c02c    00000008     (.tramp.ti_sysbios_knl_Swi_post__E.1)
    .const     0    0000c034    00000673     
                      0000c034    000000cc     icall.obj (.const:$O15$$)
                      0000c100    00000050     sensortag.obj (.const:$O2$$)
                      0000c150    0000004c     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.const:resourceDB)
                      0000c19c    0000004c     ble_user_config.obj (.const:rfDriverTable)
                      0000c1e8    00000048     app_ble_pem3.oem3 (.const:.string)
                      0000c230    00000040     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.const)
                      0000c270    0000002c     gatt_uuid.obj (.const:$O22$$)
                      0000c29c    00000028     drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.const:UARTCC26XX_fxnTable)
                      0000c2c4    00000027     ble_user_config.obj (.const:txPowerTable)
                      0000c2eb    00000001     drivers_cc26xxware.aem3 : NVS.oem3 (.const)
                      0000c2ec    00000024                             : UART.oem3 (.const:UART_defaultParams)
                      0000c310    00000024     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_sfxnTab__A)
                      0000c334    00000020     drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.const)
                      0000c354    0000001c     CC2650STK.obj (.const:BoardGpioInitTable)
                      0000c370    0000001c     drivers_cc26xxware.aem3 : WatchdogCC26XX.oem3 (.const)
                      0000c38c    00000018     I2CCC26XX.obj (.const:I2CCC26XX_fxnTable)
                      0000c3a4    00000018     CC2650STK.obj (.const:I2C_config)
                      0000c3bc    00000018     CC2650STK.obj (.const:NVS_config)
                      0000c3d4    00000018     CC2650STK.obj (.const:UART_config)
                      0000c3ec    00000018     CC2650STK.obj (.const:Watchdog_config)
                      0000c404    00000018     CC2650STK.obj (.const:i2cCC26xxHWAttrs)
                      0000c41c    00000018     CC2650STK.obj (.const:uartCC26XXHWAttrs)
                      0000c434    00000014     RFCC26XX_singleMode.obj (.const:RF_defaultParams$16)
                      0000c448    00000012     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_sfxnRts__A)
                      0000c45a    00000010     ioservice.obj (.const:.string:ioConfUUID)
                      0000c46a    00000010     ioservice.obj (.const:.string:ioDataUUID)
                      0000c47a    00000010     ioservice.obj (.const:.string:ioServUUID)
                      0000c48a    00000010     registerservice.obj (.const:.string:registerAddressUUID$37)
                      0000c49a    00000010     registerservice.obj (.const:.string:registerDataUUID$37)
                      0000c4aa    00000010     registerservice.obj (.const:.string:registerDeviceIDUUID$37)
                      0000c4ba    00000010     barometerservice.obj (.const:.string:sensorCfgUUID$26)
                      0000c4ca    00000010     humidityservice.obj (.const:.string:sensorCfgUUID$31)
                      0000c4da    00000010     irtempservice.obj (.const:.string:sensorCfgUUID$33)
                      0000c4ea    00000010     barometerservice.obj (.const:.string:sensorDataUUID$26)
                      0000c4fa    00000010     humidityservice.obj (.const:.string:sensorDataUUID$31)
                      0000c50a    00000010     irtempservice.obj (.const:.string:sensorDataUUID$33)
                      0000c51a    00000010     barometerservice.obj (.const:.string:sensorPeriodUUID$26)
                      0000c52a    00000010     humidityservice.obj (.const:.string:sensorPeriodUUID$31)
                      0000c53a    00000010     irtempservice.obj (.const:.string:sensorPeriodUUID$33)
                      0000c54a    00000010     barometerservice.obj (.const:.string:sensorServiceUUID$26)
                      0000c55a    00000010     humidityservice.obj (.const:.string:sensorServiceUUID$31)
                      0000c56a    00000010     irtempservice.obj (.const:.string:sensorServiceUUID$33)
                      0000c57a    00000010     registerservice.obj (.const:.string:sensorServiceUUID$37)
                      0000c58a    00000002     devinfoservice.obj (.const:.string:devInfo11073CertUUID)
                      0000c58c    00000010     I2C.obj (.const:I2C_defaultParams)
                      0000c59c    00000010     CC2650STK.obj (.const:PowerCC26XX_config)
                      0000c5ac    00000010     CC2650STK.obj (.const:TRNGCC26XX_config)
                      0000c5bc    00000010     CC2650STK.obj (.const:nvsCC26xxHWAttrs)
                      0000c5cc    0000000e     zan_config.obj (.const:zanConfig_default)
                      0000c5da    00000002     devinfoservice.obj (.const:.string:devInfoFirmwareRevUUID)
                      0000c5dc    0000000c     devinfoservice.obj (.const:devInfoCBs)
                      0000c5e8    0000000c     drivers_cc26xxware.aem3 : Watchdog.oem3 (.const)
                      0000c5f4    0000000c     ioservice.obj (.const:ioCBs)
                      0000c600    0000000c     registerservice.obj (.const:sensorCBs$37)
                      0000c60c    0000000c     ble_user_config.obj (.const:trngDriverTable)
                      0000c618    0000000c     CC2650STK.obj (.const:watchdogCC26XXHwAttrs)
                      0000c624    0000000c     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_firstFxns__A)
                      0000c630    00000008     I2CCC26XX.obj (.const:bitRate$14)
                      0000c638    00000008     devinfoservice.obj (.const:devInfoService$28)
                      0000c640    00000008     ioservice.obj (.const:ioService$32)
                      0000c648    00000008     barometerservice.obj (.const:sensorService$26)
                      0000c650    00000008     humidityservice.obj (.const:sensorService$31)
                      0000c658    00000008     irtempservice.obj (.const:sensorService$33)
                      0000c660    00000008     registerservice.obj (.const:sensorService$37)
                      0000c668    00000006     ble_user_config.obj (.const:txPwrTbl)
                      0000c66e    00000002     devinfoservice.obj (.const:.string:devInfoHardwareRevUUID)
                      0000c670    00000004     CC2650STK.obj (.const:TRNGCC26XXHWAttrs)
                      0000c674    00000004     icall_cc2650.obj (.const:events$1$22)
                      0000c678    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Clock_tickPeriod__C)
                      0000c67c    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Clock_triggerClock__C)
                      0000c680    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Idle_funcList__A)
                      0000c684    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Log_L_info__C)
                      0000c688    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerFxn2__C)
                      0000c68c    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerFxn4__C)
                      0000c690    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerObj__C)
                      0000c694    00000002     devinfoservice.obj (.const:.string:devInfoMfrNameUUID)
                      0000c696    00000002     devinfoservice.obj (.const:.string:devInfoModelNumberUUID)
                      0000c698    00000002     devinfoservice.obj (.const:.string:devInfoPnpIdUUID)
                      0000c69a    00000002     devinfoservice.obj (.const:.string:devInfoSerialNumberUUID)
                      0000c69c    00000002     devinfoservice.obj (.const:.string:devInfoServUUID)
                      0000c69e    00000002     devinfoservice.obj (.const:.string:devInfoSoftwareRevUUID)
                      0000c6a0    00000002     devinfoservice.obj (.const:.string:devInfoSystemIdUUID)
                      0000c6a2    00000002     sensortag_bar.obj (.const:pinCfg1$2)
                      0000c6a4    00000002     app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerDefined__C)
                      0000c6a6    00000001     app_ble_pem3.oem3 (.const:xdc_runtime_Text_charTab__A)
    .cinit     0    0000c6a8    000008ec     
                      0000c6a8    00000768     (.cinit..data.load) [load image, compression = rle]
                      0000ce10    0000002d     (.cinit..data:ti_sysbios_family_arm_m3_Hwi_Module__state__V.load) [load image, compression = rle]
                      0000ce3d    00000003     --HOLE-- [fill = 0]
                      0000ce40    0000002c     (.cinit..data:ti_sysbios_knl_Task_Module__state__V.load) [load image, compression = rle]
                      0000ce6c    00000004     --HOLE-- [fill = 0]
                      0000ce70    00000021     (.cinit..data:ti_sysbios_knl_Clock_Module__state__V.load) [load image, compression = rle]
                      0000ce91    00000007     --HOLE-- [fill = 0]
                      0000ce98    0000001f     (.cinit..data:ti_sysbios_BIOS_Module__state__V.load) [load image, compression = rle]
                      0000ceb7    00000001     --HOLE-- [fill = 0]
                      0000ceb8    00000011     (.cinit..data:ti_sysbios_knl_Swi_Module__state__V.load) [load image, compression = rle]
                      0000cec9    00000007     --HOLE-- [fill = 0]
                      0000ced0    0000000d     (.cinit..data:ti_sysbios_family_arm_cc26xx_Timer_Module__state__V.load) [load image, compression = rle]
                      0000cedd    00000003     --HOLE-- [fill = 0]
                      0000cee0    0000000b     (.cinit..bss.load) [load image, compression = rle]
                      0000ceeb    00000005     --HOLE-- [fill = 0]
                      0000cef0    0000000a     (.cinit..data:xdc_runtime_Memory_Module__state__V.load) [load image, compression = rle]
                      0000cefa    00000006     --HOLE-- [fill = 0]
                      0000cf00    00000009     (.cinit..data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V.load) [load image, compression = rle]
                      0000cf09    00000007     --HOLE-- [fill = 0]
                      0000cf10    00000009     (.cinit..data:xdc_runtime_Startup_Module__state__V.load) [load image, compression = rle]
                      0000cf19    00000007     --HOLE-- [fill = 0]
                      0000cf20    00000009     (.cinit..data:xdc_runtime_System_Module__state__V.load) [load image, compression = rle]
                      0000cf29    00000003     --HOLE-- [fill = 0]
                      0000cf2c    00000008     (__TI_handler_table)
                      0000cf34    00000060     (__TI_cinit_table)
    .init_array 
    *          0    00000000    00000000     UNINITIALIZED
    .ccfg      0    0001ffa8    00000058     
                      0001ffa8    00000058     ccfg_app_ble.obj (.ccfg:retain)
    .vecs      0    20000000    000000c8     NOLOAD SECTION
                      20000000    000000c8     app_ble_pem3.oem3 (.vecs)
    .data:ti_sysbios_knl_Task_Module__state__V 
    *          0    20000100    00000044     UNINITIALIZED
                      20000100    00000044     app_ble_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_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_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_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_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_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_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_pem3.oem3 (.data:xdc_runtime_Startup_Module__state__V)
    .data:xdc_runtime_System_Module__state__V 
    *          0    200001f8    00000008     UNINITIALIZED
                      200001f8    00000008     app_ble_pem3.oem3 (.data:xdc_runtime_System_Module__state__V)
    .data:xdc_runtime_Memory_Module__state__V 
    *          0    20000200    00000004     UNINITIALIZED
                      20000200    00000004     app_ble_pem3.oem3 (.data:xdc_runtime_Memory_Module__state__V)
    .data      0    20000208    00001a82     UNINITIALIZED
                      20000208    00000454     sensortag.obj (.data:$O1$$)
                      2000065c    00000338     uart_logs.obj (.data:$O8$$)
                      20000994    0000031c     peripheral.obj (.data:$O28$$)
                      20000cb0    000002d8     sensortag_tmp.obj (.data:$O7$$)
                      20000f88    00000230     RFCC26XX_singleMode.obj (.data:$O12$$)
                      200011b8    000001d4     devinfoservice.obj (.data:$O21$$)
                      2000138c    00000120     water_capacitive.obj (.data:$O9$$)
                      200014ac    00000110     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.data:PowerCC26XX_module)
                      200015bc    0000010c     icall.obj (.data:$O14$$)
                      200016c8    00000094     barometerservice.obj (.data:$O20$$)
                      2000175c    00000090     humidityservice.obj (.data:$O23$$)
                      200017ec    00000090     irtempservice.obj (.data:$O25$$)
                      2000187c    00000090     registerservice.obj (.data:$O29$$)
                      2000190c    0000005c     ioservice.obj (.data:$O24$$)
                      20001968    00000050     ble_user_config.obj (.data:rfRegTbl)
                      200019b8    0000004c     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Task_Object__table__V)
                      20001a04    00000004     I2C.obj (.data)
                      20001a08    00000048     app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_cc26xx_Timer_Object__table__V)
                      20001a50    00000038     app_ble_pem3.oem3 (.data:ti_sysbios_gates_GateMutex_Object__table__V)
                      20001a88    00000030     sensortag_register.obj (.data:$O6$$)
                      20001ab8    00000030     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Swi_Module_State_0_readyQ__A)
                      20001ae8    00000030     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Swi_Object__table__V)
                      20001b18    00000030     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Task_Module_State_0_readyQ__A)
                      20001b48    00000030     main.obj (.data:user0Cfg)
                      20001b78    00000020     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Clock_Object__table__V)
                      20001b98    00000018     app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Object__table__V)
                      20001bb0    00000018     app_ble_pem3.oem3 (.data:ti_sysbios_heaps_HeapMem_Object__table__V)
                      20001bc8    0000000c     rtsv7M3_T_le_eabi.lib : exit.obj (.data:$O1$$)
                      20001bd4    0000000c     icall_api.obj (.data:$O17$$)
                      20001be0    00000009     devinfoservice.obj (.data)
                      20001be9    00000003     barometerservice.obj (.data)
                      20001bec    00000008     icall_cc2650.obj (.data:$O16$$)
                      20001bf4    00000008     rtsv7M3_T_le_eabi.lib : _lock.obj (.data:$O30$$)
                      20001bfc    00000008     sensortag_io.obj (.data:$O5$$)
                      20001c04    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module__root__V)
                      20001c0c    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_gates_GateHwi_Module__root__V)
                      20001c14    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_gates_GateMutex_Module__root__V)
                      20001c1c    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_hal_Hwi_Module__root__V)
                      20001c24    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_heaps_HeapMem_Module__root__V)
                      20001c2c    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Clock_Module__root__V)
                      20001c34    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Mailbox_Module__root__V)
                      20001c3c    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Queue_Module__root__V)
                      20001c44    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Semaphore_Module__root__V)
                      20001c4c    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Swi_Module__root__V)
                      20001c54    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Task_Module__root__V)
                      20001c5c    00000004     ble_user_config.obj (.data)
                      20001c60    00000004     drivers_cc26xxware.aem3 : NVS.oem3 (.data)
                      20001c64    00000004                             : UART.oem3 (.data)
                      20001c68    00000004                             : Watchdog.oem3 (.data)
                      20001c6c    00000004     rtsv7M3_T_le_eabi.lib : stkdepth_vars.obj (.data)
                      20001c70    00000004     app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A)
                      20001c74    00000004     app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A)
                      20001c78    00000004     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Task_Module_State_0_idleTask__A)
                      20001c7c    00000003     humidityservice.obj (.data)
                      20001c7f    00000003     irtempservice.obj (.data)
                      20001c82    00000003     registerservice.obj (.data)
                      20001c85    00000002     ioservice.obj (.data)
                      20001c87    00000001     TRNGCC26XX.obj (.data)
                      20001c88    00000002     app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A)
    .bss       0    20001c90    0000230b     UNINITIALIZED
                      20001c90    00001000     (.common:myCopyBlock)
                      20002c90    00000680     (.common:ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A)
                      20003310    00000320     sensortag_bar.obj (.bss:$O3$$)
                      20003630    000002f8     sensortag_hum.obj (.bss:$O4$$)
                      20003928    00000200     app_ble_pem3.oem3 (.bss:taskStackSection)
                      20003b28    00000114     (.common:uartCC26XXObjects)
                      20003c3c    00000110     PINCC26XX.obj (.bss:$O11$$)
                      20003d4c    000000e0     (.common:i2cCC26xxObjects)
                      20003e2c    000000c8     (.common:ti_sysbios_family_arm_m3_Hwi_dispatchTable)
                      20003ef4    00000028     (.common:watchdogCC26XXObjects)
                      20003f1c    00000024     sensor_publish.obj (.bss:publishClock$0)
                      20003f40    0000001c     (.common:writeSem)
                      20003f5c    00000014     driverlib.lib : osc.obj (.bss:oscHfGlobals$63)
                      20003f70    0000000e     (.common:zanConfig_active)
                      20003f7e    00000002     sensortag_bar.obj (.bss)
                      20003f80    00000008     RFCC26XX_singleMode.obj (.bss)
                      20003f88    00000008     driverlib.lib : sys_ctrl.obj (.bss:powerQualGlobals$66)
                      20003f90    00000004     (.common:nvsCC26xxObjects)
                      20003f94    00000004     (.common:trngCC26XXObjects)
                      20003f98    00000001     (.common:driverlib_release_0_46593)
                      20003f99    00000001     (.common:uartRxPowerConstraint)
                      20003f9a    00000001     (.common:uartTxPowerConstraint)
    .vtable    0    20003f9b    00000000     UNINITIALIZED
    .vtable_ram 
    *          0    20003f9b    00000000     UNINITIALIZED
    vtable_ram 
    *          0    20003f9b    00000000     UNINITIALIZED
    .sysmem    0    20003f9b    00000000     UNINITIALIZED
    .nonretenvar 
    *          0    20003f9b    00000000     UNINITIALIZED
    .stack     0    20004028    00000400     UNINITIALIZED
                      20004028    00000400     --HOLE--
    .bootVecs 
    *          0    00000000    00000008     DSECT
                      00000000    00000008     boot.aem3 : boot.oem3 (.bootVecs)
    xdc.meta   0    00000000    00000104     COPY SECTION
                      00000000    00000104     app_ble_pem3.oem3 (xdc.meta)
    xdc.noload 
    *          0    00000000    00000000     COPY SECTION
    MODULE SUMMARY
           Module                            code    ro data   rw data
           ------                            ----    -------   -------
        .\Application\
           sensortag.obj                     2738    80        1108   
           sensortag_bar.obj                 3080    2         802    
           sensortag_hum.obj                 1076    0         760    
           water_capacitive.obj              1460    0         288    
           sensortag_tmp.obj                 172     0         728    
           uart_logs.obj                     12      0         824    
           sensor_publish.obj                444     0         36     
           sensortag_register.obj            404     0         48     
           sensortag_io.obj                  340     0         8      
           util.obj                          314     0         0      
           zan_config.obj                    64      14        0      
        +--+---------------------------------+-------+---------+---------+
           Total:                            10104   96        4602   
                                                                      
        .\Drivers\I2C\
           I2CCC26XX.obj                     4848    32        0      
           I2C.obj                           126     16        4      
        +--+---------------------------------+-------+---------+---------+
           Total:                            4974    48        4      
                                                                      
        .\Drivers\PIN\
           PINCC26XX.obj                     1256    0         272    
        +--+---------------------------------+-------+---------+---------+
           Total:                            1256    0         272    
                                                                      
        .\Drivers\RF\
           RFCC26XX_singleMode.obj           4584    20        568    
        +--+---------------------------------+-------+---------+---------+
           Total:                            4584    20        568    
                                                                      
        .\Drivers\TRNG\
           TRNGCC26XX.obj                    270     0         1      
        +--+---------------------------------+-------+---------+---------+
           Total:                            270     0         1      
                                                                      
        .\ICallBLE\
           icall_api.obj                     2144    0         12     
           ble_user_config.obj               40      133       84     
        +--+---------------------------------+-------+---------+---------+
           Total:                            2184    133       96     
                                                                      
        .\ICall\
           icall.obj                         2604    204       268    
           icall_cc2650.obj                  466     4         8      
        +--+---------------------------------+-------+---------+---------+
           Total:                            3070    208       276    
                                                                      
        .\PROFILES\
           peripheral.obj                    2330    0         796    
           devinfoservice.obj                392     40        477    
           registerservice.obj               524     84        147    
           ioservice.obj                     446     68        94     
           gattservapp_util.obj              476     0         0      
           barometerservice.obj              218     72        151    
           irtempservice.obj                 222     72        147    
           humidityservice.obj               202     72        147    
           gatt_uuid.obj                     0       44        0      
           st_util.obj                       44      0         0      
        +--+---------------------------------+-------+---------+---------+
           Total:                            4854    452       1959   
                                                                      
        .\Startup\
           CC2650STK.obj                     0       236       0      
           main.obj                          62      0         48     
           ccfg_app_ble.obj                  0       88        0      
        +--+---------------------------------+-------+---------+---------+
           Total:                            62      324       48     
                                                                      
        C:\Users\LEN\AppData\Local\Temp\
           069682                            0       0         4659   
        +--+---------------------------------+-------+---------+---------+
           Total:                            0       0         4659   
                                                                      
        C:\Users\LEN\Desktop\BLE_Firmware_Latest-NewWashcount_Cap\bleV2_app\FlashROM\configPkg\package\cfg\
           app_ble_pem3.oem3                 416     1477      3366   
        +--+---------------------------------+-------+---------+---------+
           Total:                            416     1477      3366   
                                                                      
        C:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/driverlib/bin/ccs/driverlib.lib
           setup.obj                         1666    0         0      
           sys_ctrl.obj                      736     0         8      
           osc.obj                           468     0         20     
           aux_adc.obj                       324     0         0      
           chipinfo.obj                      228     0         0      
           ddi.obj                           188     0         0      
           rfc.obj                           164     0         0      
           adi.obj                           84      0         0      
           flash.obj                         56      0         0      
           trng.obj                          48      0         0      
           aon_rtc.obj                       44      0         0      
           aon_batmon.obj                    40      0         0      
           cpu.obj                           30      0         0      
           vims.obj                          14      0         0      
        +--+---------------------------------+-------+---------+---------+
           Total:                            4090    0         28     
                                                                      
        C:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/tidrivers_cc13xx_cc26xx_2_20_01_10/packages/ti/drivers/lib/drivers_cc26xxware.aem3
           UARTCC26XX.oem3                   2472    104       2      
           PowerCC26XX.oem3                  2168    76        272    
           PowerCC26XX_calibrateRCOSC.oem3   1400    0         0      
           NVSCC26XX.oem3                    828     32        28     
           WatchdogCC26XX.oem3               318     28        0      
           UART.oem3                         138     36        4      
           Watchdog.oem3                     150     12        4      
           NVS.oem3                          128     1         4      
           List.oem3                         82      0         0      
        +--+---------------------------------+-------+---------+---------+
           Total:                            7684    289       314    
                                                                      
        C:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/tidrivers_cc13xx_cc26xx_2_20_01_10/packages/ti/drivers/lib/power_cc26xx_tirtos.aem3
           PowerCC26XX_tirtos.oem3           188     0         0      
        +--+---------------------------------+-------+---------+---------+
           Total:                            188     0         0      
                                                                      
        C:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/tidrivers_cc13xx_cc26xx_2_20_01_10/packages/ti/drivers/ports/lib/tirtosport.aem3
           HwiP_tirtos.oem3                  4       0         0      
        +--+---------------------------------+-------+---------+---------+
           Total:                            4       0         0      
                                                                      
        C:\ti\ccsv6\tools\compiler\arm_15.12.3.LTS\lib\rtsv7M3_T_le_eabi.lib
           ull_div_t2.obj                    500     0         0      
           fd_div_t2.obj                     310     0         0      
           fs_add_t2.obj                     250     0         0      
           memcpy_t2.obj                     156     0         0      
           fs_div_t2.obj                     146     0         0      
           fd_cmp_t2.obj                     134     0         0      
           fs_mul_t2.obj                     122     0         0      
           memset_t2.obj                     122     0         0      
           copy_decompress_rle.obj           112     0         0      
           exit.obj                          84      0         12     
           fs_cmp_t2.obj                     96      0         0      
           cpy_tbl.obj                       76      0         0      
           fd_tou_t2.obj                     68      0         0      
           fs_toi_t2.obj                     56      0         0      
           fs_tou_t2.obj                     52      0         0      
           i_tofd_t2.obj                     46      0         0      
           u_tofs_t2.obj                     36      0         0      
           memcmp.obj                        34      0         0      
           u_tofd_t2.obj                     32      0         0      
           _lock.obj                         20      0         8      
           args_main.obj                     24      0         0      
           ll_mul_t2.obj                     24      0         0      
           strlen.obj                        20      0         0      
           copy_decompress_none.obj          14      0         0      
           stkdepth_vars.obj                 0       0         4      
        +--+---------------------------------+-------+---------+---------+
           Total:                            2534    0         24     
                                                                      
        C:\ti\simplelink\ble_sdk_2_02_01_18\examples\cc2650stk\sensortag\ccs\config\src\sysbios\rom_sysbios.aem3
           rom_sysbios.obj                   874     0         0      
           rom_sysbios_config.obj            12      0         0      
        +--+---------------------------------+-------+---------+---------+
           Total:                            886     0         0      
                                                                      
        C:\ti\tirtos_cc13xx_cc26xx_2_20_01_08\products\bios_6_46_01_38\packages\ti\targets\arm\rtsarm\lib\auto_init.aem3
           auto_init.oem3                    160     0         0      
        +--+---------------------------------+-------+---------+---------+
           Total:                            160     0         0      
                                                                      
        C:\ti\tirtos_cc13xx_cc26xx_2_20_01_08\products\bios_6_46_01_38\packages\ti\targets\arm\rtsarm\lib\boot.aem3
           boot.oem3                         68      0         0      
        +--+---------------------------------+-------+---------+---------+
           Total:                            68      0         0      
                                                                      
           Stack:                            0       0         1024   
           Linker Generated:                 496     2231      0      
        +--+---------------------------------+-------+---------+---------+
           Grand Total:                      47884   5278      17241  
    LINKER GENERATED COPY TABLES
    __TI_cinit_table @ 0000cf34 records: 12, size/record: 8, table size: 96
    .data: load addr=0000c6a8, load size=00000768 bytes, run addr=20000208, run size=00001a82 bytes, compression=rle
    .data:ti_sysbios_family_arm_m3_Hwi_Module__state__V: load addr=0000ce10, load size=0000002d bytes, run addr=20000144, run size=00000034 bytes, compression=rle
    .data:ti_sysbios_knl_Task_Module__state__V: load addr=0000ce40, load size=0000002c bytes, run addr=20000100, run size=00000044 bytes, compression=rle
    .data:ti_sysbios_knl_Clock_Module__state__V: load addr=0000ce70, load size=00000021 bytes, run addr=20000178, run size=0000002c bytes, compression=rle
    .data:ti_sysbios_BIOS_Module__state__V: load addr=0000ce98, load size=0000001f bytes, run addr=200001a4, run size=00000024 bytes, compression=rle
    .data:ti_sysbios_knl_Swi_Module__state__V: load addr=0000ceb8, 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=0000ced0, load size=0000000d bytes, run addr=200001e4, run size=00000008 bytes, compression=rle
    .bss: load addr=0000cee0, load size=0000000b bytes, run addr=20001c90, run size=0000230b bytes, compression=rle
    .data:xdc_runtime_Memory_Module__state__V: load addr=0000cef0, 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=0000cf00, load size=00000009 bytes, run addr=200001ec, run size=00000004 bytes, compression=rle
    .data:xdc_runtime_Startup_Module__state__V: load addr=0000cf10, load size=00000009 bytes, run addr=200001f0, run size=00000008 bytes, compression=rle
    .data:xdc_runtime_System_Module__state__V: load addr=0000cf20, load size=00000009 bytes, run addr=200001f8, run size=00000008 bytes, compression=rle
    LINKER GENERATED HANDLER TABLE
    __TI_handler_table @ 0000cf2c records: 2, size/record: 4, table size: 8
    index: 0, handler: __TI_decompress_rle24
    index: 1, handler: __TI_decompress_none
    FAR CALL TRAMPOLINES
    callee name               trampoline name
       callee addr  tramp addr   call addr  call info
    --------------  -----------  ---------  ----------------
    xdc_runtime_Core_assignParams__I  $Tramp$TT$L$PI$$xdc_runtime_Core_assignParams__I
       1001c5f1     0000be44     0000bca0   rom_sysbios.aem3 : rom_sysbios_config.obj (.text:ti_sysbios_hal_Hwi_Params__init__S)
    ti_sysbios_hal_Hwi_enableInterrupt__E  $Tramp$TT$L$PI$$ti_sysbios_hal_Hwi_enableInterrupt__E
       1001c285     0000be4c     0000bbe0   icall.obj (.text:ICall_primEnableInt$21)
    ti_sysbios_hal_Hwi_disableInterrupt__E  $Tramp$TT$L$PI$$ti_sysbios_hal_Hwi_disableInterrupt__E
       1001c281     0000be54     0000bbd4   icall.obj (.text:ICall_primDisableInt$21)
    ti_sysbios_knl_Task_enable__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_enable__E
       1001c243     0000be5c     0000babe   icall.obj (.text:ICall_primEnableMInt$21)
    ti_sysbios_family_arm_m3_Hwi_enableFxn__E  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_enableFxn__E
       1001c155     0000be64     0000baba   icall.obj (.text:ICall_primEnableMInt$21)
    xdc_runtime_Startup_startMods__I  $Tramp$TT$L$PI$$xdc_runtime_Startup_startMods__I
       1001c30d     0000be6c     0000b916   app_ble_pem3.oem3 (.text:xdc_runtime_Startup_exec__I)
    ti_sysbios_knl_Clock_logTick__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_logTick__E
       1001be67     0000be74     0000b8c2   app_ble_pem3.oem3 (.text:ti_sysbios_knl_Clock_doTick__I)
    ti_sysbios_BIOS_RtsGateProxy_leave__E  $Tramp$TT$L$PI$$ti_sysbios_BIOS_RtsGateProxy_leave__E
       1001c24d     0000be7c     0000b6c2   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsUnlock__I)
    ti_sysbios_knl_Queue_construct  $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_construct
       1001b8f5     0000be84     0000b5e6   util.obj (.text:Util_constructQueue)
    ti_sysbios_knl_Queue_get__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_get__E
       1001bf11     0000be8c     0000b30c   util.obj (.text:Util_dequeueMsg)
    ti_sysbios_BIOS_RtsGateProxy_enter__E  $Tramp$TT$L$PI$$ti_sysbios_BIOS_RtsGateProxy_enter__E
       1001c249     0000be94     0000af16   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsLock__I)
    ti_sysbios_BIOS_start__E  $Tramp$TT$L$PI$$ti_sysbios_BIOS_start__E
       1001c055     0000be9c     0000aa64   main.obj (.text:main)
    ti_sysbios_knl_Queue_put__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_put__E
       1001bf2d     0000bea4     0000a64c   util.obj (.text:Util_enqueueMsg)
    ti_sysbios_knl_Task_startup__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_startup__E
       1001c309     0000beac     0000a1c4   app_ble_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     0000beb4     0000a1c0   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    ti_sysbios_hal_Hwi_startup__E  $Tramp$TT$L$PI$$ti_sysbios_hal_Hwi_startup__E
       1001c28d     0000bebc     0000a1bc   app_ble_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     0000bec4     0000a1b8   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    xdc_runtime_System_atexit__E  $Tramp$TT$L$PI$$xdc_runtime_System_atexit__E
       1001c681     0000becc     0000a1b0   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    ti_sysbios_BIOS_setThreadType__E  $Tramp$TT$L$PI$$ti_sysbios_BIOS_setThreadType__E
       1001c045     0000bed4     0000a17c   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
                                 0000b774   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__I)
    ti_sysbios_hal_Hwi_create  $Tramp$TT$L$PI$$ti_sysbios_hal_Hwi_create
       1001ab79     0000bedc     00009ab8   icall.obj (.text:ICall_primRegisterISR$21)
                                 00009aec   icall.obj (.text:ICall_primRegisterISR_Ext$21)
    ti_sysbios_knl_Task_construct  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_construct
       1001b125     0000bee4     00009172   peripheral.obj (.text:GAPRole_createTask)
                                 00009454   sensortag_bar.obj (.text:SensorTagBar_createTask)
                                 00009490   sensortag_hum.obj (.text:SensorTagHum_createTask)
                                 000094cc   sensortag.obj (.text:SensorTag_createTask)
    xdc_runtime_System_exit__E  $Tramp$TT$L$PI$$xdc_runtime_System_exit__E
       1001c7d1     0000beec     00009020   boot.aem3 : boot.oem3 (.text)
                                 0000b77a   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__I)
    ti_sysbios_knl_Semaphore_create  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_create
       1001b5ad     0000bef4     000088fc   icall.obj (.text:ICall_newTask$21)
    ti_sysbios_knl_Task_create  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_create
       1001ae19     0000befc     0000767c   icall.obj (.text:ICall_createRemoteTasks)
                                 000090ea   icall.obj (.text:ICall_primCreateTask$21)
    ti_sysbios_knl_Task_Params__init__S  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_Params__init__S
       1001c1d9     0000bf04     0000765c   icall.obj (.text:ICall_createRemoteTasks)
                                 000090d4   icall.obj (.text:ICall_primCreateTask$21)
                                 00009152   peripheral.obj (.text:GAPRole_createTask)
                                 00009436   sensortag_bar.obj (.text:SensorTagBar_createTask)
                                 00009472   sensortag_hum.obj (.text:SensorTagHum_createTask)
                                 000094ae   sensortag.obj (.text:SensorTag_createTask)
    ti_sysbios_knl_Clock_destruct  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_destruct
       1001c2b9     0000bf0c     00007140   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_close)
    ti_sysbios_knl_Clock_create  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_create
       1001b3ed     0000bf14     00006cae   icall.obj (.text:ICall_primSetTimer$21)
    ti_sysbios_knl_Clock_scheduleNextTick__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_scheduleNextTick__E
       1001bebd     0000bf1c     00006422   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     0000bf24     000063ea   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
                                 00006406                    : 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     0000bf2c     000063b8   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
                                 0000a596                    : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_getTicksUntilInterrupt__E)
    ti_sysbios_knl_Queue_enqueue__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_enqueue__E
       1001c1b5     0000bf34     00006064   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Task_setPri__E)
                                 0000be40                    : rom_sysbios.obj (.text:ti_sysbios_knl_Queue_insert__E)
    ti_sysbios_knl_Queue_remove__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_remove__E
       1001c121     0000bf3c     00006046   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Task_setPri__E)
    ti_sysbios_BIOS_getCpuFreq__E  $Tramp$TT$L$PI$$ti_sysbios_BIOS_getCpuFreq__E
       1001bff9     0000bf44     000057ac   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_initHw)
                                 00008c24   I2CCC26XX.obj (.text:I2CCC26XX_initHw$14)
                                 0000a9aa   drivers_cc26xxware.aem3 : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_convertMsToTicks)
    ti_sysbios_knl_Semaphore_destruct  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_destruct
       1001c2e1     0000bf4c     00005524   I2CCC26XX.obj (.text:I2CCC26XX_close)
                                 00005530   I2CCC26XX.obj (.text:I2CCC26XX_close)
                                 0000712c   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_close)
                                 00007138                           : UARTCC26XX.oem3 (.text:UARTCC26XX_close)
    ti_sysbios_knl_Swi_destruct  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_destruct
       1001c2e9     0000bf54     0000551c   I2CCC26XX.obj (.text:I2CCC26XX_close)
                                 00007120   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_close)
    ti_sysbios_family_arm_m3_Hwi_destruct  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_destruct
       1001c261     0000bf5c     00005514   I2CCC26XX.obj (.text:I2CCC26XX_close)
                                 00007118   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_close)
    ti_sysbios_knl_Task_self__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_self__E
       1001c1e5     0000bf64     00004dd2   icall.obj (.text:ICall_primWaitMatch$21)
                                 00007d3c   icall.obj (.text:ICall_primEnroll$21)
                                 00007fec   icall.obj (.text:ICall_primThreadServes$21)
                                 000085b8   icall.obj (.text:ICall_primWait$21)
                                 000086fc   icall.obj (.text:ICall_primRegisterApp$21)
                                 00008928   icall.obj (.text:ICall_primGetEntityId$21)
                                 00009a68   icall.obj (.text:ICall_primFetchMsg$21)
    ti_sysbios_knl_Clock_getTicks__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_getTicks__E
       1001b6d9     0000bf6c     00004530   sensortag_bar.obj (.text:VL53L0x_getSpadInfo)
                                 00004e1c   icall.obj (.text:ICall_primWaitMatch$21)
                                 00004e86   icall.obj (.text:ICall_primWaitMatch$21)
                                 0000bad8   icall.obj (.text:ICall_primGetTicks$21)
    ti_sysbios_knl_Queue_empty__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_empty__E
       1001c113     0000bf74     00003b50   sensortag.obj (.text:SensorTag_taskFxn$1)
                                 0000604c   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Task_setPri__E)
    xdc_runtime_System_abortSpin__E  $Tramp$TT$L$PI$$xdc_runtime_System_abortSpin__E
       1001c899     0000bf7c     0000372a   drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_doCalibrate)
                                 00007dba                           : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_RCOSC_clockFunc)
    ti_sysbios_knl_Clock_construct  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_construct
       1001b579     0000bf84     00003616   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 00003f9e                           : PowerCC26XX.oem3 (.text:Power_init)
                                 00003fac                           : PowerCC26XX.oem3 (.text:Power_init)
                                 00003fba                           : PowerCC26XX.oem3 (.text:Power_init)
                                 00005130   RFCC26XX_singleMode.obj (.text:rf_init$16)
                                 00005b20   RFCC26XX_singleMode.obj (.text:RF_open)
                                 000077d0   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
                                 00008a92   util.obj (.text:Util_constructClock)
    ti_sysbios_knl_Clock_Params__init__S  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_Params__init__S
       1001c185     0000bf8c     000035fe   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 00003f86                           : PowerCC26XX.oem3 (.text:Power_init)
                                 00005b10   RFCC26XX_singleMode.obj (.text:RF_open)
                                 00006c9a   icall.obj (.text:ICall_primSetTimer$21)
                                 000077b8   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
                                 00008a6a   util.obj (.text:Util_constructClock)
    ti_sysbios_knl_Semaphore_construct  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_construct
       1001b709     0000bf94     000028f6   I2CCC26XX.obj (.text:I2CCC26XX_open)
                                 00002906   I2CCC26XX.obj (.text:I2CCC26XX_open)
                                 00003094   PINCC26XX.obj (.text:PIN_init)
                                 000035da   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 000035ee                           : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 00005912   sensortag_hum.obj (.text:pressure_sensor_reading)
                                 00005b04   RFCC26XX_singleMode.obj (.text:RF_open)
                                 00007e7c   sensortag_bar.obj (.text:VL53L0XI2cInit)
                                 0000b9d6   drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_init)
    ti_sysbios_knl_Semaphore_Params__init__S  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_Params__init__S
       1001c1c1     0000bf9c     000028e6   I2CCC26XX.obj (.text:I2CCC26XX_open)
                                 00003080   PINCC26XX.obj (.text:PIN_init)
                                 000035c6   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 000058fc   sensortag_hum.obj (.text:pressure_sensor_reading)
                                 00005af4   RFCC26XX_singleMode.obj (.text:RF_open)
                                 00007e66   sensortag_bar.obj (.text:VL53L0XI2cInit)
    ti_sysbios_knl_Swi_construct  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_construct
       1001b085     0000bfa4     000028da   I2CCC26XX.obj (.text:I2CCC26XX_open)
                                 0000312a   PINCC26XX.obj (.text:PIN_init)
                                 000035ba   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 000050bc   RFCC26XX_singleMode.obj (.text:rf_init$16)
                                 000050fe   RFCC26XX_singleMode.obj (.text:rf_init$16)
    ti_sysbios_knl_Swi_Params__init__S  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_Params__init__S
       1001c1cd     0000bfac     000028c6   I2CCC26XX.obj (.text:I2CCC26XX_open)
                                 00003118   PINCC26XX.obj (.text:PIN_init)
                                 000035a4   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 000050a8   RFCC26XX_singleMode.obj (.text:rf_init$16)
                                 000050ee   RFCC26XX_singleMode.obj (.text:rf_init$16)
    ti_sysbios_family_arm_m3_Hwi_construct  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_construct
       1001af29     0000bfb4     000028ba   I2CCC26XX.obj (.text:I2CCC26XX_open)
                                 0000310c   PINCC26XX.obj (.text:PIN_init)
                                 00003598   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 000050e2   RFCC26XX_singleMode.obj (.text:rf_init$16)
                                 00005122   RFCC26XX_singleMode.obj (.text:rf_init$16)
                                 00005936   sensortag_hum.obj (.text:pressure_sensor_reading)
                                 000077e0   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
                                 00007fc6                           : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_open)
    ti_sysbios_family_arm_m3_Hwi_Params__init__S  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_Params__init__S
       1001c13d     0000bfbc     000028a2   I2CCC26XX.obj (.text:I2CCC26XX_open)
                                 000030f6   PINCC26XX.obj (.text:PIN_init)
                                 00003580   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 000050c8   RFCC26XX_singleMode.obj (.text:rf_init$16)
                                 0000510a   RFCC26XX_singleMode.obj (.text:rf_init$16)
                                 00005920   sensortag_hum.obj (.text:pressure_sensor_reading)
                                 00007fb0   drivers_cc26xxware.aem3 : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_open)
    ti_sysbios_knl_Task_restore__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_restore__E
       1001ba49     0000bfc4     00002604   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
                                 00006092   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Task_setPri__E)
                                 0000769a   icall.obj (.text:ICall_createRemoteTasks)
                                 0000b738   icall.obj (.text:ICall_leaveCSImpl)
    ti_sysbios_knl_Swi_restore__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_restore__E
       1001b5e1     0000bfcc     000025fa   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
                                 000032d6   RFCC26XX_singleMode.obj (.text:abortCmd$16)
                                 00006d9c   RFCC26XX_singleMode.obj (.text:RF_pendCmd)
                                 00006dc8   RFCC26XX_singleMode.obj (.text:RF_pendCmd)
                                 00006de4   RFCC26XX_singleMode.obj (.text:RF_pendCmd)
    ti_sysbios_knl_Swi_disable__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_disable__E
       1001c0d5     0000bfd4     00002456   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
                                 000032b4   RFCC26XX_singleMode.obj (.text:abortCmd$16)
                                 00006d8a   RFCC26XX_singleMode.obj (.text:RF_pendCmd)
                                 0000a172   app_ble_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     0000bfdc     0000243e   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
                                 0000600c   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Task_setPri__E)
                                 0000764e   icall.obj (.text:ICall_createRemoteTasks)
                                 0000a176   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
                                 0000b2bc   icall.obj (.text:ICall_enterCSImpl)
                                 0000baac   icall.obj (.text:ICall_primDisableMInt$21)
    ti_sysbios_knl_Semaphore_post__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_post__E
       1001ac41     0000bfe4     00001edc   I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                                 0000337a   drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_write)
                                 000034ac                           : NVSCC26XX.oem3 (.text:NVSCC26XX_write)
                                 00004ea4   icall.obj (.text:ICall_primWaitMatch$21)
                                 000062fa   PINCC26XX.obj (.text:PIN_open)
                                 00006550   drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_open)
                                 000066ce   I2CCC26XX.obj (.text:I2CCC26XX_blockingCallback$14)
                                 00007236   icall.obj (.text:ICall_primSend$21)
                                 00007b00   RFCC26XX_singleMode.obj (.text:fsmPowerDownState$16)
                                 00008880   RFCC26XX_singleMode.obj (.text:syncCb$16)
                                 00008f1a   drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_read)
                                 0000a654   util.obj (.text:Util_enqueueMsg)
                                 0000aec2   sensortag_hum.obj (.text:adcIsr)
                                 0000b61a   peripheral.obj (.text:gapRole_setEvent$36)
                                 0000b818   sensortag.obj (.text:SensorTag_clockHandler$1)
                                 0000bbf8   icall.obj (.text:ICall_primSignal$21)
                                 0000bc7a   sensortag_bar.obj (.text:VL53L0XI2cDeselect)
                                 0000bd60   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:readSemCallback)
                                 0000bd78                           : UARTCC26XX.oem3 (.text:writeSemCallback)
    ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E
       1001b2dd     0000bfec     00001da6   I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                                 000058c2   RFCC26XX_singleMode.obj (.text:fsmPowerUpState$16)
    ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E
       1001b299     0000bff4     00001d96   I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    ti_sysbios_knl_Semaphore_pend__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_pend__E
       1001a0cd     0000bffc     00001d90   I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                                 00001e0a   I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                                 0000335a   drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_write)
                                 00004a52                           : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 00004a8e                           : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 00004d1e   sensortag_hum.obj (.text:sensorTaskFxn$4)
                                 00004e30   icall.obj (.text:ICall_primWaitMatch$21)
                                 0000595a   sensortag_hum.obj (.text:pressure_sensor_reading)
                                 00005c68   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                                 00006288   PINCC26XX.obj (.text:PIN_open)
                                 000064e6   drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_open)
                                 00006dd4   RFCC26XX_singleMode.obj (.text:RF_pendCmd)
                                 00007462   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:writeTxFifoFlush)
                                 000085f8   icall.obj (.text:ICall_primWait$21)
                                 00008f08   drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_read)
    ti_sysbios_knl_Clock_start__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_start__E
       1001bfe3     0000c004     0000170c   RFCC26XX_singleMode.obj (.text:fsmActiveState$16)
                                 000037a8   drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_doCalibrate)
                                 000038d8   RFCC26XX_singleMode.obj (.text:RF_postCmd)
                                 00004038   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_init)
                                 00005b78   power_cc26xx_tirtos.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
                                 000065e2   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:writeFinishedDoCallback)
                                 0000676e                           : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                                 00006cf2   icall.obj (.text:ICall_primSetTimer$21)
                                 00006f3c   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
                                 00007bd0   water_capacitive.obj (.text:PeopleCount_ClockHandler$10)
                                 0000818e   RFCC26XX_singleMode.obj (.text:decActiveClientCnt$16)
                                 0000844e   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:configureXOSCHF)
                                 00008494   RFCC26XX_singleMode.obj (.text:fsmXOSCState$16)
                                 00008bc0   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:startTxFifoEmptyClk)
                                 000097fc   util.obj (.text:Util_restartClock)
                                 0000a0a2   water_capacitive.obj (.text:Read_Watercap_Sensor$10)
                                 0000af42   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_stop__E)
                                 0000bc70   util.obj (.text:Util_startClock)
    ti_sysbios_knl_Clock_setTimeout__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_setTimeout__E
       1001c2c1     0000c00c     00001704   RFCC26XX_singleMode.obj (.text:fsmActiveState$16)
                                 000038d0   RFCC26XX_singleMode.obj (.text:RF_postCmd)
                                 00004032   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_init)
                                 00005b72   power_cc26xx_tirtos.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
                                 000065dc   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:writeFinishedDoCallback)
                                 00006768                           : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                                 00006cec   icall.obj (.text:ICall_primSetTimer$21)
                                 00006f36   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
                                 00008188   RFCC26XX_singleMode.obj (.text:decActiveClientCnt$16)
                                 00008448   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:configureXOSCHF)
                                 0000848e   RFCC26XX_singleMode.obj (.text:fsmXOSCState$16)
                                 00008bba   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:startTxFifoEmptyClk)
                                 000097f6   util.obj (.text:Util_restartClock)
    ti_sysbios_family_arm_m3_Hwi_restoreFxn__E  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_restoreFxn__E
       1001c219     0000c014     000016ce   RFCC26XX_singleMode.obj (.text:fsmActiveState$16)
                                 00001742   RFCC26XX_singleMode.obj (.text:fsmActiveState$16)
                                 00001d6a   I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                                 00001d7c   I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                                 00002864   I2CCC26XX.obj (.text:I2CCC26XX_open)
                                 00002872   I2CCC26XX.obj (.text:I2CCC26XX_open)
                                 000031e8   RFCC26XX_singleMode.obj (.text:abortCmd$16)
                                 00003210   RFCC26XX_singleMode.obj (.text:abortCmd$16)
                                 00003244   RFCC26XX_singleMode.obj (.text:abortCmd$16)
                                 000032c8   RFCC26XX_singleMode.obj (.text:abortCmd$16)
                                 000032f8   RFCC26XX_singleMode.obj (.text:abortCmd$16)
                                 000034da   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 000034ea                           : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 00003570                           : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 00003880   RFCC26XX_singleMode.obj (.text:RF_postCmd)
                                 000038b2   RFCC26XX_singleMode.obj (.text:RF_postCmd)
                                 0000391e   RFCC26XX_singleMode.obj (.text:RF_postCmd)
                                 00004a0a   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 00004a26                           : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 00004ac4                           : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 000054d6                           : PowerCC26XX.oem3 (.text:Power_releaseDependency)
                                 00005544   I2CCC26XX.obj (.text:I2CCC26XX_close)
                                 00005676   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_setDependency)
                                 00005a02   RFCC26XX_singleMode.obj (.text:swiFxnHw$16)
                                 00005a20   RFCC26XX_singleMode.obj (.text:swiFxnHw$16)
                                 00005aac   RFCC26XX_singleMode.obj (.text:RF_open)
                                 00005aba   RFCC26XX_singleMode.obj (.text:RF_open)
                                 00005c0c   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                                 00005c24                           : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                                 00005c40                           : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                                 00005c8e                           : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                                 00005d48   PINCC26XX.obj (.text:PINCC26XX_setIoCfg$15)
                                 0000659a   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:writeFinishedDoCallback)
                                 00006796                           : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                                 000068de                           : UARTCC26XX.oem3 (.text:UARTCC26XX_writeCancel)
                                 000068ea                           : UARTCC26XX.oem3 (.text:UARTCC26XX_writeCancel)
                                 0000692c                           : UARTCC26XX.oem3 (.text:UARTCC26XX_writeCancel)
                                 000069c8   I2CCC26XX.obj (.text:I2CCC26XX_cancel)
                                 00006d6a   TRNGCC26XX.obj (.text:TRNGCC26XX_getNumber)
                                 0000714c   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_close)
                                 00007516                           : UARTCC26XX.oem3 (.text:UARTCC26XX_readCancel)
                                 00007544                           : UARTCC26XX.oem3 (.text:UARTCC26XX_readCancel)
                                 00007560                           : UARTCC26XX.oem3 (.text:UARTCC26XX_readCancel)
                                 00007aca                           : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_initHw)
                                 00007e0a   RFCC26XX_singleMode.obj (.text:RF_getCurrentTime)
                                 00007e12   RFCC26XX_singleMode.obj (.text:RF_getCurrentTime)
                                 00007f90   drivers_cc26xxware.aem3 : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_open)
                                 00007f9c                           : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_open)
                                 00008194   RFCC26XX_singleMode.obj (.text:decActiveClientCnt$16)
                                 00008332   drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
                                 000083a0                           : UARTCC26XX.oem3 (.text:UARTCC26XX_control)
                                 00008552   RFCC26XX_singleMode.obj (.text:ratChanFree$16)
                                 000087da   RFCC26XX_singleMode.obj (.text:RF_getInfo)
                                 00008a2a   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_swiIntFxn)
                                 00008f5a   PINCC26XX.obj (.text:PIN_setOutputEnable)
                                 000091e4   RFCC26XX_singleMode.obj (.text:RF_getRssi)
                                 000095ac   RFCC26XX_singleMode.obj (.text:postDirImmCmd$16)
                                 000095c0   RFCC26XX_singleMode.obj (.text:postDirImmCmd$16)
                                 00009bf4   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
                                 00009c30   RFCC26XX_singleMode.obj (.text:Q_push$16)
                                 0000a044   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_releaseConstraint)
                                 0000a074                           : PowerCC26XX.oem3 (.text:Power_setConstraint)
                                 0000a12c                           : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_setReload)
                                 0000a882                           : PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
                                 0000a96e   TRNGCC26XX.obj (.text:TRNGCC26XX_init)
                                 0000aab4   drivers_cc26xxware.aem3 : List.oem3 (.text:List_put)
                                 0000ae84                           : PowerCC26XX.oem3 (.text:Power_unregisterNotify)
                                 0000b1ce   TRNGCC26XX.obj (.text:TRNGCC26XX_open)
                                 0000b58c   RFCC26XX_singleMode.obj (.text:Q_pop$16)
                                 0000b730   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     0000c01c     000016a8   RFCC26XX_singleMode.obj (.text:fsmActiveState$16)
                                 0000172e   RFCC26XX_singleMode.obj (.text:fsmActiveState$16)
                                 00001d56   I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                                 00002858   I2CCC26XX.obj (.text:I2CCC26XX_open)
                                 00003188   RFCC26XX_singleMode.obj (.text:abortCmd$16)
                                 000034d0   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 0000356a                           : UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                                 000037dc   RFCC26XX_singleMode.obj (.text:RF_postCmd)
                                 00003894   RFCC26XX_singleMode.obj (.text:RF_postCmd)
                                 000049ec   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 00004a0e                           : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 00004a66                           : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 00004ab0                           : UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                                 00005422                           : PowerCC26XX.oem3 (.text:Power_releaseDependency)
                                 0000553c   I2CCC26XX.obj (.text:I2CCC26XX_close)
                                 000055c6   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_setDependency)
                                 000059b2   RFCC26XX_singleMode.obj (.text:swiFxnHw$16)
                                 00005aa4   RFCC26XX_singleMode.obj (.text:RF_open)
                                 00005bfc   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                                 00005c28                           : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                                 00005c7a                           : UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                                 00005d28   PINCC26XX.obj (.text:PINCC26XX_setIoCfg$15)
                                 00006582   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:writeFinishedDoCallback)
                                 00006720                           : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                                 000068ce                           : UARTCC26XX.oem3 (.text:UARTCC26XX_writeCancel)
                                 00006916                           : UARTCC26XX.oem3 (.text:UARTCC26XX_writeCancel)
                                 00006960   I2CCC26XX.obj (.text:I2CCC26XX_cancel)
                                 00006d06   TRNGCC26XX.obj (.text:TRNGCC26XX_getNumber)
                                 00007144   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_close)
                                 0000750a                           : UARTCC26XX.oem3 (.text:UARTCC26XX_readCancel)
                                 0000752e                           : UARTCC26XX.oem3 (.text:UARTCC26XX_readCancel)
                                 00007a86                           : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_initHw)
                                 00007dfa   RFCC26XX_singleMode.obj (.text:RF_getCurrentTime)
                                 00007f86   drivers_cc26xxware.aem3 : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_open)
                                 0000814c   RFCC26XX_singleMode.obj (.text:decActiveClientCnt$16)
                                 0000831e   drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
                                 00008382                           : UARTCC26XX.oem3 (.text:UARTCC26XX_control)
                                 00008510   RFCC26XX_singleMode.obj (.text:ratChanFree$16)
                                 0000879e   RFCC26XX_singleMode.obj (.text:RF_getInfo)
                                 00008a12   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_swiIntFxn)
                                 00008f46   PINCC26XX.obj (.text:PIN_setOutputEnable)
                                 000091d4   RFCC26XX_singleMode.obj (.text:RF_getRssi)
                                 00009594   RFCC26XX_singleMode.obj (.text:postDirImmCmd$16)
                                 00009bd2   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
                                 00009c12   RFCC26XX_singleMode.obj (.text:Q_push$16)
                                 00009c1a   RFCC26XX_singleMode.obj (.text:Q_push$16)
                                 0000a024   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_releaseConstraint)
                                 0000a054                           : PowerCC26XX.oem3 (.text:Power_setConstraint)
                                 0000a114                           : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_setReload)
                                 0000a866                           : PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
                                 0000a956   TRNGCC26XX.obj (.text:TRNGCC26XX_init)
                                 0000ae74   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_unregisterNotify)
                                 0000b1c2   TRNGCC26XX.obj (.text:TRNGCC26XX_open)
                                 0000b2c6   icall.obj (.text:ICall_enterCSImpl)
                                 0000b580   RFCC26XX_singleMode.obj (.text:Q_pop$16)
                                 0000bab0   icall.obj (.text:ICall_primDisableMInt$21)
                                 0000be18   tirtosport.aem3 : HwiP_tirtos.oem3 (.text:HwiP_disable)
    ti_sysbios_knl_Task_sleep__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_sleep__E
       1001a96d     0000c024     00000cee   sensortag.obj (.text:SensorTag_init$1)
                                 0000409c   sensortag_bar.obj (.text:Range_Sensor_Read)
                                 000045fe   sensortag_bar.obj (.text:sensorTaskFxn$2)
                                 00004630   sensortag_bar.obj (.text:sensorTaskFxn$2)
                                 000046a8   sensortag_bar.obj (.text:sensorTaskFxn$2)
                                 00004d04   sensortag_hum.obj (.text:sensorTaskFxn$4)
                                 00004da6   sensortag_hum.obj (.text:sensorTaskFxn$4)
                                 00004ff2   sensortag_bar.obj (.text:VL53L0x_readRangeSingleMillimeters)
                                 00008fd0   sensortag_io.obj (.text:SensorTagIO_blinkLed)
                                 00008fe0   sensortag_io.obj (.text:SensorTagIO_blinkLed)
    ti_sysbios_knl_Swi_post__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_post__E
       1001b321     0000c02c     00000638   I2CCC26XX.obj (.text:I2CCC26XX_hwiFxn$14)
                                 00000a02   I2CCC26XX.obj (.text:I2CCC26XX_hwiFxn$14)
                                 00001ed6   I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                                 00002ece   I2CCC26XX.obj (.text:I2CCC26XX_swiFxn$14)
                                 00004f16   drivers_cc26xxware.aem3 : UARTCC26XX.oem3 (.text:UARTCC26XX_hwiIntFxn)
                                 0000b6e0   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Swi_or__E)
                                 0000b8ca   app_ble_pem3.oem3 (.text:ti_sysbios_knl_Clock_doTick__I)
    [62 trampolines]
    [358 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                                                                      
    10015229  ATOMICPATTERN                                                             
    0000acd1  Adc_Init                                                                  
    10016c29  AddRoundKeySubBytes_Sw                                                    
    10018a19  AesCcm_authEncrypt_Sw                                                     
    10018a35  AesCcm_decryptAuth_Sw                                                     
    10018b09  AesCcm_getNumBlocks_Sw                                                    
    10018ac5  Aes_decrypt_Sw                                                            
    10018a99  Aes_encrypt_Sw                                                            
    0000b6fd  AssertHandler                                                             
    0000aabd  Barometer_getParameter                                                    
    000083bd  Barometer_setParameter                                                    
    0000c354  BoardGpioInitTable                                                        
    0000a375  Board_openUART                                                            
    00007571  Board_writeString                                                         
    000075dd  Board_writeStringValue                                                    
    200013a0  Buffer_Size                                                               
    00008561  C$$EXIT                                                                   
    20004f2c  COMMON_RAM_BASE_ADDR                                                      
    10014c01  COMMON_ROM_BASE_ADDR                                                      
    10015a6d  COPY                                                                      
    00000501  DefaultAssertCback                                                        
    0000b781  DevInfo_AddService                                                        
    000067ad  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                                                                     
    20001396  Flash_variables_Count                                                     
    00009681  GAPBondMgr_LinkEst                                                        
    0000aae1  GAPBondMgr_LinkTerm                                                       
    0000a685  GAPBondMgr_Register                                                       
    000099c9  GAPBondMgr_SetParameter                                                   
    0000b931  GAPRole_GetParameter                                                      
    00009105  GAPRole_SendUpdateParam                                                   
    000021e1  GAPRole_SetParameter                                                      
    0000afc9  GAPRole_StartDevice                                                       
    0000b33d  GAPRole_TerminateConnection                                               
    00009145  GAPRole_createTask                                                        
    00008609  GAP_DeviceInit                                                            
    0000b941  GAP_EndDiscoverable                                                       
    00009285  GAP_GetParamValue                                                         
    0000bb89  GAP_MakeDiscoverable                                                      
    000099fd  GAP_SetParamValue                                                         
    0000bb95  GAP_TerminateAuth                                                         
    00008e5d  GAP_TerminateLinkReq                                                      
    00008659  GAP_UpdateAdvertisingData                                                 
    0000bba1  GAP_UpdateLinkParamReq                                                    
    0000bbad  GAP_UpdateLinkParamReqReply                                               
    000000fd  GATTServApp_AddService                                                    
    0000b8e9  GATTServApp_FindAttr                                                      
    0000ad11  GATTServApp_InitCharCfg                                                   
    00008bd1  GATTServApp_ProcessCCCWriteReq                                            
    0000643d  GATTServApp_ProcessCharCfg                                                
    0000b951  GATTServApp_ReadCharCfg                                                   
    000092c1  GATTServApp_RegisterService                                               
    0000a6ad  GATTServApp_WriteCharCfg                                                  
    0000ba81  GATT_Indication                                                           
    0000b2a1  GATT_Notification                                                         
    0000afe5  GATT_bm_alloc                                                             
    0000b001  GATT_bm_free                                                              
    10015141  GETBIT                                                                    
    10015155  GETDIGIT                                                                  
    100151a5  GETDIGITL2R                                                               
    0000bd7d  GGS_AddService                                                            
    0000bbb9  GGS_SetParameter                                                          
    0000a6d5  Get_Data_From_Flash                                                       
    200015e0  HEAPMGR_SIZE                                                              
    0000ad31  Humidity_getParameter                                                     
    000086a9  Humidity_setParameter                                                     
    0000be19  HwiP_disable                                                              
    UNDEFED   HwiP_restore                                                              
    00006951  I2CCC26XX_cancel                                                          
    000054f1  I2CCC26XX_close                                                           
    0000bd83  I2CCC26XX_control                                                         
    0000c38c  I2CCC26XX_fxnTable                                                        
    0000bccd  I2CCC26XX_init                                                            
    00002849  I2CCC26XX_open                                                            
    00001d35  I2CCC26XX_transfer                                                        
    0000b355  I2C_Params_init                                                           
    0000c3a4  I2C_config                                                                
    0000c58c  I2C_defaultParams                                                         
    000096b9  I2C_init                                                                  
    0000ab05  I2C_open                                                                  
    0000bcd7  I2C_transfer                                                              
    000092fd  ICallPlatform_pwrConfigACAction                                           
    0000b36d  ICallPlatform_pwrDispense                                                 
    0000ba8f  ICallPlatform_pwrGetTransitionState                                       
    0000b961  ICallPlatform_pwrGetXOSCStartupTime                                       
    0000ba9d  ICallPlatform_pwrIsStableXOSCHF                                           
    00009f01  ICallPlatform_pwrRegisterNotify                                           
    0000b385  ICallPlatform_pwrRequire                                                  
    0000bce1  ICallPlatform_pwrSwitchXOSCHF                                             
    00007165  ICallPlatform_pwrUpdActivityCounter                                       
    00007649  ICall_createRemoteTasks                                                   
    200015bc  ICall_dispatcher                                                          
    0000b2bb  ICall_enterCSImpl                                                         
    200015c4  ICall_enterCriticalSection                                                
    0000a3a1  ICall_freeImpl                                                            
    0000a3a1  ICall_heapFree                                                            
    000076b5  ICall_heapInit                                                            
    00006bf9  ICall_heapMalloc                                                          
    0000a6fd  ICall_init                                                                
    0000b729  ICall_leaveCSImpl                                                         
    200015c8  ICall_leaveCriticalSection                                                
    0000bd89  ICall_mallocImpl                                                          
    00009b01  ICall_searchServiceEntity                                                 
    10015a35  IMPORTDATA                                                                
    100159a9  IMPORTLENGTH                                                              
    100159ad  IMPORTMODULUS                                                             
    100159d1  IMPORTOPERAND                                                             
    1001568d  INVERT                                                                    
    0000adf1  IRTemp_getParameter                                                       
    00007b49  IRTemp_setParameter                                                       
    00008c65  Init_Capacitivesensor_System                                              
    20001394  Init_Clock_Count                                                          
    000046d9  Init_Peripherals                                                          
    000048e1  Init_clocksystem                                                          
    10016da1  InvAddRoundKey_Sw                                                         
    10016ed5  InvMixColumns_Sw                                                          
    10016dc9  InvRoundKey_Sw                                                            
    10017264  InvSbox                                                                   
    10016ea1  InvShiftRows_Sw                                                           
    10016e8d  InvSubBytes_Sw                                                            
    0000a7ed  Io_addService                                                             
    0000b795  Io_getParameter                                                           
    0000b7a9  Io_registerAppCBs                                                         
    00009b35  Io_setParameter                                                           
    100154f5  JACADD                                                                    
    20004fe8  LEN                                                                       
    100158ac  LUTC                                                                      
    100158dc  LUTINCI                                                                   
    100158f4  LUTJ                                                                      
    1001588c  LUTOPCODE                                                                 
    10015894  LUTOPSIGN                                                                 
    100158c4  LUTSE                                                                     
    1001596c  LUTSTATE                                                                  
    0000bcf5  List_empty                                                                
    0000be1d  List_head                                                                 
    0000be21  List_next                                                                 
    0000aa95  List_put                                                                  
    0000b2ef  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                                                         
    0000a815  NOROM_AONBatMonTemperatureGetDegC                                         
    0000b7bd  NOROM_AONRTCCurrent64BitValueGet                                          
    0000b45d  NOROM_AONRTCCurrentCompareValueGet                                        
    000060a5  NOROM_AUXADCDisable                                                       
    000061dd  NOROM_AUXADCEnableSync                                                    
    0000b991  NOROM_AUXADCReadFifo                                                      
    0000bc01  NOROM_CPUcpsid                                                            
    0000bc0d  NOROM_CPUcpsie                                                            
    0000bd8f  NOROM_CPUdelay                                                            
    00008cad  NOROM_ChipInfo_GetChipFamily                                              
    00007491  NOROM_ChipInfo_GetHwRevision                                              
    0000b475  NOROM_ChipInfo_GetPackageType                                             
    00009185  NOROM_DDI16BitfieldRead                                                   
    00008cf5  NOROM_DDI16BitfieldWrite                                                  
    00009b69  NOROM_DDI32RegWrite                                                       
    0000b071  NOROM_FlashProgram                                                        
    0000b08d  NOROM_FlashSectorErase                                                    
    0000b0a9  NOROM_OSCClockSourceGet                                                   
    00008971  NOROM_OSCClockSourceSet                                                   
    00008035  NOROM_OSCHF_AttemptToSwitchToXosc                                         
    000069d9  NOROM_OSCHF_GetStartupTime                                                
    00009b9d  NOROM_OSCHF_SwitchToRcOscTurnOffXosc                                      
    0000b48d  NOROM_OSCHF_TurnOnXosc                                                    
    00009339  NOROM_OSC_HPOSCRelativeFrequencyOffsetGet                                 
    0000b4a5  NOROM_RFCCpeIntGetAndClear                                                
    0000ae11  NOROM_RFCDoorbellSendTo                                                   
    0000ae31  NOROM_RFCRfTrimRead                                                       
    0000b9a1  NOROM_RFCRfTrimSet                                                        
    00009375  NOROM_RFCSynthPowerDown                                                   
    00007075  NOROM_SetupAfterColdResetWakeupFromShutDownCfg1                           
    00005349  NOROM_SetupAfterColdResetWakeupFromShutDownCfg2                           
    00003d01  NOROM_SetupAfterColdResetWakeupFromShutDownCfg3                           
    0000b4bd  NOROM_SetupGetTrimForAdcShModeEn                                          
    0000b4d5  NOROM_SetupGetTrimForAdcShVbufEn                                          
    00007721  NOROM_SetupGetTrimForAmpcompCtrl                                          
    0000b4ed  NOROM_SetupGetTrimForAmpcompTh1                                           
    0000b0c5  NOROM_SetupGetTrimForAmpcompTh2                                           
    000079a9  NOROM_SetupGetTrimForAnabypassValue1                                      
    0000b505  NOROM_SetupGetTrimForDblrLoopFilterResetVoltage                           
    0000a4a9  NOROM_SetupGetTrimForRadcExtCfg                                           
    0000b51d  NOROM_SetupGetTrimForRcOscLfIBiasTrim                                     
    0000b0e1  NOROM_SetupGetTrimForRcOscLfRtuneCtuneTrim                                
    0000ae51  NOROM_SetupGetTrimForXoscHfCtl                                            
    0000b9b1  NOROM_SetupGetTrimForXoscHfFastStart                                      
    0000b9c1  NOROM_SetupGetTrimForXoscHfIbiastherm                                     
    0000b535  NOROM_SetupGetTrimForXoscLfRegulatorAndCmirrwrRatio                       
    00009f91  NOROM_SetupSetAonRtcSubSecInc                                             
    00008749  NOROM_SetupSetCacheModeAccordingToCcfgSetting                             
    0000bae3  NOROM_SetupSignExtendVddrTrimValue                                        
    00005ec1  NOROM_SetupTrimDevice                                                     
    00008091  NOROM_SysCtrlAdjustRechargeAfterPowerDown                                 
    0000b54d  NOROM_SysCtrlResetSourceGet                                               
    00002645  NOROM_SysCtrlSetRechargeBeforePowerDown                                   
    00007a11  NOROM_SysCtrl_DCDC_VoltageConditionalControl                              
    00009fc1  NOROM_TRNGConfigure                                                       
    0000b7d1  NOROM_ThisCodeIsBuiltForCC26xxHwRev22AndLater_HaltIfViolated              
    0000baf1  NOROM_VIMSModeGet                                                         
    00003cff  NVSCC26XX_close                                                           
    00008ea1  NVSCC26XX_control                                                         
    00004ccf  NVSCC26XX_exit                                                            
    0000c334  NVSCC26XX_fxnTable                                                        
    0000b0fd  NVSCC26XX_getAttrs                                                        
    0000b9d1  NVSCC26XX_init                                                            
    000064d1  NVSCC26XX_open                                                            
    00008ee5  NVSCC26XX_read                                                            
    0000331d  NVSCC26XX_write                                                           
    0000c3bc  NVS_config                                                                
    0000c2eb  NVS_defaultParams                                                         
    00009729  NVS_init                                                                  
    00009ff1  NVS_open                                                                  
    0000bcff  NVS_read                                                                  
    0000baff  NVS_write                                                                 
    10014c04  P1_ro                                                                     
    10019ffe  P1_ro_2                                                                   
    20004f40  P2_rw                                                                     
    20004f40  P2_s0                                                                     
    20004fac  P2_zi                                                                     
    0000a83d  PINCC26XX_getPinCount                                                     
    0000a4d5  PINCC26XX_setMux                                                          
    20003cd0  PIN_HandleTable                                                           
    20003c3c  PIN_NumPins                                                               
    0000af6f  PIN_close                                                                 
    00002fcd  PIN_init                                                                  
    00006275  PIN_open                                                                  
    0000bd95  PIN_registerIntCb                                                         
    000082b5  PIN_remove                                                                
    0000a501  PIN_setConfig                                                             
    00008f29  PIN_setOutputEnable                                                       
    00009761  PIN_setOutputValue                                                        
    2000138c  People_Count                                                              
    00007d99  PowerCC26XX_RCOSC_clockFunc                                               
    0000724d  PowerCC26XX_auxISR                                                        
    0000778d  PowerCC26XX_calibrate                                                     
    0000c59c  PowerCC26XX_config                                                        
    0000364d  PowerCC26XX_doCalibrate                                                   
    000069d9  PowerCC26XX_getXoscStartupTime                                            
    0000830d  PowerCC26XX_initiateCalibration                                           
    00009bd1  PowerCC26XX_isStableXOSC_HF                                               
    200014ac  PowerCC26XX_module                                                        
    00005b35  PowerCC26XX_standbyPolicy                                                 
    0000a865  PowerCC26XX_switchXOSC_HF                                                 
    0000bc19  Power_getConstraintMask                                                   
    0000bc25  Power_getDependencyCount                                                  
    0000af8d  Power_getTransitionLatency                                                
    0000bc31  Power_getTransitionState                                                  
    0000b565  Power_idleFunc                                                            
    00003f59  Power_init                                                                
    0000a88d  Power_registerNotify                                                      
    0000a021  Power_releaseConstraint                                                   
    0000541d  Power_releaseDependency                                                   
    0000a051  Power_setConstraint                                                       
    000055c1  Power_setDependency                                                       
    0000241d  Power_sleep                                                               
    0000ae71  Power_unregisterNotify                                                    
    000077f9  PublishCount_ClockHandler                                                 
    20001392  Pulse_Count                                                               
    10017158  RCon                                                                      
    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                                             
    0000b7e5  RF_Params_init                                                            
    00003175  RF_cancelCmd                                                              
    0000bd45  RF_flushCmd                                                               
    0000b8fb  RF_getCmdOp                                                               
    00007df9  RF_getCurrentTime                                                         
    00008799  RF_getInfo                                                                
    000091c5  RF_getRssi                                                                
    00005a75  RF_open                                                                   
    00006d85  RF_pendCmd                                                                
    000037d1  RF_postCmd                                                                
    000093b1  RF_runCmd                                                                 
    0000b151  RF_runDirectCmd                                                           
    0000b16d  RF_runImmediateCmd                                                        
    00004075  Range_Sensor_Read                                                         
    0000b9e1  RegisterAssertCback                                                       
    0000b7f9  Register_addService                                                       
    00009c39  Register_getParameter                                                     
    0000b595  Register_registerAppCBs                                                   
    000093ed  Register_setParameter                                                     
    00008ff5  ResetISR                                                                  
    00003941  RestDeviceCount_ClockHandler                                              
    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                                                        
    0000a52d  SafeHapiAuxAdiSelect                                                      
    0000a8b5  SafeHapiVoid                                                              
    10017164  Sbox                                                                      
    10015215  SelectReg                                                                 
    00009429  SensorTagBar_createTask                                                   
    00006e05  SensorTagBar_processCharChangeEvt                                         
    0000a8dd  SensorTagBar_reset                                                        
    00009465  SensorTagHum_createTask                                                   
    00006e85  SensorTagHum_processCharChangeEvt                                         
    0000a905  SensorTagHum_reset                                                        
    00008fb1  SensorTagIO_blinkLed                                                      
    0000b189  SensorTagIO_init                                                          
    0000630d  SensorTagIO_processCharChangeEvt                                          
    00009205  SensorTagIO_reset                                                         
    0000b9f1  SensorTagRegister_init                                                    
    00006a61  SensorTagRegister_processCharChangeEvt                                    
    000072c1  SensorTagRegister_reset                                                   
    0000ab71  SensorTagRegister_update                                                  
    00007865  SensorTagTmp_processCharChangeEvt                                         
    0000ae91  SensorTagTmp_reset                                                        
    0000bd09  SensorTag_charValueChangeCB                                               
    000094a1  SensorTag_createTask                                                      
    0000bc55  SensorTag_testResult                                                      
    0000b821  SensorTag_updateAdvertisingData                                           
    10016c45  ShiftRows_Sw                                                              
    20004f88  TMP1                                                                      
    20004f8c  TMP2                                                                      
    20004f90  TMP3                                                                      
    20004f94  TMP4                                                                      
    20004f98  TMP5                                                                      
    20004f9c  TMP6                                                                      
    0000c670  TRNGCC26XXHWAttrs                                                         
    0000c5ac  TRNGCC26XX_config                                                         
    00006d01  TRNGCC26XX_getNumber                                                      
    0000a955  TRNGCC26XX_init                                                           
    0000a607  TRNGCC26XX_isParamValid                                                   
    0000b1c1  TRNGCC26XX_open                                                           
    0000b1dd  Three_Clock_stop                                                          
    000070ed  UARTCC26XX_close                                                          
    00008365  UARTCC26XX_control                                                        
    0000c29c  UARTCC26XX_fxnTable                                                       
    00004eb5  UARTCC26XX_hwiIntFxn                                                      
    0000b5ad  UARTCC26XX_init                                                           
    000034bd  UARTCC26XX_open                                                           
    00005bf1  UARTCC26XX_read                                                           
    00007501  UARTCC26XX_readCancel                                                     
    0000bd9b  UARTCC26XX_readPolling                                                    
    00008a09  UARTCC26XX_swiIntFxn                                                      
    000049dd  UARTCC26XX_write                                                          
    000068c5  UARTCC26XX_writeCancel                                                    
    0000bda1  UARTCC26XX_writePolling                                                   
    0000b5c5  UART_Params_init                                                          
    0000c3d4  UART_config                                                               
    0000c2ec  UART_defaultParams                                                        
    00009799  UART_init                                                                 
    0000a0e1  UART_open                                                                 
    0000bd1d  UART_write                                                                
    0000bc61  UartLog_init                                                              
    00008a55  Util_constructClock                                                       
    0000b5dd  Util_constructQueue                                                       
    0000b309  Util_dequeueMsg                                                           
    0000a631  Util_enqueueMsg                                                           
    0000ba01  Util_isActive                                                             
    000097d1  Util_restartClock                                                         
    0000bc6d  Util_startClock                                                           
    0000be29  Util_stopClock                                                            
    0000bc79  VL53L0XI2cDeselect                                                        
    00007e59  VL53L0XI2cInit                                                            
    00009c6d  VL53L0XI2cRead                                                            
    00009809  VL53L0XI2cWrite                                                           
    000094dd  VL53L0XI2cWriteRead                                                       
    0000bb0d  VL53L0XI2creadReg                                                         
    0000a97d  VL53L0XI2cwriteReg                                                        
    00003e31  VL53L0X_init                                                              
    00001ab1  VL53L0xDefaultSettings                                                    
    000044c1  VL53L0x_getSpadInfo                                                       
    00008d3d  VL53L0x_readMulti                                                         
    00004fa1  VL53L0x_readRangeSingleMillimeters                                        
    00008d85  VL53L0x_setSignalRateLimit                                                
    000042a1  ValidateSensorRead                                                        
    000047e1  Validate_SensorRead                                                       
    0000ba11  WDTClose                                                                  
    00009519  WDTInitFxn                                                                
    0000ba21  WatchdogCC26XX_clear                                                      
    00006bf7  WatchdogCC26XX_close                                                      
    0000bda7  WatchdogCC26XX_control                                                    
    0000a9a5  WatchdogCC26XX_convertMsToTicks                                           
    0000c370  WatchdogCC26XX_fxnTable                                                   
    0000bd4d  WatchdogCC26XX_init                                                       
    00007f79  WatchdogCC26XX_open                                                       
    0000a111  WatchdogCC26XX_setReload                                                  
    0000ba31  Watchdog_Params_init                                                      
    0000bd27  Watchdog_clear                                                            
    0000bd31  Watchdog_close                                                            
    0000c3ec  Watchdog_config                                                           
    0000c5e8  Watchdog_defaultParams                                                    
    00009841  Watchdog_init                                                             
    0000a141  Watchdog_open                                                             
    0000bd3b  Watchdog_setReload                                                        
    2000138e  Water_Usage                                                               
    20001390  Water_Usage1                                                              
    200013ac  Water_capPinTable                                                         
    0000a9cd  Write_Data_To_Flash                                                       
    10015a85  ZERO                                                                      
    0000be2d  ZanConfig_Read                                                            
    00009555  ZanInit                                                                   
    00000000  __ASM__                                                                   
    0000007e  __ISA__                                                                   
    00000090  __PLAT__                                                                  
    20004428  __STACK_END                                                               
    00000400  __STACK_SIZE                                                              
    20004428  __STACK_TOP                                                               
    000000b7  __TARG__                                                                  
    0000cf34  __TI_CINIT_Base                                                           
    0000cf94  __TI_CINIT_Limit                                                          
    0000cf2c  __TI_Handler_Table_Base                                                   
    0000cf34  __TI_Handler_Table_Limit                                                  
    00005f65  __TI_auto_init                                                            
    20001bc8  __TI_cleanup_ptr                                                          
    0000bb1b  __TI_decompress_none                                                      
    0000bdb3  __TI_decompress_rle24                                                     
    20001bcc  __TI_dtors_ptr                                                            
    20001bd0  __TI_enable_exit_profile_output                                           
    ffffffff  __TI_pprof_out_hndl                                                       
    ffffffff  __TI_prof_data_size                                                       
    ffffffff  __TI_prof_data_start                                                      
    0000c6a8  __TI_static_base__                                                        
    000000dc  __TRDR__                                                                  
    00006b71  __aeabi_cdrcmple                                                          
    00007eb9  __aeabi_cfcmpeq                                                           
    00007eb9  __aeabi_cfcmple                                                           
    0000907d  __aeabi_d2uiz                                                             
    00003bc9  __aeabi_ddiv                                                              
    000098e9  __aeabi_f2iz                                                              
    00009d71  __aeabi_f2uiz                                                             
    00004bd9  __aeabi_fadd                                                              
    000065f9  __aeabi_fdiv                                                              
    00006f81  __aeabi_fmul                                                              
    00004bd5  __aeabi_fsub                                                              
    0000a345  __aeabi_i2d                                                               
    0000b685  __aeabi_lmul                                                              
    00006ffb  __aeabi_memclr                                                            
    00006ffb  __aeabi_memclr4                                                           
    00006ffb  __aeabi_memclr8                                                           
    00006141  __aeabi_memcpy                                                            
    00006141  __aeabi_memcpy4                                                           
    00006141  __aeabi_memcpy8                                                           
    00006ffd  __aeabi_memset                                                            
    00006ffd  __aeabi_memset4                                                           
    00006ffd  __aeabi_memset8                                                           
    0000aef1  __aeabi_ui2d                                                              
    0000abdd  __aeabi_ui2f                                                              
    00002a3d  __aeabi_uldivmod                                                          
    ffffffff  __binit__                                                                 
    ffffffff  __c_args__                                                                
    0001ffa8  __ccfg                                                                    
    10019ffe  __checksum_CommonROM                                                      
    10014c00  __checksum_begin_CommonROM                                                
    10019ffd  __checksum_end_CommonROM                                                  
    0000e0ea  __checksum_value_CommonROM                                                
    10018ced  __exit                                                                    
    20004028  __stack                                                                   
    0000b66d  _args_main                                                                
    00008ff5  _c_int00                                                                  
    20001bf4  _lock                                                                     
    0000b885  _nop                                                                      
    0000b88d  _register_lock                                                            
    0000b887  _register_unlock                                                          
    20001bf8  _unlock                                                                   
    00008565  abort                                                                     
    0000aeb1  adcIsr                                                                    
    20001c5c  appAssertCback                                                            
    0000c28a  appearanceUUID                                                            
    20004fdc  aux64                                                                     
    ffffffff  binit                                                                     
    2000142c  buffer                                                                    
    0000c286  charAggFormatUUID                                                         
    0000c27e  charExtPropsUUID                                                          
    0000c284  charFormatUUID                                                            
    0000c280  charUserDescUUID                                                          
    0000c272  characterUUID                                                             
    0000c274  clientCharCfgUUID                                                         
    00008b39  copy_in                                                                   
    0000c58a  devInfo11073CertUUID                                                      
    0000c5dc  devInfoCBs                                                                
    0000c5da  devInfoFirmwareRevUUID                                                    
    0000c66e  devInfoHardwareRevUUID                                                    
    0000c694  devInfoMfrNameUUID                                                        
    0000c696  devInfoModelNumberUUID                                                    
    0000c698  devInfoPnpIdUUID                                                          
    0000c69a  devInfoSerialNumberUUID                                                   
    0000c69c  devInfoServUUID                                                           
    0000c69e  devInfoSoftwareRevUUID                                                    
    0000c6a0  devInfoSystemIdUUID                                                       
    0000c288  deviceNameUUID                                                            
    0000b755  driverTable_fnSpinlock                                                    
    20003f98  driverlib_release_0_46593                                                 
    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                                                           
    0000856d  exit                                                                      
    0000c296  extReportRefUUID                                                          
    00001f99  flash_local_clear_wash_water_data                                         
    20004fcc  fwInfoCmd                                                                 
    20003324  g_SensorValue                                                             
    20000208  gapProfileState                                                           
    20000aa8  gapRoleTask                                                               
    20000af8  gapRoleTaskStack                                                          
    0000b60d  gapRole_clockHandler                                                      
    0000c276  gapServiceUUID                                                            
    0000c278  gattServiceUUID                                                           
    20003634  gl_SensorValue                                                            
    20000214  hGpioPin                                                                  
    20003638  hSem                                                                      
    20000220  hWDT                                                                      
    20000218  handleUart                                                                
    20004028  heapEnd                                                                   
    20003f9b  heapStart                                                                 
    20003664  hwi                                                                       
    0000c404  i2cCC26xxHWAttrs                                                          
    20003d4c  i2cCC26xxObjects                                                          
    20004f58  inPointX                                                                  
    20004f5c  inPointY                                                                  
    20004f54  inScalar                                                                  
    0000c27c  includeUUID                                                               
    0000c5f4  ioCBs                                                                     
    0000c45a  ioConfUUID                                                                
    0000c46a  ioDataUUID                                                                
    0000c47a  ioServUUID                                                                
    20003316  io_timeout                                                                
    20003648  isem                                                                      
    20001bd4  lastAppOpcodeSent                                                         
    20000994  linkDBNumConns                                                            
    00009879  linkDB_NumConns                                                           
    10016551  mADD                                                                      
    10015bd5  mINVK                                                                     
    10015f81  mMULT                                                                     
    10016749  mOUT                                                                      
    10015a9d  mSET                                                                      
    1001664d  mSUB                                                                      
    0000aa45  main                                                                      
    20001c6c  main_func_sp                                                              
    0000bb29  makeuint16                                                                
    10018949  mbCmdAckIsr                                                               
    1001895d  mbCpe0Isr                                                                 
    10018985  mbCpe1Isr                                                                 
    100189e5  mbHwIsr                                                                   
    2000331c  measurement_timing_budget_us                                              
    0000acaf  memcmp                                                                    
    00006141  memcpy                                                                    
    00007003  memset                                                                    
    UNDEFED   millis                                                                    
    20001c90  myCopyBlock                                                               
    0000c5bc  nvsCC26xxHWAttrs                                                          
    20003f90  nvsCC26xxObjects                                                          
    0000b24d  openTRNG                                                                  
    00009cd5  osal_snv_read                                                             
    00009d09  osal_snv_write                                                            
    20004f60  outPointX                                                                 
    20004f64  outPointY                                                                 
    20004ffc  pSspAesEncrypt_Sw                                                         
    0000c290  periConnParamUUID                                                         
    0000c28c  periPrivacyFlagUUID                                                       
    20001bd8  pfnBMAlloc                                                                
    20001bdc  pfnBMFree                                                                 
    20000250  pinGpioState                                                              
    20003640  pinHandle                                                                 
    000058ed  pressure_sensor_reading                                                   
    0000c270  primaryServiceUUID                                                        
    20004fac  ratChanInfo                                                               
    0000c28e  reconnectAddrUUID                                                         
    0000c298  reportRefUUID                                                             
    0000c150  resourceDB                                                                
    0000c19c  rfDriverTable                                                             
    20001968  rfRegTbl                                                                  
    0000c27a  secondaryServiceUUID                                                      
    20000209  selfEntityMain                                                            
    2000021c  sem                                                                       
    2000333c  sensor_data                                                               
    0000c282  servCharCfgUUID                                                           
    0000c292  serviceChangedUUID                                                        
    2000363c  singleSample                                                              
    10016d29  sspAesDecrypt_Sw                                                          
    10016af5  sspAesEncryptBasic_Sw                                                     
    10016a99  sspAesEncryptKeyExp_Sw                                                    
    10016979  sspAesEncrypt_Sw                                                          
    10016985  sspKeyExpansion_Sw                                                        
    10016975  ssp_KeyInit_Sw                                                            
    200013a8  status                                                                    
    20000cb0  status1                                                                   
    20003310  stop_variable                                                             
    200013a4  strSize                                                                   
    0000b899  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__                          
    0000a171  ti_sysbios_BIOS_atExitFunc__I                                             
    0000b76b  ti_sysbios_BIOS_exitFunc__I                                               
    1001c035  ti_sysbios_BIOS_exit__E                                                   
    1001bff9  ti_sysbios_BIOS_getCpuFreq__E                                             
    0000bc91  ti_sysbios_BIOS_getThreadType__E                                          
    00007fd7  ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E                         
    00008607  ti_sysbios_BIOS_nullFunc__I                                               
    0000ac01  ti_sysbios_BIOS_registerRTSLock__I                                        
    0000ac25  ti_sysbios_BIOS_removeRTSLock__I                                          
    0000af11  ti_sysbios_BIOS_rtsLock__I                                                
    0000b6b5  ti_sysbios_BIOS_rtsUnlock__I                                              
    1001c045  ti_sysbios_BIOS_setThreadType__E                                          
    0000a1a1  ti_sysbios_BIOS_startFunc__I                                              
    1001c055  ti_sysbios_BIOS_start__E                                                  
    0000b54d  ti_sysbios_family_arm_cc26xx_Boot_getBootReason__E                        
    00005ec1  ti_sysbios_family_arm_cc26xx_Boot_trimDevice                              
    00000502  ti_sysbios_family_arm_cc26xx_Timer_Module__id__C                          
    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                      
    20001a08  ti_sysbios_family_arm_cc26xx_Timer_Object__table__V                       
    0000b269  ti_sysbios_family_arm_cc26xx_Timer_dynamicStub__E                         
    0000be39  ti_sysbios_family_arm_cc26xx_Timer_getCount64__E                          
    00009921  ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E                      
    1001c251  ti_sysbios_family_arm_cc26xx_Timer_getExpiredTicks__E                     
    0000aa6d  ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E                         
    1001c255  ti_sysbios_family_arm_cc26xx_Timer_getPeriod__E                           
    0000a1d1  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                            
    00009e9f  ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E                         
    1001c259  ti_sysbios_family_arm_cc26xx_Timer_setPeriod__E                           
    0000a201  ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I                        
    00007c11  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          
    0000bb6f  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                             
    20001c88  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A                  
    20001c70  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A                 
    20001c74  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A                   
    00000506  ti_sysbios_family_arm_m3_Hwi_Module__id__C                                
    20001c04  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                             
    20001b98  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                                 
    20003e2c  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                                  
    0000ba51  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                                       
    0000be13  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                                    
    20001c0c  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                                
    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                                  
    20001c14  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                            
    20001a50  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__                    
    0000ba51  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                                       
    20001c1c  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                                      
    0000bc9d  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                                              
    0000ba51  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                                 
    20002c90  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                                    
    20001c24  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                                 
    20001bb0  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                               
    20001c2c  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                                  
    20001b78  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                                             
    0000b8c1  ti_sysbios_knl_Clock_doTick__I                                            
    0000a585  ti_sysbios_knl_Clock_getTicksUntilInterrupt__E                            
    1001b6d9  ti_sysbios_knl_Clock_getTicks__E                                          
    1001c191  ti_sysbios_knl_Clock_getTimerHandle__E                                    
    0000be3d  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                                             
    0000af31  ti_sysbios_knl_Clock_stop__E                                              
    00000510  ti_sysbios_knl_Clock_tickMode__C                                          
    0000c678  ti_sysbios_knl_Clock_tickPeriod__C                                        
    0000c67c  ti_sysbios_knl_Clock_triggerClock__C                                      
    000088d7  ti_sysbios_knl_Clock_triggerFunc__I                                       
    1001a80d  ti_sysbios_knl_Clock_walkQueueDynamic__E                                  
    000063a5  ti_sysbios_knl_Clock_workFuncDynamic__E                                   
    1001a885  ti_sysbios_knl_Clock_workFunc__E                                          
    0000c680  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                                   
    20001c34  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                                     
    20001c3c  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                                              
    0000be41  ti_sysbios_knl_Queue_insert__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                                 
    20001c44  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                                       
    20001ab8  ti_sysbios_knl_Swi_Module_State_0_readyQ__A                               
    20001c4c  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                                       
    20001ae8  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                                             
    0000bca9  ti_sysbios_knl_Swi_getTrigger__E                                          
    000004e4  ti_sysbios_knl_Swi_numPriorities__C                                       
    0000b6cd  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                                             
    20003928  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                                      
    20001c78  ti_sysbios_knl_Task_Module_State_0_idleTask__A                            
    20001b18  ti_sysbios_knl_Task_Module_State_0_readyQ__A                              
    000005e8  ti_sysbios_knl_Task_Module_State_inactiveQ__O                             
    20001c54  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                                      
    200019b8  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                                               
    00006005  ti_sysbios_knl_Task_setPri__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                
    00008c1b  ti_sysbios_rom_cortexm_cc26xx_CC26xx_badRomRevision__E                    
    0000b6e5  ti_sysbios_rom_cortexm_cc26xx_CC26xx_checkRevision__E                     
    1001ca9b  ti_sysbios_rom_cortexm_cc26xx_CC26xx_getRevision__E                       
    20003314  timeout_start_ms                                                          
    20003f94  trngCC26XXObjects                                                         
    0000c60c  trngDriverTable                                                           
    0000c2c4  txPowerTable                                                              
    0000c668  txPwrTbl                                                                  
    0000c41c  uartCC26XXHWAttrs                                                         
    20003b28  uartCC26XXObjects                                                         
    20001b48  user0Cfg                                                                  
    0000a5b1  utilExtractUuid16                                                         
    0000c294  validRangeUUID                                                            
    0000c618  watchdogCC26XXHwAttrs                                                     
    20003ef4  watchdogCC26XXObjects                                                     
    0000b8d5  wdtCallback                                                               
    0000ba71  writeReg                                                                  
    20003630  write_value                                                               
    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                                      
    00000538  xdc_runtime_IModule_Interface__BASE__C                                    
    0000c684  xdc_runtime_Log_L_info__C                                                 
    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                                            
    0000c6a4  xdc_runtime_Main_Module__loggerDefined__C                                 
    0000c688  xdc_runtime_Main_Module__loggerFxn2__C                                    
    0000c68c  xdc_runtime_Main_Module__loggerFxn4__C                                    
    0000c690  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                                              
    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                                               
    0000b90d  xdc_runtime_Startup_exec__I                                               
    0000c624  xdc_runtime_Startup_firstFxns__A                                          
    00000514  xdc_runtime_Startup_firstFxns__C                                          
    000081a5  xdc_runtime_Startup_getState__I                                           
    0000051c  xdc_runtime_Startup_lastFxns__C                                           
    00000550  xdc_runtime_Startup_maxPasses__C                                          
    0000bcb5  xdc_runtime_Startup_reset__I                                              
    0000bcc1  xdc_runtime_Startup_rtsDone__E                                            
    0000c448  xdc_runtime_Startup_sfxnRts__A                                            
    00000554  xdc_runtime_Startup_sfxnRts__C                                            
    0000c310  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                                          
    00009103  xdc_runtime_SysCallback_defaultAbort                                      
    000099c7  xdc_runtime_SysCallback_defaultExit                                       
    00000564  xdc_runtime_SysCallback_exitFxn__C                                        
    1001c821  xdc_runtime_SysCallback_exit__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                                   
    00000568  xdc_runtime_System_abortFxn__C                                            
    1001c899  xdc_runtime_System_abortSpin__E                                           
    00008565  xdc_runtime_System_abortStd__E                                            
    1001c749  xdc_runtime_System_abort__E                                               
    1001c681  xdc_runtime_System_atexit__E                                              
    0000056c  xdc_runtime_System_exitFxn__C                                             
    1001c89b  xdc_runtime_System_exitSpin__E                                            
    0000856d  xdc_runtime_System_exitStd__E                                             
    1001c7d1  xdc_runtime_System_exit__E                                                
    00000570  xdc_runtime_System_maxAtexitHandlers__C                                   
    1001c6b9  xdc_runtime_System_processAtExit__E                                       
    00000588  xdc_runtime_Text_charCnt__C                                               
    0000c6a6  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                                           
    1001c7e9  xdc_runtime_Text_ropeText__E                                              
    1001c831  xdc_runtime_Timestamp_SupportProxy_get32__E                               
    0000bb6f  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                                                                    
    20003f70  zanConfig_active                                                          
    0000c5cc  zanConfig_default                                                         
    GLOBAL SYMBOLS: SORTED BY Symbol Address 
    address   name                                                                      
    -------   ----                                                                      
    00000000  __ASM__                                                                   
    00000000  ti_sysbios_family_arm_m3_Hwi_resetVectors                                 
    00000001  xdc_runtime_Startup__EXECFXN__C                                           
    00000001  xdc_runtime_Startup__RESETFXN__C                                          
    0000007e  __ISA__                                                                   
    00000090  __PLAT__                                                                  
    000000b7  __TARG__                                                                  
    000000dc  __TRDR__                                                                  
    000000fd  GATTServApp_AddService                                                    
    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                                           
    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                             
    00001ab1  VL53L0xDefaultSettings                                                    
    00001d35  I2CCC26XX_transfer                                                        
    00001f99  flash_local_clear_wash_water_data                                         
    000021e1  GAPRole_SetParameter                                                      
    0000241d  Power_sleep                                                               
    00002645  NOROM_SysCtrlSetRechargeBeforePowerDown                                   
    00002849  I2CCC26XX_open                                                            
    00002a3d  __aeabi_uldivmod                                                          
    00002fcd  PIN_init                                                                  
    00003175  RF_cancelCmd                                                              
    0000331d  NVSCC26XX_write                                                           
    000034bd  UARTCC26XX_open                                                           
    0000364d  PowerCC26XX_doCalibrate                                                   
    000037d1  RF_postCmd                                                                
    00003941  RestDeviceCount_ClockHandler                                              
    00003bc9  __aeabi_ddiv                                                              
    00003cff  NVSCC26XX_close                                                           
    00003d01  NOROM_SetupAfterColdResetWakeupFromShutDownCfg3                           
    00003e31  VL53L0X_init                                                              
    00003f59  Power_init                                                                
    00004075  Range_Sensor_Read                                                         
    000042a1  ValidateSensorRead                                                        
    000044c1  VL53L0x_getSpadInfo                                                       
    000046d9  Init_Peripherals                                                          
    000047e1  Validate_SensorRead                                                       
    000048e1  Init_clocksystem                                                          
    000049dd  UARTCC26XX_write                                                          
    00004bd5  __aeabi_fsub                                                              
    00004bd9  __aeabi_fadd                                                              
    00004ccf  NVSCC26XX_exit                                                            
    00004eb5  UARTCC26XX_hwiIntFxn                                                      
    00004fa1  VL53L0x_readRangeSingleMillimeters                                        
    00005349  NOROM_SetupAfterColdResetWakeupFromShutDownCfg2                           
    0000541d  Power_releaseDependency                                                   
    000054f1  I2CCC26XX_close                                                           
    000055c1  Power_setDependency                                                       
    000058ed  pressure_sensor_reading                                                   
    00005a75  RF_open                                                                   
    00005b35  PowerCC26XX_standbyPolicy                                                 
    00005bf1  UARTCC26XX_read                                                           
    00005ec1  NOROM_SetupTrimDevice                                                     
    00005ec1  ti_sysbios_family_arm_cc26xx_Boot_trimDevice                              
    00005f65  __TI_auto_init                                                            
    00006005  ti_sysbios_knl_Task_setPri__E                                             
    000060a5  NOROM_AUXADCDisable                                                       
    00006141  __aeabi_memcpy                                                            
    00006141  __aeabi_memcpy4                                                           
    00006141  __aeabi_memcpy8                                                           
    00006141  memcpy                                                                    
    000061dd  NOROM_AUXADCEnableSync                                                    
    00006275  PIN_open                                                                  
    0000630d  SensorTagIO_processCharChangeEvt                                          
    000063a5  ti_sysbios_knl_Clock_workFuncDynamic__E                                   
    0000643d  GATTServApp_ProcessCharCfg                                                
    000064d1  NVSCC26XX_open                                                            
    000065f9  __aeabi_fdiv                                                              
    000067ad  DevInfo_SetParameter                                                      
    000068c5  UARTCC26XX_writeCancel                                                    
    00006951  I2CCC26XX_cancel                                                          
    000069d9  NOROM_OSCHF_GetStartupTime                                                
    000069d9  PowerCC26XX_getXoscStartupTime                                            
    00006a61  SensorTagRegister_processCharChangeEvt                                    
    00006b71  __aeabi_cdrcmple                                                          
    00006bf7  WatchdogCC26XX_close                                                      
    00006bf9  ICall_heapMalloc                                                          
    00006d01  TRNGCC26XX_getNumber                                                      
    00006d85  RF_pendCmd                                                                
    00006e05  SensorTagBar_processCharChangeEvt                                         
    00006e85  SensorTagHum_processCharChangeEvt                                         
    00006f81  __aeabi_fmul                                                              
    00006ffb  __aeabi_memclr                                                            
    00006ffb  __aeabi_memclr4                                                           
    00006ffb  __aeabi_memclr8                                                           
    00006ffd  __aeabi_memset                                                            
    00006ffd  __aeabi_memset4                                                           
    00006ffd  __aeabi_memset8                                                           
    00007003  memset                                                                    
    00007075  NOROM_SetupAfterColdResetWakeupFromShutDownCfg1                           
    000070ed  UARTCC26XX_close                                                          
    00007165  ICallPlatform_pwrUpdActivityCounter                                       
    0000724d  PowerCC26XX_auxISR                                                        
    000072c1  SensorTagRegister_reset                                                   
    00007491  NOROM_ChipInfo_GetHwRevision                                              
    00007501  UARTCC26XX_readCancel                                                     
    00007571  Board_writeString                                                         
    000075dd  Board_writeStringValue                                                    
    00007649  ICall_createRemoteTasks                                                   
    000076b5  ICall_heapInit                                                            
    00007721  NOROM_SetupGetTrimForAmpcompCtrl                                          
    0000778d  PowerCC26XX_calibrate                                                     
    000077f9  PublishCount_ClockHandler                                                 
    00007865  SensorTagTmp_processCharChangeEvt                                         
    000079a9  NOROM_SetupGetTrimForAnabypassValue1                                      
    00007a11  NOROM_SysCtrl_DCDC_VoltageConditionalControl                              
    00007b49  IRTemp_setParameter                                                       
    00007c11  ti_sysbios_family_arm_cc26xx_Timer_start__E                               
    00007d99  PowerCC26XX_RCOSC_clockFunc                                               
    00007df9  RF_getCurrentTime                                                         
    00007e59  VL53L0XI2cInit                                                            
    00007eb9  __aeabi_cfcmpeq                                                           
    00007eb9  __aeabi_cfcmple                                                           
    00007f79  WatchdogCC26XX_open                                                       
    00007fd7  ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E                         
    00008035  NOROM_OSCHF_AttemptToSwitchToXosc                                         
    00008091  NOROM_SysCtrlAdjustRechargeAfterPowerDown                                 
    000081a5  xdc_runtime_Startup_getState__I                                           
    000082b5  PIN_remove                                                                
    0000830d  PowerCC26XX_initiateCalibration                                           
    00008365  UARTCC26XX_control                                                        
    000083bd  Barometer_setParameter                                                    
    00008561  C$$EXIT                                                                   
    00008565  abort                                                                     
    00008565  xdc_runtime_System_abortStd__E                                            
    0000856d  exit                                                                      
    0000856d  xdc_runtime_System_exitStd__E                                             
    00008607  ti_sysbios_BIOS_nullFunc__I                                               
    00008609  GAP_DeviceInit                                                            
    00008659  GAP_UpdateAdvertisingData                                                 
    000086a9  Humidity_setParameter                                                     
    00008749  NOROM_SetupSetCacheModeAccordingToCcfgSetting                             
    00008799  RF_getInfo                                                                
    000088d7  ti_sysbios_knl_Clock_triggerFunc__I                                       
    00008971  NOROM_OSCClockSourceSet                                                   
    00008a09  UARTCC26XX_swiIntFxn                                                      
    00008a55  Util_constructClock                                                       
    00008b39  copy_in                                                                   
    00008bd1  GATTServApp_ProcessCCCWriteReq                                            
    00008c1b  ti_sysbios_rom_cortexm_cc26xx_CC26xx_badRomRevision__E                    
    00008c65  Init_Capacitivesensor_System                                              
    00008cad  NOROM_ChipInfo_GetChipFamily                                              
    00008cf5  NOROM_DDI16BitfieldWrite                                                  
    00008d3d  VL53L0x_readMulti                                                         
    00008d85  VL53L0x_setSignalRateLimit                                                
    00008e5d  GAP_TerminateLinkReq                                                      
    00008ea1  NVSCC26XX_control                                                         
    00008ee5  NVSCC26XX_read                                                            
    00008f29  PIN_setOutputEnable                                                       
    00008fb1  SensorTagIO_blinkLed                                                      
    00008ff5  ResetISR                                                                  
    00008ff5  _c_int00                                                                  
    0000907d  __aeabi_d2uiz                                                             
    00009103  xdc_runtime_SysCallback_defaultAbort                                      
    00009105  GAPRole_SendUpdateParam                                                   
    00009145  GAPRole_createTask                                                        
    00009185  NOROM_DDI16BitfieldRead                                                   
    000091c5  RF_getRssi                                                                
    00009205  SensorTagIO_reset                                                         
    00009285  GAP_GetParamValue                                                         
    000092c1  GATTServApp_RegisterService                                               
    000092fd  ICallPlatform_pwrConfigACAction                                           
    00009339  NOROM_OSC_HPOSCRelativeFrequencyOffsetGet                                 
    00009375  NOROM_RFCSynthPowerDown                                                   
    000093b1  RF_runCmd                                                                 
    000093ed  Register_setParameter                                                     
    00009429  SensorTagBar_createTask                                                   
    00009465  SensorTagHum_createTask                                                   
    000094a1  SensorTag_createTask                                                      
    000094dd  VL53L0XI2cWriteRead                                                       
    00009519  WDTInitFxn                                                                
    00009555  ZanInit                                                                   
    00009681  GAPBondMgr_LinkEst                                                        
    000096b9  I2C_init                                                                  
    00009729  NVS_init                                                                  
    00009761  PIN_setOutputValue                                                        
    00009799  UART_init                                                                 
    000097d1  Util_restartClock                                                         
    00009809  VL53L0XI2cWrite                                                           
    00009841  Watchdog_init                                                             
    00009879  linkDB_NumConns                                                           
    000098e9  __aeabi_f2iz                                                              
    00009921  ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E                      
    000099c7  xdc_runtime_SysCallback_defaultExit                                       
    000099c9  GAPBondMgr_SetParameter                                                   
    000099fd  GAP_SetParamValue                                                         
    00009b01  ICall_searchServiceEntity                                                 
    00009b35  Io_setParameter                                                           
    00009b69  NOROM_DDI32RegWrite                                                       
    00009b9d  NOROM_OSCHF_SwitchToRcOscTurnOffXosc                                      
    00009bd1  PowerCC26XX_isStableXOSC_HF                                               
    00009c39  Register_getParameter                                                     
    00009c6d  VL53L0XI2cRead                                                            
    00009cd5  osal_snv_read                                                             
    00009d09  osal_snv_write                                                            
    00009d71  __aeabi_f2uiz                                                             
    00009e9f  ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E                         
    00009f01  ICallPlatform_pwrRegisterNotify                                           
    00009f91  NOROM_SetupSetAonRtcSubSecInc                                             
    00009fc1  NOROM_TRNGConfigure                                                       
    00009ff1  NVS_open                                                                  
    0000a021  Power_releaseConstraint                                                   
    0000a051  Power_setConstraint                                                       
    0000a0e1  UART_open                                                                 
    0000a111  WatchdogCC26XX_setReload                                                  
    0000a141  Watchdog_open                                                             
    0000a171  ti_sysbios_BIOS_atExitFunc__I                                             
    0000a1a1  ti_sysbios_BIOS_startFunc__I                                              
    0000a1d1  ti_sysbios_family_arm_cc26xx_Timer_initDevice__I                          
    0000a201  ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I                        
    0000a345  __aeabi_i2d                                                               
    0000a375  Board_openUART                                                            
    0000a3a1  ICall_freeImpl                                                            
    0000a3a1  ICall_heapFree                                                            
    0000a4a9  NOROM_SetupGetTrimForRadcExtCfg                                           
    0000a4d5  PINCC26XX_setMux                                                          
    0000a501  PIN_setConfig                                                             
    0000a52d  SafeHapiAuxAdiSelect                                                      
    0000a585  ti_sysbios_knl_Clock_getTicksUntilInterrupt__E                            
    0000a5b1  utilExtractUuid16                                                         
    0000a607  TRNGCC26XX_isParamValid                                                   
    0000a631  Util_enqueueMsg                                                           
    0000a685  GAPBondMgr_Register                                                       
    0000a6ad  GATTServApp_WriteCharCfg                                                  
    0000a6d5  Get_Data_From_Flash                                                       
    0000a6fd  ICall_init                                                                
    0000a7ed  Io_addService                                                             
    0000a815  NOROM_AONBatMonTemperatureGetDegC                                         
    0000a83d  PINCC26XX_getPinCount                                                     
    0000a865  PowerCC26XX_switchXOSC_HF                                                 
    0000a88d  Power_registerNotify                                                      
    0000a8b5  SafeHapiVoid                                                              
    0000a8dd  SensorTagBar_reset                                                        
    0000a905  SensorTagHum_reset                                                        
    0000a955  TRNGCC26XX_init                                                           
    0000a97d  VL53L0XI2cwriteReg                                                        
    0000a9a5  WatchdogCC26XX_convertMsToTicks                                           
    0000a9cd  Write_Data_To_Flash                                                       
    0000aa45  main                                                                      
    0000aa6d  ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E                         
    0000aa95  List_put                                                                  
    0000aabd  Barometer_getParameter                                                    
    0000aae1  GAPBondMgr_LinkTerm                                                       
    0000ab05  I2C_open                                                                  
    0000ab71  SensorTagRegister_update                                                  
    0000abdd  __aeabi_ui2f                                                              
    0000ac01  ti_sysbios_BIOS_registerRTSLock__I                                        
    0000ac25  ti_sysbios_BIOS_removeRTSLock__I                                          
    0000acaf  memcmp                                                                    
    0000acd1  Adc_Init                                                                  
    0000ad11  GATTServApp_InitCharCfg                                                   
    0000ad31  Humidity_getParameter                                                     
    0000adf1  IRTemp_getParameter                                                       
    0000ae11  NOROM_RFCDoorbellSendTo                                                   
    0000ae31  NOROM_RFCRfTrimRead                                                       
    0000ae51  NOROM_SetupGetTrimForXoscHfCtl                                            
    0000ae71  Power_unregisterNotify                                                    
    0000ae91  SensorTagTmp_reset                                                        
    0000aeb1  adcIsr                                                                    
    0000aef1  __aeabi_ui2d                                                              
    0000af11  ti_sysbios_BIOS_rtsLock__I                                                
    0000af31  ti_sysbios_knl_Clock_stop__E                                              
    0000af6f  PIN_close                                                                 
    0000af8d  Power_getTransitionLatency                                                
    0000afc9  GAPRole_StartDevice                                                       
    0000afe5  GATT_bm_alloc                                                             
    0000b001  GATT_bm_free                                                              
    0000b071  NOROM_FlashProgram                                                        
    0000b08d  NOROM_FlashSectorErase                                                    
    0000b0a9  NOROM_OSCClockSourceGet                                                   
    0000b0c5  NOROM_SetupGetTrimForAmpcompTh2                                           
    0000b0e1  NOROM_SetupGetTrimForRcOscLfRtuneCtuneTrim                                
    0000b0fd  NVSCC26XX_getAttrs                                                        
    0000b151  RF_runDirectCmd                                                           
    0000b16d  RF_runImmediateCmd                                                        
    0000b189  SensorTagIO_init                                                          
    0000b1c1  TRNGCC26XX_open                                                           
    0000b1dd  Three_Clock_stop                                                          
    0000b24d  openTRNG                                                                  
    0000b269  ti_sysbios_family_arm_cc26xx_Timer_dynamicStub__E                         
    0000b2a1  GATT_Notification                                                         
    0000b2bb  ICall_enterCSImpl                                                         
    0000b2ef  List_remove                                                               
    0000b309  Util_dequeueMsg                                                           
    0000b33d  GAPRole_TerminateConnection                                               
    0000b355  I2C_Params_init                                                           
    0000b36d  ICallPlatform_pwrDispense                                                 
    0000b385  ICallPlatform_pwrRequire                                                  
    0000b45d  NOROM_AONRTCCurrentCompareValueGet                                        
    0000b475  NOROM_ChipInfo_GetPackageType                                             
    0000b48d  NOROM_OSCHF_TurnOnXosc                                                    
    0000b4a5  NOROM_RFCCpeIntGetAndClear                                                
    0000b4bd  NOROM_SetupGetTrimForAdcShModeEn                                          
    0000b4d5  NOROM_SetupGetTrimForAdcShVbufEn                                          
    0000b4ed  NOROM_SetupGetTrimForAmpcompTh1                                           
    0000b505  NOROM_SetupGetTrimForDblrLoopFilterResetVoltage                           
    0000b51d  NOROM_SetupGetTrimForRcOscLfIBiasTrim                                     
    0000b535  NOROM_SetupGetTrimForXoscLfRegulatorAndCmirrwrRatio                       
    0000b54d  NOROM_SysCtrlResetSourceGet                                               
    0000b54d  ti_sysbios_family_arm_cc26xx_Boot_getBootReason__E                        
    0000b565  Power_idleFunc                                                            
    0000b595  Register_registerAppCBs                                                   
    0000b5ad  UARTCC26XX_init                                                           
    0000b5c5  UART_Params_init                                                          
    0000b5dd  Util_constructQueue                                                       
    0000b60d  gapRole_clockHandler                                                      
    0000b66d  _args_main                                                                
    0000b685  __aeabi_lmul                                                              
    0000b6b5  ti_sysbios_BIOS_rtsUnlock__I                                              
    0000b6cd  ti_sysbios_knl_Swi_or__E                                                  
    0000b6e5  ti_sysbios_rom_cortexm_cc26xx_CC26xx_checkRevision__E                     
    0000b6fd  AssertHandler                                                             
    0000b729  ICall_leaveCSImpl                                                         
    0000b755  driverTable_fnSpinlock                                                    
    0000b76b  ti_sysbios_BIOS_exitFunc__I                                               
    0000b781  DevInfo_AddService                                                        
    0000b795  Io_getParameter                                                           
    0000b7a9  Io_registerAppCBs                                                         
    0000b7bd  NOROM_AONRTCCurrent64BitValueGet                                          
    0000b7d1  NOROM_ThisCodeIsBuiltForCC26xxHwRev22AndLater_HaltIfViolated              
    0000b7e5  RF_Params_init                                                            
    0000b7f9  Register_addService                                                       
    0000b821  SensorTag_updateAdvertisingData                                           
    0000b885  _nop                                                                      
    0000b887  _register_unlock                                                          
    0000b88d  _register_lock                                                            
    0000b899  strlen                                                                    
    0000b8c1  ti_sysbios_knl_Clock_doTick__I                                            
    0000b8d5  wdtCallback                                                               
    0000b8e9  GATTServApp_FindAttr                                                      
    0000b8fb  RF_getCmdOp                                                               
    0000b90d  xdc_runtime_Startup_exec__I                                               
    0000b931  GAPRole_GetParameter                                                      
    0000b941  GAP_EndDiscoverable                                                       
    0000b951  GATTServApp_ReadCharCfg                                                   
    0000b961  ICallPlatform_pwrGetXOSCStartupTime                                       
    0000b991  NOROM_AUXADCReadFifo                                                      
    0000b9a1  NOROM_RFCRfTrimSet                                                        
    0000b9b1  NOROM_SetupGetTrimForXoscHfFastStart                                      
    0000b9c1  NOROM_SetupGetTrimForXoscHfIbiastherm                                     
    0000b9d1  NVSCC26XX_init                                                            
    0000b9e1  RegisterAssertCback                                                       
    0000b9f1  SensorTagRegister_init                                                    
    0000ba01  Util_isActive                                                             
    0000ba11  WDTClose                                                                  
    0000ba21  WatchdogCC26XX_clear                                                      
    0000ba31  Watchdog_Params_init                                                      
    0000ba51  ti_sysbios_family_arm_m3_Hwi_post__E                                      
    0000ba51  ti_sysbios_hal_Hwi_HwiProxy_post__E                                       
    0000ba51  ti_sysbios_hal_Hwi_post__E                                                
    0000ba71  writeReg                                                                  
    0000ba81  GATT_Indication                                                           
    0000ba8f  ICallPlatform_pwrGetTransitionState                                       
    0000ba9d  ICallPlatform_pwrIsStableXOSCHF                                           
    0000bae3  NOROM_SetupSignExtendVddrTrimValue                                        
    0000baf1  NOROM_VIMSModeGet                                                         
    0000baff  NVS_write                                                                 
    0000bb0d  VL53L0XI2creadReg                                                         
    0000bb1b  __TI_decompress_none                                                      
    0000bb29  makeuint16                                                                
    0000bb6f  ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E                   
    0000bb6f  xdc_runtime_Timestamp_SupportProxy_get32__E__mangled__                    
    0000bb89  GAP_MakeDiscoverable                                                      
    0000bb95  GAP_TerminateAuth                                                         
    0000bba1  GAP_UpdateLinkParamReq                                                    
    0000bbad  GAP_UpdateLinkParamReqReply                                               
    0000bbb9  GGS_SetParameter                                                          
    0000bc01  NOROM_CPUcpsid                                                            
    0000bc0d  NOROM_CPUcpsie                                                            
    0000bc19  Power_getConstraintMask                                                   
    0000bc25  Power_getDependencyCount                                                  
    0000bc31  Power_getTransitionState                                                  
    0000bc55  SensorTag_testResult                                                      
    0000bc61  UartLog_init                                                              
    0000bc6d  Util_startClock                                                           
    0000bc79  VL53L0XI2cDeselect                                                        
    0000bc91  ti_sysbios_BIOS_getThreadType__E                                          
    0000bc9d  ti_sysbios_hal_Hwi_Params__init__S                                        
    0000bca9  ti_sysbios_knl_Swi_getTrigger__E                                          
    0000bcb5  xdc_runtime_Startup_reset__I                                              
    0000bcc1  xdc_runtime_Startup_rtsDone__E                                            
    0000bccd  I2CCC26XX_init                                                            
    0000bcd7  I2C_transfer                                                              
    0000bce1  ICallPlatform_pwrSwitchXOSCHF                                             
    0000bcf5  List_empty                                                                
    0000bcff  NVS_read                                                                  
    0000bd09  SensorTag_charValueChangeCB                                               
    0000bd1d  UART_write                                                                
    0000bd27  Watchdog_clear                                                            
    0000bd31  Watchdog_close                                                            
    0000bd3b  Watchdog_setReload                                                        
    0000bd45  RF_flushCmd                                                               
    0000bd4d  WatchdogCC26XX_init                                                       
    0000bd7d  GGS_AddService                                                            
    0000bd83  I2CCC26XX_control                                                         
    0000bd89  ICall_mallocImpl                                                          
    0000bd8f  NOROM_CPUdelay                                                            
    0000bd95  PIN_registerIntCb                                                         
    0000bd9b  UARTCC26XX_readPolling                                                    
    0000bda1  UARTCC26XX_writePolling                                                   
    0000bda7  WatchdogCC26XX_control                                                    
    0000bdb3  __TI_decompress_rle24                                                     
    0000be13  ti_sysbios_family_arm_m3_Hwi_setFunc__E                                   
    0000be19  HwiP_disable                                                              
    0000be1d  List_head                                                                 
    0000be21  List_next                                                                 
    0000be29  Util_stopClock                                                            
    0000be2d  ZanConfig_Read                                                            
    0000be39  ti_sysbios_family_arm_cc26xx_Timer_getCount64__E                          
    0000be3d  ti_sysbios_knl_Clock_isActive__E                                          
    0000be41  ti_sysbios_knl_Queue_insert__E                                            
    0000c150  resourceDB                                                                
    0000c19c  rfDriverTable                                                             
    0000c270  primaryServiceUUID                                                        
    0000c272  characterUUID                                                             
    0000c274  clientCharCfgUUID                                                         
    0000c276  gapServiceUUID                                                            
    0000c278  gattServiceUUID                                                           
    0000c27a  secondaryServiceUUID                                                      
    0000c27c  includeUUID                                                               
    0000c27e  charExtPropsUUID                                                          
    0000c280  charUserDescUUID                                                          
    0000c282  servCharCfgUUID                                                           
    0000c284  charFormatUUID                                                            
    0000c286  charAggFormatUUID                                                         
    0000c288  deviceNameUUID                                                            
    0000c28a  appearanceUUID                                                            
    0000c28c  periPrivacyFlagUUID                                                       
    0000c28e  reconnectAddrUUID                                                         
    0000c290  periConnParamUUID                                                         
    0000c292  serviceChangedUUID                                                        
    0000c294  validRangeUUID                                                            
    0000c296  extReportRefUUID                                                          
    0000c298  reportRefUUID                                                             
    0000c29c  UARTCC26XX_fxnTable                                                       
    0000c2c4  txPowerTable                                                              
    0000c2eb  NVS_defaultParams                                                         
    0000c2ec  UART_defaultParams                                                        
    0000c310  xdc_runtime_Startup_sfxnTab__A                                            
    0000c334  NVSCC26XX_fxnTable                                                        
    0000c354  BoardGpioInitTable                                                        
    0000c370  WatchdogCC26XX_fxnTable                                                   
    0000c38c  I2CCC26XX_fxnTable                                                        
    0000c3a4  I2C_config                                                                
    0000c3bc  NVS_config                                                                
    0000c3d4  UART_config                                                               
    0000c3ec  Watchdog_config                                                           
    0000c404  i2cCC26xxHWAttrs                                                          
    0000c41c  uartCC26XXHWAttrs                                                         
    0000c448  xdc_runtime_Startup_sfxnRts__A                                            
    0000c45a  ioConfUUID                                                                
    0000c46a  ioDataUUID                                                                
    0000c47a  ioServUUID                                                                
    0000c58a  devInfo11073CertUUID                                                      
    0000c58c  I2C_defaultParams                                                         
    0000c59c  PowerCC26XX_config                                                        
    0000c5ac  TRNGCC26XX_config                                                         
    0000c5bc  nvsCC26xxHWAttrs                                                          
    0000c5cc  zanConfig_default                                                         
    0000c5da  devInfoFirmwareRevUUID                                                    
    0000c5dc  devInfoCBs                                                                
    0000c5e8  Watchdog_defaultParams                                                    
    0000c5f4  ioCBs                                                                     
    0000c60c  trngDriverTable                                                           
    0000c618  watchdogCC26XXHwAttrs                                                     
    0000c624  xdc_runtime_Startup_firstFxns__A                                          
    0000c668  txPwrTbl                                                                  
    0000c66e  devInfoHardwareRevUUID                                                    
    0000c670  TRNGCC26XXHWAttrs                                                         
    0000c678  ti_sysbios_knl_Clock_tickPeriod__C                                        
    0000c67c  ti_sysbios_knl_Clock_triggerClock__C                                      
    0000c680  ti_sysbios_knl_Idle_funcList__A                                           
    0000c684  xdc_runtime_Log_L_info__C                                                 
    0000c688  xdc_runtime_Main_Module__loggerFxn2__C                                    
    0000c68c  xdc_runtime_Main_Module__loggerFxn4__C                                    
    0000c690  xdc_runtime_Main_Module__loggerObj__C                                     
    0000c694  devInfoMfrNameUUID                                                        
    0000c696  devInfoModelNumberUUID                                                    
    0000c698  devInfoPnpIdUUID                                                          
    0000c69a  devInfoSerialNumberUUID                                                   
    0000c69c  devInfoServUUID                                                           
    0000c69e  devInfoSoftwareRevUUID                                                    
    0000c6a0  devInfoSystemIdUUID                                                       
    0000c6a4  xdc_runtime_Main_Module__loggerDefined__C                                 
    0000c6a6  xdc_runtime_Text_charTab__A                                               
    0000c6a8  __TI_static_base__                                                        
    0000cf2c  __TI_Handler_Table_Base                                                   
    0000cf34  __TI_CINIT_Base                                                           
    0000cf34  __TI_Handler_Table_Limit                                                  
    0000cf94  __TI_CINIT_Limit                                                          
    0000e0ea  __checksum_value_CommonROM                                                
    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  gapProfileState                                                           
    20000209  selfEntityMain                                                            
    20000214  hGpioPin                                                                  
    20000218  handleUart                                                                
    2000021c  sem                                                                       
    20000220  hWDT                                                                      
    20000250  pinGpioState                                                              
    20000994  linkDBNumConns                                                            
    20000aa8  gapRoleTask                                                               
    20000af8  gapRoleTaskStack                                                          
    20000cb0  status1                                                                   
    2000138c  People_Count                                                              
    2000138e  Water_Usage                                                               
    20001390  Water_Usage1                                                              
    20001392  Pulse_Count                                                               
    20001394  Init_Clock_Count                                                          
    20001396  Flash_variables_Count                                                     
    200013a0  Buffer_Size                                                               
    200013a4  strSize                                                                   
    200013a8  status                                                                    
    200013ac  Water_capPinTable                                                         
    2000142c  buffer                                                                    
    200014ac  PowerCC26XX_module                                                        
    200015bc  ICall_dispatcher                                                          
    200015c4  ICall_enterCriticalSection                                                
    200015c8  ICall_leaveCriticalSection                                                
    200015e0  HEAPMGR_SIZE                                                              
    20001968  rfRegTbl                                                                  
    200019b8  ti_sysbios_knl_Task_Object__table__V                                      
    20001a08  ti_sysbios_family_arm_cc26xx_Timer_Object__table__V                       
    20001a50  ti_sysbios_gates_GateMutex_Object__table__V                               
    20001ab8  ti_sysbios_knl_Swi_Module_State_0_readyQ__A                               
    20001ae8  ti_sysbios_knl_Swi_Object__table__V                                       
    20001b18  ti_sysbios_knl_Task_Module_State_0_readyQ__A                              
    20001b48  user0Cfg                                                                  
    20001b78  ti_sysbios_knl_Clock_Object__table__V                                     
    20001b98  ti_sysbios_family_arm_m3_Hwi_Object__table__V                             
    20001bb0  ti_sysbios_heaps_HeapMem_Object__table__V                                 
    20001bc8  __TI_cleanup_ptr                                                          
    20001bcc  __TI_dtors_ptr                                                            
    20001bd0  __TI_enable_exit_profile_output                                           
    20001bd4  lastAppOpcodeSent                                                         
    20001bd8  pfnBMAlloc                                                                
    20001bdc  pfnBMFree                                                                 
    20001bf4  _lock                                                                     
    20001bf8  _unlock                                                                   
    20001c04  ti_sysbios_family_arm_m3_Hwi_Module__root__V                              
    20001c0c  ti_sysbios_gates_GateHwi_Module__root__V                                  
    20001c14  ti_sysbios_gates_GateMutex_Module__root__V                                
    20001c1c  ti_sysbios_hal_Hwi_Module__root__V                                        
    20001c24  ti_sysbios_heaps_HeapMem_Module__root__V                                  
    20001c2c  ti_sysbios_knl_Clock_Module__root__V                                      
    20001c34  ti_sysbios_knl_Mailbox_Module__root__V                                    
    20001c3c  ti_sysbios_knl_Queue_Module__root__V                                      
    20001c44  ti_sysbios_knl_Semaphore_Module__root__V                                  
    20001c4c  ti_sysbios_knl_Swi_Module__root__V                                        
    20001c54  ti_sysbios_knl_Task_Module__root__V                                       
    20001c5c  appAssertCback                                                            
    20001c6c  main_func_sp                                                              
    20001c70  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A                 
    20001c74  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A                   
    20001c78  ti_sysbios_knl_Task_Module_State_0_idleTask__A                            
    20001c88  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A                  
    20001c90  myCopyBlock                                                               
    20002c90  ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A                          
    20003310  stop_variable                                                             
    20003314  timeout_start_ms                                                          
    20003316  io_timeout                                                                
    2000331c  measurement_timing_budget_us                                              
    20003324  g_SensorValue                                                             
    2000333c  sensor_data                                                               
    20003630  write_value                                                               
    20003634  gl_SensorValue                                                            
    20003638  hSem                                                                      
    2000363c  singleSample                                                              
    20003640  pinHandle                                                                 
    20003648  isem                                                                      
    20003664  hwi                                                                       
    20003928  ti_sysbios_knl_Task_Instance_State_0_stack__A                             
    20003b28  uartCC26XXObjects                                                         
    20003c3c  PIN_NumPins                                                               
    20003cd0  PIN_HandleTable                                                           
    20003d4c  i2cCC26xxObjects                                                          
    20003e2c  ti_sysbios_family_arm_m3_Hwi_dispatchTable                                
    20003ef4  watchdogCC26XXObjects                                                     
    20003f70  zanConfig_active                                                          
    20003f90  nvsCC26xxObjects                                                          
    20003f94  trngCC26XXObjects                                                         
    20003f98  driverlib_release_0_46593                                                 
    20003f9b  heapStart                                                                 
    20004028  __stack                                                                   
    20004028  heapEnd                                                                   
    20004428  __STACK_END                                                               
    20004428  __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  __TI_pprof_out_hndl                                                       
    ffffffff  __TI_prof_data_size                                                       
    ffffffff  __TI_prof_data_start                                                      
    ffffffff  __binit__                                                                 
    ffffffff  __c_args__                                                                
    ffffffff  binit                                                                     
    UNDEFED   HwiP_restore                                                              
    UNDEFED   SHT$$INIT_ARRAY$$Base                                                     
    UNDEFED   SHT$$INIT_ARRAY$$Limit                                                    
    UNDEFED   millis                                                                    
    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                                          
    [1246 symbols]
    /*
     * Copyright (c) 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.
     */
    
    /*
     *  ====================== CC2650_LAUNCHXL.c ===================================
     *  This file is responsible for setting up the board specific items for the
     *  CC2650 LaunchPad.
     */
    
    
    /*
     *  ====================== Includes ============================================
     */
    #include <xdc/std.h>
    #include <xdc/runtime/System.h>
    
    #include <ti/sysbios/family/arm/m3/Hwi.h>
    #include <ti/drivers/PIN.h>
    #include <ti/drivers/pin/PINCC26XX.h>
    #include <ti/drivers/PWM.h>
    #include <ti/drivers/pwm/PWMTimerCC26XX.h>
    #include <ti/drivers/timer/GPTimerCC26XX.h>
    #include <ti/drivers/Power.h>
    #include <ti/drivers/power/PowerCC26XX.h>
    
    #include <inc/hw_memmap.h>
    #include <inc/hw_ints.h>
    #include <driverlib/ioc.h>
    #include <driverlib/udma.h>
    
    #include <Board.h>
    
    /*
     *  ========================= IO driver initialization =========================
     *  From main, PIN_init(BoardGpioInitTable) should be called to setup safe
     *  settings for this board.
     *  When a pin is allocated and then de-allocated, it will revert to the state
     *  configured in this table.
     */
    /* Place into subsections to allow the TI linker to remove items properly */
    #if defined(__TI_COMPILER_VERSION__)
    #pragma DATA_SECTION(BoardGpioInitTable, ".const:BoardGpioInitTable")
    #pragma DATA_SECTION(PINCC26XX_hwAttrs, ".const:PINCC26XX_hwAttrs")
    #endif
    
    const PIN_Config BoardGpioInitTable[] = {
    
        Board_RLED   | PIN_GPIO_OUTPUT_EN | PIN_GPIO_LOW | PIN_PUSHPULL | PIN_DRVSTR_MAX,         /* LED initially off             */
        Board_GLED   | PIN_GPIO_OUTPUT_EN | PIN_GPIO_LOW | PIN_PUSHPULL | PIN_DRVSTR_MAX,         /* LED initially off             */
        Board_BTN1   | PIN_INPUT_EN | PIN_PULLUP | PIN_IRQ_BOTHEDGES | PIN_HYSTERESIS,            /* Button is active low          */
        Board_BTN2   | PIN_INPUT_EN | PIN_PULLUP | PIN_IRQ_BOTHEDGES | PIN_HYSTERESIS,            /* Button is active low          */
        Board_SPI_FLASH_CS | PIN_GPIO_OUTPUT_EN | PIN_GPIO_HIGH | PIN_PUSHPULL | PIN_DRVSTR_MIN,  /* External flash chip select    */
        Board_UART_RX | PIN_INPUT_EN | PIN_PULLDOWN,                                              /* UART RX via debugger back channel */
        Board_UART_TX | PIN_GPIO_OUTPUT_EN | PIN_GPIO_HIGH | PIN_PUSHPULL,                        /* UART TX via debugger back channel */
        Board_SPI0_MOSI | PIN_INPUT_EN | PIN_PULLDOWN,                                            /* SPI master out - slave in */
        Board_SPI0_MISO | PIN_INPUT_EN | PIN_PULLDOWN,                                            /* SPI master in - slave out */
        Board_SPI0_CLK | PIN_INPUT_EN | PIN_PULLDOWN,                                             /* SPI clock */
    
        PIN_TERMINATE
    };
    
    const PINCC26XX_HWAttrs PINCC26XX_hwAttrs = {
        .intPriority = ~0,
        .swiPriority = 0
    };
    /*============================================================================*/
    
    /*
     *  ============================= Power begin ==================================
     */
    /* Place into subsections to allow the TI linker to remove items properly */
    #if defined(__TI_COMPILER_VERSION__)
    #pragma DATA_SECTION(PowerCC26XX_config, ".const:PowerCC26XX_config")
    #endif
    const PowerCC26XX_Config PowerCC26XX_config = {
        .policyInitFxn      = NULL,
        .policyFxn          = &PowerCC26XX_standbyPolicy,
        .calibrateFxn       = &PowerCC26XX_calibrate,
        .enablePolicy       = TRUE,
        .calibrateRCOSC_LF  = TRUE,
        .calibrateRCOSC_HF  = TRUE,
    };
    /*
     *  ============================= Power end ====================================
     */
    
    /*
     *  ============================= UART begin ===================================
     */
    /* Place into subsections to allow the TI linker to remove items properly */
    #if defined(__TI_COMPILER_VERSION__)
    #pragma DATA_SECTION(UART_config, ".const:UART_config")
    #pragma DATA_SECTION(uartCC26XXHWAttrs, ".const:uartCC26XXHWAttrs")
    #endif
    
    /* Include drivers */
    #include <ti/drivers/UART.h>
    #include <ti/drivers/uart/UARTCC26XX.h>
    
    /* UART objects */
    UARTCC26XX_Object uartCC26XXObjects[CC2650_LAUNCHXL_UARTCOUNT];
    
    /* UART hardware parameter structure, also used to assign UART pins */
    const UARTCC26XX_HWAttrsV1 uartCC26XXHWAttrs[CC2650_LAUNCHXL_UARTCOUNT] = {
        {
            .baseAddr       = UART0_BASE,
            .powerMngrId    = PowerCC26XX_PERIPH_UART0,
            .intNum         = INT_UART0_COMB,
            .intPriority    = ~0,
            .swiPriority    = 0,
            .txPin          = Board_UART_TX,
            .rxPin          = Board_UART_RX,
            .ctsPin         = PIN_UNASSIGNED,
            .rtsPin         = PIN_UNASSIGNED
        }
    };
    
    /* UART configuration structure */
    const UART_Config UART_config[] = {
        {
            .fxnTablePtr = &UARTCC26XX_fxnTable,
            .object      = &uartCC26XXObjects[0],
            .hwAttrs     = &uartCC26XXHWAttrs[0]
        },
        {NULL, NULL, NULL}
    };
    /*
     *  ============================= UART end =====================================
     */
    
    /*
     *  ============================= UDMA begin ===================================
     */
    /* Place into subsections to allow the TI linker to remove items properly */
    #if defined(__TI_COMPILER_VERSION__)
    #pragma DATA_SECTION(UDMACC26XX_config, ".const:UDMACC26XX_config")
    #pragma DATA_SECTION(udmaHWAttrs, ".const:udmaHWAttrs")
    #endif
    
    /* Include drivers */
    #include <ti/drivers/dma/UDMACC26XX.h>
    
    /* UDMA objects */
    UDMACC26XX_Object udmaObjects[CC2650_LAUNCHXL_UDMACOUNT];
    
    /* UDMA configuration structure */
    const UDMACC26XX_HWAttrs udmaHWAttrs[CC2650_LAUNCHXL_UDMACOUNT] = {
        {
            .baseAddr    = UDMA0_BASE,
            .powerMngrId = PowerCC26XX_PERIPH_UDMA,
            .intNum      = INT_DMA_ERR,
            .intPriority = ~0
        }
    };
    
    /* UDMA configuration structure */
    const UDMACC26XX_Config UDMACC26XX_config[] = {
        {
             .object  = &udmaObjects[0],
             .hwAttrs = &udmaHWAttrs[0]
        },
        {NULL, NULL}
    };
    /*
     *  ============================= UDMA end =====================================
     */
    
    /*
     *  ========================== SPI DMA begin ===================================
     */
    /* Place into subsections to allow the TI linker to remove items properly */
    #if defined(__TI_COMPILER_VERSION__)
    #pragma DATA_SECTION(SPI_config, ".const:SPI_config")
    #pragma DATA_SECTION(spiCC26XXDMAHWAttrs, ".const:spiCC26XXDMAHWAttrs")
    #endif
    
    /* Include drivers */
    #include <ti/drivers/spi/SPICC26XXDMA.h>
    
    /* SPI objects */
    SPICC26XXDMA_Object spiCC26XXDMAObjects[CC2650_LAUNCHXL_SPICOUNT];
    
    /* SPI configuration structure, describing which pins are to be used */
    const SPICC26XXDMA_HWAttrsV1 spiCC26XXDMAHWAttrs[CC2650_LAUNCHXL_SPICOUNT] = {
        {
            .baseAddr           = SSI0_BASE,
            .intNum             = INT_SSI0_COMB,
            .intPriority        = ~0,
            .swiPriority        = 0,
            .powerMngrId        = PowerCC26XX_PERIPH_SSI0,
            .defaultTxBufValue  = 0,
            .rxChannelBitMask   = 1<<UDMA_CHAN_SSI0_RX,
            .txChannelBitMask   = 1<<UDMA_CHAN_SSI0_TX,
            .mosiPin            = Board_SPI0_MOSI,
            .misoPin            = Board_SPI0_MISO,
            .clkPin             = Board_SPI0_CLK,
            .csnPin             = Board_SPI0_CSN
        },
        {
            .baseAddr           = SSI1_BASE,
            .intNum             = INT_SSI1_COMB,
            .intPriority        = ~0,
            .swiPriority        = 0,
            .powerMngrId        = PowerCC26XX_PERIPH_SSI1,
            .defaultTxBufValue  = 0,
            .rxChannelBitMask   = 1<<UDMA_CHAN_SSI1_RX,
            .txChannelBitMask   = 1<<UDMA_CHAN_SSI1_TX,
            .mosiPin            = Board_SPI1_MOSI,
            .misoPin            = Board_SPI1_MISO,
            .clkPin             = Board_SPI1_CLK,
            .csnPin             = Board_SPI1_CSN
        }
    };
    
    /* SPI configuration structure */
    const SPI_Config SPI_config[] = {
        {
             .fxnTablePtr = &SPICC26XXDMA_fxnTable,
             .object      = &spiCC26XXDMAObjects[0],
             .hwAttrs     = &spiCC26XXDMAHWAttrs[0]
        },
        {
             .fxnTablePtr = &SPICC26XXDMA_fxnTable,
             .object      = &spiCC26XXDMAObjects[1],
             .hwAttrs     = &spiCC26XXDMAHWAttrs[1]
        },
        {NULL, NULL, NULL}
    };
    /*
     *  ========================== SPI DMA end =====================================
    */
    
    
    /*
     *  ============================= I2C Begin=====================================
    */
    /* Place into subsections to allow the TI linker to remove items properly */
    #if defined(__TI_COMPILER_VERSION__)
    #pragma DATA_SECTION(I2C_config, ".const:I2C_config")
    #pragma DATA_SECTION(i2cCC26xxHWAttrs, ".const:i2cCC26xxHWAttrs")
    #endif
    
    /* Include drivers */
    #include <ti/drivers/i2c/I2CCC26XX.h>
    
    /* I2C objects */
    I2CCC26XX_Object i2cCC26xxObjects[CC2650_LAUNCHXL_I2CCOUNT];
    
    /* I2C configuration structure, describing which pins are to be used */
    const I2CCC26XX_HWAttrsV1 i2cCC26xxHWAttrs[CC2650_LAUNCHXL_I2CCOUNT] = {
        {
            .baseAddr = I2C0_BASE,
            .powerMngrId = PowerCC26XX_PERIPH_I2C0,
            .intNum = INT_I2C_IRQ,
            .intPriority = ~0,
            .swiPriority = 0,
            .sdaPin = Board_I2C0_SDA0,
            .sclPin = Board_I2C0_SCL0,
        }
    };
    
    /* I2C configuration structure */
    const I2C_Config I2C_config[] = {
        {
            .fxnTablePtr = &I2CCC26XX_fxnTable,
            .object = &i2cCC26xxObjects[0],
            .hwAttrs = &i2cCC26xxHWAttrs[0]
        },
        {NULL, NULL, NULL}
    };
    /*
     *  ========================== I2C end =========================================
     */
    
    /*
     *  ========================== Crypto begin ====================================
     *  NOTE: The Crypto implementation should be considered experimental
     *        and not validated!
     */
    /* Place into subsections to allow the TI linker to remove items properly */
    #if defined(__TI_COMPILER_VERSION__)
    #pragma DATA_SECTION(CryptoCC26XX_config, ".const:CryptoCC26XX_config")
    #pragma DATA_SECTION(cryptoCC26XXHWAttrs, ".const:cryptoCC26XXHWAttrs")
    #endif
    
    /* Include drivers */
    #include <ti/drivers/crypto/CryptoCC26XX.h>
    
    /* Crypto objects */
    CryptoCC26XX_Object cryptoCC26XXObjects[CC2650_LAUNCHXL_CRYPTOCOUNT];
    
    /* Crypto configuration structure, describing which pins are to be used */
    const CryptoCC26XX_HWAttrs cryptoCC26XXHWAttrs[CC2650_LAUNCHXL_CRYPTOCOUNT] = {
        {
            .baseAddr       = CRYPTO_BASE,
            .powerMngrId    = PowerCC26XX_PERIPH_CRYPTO,
            .intNum         = INT_CRYPTO_RESULT_AVAIL_IRQ,
            .intPriority    = ~0,
        }
    };
    
    /* Crypto configuration structure */
    const CryptoCC26XX_Config CryptoCC26XX_config[] = {
        {
             .object  = &cryptoCC26XXObjects[0],
             .hwAttrs = &cryptoCC26XXHWAttrs[0]
        },
        {NULL, NULL}
    };
    /*
     *  ========================== Crypto end ======================================
     */
    
    
    /*
     *  ========================= RF driver begin ==================================
     */
    /* Place into subsections to allow the TI linker to remove items properly */
    #if defined(__TI_COMPILER_VERSION__)
    #pragma DATA_SECTION(RFCC26XX_hwAttrs, ".const:RFCC26XX_hwAttrs")
    #endif
    
    /* Include drivers */
    #include <ti/drivers/rf/RF.h>
    
    /* RF hwi and swi priority */
    const RFCC26XX_HWAttrs RFCC26XX_hwAttrs = {
        .hwiCpe0Priority = ~0,
        .hwiHwPriority   = ~0,
        .swiCpe0Priority =  0,
        .swiHwPriority   =  0,
    };
    
    /*
     *  ========================== RF driver end ===================================
     */
    
    /*
     *  ========================= Display begin ====================================
     */
    /* Place into subsections to allow the TI linker to remove items properly */
    #if defined(__TI_COMPILER_VERSION__)
    #pragma DATA_SECTION(Display_config, ".const:Display_config")
    #pragma DATA_SECTION(displaySharpHWattrs, ".const:displaySharpHWattrs")
    #pragma DATA_SECTION(displayUartHWAttrs, ".const:displayUartHWAttrs")
    #endif
    
    #include <ti/mw/display/Display.h>
    #include <ti/mw/display/DisplaySharp.h>
    #include <ti/mw/display/DisplayUart.h>
    
    /* Structures for UartPlain Blocking */
    DisplayUart_Object        displayUartObject;
    
    #ifndef BOARD_DISPLAY_UART_STRBUF_SIZE
    #define BOARD_DISPLAY_UART_STRBUF_SIZE    128
    #endif
    static char uartStringBuf[BOARD_DISPLAY_UART_STRBUF_SIZE];
    
    const DisplayUart_HWAttrs displayUartHWAttrs = {
        .uartIdx      = Board_UART,
        .baudRate     =     115200,
        .mutexTimeout = BIOS_WAIT_FOREVER,
        .strBuf = uartStringBuf,
        .strBufLen = BOARD_DISPLAY_UART_STRBUF_SIZE,
    };
    
    /* Structures for SHARP */
    DisplaySharp_Object displaySharpObject;
    
    #ifndef BOARD_DISPLAY_SHARP_SIZE
    #define BOARD_DISPLAY_SHARP_SIZE    96 // 96->96x96 is the most common board, alternative is 128->128x128.
    #endif
    static uint8_t sharpDisplayBuf[BOARD_DISPLAY_SHARP_SIZE * BOARD_DISPLAY_SHARP_SIZE / 8];
    
    const DisplaySharp_HWAttrs displaySharpHWattrs = {
        .spiIndex    = Board_SPI0,
        .csPin       = Board_LCD_CS,
        .extcominPin = Board_LCD_EXTCOMIN,
        .powerPin    = Board_LCD_POWER,
        .enablePin   = Board_LCD_ENABLE,
        .pixelWidth  = BOARD_DISPLAY_SHARP_SIZE,
        .pixelHeight = BOARD_DISPLAY_SHARP_SIZE,
        .displayBuf  = sharpDisplayBuf,
    };
    
    /* Array of displays */
    const Display_Config Display_config[] = {
    #if !defined(BOARD_DISPLAY_EXCLUDE_UART)
        {
            .fxnTablePtr = &DisplayUart_fxnTable,
            .object      = &displayUartObject,
            .hwAttrs     = &displayUartHWAttrs,
        },
    #endif
    #if !defined(BOARD_DISPLAY_EXCLUDE_LCD)
        {
            .fxnTablePtr = &DisplaySharp_fxnTable,
            .object      = &displaySharpObject,
            .hwAttrs     = &displaySharpHWattrs
        },
    #endif
        { NULL, NULL, NULL } // Terminator
    };
    
    /*
     *  ========================= Display end ======================================
     */
    
    /*
     *  ============================ GPTimer begin =================================
     *  Remove unused entries to reduce flash usage both in Board.c and Board.h
     */
    /* Place into subsections to allow the TI linker to remove items properly */
    #if defined(__TI_COMPILER_VERSION__)
    #pragma DATA_SECTION(GPTimerCC26XX_config, ".const:GPTimerCC26XX_config")
    #pragma DATA_SECTION(gptimerCC26xxHWAttrs, ".const:gptimerCC26xxHWAttrs")
    #endif
    
    /* GPTimer hardware attributes, one per timer part (Timer 0A, 0B, 1A, 1B..) */
    const GPTimerCC26XX_HWAttrs gptimerCC26xxHWAttrs[CC2650_LAUNCHXL_GPTIMERPARTSCOUNT] = {
        { .baseAddr = GPT0_BASE, .intNum = INT_GPT0A, .intPriority = (~0), .powerMngrId = PowerCC26XX_PERIPH_GPT0, .pinMux = GPT_PIN_0A, },
        { .baseAddr = GPT0_BASE, .intNum = INT_GPT0B, .intPriority = (~0), .powerMngrId = PowerCC26XX_PERIPH_GPT0, .pinMux = GPT_PIN_0B, },
        { .baseAddr = GPT1_BASE, .intNum = INT_GPT1A, .intPriority = (~0), .powerMngrId = PowerCC26XX_PERIPH_GPT1, .pinMux = GPT_PIN_1A, },
        { .baseAddr = GPT1_BASE, .intNum = INT_GPT1B, .intPriority = (~0), .powerMngrId = PowerCC26XX_PERIPH_GPT1, .pinMux = GPT_PIN_1B, },
        { .baseAddr = GPT2_BASE, .intNum = INT_GPT2A, .intPriority = (~0), .powerMngrId = PowerCC26XX_PERIPH_GPT2, .pinMux = GPT_PIN_2A, },
        { .baseAddr = GPT2_BASE, .intNum = INT_GPT2B, .intPriority = (~0), .powerMngrId = PowerCC26XX_PERIPH_GPT2, .pinMux = GPT_PIN_2B, },
        { .baseAddr = GPT3_BASE, .intNum = INT_GPT3A, .intPriority = (~0), .powerMngrId = PowerCC26XX_PERIPH_GPT3, .pinMux = GPT_PIN_3A, },
        { .baseAddr = GPT3_BASE, .intNum = INT_GPT3B, .intPriority = (~0), .powerMngrId = PowerCC26XX_PERIPH_GPT3, .pinMux = GPT_PIN_3B, },
    };
    
    /*  GPTimer objects, one per full-width timer (A+B) (Timer 0, Timer 1..) */
    GPTimerCC26XX_Object gptimerCC26XXObjects[CC2650_LAUNCHXL_GPTIMERCOUNT];
    
    /* GPTimer configuration (used as GPTimer_Handle by driver and application) */
    const GPTimerCC26XX_Config GPTimerCC26XX_config[CC2650_LAUNCHXL_GPTIMERPARTSCOUNT] = {
        { &gptimerCC26XXObjects[0], &gptimerCC26xxHWAttrs[0], GPT_A },
        { &gptimerCC26XXObjects[0], &gptimerCC26xxHWAttrs[1], GPT_B },
        { &gptimerCC26XXObjects[1], &gptimerCC26xxHWAttrs[2], GPT_A },
        { &gptimerCC26XXObjects[1], &gptimerCC26xxHWAttrs[3], GPT_B },
        { &gptimerCC26XXObjects[2], &gptimerCC26xxHWAttrs[4], GPT_A },
        { &gptimerCC26XXObjects[2], &gptimerCC26xxHWAttrs[5], GPT_B },
        { &gptimerCC26XXObjects[3], &gptimerCC26xxHWAttrs[6], GPT_A },
        { &gptimerCC26XXObjects[3], &gptimerCC26xxHWAttrs[7], GPT_B },
    };
    
    /*
     *  ============================ GPTimer end ===================================
     */
    
    
    
    /*
     *  ============================= PWM begin ====================================
     *  Remove unused entries to reduce flash usage both in Board.c and Board.h
     */
    /* Place into subsections to allow the TI linker to remove items properly */
    #if defined(__TI_COMPILER_VERSION__)
    #pragma DATA_SECTION(PWM_config, ".const:PWM_config")
    #pragma DATA_SECTION(pwmtimerCC26xxHWAttrs, ".const:pwmtimerCC26xxHWAttrs")
    #endif
    
    /* PWM configuration, one per PWM output.   */
    PWMTimerCC26XX_HwAttrs pwmtimerCC26xxHWAttrs[CC2650_LAUNCHXL_PWMCOUNT] = {
        { .pwmPin = Board_PWMPIN0, .gpTimerUnit = Board_GPTIMER0A },
        { .pwmPin = Board_PWMPIN1, .gpTimerUnit = Board_GPTIMER0B },
        { .pwmPin = Board_PWMPIN2, .gpTimerUnit = Board_GPTIMER1A },
        { .pwmPin = Board_PWMPIN3, .gpTimerUnit = Board_GPTIMER1B },
        { .pwmPin = Board_PWMPIN4, .gpTimerUnit = Board_GPTIMER2A },
        { .pwmPin = Board_PWMPIN5, .gpTimerUnit = Board_GPTIMER2B },
        { .pwmPin = Board_PWMPIN6, .gpTimerUnit = Board_GPTIMER3A },
        { .pwmPin = Board_PWMPIN7, .gpTimerUnit = Board_GPTIMER3B },
    };
    
    /* PWM object, one per PWM output */
    PWMTimerCC26XX_Object pwmtimerCC26xxObjects[CC2650_LAUNCHXL_PWMCOUNT];
    
    extern const PWM_FxnTable PWMTimerCC26XX_fxnTable;
    
    /* PWM configuration (used as PWM_Handle by driver and application) */
    const PWM_Config PWM_config[CC2650_LAUNCHXL_PWMCOUNT + 1] = {
        { &PWMTimerCC26XX_fxnTable, &pwmtimerCC26xxObjects[0], &pwmtimerCC26xxHWAttrs[0] },
        { &PWMTimerCC26XX_fxnTable, &pwmtimerCC26xxObjects[1], &pwmtimerCC26xxHWAttrs[1] },
        { &PWMTimerCC26XX_fxnTable, &pwmtimerCC26xxObjects[2], &pwmtimerCC26xxHWAttrs[2] },
        { &PWMTimerCC26XX_fxnTable, &pwmtimerCC26xxObjects[3], &pwmtimerCC26xxHWAttrs[3] },
        { &PWMTimerCC26XX_fxnTable, &pwmtimerCC26xxObjects[4], &pwmtimerCC26xxHWAttrs[4] },
        { &PWMTimerCC26XX_fxnTable, &pwmtimerCC26xxObjects[5], &pwmtimerCC26xxHWAttrs[5] },
        { &PWMTimerCC26XX_fxnTable, &pwmtimerCC26xxObjects[6], &pwmtimerCC26xxHWAttrs[6] },
        { &PWMTimerCC26XX_fxnTable, &pwmtimerCC26xxObjects[7], &pwmtimerCC26xxHWAttrs[7] },
        { NULL,                NULL,                 NULL                 }
    };
    
    
    /*
     *  ============================= PWM end ======================================
     */
    
    /*
     *  ========================== ADCBuf begin =========================================
     */
    /* Place into subsections to allow the TI linker to remove items properly */
    #if defined(__TI_COMPILER_VERSION__)
    #pragma DATA_SECTION(ADCBuf_config, ".const:ADCBuf_config")
    #pragma DATA_SECTION(adcBufCC26xxHWAttrs, ".const:adcBufCC26xxHWAttrs")
    #pragma DATA_SECTION(ADCBufCC26XX_adcChannelLut, ".const:ADCBufCC26XX_adcChannelLut")
    #endif
    
    /* Include drivers */
    #include <ti/drivers/ADCBuf.h>
    #include <ti/drivers/adcbuf/ADCBufCC26XX.h>
    
    /* ADCBuf objects */
    ADCBufCC26XX_Object adcBufCC26xxObjects[CC2650_LAUNCHXL_ADCBufCOUNT];
    
    /*
     *  This table converts a virtual adc channel into a dio and internal analogue input signal.
     *  This table is necessary for the functioning of the adcBuf driver.
     *  Comment out unused entries to save flash.
     *  Dio and internal signal pairs are hardwired. Do not remap them in the table. You may reorder entire entries though.
     *  The mapping of dio and internal signals is package dependent.
     */
    const ADCBufCC26XX_AdcChannelLutEntry ADCBufCC26XX_adcChannelLut[] = {
        {PIN_UNASSIGNED, ADC_COMPB_IN_VDDS},
        {PIN_UNASSIGNED, ADC_COMPB_IN_DCOUPL},
        {PIN_UNASSIGNED, ADC_COMPB_IN_VSS},
        {Board_DIO23_ANALOG, ADC_COMPB_IN_AUXIO7},
        {Board_DIO24_ANALOG, ADC_COMPB_IN_AUXIO6},
        {Board_DIO25_ANALOG, ADC_COMPB_IN_AUXIO5},
        {Board_DIO26_ANALOG, ADC_COMPB_IN_AUXIO4},
        {Board_DIO27_ANALOG, ADC_COMPB_IN_AUXIO3},
        {Board_DIO28_ANALOG, ADC_COMPB_IN_AUXIO2},
        {Board_DIO29_ANALOG, ADC_COMPB_IN_AUXIO1},
        {Board_DIO30_ANALOG, ADC_COMPB_IN_AUXIO0},
    };
    
    const ADCBufCC26XX_HWAttrs adcBufCC26xxHWAttrs[CC2650_LAUNCHXL_ADCBufCOUNT] = {
        {
            .intPriority = ~0,
            .swiPriority = 0,
            .adcChannelLut = ADCBufCC26XX_adcChannelLut,
            .gpTimerUnit = Board_GPTIMER0A,
            .gptDMAChannelMask = 1 << UDMA_CHAN_TIMER0_A,
        }
    };
    
    const ADCBuf_Config ADCBuf_config[] = {
        {&ADCBufCC26XX_fxnTable, &adcBufCC26xxObjects[0], &adcBufCC26xxHWAttrs[0]},
        {NULL, NULL, NULL},
    };
    /*
     *  ========================== ADCBuf end =========================================
     */
    
    
    
    /*
     *  ========================== ADC begin =========================================
     */
    /* Place into subsections to allow the TI linker to remove items properly */
    #if defined(__TI_COMPILER_VERSION__)
    #pragma DATA_SECTION(ADC_config, ".const:ADC_config")
    #pragma DATA_SECTION(adcCC26xxHWAttrs, ".const:adcCC26xxHWAttrs")
    #endif
    
    /* Include drivers */
    #include <ti/drivers/ADC.h>
    #include <ti/drivers/adc/ADCCC26XX.h>
    
    /* ADC objects */
    ADCCC26XX_Object adcCC26xxObjects[CC2650_LAUNCHXL_ADCCOUNT];
    
    
    const ADCCC26XX_HWAttrs adcCC26xxHWAttrs[CC2650_LAUNCHXL_ADCCOUNT] = {
        {
            .adcDIO = Board_DIO23_ANALOG,
            .adcCompBInput = ADC_COMPB_IN_AUXIO7,
            .refSource = ADCCC26XX_FIXED_REFERENCE,
            .samplingDuration = ADCCC26XX_SAMPLING_DURATION_2P7_US,
            .inputScalingEnabled = true,
            .triggerSource = ADCCC26XX_TRIGGER_MANUAL
        },
        {
            .adcDIO = Board_DIO24_ANALOG,
            .adcCompBInput = ADC_COMPB_IN_AUXIO6,
            .refSource = ADCCC26XX_FIXED_REFERENCE,
            .samplingDuration = ADCCC26XX_SAMPLING_DURATION_2P7_US,
            .inputScalingEnabled = true,
            .triggerSource = ADCCC26XX_TRIGGER_MANUAL
        },
        {
            .adcDIO = Board_DIO25_ANALOG,
            .adcCompBInput = ADC_COMPB_IN_AUXIO5,
            .refSource = ADCCC26XX_FIXED_REFERENCE,
            .samplingDuration = ADCCC26XX_SAMPLING_DURATION_2P7_US,
            .inputScalingEnabled = true,
            .triggerSource = ADCCC26XX_TRIGGER_MANUAL
        },
        {
            .adcDIO = Board_DIO26_ANALOG,
            .adcCompBInput = ADC_COMPB_IN_AUXIO4,
            .refSource = ADCCC26XX_FIXED_REFERENCE,
            .samplingDuration = ADCCC26XX_SAMPLING_DURATION_2P7_US,
            .inputScalingEnabled = true,
            .triggerSource = ADCCC26XX_TRIGGER_MANUAL
        },
        {
            .adcDIO = Board_DIO27_ANALOG,
            .adcCompBInput = ADC_COMPB_IN_AUXIO3,
            .refSource = ADCCC26XX_FIXED_REFERENCE,
            .samplingDuration = ADCCC26XX_SAMPLING_DURATION_2P7_US,
            .inputScalingEnabled = true,
            .triggerSource = ADCCC26XX_TRIGGER_MANUAL
        },
        {
            .adcDIO = Board_DIO28_ANALOG,
            .adcCompBInput = ADC_COMPB_IN_AUXIO2,
            .refSource = ADCCC26XX_FIXED_REFERENCE,
            .samplingDuration = ADCCC26XX_SAMPLING_DURATION_2P7_US,
            .inputScalingEnabled = true,
            .triggerSource = ADCCC26XX_TRIGGER_MANUAL
        },
        {
            .adcDIO = Board_DIO29_ANALOG,
            .adcCompBInput = ADC_COMPB_IN_AUXIO1,
            .refSource = ADCCC26XX_FIXED_REFERENCE,
            .samplingDuration = ADCCC26XX_SAMPLING_DURATION_2P7_US,
            .inputScalingEnabled = true,
            .triggerSource = ADCCC26XX_TRIGGER_MANUAL
        },
        {
            .adcDIO = Board_DIO30_ANALOG,
            .adcCompBInput = ADC_COMPB_IN_AUXIO0,
            .refSource = ADCCC26XX_FIXED_REFERENCE,
            .samplingDuration = ADCCC26XX_SAMPLING_DURATION_10P9_MS,
            .inputScalingEnabled = true,
            .triggerSource = ADCCC26XX_TRIGGER_MANUAL
        },
        {
            .adcDIO = PIN_UNASSIGNED,
            .adcCompBInput = ADC_COMPB_IN_DCOUPL,
            .refSource = ADCCC26XX_FIXED_REFERENCE,
            .samplingDuration = ADCCC26XX_SAMPLING_DURATION_2P7_US,
            .inputScalingEnabled = true,
            .triggerSource = ADCCC26XX_TRIGGER_MANUAL
        },
        {
            .adcDIO = PIN_UNASSIGNED,
            .adcCompBInput = ADC_COMPB_IN_VSS,
            .refSource = ADCCC26XX_FIXED_REFERENCE,
            .samplingDuration = ADCCC26XX_SAMPLING_DURATION_2P7_US,
            .inputScalingEnabled = true,
            .triggerSource = ADCCC26XX_TRIGGER_MANUAL
        },
        {
            .adcDIO = PIN_UNASSIGNED,
            .adcCompBInput = ADC_COMPB_IN_VDDS,
            .refSource = ADCCC26XX_FIXED_REFERENCE,
            .samplingDuration = ADCCC26XX_SAMPLING_DURATION_2P7_US,
            .inputScalingEnabled = true,
            .triggerSource = ADCCC26XX_TRIGGER_MANUAL
        }
    };
    
    const ADC_Config ADC_config[] = {
        {&ADCCC26XX_fxnTable, &adcCC26xxObjects[0], &adcCC26xxHWAttrs[0]},
        {&ADCCC26XX_fxnTable, &adcCC26xxObjects[1], &adcCC26xxHWAttrs[1]},
        {&ADCCC26XX_fxnTable, &adcCC26xxObjects[2], &adcCC26xxHWAttrs[2]},
        {&ADCCC26XX_fxnTable, &adcCC26xxObjects[3], &adcCC26xxHWAttrs[3]},
        {&ADCCC26XX_fxnTable, &adcCC26xxObjects[4], &adcCC26xxHWAttrs[4]},
        {&ADCCC26XX_fxnTable, &adcCC26xxObjects[5], &adcCC26xxHWAttrs[5]},
        {&ADCCC26XX_fxnTable, &adcCC26xxObjects[6], &adcCC26xxHWAttrs[6]},
        {&ADCCC26XX_fxnTable, &adcCC26xxObjects[7], &adcCC26xxHWAttrs[7]},
        {&ADCCC26XX_fxnTable, &adcCC26xxObjects[8], &adcCC26xxHWAttrs[8]},
        {&ADCCC26XX_fxnTable, &adcCC26xxObjects[9], &adcCC26xxHWAttrs[9]},
        {&ADCCC26XX_fxnTable, &adcCC26xxObjects[10], &adcCC26xxHWAttrs[10]},
        {NULL, NULL, NULL},
    };
    
    /*
     *  ========================== ADC end =========================================
     */
    

  • Dear Alan,

          NVS and UART both are working individually.

    When we use both the modules at a time facing some issues.If I hide the code for NVS,UART is working fine.

    Herewith i have attached NVS init and NVS HWAttrs,

    1)NVS init 

    void File_System_Int(void)
    {
    NVS_init();
    nvsHandle = NVS_open(CC2650_LAUNCHXL_NVS1F000, NULL);

    /* + 1 to make sure to write the '\0' character */
    strSize = strlen("bar1") + 1;
    /* make sure the buffer size is a multiple of 4 */
    strSize = (strSize + 4) & 0xFFFFFFFFC;

    }

    2)NVS HWAttrs

    typedef enum CC2650_LAUNCHXL_NVSBufName {
    CC2650_LAUNCHXL_NVS1F000 = 0,
    CC2650_LAUNCHXL_NVSCOUNT
    } CC2650_LAUNCHXL_NVSBufName;


    Thanks,


  • ******************************************************************************
    TI ARM Linker PC v15.12.3
    ******************************************************************************
    >> Linked Mon Sep 18 17:52:44 2017

    OUTPUT FILE NAME: <bleV2_app.out>
    ENTRY POINT SYMBOL: "ResetISR" address: 00008b95


    MEMORY CONFIGURATION

    name origin length used unused attr fill
    ---------------------- -------- --------- -------- -------- ---- --------
    FLASH 00000000 00011000 0000e036 00002fca R X
    FLASH_LAST_PAGE 0001f000 00001000 00000058 00000fa8 R X
    SRAM 20000000 00004428 00004029 000003ff RW X


    SEGMENT ALLOCATION MAP

    run origin load origin length init length attrs members
    ---------- ----------- ---------- ----------- ----- -------
    00000000 00000000 0000e03c 0000e03c 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 0000b5a0 0000b5a0 r-x .text.4
    0000bb8c 0000bb8c 00001d6c 00001d6c r-- .const
    0000d8f8 0000d8f8 00000744 00000744 r-- .cinit
    0001ffa8 0001ffa8 00000058 00000058 r--
    0001ffa8 0001ffa8 00000058 00000058 r-- .ccfg
    20000100 20000100 00003b65 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 00001865 00000000 rw- .data
    20001a70 20001a70 000021f5 00000000 rw- .bss
    20004028 20004028 00000400 00000000 rw-
    20004028 20004028 00000400 00000000 rw- .stack


    SECTION ALLOCATION MAP

    output attributes/
    section page origin length input sections
    -------- ---- ---------- ---------- ----------------
    .resetVecs
    * 0 00000000 0000003c
    00000000 0000003c app_ble_pem3.oem3 (.resetVecs)

    .text.1 0 0000003c 000000c4
    0000003c 000000c0 ioservice.obj (.text:io_WriteAttrCB$31)
    000000fc 00000004 icall_api.obj (.text:GATTServApp_AddService)

    .const:ti_sysbios_knl_Task_Object__PARAMS__C
    * 0 00000100 0000003c
    00000100 0000003c app_ble_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_pem3.oem3 (.const:ti_sysbios_knl_Queue_Object__PARAMS__C)

    .const:ti_sysbios_knl_Idle_funcList__C
    * 0 00000478 00000008
    00000478 00000008 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Idle_funcList__C)

    .text.2 0 00000480 00000004
    00000480 00000004 icall.obj (.text:ICall_primAbort$20)

    .const:ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C
    * 0 00000484 00000004
    00000484 00000004 app_ble_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Object__table__C)

    .const:ti_sysbios_heaps_HeapMem_reqAlign__C
    * 0 000004c4 00000004
    000004c4 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_reqAlign__C)

    .const:ti_sysbios_knl_Clock_serviceMargin__C
    * 0 000004c8 00000004
    000004c8 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Clock_serviceMargin__C)

    .const:ti_sysbios_knl_Mailbox_Object__count__C
    * 0 000004cc 00000004
    000004cc 00000004 app_ble_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_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_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_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_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_pem3.oem3 (.const:ti_sysbios_knl_Swi_Object__table__C)

    .const:ti_sysbios_knl_Swi_numPriorities__C
    * 0 000004e4 00000004
    000004e4 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Swi_numPriorities__C)

    .const:ti_sysbios_knl_Task_Object__count__C
    * 0 000004e8 00000004
    000004e8 00000004 app_ble_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_pem3.oem3 (.const:ti_sysbios_knl_Task_Object__table__C)

    .const:ti_sysbios_knl_Task_allBlockedFunc__C
    * 0 000004f0 00000004
    000004f0 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_allBlockedFunc__C)

    .const:ti_sysbios_knl_Task_defaultStackHeap__C
    * 0 000004f4 00000004
    000004f4 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_defaultStackHeap__C)

    .const:ti_sysbios_knl_Task_defaultStackSize__C
    * 0 000004f8 00000004
    000004f8 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_defaultStackSize__C)

    .const:ti_sysbios_knl_Task_numConstructedTasks__C
    * 0 000004fc 00000004
    000004fc 00000004 app_ble_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_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_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_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_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_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_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Module__id__C)

    .const:ti_sysbios_knl_Task_initStackFlag__C
    * 0 0000050e 00000002
    0000050e 00000002 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_initStackFlag__C)

    .const:ti_sysbios_knl_Clock_tickMode__C
    * 0 00000510 00000001
    00000510 00000001 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Clock_tickMode__C)

    .const:xdc_runtime_Startup_firstFxns__C
    * 0 00000514 00000008
    00000514 00000008 app_ble_pem3.oem3 (.const:xdc_runtime_Startup_firstFxns__C)

    .const:xdc_runtime_Startup_lastFxns__C
    * 0 0000051c 00000008
    0000051c 00000008 app_ble_pem3.oem3 (.const:xdc_runtime_Startup_lastFxns__C)

    .const:xdc_runtime_Assert_E_assertFailed__C
    * 0 00000524 00000004
    00000524 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Assert_E_assertFailed__C)

    .const:xdc_runtime_Error_E_memory__C
    * 0 00000528 00000004
    00000528 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Error_E_memory__C)

    .const:xdc_runtime_Error_policyFxn__C
    * 0 0000052c 00000004
    0000052c 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Error_policyFxn__C)

    .const:xdc_runtime_IGateProvider_Interface__BASE__C
    * 0 00000530 00000004
    00000530 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_IGateProvider_Interface__BASE__C)

    .const:xdc_runtime_IHeap_Interface__BASE__C
    * 0 00000534 00000004
    00000534 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_IHeap_Interface__BASE__C)

    .const:xdc_runtime_IModule_Interface__BASE__C
    * 0 00000538 00000004
    00000538 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_IModule_Interface__BASE__C)

    .const:xdc_runtime_Main_Module__diagsEnabled__C
    * 0 0000053c 00000004
    0000053c 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__diagsEnabled__C)

    .const:xdc_runtime_Main_Module__diagsIncluded__C
    * 0 00000540 00000004
    00000540 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__diagsIncluded__C)

    .const:xdc_runtime_Main_Module__diagsMask__C
    * 0 00000544 00000004
    00000544 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__diagsMask__C)

    .const:xdc_runtime_Memory_defaultHeapInstance__C
    * 0 00000548 00000004
    00000548 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Memory_defaultHeapInstance__C)

    .const:xdc_runtime_Startup_execImpl__C
    * 0 0000054c 00000004
    0000054c 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Startup_execImpl__C)

    .const:xdc_runtime_Startup_maxPasses__C
    * 0 00000550 00000004
    00000550 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Startup_maxPasses__C)

    .const:xdc_runtime_Startup_sfxnRts__C
    * 0 00000554 00000004
    00000554 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Startup_sfxnRts__C)

    .const:xdc_runtime_Startup_sfxnTab__C
    * 0 00000558 00000004
    00000558 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Startup_sfxnTab__C)

    .const:xdc_runtime_Startup_startModsFxn__C
    * 0 0000055c 00000004
    0000055c 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Startup_startModsFxn__C)

    .const:xdc_runtime_SysCallback_abortFxn__C
    * 0 00000560 00000004
    00000560 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_SysCallback_abortFxn__C)

    .const:xdc_runtime_SysCallback_exitFxn__C
    * 0 00000564 00000004
    00000564 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_SysCallback_exitFxn__C)

    .const:xdc_runtime_System_abortFxn__C
    * 0 00000568 00000004
    00000568 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_System_abortFxn__C)

    .const:xdc_runtime_System_exitFxn__C
    * 0 0000056c 00000004
    0000056c 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_System_exitFxn__C)

    .const:xdc_runtime_System_maxAtexitHandlers__C
    * 0 00000570 00000004
    00000570 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_System_maxAtexitHandlers__C)

    .const:xdc_runtime_Text_charTab__C
    * 0 00000574 00000004
    00000574 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Text_charTab__C)

    .const:xdc_runtime_Text_nameEmpty__C
    * 0 00000578 00000004
    00000578 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Text_nameEmpty__C)

    .const:xdc_runtime_Text_nameStatic__C
    * 0 0000057c 00000004
    0000057c 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Text_nameStatic__C)

    .const:xdc_runtime_Text_nameUnknown__C
    * 0 00000580 00000004
    00000580 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Text_nameUnknown__C)

    .const:xdc_runtime_Main_Module__id__C
    * 0 00000584 00000002
    00000584 00000002 app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__id__C)

    .const:xdc_runtime_Memory_Module__id__C
    * 0 00000586 00000002
    00000586 00000002 app_ble_pem3.oem3 (.const:xdc_runtime_Memory_Module__id__C)

    .const:xdc_runtime_Text_charCnt__C
    * 0 00000588 00000002
    00000588 00000002 app_ble_pem3.oem3 (.const:xdc_runtime_Text_charCnt__C)

    .const:xdc_runtime_Text_isLoaded__C
    * 0 0000058a 00000002
    0000058a 00000002 app_ble_pem3.oem3 (.const:xdc_runtime_Text_isLoaded__C)

    .const:xdc_runtime_Error_policy__C
    * 0 0000058c 00000001
    0000058c 00000001 app_ble_pem3.oem3 (.const:xdc_runtime_Error_policy__C)

    .const:ti_sysbios_rom_ROM_AONRTCChannelEnable
    * 0 00000590 00000004
    00000590 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_AONRTCChannelEnable)

    .const:ti_sysbios_rom_ROM_AONRTCCompareValueSet
    * 0 00000594 00000004
    00000594 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_AONRTCCompareValueSet)

    .const:ti_sysbios_rom_ROM_AONRTCCurrentCompareValueGet
    * 0 00000598 00000004
    00000598 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_AONRTCCurrentCompareValueGet)

    .const:ti_sysbios_rom_ROM_AONRTCEventClear
    * 0 0000059c 00000004
    0000059c 00000004 app_ble_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_pem3.oem3 (.const:ti_sysbios_knl_Task_Module_State_inactiveQ__O)

    .text.4 0 000005ec 0000b5a0
    000005ec 000006dc I2CCC26XX.obj (.text:I2CCC26XX_hwiFxn$13)
    00000cc8 00000340 I2CCC26XX.obj (.text:I2CCC26XX_primeTransfer$13)
    00001008 00000338 rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_System_doPrint__I)
    00001340 00000314 RFCC26XX_singleMode.obj (.text:fsmActiveState$15)
    00001654 000002ec peripheral.obj (.text:gapRole_processGAPMsg$35)
    00001940 00000284 sensortag_bar.obj (.text:VL53L0xDefaultSettings)
    00001bc4 00000264 I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    00001e28 00000240 sensortag_tmp.obj (.text:flash_local_clear_wash_water_data)
    00002068 0000023c peripheral.obj (.text:GAPRole_SetParameter)
    000022a4 00000228 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
    000024cc 00000218 sensortag.obj (.text:SensorTag_init$0)
    000026e4 00000204 driverlib.lib : sys_ctrl.obj (.text:NOROM_SysCtrlSetRechargeBeforePowerDown)
    000028e8 000001f4 I2CCC26XX.obj (.text:I2CCC26XX_open)
    00002adc 000001f4 rtsv7M3_T_le_eabi.lib : ull_div_t2.obj (.text)
    00002cd0 000001d0 drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:calibrateRcoscHf1)
    00002ea0 000001cc I2CCC26XX.obj (.text:I2CCC26XX_swiFxn$13)
    0000306c 000001b4 sensortag_tmp.obj (.text:PeopleCount_ClockHandler$6)
    00003220 000001a8 PINCC26XX.obj (.text:PIN_init)
    000033c8 000001a8 RFCC26XX_singleMode.obj (.text:abortCmd$15)
    00003570 000001a0 drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_write)
    00003710 00000190 sensortag.obj (.text:SensorTag_read$0)
    000038a0 0000018c sensortag_bar.obj (.text:VL53L0X_init)
    00003a2c 00000184 drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_doCalibrate)
    00003bb0 00000170 RFCC26XX_singleMode.obj (.text:RF_postCmd)
    00003d20 0000015c sensortag_tmp.obj (.text:WaterFlow_Sensor_Connect)
    00003e7c 00000158 uart_logs.obj (.text:uartLog_doPrint$7)
    00003fd4 00000144 sensortag_tmp.obj (.text:RestDeviceCount_ClockHandler$6)
    00004118 00000130 driverlib.lib : setup.obj (.text:NOROM_SetupAfterColdResetWakeupFromShutDownCfg3)
    00004248 0000011c drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_init)
    00004364 00000114 RFCC26XX_singleMode.obj (.text:fsmSetupState$15)
    00004478 00000110 sensortag_bar.obj (.text:ValidateSensorRead)
    00004588 00000110 RFCC26XX_singleMode.obj (.text:hwiFxnCpe0Active$15)
    00004698 0000010c sensortag_bar.obj (.text:Range_Sensor_Read)
    000047a4 0000010c sensortag_bar.obj (.text:VL53L0x_getSpadInfo)
    000048b0 00000104 sensortag.obj (.text:SensorTag_taskFxn$0)
    000049b4 00000100 sensortag_hum.obj (.text:Validate_SensorRead)
    00004ab4 000000fc peripheral.obj (.text:gapRole_taskFxn$35)
    00004bb0 000000fc rtsv7M3_T_le_eabi.lib : fd_mul_t2.obj (.text)
    00004cac 000000fa : fs_add_t2.obj (.text)
    00004da6 000000f8 app_ble_pem3.oem3 (.text:xdc_runtime_System_printfExtend__I)
    00004e9e 00000002 drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_close)
    00004ea0 000000f4 sensortag.obj (.text:SensorTag_processStateChangeEvt$0)
    00004f94 000000ec icall.obj (.text:ICall_primWaitMatch$20)
    00005080 000000ec sensortag_bar.obj (.text:VL53L0x_readRangeSingleMillimeters)
    0000516c 000000ec RFCC26XX_singleMode.obj (.text:rf_init$15)
    00005258 000000ec sensortag_hum.obj (.text:sensorTaskFxn$3)
    00005344 000000e8 registerservice.obj (.text:sensor_WriteAttrCB$36)
    0000542c 000000e0 sensortag_bar.obj (.text:sensorTaskFxn$1)
    0000550c 000000d4 driverlib.lib : setup.obj (.text:NOROM_SetupAfterColdResetWakeupFromShutDownCfg2)
    000055e0 000000d4 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_releaseDependency)
    000056b4 000000d0 I2CCC26XX.obj (.text:I2CCC26XX_close)
    00005784 000000d0 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_setDependency)
    00005854 000000cc driverlib.lib : setup.obj (.text:TrimAfterColdResetWakeupFromShutDown$63)
    00005920 000000c8 RFCC26XX_singleMode.obj (.text:fsmPowerUpState$15)
    000059e8 000000c4 sensortag_hum.obj (.text:pressure_sensor_reading)
    00005aac 000000c4 RFCC26XX_singleMode.obj (.text:swiFxnHw$15)
    00005b70 000000c0 RFCC26XX_singleMode.obj (.text:RF_open)
    00005c30 000000bc power_cc26xx_tirtos.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
    00005cec 000000b4 PINCC26XX.obj (.text:PINCC26XX_setIoCfg$14)
    00005da0 000000b0 devinfoservice.obj (.text:devInfo_ReadAttrCB$27)
    00005e50 000000b0 peripheral.obj (.text:gapRole_init$35)
    00005f00 000000a4 devinfoservice.obj (.text:DevInfo_SetParameter)
    00005fa4 000000a4 driverlib.lib : setup.obj (.text:NOROM_SetupTrimDevice)
    00006048 000000a0 auto_init.aem3 : auto_init.oem3 (.text)
    000060e8 0000009c driverlib.lib : aux_adc.obj (.text:NOROM_AUXADCDisable)
    00006184 0000009c rtsv7M3_T_le_eabi.lib : memcpy_t2.obj (.text)
    00006220 0000009a rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_putSite__E)
    000062ba 00000002 drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_exit)
    000062bc 00000098 driverlib.lib : aux_adc.obj (.text:NOROM_AUXADCEnableSync)
    00006354 00000098 PINCC26XX.obj (.text:PIN_open)
    000063ec 00000098 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
    00006484 00000094 gattservapp_util.obj (.text:GATTServApp_ProcessCharCfg)
    00006518 00000094 drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_open)
    000065ac 00000094 rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_putMod__E)
    00006640 00000092 rtsv7M3_T_le_eabi.lib : fs_div_t2.obj (.text)
    000066d2 00000002 sensortag.obj (.text:SensorTag_callback$0)
    000066d4 00000090 I2CCC26XX.obj (.text:I2CCC26XX_blockingCallback$13)
    00006764 00000090 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
    000067f4 00000088 I2CCC26XX.obj (.text:I2CCC26XX_cancel)
    0000687c 00000088 driverlib.lib : osc.obj (.text:NOROM_OSCHF_GetStartupTime)
    00006904 00000088 sensortag_register.obj (.text:SensorTagRegister_processCharChangeEvt)
    0000698c 00000088 registerservice.obj (.text:sensor_ReadAttrCB$36)
    00006a14 00000086 rtsv7M3_T_le_eabi.lib : fd_cmp_t2.obj (.text:__aeabi_cdrcmple)
    00006a9a 00000002 drivers_cc26xxware.aem3 : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_close)
    00006a9c 00000084 icall.obj (.text:ICall_heapMalloc)
    00006b20 00000084 icall.obj (.text:ICall_primSetTimer$20)
    00006ba4 00000084 TRNGCC26XX.obj (.text:TRNGCC26XX_getNumber)
    00006c28 00000084 zan_config.obj (.text:ZanInit)
    00006cac 00000080 RFCC26XX_singleMode.obj (.text:RF_pendCmd)
    00006d2c 00000080 sensortag_io.obj (.text:SensorTagIO_processCharChangeEvt)
    00006dac 0000007c drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
    00006e28 0000007a rtsv7M3_T_le_eabi.lib : fs_mul_t2.obj (.text)
    00006ea2 0000007a : memset_t2.obj (.text)
    00006f1c 00000078 driverlib.lib : setup.obj (.text:NOROM_SetupAfterColdResetWakeupFromShutDownCfg1)
    00006f94 00000078 sensortag_tmp.obj (.text:PublishCount_ClockHandler$6)
    0000700c 00000078 uart_logs.obj (.text:uartLog_outputFxn)
    00007084 00000074 icall_cc2650.obj (.text:ICallPlatform_pwrUpdActivityCounter)
    000070f8 00000074 icall.obj (.text:ICall_primSend$20)
    0000716c 00000074 drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_auxISR)
    000071e0 00000074 sensortag_register.obj (.text:SensorTagRegister_reset)
    00007254 00000074 drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:calibrateRcoscHf2)
    000072c8 00000074 peripheral.obj (.text:gapRole_startConnUpdate$35)
    0000733c 00000070 driverlib.lib : chipinfo.obj (.text:NOROM_ChipInfo_GetHwRevision)
    000073ac 0000006d rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_System_formatNum__I)
    00007419 00000001 --HOLE-- [fill = 0]
    0000741a 00000002 RFCC26XX_singleMode.obj (.text:defaultErrCb$15)
    0000741c 0000006c sensortag.obj (.text:Board_writeString)
    00007488 0000006c sensortag.obj (.text:Board_writeStringValue)
    000074f4 0000006c icall.obj (.text:ICall_createRemoteTasks)
    00007560 0000006c icall.obj (.text:ICall_heapInit)
    000075cc 0000006c driverlib.lib : setup.obj (.text:NOROM_SetupGetTrimForAmpcompCtrl)
    00007638 0000006c drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
    000076a4 0000006c sensortag_tmp.obj (.text:WashCountCallbackFxn$6)
    00007710 0000006c gattservapp_util.obj (.text:gattServApp_SendNotiInd$29)
    0000777c 0000006a rtsv7M3_T_le_eabi.lib : copy_decompress_rle.obj (.text)
    000077e6 00000002 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:emptyClockFunc)
    000077e8 00000068 driverlib.lib : setup.obj (.text:NOROM_SetupGetTrimForAnabypassValue1)
    00007850 00000068 : sys_ctrl.obj (.text:NOROM_SysCtrl_DCDC_VoltageConditionalControl)
    000078b8 00000068 drivers_cc26xxware.aem3 : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_initHw)
    00007920 00000068 RFCC26XX_singleMode.obj (.text:fsmPowerDownState$15)
    00007988 00000068 uart_logs.obj (.text:uartLog_flush)
    000079f0 00000064 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_start__E)
    00007a54 00000060 I2CCC26XX.obj (.text:I2CCC26XX_initIO$13)
    00007ab4 00000060 icall.obj (.text:ICall_primEnroll$20)
    00007b14 00000060 drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_RCOSC_clockFunc)
    00007b74 00000060 RFCC26XX_singleMode.obj (.text:RF_getCurrentTime)
    00007bd4 00000060 sensortag_bar.obj (.text:VL53L0XI2cInit)
    00007c34 00000060 rtsv7M3_T_le_eabi.lib : fs_cmp_t2.obj (.text:__aeabi_cfcmple)
    00007c94 00000060 drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:updateSubSecInc)
    00007cf4 0000005e : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_open)
    00007d52 00000002 rtsv7M3_T_le_eabi.lib : i_div0.obj (.text)
    00007d54 0000005c icall.obj (.text:ICall_primThreadServes$20)
    00007db0 0000005c driverlib.lib : osc.obj (.text:NOROM_OSCHF_AttemptToSwitchToXosc)
    00007e0c 0000005c : sys_ctrl.obj (.text:NOROM_SysCtrlAdjustRechargeAfterPowerDown)
    00007e68 0000005c RFCC26XX_singleMode.obj (.text:applyRfCorePatch$15)
    00007ec4 0000005c RFCC26XX_singleMode.obj (.text:decActiveClientCnt$15)
    00007f20 0000005c main.obj (.text:main)
    00007f7c 0000005c app_ble_pem3.oem3 (.text:xdc_runtime_Startup_getState__I)
    00007fd8 0000005b rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_putLab__E)
    00008033 00000001 --HOLE-- [fill = 0]
    00008034 00000058 drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
    0000808c 00000054 : PowerCC26XX.oem3 (.text:configureXOSCHF)
    000080e0 00000054 RFCC26XX_singleMode.obj (.text:fsmXOSCState$15)
    00008134 00000054 RFCC26XX_singleMode.obj (.text:hwiFxnHw$15)
    00008188 00000054 RFCC26XX_singleMode.obj (.text:ratChanFree$15)
    000081dc 00000054 rtsv7M3_T_le_eabi.lib : exit.obj (.text)
    00008230 00000052 icall.obj (.text:ICall_primWait$20)
    00008282 00000002 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E)
    00008284 00000050 icall_api.obj (.text:GAP_DeviceInit)
    000082d4 00000050 icall_api.obj (.text:GAP_UpdateAdvertisingData)
    00008324 00000050 icall.obj (.text:ICall_primRegisterApp$20)
    00008374 00000050 driverlib.lib : setup.obj (.text:NOROM_SetupSetCacheModeAccordingToCcfgSetting)
    000083c4 00000050 PINCC26XX.obj (.text:PIN_remove)
    00008414 00000050 RFCC26XX_singleMode.obj (.text:RF_getInfo)
    00008464 00000050 sensortag.obj (.text:SensorTag_setDeviceInfo$0)
    000084b4 00000050 RFCC26XX_singleMode.obj (.text:syncCb$15)
    00008504 0000004e ioservice.obj (.text:io_ReadAttrCB$31)
    00008552 00000002 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_nullFunc__I)
    00008554 0000004c icall.obj (.text:ICall_newTask$20)
    000085a0 0000004c icall.obj (.text:ICall_primGetEntityId$20)
    000085ec 0000004c driverlib.lib : osc.obj (.text:NOROM_OSCClockSourceSet)
    00008638 0000004c util.obj (.text:Util_constructClock)
    00008684 0000004c RFCC26XX_singleMode.obj (.text:dispatchOpWhen$15)
    000086d0 0000004c peripheral.obj (.text:gapRole_processStackMsg$35)
    0000871c 0000004c rtsv7M3_T_le_eabi.lib : cpy_tbl.obj (.text)
    00008768 0000004c rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_visitRope2__I)
    000087b4 0000004a gattservapp_util.obj (.text:GATTServApp_ProcessCCCWriteReq)
    000087fe 00000002 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_triggerFunc__I)
    00008800 00000048 I2CCC26XX.obj (.text:I2CCC26XX_initHw$13)
    00008848 00000048 driverlib.lib : chipinfo.obj (.text:NOROM_ChipInfo_GetChipFamily)
    00008890 00000048 : ddi.obj (.text:NOROM_DDI16BitfieldWrite)
    000088d8 00000048 sensortag_bar.obj (.text:VL53L0x_readMulti)
    00008920 00000048 sensortag_bar.obj (.text:VL53L0x_setSignalRateLimit)
    00008968 00000048 icall_api.obj (.text:gattIndNoti$23)
    000089b0 00000048 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:notify)
    000089f8 00000048 rtsv7M3_T_le_eabi.lib : fd_toi_t2.obj (.text)
    00008a40 00000044 icall_api.obj (.text:GAP_TerminateLinkReq)
    00008a84 00000044 drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_control)
    00008ac8 00000044 : NVSCC26XX.oem3 (.text:NVSCC26XX_read)
    00008b0c 00000044 PINCC26XX.obj (.text:PIN_swi$14)
    00008b50 00000044 sensortag_io.obj (.text:SensorTagIO_blinkLed)
    00008b94 00000044 boot.aem3 : boot.oem3 (.text)
    00008bd8 00000044 icall_api.obj (.text:gapSendParamAndPtrCmd$23)
    00008c1c 00000044 rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_write8__E)
    00008c60 00000044 : rom_sysbios.obj (.text:xdc_runtime_Text_xprintf__I)
    00008ca4 00000042 icall.obj (.text:ICall_primCreateTask$20)
    00008ce6 00000002 app_ble_pem3.oem3 (.text:ti_sysbios_rom_cortexm_cc26xx_CC26xx_badRomRevision__E)
    00008ce8 00000040 peripheral.obj (.text:GAPRole_SendUpdateParam)
    00008d28 00000040 peripheral.obj (.text:GAPRole_createTask)
    00008d68 00000040 driverlib.lib : ddi.obj (.text:NOROM_DDI16BitfieldRead)
    00008da8 00000040 RFCC26XX_singleMode.obj (.text:RF_getRssi)
    00008de8 00000040 sensortag_register.obj (.text:readRegister$5)
    00008e28 00000040 rtsv7M3_T_le_eabi.lib : u_divt2.obj (.text)
    00008e68 00000040 rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_Module_startup__E)
    00008ea8 0000003e icall_api.obj (.text:hciSendParamsCmd$23)
    00008ee6 00000002 rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_defaultAbort)
    00008ee8 0000003c icall_api.obj (.text:GAP_GetParamValue)
    00008f24 0000003c icall_api.obj (.text:GATTServApp_RegisterService)
    00008f60 0000003c icall_cc2650.obj (.text:ICallPlatform_pwrConfigACAction)
    00008f9c 0000003c driverlib.lib : osc.obj (.text:NOROM_OSC_HPOSCRelativeFrequencyOffsetGet)
    00008fd8 0000003c : rfc.obj (.text:NOROM_RFCSynthPowerDown)
    00009014 0000003c RFCC26XX_singleMode.obj (.text:RF_runCmd)
    00009050 0000003c registerservice.obj (.text:Register_setParameter)
    0000908c 0000003c sensortag_bar.obj (.text:SensorTagBar_createTask)
    000090c8 0000003c sensortag_hum.obj (.text:SensorTagHum_createTask)
    00009104 0000003c sensortag_io.obj (.text:SensorTagIO_reset)
    00009140 0000003c sensortag.obj (.text:SensorTag_createTask)
    0000917c 0000003c sensortag_bar.obj (.text:VL53L0XI2cWriteRead)
    000091b8 0000003c watchdog.obj (.text:WDTInit)
    000091f4 0000003c RFCC26XX_singleMode.obj (.text:postDirImmCmd$15)
    00009230 0000003c icall_api.obj (.text:profileSetParameter$23)
    0000926c 0000003c icall_api.obj (.text:sendWaitMatchCS$23)
    000092a8 0000003c icall_api.obj (.text:sendWaitMatchValueCS$23)
    000092e4 00000038 icall_api.obj (.text:GAPBondMgr_LinkEst)
    0000931c 00000038 I2C.obj (.text:I2C_init)
    00009354 00000038 icall.obj (.text:ICall_primGetMaxMSecs$20)
    0000938c 00000038 drivers_cc26xxware.aem3 : NVS.oem3 (.text:NVS_init)
    000093c4 00000038 PINCC26XX.obj (.text:PIN_setOutputValue)
    000093fc 00000038 util.obj (.text:Util_restartClock)
    00009434 00000038 sensortag_bar.obj (.text:VL53L0XI2cWrite)
    0000946c 00000038 drivers_cc26xxware.aem3 : Watchdog.oem3 (.text:Watchdog_init)
    000094a4 00000038 icall_api.obj (.text:linkDB_NumConns)
    000094dc 00000038 rtsv7M3_T_le_eabi.lib : fs_toi_t2.obj (.text)
    00009514 00000038 : i_tofs_t2.obj (.text)
    0000954c 00000038 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E)
    00009584 00000036 RFCC26XX_singleMode.obj (.text:updateImplicitState$15)
    000095ba 00000002 rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_defaultExit)
    000095bc 00000034 icall_api.obj (.text:GAPBondMgr_SetParameter)
    000095f0 00000034 icall_api.obj (.text:GAP_SetParamValue)
    00009624 00000034 icall.obj (.text:ICall_primEntityId2ServiceId$20)
    00009658 00000034 icall.obj (.text:ICall_primFetchMsg$20)
    0000968c 00000034 icall.obj (.text:ICall_primRegisterISR$20)
    000096c0 00000034 icall.obj (.text:ICall_primRegisterISR_Ext$20)
    000096f4 00000034 icall.obj (.text:ICall_searchServiceEntity)
    00009728 00000034 ioservice.obj (.text:Io_setParameter)
    0000975c 00000034 driverlib.lib : ddi.obj (.text:NOROM_DDI32RegWrite)
    00009790 00000034 : osc.obj (.text:NOROM_OSCHF_SwitchToRcOscTurnOffXosc)
    000097c4 00000034 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
    000097f8 00000034 RFCC26XX_singleMode.obj (.text:Q_push$15)
    0000982c 00000034 registerservice.obj (.text:Register_getParameter)
    00009860 00000034 sensortag_bar.obj (.text:VL53L0XI2cRead)
    00009894 00000034 drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:disableFlashCache)
    000098c8 00000034 icall_api.obj (.text:osal_snv_read)
    000098fc 00000034 icall_api.obj (.text:osal_snv_write)
    00009930 00000034 icall_api.obj (.text:profileAddService$23)
    00009964 00000034 rtsv7M3_T_le_eabi.lib : fs_tou_t2.obj (.text)
    00009998 00000034 rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_write4__E)
    000099cc 00000032 icall_api.obj (.text:gapSendParamsCmd$23)
    000099fe 00000032 icall_api.obj (.text:gapSendPtrParamsCmd$23)
    00009a30 00000032 icall_api.obj (.text:matchGapSetGetParamCS$23)
    00009a62 00000032 icall_api.obj (.text:matchGattCmdStatus$23)
    00009a94 00000032 icall_api.obj (.text:matchUtilNvCS$23)
    00009ac6 00000032 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E)
    00009af8 00000030 icall_cc2650.obj (.text:ICallPlatform_pwrNotify$21)
    00009b28 00000030 icall_cc2650.obj (.text:ICallPlatform_pwrRegisterNotify)
    00009b58 00000030 icall.obj (.text:ICall_msecs2Ticks$20)
    00009b88 00000030 icall.obj (.text:ICall_searchTask$20)
    00009bb8 00000030 driverlib.lib : setup.obj (.text:NOROM_SetupSetAonRtcSubSecInc)
    00009be8 00000030 : trng.obj (.text:NOROM_TRNGConfigure)
    00009c18 00000030 drivers_cc26xxware.aem3 : NVS.oem3 (.text:NVS_open)
    00009c48 00000030 : PowerCC26XX.oem3 (.text:Power_releaseConstraint)
    00009c78 00000030 : PowerCC26XX.oem3 (.text:Power_setConstraint)
    00009ca8 00000030 : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_setReload)
    00009cd8 00000030 : Watchdog.oem3 (.text:Watchdog_open)
    00009d08 00000030 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
    00009d38 00000030 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    00009d68 00000030 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_initDevice__I)
    00009d98 00000030 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I)
    00009dc8 00000030 app_ble_pem3.oem3 (.text:xdc_runtime_LoggerCallback_Object__create__S)
    00009df8 0000002f rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_printVisFxn__I)
    00009e27 00000001 --HOLE-- [fill = 0]
    00009e28 0000002e icall_cc2650.obj (.text:ICallPlatform_pwrDispenseImpl$21)
    00009e56 0000002e icall_cc2650.obj (.text:ICallPlatform_pwrRequireImpl$21)
    00009e84 0000002e sensortag.obj (.text:ICall_fetchServiceMsg$0)
    00009eb2 0000002e peripheral.obj (.text:ICall_fetchServiceMsg$35)
    00009ee0 0000002e icall.obj (.text:ICall_msgDequeue$20)
    00009f0e 0000002e icall_api.obj (.text:matchProfileAddServiceCS$23)
    00009f3c 0000002c icall_api.obj (.text:GAPBondMgr_Register)
    00009f68 0000002c icall.obj (.text:ICall_heapFree)
    00009f94 0000002c ioservice.obj (.text:ICall_malloc$31)
    00009fc0 0000002c icall.obj (.text:ICall_msgEnqueue$20)
    00009fec 0000002c icall.obj (.text:ICall_primAllocMsg$20)
    0000a018 0000002c icall.obj (.text:ICall_primFetchServiceMsg$20)
    0000a044 0000002c icall_api.obj (.text:ICall_sendServiceMsg$23)
    0000a070 0000002c driverlib.lib : setup.obj (.text:NOROM_SetupGetTrimForRadcExtCfg)
    0000a09c 0000002c PINCC26XX.obj (.text:PINCC26XX_setMux)
    0000a0c8 0000002c PINCC26XX.obj (.text:PIN_setConfig)
    0000a0f4 0000002c driverlib.lib : adi.obj (.text:SafeHapiAuxAdiSelect)
    0000a120 0000002c RFCC26XX_singleMode.obj (.text:getCmd$15)
    0000a14c 0000002c rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_getTicksUntilInterrupt__E)
    0000a178 0000002c st_util.obj (.text:utilExtractUuid16)
    0000a1a4 0000002c rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_write2__E)
    0000a1d0 0000002a icall_api.obj (.text:ICall_waitMatch$23)
    0000a1fa 0000002a TRNGCC26XX.obj (.text:TRNGCC26XX_isParamValid)
    0000a224 0000002a util.obj (.text:Util_enqueueMsg)
    0000a24e 0000002a icall_api.obj (.text:matchProfileCS$23)
    0000a278 0000002a rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_System_putchar__I)
    0000a2a2 00000028 gattservapp_util.obj (.text:GATTServApp_WriteCharCfg)
    0000a2ca 00000002 rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_defaultPutch)
    0000a2cc 00000028 icall.obj (.text:ICall_init)
    0000a2f4 00000028 icall.obj (.text:ICall_msgPrepend$20)
    0000a31c 00000028 sensortag.obj (.text:ICall_registerApp$0)
    0000a344 00000028 sensortag_bar.obj (.text:ICall_registerApp$1)
    0000a36c 00000028 peripheral.obj (.text:ICall_registerApp$35)
    0000a394 00000028 sensortag_hum.obj (.text:ICall_registerApp$3)
    0000a3bc 00000028 ioservice.obj (.text:Io_addService)
    0000a3e4 00000028 driverlib.lib : aon_batmon.obj (.text:NOROM_AONBatMonTemperatureGetDegC)
    0000a40c 00000028 PINCC26XX.obj (.text:PINCC26XX_getPinCount)
    0000a434 00000028 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
    0000a45c 00000028 : PowerCC26XX.oem3 (.text:Power_registerNotify)
    0000a484 00000028 driverlib.lib : adi.obj (.text:SafeHapiVoid)
    0000a4ac 00000028 sensortag.obj (.text:SensorTag_enqueueMsg$0)
    0000a4d4 00000028 TRNGCC26XX.obj (.text:TRNGCC26XX_init)
    0000a4fc 00000028 sensortag_bar.obj (.text:VL53L0XI2cwriteReg)
    0000a524 00000028 drivers_cc26xxware.aem3 : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_convertMsToTicks)
    0000a54c 00000028 RFCC26XX_singleMode.obj (.text:clkPowerUpFxn$15)
    0000a574 00000028 gattservapp_util.obj (.text:gattServApp_FindCharCfgItem$29)
    0000a59c 00000028 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E)
    0000a5c4 00000028 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_write0__E)
    0000a5ec 00000028 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_write1__E)
    0000a614 00000026 drivers_cc26xxware.aem3 : List.oem3 (.text:List_put)
    0000a63a 00000024 icall_api.obj (.text:GAPBondMgr_LinkTerm)
    0000a65e 00000002 --HOLE-- [fill = 0]
    0000a660 00000024 I2C.obj (.text:I2C_open)
    0000a684 00000024 icall_api.obj (.text:ICall_getLocalMsgEntityId$23)
    0000a6a8 00000024 icall_api.obj (.text:ICall_threadServes$23)
    0000a6cc 00000024 sensortag_register.obj (.text:SensorTagRegister_update)
    0000a6f0 00000024 drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:getTdcSemaphore)
    0000a714 00000024 RFCC26XX_singleMode.obj (.text:hwiFxnCpe0PowerFsm$15)
    0000a738 00000024 rtsv7M3_T_le_eabi.lib : u_tofs_t2.obj (.text)
    0000a75c 00000024 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_registerRTSLock__I)
    0000a780 00000024 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_removeRTSLock__I)
    0000a7a4 00000022 icall.obj (.text:ICall_dispatch$20)
    0000a7c6 00000022 sensortag.obj (.text:ICall_malloc$0)
    0000a7e8 00000022 util.obj (.text:ICall_malloc$8)
    0000a80a 00000022 rtsv7M3_T_le_eabi.lib : memcmp.obj (.text)
    0000a82c 00000020 sensortag_hum.obj (.text:Adc_Init)
    0000a84c 00000020 gattservapp_util.obj (.text:GATTServApp_InitCharCfg)
    0000a86c 00000020 icall_api.obj (.text:ICall_allocMsg$23)
    0000a88c 00000020 icall_api.obj (.text:ICall_getEntityId$23)
    0000a8ac 00000020 devinfoservice.obj (.text:ICall_malloc$27)
    0000a8cc 00000020 icall.obj (.text:ICall_primService$20)
    0000a8ec 00000020 icall.obj (.text:ICall_searchService$20)
    0000a90c 00000020 driverlib.lib : rfc.obj (.text:NOROM_RFCDoorbellSendTo)
    0000a92c 00000020 : rfc.obj (.text:NOROM_RFCRfTrimRead)
    0000a94c 00000020 : setup.obj (.text:NOROM_SetupGetTrimForXoscHfCtl)
    0000a96c 00000020 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_unregisterNotify)
    0000a98c 00000020 sensortag_hum.obj (.text:adcIsr)
    0000a9ac 00000020 RFCC26XX_singleMode.obj (.text:allocCmd$15)
    0000a9cc 00000020 rtsv7M3_T_le_eabi.lib : u_tofd_t2.obj (.text)
    0000a9ec 00000020 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsLock__I)
    0000aa0c 00000020 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_stop__E)
    0000aa2c 00000020 : rom_sysbios.obj (.text:xdc_runtime_Registry_findById__E)
    0000aa4c 0000001e icall.obj (.text:ICall_primSendServiceMsg$20)
    0000aa6a 0000001e PINCC26XX.obj (.text:PIN_close)
    0000aa88 0000001e drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_getTransitionLatency)
    0000aaa6 0000001e icall_api.obj (.text:matchHciCS$23)
    0000aac4 0000001e icall_api.obj (.text:waitMatchCS$23)
    0000aae2 00000002 --HOLE-- [fill = 0]
    0000aae4 0000001c sensortag_tmp.obj (.text:File_System_Int$6)
    0000ab00 0000001c icall_api.obj (.text:GATT_bm_alloc)
    0000ab1c 0000001c icall_api.obj (.text:GATT_bm_free)
    0000ab38 0000001c icall.obj (.text:ICall_initPrim$20)
    0000ab54 0000001c sensortag.obj (.text:ICall_wait$0)
    0000ab70 0000001c peripheral.obj (.text:ICall_wait$35)
    0000ab8c 0000001c driverlib.lib : flash.obj (.text:NOROM_FlashProgram)
    0000aba8 0000001c : flash.obj (.text:NOROM_FlashSectorErase)
    0000abc4 0000001c : osc.obj (.text:NOROM_OSCClockSourceGet)
    0000abe0 0000001c : setup.obj (.text:NOROM_SetupGetTrimForAmpcompTh2)
    0000abfc 0000001c : setup.obj (.text:NOROM_SetupGetTrimForRcOscLfRtuneCtuneTrim)
    0000ac18 0000001c drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_getAttrs)
    0000ac34 0000001c PINCC26XX.obj (.text:PINCC26XX_setIoCfgMux$14)
    0000ac50 0000001c PINCC26XX.obj (.text:PIN_hwi$14)
    0000ac6c 0000001c RFCC26XX_singleMode.obj (.text:RF_runDirectCmd)
    0000ac88 0000001c RFCC26XX_singleMode.obj (.text:RF_runImmediateCmd)
    0000aca4 0000001c sensortag_io.obj (.text:SensorTagIO_init)
    0000acc0 0000001c sensortag.obj (.text:SensorTag_processAppMsg$0)
    0000acdc 0000001c TRNGCC26XX.obj (.text:TRNGCC26XX_open)
    0000acf8 0000001c sensortag_tmp.obj (.text:Three_Clock_stop)
    0000ad14 0000001c drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:enableFlashCache)
    0000ad30 0000001c peripheral.obj (.text:gapRole_HandleParamUpdateNoSuccess$35)
    0000ad4c 0000001c icall_api.obj (.text:getStatusValueFromErrNo$23)
    0000ad68 0000001c TRNGCC26XX.obj (.text:openTRNG)
    0000ad84 0000001c rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_dynamicStub__E)
    0000ada0 0000001c sensortag_register.obj (.text:writeRegister$5)
    0000adbc 0000001c rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_Instance_init__E)
    0000add8 0000001a icall_api.obj (.text:GATT_Notification)
    0000adf2 0000001a icall.obj (.text:ICall_enterCSImpl)
    0000ae0c 0000001a icall.obj (.text:ICall_primSetTimerMSecs$20)
    0000ae26 0000001a drivers_cc26xxware.aem3 : List.oem3 (.text:List_remove)
    0000ae40 0000001a util.obj (.text:Util_dequeueMsg)
    0000ae5a 0000001a icall_api.obj (.text:matchGattIndNotiCS$23)
    0000ae74 0000001a rom_sysbios.aem3 : rom_sysbios_config.obj (.text:xdc_runtime_System_snprintf__E)
    0000ae8e 00000002 --HOLE-- [fill = 0]
    0000ae90 00000018 peripheral.obj (.text:GAPRole_StartDevice)
    0000aea8 00000018 peripheral.obj (.text:GAPRole_TerminateConnection)
    0000aec0 00000018 I2C.obj (.text:I2C_Params_init)
    0000aed8 00000018 icall_cc2650.obj (.text:ICallPlatform_pwrDispense)
    0000aef0 00000018 icall_cc2650.obj (.text:ICallPlatform_pwrRequire)
    0000af08 00000018 sensortag.obj (.text:ICall_free$0)
    0000af20 00000018 devinfoservice.obj (.text:ICall_free$27)
    0000af38 00000018 util.obj (.text:ICall_free$8)
    0000af50 00000018 sensortag.obj (.text:ICall_freeMsg$0)
    0000af68 00000018 icall.obj (.text:ICall_freeMsg$20)
    0000af80 00000018 icall_api.obj (.text:ICall_freeMsg$23)
    0000af98 00000018 peripheral.obj (.text:ICall_freeMsg$35)
    0000afb0 00000018 icall.obj (.text:ICall_primMalloc$20)
    0000afc8 00000018 driverlib.lib : aon_rtc.obj (.text:NOROM_AONRTCCurrentCompareValueGet)
    0000afe0 00000018 : chipinfo.obj (.text:NOROM_ChipInfo_GetPackageType)
    0000aff8 00000018 : osc.obj (.text:NOROM_OSCHF_TurnOnXosc)
    0000b010 00000018 : rfc.obj (.text:NOROM_RFCCpeIntGetAndClear)
    0000b028 00000018 : setup.obj (.text:NOROM_SetupGetTrimForAdcShModeEn)
    0000b040 00000018 : setup.obj (.text:NOROM_SetupGetTrimForAdcShVbufEn)
    0000b058 00000018 : setup.obj (.text:NOROM_SetupGetTrimForAmpcompTh1)
    0000b070 00000018 : setup.obj (.text:NOROM_SetupGetTrimForDblrLoopFilterResetVoltage)
    0000b088 00000018 : setup.obj (.text:NOROM_SetupGetTrimForRcOscLfIBiasTrim)
    0000b0a0 00000018 : setup.obj (.text:NOROM_SetupGetTrimForXoscLfRegulatorAndCmirrwrRatio)
    0000b0b8 00000018 : sys_ctrl.obj (.text:NOROM_SysCtrlResetSourceGet)
    0000b0d0 00000018 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_idleFunc)
    0000b0e8 00000018 RFCC26XX_singleMode.obj (.text:Q_pop$15)
    0000b100 00000018 registerservice.obj (.text:Register_registerAppCBs)
    0000b118 00000018 sensortag.obj (.text:SensorTag_processCharValueChangeEvt$0)
    0000b130 00000018 util.obj (.text:Util_constructQueue)
    0000b148 00000018 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:configureRFCoreClocks)
    0000b160 00000018 peripheral.obj (.text:gapRole_setEvent$35)
    0000b178 00000018 rtsv7M3_T_le_eabi.lib : args_main.obj (.text)
    0000b190 00000018 : ll_mul_t2.obj (.text)
    0000b1a8 00000018 RFCC26XX_singleMode.obj (.text:swiFxnFsm$15)
    0000b1c0 00000018 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsUnlock__I)
    0000b1d8 00000018 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Swi_or__E)
    0000b1f0 00000018 app_ble_pem3.oem3 (.text:ti_sysbios_rom_cortexm_cc26xx_CC26xx_checkRevision__E)
    0000b208 00000016 main.obj (.text:AssertHandler)
    0000b21e 00000016 icall.obj (.text:ICall_abort$20)
    0000b234 00000016 icall.obj (.text:ICall_leaveCSImpl)
    0000b24a 00000016 icall.obj (.text:ICall_primStopTimer$20)
    0000b260 00000016 ble_user_config.obj (.text:driverTable_fnSpinlock)
    0000b276 00000016 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__I)
    0000b28c 00000014 devinfoservice.obj (.text:DevInfo_AddService)
    0000b2a0 00000014 icall_api.obj (.text:HCI_EXT_SetTxPowerCmd)
    0000b2b4 00000014 ioservice.obj (.text:Io_getParameter)
    0000b2c8 00000014 ioservice.obj (.text:Io_registerAppCBs)
    0000b2dc 00000014 driverlib.lib : aon_rtc.obj (.text:NOROM_AONRTCCurrent64BitValueGet)
    0000b2f0 00000014 : chipinfo.obj (.text:NOROM_ThisCodeIsBuiltForCC26xxHwRev22AndLater_HaltIfViolated)
    0000b304 00000014 RFCC26XX_singleMode.obj (.text:RF_Params_init)
    0000b318 00000014 registerservice.obj (.text:Register_addService)
    0000b32c 00000014 sensortag.obj (.text:SensorTag_clockHandler$0)
    0000b340 00000014 sensortag.obj (.text:SensorTag_updateAdvertisingData)
    0000b354 00000014 sensortag.obj (.text:SysCtrlSystemReset$0)
    0000b368 00000014 sensortag_bar.obj (.text:SysCtrlSystemReset$1)
    0000b37c 00000014 sensortag_hum.obj (.text:SysCtrlSystemReset$3)
    0000b390 00000014 sensortag_io.obj (.text:SysCtrlSystemReset$4)
    0000b3a4 00000014 watchdog.obj (.text:SysCtrlSystemReset$9)
    0000b3b8 00000014 rtsv7M3_T_le_eabi.lib : _lock.obj (.text)
    0000b3cc 00000014 : strlen.obj (.text)
    0000b3e0 00000014 icall_api.obj (.text:setICallCmdEvtHdr$23)
    0000b3f4 00000014 app_ble_pem3.oem3 (.text:ti_sysbios_knl_Clock_doTick__I)
    0000b408 00000014 watchdog.obj (.text:wdtCallback)
    0000b41c 00000012 gattservapp_util.obj (.text:GATTServApp_FindAttr)
    0000b42e 00000012 RFCC26XX_singleMode.obj (.text:RF_getCmdOp)
    0000b440 00000012 app_ble_pem3.oem3 (.text:xdc_runtime_Startup_exec__I)
    0000b452 00000002 --HOLE-- [fill = 0]
    0000b454 00000010 RFCC26XX_singleMode.obj (.text:FsmDispatch$15)
    0000b464 00000010 peripheral.obj (.text:GAPRole_GetParameter)
    0000b474 00000010 icall_api.obj (.text:GAP_EndDiscoverable)
    0000b484 00000010 gattservapp_util.obj (.text:GATTServApp_ReadCharCfg)
    0000b494 00000010 icall_cc2650.obj (.text:ICallPlatform_pwrGetXOSCStartupTime)
    0000b4a4 00000010 icall.obj (.text:ICall_primGetTickPeriod$20)
    0000b4b4 00000010 icall.obj (.text:ICall_taskEntry$20)
    0000b4c4 00000010 driverlib.lib : aux_adc.obj (.text:NOROM_AUXADCReadFifo)
    0000b4d4 00000010 : rfc.obj (.text:NOROM_RFCRfTrimSet)
    0000b4e4 00000010 : setup.obj (.text:NOROM_SetupGetTrimForXoscHfFastStart)
    0000b4f4 00000010 : setup.obj (.text:NOROM_SetupGetTrimForXoscHfIbiastherm)
    0000b504 00000010 drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_init)
    0000b514 00000010 ble_user_config.obj (.text:RegisterAssertCback)
    0000b524 00000010 sensortag_register.obj (.text:SensorTagRegister_init)
    0000b534 00000010 util.obj (.text:Util_isActive)
    0000b544 00000010 drivers_cc26xxware.aem3 : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_clear)
    0000b554 00000010 : Watchdog.oem3 (.text:Watchdog_Params_init)
    0000b564 00000010 I2CCC26XX.obj (.text:i2cPostNotify$13)
    0000b574 00000010 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_post__E)
    0000b584 00000010 sensortag_bar.obj (.text:writeReg)
    0000b594 00000010 app_ble_pem3.oem3 (.text:xdc_runtime_LoggerCallback_Object__get__S)
    0000b5a4 00000010 rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_putch__E)
    0000b5b4 00000010 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_ready__E)
    0000b5c4 00000010 : rom_sysbios.obj (.text:xdc_runtime_System_vsnprintf__E)
    0000b5d4 0000000e icall_api.obj (.text:GATT_Indication)
    0000b5e2 0000000e icall_cc2650.obj (.text:ICallPlatform_pwrGetTransitionState)
    0000b5f0 0000000e icall_cc2650.obj (.text:ICallPlatform_pwrIsStableXOSCHF)
    0000b5fe 0000000e icall.obj (.text:ICall_primDisableMInt$20)
    0000b60c 0000000e icall.obj (.text:ICall_primEnableMInt$20)
    0000b61a 0000000e icall.obj (.text:ICall_primFreeMsg$20)
    0000b628 0000000e icall.obj (.text:ICall_primGetTicks$20)
    0000b636 0000000e driverlib.lib : setup.obj (.text:NOROM_SetupSignExtendVddrTrimValue)
    0000b644 0000000e : vims.obj (.text:NOROM_VIMSModeGet)
    0000b652 0000000e drivers_cc26xxware.aem3 : NVS.oem3 (.text:NVS_write)
    0000b660 0000000e sensortag_bar.obj (.text:VL53L0XI2creadReg)
    0000b66e 0000000e rtsv7M3_T_le_eabi.lib : copy_decompress_none.obj (.text:decompress:none)
    0000b67c 0000000e sensortag_bar.obj (.text:makeuint16)
    0000b68a 0000000e icall_api.obj (.text:matchGSARegisterServiceCS$23)
    0000b698 0000000e icall_api.obj (.text:matchGapLinkEstCS$23)
    0000b6a6 0000000e icall_api.obj (.text:matchLinkDBNumConnsCS$23)
    0000b6b4 0000000e icall_api.obj (.text:setDispatchCmdEvtHdr$23)
    0000b6c2 0000000e rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E)
    0000b6d0 0000000c RFCC26XX_singleMode.obj (.text:FsmNextState$15)
    0000b6dc 0000000c icall_api.obj (.text:GAP_MakeDiscoverable)
    0000b6e8 0000000c icall_api.obj (.text:GAP_TerminateAuth)
    0000b6f4 0000000c icall_api.obj (.text:GAP_UpdateLinkParamReq)
    0000b700 0000000c icall_api.obj (.text:GAP_UpdateLinkParamReqReply)
    0000b70c 0000000c icall_api.obj (.text:GGS_SetParameter)
    0000b718 0000000c icall.obj (.text:ICall_clockFunc$20)
    0000b724 0000000c icall.obj (.text:ICall_primDisableInt$20)
    0000b730 0000000c icall.obj (.text:ICall_primEnableInt$20)
    0000b73c 0000000c icall.obj (.text:ICall_primFree$20)
    0000b748 0000000c icall.obj (.text:ICall_primSignal$20)
    0000b754 0000000c driverlib.lib : cpu.obj (.text:NOROM_CPUcpsid)
    0000b760 0000000c : cpu.obj (.text:NOROM_CPUcpsie)
    0000b76c 0000000c drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_getConstraintMask)
    0000b778 0000000c : PowerCC26XX.oem3 (.text:Power_getDependencyCount)
    0000b784 0000000c : PowerCC26XX.oem3 (.text:Power_getTransitionState)
    0000b790 0000000c sensortag.obj (.text:SensorTag_processGATTMsg$0)
    0000b79c 0000000c sensortag.obj (.text:SensorTag_processStackMsg$0)
    0000b7a8 0000000c util.obj (.text:Util_startClock)
    0000b7b4 0000000c sensortag_bar.obj (.text:VL53L0XI2cDeselect)
    0000b7c0 0000000c watchdog.obj (.text:WDTClose)
    0000b7cc 0000000c icall_api.obj (.text:matchProfileSetParamCS$23)
    0000b7d8 0000000c sensortag_tmp.obj (.text:publish_data)
    0000b7e4 0000000c sensortag_tmp.obj (.text:publish_waterusage_data)
    0000b7f0 0000000c rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_BIOS_getThreadType__E)
    0000b7fc 0000000c : rom_sysbios.obj (.text:ti_sysbios_knl_Swi_getTrigger__E)
    0000b808 0000000c app_ble_pem3.oem3 (.text:xdc_runtime_Startup_reset__I)
    0000b814 0000000c rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Startup_rtsDone__E)
    0000b820 0000000a I2CCC26XX.obj (.text:I2CCC26XX_init)
    0000b82a 0000000a I2C.obj (.text:I2C_transfer)
    0000b834 0000000a icall_cc2650.obj (.text:ICallPlatform_pwrSwitchXOSCHF)
    0000b83e 0000000a icall.obj (.text:ICall_primE2S$20)
    0000b848 0000000a drivers_cc26xxware.aem3 : List.oem3 (.text:List_empty)
    0000b852 0000000a : NVS.oem3 (.text:NVS_read)
    0000b85c 0000000a sensortag.obj (.text:SensorTag_charValueChangeCB)
    0000b866 0000000a sensortag.obj (.text:SensorTag_stateChangeCB$0)
    0000b870 0000000a drivers_cc26xxware.aem3 : UART.oem3 (.text:UART_write)
    0000b87a 0000000a : Watchdog.oem3 (.text:Watchdog_clear)
    0000b884 0000000a : Watchdog.oem3 (.text:Watchdog_close)
    0000b88e 0000000a : Watchdog.oem3 (.text:Watchdog_setReload)
    0000b898 0000000a rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_disable__E)
    0000b8a2 0000000a : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_enable__E)
    0000b8ac 0000000a app_ble_pem3.oem3 (.text:xdc_runtime_Text_visitRope__I)
    0000b8b6 00000008 RFCC26XX_singleMode.obj (.text:RF_flushCmd)
    0000b8be 00000008 sensortag_bar.obj (.text:VL53L0x_setMeasurementTimingBudget)
    0000b8c6 00000008 drivers_cc26xxware.aem3 : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_init)
    0000b8ce 00000008 sensortag_io.obj (.text:ioChangeCB$4)
    0000b8d6 00000008 icall_api.obj (.text:matchHciExtSetTxPowerCS$23)
    0000b8de 00000008 sensortag_register.obj (.text:registerChangeCB$5)
    0000b8e6 00000008 sensortag_tmp.obj (.text:sensorConfigChangeCB$6)
    0000b8ee 00000006 icall_api.obj (.text:GGS_AddService)
    0000b8f4 00000006 I2CCC26XX.obj (.text:I2CCC26XX_control)
    0000b8fa 00000006 icall.obj (.text:ICall_mallocImpl)
    0000b900 00000006 driverlib.lib : cpu.obj (.text:NOROM_CPUdelay)
    0000b906 00000006 PINCC26XX.obj (.text:PIN_registerIntCb)
    0000b90c 00000006 drivers_cc26xxware.aem3 : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_control)
    0000b912 00000006 RFCC26XX_singleMode.obj (.text:clkInactivityFxn$15)
    0000b918 00000006 rtsv7M3_T_le_eabi.lib : copy_decompress_rle.obj (.text:decompress:rle24)
    0000b91e 00000006 icall_api.obj (.text:gattAddService$23)
    0000b924 00000006 icall_api.obj (.text:matchBondMgrSetParamCS$23)
    0000b92a 00000006 icall_api.obj (.text:matchGGSSetParamCS$23)
    0000b930 00000006 icall_api.obj (.text:matchGapConnParamUpdateReplyCS$23)
    0000b936 00000006 icall_api.obj (.text:matchGapDeviceInitCS$23)
    0000b93c 00000006 icall_api.obj (.text:matchGapEndDiscoverableCS$23)
    0000b942 00000006 icall_api.obj (.text:matchGapGetParamCS$23)
    0000b948 00000006 icall_api.obj (.text:matchGapMakeDiscoverableCS$23)
    0000b94e 00000006 icall_api.obj (.text:matchGapSetParamCS$23)
    0000b954 00000006 icall_api.obj (.text:matchGapTerminateAuthCS$23)
    0000b95a 00000006 icall_api.obj (.text:matchGapTerminateLinkReqCS$23)
    0000b960 00000006 icall_api.obj (.text:matchGapUpdateAdvDataCS$23)
    0000b966 00000006 icall_api.obj (.text:matchGapUpdateLinkParamReqCS$23)
    0000b96c 00000006 icall_api.obj (.text:matchUtilNvReadCS$23)
    0000b972 00000006 icall_api.obj (.text:matchUtilNvWriteCS$23)
    0000b978 00000006 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_setFunc__E)
    0000b97e 00000004 tirtosport.aem3 : HwiP_tirtos.oem3 (.text:HwiP_disable)
    0000b982 00000004 drivers_cc26xxware.aem3 : List.oem3 (.text:List_head)
    0000b986 00000004 : List.oem3 (.text:List_next)
    0000b98a 00000004 RFCC26XX_singleMode.obj (.text:Q_peek$15)
    0000b98e 00000004 sensortag.obj (.text:SensorTag_resetAllModules$0)
    0000b992 00000004 util.obj (.text:Util_stopClock)
    0000b996 00000004 zan_config.obj (.text:ZanConfig_Read)
    0000b99a 00000004 peripheral.obj (.text:gapRole_SetupGAP$35)
    0000b99e 00000004 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:nopResourceHandler)
    0000b9a2 00000004 sensortag_tmp.obj (.text:publish_waterusage_data2)
    0000b9a6 00000004 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_getCount64__E)
    0000b9aa 00000004 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_isActive__E)
    0000b9ae 00000004 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_defaultCreate)
    0000b9b2 00000004 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_defaultReady)
    0000b9b6 00000004 : rom_sysbios.obj (.text:xdc_runtime_System_snprintf_va__F)
    0000b9ba 00000002 --HOLE-- [fill = 0]
    0000b9bc 00000008 (.tramp.ti_sysbios_knl_Task_enable__E.1)
    0000b9c4 00000008 (.tramp.ti_sysbios_family_arm_m3_Hwi_enableFxn__E.1)
    0000b9cc 00000008 (.tramp.xdc_runtime_Startup_startMods__I.1)
    0000b9d4 00000008 (.tramp.ti_sysbios_knl_Clock_logTick__E.1)
    0000b9dc 00000008 (.tramp.ti_sysbios_BIOS_RtsGateProxy_leave__E.1)
    0000b9e4 00000008 (.tramp.ti_sysbios_knl_Queue_construct.1)
    0000b9ec 00000008 (.tramp.ti_sysbios_knl_Queue_get__E.1)
    0000b9f4 00000008 (.tramp.ti_sysbios_BIOS_RtsGateProxy_enter__E.1)
    0000b9fc 00000008 (.tramp.ti_sysbios_knl_Queue_put__E.1)
    0000ba04 00000008 (.tramp.xdc_runtime_Core_createObject__I.1)
    0000ba0c 00000008 (.tramp.ti_sysbios_knl_Task_startup__E.1)
    0000ba14 00000008 (.tramp.ti_sysbios_knl_Swi_startup__E.1)
    0000ba1c 00000008 (.tramp.ti_sysbios_hal_Hwi_startup__E.1)
    0000ba24 00000008 (.tramp.ti_sysbios_family_arm_cc26xx_Timer_startup__E.1)
    0000ba2c 00000008 (.tramp.xdc_runtime_System_atexit__E.1)
    0000ba34 00000008 (.tramp.ti_sysbios_BIOS_setThreadType__E.1)
    0000ba3c 00000008 (.tramp.ti_sysbios_family_arm_m3_Hwi_create.1)
    0000ba44 00000008 (.tramp.ti_sysbios_knl_Task_construct.1)
    0000ba4c 00000008 (.tramp.xdc_runtime_System_exit__E.1)
    0000ba54 00000008 (.tramp.ti_sysbios_BIOS_getCpuFreq__E.1)
    0000ba5c 00000008 (.tramp.ti_sysbios_knl_Semaphore_create.1)
    0000ba64 00000008 (.tramp.ti_sysbios_BIOS_start__E.1)
    0000ba6c 00000008 (.tramp.ti_sysbios_knl_Task_create.1)
    0000ba74 00000008 (.tramp.ti_sysbios_knl_Task_Params__init__S.1)
    0000ba7c 00000008 (.tramp.ti_sysbios_knl_Clock_create.1)
    0000ba84 00000008 (.tramp.ti_sysbios_knl_Clock_scheduleNextTick__E.1)
    0000ba8c 00000008 (.tramp.ti_sysbios_knl_Clock_walkQueueDynamic__E.1)
    0000ba94 00000008 (.tramp.ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E.1)
    0000ba9c 00000008 (.tramp.ti_sysbios_knl_Semaphore_destruct.1)
    0000baa4 00000008 (.tramp.ti_sysbios_knl_Swi_destruct.1)
    0000baac 00000008 (.tramp.ti_sysbios_family_arm_m3_Hwi_destruct.1)
    0000bab4 00000008 (.tramp.ti_sysbios_knl_Task_self__E.1)
    0000babc 00000008 (.tramp.ti_sysbios_knl_Queue_empty__E.1)
    0000bac4 00000008 (.tramp.ti_sysbios_knl_Clock_getTicks__E.1)
    0000bacc 00000008 (.tramp.ti_sysbios_knl_Clock_construct.1)
    0000bad4 00000008 (.tramp.ti_sysbios_knl_Clock_Params__init__S.1)
    0000badc 00000008 (.tramp.xdc_runtime_Text_ropeText__E.1)
    0000bae4 00000008 (.tramp.xdc_runtime_System_abortSpin__E.1)
    0000baec 00000008 (.tramp.ti_sysbios_knl_Semaphore_construct.1)
    0000baf4 00000008 (.tramp.ti_sysbios_knl_Semaphore_Params__init__S.1)
    0000bafc 00000008 (.tramp.ti_sysbios_knl_Swi_construct.1)
    0000bb04 00000008 (.tramp.ti_sysbios_knl_Swi_Params__init__S.1)
    0000bb0c 00000008 (.tramp.ti_sysbios_family_arm_m3_Hwi_construct.1)
    0000bb14 00000008 (.tramp.ti_sysbios_family_arm_m3_Hwi_Params__init__S.1)
    0000bb1c 00000008 (.tramp.ti_sysbios_knl_Task_sleep__E.1)
    0000bb24 00000008 (.tramp.ti_sysbios_knl_Task_restore__E.1)
    0000bb2c 00000008 (.tramp.ti_sysbios_knl_Swi_restore__E.1)
    0000bb34 00000008 (.tramp.ti_sysbios_knl_Swi_disable__E.1)
    0000bb3c 00000008 (.tramp.ti_sysbios_knl_Task_disable__E.1)
    0000bb44 00000008 (.tramp.ti_sysbios_knl_Semaphore_post__E.1)
    0000bb4c 00000008 (.tramp.ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E.1)
    0000bb54 00000008 (.tramp.ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E.1)
    0000bb5c 00000008 (.tramp.ti_sysbios_knl_Semaphore_pend__E.1)
    0000bb64 00000008 (.tramp.ti_sysbios_knl_Clock_start__E.1)
    0000bb6c 00000008 (.tramp.ti_sysbios_knl_Clock_setTimeout__E.1)
    0000bb74 00000008 (.tramp.ti_sysbios_family_arm_m3_Hwi_restoreFxn__E.1)
    0000bb7c 00000008 (.tramp.ti_sysbios_family_arm_m3_Hwi_disableFxn__E.1)
    0000bb84 00000008 (.tramp.ti_sysbios_knl_Swi_post__E.1)

    .const 0 0000bb8c 00001d6c
    0000bb8c 000017c0 app_ble_pem3.oem3 (.const:xdc_runtime_Text_charTab__A)
    0000d34c 000000cc icall.obj (.const:$O14$$)
    0000d418 0000004c drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.const:resourceDB)
    0000d464 0000004c ble_user_config.obj (.const:rfDriverTable)
    0000d4b0 00000048 sensortag.obj (.const:$O2$$)
    0000d4f8 00000048 app_ble_pem3.oem3 (.const:.string)
    0000d540 00000034 app_ble_pem3.oem3 (.const:xdc_runtime_LoggerCallback_Module__FXNS__C)
    0000d574 0000002c gatt_uuid.obj (.const:$O21$$)
    0000d5a0 00000028 app_ble_pem3.oem3 (.const:xdc_runtime_Startup_sfxnTab__A)
    0000d5c8 00000027 ble_user_config.obj (.const:txPowerTable)
    0000d5ef 00000001 drivers_cc26xxware.aem3 : NVS.oem3 (.const)
    0000d5f0 00000020 : NVSCC26XX.oem3 (.const)
    0000d610 00000020 app_ble_pem3.oem3 (.const:xdc_runtime_LoggerCallback_Object__DESC__C)
    0000d630 0000001c drivers_cc26xxware.aem3 : WatchdogCC26XX.oem3 (.const)
    0000d64c 0000001c app_ble_pem3.oem3 (.const:xdc_runtime_LoggerCallback_Object__PARAMS__C)
    0000d668 00000018 I2CCC26XX.obj (.const:I2CCC26XX_fxnTable)
    0000d680 00000018 CC2650STK.obj (.const:I2C_config)
    0000d698 00000018 CC2650STK.obj (.const:NVS_config)
    0000d6b0 00000018 watchdog.obj (.const:Watchdog_config)
    0000d6c8 00000018 board.obj (.const:ZanAppPinTable_FSR)
    0000d6e0 00000018 CC2650STK.obj (.const:i2cCC26xxHWAttrs)
    0000d6f8 00000014 RFCC26XX_singleMode.obj (.const:RF_defaultParams$15)
    0000d70c 00000014 app_ble_pem3.oem3 (.const:xdc_runtime_Startup_sfxnRts__A)
    0000d720 00000010 ioservice.obj (.const:.string:ioConfUUID)
    0000d730 00000010 ioservice.obj (.const:.string:ioDataUUID)
    0000d740 00000010 ioservice.obj (.const:.string:ioServUUID)
    0000d750 00000010 registerservice.obj (.const:.string:registerAddressUUID$36)
    0000d760 00000010 registerservice.obj (.const:.string:registerDataUUID$36)
    0000d770 00000010 registerservice.obj (.const:.string:registerDeviceIDUUID$36)
    0000d780 00000010 registerservice.obj (.const:.string:sensorServiceUUID$36)
    0000d790 00000010 I2C.obj (.const:I2C_defaultParams)
    0000d7a0 00000010 CC2650STK.obj (.const:PowerCC26XX_config)
    0000d7b0 00000010 CC2650STK.obj (.const:TRNGCC26XX_config)
    0000d7c0 00000010 board.obj (.const:ZanAppPinTable_TOF)
    0000d7d0 00000010 CC2650STK.obj (.const:nvsCC26xxHWAttrs)
    0000d7e0 00000010 app_ble_pem3.oem3 (.const:xdc_runtime_Text_nodeTab__A)
    0000d7f0 0000000e zan_config.obj (.const:zanConfig_default)
    0000d7fe 00000002 devinfoservice.obj (.const:.string:devInfo11073CertUUID)
    0000d800 0000000c board.obj (.const:BoardGpioInitTable)
    0000d80c 0000000c board.obj (.const:ZanAppPinTable_WashCnt)
    0000d818 0000000c devinfoservice.obj (.const:devInfoCBs)
    0000d824 0000000c drivers_cc26xxware.aem3 : Watchdog.oem3 (.const)
    0000d830 0000000c ioservice.obj (.const:ioCBs)
    0000d83c 0000000c registerservice.obj (.const:sensorCBs$36)
    0000d848 0000000c ble_user_config.obj (.const:trngDriverTable)
    0000d854 0000000c watchdog.obj (.const:watchdogCC26XXHwAttrs)
    0000d860 0000000c app_ble_pem3.oem3 (.const:xdc_runtime_Startup_firstFxns__A)
    0000d86c 00000008 I2CCC26XX.obj (.const:bitRate$13)
    0000d874 00000008 devinfoservice.obj (.const:devInfoService$27)
    0000d87c 00000008 ioservice.obj (.const:ioService$31)
    0000d884 00000008 registerservice.obj (.const:sensorService$36)
    0000d88c 00000008 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Idle_funcList__A)
    0000d894 00000006 ble_user_config.obj (.const:txPwrTbl)
    0000d89a 00000002 devinfoservice.obj (.const:.string:devInfoFirmwareRevUUID)
    0000d89c 00000004 CC2650STK.obj (.const:TRNGCC26XXHWAttrs)
    0000d8a0 00000004 icall_cc2650.obj (.const:events$1$21)
    0000d8a4 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Clock_tickPeriod__C)
    0000d8a8 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Clock_triggerClock__C)
    0000d8ac 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_ILogger_Interface__BASE__C)
    0000d8b0 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Log_L_info__C)
    0000d8b4 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_LoggerCallback_Object__count__C)
    0000d8b8 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_LoggerCallback_createInstFxn__C)
    0000d8bc 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_LoggerCallback_outputFxn__C)
    0000d8c0 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerFxn2__C)
    0000d8c4 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerFxn4__C)
    0000d8c8 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerObj__C)
    0000d8cc 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_SysCallback_putchFxn__C)
    0000d8d0 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_SysCallback_readyFxn__C)
    0000d8d4 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_System_extendFxn__C)
    0000d8d8 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Text_nodeTab__C)
    0000d8dc 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Text_visitRopeFxn__C)
    0000d8e0 00000002 devinfoservice.obj (.const:.string:devInfoHardwareRevUUID)
    0000d8e2 00000002 devinfoservice.obj (.const:.string:devInfoMfrNameUUID)
    0000d8e4 00000002 devinfoservice.obj (.const:.string:devInfoModelNumberUUID)
    0000d8e6 00000002 devinfoservice.obj (.const:.string:devInfoPnpIdUUID)
    0000d8e8 00000002 devinfoservice.obj (.const:.string:devInfoSerialNumberUUID)
    0000d8ea 00000002 devinfoservice.obj (.const:.string:devInfoServUUID)
    0000d8ec 00000002 devinfoservice.obj (.const:.string:devInfoSoftwareRevUUID)
    0000d8ee 00000002 devinfoservice.obj (.const:.string:devInfoSystemIdUUID)
    0000d8f0 00000002 sensortag_bar.obj (.const:pinCfg1$1)
    0000d8f2 00000002 app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerDefined__C)
    0000d8f4 00000002 app_ble_pem3.oem3 (.const:xdc_runtime_Text_registryModsLastId__C)
    0000d8f6 00000002 app_ble_pem3.oem3 (.const:xdc_runtime_Text_unnamedModsLastId__C)

    .cinit 0 0000d8f8 00000744
    0000d8f8 000005bd (.cinit..data.load) [load image, compression = rle]
    0000deb5 00000003 --HOLE-- [fill = 0]
    0000deb8 0000002d (.cinit..data:ti_sysbios_family_arm_m3_Hwi_Module__state__V.load) [load image, compression = rle]
    0000dee5 00000003 --HOLE-- [fill = 0]
    0000dee8 0000002c (.cinit..data:ti_sysbios_knl_Task_Module__state__V.load) [load image, compression = rle]
    0000df14 00000004 --HOLE-- [fill = 0]
    0000df18 00000021 (.cinit..data:ti_sysbios_knl_Clock_Module__state__V.load) [load image, compression = rle]
    0000df39 00000007 --HOLE-- [fill = 0]
    0000df40 0000001f (.cinit..data:ti_sysbios_BIOS_Module__state__V.load) [load image, compression = rle]
    0000df5f 00000001 --HOLE-- [fill = 0]
    0000df60 00000011 (.cinit..data:ti_sysbios_knl_Swi_Module__state__V.load) [load image, compression = rle]
    0000df71 00000007 --HOLE-- [fill = 0]
    0000df78 0000000d (.cinit..data:ti_sysbios_family_arm_cc26xx_Timer_Module__state__V.load) [load image, compression = rle]
    0000df85 00000003 --HOLE-- [fill = 0]
    0000df88 0000000b (.cinit..bss.load) [load image, compression = rle]
    0000df93 00000005 --HOLE-- [fill = 0]
    0000df98 0000000a (.cinit..data:xdc_runtime_Memory_Module__state__V.load) [load image, compression = rle]
    0000dfa2 00000006 --HOLE-- [fill = 0]
    0000dfa8 00000009 (.cinit..data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V.load) [load image, compression = rle]
    0000dfb1 00000007 --HOLE-- [fill = 0]
    0000dfb8 00000009 (.cinit..data:xdc_runtime_Startup_Module__state__V.load) [load image, compression = rle]
    0000dfc1 00000007 --HOLE-- [fill = 0]
    0000dfc8 00000009 (.cinit..data:xdc_runtime_System_Module__state__V.load) [load image, compression = rle]
    0000dfd1 00000003 --HOLE-- [fill = 0]
    0000dfd4 00000008 (__TI_handler_table)
    0000dfdc 00000060 (__TI_cinit_table)

    .init_array
    * 0 00000000 00000000 UNINITIALIZED

    .ccfg 0 0001ffa8 00000058
    0001ffa8 00000058 ccfg_app_ble.obj (.ccfg:retain)

    .vecs 0 20000000 000000c8 NOLOAD SECTION
    20000000 000000c8 app_ble_pem3.oem3 (.vecs)

    .data:ti_sysbios_knl_Task_Module__state__V
    * 0 20000100 00000044 UNINITIALIZED
    20000100 00000044 app_ble_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_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_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_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_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_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_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_pem3.oem3 (.data:xdc_runtime_Startup_Module__state__V)

    .data:xdc_runtime_System_Module__state__V
    * 0 200001f8 00000008 UNINITIALIZED
    200001f8 00000008 app_ble_pem3.oem3 (.data:xdc_runtime_System_Module__state__V)

    .data:xdc_runtime_Memory_Module__state__V
    * 0 20000200 00000004 UNINITIALIZED
    20000200 00000004 app_ble_pem3.oem3 (.data:xdc_runtime_Memory_Module__state__V)

    .data 0 20000208 00001865 UNINITIALIZED
    20000208 00000410 sensortag.obj (.data:$O1$$)
    20000618 000003c0 sensortag_tmp.obj (.data:$O7$$)
    200009d8 00000338 uart_logs.obj (.data:$O8$$)
    20000d10 0000031c peripheral.obj (.data:$O27$$)
    2000102c 00000004 I2C.obj (.data)
    20001030 00000230 RFCC26XX_singleMode.obj (.data:$O11$$)
    20001260 000001d4 devinfoservice.obj (.data:$O20$$)
    20001434 00000110 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.data:PowerCC26XX_module)
    20001544 0000010c icall.obj (.data:$O13$$)
    20001650 00000090 registerservice.obj (.data:$O28$$)
    200016e0 0000005c ioservice.obj (.data:$O23$$)
    2000173c 00000050 ble_user_config.obj (.data:rfRegTbl)
    2000178c 0000004c app_ble_pem3.oem3 (.data:ti_sysbios_knl_Task_Object__table__V)
    200017d8 00000048 app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_cc26xx_Timer_Object__table__V)
    20001820 00000038 app_ble_pem3.oem3 (.data:ti_sysbios_gates_GateMutex_Object__table__V)
    20001858 00000030 sensortag_register.obj (.data:$O6$$)
    20001888 00000030 app_ble_pem3.oem3 (.data:ti_sysbios_knl_Swi_Module_State_0_readyQ__A)
    200018b8 00000030 app_ble_pem3.oem3 (.data:ti_sysbios_knl_Swi_Object__table__V)
    200018e8 00000030 app_ble_pem3.oem3 (.data:ti_sysbios_knl_Task_Module_State_0_readyQ__A)
    20001918 00000030 main.obj (.data:user0Cfg)
    20001948 00000020 app_ble_pem3.oem3 (.data:ti_sysbios_knl_Clock_Object__table__V)
    20001968 00000018 app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Object__table__V)
    20001980 00000018 app_ble_pem3.oem3 (.data:ti_sysbios_heaps_HeapMem_Object__table__V)
    20001998 00000010 app_ble_pem3.oem3 (.data:xdc_runtime_LoggerCallback_Object__table__V)
    200019a8 0000000c rtsv7M3_T_le_eabi.lib : exit.obj (.data:$O1$$)
    200019b4 0000000c icall_api.obj (.data:$O16$$)
    200019c0 00000009 devinfoservice.obj (.data)
    200019c9 00000003 registerservice.obj (.data)
    200019cc 00000008 icall_cc2650.obj (.data:$O15$$)
    200019d4 00000008 rtsv7M3_T_le_eabi.lib : _lock.obj (.data:$O30$$)
    200019dc 00000008 sensortag_io.obj (.data:$O5$$)
    200019e4 00000008 app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module__root__V)
    200019ec 00000008 app_ble_pem3.oem3 (.data:ti_sysbios_gates_GateHwi_Module__root__V)
    200019f4 00000008 app_ble_pem3.oem3 (.data:ti_sysbios_gates_GateMutex_Module__root__V)
    200019fc 00000008 app_ble_pem3.oem3 (.data:ti_sysbios_hal_Hwi_Module__root__V)
    20001a04 00000008 app_ble_pem3.oem3 (.data:ti_sysbios_heaps_HeapMem_Module__root__V)
    20001a0c 00000008 app_ble_pem3.oem3 (.data:ti_sysbios_knl_Clock_Module__root__V)
    20001a14 00000008 app_ble_pem3.oem3 (.data:ti_sysbios_knl_Mailbox_Module__root__V)
    20001a1c 00000008 app_ble_pem3.oem3 (.data:ti_sysbios_knl_Queue_Module__root__V)
    20001a24 00000008 app_ble_pem3.oem3 (.data:ti_sysbios_knl_Semaphore_Module__root__V)
    20001a2c 00000008 app_ble_pem3.oem3 (.data:ti_sysbios_knl_Swi_Module__root__V)
    20001a34 00000008 app_ble_pem3.oem3 (.data:ti_sysbios_knl_Task_Module__root__V)
    20001a3c 00000008 app_ble_pem3.oem3 (.data:xdc_runtime_LoggerCallback_Module__root__V)
    20001a44 00000008 app_ble_pem3.oem3 (.data:xdc_runtime_Registry_Module__state__V)
    20001a4c 00000004 ble_user_config.obj (.data)
    20001a50 00000004 drivers_cc26xxware.aem3 : NVS.oem3 (.data)
    20001a54 00000004 : Watchdog.oem3 (.data)
    20001a58 00000004 rtsv7M3_T_le_eabi.lib : stkdepth_vars.obj (.data)
    20001a5c 00000004 app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A)
    20001a60 00000004 app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A)
    20001a64 00000004 app_ble_pem3.oem3 (.data:ti_sysbios_knl_Task_Module_State_0_idleTask__A)
    20001a68 00000002 ioservice.obj (.data)
    20001a6a 00000002 app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A)
    20001a6c 00000001 TRNGCC26XX.obj (.data)

    .bss 0 20001a70 000021f5 UNINITIALIZED
    20001a70 00001000 (.common:myCopyBlock)
    20002a70 00000680 (.common:ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A)
    200030f0 00000320 sensortag_bar.obj (.bss:$O3$$)
    20003410 000002f4 sensortag_hum.obj (.bss:$O4$$)
    20003704 00000004 (.common:hWDT)
    20003708 00000200 app_ble_pem3.oem3 (.bss:taskStackSection)
    20003908 00000110 PINCC26XX.obj (.bss:$O10$$)
    20003a18 000000e0 (.common:i2cCC26xxObjects)
    20003af8 000000c8 (.common:ti_sysbios_family_arm_m3_Hwi_dispatchTable)
    20003bc0 00000028 (.common:watchdogCC26XXObjects)
    20003be8 00000024 board.obj (.bss:$O29$$)
    20003c0c 0000001c (.common:writeSem)
    20003c28 00000014 driverlib.lib : osc.obj (.bss:oscHfGlobals$61)
    20003c3c 0000000e (.common:zanConfig_active)
    20003c4a 00000002 sensortag_bar.obj (.bss)
    20003c4c 00000008 RFCC26XX_singleMode.obj (.bss)
    20003c54 00000008 driverlib.lib : sys_ctrl.obj (.bss:powerQualGlobals$64)
    20003c5c 00000004 (.common:nvsCC26xxObjects)
    20003c60 00000004 (.common:trngCC26XXObjects)
    20003c64 00000001 (.common:driverlib_release_0_46593)

    .vtable 0 20003c65 00000000 UNINITIALIZED

    .vtable_ram
    * 0 20003c65 00000000 UNINITIALIZED

    vtable_ram
    * 0 20003c65 00000000 UNINITIALIZED

    .sysmem 0 20003c65 00000000 UNINITIALIZED

    .nonretenvar
    * 0 20003c65 00000000 UNINITIALIZED

    .stack 0 20004028 00000400 UNINITIALIZED
    20004028 00000400 --HOLE--

    .bootVecs
    * 0 00000000 00000008 DSECT
    00000000 00000008 boot.aem3 : boot.oem3 (.bootVecs)

    xdc.meta 0 00000000 000000f9 COPY SECTION
    00000000 000000f9 app_ble_pem3.oem3 (xdc.meta)

    MODULE SUMMARY

    Module code ro data rw data
    ------ ---- ------- -------
    .\Application\
    sensortag_bar.obj 2940 2 802
    sensortag.obj 2194 72 1040
    sensortag_tmp.obj 2004 0 960
    sensortag_hum.obj 872 0 756
    uart_logs.obj 568 0 824
    sensortag_register.obj 404 0 48
    sensortag_io.obj 312 0 8
    util.obj 314 0 0
    zan_config.obj 136 14 0
    watchdog.obj 112 36 0
    +--+---------------------------------+-------+---------+---------+
    Total: 9856 124 4438

    .\Drivers\I2C\
    I2CCC26XX.obj 4848 32 0
    I2C.obj 126 16 4
    +--+---------------------------------+-------+---------+---------+
    Total: 4974 48 4

    .\Drivers\PIN\
    PINCC26XX.obj 1180 0 272
    +--+---------------------------------+-------+---------+---------+
    Total: 1180 0 272

    .\Drivers\RF\
    RFCC26XX_singleMode.obj 4584 20 568
    +--+---------------------------------+-------+---------+---------+
    Total: 4584 20 568

    .\Drivers\TRNG\
    TRNGCC26XX.obj 270 0 1
    +--+---------------------------------+-------+---------+---------+
    Total: 270 0 1

    .\ICallBLE\
    icall_api.obj 2268 0 12
    ble_user_config.obj 40 133 84
    +--+---------------------------------+-------+---------+---------+
    Total: 2308 133 96

    .\ICall\
    icall.obj 2604 204 268
    icall_cc2650.obj 466 4 8
    +--+---------------------------------+-------+---------+---------+
    Total: 3070 208 276

    .\PROFILES\
    peripheral.obj 2326 0 796
    devinfoservice.obj 416 40 477
    registerservice.obj 524 84 147
    ioservice.obj 446 68 94
    gattservapp_util.obj 476 0 0
    gatt_uuid.obj 0 44 0
    st_util.obj 44 0 0
    +--+---------------------------------+-------+---------+---------+
    Total: 4232 236 1514

    .\Startup\
    main.obj 114 0 48
    CC2650STK.obj 0 124 0
    board.obj 0 64 36
    ccfg_app_ble.obj 0 88 0
    +--+---------------------------------+-------+---------+---------+
    Total: 114 276 84

    C:\Users\user\AppData\Local\Temp\
    011762 0 0 4387
    +--+---------------------------------+-------+---------+---------+
    Total: 0 0 4387

    C:\Users\user\Desktop\Kaleesh_dev\BLE_Firmware\bleV2_app\FlashROM\configPkg\package\cfg\
    app_ble_pem3.oem3 738 7734 3398
    +--+---------------------------------+-------+---------+---------+
    Total: 738 7734 3398

    C:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/driverlib/bin/ccs/driverlib.lib
    setup.obj 1666 0 0
    sys_ctrl.obj 736 0 8
    osc.obj 468 0 20
    aux_adc.obj 324 0 0
    chipinfo.obj 228 0 0
    ddi.obj 188 0 0
    rfc.obj 164 0 0
    adi.obj 84 0 0
    flash.obj 56 0 0
    trng.obj 48 0 0
    aon_rtc.obj 44 0 0
    aon_batmon.obj 40 0 0
    cpu.obj 30 0 0
    vims.obj 14 0 0
    +--+---------------------------------+-------+---------+---------+
    Total: 4090 0 28

    C:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/tidrivers_cc13xx_cc26xx_2_20_01_10/packages/ti/drivers/lib/drivers_cc26xxware.aem3
    PowerCC26XX.oem3 2168 76 272
    PowerCC26XX_calibrateRCOSC.oem3 1400 0 0
    NVSCC26XX.oem3 828 32 28
    WatchdogCC26XX.oem3 318 28 0
    Watchdog.oem3 150 12 4
    NVS.oem3 128 1 4
    List.oem3 82 0 0
    UART.oem3 10 0 0
    +--+---------------------------------+-------+---------+---------+
    Total: 5084 149 308

    C:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/tidrivers_cc13xx_cc26xx_2_20_01_10/packages/ti/drivers/lib/power_cc26xx_tirtos.aem3
    PowerCC26XX_tirtos.oem3 188 0 0
    +--+---------------------------------+-------+---------+---------+
    Total: 188 0 0

    C:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/tidrivers_cc13xx_cc26xx_2_20_01_10/packages/ti/drivers/ports/lib/tirtosport.aem3
    HwiP_tirtos.oem3 4 0 0
    +--+---------------------------------+-------+---------+---------+
    Total: 4 0 0

    C:\ti\ccsv6\ccsv6\tools\compiler\arm_15.12.3.LTS\lib\rtsv7M3_T_le_eabi.lib
    ull_div_t2.obj 500 0 0
    fd_mul_t2.obj 252 0 0
    fs_add_t2.obj 250 0 0
    memcpy_t2.obj 156 0 0
    fs_div_t2.obj 146 0 0
    fd_cmp_t2.obj 134 0 0
    fs_mul_t2.obj 122 0 0
    memset_t2.obj 122 0 0
    copy_decompress_rle.obj 112 0 0
    exit.obj 84 0 12
    fs_cmp_t2.obj 96 0 0
    cpy_tbl.obj 76 0 0
    fd_toi_t2.obj 72 0 0
    u_divt2.obj 64 0 0
    fs_toi_t2.obj 56 0 0
    i_tofs_t2.obj 56 0 0
    fs_tou_t2.obj 52 0 0
    u_tofs_t2.obj 36 0 0
    memcmp.obj 34 0 0
    u_tofd_t2.obj 32 0 0
    _lock.obj 20 0 8
    args_main.obj 24 0 0
    ll_mul_t2.obj 24 0 0
    strlen.obj 20 0 0
    copy_decompress_none.obj 14 0 0
    stkdepth_vars.obj 0 0 4
    i_div0.obj 2 0 0
    +--+---------------------------------+-------+---------+---------+
    Total: 2556 0 24

    C:\ti\simplelink\ble_sdk_2_02_01_18\examples\cc2650stk\sensortag\ccs\config\src\sysbios\rom_sysbios.aem3
    rom_sysbios.obj 2719 0 0
    rom_sysbios_config.obj 26 0 0
    +--+---------------------------------+-------+---------+---------+
    Total: 2745 0 0

    C:\ti\tirtos_cc13xx_cc26xx_2_20_01_08\products\bios_6_46_01_38\packages\ti\targets\arm\rtsarm\lib\auto_init.aem3
    auto_init.oem3 160 0 0
    +--+---------------------------------+-------+---------+---------+
    Total: 160 0 0

    C:\ti\tirtos_cc13xx_cc26xx_2_20_01_08\products\bios_6_46_01_38\packages\ti\targets\arm\rtsarm\lib\boot.aem3
    boot.oem3 68 0 0
    +--+---------------------------------+-------+---------+---------+
    Total: 68 0 0

    Stack: 0 0 1024
    Linker Generated: 464 1804 0
    +--+---------------------------------+-------+---------+---------+
    Grand Total: 46685 10732 16422


    LINKER GENERATED COPY TABLES

    __TI_cinit_table @ 0000dfdc records: 12, size/record: 8, table size: 96
    .data: load addr=0000d8f8, load size=000005bd bytes, run addr=20000208, run size=00001865 bytes, compression=rle
    .data:ti_sysbios_family_arm_m3_Hwi_Module__state__V: load addr=0000deb8, load size=0000002d bytes, run addr=20000144, run size=00000034 bytes, compression=rle
    .data:ti_sysbios_knl_Task_Module__state__V: load addr=0000dee8, load size=0000002c bytes, run addr=20000100, run size=00000044 bytes, compression=rle
    .data:ti_sysbios_knl_Clock_Module__state__V: load addr=0000df18, load size=00000021 bytes, run addr=20000178, run size=0000002c bytes, compression=rle
    .data:ti_sysbios_BIOS_Module__state__V: load addr=0000df40, load size=0000001f bytes, run addr=200001a4, run size=00000024 bytes, compression=rle
    .data:ti_sysbios_knl_Swi_Module__state__V: load addr=0000df60, 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=0000df78, load size=0000000d bytes, run addr=200001e4, run size=00000008 bytes, compression=rle
    .bss: load addr=0000df88, load size=0000000b bytes, run addr=20001a70, run size=000021f5 bytes, compression=rle
    .data:xdc_runtime_Memory_Module__state__V: load addr=0000df98, 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=0000dfa8, load size=00000009 bytes, run addr=200001ec, run size=00000004 bytes, compression=rle
    .data:xdc_runtime_Startup_Module__state__V: load addr=0000dfb8, load size=00000009 bytes, run addr=200001f0, run size=00000008 bytes, compression=rle
    .data:xdc_runtime_System_Module__state__V: load addr=0000dfc8, load size=00000009 bytes, run addr=200001f8, run size=00000008 bytes, compression=rle


    LINKER GENERATED HANDLER TABLE

    __TI_handler_table @ 0000dfd4 records: 2, size/record: 4, table size: 8
    index: 0, handler: __TI_decompress_rle24
    index: 1, handler: __TI_decompress_none


    FAR CALL TRAMPOLINES

    callee name trampoline name
    callee addr tramp addr call addr call info
    -------------- ----------- --------- ----------------
    ti_sysbios_knl_Task_enable__E $Tramp$TT$L$PI$$ti_sysbios_knl_Task_enable__E
    1001c243 0000b9bc 0000b612 icall.obj (.text:ICall_primEnableMInt$20)
    ti_sysbios_family_arm_m3_Hwi_enableFxn__E $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_enableFxn__E
    1001c155 0000b9c4 0000b60e icall.obj (.text:ICall_primEnableMInt$20)
    xdc_runtime_Startup_startMods__I $Tramp$TT$L$PI$$xdc_runtime_Startup_startMods__I
    1001c30d 0000b9cc 0000b44a app_ble_pem3.oem3 (.text:xdc_runtime_Startup_exec__I)
    ti_sysbios_knl_Clock_logTick__E $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_logTick__E
    1001be67 0000b9d4 0000b3f6 app_ble_pem3.oem3 (.text:ti_sysbios_knl_Clock_doTick__I)
    ti_sysbios_BIOS_RtsGateProxy_leave__E $Tramp$TT$L$PI$$ti_sysbios_BIOS_RtsGateProxy_leave__E
    1001c24d 0000b9dc 0000b1ce app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsUnlock__I)
    ti_sysbios_knl_Queue_construct $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_construct
    1001b8f5 0000b9e4 0000b13a util.obj (.text:Util_constructQueue)
    ti_sysbios_knl_Queue_get__E $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_get__E
    1001bf11 0000b9ec 0000ae44 util.obj (.text:Util_dequeueMsg)
    ti_sysbios_BIOS_RtsGateProxy_enter__E $Tramp$TT$L$PI$$ti_sysbios_BIOS_RtsGateProxy_enter__E
    1001c249 0000b9f4 0000a9f2 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsLock__I)
    ti_sysbios_knl_Queue_put__E $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_put__E
    1001bf2d 0000b9fc 0000a240 util.obj (.text:Util_enqueueMsg)
    xdc_runtime_Core_createObject__I $Tramp$TT$L$PI$$xdc_runtime_Core_createObject__I
    1001c405 0000ba04 00009ddc app_ble_pem3.oem3 (.text:xdc_runtime_LoggerCallback_Object__create__S)
    ti_sysbios_knl_Task_startup__E $Tramp$TT$L$PI$$ti_sysbios_knl_Task_startup__E
    1001c309 0000ba0c 00009d5c app_ble_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 0000ba14 00009d58 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    ti_sysbios_hal_Hwi_startup__E $Tramp$TT$L$PI$$ti_sysbios_hal_Hwi_startup__E
    1001c28d 0000ba1c 00009d54 app_ble_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 0000ba24 00009d50 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    xdc_runtime_System_atexit__E $Tramp$TT$L$PI$$xdc_runtime_System_atexit__E
    1001c681 0000ba2c 00009d48 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    ti_sysbios_BIOS_setThreadType__E $Tramp$TT$L$PI$$ti_sysbios_BIOS_setThreadType__E
    1001c045 0000ba34 00009d14 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
    0000b280 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__I)
    ti_sysbios_family_arm_m3_Hwi_create $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_create
    1001ab15 0000ba3c 000096ac icall.obj (.text:ICall_primRegisterISR$20)
    000096e0 icall.obj (.text:ICall_primRegisterISR_Ext$20)
    ti_sysbios_knl_Task_construct $Tramp$TT$L$PI$$ti_sysbios_knl_Task_construct
    1001b125 0000ba44 00008d56 peripheral.obj (.text:GAPRole_createTask)
    000090b8 sensortag_bar.obj (.text:SensorTagBar_createTask)
    000090f4 sensortag_hum.obj (.text:SensorTagHum_createTask)
    0000916c sensortag.obj (.text:SensorTag_createTask)
    xdc_runtime_System_exit__E $Tramp$TT$L$PI$$xdc_runtime_System_exit__E
    1001c7d1 0000ba4c 00008bc0 boot.aem3 : boot.oem3 (.text)
    0000b286 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__I)
    ti_sysbios_BIOS_getCpuFreq__E $Tramp$TT$L$PI$$ti_sysbios_BIOS_getCpuFreq__E
    1001bff9 0000ba54 00008808 I2CCC26XX.obj (.text:I2CCC26XX_initHw$13)
    0000a52a drivers_cc26xxware.aem3 : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_convertMsToTicks)
    ti_sysbios_knl_Semaphore_create $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_create
    1001b5ad 0000ba5c 00008578 icall.obj (.text:ICall_newTask$20)
    ti_sysbios_BIOS_start__E $Tramp$TT$L$PI$$ti_sysbios_BIOS_start__E
    1001c055 0000ba64 00007f6a main.obj (.text:main)
    ti_sysbios_knl_Task_create $Tramp$TT$L$PI$$ti_sysbios_knl_Task_create
    1001ae19 0000ba6c 00007528 icall.obj (.text:ICall_createRemoteTasks)
    00008cce icall.obj (.text:ICall_primCreateTask$20)
    ti_sysbios_knl_Task_Params__init__S $Tramp$TT$L$PI$$ti_sysbios_knl_Task_Params__init__S
    1001c1d9 0000ba74 00007508 icall.obj (.text:ICall_createRemoteTasks)
    00008cb8 icall.obj (.text:ICall_primCreateTask$20)
    00008d36 peripheral.obj (.text:GAPRole_createTask)
    0000909a sensortag_bar.obj (.text:SensorTagBar_createTask)
    000090d6 sensortag_hum.obj (.text:SensorTagHum_createTask)
    0000914e sensortag.obj (.text:SensorTag_createTask)
    ti_sysbios_knl_Clock_create $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_create
    1001b3ed 0000ba7c 00006b52 icall.obj (.text:ICall_primSetTimer$20)
    ti_sysbios_knl_Clock_scheduleNextTick__E $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_scheduleNextTick__E
    1001bebd 0000ba84 0000646a 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 0000ba8c 00006432 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
    0000644e : 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 0000ba94 00006400 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
    0000a15e : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_getTicksUntilInterrupt__E)
    ti_sysbios_knl_Semaphore_destruct $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_destruct
    1001c2e1 0000ba9c 000056e8 I2CCC26XX.obj (.text:I2CCC26XX_close)
    000056f4 I2CCC26XX.obj (.text:I2CCC26XX_close)
    ti_sysbios_knl_Swi_destruct $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_destruct
    1001c2e9 0000baa4 000056e0 I2CCC26XX.obj (.text:I2CCC26XX_close)
    ti_sysbios_family_arm_m3_Hwi_destruct $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_destruct
    1001c261 0000baac 000056d8 I2CCC26XX.obj (.text:I2CCC26XX_close)
    ti_sysbios_knl_Task_self__E $Tramp$TT$L$PI$$ti_sysbios_knl_Task_self__E
    1001c1e5 0000bab4 00004f9e icall.obj (.text:ICall_primWaitMatch$20)
    00007ab8 icall.obj (.text:ICall_primEnroll$20)
    00007d68 icall.obj (.text:ICall_primThreadServes$20)
    00008234 icall.obj (.text:ICall_primWait$20)
    00008328 icall.obj (.text:ICall_primRegisterApp$20)
    000085a4 icall.obj (.text:ICall_primGetEntityId$20)
    0000965c icall.obj (.text:ICall_primFetchMsg$20)
    ti_sysbios_knl_Queue_empty__E $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_empty__E
    1001c113 0000babc 0000496a sensortag.obj (.text:SensorTag_taskFxn$0)
    ti_sysbios_knl_Clock_getTicks__E $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_getTicks__E
    1001b6d9 0000bac4 00004814 sensortag_bar.obj (.text:VL53L0x_getSpadInfo)
    00004fe8 icall.obj (.text:ICall_primWaitMatch$20)
    00005052 icall.obj (.text:ICall_primWaitMatch$20)
    0000b62c icall.obj (.text:ICall_primGetTicks$20)
    ti_sysbios_knl_Clock_construct $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_construct
    1001b579 0000bacc 0000428e drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_init)
    0000429c : PowerCC26XX.oem3 (.text:Power_init)
    000042aa : PowerCC26XX.oem3 (.text:Power_init)
    00005210 RFCC26XX_singleMode.obj (.text:rf_init$15)
    00005c1c RFCC26XX_singleMode.obj (.text:RF_open)
    0000767c drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
    00008676 util.obj (.text:Util_constructClock)
    ti_sysbios_knl_Clock_Params__init__S $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_Params__init__S
    1001c185 0000bad4 00004276 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_init)
    00005c0c RFCC26XX_singleMode.obj (.text:RF_open)
    00006b3e icall.obj (.text:ICall_primSetTimer$20)
    00007664 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
    0000864e util.obj (.text:Util_constructClock)
    xdc_runtime_Text_ropeText__E $Tramp$TT$L$PI$$xdc_runtime_Text_ropeText__E
    1001c7e9 0000badc 00003ef6 uart_logs.obj (.text:uartLog_doPrint$7)
    00008784 rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_visitRope2__I)
    00008792 : rom_sysbios.obj (.text:xdc_runtime_Text_visitRope2__I)
    xdc_runtime_System_abortSpin__E $Tramp$TT$L$PI$$xdc_runtime_System_abortSpin__E
    1001c899 0000bae4 00003b0a drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_doCalibrate)
    00007b36 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_RCOSC_clockFunc)
    ti_sysbios_knl_Semaphore_construct $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_construct
    1001b709 0000baec 00002996 I2CCC26XX.obj (.text:I2CCC26XX_open)
    000029a6 I2CCC26XX.obj (.text:I2CCC26XX_open)
    000032ea PINCC26XX.obj (.text:PIN_init)
    00005a0e sensortag_hum.obj (.text:pressure_sensor_reading)
    00005c00 RFCC26XX_singleMode.obj (.text:RF_open)
    00007bf8 sensortag_bar.obj (.text:VL53L0XI2cInit)
    0000b50a drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_init)
    ti_sysbios_knl_Semaphore_Params__init__S $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_Params__init__S
    1001c1c1 0000baf4 00002986 I2CCC26XX.obj (.text:I2CCC26XX_open)
    000032d6 PINCC26XX.obj (.text:PIN_init)
    000059f8 sensortag_hum.obj (.text:pressure_sensor_reading)
    00005bf0 RFCC26XX_singleMode.obj (.text:RF_open)
    00007be2 sensortag_bar.obj (.text:VL53L0XI2cInit)
    ti_sysbios_knl_Swi_construct $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_construct
    1001b085 0000bafc 0000297a I2CCC26XX.obj (.text:I2CCC26XX_open)
    00003380 PINCC26XX.obj (.text:PIN_init)
    0000519c RFCC26XX_singleMode.obj (.text:rf_init$15)
    000051de RFCC26XX_singleMode.obj (.text:rf_init$15)
    ti_sysbios_knl_Swi_Params__init__S $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_Params__init__S
    1001c1cd 0000bb04 00002966 I2CCC26XX.obj (.text:I2CCC26XX_open)
    0000336e PINCC26XX.obj (.text:PIN_init)
    00005188 RFCC26XX_singleMode.obj (.text:rf_init$15)
    000051ce RFCC26XX_singleMode.obj (.text:rf_init$15)
    ti_sysbios_family_arm_m3_Hwi_construct $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_construct
    1001af29 0000bb0c 0000295a I2CCC26XX.obj (.text:I2CCC26XX_open)
    00003362 PINCC26XX.obj (.text:PIN_init)
    000051c2 RFCC26XX_singleMode.obj (.text:rf_init$15)
    00005202 RFCC26XX_singleMode.obj (.text:rf_init$15)
    00005a32 sensortag_hum.obj (.text:pressure_sensor_reading)
    0000768c drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
    00007d42 : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_open)
    ti_sysbios_family_arm_m3_Hwi_Params__init__S $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_Params__init__S
    1001c13d 0000bb14 00002942 I2CCC26XX.obj (.text:I2CCC26XX_open)
    0000334c PINCC26XX.obj (.text:PIN_init)
    000051a8 RFCC26XX_singleMode.obj (.text:rf_init$15)
    000051ea RFCC26XX_singleMode.obj (.text:rf_init$15)
    00005a1c sensortag_hum.obj (.text:pressure_sensor_reading)
    00007d2c drivers_cc26xxware.aem3 : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_open)
    0000969c icall.obj (.text:ICall_primRegisterISR$20)
    000096d0 icall.obj (.text:ICall_primRegisterISR_Ext$20)
    ti_sysbios_knl_Task_sleep__E $Tramp$TT$L$PI$$ti_sysbios_knl_Task_sleep__E
    1001a96d 0000bb1c 000024ee sensortag.obj (.text:SensorTag_init$0)
    000046c8 sensortag_bar.obj (.text:Range_Sensor_Read)
    000050d2 sensortag_bar.obj (.text:VL53L0x_readRangeSingleMillimeters)
    00005288 sensortag_hum.obj (.text:sensorTaskFxn$3)
    00005322 sensortag_hum.obj (.text:sensorTaskFxn$3)
    00005460 sensortag_bar.obj (.text:sensorTaskFxn$1)
    00005488 sensortag_bar.obj (.text:sensorTaskFxn$1)
    000054e6 sensortag_bar.obj (.text:sensorTaskFxn$1)
    00008b70 sensortag_io.obj (.text:SensorTagIO_blinkLed)
    00008b80 sensortag_io.obj (.text:SensorTagIO_blinkLed)
    ti_sysbios_knl_Task_restore__E $Tramp$TT$L$PI$$ti_sysbios_knl_Task_restore__E
    1001ba49 0000bb24 0000248c drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
    00007546 icall.obj (.text:ICall_createRemoteTasks)
    0000b244 icall.obj (.text:ICall_leaveCSImpl)
    ti_sysbios_knl_Swi_restore__E $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_restore__E
    1001b5e1 0000bb2c 00002482 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
    0000352a RFCC26XX_singleMode.obj (.text:abortCmd$15)
    00006cc4 RFCC26XX_singleMode.obj (.text:RF_pendCmd)
    00006cf0 RFCC26XX_singleMode.obj (.text:RF_pendCmd)
    00006d0c RFCC26XX_singleMode.obj (.text:RF_pendCmd)
    ti_sysbios_knl_Swi_disable__E $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_disable__E
    1001c0d5 0000bb34 000022de drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
    00003508 RFCC26XX_singleMode.obj (.text:abortCmd$15)
    00006cb2 RFCC26XX_singleMode.obj (.text:RF_pendCmd)
    00009d0a app_ble_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 0000bb3c 000022c6 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
    000074fa icall.obj (.text:ICall_createRemoteTasks)
    00009d0e app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
    0000adf4 icall.obj (.text:ICall_enterCSImpl)
    0000b600 icall.obj (.text:ICall_primDisableMInt$20)
    ti_sysbios_knl_Semaphore_post__E $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_post__E
    1001ac41 0000bb44 00001d6c I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    000035ce drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_write)
    00003700 : NVSCC26XX.oem3 (.text:NVSCC26XX_write)
    00005070 icall.obj (.text:ICall_primWaitMatch$20)
    000063da PINCC26XX.obj (.text:PIN_open)
    00006598 drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_open)
    00006716 I2CCC26XX.obj (.text:I2CCC26XX_blockingCallback$13)
    00007156 icall.obj (.text:ICall_primSend$20)
    00007940 RFCC26XX_singleMode.obj (.text:fsmPowerDownState$15)
    000084fc RFCC26XX_singleMode.obj (.text:syncCb$15)
    00008afe drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_read)
    0000a248 util.obj (.text:Util_enqueueMsg)
    0000a99e sensortag_hum.obj (.text:adcIsr)
    0000b16e peripheral.obj (.text:gapRole_setEvent$35)
    0000b338 sensortag.obj (.text:SensorTag_clockHandler$0)
    0000b74c icall.obj (.text:ICall_primSignal$20)
    0000b7b8 sensortag_bar.obj (.text:VL53L0XI2cDeselect)
    ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E
    1001b2dd 0000bb4c 00001c36 I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    000059be RFCC26XX_singleMode.obj (.text:fsmPowerUpState$15)
    0000b734 icall.obj (.text:ICall_primEnableInt$20)
    ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E
    1001b299 0000bb54 00001c26 I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    0000b728 icall.obj (.text:ICall_primDisableInt$20)
    ti_sysbios_knl_Semaphore_pend__E $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_pend__E
    1001a0cd 0000bb5c 00001c20 I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    00001c9a I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    000035ae drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_write)
    00004ffc icall.obj (.text:ICall_primWaitMatch$20)
    000052a4 sensortag_hum.obj (.text:sensorTaskFxn$3)
    00005a56 sensortag_hum.obj (.text:pressure_sensor_reading)
    00006368 PINCC26XX.obj (.text:PIN_open)
    0000652e drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_open)
    00006cfc RFCC26XX_singleMode.obj (.text:RF_pendCmd)
    00008274 icall.obj (.text:ICall_primWait$20)
    00008aec drivers_cc26xxware.aem3 : NVSCC26XX.oem3 (.text:NVSCC26XX_read)
    ti_sysbios_knl_Clock_start__E $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_start__E
    1001bfe3 0000bb64 0000159c RFCC26XX_singleMode.obj (.text:fsmActiveState$15)
    00003116 sensortag_tmp.obj (.text:PeopleCount_ClockHandler$6)
    00003b88 drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_doCalibrate)
    00003cb8 RFCC26XX_singleMode.obj (.text:RF_postCmd)
    00004328 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_init)
    00005c74 power_cc26xx_tirtos.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
    000067b6 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
    00006b96 icall.obj (.text:ICall_primSetTimer$20)
    00006de4 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
    000076f8 sensortag_tmp.obj (.text:WashCountCallbackFxn$6)
    00007f0a RFCC26XX_singleMode.obj (.text:decActiveClientCnt$15)
    000080ca drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:configureXOSCHF)
    00008110 RFCC26XX_singleMode.obj (.text:fsmXOSCState$15)
    00009428 util.obj (.text:Util_restartClock)
    0000aa1e rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_stop__E)
    0000b7aa util.obj (.text:Util_startClock)
    ti_sysbios_knl_Clock_setTimeout__E $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_setTimeout__E
    1001c2c1 0000bb6c 00001594 RFCC26XX_singleMode.obj (.text:fsmActiveState$15)
    00003cb0 RFCC26XX_singleMode.obj (.text:RF_postCmd)
    00004322 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_init)
    00005c6e power_cc26xx_tirtos.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
    000067b0 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
    00006b90 icall.obj (.text:ICall_primSetTimer$20)
    00006dde drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
    00007f04 RFCC26XX_singleMode.obj (.text:decActiveClientCnt$15)
    000080c4 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:configureXOSCHF)
    0000810a RFCC26XX_singleMode.obj (.text:fsmXOSCState$15)
    00009422 util.obj (.text:Util_restartClock)
    ti_sysbios_family_arm_m3_Hwi_restoreFxn__E $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_restoreFxn__E
    1001c219 0000bb74 0000155e RFCC26XX_singleMode.obj (.text:fsmActiveState$15)
    000015d2 RFCC26XX_singleMode.obj (.text:fsmActiveState$15)
    00001bfa I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    00001c0c I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    00002904 I2CCC26XX.obj (.text:I2CCC26XX_open)
    00002912 I2CCC26XX.obj (.text:I2CCC26XX_open)
    0000343c RFCC26XX_singleMode.obj (.text:abortCmd$15)
    00003464 RFCC26XX_singleMode.obj (.text:abortCmd$15)
    00003498 RFCC26XX_singleMode.obj (.text:abortCmd$15)
    0000351c RFCC26XX_singleMode.obj (.text:abortCmd$15)
    0000354c RFCC26XX_singleMode.obj (.text:abortCmd$15)
    00003c60 RFCC26XX_singleMode.obj (.text:RF_postCmd)
    00003c92 RFCC26XX_singleMode.obj (.text:RF_postCmd)
    00003cfe RFCC26XX_singleMode.obj (.text:RF_postCmd)
    0000569a drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_releaseDependency)
    00005708 I2CCC26XX.obj (.text:I2CCC26XX_close)
    0000583a drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_setDependency)
    00005afe RFCC26XX_singleMode.obj (.text:swiFxnHw$15)
    00005b1c RFCC26XX_singleMode.obj (.text:swiFxnHw$15)
    00005ba8 RFCC26XX_singleMode.obj (.text:RF_open)
    00005bb6 RFCC26XX_singleMode.obj (.text:RF_open)
    00005d88 PINCC26XX.obj (.text:PINCC26XX_setIoCfg$14)
    000067de drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
    0000686c I2CCC26XX.obj (.text:I2CCC26XX_cancel)
    00006c0e TRNGCC26XX.obj (.text:TRNGCC26XX_getNumber)
    00007076 uart_logs.obj (.text:uartLog_outputFxn)
    0000790a drivers_cc26xxware.aem3 : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_initHw)
    000079d6 uart_logs.obj (.text:uartLog_flush)
    00007b86 RFCC26XX_singleMode.obj (.text:RF_getCurrentTime)
    00007b8e RFCC26XX_singleMode.obj (.text:RF_getCurrentTime)
    00007d0c drivers_cc26xxware.aem3 : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_open)
    00007d18 : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_open)
    00007f10 RFCC26XX_singleMode.obj (.text:decActiveClientCnt$15)
    0000805a drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
    000081ce RFCC26XX_singleMode.obj (.text:ratChanFree$15)
    00008456 RFCC26XX_singleMode.obj (.text:RF_getInfo)
    00008dc8 RFCC26XX_singleMode.obj (.text:RF_getRssi)
    00009210 RFCC26XX_singleMode.obj (.text:postDirImmCmd$15)
    00009224 RFCC26XX_singleMode.obj (.text:postDirImmCmd$15)
    000097e8 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
    00009824 RFCC26XX_singleMode.obj (.text:Q_push$15)
    00009c6c drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_releaseConstraint)
    00009c9c : PowerCC26XX.oem3 (.text:Power_setConstraint)
    00009cc4 : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_setReload)
    0000a452 : PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
    0000a4ee TRNGCC26XX.obj (.text:TRNGCC26XX_init)
    0000a634 drivers_cc26xxware.aem3 : List.oem3 (.text:List_put)
    0000a980 : PowerCC26XX.oem3 (.text:Power_unregisterNotify)
    0000acea TRNGCC26XX.obj (.text:TRNGCC26XX_open)
    0000b0f8 RFCC26XX_singleMode.obj (.text:Q_pop$15)
    0000b23c 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 0000bb7c 00001538 RFCC26XX_singleMode.obj (.text:fsmActiveState$15)
    000015be RFCC26XX_singleMode.obj (.text:fsmActiveState$15)
    00001be6 I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    000028f8 I2CCC26XX.obj (.text:I2CCC26XX_open)
    000033dc RFCC26XX_singleMode.obj (.text:abortCmd$15)
    00003bbc RFCC26XX_singleMode.obj (.text:RF_postCmd)
    00003c74 RFCC26XX_singleMode.obj (.text:RF_postCmd)
    000055e6 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_releaseDependency)
    00005700 I2CCC26XX.obj (.text:I2CCC26XX_close)
    0000578a drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_setDependency)
    00005aae RFCC26XX_singleMode.obj (.text:swiFxnHw$15)
    00005ba0 RFCC26XX_singleMode.obj (.text:RF_open)
    00005d68 PINCC26XX.obj (.text:PINCC26XX_setIoCfg$14)
    00006768 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
    00006804 I2CCC26XX.obj (.text:I2CCC26XX_cancel)
    00006baa TRNGCC26XX.obj (.text:TRNGCC26XX_getNumber)
    00007012 uart_logs.obj (.text:uartLog_outputFxn)
    000078c6 drivers_cc26xxware.aem3 : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_initHw)
    0000799e uart_logs.obj (.text:uartLog_flush)
    00007b76 RFCC26XX_singleMode.obj (.text:RF_getCurrentTime)
    00007d02 drivers_cc26xxware.aem3 : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_open)
    00007ec8 RFCC26XX_singleMode.obj (.text:decActiveClientCnt$15)
    00008046 drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
    0000818c RFCC26XX_singleMode.obj (.text:ratChanFree$15)
    0000841a RFCC26XX_singleMode.obj (.text:RF_getInfo)
    00008db8 RFCC26XX_singleMode.obj (.text:RF_getRssi)
    000091f8 RFCC26XX_singleMode.obj (.text:postDirImmCmd$15)
    000097c6 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
    00009806 RFCC26XX_singleMode.obj (.text:Q_push$15)
    0000980e RFCC26XX_singleMode.obj (.text:Q_push$15)
    00009c4c drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_releaseConstraint)
    00009c7c : PowerCC26XX.oem3 (.text:Power_setConstraint)
    00009cac : WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_setReload)
    0000a436 : PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
    0000a4d6 TRNGCC26XX.obj (.text:TRNGCC26XX_init)
    0000a970 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_unregisterNotify)
    0000acde TRNGCC26XX.obj (.text:TRNGCC26XX_open)
    0000adfe icall.obj (.text:ICall_enterCSImpl)
    0000b0ec RFCC26XX_singleMode.obj (.text:Q_pop$15)
    0000b604 icall.obj (.text:ICall_primDisableMInt$20)
    0000b97e tirtosport.aem3 : HwiP_tirtos.oem3 (.text:HwiP_disable)
    ti_sysbios_knl_Swi_post__E $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_post__E
    1001b321 0000bb84 00000638 I2CCC26XX.obj (.text:I2CCC26XX_hwiFxn$13)
    00000a02 I2CCC26XX.obj (.text:I2CCC26XX_hwiFxn$13)
    00001d66 I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    00002f6e I2CCC26XX.obj (.text:I2CCC26XX_swiFxn$13)
    0000b1ec rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Swi_or__E)
    0000b3fe app_ble_pem3.oem3 (.text:ti_sysbios_knl_Clock_doTick__I)

    [58 trampolines]
    [296 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
    10015229 ATOMICPATTERN
    0000a82d Adc_Init
    10016c29 AddRoundKeySubBytes_Sw
    10018a19 AesCcm_authEncrypt_Sw
    10018a35 AesCcm_decryptAuth_Sw
    10018b09 AesCcm_getNumBlocks_Sw
    10018ac5 Aes_decrypt_Sw
    10018a99 Aes_encrypt_Sw
    0000b209 AssertHandler
    0000d800 BoardGpioInitTable
    0000741d Board_writeString
    00007489 Board_writeStringValue
    000081dd C$$EXIT
    20004f2c COMMON_RAM_BASE_ADDR
    10014c01 COMMON_ROM_BASE_ADDR
    10015a6d COPY
    2000061e Check_Count
    00000501 DefaultAssertCback
    0000b28d DevInfo_AddService
    00005f01 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
    000092e5 GAPBondMgr_LinkEst
    0000a63b GAPBondMgr_LinkTerm
    00009f3d GAPBondMgr_Register
    000095bd GAPBondMgr_SetParameter
    0000b465 GAPRole_GetParameter
    00008ce9 GAPRole_SendUpdateParam
    00002069 GAPRole_SetParameter
    0000ae91 GAPRole_StartDevice
    0000aea9 GAPRole_TerminateConnection
    00008d29 GAPRole_createTask
    00008285 GAP_DeviceInit
    0000b475 GAP_EndDiscoverable
    00008ee9 GAP_GetParamValue
    0000b6dd GAP_MakeDiscoverable
    000095f1 GAP_SetParamValue
    0000b6e9 GAP_TerminateAuth
    00008a41 GAP_TerminateLinkReq
    000082d5 GAP_UpdateAdvertisingData
    0000b6f5 GAP_UpdateLinkParamReq
    0000b701 GAP_UpdateLinkParamReqReply
    000000fd GATTServApp_AddService
    0000b41d GATTServApp_FindAttr
    0000a84d GATTServApp_InitCharCfg
    000087b5 GATTServApp_ProcessCCCWriteReq
    00006485 GATTServApp_ProcessCharCfg
    0000b485 GATTServApp_ReadCharCfg
    00008f25 GATTServApp_RegisterService
    0000a2a3 GATTServApp_WriteCharCfg
    0000b5d5 GATT_Indication
    0000add9 GATT_Notification
    0000ab01 GATT_bm_alloc
    0000ab1d GATT_bm_free
    10015141 GETBIT
    10015155 GETDIGIT
    100151a5 GETDIGITL2R
    0000b8ef GGS_AddService
    0000b70d GGS_SetParameter
    0000b2a1 HCI_EXT_SetTxPowerCmd
    20001568 HEAPMGR_SIZE
    0000b97f HwiP_disable
    UNDEFED HwiP_restore
    000067f5 I2CCC26XX_cancel
    000056b5 I2CCC26XX_close
    0000b8f5 I2CCC26XX_control
    0000d668 I2CCC26XX_fxnTable
    0000b821 I2CCC26XX_init
    000028e9 I2CCC26XX_open
    00001bc5 I2CCC26XX_transfer
    0000aec1 I2C_Params_init
    0000d680 I2C_config
    0000d790 I2C_defaultParams
    0000931d I2C_init
    0000a661 I2C_open
    0000b82b I2C_transfer
    00008f61 ICallPlatform_pwrConfigACAction
    0000aed9 ICallPlatform_pwrDispense
    0000b5e3 ICallPlatform_pwrGetTransitionState
    0000b495 ICallPlatform_pwrGetXOSCStartupTime
    0000b5f1 ICallPlatform_pwrIsStableXOSCHF
    00009b29 ICallPlatform_pwrRegisterNotify
    0000aef1 ICallPlatform_pwrRequire
    0000b835 ICallPlatform_pwrSwitchXOSCHF
    00007085 ICallPlatform_pwrUpdActivityCounter
    000074f5 ICall_createRemoteTasks
    20001544 ICall_dispatcher
    0000adf3 ICall_enterCSImpl
    2000154c ICall_enterCriticalSection
    00009f69 ICall_freeImpl
    00009f69 ICall_heapFree
    00007561 ICall_heapInit
    00006a9d ICall_heapMalloc
    0000a2cd ICall_init
    0000b235 ICall_leaveCSImpl
    20001550 ICall_leaveCriticalSection
    0000b8fb ICall_mallocImpl
    000096f5 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
    0000a3bd Io_addService
    0000b2b5 Io_getParameter
    0000b2c9 Io_registerAppCBs
    00009729 Io_setParameter
    100154f5 JACADD
    20004fe8 LEN
    100158ac LUTC
    100158dc LUTINCI
    100158f4 LUTJ
    1001588c LUTOPCODE
    10015894 LUTOPSIGN
    100158c4 LUTSE
    1001596c LUTSTATE
    0000b849 List_empty
    0000b983 List_head
    0000b987 List_next
    0000a615 List_put
    0000ae27 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
    0000a3e5 NOROM_AONBatMonTemperatureGetDegC
    0000b2dd NOROM_AONRTCCurrent64BitValueGet
    0000afc9 NOROM_AONRTCCurrentCompareValueGet
    000060e9 NOROM_AUXADCDisable
    000062bd NOROM_AUXADCEnableSync
    0000b4c5 NOROM_AUXADCReadFifo
    0000b755 NOROM_CPUcpsid
    0000b761 NOROM_CPUcpsie
    0000b901 NOROM_CPUdelay
    00008849 NOROM_ChipInfo_GetChipFamily
    0000733d NOROM_ChipInfo_GetHwRevision
    0000afe1 NOROM_ChipInfo_GetPackageType
    00008d69 NOROM_DDI16BitfieldRead
    00008891 NOROM_DDI16BitfieldWrite
    0000975d NOROM_DDI32RegWrite
    0000ab8d NOROM_FlashProgram
    0000aba9 NOROM_FlashSectorErase
    0000abc5 NOROM_OSCClockSourceGet
    000085ed NOROM_OSCClockSourceSet
    00007db1 NOROM_OSCHF_AttemptToSwitchToXosc
    0000687d NOROM_OSCHF_GetStartupTime
    00009791 NOROM_OSCHF_SwitchToRcOscTurnOffXosc
    0000aff9 NOROM_OSCHF_TurnOnXosc
    00008f9d NOROM_OSC_HPOSCRelativeFrequencyOffsetGet
    0000b011 NOROM_RFCCpeIntGetAndClear
    0000a90d NOROM_RFCDoorbellSendTo
    0000a92d NOROM_RFCRfTrimRead
    0000b4d5 NOROM_RFCRfTrimSet
    00008fd9 NOROM_RFCSynthPowerDown
    00006f1d NOROM_SetupAfterColdResetWakeupFromShutDownCfg1
    0000550d NOROM_SetupAfterColdResetWakeupFromShutDownCfg2
    00004119 NOROM_SetupAfterColdResetWakeupFromShutDownCfg3
    0000b029 NOROM_SetupGetTrimForAdcShModeEn
    0000b041 NOROM_SetupGetTrimForAdcShVbufEn
    000075cd NOROM_SetupGetTrimForAmpcompCtrl
    0000b059 NOROM_SetupGetTrimForAmpcompTh1
    0000abe1 NOROM_SetupGetTrimForAmpcompTh2
    000077e9 NOROM_SetupGetTrimForAnabypassValue1
    0000b071 NOROM_SetupGetTrimForDblrLoopFilterResetVoltage
    0000a071 NOROM_SetupGetTrimForRadcExtCfg
    0000b089 NOROM_SetupGetTrimForRcOscLfIBiasTrim
    0000abfd NOROM_SetupGetTrimForRcOscLfRtuneCtuneTrim
    0000a94d NOROM_SetupGetTrimForXoscHfCtl
    0000b4e5 NOROM_SetupGetTrimForXoscHfFastStart
    0000b4f5 NOROM_SetupGetTrimForXoscHfIbiastherm
    0000b0a1 NOROM_SetupGetTrimForXoscLfRegulatorAndCmirrwrRatio
    00009bb9 NOROM_SetupSetAonRtcSubSecInc
    00008375 NOROM_SetupSetCacheModeAccordingToCcfgSetting
    0000b637 NOROM_SetupSignExtendVddrTrimValue
    00005fa5 NOROM_SetupTrimDevice
    00007e0d NOROM_SysCtrlAdjustRechargeAfterPowerDown
    0000b0b9 NOROM_SysCtrlResetSourceGet
    000026e5 NOROM_SysCtrlSetRechargeBeforePowerDown
    00007851 NOROM_SysCtrl_DCDC_VoltageConditionalControl
    00009be9 NOROM_TRNGConfigure
    0000b2f1 NOROM_ThisCodeIsBuiltForCC26xxHwRev22AndLater_HaltIfViolated
    0000b645 NOROM_VIMSModeGet
    00004e9f NVSCC26XX_close
    00008a85 NVSCC26XX_control
    000062bb NVSCC26XX_exit
    0000d5f0 NVSCC26XX_fxnTable
    0000ac19 NVSCC26XX_getAttrs
    0000b505 NVSCC26XX_init
    00006519 NVSCC26XX_open
    00008ac9 NVSCC26XX_read
    00003571 NVSCC26XX_write
    0000d698 NVS_config
    0000d5ef NVS_defaultParams
    0000938d NVS_init
    00009c19 NVS_open
    0000b853 NVS_read
    0000b653 NVS_write
    10014c04 P1_ro
    10019ffe P1_ro_2
    20004f40 P2_rw
    20004f40 P2_s0
    20004fac P2_zi
    0000a40d PINCC26XX_getPinCount
    0000a09d PINCC26XX_setMux
    2000399c PIN_HandleTable
    20003908 PIN_NumPins
    0000aa6b PIN_close
    00003221 PIN_init
    00006355 PIN_open
    0000b907 PIN_registerIntCb
    000083c5 PIN_remove
    0000a0c9 PIN_setConfig
    000093c5 PIN_setOutputValue
    20000619 People_Count
    00007b15 PowerCC26XX_RCOSC_clockFunc
    0000716d PowerCC26XX_auxISR
    00007639 PowerCC26XX_calibrate
    0000d7a0 PowerCC26XX_config
    00003a2d PowerCC26XX_doCalibrate
    0000687d PowerCC26XX_getXoscStartupTime
    00008035 PowerCC26XX_initiateCalibration
    000097c5 PowerCC26XX_isStableXOSC_HF
    20001434 PowerCC26XX_module
    00005c31 PowerCC26XX_standbyPolicy
    0000a435 PowerCC26XX_switchXOSC_HF
    0000b76d Power_getConstraintMask
    0000b779 Power_getDependencyCount
    0000aa89 Power_getTransitionLatency
    0000b785 Power_getTransitionState
    0000b0d1 Power_idleFunc
    00004249 Power_init
    0000a45d Power_registerNotify
    00009c49 Power_releaseConstraint
    000055e1 Power_releaseDependency
    00009c79 Power_setConstraint
    00005785 Power_setDependency
    000022a5 Power_sleep
    0000a96d Power_unregisterNotify
    2000061c Pulse_Count
    10017158 RCon
    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
    0000b305 RF_Params_init
    000033c9 RF_cancelCmd
    0000b8b7 RF_flushCmd
    0000b42f RF_getCmdOp
    00007b75 RF_getCurrentTime
    00008415 RF_getInfo
    00008da9 RF_getRssi
    00005b71 RF_open
    00006cad RF_pendCmd
    00003bb1 RF_postCmd
    00009015 RF_runCmd
    0000ac6d RF_runDirectCmd
    0000ac89 RF_runImmediateCmd
    00004699 Range_Sensor_Read
    0000b515 RegisterAssertCback
    0000b319 Register_addService
    0000982d Register_getParameter
    0000b101 Register_registerAppCBs
    00009051 Register_setParameter
    00008b95 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
    0000a0f5 SafeHapiAuxAdiSelect
    0000a485 SafeHapiVoid
    10017164 Sbox
    10015215 SelectReg
    0000908d SensorTagBar_createTask
    000090c9 SensorTagHum_createTask
    00008b51 SensorTagIO_blinkLed
    0000aca5 SensorTagIO_init
    00006d2d SensorTagIO_processCharChangeEvt
    00009105 SensorTagIO_reset
    0000b525 SensorTagRegister_init
    00006905 SensorTagRegister_processCharChangeEvt
    000071e1 SensorTagRegister_reset
    0000a6cd SensorTagRegister_update
    0000b85d SensorTag_charValueChangeCB
    00009141 SensorTag_createTask
    0000b341 SensorTag_updateAdvertisingData
    10016c45 ShiftRows_Sw
    20004f88 TMP1
    20004f8c TMP2
    20004f90 TMP3
    20004f94 TMP4
    20004f98 TMP5
    20004f9c TMP6
    0000d89c TRNGCC26XXHWAttrs
    0000d7b0 TRNGCC26XX_config
    00006ba5 TRNGCC26XX_getNumber
    0000a4d5 TRNGCC26XX_init
    0000a1fb TRNGCC26XX_isParamValid
    0000acdd TRNGCC26XX_open
    0000acf9 Three_Clock_stop
    0000b871 UART_write
    00008639 Util_constructClock
    0000b131 Util_constructQueue
    0000ae41 Util_dequeueMsg
    0000a225 Util_enqueueMsg
    0000b535 Util_isActive
    000093fd Util_restartClock
    0000b7a9 Util_startClock
    0000b993 Util_stopClock
    0000b7b5 VL53L0XI2cDeselect
    00007bd5 VL53L0XI2cInit
    00009861 VL53L0XI2cRead
    00009435 VL53L0XI2cWrite
    0000917d VL53L0XI2cWriteRead
    0000b661 VL53L0XI2creadReg
    0000a4fd VL53L0XI2cwriteReg
    000038a1 VL53L0X_init
    00001941 VL53L0xDefaultSettings
    000047a5 VL53L0x_getSpadInfo
    000088d9 VL53L0x_readMulti
    00005081 VL53L0x_readRangeSingleMillimeters
    0000b8bf VL53L0x_setMeasurementTimingBudget
    00008921 VL53L0x_setSignalRateLimit
    00004479 ValidateSensorRead
    000049b5 Validate_SensorRead
    0000b7c1 WDTClose
    000091b9 WDTInit
    20003bf0 WashPinHandle
    20003bf4 WashPinState
    0000b545 WatchdogCC26XX_clear
    00006a9b WatchdogCC26XX_close
    0000b90d WatchdogCC26XX_control
    0000a525 WatchdogCC26XX_convertMsToTicks
    0000d630 WatchdogCC26XX_fxnTable
    0000b8c7 WatchdogCC26XX_init
    00007cf5 WatchdogCC26XX_open
    00009ca9 WatchdogCC26XX_setReload
    0000b555 Watchdog_Params_init
    0000b87b Watchdog_clear
    0000b885 Watchdog_close
    0000d6b0 Watchdog_config
    0000d824 Watchdog_defaultParams
    0000946d Watchdog_init
    00009cd9 Watchdog_open
    0000b88f Watchdog_setReload
    00003d21 WaterFlow_Sensor_Connect
    20000620 Water_Usage
    10015a85 ZERO
    0000d6c8 ZanAppPinTable_FSR
    0000d7c0 ZanAppPinTable_TOF
    0000d80c ZanAppPinTable_WashCnt
    0000b997 ZanConfig_Read
    00006c29 ZanInit
    00000000 __ASM__
    00000073 __ISA__
    00000085 __PLAT__
    20004428 __STACK_END
    00000400 __STACK_SIZE
    20004428 __STACK_TOP
    000000ac __TARG__
    0000dfdc __TI_CINIT_Base
    0000e03c __TI_CINIT_Limit
    0000dfd4 __TI_Handler_Table_Base
    0000dfdc __TI_Handler_Table_Limit
    00006049 __TI_auto_init
    200019a8 __TI_cleanup_ptr
    0000b66f __TI_decompress_none
    0000b919 __TI_decompress_rle24
    200019ac __TI_dtors_ptr
    200019b0 __TI_enable_exit_profile_output
    ffffffff __TI_pprof_out_hndl
    ffffffff __TI_prof_data_size
    ffffffff __TI_prof_data_start
    0000d8f8 __TI_static_base__
    000000d1 __TRDR__
    00006a15 __aeabi_cdrcmple
    00007c35 __aeabi_cfcmpeq
    00007c35 __aeabi_cfcmple
    000089f9 __aeabi_d2iz
    00004bb1 __aeabi_dmul
    000094dd __aeabi_f2iz
    00009965 __aeabi_f2uiz
    00004cb1 __aeabi_fadd
    00006641 __aeabi_fdiv
    00006e29 __aeabi_fmul
    00004cad __aeabi_fsub
    00009515 __aeabi_i2f
    00007d53 __aeabi_idiv0
    0000b191 __aeabi_lmul
    00006ea3 __aeabi_memclr
    00006ea3 __aeabi_memclr4
    00006ea3 __aeabi_memclr8
    00006185 __aeabi_memcpy
    00006185 __aeabi_memcpy4
    00006185 __aeabi_memcpy8
    00006ea5 __aeabi_memset
    00006ea5 __aeabi_memset4
    00006ea5 __aeabi_memset8
    0000a9cd __aeabi_ui2d
    0000a739 __aeabi_ui2f
    00008e29 __aeabi_uidiv
    00008e29 __aeabi_uidivmod
    00002add __aeabi_uldivmod
    ffffffff __binit__
    ffffffff __c_args__
    0001ffa8 __ccfg
    10019ffe __checksum_CommonROM
    10014c00 __checksum_begin_CommonROM
    10019ffd __checksum_end_CommonROM
    0000e0ea __checksum_value_CommonROM
    10018ced __exit
    20004028 __stack
    0000b179 _args_main
    00008b95 _c_int00
    200019d4 _lock
    0000b3b9 _nop
    0000b3c1 _register_lock
    0000b3bb _register_unlock
    200019d8 _unlock
    000081e1 abort
    0000a98d adcIsr
    20001a4c appAssertCback
    0000d58e appearanceUUID
    20004fdc aux64
    ffffffff binit
    20000700 buffer
    0000d58a charAggFormatUUID
    0000d582 charExtPropsUUID
    0000d588 charFormatUUID
    0000d584 charUserDescUUID
    0000d576 characterUUID
    0000d578 clientCharCfgUUID
    0000871d copy_in
    0000d7fe devInfo11073CertUUID
    0000d818 devInfoCBs
    0000d89a devInfoFirmwareRevUUID
    0000d8e0 devInfoHardwareRevUUID
    0000d8e2 devInfoMfrNameUUID
    0000d8e4 devInfoModelNumberUUID
    0000d8e6 devInfoPnpIdUUID
    0000d8e8 devInfoSerialNumberUUID
    0000d8ea devInfoServUUID
    0000d8ec devInfoSoftwareRevUUID
    0000d8ee devInfoSystemIdUUID
    0000d58c deviceNameUUID
    0000b261 driverTable_fnSpinlock
    20003c64 driverlib_release_0_46593
    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
    000081e9 exit
    0000d59a extReportRefUUID
    00001e29 flash_local_clear_wash_water_data
    20000622 flowMilliLitres
    20000630 flowRate
    20000634 flowRatePerMinute
    20004fcc fwInfoCmd
    20003104 g_SensorValue
    20000208 gapProfileState
    20000e24 gapRoleTask
    20000e74 gapRoleTaskStack
    0000b161 gapRole_clockHandler
    0000d57a gapServiceUUID
    0000d57c gattServiceUUID
    20003414 gl_SensorValue
    20003be8 hGpioPin
    20003418 hSem
    20003bec hSensorPin
    20003704 hWDT
    20004028 heapEnd
    20003c65 heapStart
    20003440 hwi
    0000d6e0 i2cCC26xxHWAttrs
    20003a18 i2cCC26xxObjects
    20004f58 inPointX
    20004f5c inPointY
    20004f54 inScalar
    0000d580 includeUUID
    0000d830 ioCBs
    0000d720 ioConfUUID
    0000d730 ioDataUUID
    0000d740 ioServUUID
    200030f6 io_timeout
    20003424 isem
    200019b4 lastAppOpcodeSent
    20000d10 linkDBNumConns
    000094a5 linkDB_NumConns
    10016551 mADD
    10015bd5 mINVK
    10015f81 mMULT
    10016749 mOUT
    10015a9d mSET
    1001664d mSUB
    00007f21 main
    20001a58 main_func_sp
    0000b67d makeuint16
    10018949 mbCmdAckIsr
    1001895d mbCpe0Isr
    10018985 mbCpe1Isr
    100189e5 mbHwIsr
    200030fc measurement_timing_budget_us
    0000a80b memcmp
    00006185 memcpy
    00006eab memset
    UNDEFED millis
    20001a70 myCopyBlock
    0000d7d0 nvsCC26xxHWAttrs
    20003c5c nvsCC26xxObjects
    0000ad69 openTRNG
    000098c9 osal_snv_read
    000098fd osal_snv_write
    20004f60 outPointX
    20004f64 outPointY
    20004ffc pSspAesEncrypt_Sw
    0000d594 periConnParamUUID
    0000d590 periPrivacyFlagUUID
    200019b8 pfnBMAlloc
    200019bc pfnBMFree
    000059e9 pressure_sensor_reading
    0000d574 primaryServiceUUID
    0000b7d9 publish_data
    0000b7e5 publish_waterusage_data
    0000b9a3 publish_waterusage_data2
    20004fac ratChanInfo
    0000d592 reconnectAddrUUID
    0000d59c reportRefUUID
    0000d418 resourceDB
    0000d464 rfDriverTable
    2000173c rfRegTbl
    20003c00 sSensorPin
    0000d57e secondaryServiceUUID
    20000209 selfEntityMain
    20000214 sem
    2000311c sensor_data
    0000d586 servCharCfgUUID
    0000d596 serviceChangedUUID
    2000341c singleSample
    10016d29 sspAesDecrypt_Sw
    10016af5 sspAesEncryptBasic_Sw
    10016a99 sspAesEncryptKeyExp_Sw
    10016979 sspAesEncrypt_Sw
    10016985 sspKeyExpansion_Sw
    10016975 ssp_KeyInit_Sw
    20000628 status
    20000618 status1
    200030f0 stop_variable
    2000062c strSize
    0000b3cd 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__
    00009d09 ti_sysbios_BIOS_atExitFunc__I
    0000b277 ti_sysbios_BIOS_exitFunc__I
    1001c035 ti_sysbios_BIOS_exit__E
    1001bff9 ti_sysbios_BIOS_getCpuFreq__E
    0000b7f1 ti_sysbios_BIOS_getThreadType__E
    00008283 ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E
    00008553 ti_sysbios_BIOS_nullFunc__I
    0000a75d ti_sysbios_BIOS_registerRTSLock__I
    0000a781 ti_sysbios_BIOS_removeRTSLock__I
    0000a9ed ti_sysbios_BIOS_rtsLock__I
    0000b1c1 ti_sysbios_BIOS_rtsUnlock__I
    1001c045 ti_sysbios_BIOS_setThreadType__E
    00009d39 ti_sysbios_BIOS_startFunc__I
    1001c055 ti_sysbios_BIOS_start__E
    0000b0b9 ti_sysbios_family_arm_cc26xx_Boot_getBootReason__E
    00005fa5 ti_sysbios_family_arm_cc26xx_Boot_trimDevice
    00000502 ti_sysbios_family_arm_cc26xx_Timer_Module__id__C
    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
    200017d8 ti_sysbios_family_arm_cc26xx_Timer_Object__table__V
    0000ad85 ti_sysbios_family_arm_cc26xx_Timer_dynamicStub__E
    0000b9a7 ti_sysbios_family_arm_cc26xx_Timer_getCount64__E
    0000954d ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E
    1001c251 ti_sysbios_family_arm_cc26xx_Timer_getExpiredTicks__E
    0000a59d ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E
    1001c255 ti_sysbios_family_arm_cc26xx_Timer_getPeriod__E
    00009d69 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
    00009ac7 ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E
    1001c259 ti_sysbios_family_arm_cc26xx_Timer_setPeriod__E
    00009d99 ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I
    000079f1 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
    0000b6c3 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
    20001a6a ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A
    20001a5c ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A
    20001a60 ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A
    00000506 ti_sysbios_family_arm_m3_Hwi_Module__id__C
    200019e4 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
    20001968 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
    20003af8 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
    0000b575 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
    0000b979 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
    200019ec 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
    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
    200019f4 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
    20001820 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__
    0000b575 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
    200019fc 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
    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
    0000b575 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
    20002a70 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
    20001a04 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
    20001980 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
    20001a0c 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
    20001948 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
    0000b3f5 ti_sysbios_knl_Clock_doTick__I
    0000a14d ti_sysbios_knl_Clock_getTicksUntilInterrupt__E
    1001b6d9 ti_sysbios_knl_Clock_getTicks__E
    1001c191 ti_sysbios_knl_Clock_getTimerHandle__E
    0000b9ab 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
    0000aa0d ti_sysbios_knl_Clock_stop__E
    00000510 ti_sysbios_knl_Clock_tickMode__C
    0000d8a4 ti_sysbios_knl_Clock_tickPeriod__C
    0000d8a8 ti_sysbios_knl_Clock_triggerClock__C
    000087ff ti_sysbios_knl_Clock_triggerFunc__I
    1001a80d ti_sysbios_knl_Clock_walkQueueDynamic__E
    000063ed ti_sysbios_knl_Clock_workFuncDynamic__E
    1001a885 ti_sysbios_knl_Clock_workFunc__E
    0000d88c 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
    20001a14 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
    20001a1c 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
    20001a24 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
    20001888 ti_sysbios_knl_Swi_Module_State_0_readyQ__A
    20001a2c 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
    200018b8 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
    0000b7fd ti_sysbios_knl_Swi_getTrigger__E
    000004e4 ti_sysbios_knl_Swi_numPriorities__C
    0000b1d9 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
    20003708 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
    20001a64 ti_sysbios_knl_Task_Module_State_0_idleTask__A
    200018e8 ti_sysbios_knl_Task_Module_State_0_readyQ__A
    000005e8 ti_sysbios_knl_Task_Module_State_inactiveQ__O
    20001a34 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
    2000178c 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
    00008ce7 ti_sysbios_rom_cortexm_cc26xx_CC26xx_badRomRevision__E
    0000b1f1 ti_sysbios_rom_cortexm_cc26xx_CC26xx_checkRevision__E
    1001ca9b ti_sysbios_rom_cortexm_cc26xx_CC26xx_getRevision__E
    200030f4 timeout_start_ms
    20003c60 trngCC26XXObjects
    0000d848 trngDriverTable
    0000d5c8 txPowerTable
    0000d894 txPwrTbl
    00007989 uartLog_flush
    0000700d uartLog_outputFxn
    20001918 user0Cfg
    0000a179 utilExtractUuid16
    0000d598 validRangeUUID
    0000d854 watchdogCC26XXHwAttrs
    20003bc0 watchdogCC26XXObjects
    20000624 water_usage1
    0000b409 wdtCallback
    0000b585 writeReg
    20003410 write_value
    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
    0000d8ac xdc_runtime_ILogger_Interface__BASE__C
    00000538 xdc_runtime_IModule_Interface__BASE__C
    0000d8b0 xdc_runtime_Log_L_info__C
    0000adbd xdc_runtime_LoggerCallback_Instance_init__E
    0000d540 xdc_runtime_LoggerCallback_Module__FXNS__C
    20001a3c xdc_runtime_LoggerCallback_Module__root__V
    00008e69 xdc_runtime_LoggerCallback_Module_startup__E
    0000d610 xdc_runtime_LoggerCallback_Object__DESC__C
    0000d64c xdc_runtime_LoggerCallback_Object__PARAMS__C
    0000d8b4 xdc_runtime_LoggerCallback_Object__count__C
    00009dc9 xdc_runtime_LoggerCallback_Object__create__S
    0000b595 xdc_runtime_LoggerCallback_Object__get__S
    20001998 xdc_runtime_LoggerCallback_Object__table__V
    0000d8b8 xdc_runtime_LoggerCallback_createInstFxn__C
    0000b9af xdc_runtime_LoggerCallback_defaultCreate
    0000b899 xdc_runtime_LoggerCallback_disable__E
    0000b8a3 xdc_runtime_LoggerCallback_enable__E
    0000d8bc xdc_runtime_LoggerCallback_outputFxn__C
    0000a5c5 xdc_runtime_LoggerCallback_write0__E
    0000a5ed xdc_runtime_LoggerCallback_write1__E
    0000a1a5 xdc_runtime_LoggerCallback_write2__E
    00009999 xdc_runtime_LoggerCallback_write4__E
    00008c1d 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
    0000d8f2 xdc_runtime_Main_Module__loggerDefined__C
    0000d8c0 xdc_runtime_Main_Module__loggerFxn2__C
    0000d8c4 xdc_runtime_Main_Module__loggerFxn4__C
    0000d8c8 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
    20001a44 xdc_runtime_Registry_Module__state__V
    0000aa2d 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
    0000b441 xdc_runtime_Startup_exec__I
    0000d860 xdc_runtime_Startup_firstFxns__A
    00000514 xdc_runtime_Startup_firstFxns__C
    00007f7d xdc_runtime_Startup_getState__I
    0000051c xdc_runtime_Startup_lastFxns__C
    00000550 xdc_runtime_Startup_maxPasses__C
    0000b809 xdc_runtime_Startup_reset__I
    0000b815 xdc_runtime_Startup_rtsDone__E
    0000d70c xdc_runtime_Startup_sfxnRts__A
    00000554 xdc_runtime_Startup_sfxnRts__C
    0000d5a0 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
    00008ee7 xdc_runtime_SysCallback_defaultAbort
    000095bb xdc_runtime_SysCallback_defaultExit
    0000a2cb xdc_runtime_SysCallback_defaultPutch
    0000b9b3 xdc_runtime_SysCallback_defaultReady
    00000564 xdc_runtime_SysCallback_exitFxn__C
    1001c821 xdc_runtime_SysCallback_exit__E
    0000d8cc xdc_runtime_SysCallback_putchFxn__C
    0000b5a5 xdc_runtime_SysCallback_putch__E
    0000d8d0 xdc_runtime_SysCallback_readyFxn__C
    0000b5b5 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
    0000b5a5 xdc_runtime_System_SupportProxy_putch__E
    0000b5b5 xdc_runtime_System_SupportProxy_ready__E
    00000568 xdc_runtime_System_abortFxn__C
    1001c899 xdc_runtime_System_abortSpin__E
    000081e1 xdc_runtime_System_abortStd__E
    1001c749 xdc_runtime_System_abort__E
    1001c681 xdc_runtime_System_atexit__E
    00001009 xdc_runtime_System_doPrint__I
    0000056c xdc_runtime_System_exitFxn__C
    1001c89b xdc_runtime_System_exitSpin__E
    000081e9 xdc_runtime_System_exitStd__E
    1001c7d1 xdc_runtime_System_exit__E
    0000d8d4 xdc_runtime_System_extendFxn__C
    000073ad xdc_runtime_System_formatNum__I
    00000570 xdc_runtime_System_maxAtexitHandlers__C
    00004da7 xdc_runtime_System_printfExtend__I
    1001c6b9 xdc_runtime_System_processAtExit__E
    0000a279 xdc_runtime_System_putchar__I
    0000ae75 xdc_runtime_System_snprintf__E
    0000b9b7 xdc_runtime_System_snprintf_va__F
    0000b5c5 xdc_runtime_System_vsnprintf__E
    00000588 xdc_runtime_Text_charCnt__C
    0000bb8c 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
    0000d7e0 xdc_runtime_Text_nodeTab__A
    0000d8d8 xdc_runtime_Text_nodeTab__C
    00009df9 xdc_runtime_Text_printVisFxn__I
    00007fd9 xdc_runtime_Text_putLab__E
    000065ad xdc_runtime_Text_putMod__E
    00006221 xdc_runtime_Text_putSite__E
    0000d8f4 xdc_runtime_Text_registryModsLastId__C
    1001c7e9 xdc_runtime_Text_ropeText__E
    0000d8f6 xdc_runtime_Text_unnamedModsLastId__C
    00008769 xdc_runtime_Text_visitRope2__I
    0000d8dc xdc_runtime_Text_visitRopeFxn__C
    0000b8ad xdc_runtime_Text_visitRope__I
    00008c61 xdc_runtime_Text_xprintf__I
    1001c831 xdc_runtime_Timestamp_SupportProxy_get32__E
    0000b6c3 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
    20003c3c zanConfig_active
    0000d7f0 zanConfig_default


    GLOBAL SYMBOLS: SORTED BY Symbol Address

    address name
    ------- ----
    00000000 __ASM__
    00000000 ti_sysbios_family_arm_m3_Hwi_resetVectors
    00000001 xdc_runtime_Startup__EXECFXN__C
    00000001 xdc_runtime_Startup__RESETFXN__C
    00000073 __ISA__
    00000085 __PLAT__
    000000ac __TARG__
    000000d1 __TRDR__
    000000fd GATTServApp_AddService
    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
    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
    00001009 xdc_runtime_System_doPrint__I
    00001941 VL53L0xDefaultSettings
    00001bc5 I2CCC26XX_transfer
    00001e29 flash_local_clear_wash_water_data
    00002069 GAPRole_SetParameter
    000022a5 Power_sleep
    000026e5 NOROM_SysCtrlSetRechargeBeforePowerDown
    000028e9 I2CCC26XX_open
    00002add __aeabi_uldivmod
    00003221 PIN_init
    000033c9 RF_cancelCmd
    00003571 NVSCC26XX_write
    000038a1 VL53L0X_init
    00003a2d PowerCC26XX_doCalibrate
    00003bb1 RF_postCmd
    00003d21 WaterFlow_Sensor_Connect
    00004119 NOROM_SetupAfterColdResetWakeupFromShutDownCfg3
    00004249 Power_init
    00004479 ValidateSensorRead
    00004699 Range_Sensor_Read
    000047a5 VL53L0x_getSpadInfo
    000049b5 Validate_SensorRead
    00004bb1 __aeabi_dmul
    00004cad __aeabi_fsub
    00004cb1 __aeabi_fadd
    00004da7 xdc_runtime_System_printfExtend__I
    00004e9f NVSCC26XX_close
    00005081 VL53L0x_readRangeSingleMillimeters
    0000550d NOROM_SetupAfterColdResetWakeupFromShutDownCfg2
    000055e1 Power_releaseDependency
    000056b5 I2CCC26XX_close
    00005785 Power_setDependency
    000059e9 pressure_sensor_reading
    00005b71 RF_open
    00005c31 PowerCC26XX_standbyPolicy
    00005f01 DevInfo_SetParameter
    00005fa5 NOROM_SetupTrimDevice
    00005fa5 ti_sysbios_family_arm_cc26xx_Boot_trimDevice
    00006049 __TI_auto_init
    000060e9 NOROM_AUXADCDisable
    00006185 __aeabi_memcpy
    00006185 __aeabi_memcpy4
    00006185 __aeabi_memcpy8
    00006185 memcpy
    00006221 xdc_runtime_Text_putSite__E
    000062bb NVSCC26XX_exit
    000062bd NOROM_AUXADCEnableSync
    00006355 PIN_open
    000063ed ti_sysbios_knl_Clock_workFuncDynamic__E
    00006485 GATTServApp_ProcessCharCfg
    00006519 NVSCC26XX_open
    000065ad xdc_runtime_Text_putMod__E
    00006641 __aeabi_fdiv
    000067f5 I2CCC26XX_cancel
    0000687d NOROM_OSCHF_GetStartupTime
    0000687d PowerCC26XX_getXoscStartupTime
    00006905 SensorTagRegister_processCharChangeEvt
    00006a15 __aeabi_cdrcmple
    00006a9b WatchdogCC26XX_close
    00006a9d ICall_heapMalloc
    00006ba5 TRNGCC26XX_getNumber
    00006c29 ZanInit
    00006cad RF_pendCmd
    00006d2d SensorTagIO_processCharChangeEvt
    00006e29 __aeabi_fmul
    00006ea3 __aeabi_memclr
    00006ea3 __aeabi_memclr4
    00006ea3 __aeabi_memclr8
    00006ea5 __aeabi_memset
    00006ea5 __aeabi_memset4
    00006ea5 __aeabi_memset8
    00006eab memset
    00006f1d NOROM_SetupAfterColdResetWakeupFromShutDownCfg1
    0000700d uartLog_outputFxn
    00007085 ICallPlatform_pwrUpdActivityCounter
    0000716d PowerCC26XX_auxISR
    000071e1 SensorTagRegister_reset
    0000733d NOROM_ChipInfo_GetHwRevision
    000073ad xdc_runtime_System_formatNum__I
    0000741d Board_writeString
    00007489 Board_writeStringValue
    000074f5 ICall_createRemoteTasks
    00007561 ICall_heapInit
    000075cd NOROM_SetupGetTrimForAmpcompCtrl
    00007639 PowerCC26XX_calibrate
    000077e9 NOROM_SetupGetTrimForAnabypassValue1
    00007851 NOROM_SysCtrl_DCDC_VoltageConditionalControl
    00007989 uartLog_flush
    000079f1 ti_sysbios_family_arm_cc26xx_Timer_start__E
    00007b15 PowerCC26XX_RCOSC_clockFunc
    00007b75 RF_getCurrentTime
    00007bd5 VL53L0XI2cInit
    00007c35 __aeabi_cfcmpeq
    00007c35 __aeabi_cfcmple
    00007cf5 WatchdogCC26XX_open
    00007d53 __aeabi_idiv0
    00007db1 NOROM_OSCHF_AttemptToSwitchToXosc
    00007e0d NOROM_SysCtrlAdjustRechargeAfterPowerDown
    00007f21 main
    00007f7d xdc_runtime_Startup_getState__I
    00007fd9 xdc_runtime_Text_putLab__E
    00008035 PowerCC26XX_initiateCalibration
    000081dd C$$EXIT
    000081e1 abort
    000081e1 xdc_runtime_System_abortStd__E
    000081e9 exit
    000081e9 xdc_runtime_System_exitStd__E
    00008283 ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E
    00008285 GAP_DeviceInit
    000082d5 GAP_UpdateAdvertisingData
    00008375 NOROM_SetupSetCacheModeAccordingToCcfgSetting
    000083c5 PIN_remove
    00008415 RF_getInfo
    00008553 ti_sysbios_BIOS_nullFunc__I
    000085ed NOROM_OSCClockSourceSet
    00008639 Util_constructClock
    0000871d copy_in
    00008769 xdc_runtime_Text_visitRope2__I
    000087b5 GATTServApp_ProcessCCCWriteReq
    000087ff ti_sysbios_knl_Clock_triggerFunc__I
    00008849 NOROM_ChipInfo_GetChipFamily
    00008891 NOROM_DDI16BitfieldWrite
    000088d9 VL53L0x_readMulti
    00008921 VL53L0x_setSignalRateLimit
    000089f9 __aeabi_d2iz
    00008a41 GAP_TerminateLinkReq
    00008a85 NVSCC26XX_control
    00008ac9 NVSCC26XX_read
    00008b51 SensorTagIO_blinkLed
    00008b95 ResetISR
    00008b95 _c_int00
    00008c1d xdc_runtime_LoggerCallback_write8__E
    00008c61 xdc_runtime_Text_xprintf__I
    00008ce7 ti_sysbios_rom_cortexm_cc26xx_CC26xx_badRomRevision__E
    00008ce9 GAPRole_SendUpdateParam
    00008d29 GAPRole_createTask
    00008d69 NOROM_DDI16BitfieldRead
    00008da9 RF_getRssi
    00008e29 __aeabi_uidiv
    00008e29 __aeabi_uidivmod
    00008e69 xdc_runtime_LoggerCallback_Module_startup__E
    00008ee7 xdc_runtime_SysCallback_defaultAbort
    00008ee9 GAP_GetParamValue
    00008f25 GATTServApp_RegisterService
    00008f61 ICallPlatform_pwrConfigACAction
    00008f9d NOROM_OSC_HPOSCRelativeFrequencyOffsetGet
    00008fd9 NOROM_RFCSynthPowerDown
    00009015 RF_runCmd
    00009051 Register_setParameter
    0000908d SensorTagBar_createTask
    000090c9 SensorTagHum_createTask
    00009105 SensorTagIO_reset
    00009141 SensorTag_createTask
    0000917d VL53L0XI2cWriteRead
    000091b9 WDTInit
    000092e5 GAPBondMgr_LinkEst
    0000931d I2C_init
    0000938d NVS_init
    000093c5 PIN_setOutputValue
    000093fd Util_restartClock
    00009435 VL53L0XI2cWrite
    0000946d Watchdog_init
    000094a5 linkDB_NumConns
    000094dd __aeabi_f2iz
    00009515 __aeabi_i2f
    0000954d ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E
    000095bb xdc_runtime_SysCallback_defaultExit
    000095bd GAPBondMgr_SetParameter
    000095f1 GAP_SetParamValue
    000096f5 ICall_searchServiceEntity
    00009729 Io_setParameter
    0000975d NOROM_DDI32RegWrite
    00009791 NOROM_OSCHF_SwitchToRcOscTurnOffXosc
    000097c5 PowerCC26XX_isStableXOSC_HF
    0000982d Register_getParameter
    00009861 VL53L0XI2cRead
    000098c9 osal_snv_read
    000098fd osal_snv_write
    00009965 __aeabi_f2uiz
    00009999 xdc_runtime_LoggerCallback_write4__E
    00009ac7 ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E
    00009b29 ICallPlatform_pwrRegisterNotify
    00009bb9 NOROM_SetupSetAonRtcSubSecInc
    00009be9 NOROM_TRNGConfigure
    00009c19 NVS_open
    00009c49 Power_releaseConstraint
    00009c79 Power_setConstraint
    00009ca9 WatchdogCC26XX_setReload
    00009cd9 Watchdog_open
    00009d09 ti_sysbios_BIOS_atExitFunc__I
    00009d39 ti_sysbios_BIOS_startFunc__I
    00009d69 ti_sysbios_family_arm_cc26xx_Timer_initDevice__I
    00009d99 ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I
    00009dc9 xdc_runtime_LoggerCallback_Object__create__S
    00009df9 xdc_runtime_Text_printVisFxn__I
    00009f3d GAPBondMgr_Register
    00009f69 ICall_freeImpl
    00009f69 ICall_heapFree
    0000a071 NOROM_SetupGetTrimForRadcExtCfg
    0000a09d PINCC26XX_setMux
    0000a0c9 PIN_setConfig
    0000a0f5 SafeHapiAuxAdiSelect
    0000a14d ti_sysbios_knl_Clock_getTicksUntilInterrupt__E
    0000a179 utilExtractUuid16
    0000a1a5 xdc_runtime_LoggerCallback_write2__E
    0000a1fb TRNGCC26XX_isParamValid
    0000a225 Util_enqueueMsg
    0000a279 xdc_runtime_System_putchar__I
    0000a2a3 GATTServApp_WriteCharCfg
    0000a2cb xdc_runtime_SysCallback_defaultPutch
    0000a2cd ICall_init
    0000a3bd Io_addService
    0000a3e5 NOROM_AONBatMonTemperatureGetDegC
    0000a40d PINCC26XX_getPinCount
    0000a435 PowerCC26XX_switchXOSC_HF
    0000a45d Power_registerNotify
    0000a485 SafeHapiVoid
    0000a4d5 TRNGCC26XX_init
    0000a4fd VL53L0XI2cwriteReg
    0000a525 WatchdogCC26XX_convertMsToTicks
    0000a59d ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E
    0000a5c5 xdc_runtime_LoggerCallback_write0__E
    0000a5ed xdc_runtime_LoggerCallback_write1__E
    0000a615 List_put
    0000a63b GAPBondMgr_LinkTerm
    0000a661 I2C_open
    0000a6cd SensorTagRegister_update
    0000a739 __aeabi_ui2f
    0000a75d ti_sysbios_BIOS_registerRTSLock__I
    0000a781 ti_sysbios_BIOS_removeRTSLock__I
    0000a80b memcmp
    0000a82d Adc_Init
    0000a84d GATTServApp_InitCharCfg
    0000a90d NOROM_RFCDoorbellSendTo
    0000a92d NOROM_RFCRfTrimRead
    0000a94d NOROM_SetupGetTrimForXoscHfCtl
    0000a96d Power_unregisterNotify
    0000a98d adcIsr
    0000a9cd __aeabi_ui2d
    0000a9ed ti_sysbios_BIOS_rtsLock__I
    0000aa0d ti_sysbios_knl_Clock_stop__E
    0000aa2d xdc_runtime_Registry_findById__E
    0000aa6b PIN_close
    0000aa89 Power_getTransitionLatency
    0000ab01 GATT_bm_alloc
    0000ab1d GATT_bm_free
    0000ab8d NOROM_FlashProgram
    0000aba9 NOROM_FlashSectorErase
    0000abc5 NOROM_OSCClockSourceGet
    0000abe1 NOROM_SetupGetTrimForAmpcompTh2
    0000abfd NOROM_SetupGetTrimForRcOscLfRtuneCtuneTrim
    0000ac19 NVSCC26XX_getAttrs
    0000ac6d RF_runDirectCmd
    0000ac89 RF_runImmediateCmd
    0000aca5 SensorTagIO_init
    0000acdd TRNGCC26XX_open
    0000acf9 Three_Clock_stop
    0000ad69 openTRNG
    0000ad85 ti_sysbios_family_arm_cc26xx_Timer_dynamicStub__E
    0000adbd xdc_runtime_LoggerCallback_Instance_init__E
    0000add9 GATT_Notification
    0000adf3 ICall_enterCSImpl
    0000ae27 List_remove
    0000ae41 Util_dequeueMsg
    0000ae75 xdc_runtime_System_snprintf__E
    0000ae91 GAPRole_StartDevice
    0000aea9 GAPRole_TerminateConnection
    0000aec1 I2C_Params_init
    0000aed9 ICallPlatform_pwrDispense
    0000aef1 ICallPlatform_pwrRequire
    0000afc9 NOROM_AONRTCCurrentCompareValueGet
    0000afe1 NOROM_ChipInfo_GetPackageType
    0000aff9 NOROM_OSCHF_TurnOnXosc
    0000b011 NOROM_RFCCpeIntGetAndClear
    0000b029 NOROM_SetupGetTrimForAdcShModeEn
    0000b041 NOROM_SetupGetTrimForAdcShVbufEn
    0000b059 NOROM_SetupGetTrimForAmpcompTh1
    0000b071 NOROM_SetupGetTrimForDblrLoopFilterResetVoltage
    0000b089 NOROM_SetupGetTrimForRcOscLfIBiasTrim
    0000b0a1 NOROM_SetupGetTrimForXoscLfRegulatorAndCmirrwrRatio
    0000b0b9 NOROM_SysCtrlResetSourceGet
    0000b0b9 ti_sysbios_family_arm_cc26xx_Boot_getBootReason__E
    0000b0d1 Power_idleFunc
    0000b101 Register_registerAppCBs
    0000b131 Util_constructQueue
    0000b161 gapRole_clockHandler
    0000b179 _args_main
    0000b191 __aeabi_lmul
    0000b1c1 ti_sysbios_BIOS_rtsUnlock__I
    0000b1d9 ti_sysbios_knl_Swi_or__E
    0000b1f1 ti_sysbios_rom_cortexm_cc26xx_CC26xx_checkRevision__E
    0000b209 AssertHandler
    0000b235 ICall_leaveCSImpl
    0000b261 driverTable_fnSpinlock
    0000b277 ti_sysbios_BIOS_exitFunc__I
    0000b28d DevInfo_AddService
    0000b2a1 HCI_EXT_SetTxPowerCmd
    0000b2b5 Io_getParameter
    0000b2c9 Io_registerAppCBs
    0000b2dd NOROM_AONRTCCurrent64BitValueGet
    0000b2f1 NOROM_ThisCodeIsBuiltForCC26xxHwRev22AndLater_HaltIfViolated
    0000b305 RF_Params_init
    0000b319 Register_addService
    0000b341 SensorTag_updateAdvertisingData
    0000b3b9 _nop
    0000b3bb _register_unlock
    0000b3c1 _register_lock
    0000b3cd strlen
    0000b3f5 ti_sysbios_knl_Clock_doTick__I
    0000b409 wdtCallback
    0000b41d GATTServApp_FindAttr
    0000b42f RF_getCmdOp
    0000b441 xdc_runtime_Startup_exec__I
    0000b465 GAPRole_GetParameter
    0000b475 GAP_EndDiscoverable
    0000b485 GATTServApp_ReadCharCfg
    0000b495 ICallPlatform_pwrGetXOSCStartupTime
    0000b4c5 NOROM_AUXADCReadFifo
    0000b4d5 NOROM_RFCRfTrimSet
    0000b4e5 NOROM_SetupGetTrimForXoscHfFastStart
    0000b4f5 NOROM_SetupGetTrimForXoscHfIbiastherm
    0000b505 NVSCC26XX_init
    0000b515 RegisterAssertCback
    0000b525 SensorTagRegister_init
    0000b535 Util_isActive
    0000b545 WatchdogCC26XX_clear
    0000b555 Watchdog_Params_init
    0000b575 ti_sysbios_family_arm_m3_Hwi_post__E
    0000b575 ti_sysbios_hal_Hwi_HwiProxy_post__E
    0000b575 ti_sysbios_hal_Hwi_post__E
    0000b585 writeReg
    0000b595 xdc_runtime_LoggerCallback_Object__get__S
    0000b5a5 xdc_runtime_SysCallback_putch__E
    0000b5a5 xdc_runtime_System_SupportProxy_putch__E
    0000b5b5 xdc_runtime_SysCallback_ready__E
    0000b5b5 xdc_runtime_System_SupportProxy_ready__E
    0000b5c5 xdc_runtime_System_vsnprintf__E
    0000b5d5 GATT_Indication
    0000b5e3 ICallPlatform_pwrGetTransitionState
    0000b5f1 ICallPlatform_pwrIsStableXOSCHF
    0000b637 NOROM_SetupSignExtendVddrTrimValue
    0000b645 NOROM_VIMSModeGet
    0000b653 NVS_write
    0000b661 VL53L0XI2creadReg
    0000b66f __TI_decompress_none
    0000b67d makeuint16
    0000b6c3 ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E
    0000b6c3 xdc_runtime_Timestamp_SupportProxy_get32__E__mangled__
    0000b6dd GAP_MakeDiscoverable
    0000b6e9 GAP_TerminateAuth
    0000b6f5 GAP_UpdateLinkParamReq
    0000b701 GAP_UpdateLinkParamReqReply
    0000b70d GGS_SetParameter
    0000b755 NOROM_CPUcpsid
    0000b761 NOROM_CPUcpsie
    0000b76d Power_getConstraintMask
    0000b779 Power_getDependencyCount
    0000b785 Power_getTransitionState
    0000b7a9 Util_startClock
    0000b7b5 VL53L0XI2cDeselect
    0000b7c1 WDTClose
    0000b7d9 publish_data
    0000b7e5 publish_waterusage_data
    0000b7f1 ti_sysbios_BIOS_getThreadType__E
    0000b7fd ti_sysbios_knl_Swi_getTrigger__E
    0000b809 xdc_runtime_Startup_reset__I
    0000b815 xdc_runtime_Startup_rtsDone__E
    0000b821 I2CCC26XX_init
    0000b82b I2C_transfer
    0000b835 ICallPlatform_pwrSwitchXOSCHF
    0000b849 List_empty
    0000b853 NVS_read
    0000b85d SensorTag_charValueChangeCB
    0000b871 UART_write
    0000b87b Watchdog_clear
    0000b885 Watchdog_close
    0000b88f Watchdog_setReload
    0000b899 xdc_runtime_LoggerCallback_disable__E
    0000b8a3 xdc_runtime_LoggerCallback_enable__E
    0000b8ad xdc_runtime_Text_visitRope__I
    0000b8b7 RF_flushCmd
    0000b8bf VL53L0x_setMeasurementTimingBudget
    0000b8c7 WatchdogCC26XX_init
    0000b8ef GGS_AddService
    0000b8f5 I2CCC26XX_control
    0000b8fb ICall_mallocImpl
    0000b901 NOROM_CPUdelay
    0000b907 PIN_registerIntCb
    0000b90d WatchdogCC26XX_control
    0000b919 __TI_decompress_rle24
    0000b979 ti_sysbios_family_arm_m3_Hwi_setFunc__E
    0000b97f HwiP_disable
    0000b983 List_head
    0000b987 List_next
    0000b993 Util_stopClock
    0000b997 ZanConfig_Read
    0000b9a3 publish_waterusage_data2
    0000b9a7 ti_sysbios_family_arm_cc26xx_Timer_getCount64__E
    0000b9ab ti_sysbios_knl_Clock_isActive__E
    0000b9af xdc_runtime_LoggerCallback_defaultCreate
    0000b9b3 xdc_runtime_SysCallback_defaultReady
    0000b9b7 xdc_runtime_System_snprintf_va__F
    0000bb8c xdc_runtime_Text_charTab__A
    0000d418 resourceDB
    0000d464 rfDriverTable
    0000d540 xdc_runtime_LoggerCallback_Module__FXNS__C
    0000d574 primaryServiceUUID
    0000d576 characterUUID
    0000d578 clientCharCfgUUID
    0000d57a gapServiceUUID
    0000d57c gattServiceUUID
    0000d57e secondaryServiceUUID
    0000d580 includeUUID
    0000d582 charExtPropsUUID
    0000d584 charUserDescUUID
    0000d586 servCharCfgUUID
    0000d588 charFormatUUID
    0000d58a charAggFormatUUID
    0000d58c deviceNameUUID
    0000d58e appearanceUUID
    0000d590 periPrivacyFlagUUID
    0000d592 reconnectAddrUUID
    0000d594 periConnParamUUID
    0000d596 serviceChangedUUID
    0000d598 validRangeUUID
    0000d59a extReportRefUUID
    0000d59c reportRefUUID
    0000d5a0 xdc_runtime_Startup_sfxnTab__A
    0000d5c8 txPowerTable
    0000d5ef NVS_defaultParams
    0000d5f0 NVSCC26XX_fxnTable
    0000d610 xdc_runtime_LoggerCallback_Object__DESC__C
    0000d630 WatchdogCC26XX_fxnTable
    0000d64c xdc_runtime_LoggerCallback_Object__PARAMS__C
    0000d668 I2CCC26XX_fxnTable
    0000d680 I2C_config
    0000d698 NVS_config
    0000d6b0 Watchdog_config
    0000d6c8 ZanAppPinTable_FSR
    0000d6e0 i2cCC26xxHWAttrs
    0000d70c xdc_runtime_Startup_sfxnRts__A
    0000d720 ioConfUUID
    0000d730 ioDataUUID
    0000d740 ioServUUID
    0000d790 I2C_defaultParams
    0000d7a0 PowerCC26XX_config
    0000d7b0 TRNGCC26XX_config
    0000d7c0 ZanAppPinTable_TOF
    0000d7d0 nvsCC26xxHWAttrs
    0000d7e0 xdc_runtime_Text_nodeTab__A
    0000d7f0 zanConfig_default
    0000d7fe devInfo11073CertUUID
    0000d800 BoardGpioInitTable
    0000d80c ZanAppPinTable_WashCnt
    0000d818 devInfoCBs
    0000d824 Watchdog_defaultParams
    0000d830 ioCBs
    0000d848 trngDriverTable
    0000d854 watchdogCC26XXHwAttrs
    0000d860 xdc_runtime_Startup_firstFxns__A
    0000d88c ti_sysbios_knl_Idle_funcList__A
    0000d894 txPwrTbl
    0000d89a devInfoFirmwareRevUUID
    0000d89c TRNGCC26XXHWAttrs
    0000d8a4 ti_sysbios_knl_Clock_tickPeriod__C
    0000d8a8 ti_sysbios_knl_Clock_triggerClock__C
    0000d8ac xdc_runtime_ILogger_Interface__BASE__C
    0000d8b0 xdc_runtime_Log_L_info__C
    0000d8b4 xdc_runtime_LoggerCallback_Object__count__C
    0000d8b8 xdc_runtime_LoggerCallback_createInstFxn__C
    0000d8bc xdc_runtime_LoggerCallback_outputFxn__C
    0000d8c0 xdc_runtime_Main_Module__loggerFxn2__C
    0000d8c4 xdc_runtime_Main_Module__loggerFxn4__C
    0000d8c8 xdc_runtime_Main_Module__loggerObj__C
    0000d8cc xdc_runtime_SysCallback_putchFxn__C
    0000d8d0 xdc_runtime_SysCallback_readyFxn__C
    0000d8d4 xdc_runtime_System_extendFxn__C
    0000d8d8 xdc_runtime_Text_nodeTab__C
    0000d8dc xdc_runtime_Text_visitRopeFxn__C
    0000d8e0 devInfoHardwareRevUUID
    0000d8e2 devInfoMfrNameUUID
    0000d8e4 devInfoModelNumberUUID
    0000d8e6 devInfoPnpIdUUID
    0000d8e8 devInfoSerialNumberUUID
    0000d8ea devInfoServUUID
    0000d8ec devInfoSoftwareRevUUID
    0000d8ee devInfoSystemIdUUID
    0000d8f2 xdc_runtime_Main_Module__loggerDefined__C
    0000d8f4 xdc_runtime_Text_registryModsLastId__C
    0000d8f6 xdc_runtime_Text_unnamedModsLastId__C
    0000d8f8 __TI_static_base__
    0000dfd4 __TI_Handler_Table_Base
    0000dfdc __TI_CINIT_Base
    0000dfdc __TI_Handler_Table_Limit
    0000e03c __TI_CINIT_Limit
    0000e0ea __checksum_value_CommonROM
    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 gapProfileState
    20000209 selfEntityMain
    20000214 sem
    20000618 status1
    20000619 People_Count
    2000061c Pulse_Count
    2000061e Check_Count
    20000620 Water_Usage
    20000622 flowMilliLitres
    20000624 water_usage1
    20000628 status
    2000062c strSize
    20000630 flowRate
    20000634 flowRatePerMinute
    20000700 buffer
    20000d10 linkDBNumConns
    20000e24 gapRoleTask
    20000e74 gapRoleTaskStack
    20001434 PowerCC26XX_module
    20001544 ICall_dispatcher
    2000154c ICall_enterCriticalSection
    20001550 ICall_leaveCriticalSection
    20001568 HEAPMGR_SIZE
    2000173c rfRegTbl
    2000178c ti_sysbios_knl_Task_Object__table__V
    200017d8 ti_sysbios_family_arm_cc26xx_Timer_Object__table__V
    20001820 ti_sysbios_gates_GateMutex_Object__table__V
    20001888 ti_sysbios_knl_Swi_Module_State_0_readyQ__A
    200018b8 ti_sysbios_knl_Swi_Object__table__V
    200018e8 ti_sysbios_knl_Task_Module_State_0_readyQ__A
    20001918 user0Cfg
    20001948 ti_sysbios_knl_Clock_Object__table__V
    20001968 ti_sysbios_family_arm_m3_Hwi_Object__table__V
    20001980 ti_sysbios_heaps_HeapMem_Object__table__V
    20001998 xdc_runtime_LoggerCallback_Object__table__V
    200019a8 __TI_cleanup_ptr
    200019ac __TI_dtors_ptr
    200019b0 __TI_enable_exit_profile_output
    200019b4 lastAppOpcodeSent
    200019b8 pfnBMAlloc
    200019bc pfnBMFree
    200019d4 _lock
    200019d8 _unlock
    200019e4 ti_sysbios_family_arm_m3_Hwi_Module__root__V
    200019ec ti_sysbios_gates_GateHwi_Module__root__V
    200019f4 ti_sysbios_gates_GateMutex_Module__root__V
    200019fc ti_sysbios_hal_Hwi_Module__root__V
    20001a04 ti_sysbios_heaps_HeapMem_Module__root__V
    20001a0c ti_sysbios_knl_Clock_Module__root__V
    20001a14 ti_sysbios_knl_Mailbox_Module__root__V
    20001a1c ti_sysbios_knl_Queue_Module__root__V
    20001a24 ti_sysbios_knl_Semaphore_Module__root__V
    20001a2c ti_sysbios_knl_Swi_Module__root__V
    20001a34 ti_sysbios_knl_Task_Module__root__V
    20001a3c xdc_runtime_LoggerCallback_Module__root__V
    20001a44 xdc_runtime_Registry_Module__state__V
    20001a4c appAssertCback
    20001a58 main_func_sp
    20001a5c ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A
    20001a60 ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A
    20001a64 ti_sysbios_knl_Task_Module_State_0_idleTask__A
    20001a6a ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A
    20001a70 myCopyBlock
    20002a70 ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A
    200030f0 stop_variable
    200030f4 timeout_start_ms
    200030f6 io_timeout
    200030fc measurement_timing_budget_us
    20003104 g_SensorValue
    2000311c sensor_data
    20003410 write_value
    20003414 gl_SensorValue
    20003418 hSem
    2000341c singleSample
    20003424 isem
    20003440 hwi
    20003704 hWDT
    20003708 ti_sysbios_knl_Task_Instance_State_0_stack__A
    20003908 PIN_NumPins
    2000399c PIN_HandleTable
    20003a18 i2cCC26xxObjects
    20003af8 ti_sysbios_family_arm_m3_Hwi_dispatchTable
    20003bc0 watchdogCC26XXObjects
    20003be8 hGpioPin
    20003bec hSensorPin
    20003bf0 WashPinHandle
    20003bf4 WashPinState
    20003c00 sSensorPin
    20003c3c zanConfig_active
    20003c5c nvsCC26xxObjects
    20003c60 trngCC26XXObjects
    20003c64 driverlib_release_0_46593
    20003c65 heapStart
    20004028 __stack
    20004028 heapEnd
    20004428 __STACK_END
    20004428 __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 __TI_pprof_out_hndl
    ffffffff __TI_prof_data_size
    ffffffff __TI_prof_data_start
    ffffffff __binit__
    ffffffff __c_args__
    ffffffff binit
    UNDEFED HwiP_restore
    UNDEFED SHT$$INIT_ARRAY$$Base
    UNDEFED SHT$$INIT_ARRAY$$Limit
    UNDEFED millis
    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

    [1266 symbols]
  • What you show as the HWAttrs appears to be the enumerations for the NVS region indexes which will be passed to NVS_open().

    I don't see an actual NVS_HWAttrs array defined anywhere in the 5287.CC2650_LAUNCHXL.c file either.

    However, assuming that you do have a valid NVS_HWAttrs and NVS_Config structure defined somewhere, the one NVS region enumeration name shown, "CC2650_LAUNCHXL_NVS1F000", does hint at a potential problem. The last page of flash beginning at 0x1f000 can't safely be used by the NVS driver because any erase operation of that page would wipe out the contents of the CCFG object that is placed at location 0x1ffa8. This will results in completely undefined behavior following (and possibly during) the erase operation. The last safely usable 4K flash page begins at 0x1e000.

    Alan