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.

CCS/CC2640R2F: ROV server exception: "Target memory read failed", the program behaves as expected.

Part Number: CC2640R2F
Other Parts Discussed in Thread: BLE-STACK, CC2640

Tool/software: Code Composer Studio

The platform is a custom design with CC2640R2F. The program is simple_peripheral.

At line 554 in icall.c

task = Task_create(ICall_taskEntry, &params, NULL);

ROV stops to show tasks and reports

Received exception from ROV server:
Target memory read failed at address: 0x20001f38, length: 76
This read is at an INVALID address according to the application's section map. The application is either unitialized or corrupt.


The program works as expected and memory browser doesn't show anything out of the ordinary at 0x20001f38. What can be the reason for ROV server's exception and how do I go about fixing it?

  • Hi,

    What version of TI-RTOS and CCS are you using?

    Todd
  • Hi,

    sorry for the late reply:

    CCS: 7.2.0.00013

    Simplelink cc2640r2 sdk: 1.40.00.45

    SYS/BIOS: 6.51.00.15

    When you ask for TI-RTOS version, are you refering to the SYS/BIOS aka TI-RTOS kernel version? I could not otherwise find it's version (it is somehow completely included in the Simplelink SDK if I understand it correctly).

  • arsenyorlov,
    is that memory address in the memory map? Which section does it belong to? If you look at the map file, you should be able to tell if there are any objects on that address. You can also post the map file, it might contain some hints.
  • I read the section on memory management in BLE-Stack user's guide, but I cannot completely grasp the contents.

    What is a map file? Is it one of the two files - cc26xx_app.cmd and app_ble.cfg - in the TOOLS directory of the example simple_peripheral project that I am using?

    I suspect it is the cc26xx_app.cmd, here it is:

    /*******************************************************************************
     * Memory Sizes
     */
    #define FLASH_BASE   0x00000000
    #define GPRAM_BASE   0x11000000
    #define RAM_BASE     0x20000000
    #define ROM_BASE     0x10000000
    
    #ifdef CC26X0ROM
      #define FLASH_SIZE 0x00020000
      #define GPRAM_SIZE 0x00002000
      #define RAM_SIZE   0x00005000
      #define ROM_SIZE   0x0001C000
    #endif /* CC26X0ROM */
    
    /*******************************************************************************
     * Memory Definitions
     ******************************************************************************/
    
    /*******************************************************************************
     * RAM
     */
    
    #ifdef CC26X0ROM
      #if CC26X0ROM == 2
        #define RESERVED_RAM_SIZE 0x00000C00
      #elif CC26X0ROM == 1
        #define RESERVED_RAM_SIZE 0x00000718
      #endif /* CC26X0ROM */
    #endif /* CC26X0ROM */
    
    #define RAM_START             RAM_BASE
    
    #ifdef ICALL_RAM0_START
      #define RAM_END             (ICALL_RAM0_START - 1)
    #else
      #define RAM_END             (RAM_START + RAM_SIZE - RESERVED_RAM_SIZE - 1)
    #endif /* ICALL_RAM0_START */
    
    /*******************************************************************************
     * Flash
     */
    
    #define FLASH_START                FLASH_BASE
    #define WORD_SIZE                  4
    
    #ifdef CC26X0ROM
      #define PAGE_SIZE                0x1000
    #endif /* CC26X0ROM */
    
    #ifdef PAGE_ALIGN
      #define FLASH_MEM_ALIGN          PAGE_SIZE
    #else
      #define FLASH_MEM_ALIGN          WORD_SIZE
    #endif /* PAGE_ALIGN */
    
    #ifdef CC26X0ROM
      #define PAGE_MASK                0xFFFFF000
    #endif /* CC26X0ROM */
    
    /* The last Flash page is reserved for the application. */
    #define NUM_RESERVED_FLASH_PAGES   1
    #define RESERVED_FLASH_SIZE        (NUM_RESERVED_FLASH_PAGES * PAGE_SIZE)
    
    /* Check if page alingment with the Stack image is required.  If so, do not link
     * into a page shared by the Stack.
     */
    #ifdef ICALL_STACK0_START
      #ifdef PAGE_ALIGN
        #define ADJ_ICALL_STACK0_START (ICALL_STACK0_START * PAGE_MASK)
      #else
        #define ADJ_ICALL_STACK0_START ICALL_STACK0_START
      #endif /* PAGE_ALIGN */
    
      #define FLASH_END                (ADJ_ICALL_STACK0_START - 1)
    #else
      #define FLASH_END                (FLASH_START + FLASH_SIZE - RESERVED_FLASH_SIZE - 1)
    #endif /* ICALL_STACK0_START */
    
    #define FLASH_LAST_PAGE_START      (FLASH_SIZE - PAGE_SIZE)
    
    /*******************************************************************************
     * Stack
     */
    
    /* Create global constant that points to top of stack */
    /* CCS: Change stack size under Project Properties    */
    __STACK_TOP = __stack + __STACK_SIZE;
    
    /*******************************************************************************
     * GPRAM
     */
    
    #ifdef CACHE_AS_RAM
      #define GPRAM_START GPRAM_BASE
      #define GPRAM_END   (GPRAM_START + GPRAM_SIZE - 1)
    #endif /* CACHE_AS_RAM */
    
    /*******************************************************************************
     * Main arguments
     */
    
    /* Allow main() to take args */
    /* --args 0x8 */
    
    /*******************************************************************************
     * ROV
     * These symbols are used by ROV2 to extend the valid memory regions on device.
     * Without these defines, ROV will encounter a Java exception when using an
     * autosized heap. This is a posted workaround for a known limitation of
     * RTSC/rta. See: bugs.eclipse.org/.../show_bug.cgi
     *
     * Note: these do not affect placement in RAM or FLASH, they are only used
     * by ROV2, see the BLE Stack User's Guide for more info on a workaround
     * for ROV Classic
     *
     */
    __UNUSED_SRAM_start__ = 0x20000000;
    __UNUSED_SRAM_end__ = 0x20005000;
    
    __UNUSED_FLASH_start__ = 0;
    __UNUSED_FLASH_end__ = 0x1FFFF;
    
    /*******************************************************************************
     * System Memory Map
     ******************************************************************************/
    MEMORY
    {
      /* EDITOR'S NOTE:
       * the FLASH and SRAM lengths can be changed by defining
       * ICALL_STACK0_START or ICALL_RAM0_START in
       * Properties->ARM Linker->Advanced Options->Command File Preprocessing.
       */
    
      /* Application stored in and executes from internal flash */
      FLASH (RX) : origin = FLASH_START, length = (FLASH_END - FLASH_START + 1)
    
      /* CCFG Page, contains .ccfg code section and some application code. */
      FLASH_LAST_PAGE (RX) :  origin = FLASH_LAST_PAGE_START, length = PAGE_SIZE
    
      /* Application uses internal RAM for data */
      SRAM (RWX) : origin = RAM_START, length = (RAM_END - RAM_START + 1)
    
      #ifdef CACHE_AS_RAM
          GPRAM(RWX) : origin = GPRAM_START, length = GPRAM_SIZE
      #endif /* CACHE_AS_RAM */
    }
    
    /*******************************************************************************
     * Section Allocation in Memory
     ******************************************************************************/
    SECTIONS
    {
      .intvecs        :   >  FLASH_START
      .text           :   >> FLASH | FLASH_LAST_PAGE
      .const          :   >> FLASH | FLASH_LAST_PAGE
      .constdata      :   >> FLASH | FLASH_LAST_PAGE
      .rodata         :   >> FLASH | FLASH_LAST_PAGE
      .cinit          :   >  FLASH | FLASH_LAST_PAGE
      .pinit          :   >> FLASH | FLASH_LAST_PAGE
      .init_array     :   >  FLASH | FLASH_LAST_PAGE
      .emb_text       :   >> FLASH | FLASH_LAST_PAGE
      .snvSectors     :   > FLASH (HIGH)
      .ccfg           :   >  FLASH_LAST_PAGE (HIGH)
    
      GROUP > SRAM
      {
        .data
        #ifndef CACHE_AS_RAM
        .bss
        #endif /* CACHE_AS_RAM */
        .vtable
        .vtable_ram
        vtable_ram
        .sysmem
        .nonretenvar
        /*This keeps ll.o objects out of GPRAM, if no ll.o would be placed here
          the warning #10068 is supressed.*/
        #ifdef CACHE_AS_RAM
        ll_bss
        {
          --library=cc2640_ll_*.a<ll.o> (.bss)
        }
        #endif /* CACHE_AS_RAM */
      } LOAD_END(heapStart)
    
      .stack            :   >  SRAM (HIGH) LOAD_START(heapEnd)
    
        #ifdef CACHE_AS_RAM
    
        .bss :
        {
          *(.bss)
        } > GPRAM
      #endif /* CACHE_AS_RAM */
    }
    

    Contents of the file common/cc26xx/kernel/cc2640/config/ble_stack_heap.cfg imported by TOOLS/app_ble.cfg:

    /* Heap Configuration defines the type of Heap you want to use for the system (application + Stack)
    * Only one Heap buffer will be allocated. This heap will be shared by the system and the stack through one manager (HeapMem, HeapMem+HeapTrack or OSAL)
    * You can still decide to create several heaps if you want, but at least one heap needs to be created.
    * The stack must have a Heap to run.
    * The different Heap manager available are :
    * OSAL HEAP: legacy Heap manager provided with all BLE sdk. By default, this Heap manager is used.
    * HeapMem:  heap manager provided by TI-RTOS (see TI-RTOS user guide for properties)
    * HeapTrack: module on top of HeapMem allowing an easy debugging of memory allocated through HeapMem.
    
    * The heap manager to use is selected by setting  HEAPMGR_CONFIG to the corresponding value (see below)
    * 0    = osal Heap manager, size is static.
    * 0x80 = osal Heap manager, with auto-size: The remainning RAM (not used by the system) will be fully assign to the Heap.
    * 1    = HeapMem with Static size
    * 0x81 = HeapMem with auto-size. The remainning RAM (not used by the system) will be fully assign to the Heap.
    * 2    = HeapTrack (with HeapMem) with fixe size
    * 0x82 = HeapTrack (with HeapMem) with auto-size: The remainning RAM (not used by the system) will be fully assign to the Heap.
    *
    * If HEAPMGR_CONFIG is not defined, but the configuration file ble_stack_heap.cfg is used, then the value HEAPMGR_CONFIG = 0x80 is assumed.
    * If HEAPMGR_CONFIG is not defined, and the file ble_stack_heap.cfg is not used, then the value HEAPMGR_CONFIG = 0x80 is assumed and the default Heap size will be 3072
    * unless you define HEAPMGR_SIZE to a different value in the project option (0 meaning auto-size).
    *
    * From the configuration below, two #define will be created that will be used by the application to setup the Heap:
    * #define HEAPMGR_SIZE
    * #define HEAPMGR_CONFIG
    * In order to use those define, this include line needs to be added: #include <xdc/cfg/global.h>
    *
    * In order for the auto-size Heap to work, the following symbol needs to be created by the linker:
    *  heapStart
    *  heapEnd
    *
    */
    /* DISCLAIMER: The HeapMem module in ROM can only use a GateMutex module. This means the malloc() function cannot be used in a Hwi/Swi.
         This means also that other access to the heap, with Icall_alloc for example, can potentially break the Heap...
         Therefore this solution is most effective when TI-RTOS is located in FLASH, so that a GateHwi can be used.
         If you try to use it in ROM, a workaround using HeapCallback is used, which will degrade performance. */
    var Memory = xdc.useModule('xdc.runtime.Memory');
    var HEAPMGR_CONFIG = 0x80;
    var HEAPMGR_SIZE   = 0x00; //only valid if static size is used. This is the size of the buffer allocated for Heap.
    
    if  (typeof HEAPMGR_CONFIG == 'undefined' )
    {
      var HEAPMGR_CONFIG = 0x80;
    }
    
    // The following will create the #define HEAPMGR_CONFIG. It can then be used by include  <xdc/cfg/global.h>
    Program.global.HEAPMGR_CONFIG = HEAPMGR_CONFIG;
    
    if  (typeof HEAPMGR_CONFIG != 'undefined' && ( HEAPMGR_CONFIG == 1 || HEAPMGR_CONFIG == 0x81))
    {
      if (typeof NO_ROM == 'undefined' || (typeof NO_ROM != 'undefined' && NO_ROM == 0))
      {
        var HeapMem = xdc.useModule('ti.sysbios.heaps.HeapMem');
        var heapMemParams = new HeapMem.Params();
    
        if (typeof HEAPMGR_CONFIG == 'undefined' || (typeof HEAPMGR_CONFIG != 'undefined' && HEAPMGR_CONFIG == 0x1))
        {
          heapMemParams.size = HEAPMGR_SIZE;
          Program.global.HEAPMGR_SIZE = HEAPMGR_SIZE;
        }
        else
        {
          // if you get an undefined error for the symbol bellow it means that AUTOHEAPSIZE has been defined in the application.
          //
          Program.global.HEAPMGR_SIZE = 0;
          heapMemParams.usePrimaryHeap = true;
          HeapMem.primaryHeapBaseAddr = "&heapStart";
          HeapMem.primaryHeapEndAddr = "&heapEnd";
        }
    
        Program.global.stackHeap = HeapMem.create(heapMemParams);
    
        var HeapCallback = xdc.useModule('ti.sysbios.heaps.HeapCallback');
        var params = new HeapCallback.Params();
        params.arg = 1;
        Program.global.heap0 = HeapCallback.create(params);
        HeapCallback.initInstFxn = '&myHeapMemInitFxn';              // Call First When BIOS boot. Initialize the Heap Manager.
        HeapCallback.allocInstFxn = '&myHeapMemAllocFxn';            // Call for allocating a buffer
        HeapCallback.freeInstFxn = '&myHeapMemFreeFxn';              // Call for Freeing a buffer
        HeapCallback.getStatsInstFxn = '&myHeapMemGetStatsFxn';      // Return Statistic on the Heap.
        HeapCallback.isBlockingInstFxn = '&myHeapMemIsBlockingFxn';  // Return TRUE: This heap is always blocking ('Hwi Gate' like )
        Memory.defaultHeapInstance = Program.global.heap0;
      }
      else
      {
        var HeapMem = xdc.useModule('ti.sysbios.heaps.HeapMem');
        var heapMemParams = new HeapMem.Params();
    
        if (typeof HEAPMGR_CONFIG == 'undefined' || (typeof HEAPMGR_CONFIG != 'undefined' && HEAPMGR_CONFIG == 0x1))
        {
          heapMemParams.size = HEAPMGR_SIZE;
          Program.global.HEAPMGR_SIZE = HEAPMGR_SIZE;
        }
        else
        {
          // if you get an undefined error for the symbol bellow it means that AUTOHEAPSIZE has been defined in the application.
          Program.global.HEAPMGR_SIZE = 0;
          heapMemParams.usePrimaryHeap = true;
          HeapMem.primaryHeapBaseAddr = "&heapStart";
          HeapMem.primaryHeapEndAddr = "&heapEnd";
        }
        Program.global.stackHeap = HeapMem.create(heapMemParams);
        var GateHwi = xdc.useModule('ti.sysbios.gates.GateHwi');
        HeapMem.common$.gate = GateHwi.create();
        Memory.defaultHeapInstance = Program.global.stackHeap;
      }
    }
    else if (typeof HEAPMGR_CONFIG != 'undefined'  && ( HEAPMGR_CONFIG == 2 || HEAPMGR_CONFIG == 0x82))
    {
      if (typeof NO_ROM == 'undefined' || (typeof NO_ROM != 'undefined' && NO_ROM == 0))
      {
        // ROM is being used.
        var HeapMem = xdc.useModule('ti.sysbios.heaps.HeapMem');
        var heapMemParams = new HeapMem.Params();
        if (typeof HEAPMGR_CONFIG == 'undefined' || (typeof HEAPMGR_CONFIG != 'undefined' && HEAPMGR_CONFIG == 2))
        {
          heapMemParams.size =  HEAPMGR_SIZE;
          Program.global.HEAPMGR_SIZE = HEAPMGR_SIZE;
        }
        else
        {
          // if you get an undefined error for the symbol bellow it means that AUTOHEAPSIZE has been defined in the application.
          //
          heapMemParams.usePrimaryHeap = true;
          HeapMem.primaryHeapBaseAddr = "&heapStart";
          HeapMem.primaryHeapEndAddr = "&heapEnd";
          Program.global.HEAPMGR_SIZE = 0;
        }
    
        var tempHeap = HeapMem.create(heapMemParams);
    
        var HeapTrack = xdc.useModule('ti.sysbios.heaps.HeapTrack');
        var heapTrackParams = new HeapTrack.Params();
        heapTrackParams.heap = tempHeap;
        Program.global.stackHeap = HeapTrack.create(heapTrackParams)
    
        var HeapCallback = xdc.useModule('ti.sysbios.heaps.HeapCallback');
        var params = new HeapCallback.Params();
        params.arg = 1;
        Program.global.heap0 = HeapCallback.create(params);
        HeapCallback.initInstFxn = '&myHeapTrackInitFxn';              // Call First When BIOS boot. Initialize the Heap Manager.
        HeapCallback.allocInstFxn = '&myHeapTrackAllocFxn';            // Call for allocating a buffer
        HeapCallback.freeInstFxn = '&myHeapTrackFreeFxn';              // Call for Freeing a buffer
        HeapCallback.getStatsInstFxn = '&myHeapTrackGetStatsFxn';      // Return Statistic on the Heap.
        HeapCallback.isBlockingInstFxn = '&myHeapTrackIsBlockingFxn';  // Return TRUE: This heap is always blocking ('Hwi Gate' like )
        Memory.defaultHeapInstance = Program.global.heap0;
      }
      else
      {
        var HeapMem = xdc.useModule('ti.sysbios.heaps.HeapMem');
        var heapMemParams = new HeapMem.Params();
        if (typeof HEAPMGR_CONFIG == 'undefined' || (typeof HEAPMGR_CONFIG != 'undefined' && HEAPMGR_CONFIG == 2))
        {
          heapMemParams.size =  HEAPMGR_SIZE;
          Program.global.HEAPMGR_SIZE = HEAPMGR_SIZE;
        }
        else
        {
          // if you get an undefined error for the symbol bellow it means that AUTOHEAPSIZE has been defined in the application.
          //
          heapMemParams.usePrimaryHeap = true;
          HeapMem.primaryHeapBaseAddr = "&heapStart";
          HeapMem.primaryHeapEndAddr = "&heapEnd";
          Program.global.HEAPMGR_SIZE = 0;
        }
    
        var tempHeap = HeapMem.create(heapMemParams);
    
        var GateHwi = xdc.useModule('ti.sysbios.gates.GateHwi');
        HeapMem.common$.gate = GateHwi.create();
    
        var HeapTrack = xdc.useModule('ti.sysbios.heaps.HeapTrack');
        var heapTrackParams = new HeapTrack.Params();
        heapTrackParams.heap = tempHeap;
        Program.global.stackHeap = HeapTrack.create(heapTrackParams)
        Memory.defaultHeapInstance = Program.global.stackHeap;
      }
    }
    else if (typeof HEAPMGR_CONFIG != 'undefined'  && ( HEAPMGR_CONFIG == 0 || HEAPMGR_CONFIG == 0x80))
    {
    
      var HeapCallback = xdc.useModule('ti.sysbios.heaps.HeapCallback');
      var params = new HeapCallback.Params();
      params.arg = 1;
      Program.global.heap0 = HeapCallback.create(params);
      HeapCallback.initInstFxn = '&osalHeapInitFxn';              // Call First When BIOS boot. Initialize the Heap Manager.
      HeapCallback.allocInstFxn = '&osalHeapAllocFxn';            // Call for allocating a buffer
      HeapCallback.freeInstFxn = '&osalHeapFreeFxn';              // Call for Freeing a buffer
      HeapCallback.getStatsInstFxn = '&osalHeapGetStatsFxn';      // Return Statistic on the Heap.
      HeapCallback.isBlockingInstFxn = '&osalHeapIsBlockingFxn';  // Return TRUE: This heap is always blocking ('Hwi Gate' like )
      //HeapCallback.createInstFxn = '&osalHeapCreateFxn';        // Not Supported
      //HeapCallback.deleteInstFxn = '&osalHeapDeleteFxn';        // Not supported
      Memory.defaultHeapInstance = Program.global.heap0;
    
      if (typeof HEAPMGR_CONFIG == 'undefined' || (typeof HEAPMGR_CONFIG != 'undefined' && HEAPMGR_CONFIG == 0))
      {
        // the following definition will create the #define HEAPMGR_SIZE ,
        // which is used by thestack to have information about the heap manager size.
        // if set to 0, this imply auto-size heap
        Program.global.HEAPMGR_SIZE = HEAPMGR_SIZE;
      }
      else
      {
        // the following definition will create the #define HEAPMGR_SIZE ,
        // which is used by the stack to have information about the heap manager size.
        // if set to 0, this imply auto-size heap
        // The heap buffer will be created automaticaly by using all the remaiing RAM available at the end of the build/link.
        // For this, 2 symbole needs to be created by teh linker file: heapStart and heapEnd
        Program.global.HEAPMGR_SIZE = 0;
      }
    }
    
    

  • There is a file with the extension .map in the Debug or Release directory in your project. The file will contain addresses of all symbols and the section layout. I can see from your .cmd file that the address in question is probably within RAM, but I need to see .map to be sure.
    Can you debug Task_create step by step and se if that address is assigned to any field in the object that 'task' points to?
  • The code was changed somewhat and no the address it fails on is "0x20001f24".

    I will try and follow through Task_create code now.

    ******************************************************************************
                      TI ARM Linker PC v16.9.3                     
    ******************************************************************************
    >> Linked Tue Sep 12 15:24:16 2017
    
    OUTPUT FILE NAME:   <simple_peripheral_cc2640r2lp_app.out>
    ENTRY POINT SYMBOL: "ResetISR"  address: 0000a509
    
    
    MEMORY CONFIGURATION
    
             name            origin    length      used     unused   attr    fill
    ----------------------  --------  ---------  --------  --------  ----  --------
      FLASH                 00000000   0001f000  0000ef56  000100aa  R  X
      FLASH_LAST_PAGE       0001f000   00001000  00000058  00000fa8  R  X
      SRAM                  20000000   00004400  000021ee  00002212  RW X
    
    
    SEGMENT ALLOCATION MAP
    
    run origin  load origin   length   init length attrs members
    ----------  ----------- ---------- ----------- ----- -------
    00000000    00000000    0000df5c   0000df5c    r-x
      00000000    00000000    0000003c   0000003c    r-- .resetVecs
      0000003c    0000003c    00000fc4   00000fc4    r-x .text.1
      00001000    00001000    00000028   00000028    r-- .const:ti_sysbios_heaps_HeapMem_Module__FXNS__C
      00001028    00001028    00000024   00000024    r-- .const:ti_sysbios_gates_GateHwi_Module__FXNS__C
      0000104c    0000104c    00000024   00000024    r-- .const:ti_sysbios_gates_GateMutex_Module__FXNS__C
      00001070    00001070    00000020   00000020    r-- .const:ti_sysbios_family_arm_m3_Hwi_Object__DESC__C
      00001090    00001090    00000020   00000020    r-- .const:ti_sysbios_gates_GateHwi_Object__DESC__C
      000010b0    000010b0    00000020   00000020    r-- .const:ti_sysbios_gates_GateMutex_Object__DESC__C
      000010d0    000010d0    00000020   00000020    r-- .const:ti_sysbios_hal_Hwi_Object__DESC__C
      000010f0    000010f0    00000020   00000020    r-- .const:ti_sysbios_heaps_HeapMem_Object__DESC__C
      00001110    00001110    00000020   00000020    r-- .const:ti_sysbios_knl_Clock_Object__DESC__C
      00001130    00001130    00000020   00000020    r-- .const:ti_sysbios_knl_Event_Object__DESC__C
      00001150    00001150    00000020   00000020    r-- .const:ti_sysbios_knl_Mailbox_Object__DESC__C
      00001170    00001170    00000020   00000020    r-- .const:ti_sysbios_knl_Queue_Object__DESC__C
      00001190    00001190    00000020   00000020    r-- .const:ti_sysbios_knl_Semaphore_Object__DESC__C
      000011b0    000011b0    00000020   00000020    r-- .const:ti_sysbios_knl_Swi_Object__DESC__C
      000011d0    000011d0    00000020   00000020    r-- .const:ti_sysbios_knl_Task_Object__DESC__C
      000011f0    000011f0    00000008   00000008    r-- .const:ti_sysbios_knl_Idle_funcList__C
      000011f8    000011f8    00000004   00000004    r-- .const:ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C
      000011fc    000011fc    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C
      00001200    00001200    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C
      00001204    00001204    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C
      00001208    00001208    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_Object__count__C
      0000120c    0000120c    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_Object__table__C
      00001210    00001210    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_ccr__C
      00001214    00001214    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C
      00001218    00001218    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C
      0000121c    0000121c    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C
      00001220    00001220    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_priGroup__C
      00001224    00001224    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C
      00001228    00001228    00000004   00000004    r-- .const:ti_sysbios_heaps_HeapMem_E_memory__C
      0000122c    0000122c    00000004   00000004    r-- .const:ti_sysbios_heaps_HeapMem_Module__gateObj__C
      00001230    00001230    00000004   00000004    r-- .const:ti_sysbios_heaps_HeapMem_Object__count__C
      00001234    00001234    00000004   00000004    r-- .const:ti_sysbios_heaps_HeapMem_Object__table__C
      00001238    00001238    00000004   00000004    r-- .const:ti_sysbios_heaps_HeapMem_reqAlign__C
      0000123c    0000123c    00000004   00000004    r-- .const:ti_sysbios_knl_Clock_triggerClock__C
      00001240    00001240    00000004   00000004    r-- .const:ti_sysbios_knl_Mailbox_Object__count__C
      00001244    00001244    00000004   00000004    r-- .const:ti_sysbios_knl_Mailbox_Object__table__C
      00001248    00001248    00000004   00000004    r-- .const:ti_sysbios_knl_Mailbox_maxTypeAlign__C
      0000124c    0000124c    00000004   00000004    r-- .const:ti_sysbios_knl_Queue_Object__count__C
      00001250    00001250    00000004   00000004    r-- .const:ti_sysbios_knl_Queue_Object__table__C
      00001254    00001254    00000004   00000004    r-- .const:ti_sysbios_knl_Semaphore_eventPost__C
      00001258    00001258    00000004   00000004    r-- .const:ti_sysbios_knl_Semaphore_eventSync__C
      0000125c    0000125c    00000004   00000004    r-- .const:ti_sysbios_knl_Swi_Object__count__C
      00001260    00001260    00000004   00000004    r-- .const:ti_sysbios_knl_Swi_Object__table__C
      00001264    00001264    00000004   00000004    r-- .const:ti_sysbios_knl_Swi_numPriorities__C
      00001268    00001268    00000004   00000004    r-- .const:ti_sysbios_knl_Task_Object__count__C
      0000126c    0000126c    00000004   00000004    r-- .const:ti_sysbios_knl_Task_Object__table__C
      00001270    00001270    00000004   00000004    r-- .const:ti_sysbios_knl_Task_allBlockedFunc__C
      00001274    00001274    00000004   00000004    r-- .const:ti_sysbios_knl_Task_defaultStackHeap__C
      00001278    00001278    00000004   00000004    r-- .const:ti_sysbios_knl_Task_defaultStackSize__C
      0000127c    0000127c    00000004   00000004    r-- .const:ti_sysbios_knl_Task_numConstructedTasks__C
      00001280    00001280    00000002   00000002    r-- .const:ti_sysbios_family_arm_cc26xx_Timer_Module__id__C
      00001282    00001282    00000002   00000002    r-- .const:ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C
      00001284    00001284    00000002   00000002    r-- .const:ti_sysbios_family_arm_m3_Hwi_Module__id__C
      00001286    00001286    00000002   00000002    r-- .const:ti_sysbios_gates_GateHwi_Module__id__C
      00001288    00001288    00000002   00000002    r-- .const:ti_sysbios_gates_GateMutex_Module__id__C
      0000128a    0000128a    00000002   00000002    r-- .const:ti_sysbios_heaps_HeapMem_Module__id__C
      0000128c    0000128c    00000002   00000002    r-- .const:ti_sysbios_knl_Task_initStackFlag__C
      0000128e    0000128e    00000001   00000001    r-- .const:ti_sysbios_knl_Clock_tickMode__C
      00001290    00001290    00000008   00000008    r-- .const:xdc_runtime_Startup_firstFxns__C
      00001298    00001298    00000008   00000008    r-- .const:xdc_runtime_Startup_lastFxns__C
      000012a0    000012a0    00000004   00000004    r-- .const:xdc_runtime_Assert_E_assertFailed__C
      000012a4    000012a4    00000004   00000004    r-- .const:xdc_runtime_Error_E_memory__C
      000012a8    000012a8    00000004   00000004    r-- .const:xdc_runtime_Error_policyFxn__C
      000012ac    000012ac    00000004   00000004    r-- .const:xdc_runtime_Error_raiseHook__C
      000012b0    000012b0    00000004   00000004    r-- .const:xdc_runtime_IGateProvider_Interface__BASE__C
      000012b4    000012b4    00000004   00000004    r-- .const:xdc_runtime_IHeap_Interface__BASE__C
      000012b8    000012b8    00000004   00000004    r-- .const:xdc_runtime_IModule_Interface__BASE__C
      000012bc    000012bc    00000004   00000004    r-- .const:xdc_runtime_Memory_defaultHeapInstance__C
      000012c0    000012c0    00000004   00000004    r-- .const:xdc_runtime_Startup_execImpl__C
      000012c4    000012c4    00000004   00000004    r-- .const:xdc_runtime_Startup_maxPasses__C
      000012c8    000012c8    00000004   00000004    r-- .const:xdc_runtime_Startup_sfxnRts__C
      000012cc    000012cc    00000004   00000004    r-- .const:xdc_runtime_Startup_sfxnTab__C
      000012d0    000012d0    00000004   00000004    r-- .const:xdc_runtime_Startup_startModsFxn__C
      000012d4    000012d4    00000004   00000004    r-- .const:xdc_runtime_SysCallback_abortFxn__C
      000012d8    000012d8    00000004   00000004    r-- .const:xdc_runtime_SysCallback_exitFxn__C
      000012dc    000012dc    00000004   00000004    r-- .const:xdc_runtime_System_abortFxn__C
      000012e0    000012e0    00000004   00000004    r-- .const:xdc_runtime_System_exitFxn__C
      000012e4    000012e4    00000004   00000004    r-- .const:xdc_runtime_System_maxAtexitHandlers__C
      000012e8    000012e8    00000004   00000004    r-- .const:xdc_runtime_Text_charTab__C
      000012ec    000012ec    00000004   00000004    r-- .const:xdc_runtime_Text_nameEmpty__C
      000012f0    000012f0    00000004   00000004    r-- .const:xdc_runtime_Text_nameStatic__C
      000012f4    000012f4    00000004   00000004    r-- .const:xdc_runtime_Text_nameUnknown__C
      000012f8    000012f8    00000002   00000002    r-- .const:xdc_runtime_Error_maxDepth__C
      000012fa    000012fa    00000002   00000002    r-- .const:xdc_runtime_Memory_Module__id__C
      000012fc    000012fc    00000002   00000002    r-- .const:xdc_runtime_Text_charCnt__C
      000012fe    000012fe    00000002   00000002    r-- .const:xdc_runtime_Text_isLoaded__C
      00001300    00001300    00000001   00000001    r-- .const:xdc_runtime_Error_policy__C
      00001304    00001304    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E
      00001308    00001308    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E
      0000130c    0000130c    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E
      00001310    00001310    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_initDevice__I
      00001314    00001314    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E
      00001318    00001318    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I
      0000131c    0000131c    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_start__E
      00001320    00001320    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E
      00001324    00001324    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_xdc_runtime_Startup_getState__I
      00001328    00001328    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_abort__E
      0000132c    0000132c    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_exit__E
      00001330    00001330    0000b870   0000b870    r-x .text.2
      0000cba0    0000cba0    00000e1e   00000e1e    r-- .const
      0000d9c0    0000d9c0    00000090   00000090    r-- .rodata
      0000da50    0000da50    0000050c   0000050c    r-- .cinit
    0001e000    0001e000    00001000   00001000    r--
      0001e000    0001e000    00001000   00001000    r-- .snvSectors
    0001ffa8    0001ffa8    00000058   00000058    r--
      0001ffa8    0001ffa8    00000058   00000058    r-- .ccfg
    20000100    20000100    00001d28   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
      20000204    20000204    00000002   00000000    rw- .data:xdc_runtime_Error_Module__state__V
      20000208    20000208    00001618   00000000    rw- .data
      20001820    20001820    00000608   00000000    rw- .bss
    20004000    20004000    00000400   00000000    rw-
      20004000    20004000    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    00000fc4     
                      0000003c    00000718     simple_peripheral.obj (.text:SimpleBLEPeripheral_taskFxn$1)
                      00000754    00000008     (.tramp.ti_sysbios_knl_Event_pend__E.1)
                      0000075c    00000008     ble_r2.symbols (.tramp.GATT_bm_free.1)
                      00000764    00000008     (.tramp.ti_sysbios_knl_Queue_get__E.1)
                      0000076c    00000008     (.tramp.ti_sysbios_knl_Queue_empty__E.1)
                      00000774    000005c0     cc2640_ll_pxxx.a : ll.o (.text)
                      00000d34    00000008     ble_r2.symbols (.tramp.LL_ENC_GenerateTrueRandNum.1)
                      00000d3c    00000008     ble_r2.symbols (.tramp.LL_PRIV_GenerateRSA.1)
                      00000d44    00000008     ble_r2.symbols (.tramp.LL_ENC_Init.1)
                      00000d4c    00000294     peripheral.obj (.text:GAPRole_SetParameter)
                      00000fe0    00000020     simple_peripheral_cc2640r2lp_stack_library.lib : hal_flash_wrapper.obj (.text:HalFlashGetAddress)
    
    .const:ti_sysbios_heaps_HeapMem_Module__FXNS__C 
    *          0    00001000    00000028     
                      00001000    00000028     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Module__FXNS__C)
    
    .const:ti_sysbios_gates_GateHwi_Module__FXNS__C 
    *          0    00001028    00000024     
                      00001028    00000024     app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateHwi_Module__FXNS__C)
    
    .const:ti_sysbios_gates_GateMutex_Module__FXNS__C 
    *          0    0000104c    00000024     
                      0000104c    00000024     app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Module__FXNS__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_Object__DESC__C 
    *          0    00001070    00000020     
                      00001070    00000020     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Object__DESC__C)
    
    .const:ti_sysbios_gates_GateHwi_Object__DESC__C 
    *          0    00001090    00000020     
                      00001090    00000020     app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateHwi_Object__DESC__C)
    
    .const:ti_sysbios_gates_GateMutex_Object__DESC__C 
    *          0    000010b0    00000020     
                      000010b0    00000020     app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Object__DESC__C)
    
    .const:ti_sysbios_hal_Hwi_Object__DESC__C 
    *          0    000010d0    00000020     
                      000010d0    00000020     app_ble_pem3.oem3 (.const:ti_sysbios_hal_Hwi_Object__DESC__C)
    
    .const:ti_sysbios_heaps_HeapMem_Object__DESC__C 
    *          0    000010f0    00000020     
                      000010f0    00000020     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Object__DESC__C)
    
    .const:ti_sysbios_knl_Clock_Object__DESC__C 
    *          0    00001110    00000020     
                      00001110    00000020     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Clock_Object__DESC__C)
    
    .const:ti_sysbios_knl_Event_Object__DESC__C 
    *          0    00001130    00000020     
                      00001130    00000020     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Event_Object__DESC__C)
    
    .const:ti_sysbios_knl_Mailbox_Object__DESC__C 
    *          0    00001150    00000020     
                      00001150    00000020     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Object__DESC__C)
    
    .const:ti_sysbios_knl_Queue_Object__DESC__C 
    *          0    00001170    00000020     
                      00001170    00000020     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Queue_Object__DESC__C)
    
    .const:ti_sysbios_knl_Semaphore_Object__DESC__C 
    *          0    00001190    00000020     
                      00001190    00000020     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Semaphore_Object__DESC__C)
    
    .const:ti_sysbios_knl_Swi_Object__DESC__C 
    *          0    000011b0    00000020     
                      000011b0    00000020     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Swi_Object__DESC__C)
    
    .const:ti_sysbios_knl_Task_Object__DESC__C 
    *          0    000011d0    00000020     
                      000011d0    00000020     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_Object__DESC__C)
    
    .const:ti_sysbios_knl_Idle_funcList__C 
    *          0    000011f0    00000008     
                      000011f0    00000008     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Idle_funcList__C)
    
    .const:ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C 
    *          0    000011f8    00000004     
                      000011f8    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    000011fc    00000004     
                      000011fc    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    00001200    00000004     
                      00001200    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    00001204    00000004     
                      00001204    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    00001208    00000004     
                      00001208    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    0000120c    00000004     
                      0000120c    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    00001210    00000004     
                      00001210    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_ccr__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C 
    *          0    00001214    00000004     
                      00001214    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C 
    *          0    00001218    00000004     
                      00001218    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C 
    *          0    0000121c    00000004     
                      0000121c    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_priGroup__C 
    *          0    00001220    00000004     
                      00001220    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_priGroup__C)
    
    .const:ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C 
    *          0    00001224    00000004     
                      00001224    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C)
    
    .const:ti_sysbios_heaps_HeapMem_E_memory__C 
    *          0    00001228    00000004     
                      00001228    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_E_memory__C)
    
    .const:ti_sysbios_heaps_HeapMem_Module__gateObj__C 
    *          0    0000122c    00000004     
                      0000122c    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Module__gateObj__C)
    
    .const:ti_sysbios_heaps_HeapMem_Object__count__C 
    *          0    00001230    00000004     
                      00001230    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Object__count__C)
    
    .const:ti_sysbios_heaps_HeapMem_Object__table__C 
    *          0    00001234    00000004     
                      00001234    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Object__table__C)
    
    .const:ti_sysbios_heaps_HeapMem_reqAlign__C 
    *          0    00001238    00000004     
                      00001238    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_reqAlign__C)
    
    .const:ti_sysbios_knl_Clock_triggerClock__C 
    *          0    0000123c    00000004     
                      0000123c    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Clock_triggerClock__C)
    
    .const:ti_sysbios_knl_Mailbox_Object__count__C 
    *          0    00001240    00000004     
                      00001240    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Object__count__C)
    
    .const:ti_sysbios_knl_Mailbox_Object__table__C 
    *          0    00001244    00000004     
                      00001244    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Object__table__C)
    
    .const:ti_sysbios_knl_Mailbox_maxTypeAlign__C 
    *          0    00001248    00000004     
                      00001248    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_maxTypeAlign__C)
    
    .const:ti_sysbios_knl_Queue_Object__count__C 
    *          0    0000124c    00000004     
                      0000124c    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Queue_Object__count__C)
    
    .const:ti_sysbios_knl_Queue_Object__table__C 
    *          0    00001250    00000004     
                      00001250    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Queue_Object__table__C)
    
    .const:ti_sysbios_knl_Semaphore_eventPost__C 
    *          0    00001254    00000004     
                      00001254    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Semaphore_eventPost__C)
    
    .const:ti_sysbios_knl_Semaphore_eventSync__C 
    *          0    00001258    00000004     
                      00001258    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Semaphore_eventSync__C)
    
    .const:ti_sysbios_knl_Swi_Object__count__C 
    *          0    0000125c    00000004     
                      0000125c    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Swi_Object__count__C)
    
    .const:ti_sysbios_knl_Swi_Object__table__C 
    *          0    00001260    00000004     
                      00001260    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Swi_Object__table__C)
    
    .const:ti_sysbios_knl_Swi_numPriorities__C 
    *          0    00001264    00000004     
                      00001264    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Swi_numPriorities__C)
    
    .const:ti_sysbios_knl_Task_Object__count__C 
    *          0    00001268    00000004     
                      00001268    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_Object__count__C)
    
    .const:ti_sysbios_knl_Task_Object__table__C 
    *          0    0000126c    00000004     
                      0000126c    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_Object__table__C)
    
    .const:ti_sysbios_knl_Task_allBlockedFunc__C 
    *          0    00001270    00000004     
                      00001270    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_allBlockedFunc__C)
    
    .const:ti_sysbios_knl_Task_defaultStackHeap__C 
    *          0    00001274    00000004     
                      00001274    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_defaultStackHeap__C)
    
    .const:ti_sysbios_knl_Task_defaultStackSize__C 
    *          0    00001278    00000004     
                      00001278    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_defaultStackSize__C)
    
    .const:ti_sysbios_knl_Task_numConstructedTasks__C 
    *          0    0000127c    00000004     
                      0000127c    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_numConstructedTasks__C)
    
    .const:ti_sysbios_family_arm_cc26xx_Timer_Module__id__C 
    *          0    00001280    00000002     
                      00001280    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    00001282    00000002     
                      00001282    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    00001284    00000002     
                      00001284    00000002     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Module__id__C)
    
    .const:ti_sysbios_gates_GateHwi_Module__id__C 
    *          0    00001286    00000002     
                      00001286    00000002     app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateHwi_Module__id__C)
    
    .const:ti_sysbios_gates_GateMutex_Module__id__C 
    *          0    00001288    00000002     
                      00001288    00000002     app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Module__id__C)
    
    .const:ti_sysbios_heaps_HeapMem_Module__id__C 
    *          0    0000128a    00000002     
                      0000128a    00000002     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Module__id__C)
    
    .const:ti_sysbios_knl_Task_initStackFlag__C 
    *          0    0000128c    00000002     
                      0000128c    00000002     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_initStackFlag__C)
    
    .const:ti_sysbios_knl_Clock_tickMode__C 
    *          0    0000128e    00000001     
                      0000128e    00000001     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Clock_tickMode__C)
    
    .const:xdc_runtime_Startup_firstFxns__C 
    *          0    00001290    00000008     
                      00001290    00000008     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_firstFxns__C)
    
    .const:xdc_runtime_Startup_lastFxns__C 
    *          0    00001298    00000008     
                      00001298    00000008     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_lastFxns__C)
    
    .const:xdc_runtime_Assert_E_assertFailed__C 
    *          0    000012a0    00000004     
                      000012a0    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Assert_E_assertFailed__C)
    
    .const:xdc_runtime_Error_E_memory__C 
    *          0    000012a4    00000004     
                      000012a4    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Error_E_memory__C)
    
    .const:xdc_runtime_Error_policyFxn__C 
    *          0    000012a8    00000004     
                      000012a8    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Error_policyFxn__C)
    
    .const:xdc_runtime_Error_raiseHook__C 
    *          0    000012ac    00000004     
                      000012ac    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Error_raiseHook__C)
    
    .const:xdc_runtime_IGateProvider_Interface__BASE__C 
    *          0    000012b0    00000004     
                      000012b0    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_IGateProvider_Interface__BASE__C)
    
    .const:xdc_runtime_IHeap_Interface__BASE__C 
    *          0    000012b4    00000004     
                      000012b4    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_IHeap_Interface__BASE__C)
    
    .const:xdc_runtime_IModule_Interface__BASE__C 
    *          0    000012b8    00000004     
                      000012b8    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_IModule_Interface__BASE__C)
    
    .const:xdc_runtime_Memory_defaultHeapInstance__C 
    *          0    000012bc    00000004     
                      000012bc    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Memory_defaultHeapInstance__C)
    
    .const:xdc_runtime_Startup_execImpl__C 
    *          0    000012c0    00000004     
                      000012c0    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_execImpl__C)
    
    .const:xdc_runtime_Startup_maxPasses__C 
    *          0    000012c4    00000004     
                      000012c4    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_maxPasses__C)
    
    .const:xdc_runtime_Startup_sfxnRts__C 
    *          0    000012c8    00000004     
                      000012c8    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_sfxnRts__C)
    
    .const:xdc_runtime_Startup_sfxnTab__C 
    *          0    000012cc    00000004     
                      000012cc    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_sfxnTab__C)
    
    .const:xdc_runtime_Startup_startModsFxn__C 
    *          0    000012d0    00000004     
                      000012d0    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_startModsFxn__C)
    
    .const:xdc_runtime_SysCallback_abortFxn__C 
    *          0    000012d4    00000004     
                      000012d4    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_SysCallback_abortFxn__C)
    
    .const:xdc_runtime_SysCallback_exitFxn__C 
    *          0    000012d8    00000004     
                      000012d8    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_SysCallback_exitFxn__C)
    
    .const:xdc_runtime_System_abortFxn__C 
    *          0    000012dc    00000004     
                      000012dc    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_System_abortFxn__C)
    
    .const:xdc_runtime_System_exitFxn__C 
    *          0    000012e0    00000004     
                      000012e0    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_System_exitFxn__C)
    
    .const:xdc_runtime_System_maxAtexitHandlers__C 
    *          0    000012e4    00000004     
                      000012e4    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_System_maxAtexitHandlers__C)
    
    .const:xdc_runtime_Text_charTab__C 
    *          0    000012e8    00000004     
                      000012e8    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Text_charTab__C)
    
    .const:xdc_runtime_Text_nameEmpty__C 
    *          0    000012ec    00000004     
                      000012ec    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Text_nameEmpty__C)
    
    .const:xdc_runtime_Text_nameStatic__C 
    *          0    000012f0    00000004     
                      000012f0    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Text_nameStatic__C)
    
    .const:xdc_runtime_Text_nameUnknown__C 
    *          0    000012f4    00000004     
                      000012f4    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Text_nameUnknown__C)
    
    .const:xdc_runtime_Error_maxDepth__C 
    *          0    000012f8    00000002     
                      000012f8    00000002     app_ble_pem3.oem3 (.const:xdc_runtime_Error_maxDepth__C)
    
    .const:xdc_runtime_Memory_Module__id__C 
    *          0    000012fa    00000002     
                      000012fa    00000002     app_ble_pem3.oem3 (.const:xdc_runtime_Memory_Module__id__C)
    
    .const:xdc_runtime_Text_charCnt__C 
    *          0    000012fc    00000002     
                      000012fc    00000002     app_ble_pem3.oem3 (.const:xdc_runtime_Text_charCnt__C)
    
    .const:xdc_runtime_Text_isLoaded__C 
    *          0    000012fe    00000002     
                      000012fe    00000002     app_ble_pem3.oem3 (.const:xdc_runtime_Text_isLoaded__C)
    
    .const:xdc_runtime_Error_policy__C 
    *          0    00001300    00000001     
                      00001300    00000001     app_ble_pem3.oem3 (.const:xdc_runtime_Error_policy__C)
    
    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E 
    *          0    00001304    00000004     
                      00001304    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    00001308    00000004     
                      00001308    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    0000130c    00000004     
                      0000130c    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    00001310    00000004     
                      00001310    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    00001314    00000004     
                      00001314    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    00001318    00000004     
                      00001318    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    0000131c    00000004     
                      0000131c    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    00001320    00000004     
                      00001320    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    00001324    00000004     
                      00001324    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    00001328    00000004     
                      00001328    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    0000132c    00000004     
                      0000132c    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_exit__E)
    
    .text.2    0    00001330    0000b870     
                      00001330    00000588     peripheral.obj (.text:gapRole_taskFxn$14)
                      000018b8    00000358     RFCC26XX_singleMode.obj (.text:fsmActiveState$4)
                      00001c10    00000314     drivers_cc26x0r2.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_auxISR)
                      00001f24    00000300     cc2640_ll_pxxx.a : ll_scheduler.o (.text)
                      00002224    000002e4                      : ll.o (.text)
                      00002508    000002bc     simple_peripheral_cc2640r2lp_stack_library.lib : icall_startup.obj (.text:startup_entry)
                      000027c4    0000024c     drivers_cc26x0r2.aem3 : CryptoCC26XX.oem3 (.text:cryptoTransactionExecute)
                      00002a10    0000023c                           : PowerCC26XX.oem3 (.text:Power_sleep)
                      00002c4c    00000234     cc26xx_profiles_pxxx.a : gapgattserver.o (.text)
                      00002e80    0000022c     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_SetParameter)
                      000030ac    00000220     RFCC26XX_singleMode.obj (.text:RF_open)
                      000032cc    00000220     cc2640_ll_pxxx.a : ll_isr.o (.text)
                      000034ec    0000021c     rtsv7M3_T_le_eabi.lib : trgdrv.obj (.text)
                      00003708    00000210     driverlib.lib : sys_ctrl.obj (.text:NOROM_SysCtrlSetRechargeBeforePowerDown)
                      00003918    00000210     cc26xx_profiles_pxxx.a : gattservapp.o (.text)
                      00003b28    0000020c     cc2640_ll_pxxx.a : ll_common.o (.text)
                      00003d34    00000204     cc26xx_sm_pxxx.a : sm_pairing.o (.text)
                      00003f38    000001f4     rtsv7M3_T_le_eabi.lib : ull_div_t2.obj (.text)
                      0000412c    000001e4     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_ProcessGAPMsg)
                      00004310    000001dc     RFCC26XX_singleMode.obj (.text:fsmSetupState$4)
                      000044ec    000001d0     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrAddBond$31)
                      000046bc    000001c4     simple_peripheral.obj (.text:SimpleBLEPeripheral_processStateChangeEvt$1)
                      00004880    000001c4     cc2640_ll_pxxx.a : ll_isr.o (.text)
                      00004a44    000001c0     simple_peripheral_cc2640r2lp_stack_library.lib : osal.obj (.text:osal_start_system)
                      00004c04    000001bc     main.obj (.text:AssertHandler)
                      00004dc0    000001b8     rtsv7M3_T_le_eabi.lib : fputs.obj (.text)
                      00004f78    000001a8     RFCC26XX_singleMode.obj (.text:RF_postCmd)
                      00005120    000001a8     cc2640_ll_pxxx.a : ll_isr.o (.text)
                      000052c8    00000194     icall.obj (.text:icall_directAPI)
                      0000545c    00000190     ECCROMCC26XX.obj (.text:ECCROMCC26XX_genDHKey)
                      000055ec    00000190     drivers_cc26x0r2.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_doCalibrate)
                      0000577c    00000190     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrAuthenticate$31)
                      0000590c    0000018c     drivers_cc26x0r2.aem3 : PINCC26XX.oem3 (.text:PIN_init)
                      00005a98    0000017c     RFCC26XX_singleMode.obj (.text:abortCmd$4)
                      00005c14    0000016c     cc2640_ll_pxxx.a : ll.o (.text)
                      00005d80    00000150     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_ProcessEvent)
                      00005ed0    0000013c     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:Power_init)
                      0000600c    00000128     ECCROMCC26XX.obj (.text:ECCROMCC26XX_genKeys)
                      00006134    00000128     cc2640_ll_pxxx.a : ll_scheduler.o (.text)
                      0000625c    00000128     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrEraseBonding$31)
                      00006384    00000124     peripheral.obj (.text:GAPRole_GetParameter)
                      000064a8    0000011c     simple_peripheral_cc2640r2lp_stack_library.lib : osal_snv_wrapper.obj (.text:compactPage$28)
                      000065c4    0000010c     RFCC26XX_singleMode.obj (.text:hwiFxnCpe0Active$4)
                      000066d0    000000fc     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excFillContext__I)
                      000067cc    000000f8     simple_peripheral_cc2640r2lp_stack_library.lib : osal_snv_wrapper.obj (.text:osal_snv_write)
                      000068c4    000000f8     RFCC26XX_singleMode.obj (.text:radioOpDoneCb$4)
                      000069bc    000000f4     RFCC26XX_singleMode.obj (.text:fsmPowerUpState$4)
                      00006ab0    000000ec     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_LinkEst)
                      00006b9c    000000ec     cc26xx_profiles_pxxx.a : gattservapp.o (.text)
                      00006c88    000000ec     simple_peripheral_cc2640r2lp_stack_library.lib : osal_timers.obj (.text:osalTimerUpdate)
                      00006d74    000000e4     main.obj (.text:main)
                      00006e58    000000e0     cc26xx_sm_pxxx.a : sm_pairing.o (.text)
                      00006f38    000000dc     drivers_cc26x0r2.aem3 : PINCC26XX.oem3 (.text:PINCC26XX_setIoCfg)
                      00007014    000000d4                           : CryptoCC26XX.oem3 (.text:CryptoCC26XX_open)
                      000070e8    000000d4     dpl_cc26x0r2.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
                      000071bc    000000d4     rtsv7M3_T_le_eabi.lib : setvbuf.obj (.text)
                      00007290    000000d4     simple_gatt_profile.obj (.text:simpleProfile_WriteAttrCB$15)
                      00007364    000000c4     cc26xx_sm_pxxx.a : sm_pairing.o (.text)
                      00007428    000000c0     simple_gatt_profile.obj (.text:SimpleProfile_SetParameter)
                      000074e8    000000c0     simple_peripheral_cc2640r2lp_stack_library.lib : osal.obj (.text:osal_set_event)
                      000075a8    000000c0     rtsv7M3_T_le_eabi.lib : lowlev.obj (.text)
                      00007668    000000bc     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:Power_releaseDependency)
                      00007724    000000bc     rtsv7M3_T_le_eabi.lib : fclose.obj (.text)
                      000077e0    000000b8     driverlib.lib : setup.obj (.text:NOROM_SetupTrimDevice)
                      00007898    000000b8     cc2640_ll_pxxx.a : ll_scheduler.o (.text)
                      00007950    000000b4     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:Power_setDependency)
                      00007a04    000000b0     TRNGCC26XX.obj (.text:TRNGCC26XX_getNumber)
                      00007ab4    000000b0     devinfoservice.obj (.text:devInfo_ReadAttrCB$11)
                      00007b64    000000a8     simple_peripheral.obj (.text:SimpleBLEPeripheral_createTask)
                      00007c0c    000000a4     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_ResolveAddr)
                      00007cb0    000000a4                                                    : osal.obj (.text:osal_msg_enqueue_push$24)
                      00007d54    000000a0     auto_init.aem3 : auto_init.oem3 (.text)
                      00007df4    0000009e     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrUpdateCharCfg$31)
                      00007e92    00000002     ble_user_config.obj (.text:DefaultAssertCback)
                      00007e94    0000009c     simple_peripheral_cc2640r2lp_stack_library.lib : osal_cbtimer.obj (.text:cbTimerSetup$40)
                      00007f30    0000009c     rtsv7M3_T_le_eabi.lib : memcpy_t2.obj (.text)
                      00007fcc    00000098     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
                      00008064    00000094     icall.obj (.text:ICall_setTimer)
                      000080f8    00000094     simple_peripheral_cc2640r2lp_stack_library.lib : osal.obj (.text:osal_msg_receive)
                      0000818c    00000094                                                    : osal_timers.obj (.text:osal_timer_refTimeUpdate)
                      00008220    00000090     driverlib.lib : crypto.obj (.text:NOROM_CRYPTOAesLoadKey)
                      000082b0    00000090                   : setup.obj (.text:TrimAfterColdResetWakeupFromShutDown$21)
                      00008340    00000090     cc2640_ll_pxxx.a : ll_enc.o (.text)
                      000083d0    00000090     cc26xx_hci_tl_none.a : hci_tl.o (.text)
                      00008460    00000090     simple_peripheral_cc2640r2lp_stack_library.lib : osal_cbtimer.obj (.text:osal_CbTimerProcessEvent)
                      000084f0    0000008c     icall.obj (.text:ICall_heapMalloc)
                      0000857c    0000008c     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
                      00008608    00000088     cc2640_ll_pxxx.a : ll.o (.text)
                      00008690    00000088     cc26xx_profiles_pxxx.a : gapgattserver.o (.text)
                      00008718    00000088     peripheral.obj (.text:gapRole_startConnUpdate$14)
                      000087a0    00000088     gattservapp_util.obj (.text:gattServApp_SendNotiInd$13)
                      00008828    00000088     simple_peripheral_cc2640r2lp_stack_library.lib : osal_snv_wrapper.obj (.text:writeWord$28)
                      000088b0    00000086     cc2640_ll_pxxx.a : ll_common.o (.text)
                      00008936    00000002     simple_peripheral_cc2640r2lp_stack_library.lib : onboard.obj (.text:Onboard_soft_reset)
                      00008938    00000084     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                      000089bc    00000084     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excHandlerMin__I)
                      00008a40    00000080     RFCC26XX_singleMode.obj (.text:RF_pendCmd)
                      00008ac0    0000007e     cc26xx_profiles_pxxx.a : gattservapp.o (.text)
                      00008b3e    00000002     simple_peripheral_cc2640r2lp_stack_library.lib : sm_ecc.obj (.text:SM_dhKeyCB)
                      00008b40    0000007c     cc2640_hci_pxxx.a : hci_event.o (.text)
                      00008bbc    0000007c     cc2640_ll_pxxx.a : ll_scheduler.o (.text)
                      00008c38    0000007c     cc26xx_gap_pxxx.a : gap_linkmgr.o (.text)
                      00008cb4    0000007c     simple_peripheral_cc2640r2lp_stack_library.lib : osal.obj (.text:osal_event_send$24)
                      00008d30    0000007c     RFCC26XX_singleMode.obj (.text:swiFxnHw$4)
                      00008dac    0000007a     drivers_cc26x0r2.aem3 : CryptoCC26XX.oem3 (.text:CryptoCC26XX_allocateKey)
                      00008e26    0000007a     rtsv7M3_T_le_eabi.lib : memset_t2.obj (.text)
                      00008ea0    00000078     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_syncResolvingList)
                      00008f18    00000074     cc2640_ll_pxxx.a : ll_common.o (.text)
                      00008f8c    00000074     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrBondReq$31)
                      00009000    00000074     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_start__E)
                      00009074    00000070     icall.obj (.text:ICall_heapGetStats)
                      000090e4    00000070     icall.obj (.text:ICall_heapInit)
                      00009154    00000070     simple_peripheral_cc2640r2lp_stack_library.lib : ble_dispatch_lite.obj (.text:ble_dispatch_liteProcess)
                      000091c4    0000006c     icall.obj (.text:ICall_sendServiceComplete)
                      00009230    0000006c     driverlib.lib : osc.obj (.text:NOROM_OSCHF_AttemptToSwitchToXosc)
                      0000929c    0000006c     drivers_cc26x0r2.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
                      00009308    0000006c     cc2640_ll_pxxx.a : ll_scheduler.o (.text)
                      00009374    0000006c     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:configureXOSCHF)
                      000093e0    00000068     driverlib.lib : sys_ctrl.obj (.text:NOROM_SysCtrl_DCDC_VoltageConditionalControl)
                      00009448    00000068     simple_peripheral.obj (.text:SimpleBLEPeripheral_freeAttRsp$1)
                      000094b0    00000068     RFCC26XX_singleMode.obj (.text:decActiveClientCnt$4)
                      00009518    00000068     rtsv7M3_T_le_eabi.lib : copy_decompress_lzss.obj (.text:decompress:lzss)
                      00009580    00000068     simple_peripheral_cc2640r2lp_stack_library.lib : osal_cbtimer.obj (.text:osal_CbTimerUpdate)
                      000095e8    00000068     rtsv7M3_T_le_eabi.lib : trgmsg.obj (.text)
                      00009650    00000064     icall.obj (.text:ICall_send)
                      000096b4    00000064     driverlib.lib : sys_ctrl.obj (.text:NOROM_SysCtrlAdjustRechargeAfterPowerDown)
                      00009718    00000064     cc26xx_profiles_pxxx.a : gattservapp.o (.text)
                      0000977c    00000064     RFCC26XX_singleMode.obj (.text:fsmXOSCState$4)
                      000097e0    00000060     icall.obj (.text:ICall_createRemoteTasksAtRuntime)
                      00009840    00000060     icall.obj (.text:ICall_enrollService)
                      000098a0    00000060     RFCC26XX_singleMode.obj (.text:RF_getCurrentTime)
                      00009900    0000005e     icall.obj (.text:ICall_fetchMsg)
                      0000995e    00000002     simple_peripheral_cc2640r2lp_stack_library.lib : sm_ecc.obj (.text:SM_p256KeyCB)
                      00009960    0000005c     display.aem3 : Display.oem3 (.text:Display_doOpen)
                      000099bc    0000005c     icall.obj (.text:ICall_pwrUpdActivityCounter)
                      00009a18    0000005c     drivers_cc26x0r2.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_RCOSC_clockFunc)
                      00009a74    0000005c                           : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
                      00009ad0    0000005c     cc26xx_profiles_pxxx.a : gattservapp.o (.text)
                      00009b2c    0000005c     simple_gatt_profile.obj (.text:simpleProfile_ReadAttrCB$15)
                      00009b88    0000005c     app_ble_pem3.oem3 (.text:xdc_runtime_Startup_getState__I)
                      00009be4    00000058     icall.obj (.text:ICall_wait)
                      00009c3c    00000058     simple_peripheral_cc2640r2lp_stack_library.lib : osal_snv_wrapper.obj (.text:findItem$28)
                      00009c94    00000058                                                    : gapbondmgr.obj (.text:gapBondMgrReadBonds$31)
                      00009cec    00000058                                                    : osal_cbtimer.obj (.text:osal_CbTimerStop)
                      00009d44    00000054     cc26xx_profiles_pxxx.a : gattservapp.o (.text)
                      00009d98    00000054     RFCC26XX_singleMode.obj (.text:hwiFxnHw$4)
                      00009dec    00000054     RFCC26XX_singleMode.obj (.text:ratChanFree$4)
                      00009e40    00000054     rtsv7M3_T_le_eabi.lib : exit.obj (.text)
                      00009e94    00000050     ECCROMCC26XX.obj (.text:ECCROMCC26XX_Params_init)
                      00009ee4    00000050     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_LinkTerm)
                      00009f34    00000050     icall.obj (.text:ICall_registerApp)
                      00009f84    00000050     simple_peripheral_cc2640r2lp_stack_library.lib : npi.obj (.text:NPI_WriteTransport)
                      00009fd4    00000050     RFCC26XX_singleMode.obj (.text:RF_getInfo)
                      0000a024    00000050     util.obj (.text:Util_convertBdAddr2Str)
                      0000a074    0000004c     icall.obj (.text:ICall_newTask$6)
                      0000a0c0    0000004c     RFCC26XX_singleMode.obj (.text:RF_wakeupNotifyFxn$4)
                      0000a10c    0000004c     simple_peripheral.obj (.text:SimpleBLEPeripheral_enqueueMsg$1)
                      0000a158    0000004c     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrUpdateLruBondList$31)
                      0000a1a4    0000004c                                                    : osal_bufmgr.obj (.text:osal_bm_free)
                      0000a1f0    0000004c     rtsv7M3_T_le_eabi.lib : cpy_tbl.obj (.text)
                      0000a23c    0000004c                           : fflush.obj (.text)
                      0000a288    0000004c     RFCC26XX_singleMode.obj (.text:syncCb$4)
                      0000a2d4    00000048     dpl_cc26x0r2.aem3 : ClockP_tirtos.oem3 (.text:ClockP_construct)
                      0000a31c    00000048     ECCROMCC26XX.obj (.text:ECC_initGlobals$3)
                      0000a364    00000048     util.obj (.text:Util_constructClock)
                      0000a3ac    00000048     simple_peripheral_cc2640r2lp_stack_library.lib : osal_timers.obj (.text:osalAddTimer)
                      0000a3f4    00000048     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I)
                      0000a43c    00000044     driverlib.lib : osc.obj (.text:NOROM_OSCHF_SwitchToRcOscTurnOffXosc)
                      0000a480    00000044     drivers_cc26x0r2.aem3 : PINCC26XX.oem3 (.text:PIN_swi)
                      0000a4c4    00000044     simple_gatt_profile.obj (.text:SimpleProfile_GetParameter)
                      0000a508    00000044     boot.aem3 : boot.oem3 (.text)
                      0000a54c    00000044     cc2640_ll_pxxx.a : ll_scheduler.o (.text)
                      0000a590    00000044     cc26xx_profiles_pxxx.a : gattservapp.o (.text)
                      0000a5d4    00000044     simple_peripheral_cc2640r2lp_stack_library.lib : osal_snv_wrapper.obj (.text:erasePage$28)
                      0000a618    00000044     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:notify)
                      0000a65c    00000044     simple_peripheral_cc2640r2lp_stack_library.lib : osal_timers.obj (.text:osal_start_timerEx)
                      0000a6a0    00000042                                                    : gapbondmgr.obj (.text:GAPBondMgr_UpdateCharCfg)
                      0000a6e2    00000042                                                    : gap.obj (.text:GAP_DeviceInit)
                      0000a724    00000040     ECCROMCC26XX.obj (.text:ECCROMCC26XX_init)
                      0000a764    00000040     peripheral.obj (.text:GAPRole_createTask)
                      0000a7a4    00000040     dpl_cc26x0r2.aem3 : HwiP_tirtos.oem3 (.text:HwiP_construct)
                      0000a7e4    00000040     RFCC26XX_singleMode.obj (.text:RF_getRssi)
                      0000a824    00000040     cc26xx_profiles_pxxx.a : gattservapp.o (.text)
                      0000a864    00000040     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_heaps_HeapCallback_Module_startup__E)
                      0000a8a4    0000003c     driverlib.lib : osc.obj (.text:NOROM_OSC_HPOSCRelativeFrequencyOffsetGet)
                      0000a8e0    0000003c     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
                      0000a91c    0000003c                           : PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
                      0000a958    0000003c     RFCC26XX_singleMode.obj (.text:RF_runCmd)
                      0000a994    0000003c     dpl_cc26x0r2.aem3 : SwiP_tirtos.oem3 (.text:SwiP_construct)
                      0000a9d0    0000003c     cc2640_ll_pxxx.a : ll_scheduler.o (.text)
                      0000aa0c    0000003c     cc26xx_hci_tl_none.a : hci_tl.o (.text)
                      0000aa48    0000003c     cc26xx_profiles_pxxx.a : gattservapp.o (.text)
                      0000aa84    0000003c                            : gattservapp.o (.text)
                      0000aac0    0000003c                            : gattservapp.o (.text)
                      0000aafc    0000003c     simple_peripheral_cc2640r2lp_stack_library.lib : osal_bufmgr.obj (.text:osal_bm_alloc)
                      0000ab38    0000003c                                                    : osal_timers.obj (.text:osal_start_reload_timer)
                      0000ab74    0000003c     RFCC26XX_singleMode.obj (.text:postDirImmCmd$4)
                      0000abb0    0000003c     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_construct2__E)
                      0000abec    00000038     util.obj (.text:Util_restartClock)
                      0000ac24    00000038     cc2640_ll_pxxx.a : ll_scheduler.o (.text)
                      0000ac5c    00000038                      : ll_scheduler.o (.text)
                      0000ac94    00000038     cc26xx_l2cap_pxxx.a : l2cap_util.o (.text)
                      0000accc    00000038     simple_peripheral_cc2640r2lp_stack_library.lib : osal_snv_wrapper.obj (.text:disableCache$28)
                      0000ad04    00000038     RFCC26XX_singleMode.obj (.text:dispatchOpWhen$4)
                      0000ad3c    00000038     simple_peripheral_cc2640r2lp_stack_library.lib : osal.obj (.text:osal_alien2proxy)
                      0000ad74    00000038                                                    : osal.obj (.text:osal_msec_timer_cback$24)
                      0000adac    00000038                                                    : osal_timers.obj (.text:osal_stop_timerEx)
                      0000ade4    00000038     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E)
                      0000ae1c    00000036     drivers_cc26x0r2.aem3 : CryptoCC26XX.oem3 (.text:CryptoCC26XX_loadKey)
                      0000ae52    00000002     RFCC26XX_singleMode.obj (.text:defaultCallback$4)
                      0000ae54    00000034     gattservapp_util.obj (.text:GATTServApp_InitCharCfg)
                      0000ae88    00000034     icall.obj (.text:ICall_heapFree)
                      0000aebc    00000034     icall.obj (.text:ICall_searchServiceEntity)
                      0000aef0    00000034     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:Power_releaseConstraint)
                      0000af24    00000034     RFCC26XX_singleMode.obj (.text:Q_push$4)
                      0000af58    00000034     cc2640_ll_pxxx.a : ll_isr.o (.text)
                      0000af8c    00000034                      : ll_scheduler.o (.text)
                      0000afc0    00000034     simple_peripheral_cc2640r2lp_stack_library.lib : osal.obj (.text:osal_clear_event)
                      0000aff4    00000034     rtsv7M3_T_le_eabi.lib : fopen.obj (.text)
                      0000b028    00000034                           : strncpy.obj (.text)
                      0000b05c    00000034     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_initDevice__I)
                      0000b090    00000032     icall.obj (.text:ICall_fetchServiceMsg)
                      0000b0c2    00000032     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E)
                      0000b0f4    00000030     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_PasscodeRsp)
                      0000b124    00000030     peripheral.obj (.text:GAPRole_TerminateConnection)
                      0000b154    00000030     simple_peripheral_cc2640r2lp_stack_library.lib : hal_flash_wrapper.obj (.text:HalFlashRead)
                      0000b184    00000030     icall.obj (.text:ICall_dispatch$6)
                      0000b1b4    00000030     icall.obj (.text:ICall_msecs2Ticks$6)
                      0000b1e4    00000030     icall.obj (.text:ICall_primEntityId2ServiceId$6)
                      0000b214    00000030     icall.obj (.text:ICall_searchTask$6)
                      0000b244    00000030     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:Power_setConstraint)
                      0000b274    00000030     cc26xx_gap_pxxx.a : gap_configmgr.o (.text)
                      0000b2a4    00000030     cc26xx_profiles_pxxx.a : gattservapp.o (.text)
                      0000b2d4    00000030     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgr_SyncWhiteList$31)
                      0000b304    00000030                                                    : osal_timers.obj (.text:osal_get_timeoutEx)
                      0000b334    00000030     app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
                      0000b364    00000030     app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
                      0000b394    00000030     app_ble_pem3.oem3 (.text:ti_sysbios_heaps_HeapCallback_Object__create__S)
                      0000b3c4    0000002e     icall_cc2650.obj (.text:ICallPlatform_pwrDispenseImpl$7)
                      0000b3f2    0000002e     icall_cc2650.obj (.text:ICallPlatform_pwrRequireImpl$7)
                      0000b420    0000002e     cc26xx_profiles_pxxx.a : gattservapp.o (.text)
                      0000b44e    0000002e     simple_peripheral_cc2640r2lp_stack_library.lib : osal.obj (.text:osal_build_uint32)
                      0000b47c    0000002e     app_ble_pem3.oem3 (.text:ti_sysbios_rts_gnu_MemAlloc_alloc)
                      0000b4aa    00000002     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:emptyClockFunc)
                      0000b4ac    0000002c     icall.obj (.text:ICall_getLocalMsgEntityId)
                      0000b4d8    0000002c     icall.obj (.text:ICall_msgEnqueue$6)
                      0000b504    0000002c     driverlib.lib : chipinfo.obj (.text:NOROM_ChipInfo_GetChipFamily)
                      0000b530    0000002c                   : rfc.obj (.text:NOROM_RFCDoorbellSendTo)
                      0000b55c    0000002c     dpl_cc26x0r2.aem3 : SemaphoreP_tirtos.oem3 (.text:SemaphoreP_constructBinary)
                      0000b588    0000002c     simple_peripheral_cc2640r2lp_stack_library.lib : ble_dispatch_lite.obj (.text:bleDispatch_BMAlloc)
                      0000b5b4    0000002c     cc26xx_profiles_pxxx.a : gattservapp.o (.text)
                      0000b5e0    0000002c     cc26xx_sm_pxxx.a : sm_pairing.o (.text)
                      0000b60c    0000002c     simple_peripheral_cc2640r2lp_stack_library.lib : osal_snv_wrapper.obj (.text:findOffset$28)
                      0000b638    0000002c                                                    : gapbondmgr.obj (.text:gapBondMgrFindAddr$31)
                      0000b664    0000002c     RFCC26XX_singleMode.obj (.text:getCmd$4)
                      0000b690    0000002c     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_getTicksUntilInterrupt__E)
                      0000b6bc    0000002a     display.aem3 : Display.oem3 (.text:Display_doPrintf)
                      0000b6e6    0000002a     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_getTimeout__E)
                      0000b710    00000028     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:Power_registerNotify)
                      0000b738    00000028     driverlib.lib : adi.obj (.text:SafeHapiVoid)
                      0000b760    00000028     TRNGCC26XX.obj (.text:TRNGCC26XX_init)
                      0000b788    00000028     drivers_cc26x0r2.aem3 : CryptoCC26XX.oem3 (.text:cryptoTransactionPend)
                      0000b7b0    00000028     main.obj (.text:execHandlerHook)
                      0000b7d8    00000028     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrBondTotal$31)
                      0000b800    00000028                                                    : osal_bufmgr.obj (.text:osal_bm_adjust_header)
                      0000b828    00000028                                                    : osal_timers.obj (.text:osal_next_timeout)
                      0000b850    00000028                                                    : osal_snv_wrapper.obj (.text:osal_snv_compact)
                      0000b878    00000026                                                    : gapbondmgr.obj (.text:gapBondMgrGetStateFlags$31)
                      0000b89e    00000002                                                    : hal_assert.obj (.text:halAssertHandler)
                      0000b8a0    00000024     drivers_cc26x0r2.aem3 : CryptoCC26XX.oem3 (.text:CryptoCC26XX_hwiIntFxn)
                      0000b8c4    00000024     driverlib.lib : osc.obj (.text:NOROM_OSCHF_TurnOnXosc)
                      0000b8e8    00000024     drivers_cc26x0r2.aem3 : PINCC26XX.oem3 (.text:PINCC26XX_getPinCount)
                      0000b90c    00000024     simple_peripheral_cc2640r2lp_stack_library.lib : osal_bufmgr.obj (.text:bm_desc_from_payload$25)
                      0000b930    00000024     cc26xx_profiles_pxxx.a : gapgattserver.o (.text)
                      0000b954    00000024     RFCC26XX_singleMode.obj (.text:hwiFxnCpe0PowerFsm$4)
                      0000b978    00000024     simple_peripheral_cc2640r2lp_stack_library.lib : osal.obj (.text:osal_msg_allocate)
                      0000b99c    00000024                                                    : osal.obj (.text:osal_service_entry)
                      0000b9c0    00000024     app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_registerRTSLock__I)
                      0000b9e4    00000024     app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_removeRTSLock__I)
                      0000ba08    00000024     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E)
                      0000ba2c    00000022     icall.obj (.text:ICall_setTimerMSecs)
                      0000ba4e    00000022     drivers_cc26x0r2.aem3 : List.oem3 (.text:List_put)
                      0000ba70    00000022     cc26xx_profiles_pxxx.a : gattservapp.o (.text)
                      0000ba92    00000002     simple_peripheral_cc2640r2lp_stack_library.lib : hal_assert.obj (.text:halAssertSpinlock)
                      0000ba94    00000020     dpl_cc26x0r2.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_schedulerDisable)
                      0000bab4    00000020                       : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_schedulerRestore)
                      0000bad4    00000020     cc2640_ll_pxxx.a : ll_isr.o (.text)
                      0000baf4    00000020     cc26xx_profiles_pxxx.a : gattservapp.o (.text)
                      0000bb14    00000020     gattservapp_util.obj (.text:gattServApp_FindCharCfgItem$13)
                      0000bb34    00000020     simple_peripheral_cc2640r2lp_stack_library.lib : osal_timers.obj (.text:osalFindTimer)
                      0000bb54    00000020                                                    : osal.obj (.text:osal_memcmp)
                      0000bb74    00000020                                                    : osal.obj (.text:osal_msg_deallocate)
                      0000bb94    00000020                                                    : osal.obj (.text:osal_msg_send)
                      0000bbb4    00000020                                                    : osal.obj (.text:osal_proxy2alien$24)
                      0000bbd4    00000020     rtsv7M3_T_le_eabi.lib : memchr.obj (.text)
                      0000bbf4    00000020     app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsLock__I)
                      0000bc14    00000020     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_dynamicStub__E)
                      0000bc34    0000001e     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:Power_getTransitionLatency)
                      0000bc52    0000001e     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrInvertCharCfgItem$31)
                      0000bc70    0000001e                                                    : gapbondmgr.obj (.text:gapBondSetupPrivFlag$31)
                      0000bc8e    0000001e                                                    : osal_snv_wrapper.obj (.text:osal_snv_read)
                      0000bcac    0000001c                                                    : gapbondmgr.obj (.text:GAPBondMgr_Register)
                      0000bcc8    0000001c                                                    : gapbondmgr.obj (.text:GAPBondMgr_SupportsEnhancedPriv)
                      0000bce4    0000001c     icall.obj (.text:ICall_primRepostSync$6)
                      0000bd00    0000001c     driverlib.lib : flash.obj (.text:NOROM_FlashProgram)
                      0000bd1c    0000001c                   : flash.obj (.text:NOROM_FlashSectorErase)
                      0000bd38    0000001c     drivers_cc26x0r2.aem3 : PINCC26XX.oem3 (.text:PINCC26XX_setIoCfgMux)
                      0000bd54    0000001c                           : PINCC26XX.oem3 (.text:PIN_hwi)
                      0000bd70    0000001c     RFCC26XX_singleMode.obj (.text:RF_runDirectCmd)
                      0000bd8c    0000001c     simple_peripheral.obj (.text:SimpleBLEPeripheral_pairStateCB$1)
                      0000bda8    0000001c     TRNGCC26XX.obj (.text:TRNGCC26XX_open)
                      0000bdc4    0000001c     simple_peripheral_cc2640r2lp_stack_library.lib : osal_snv_wrapper.obj (.text:enableCache$28)
                      0000bde0    0000001c                                                    : gapbondmgr.obj (.text:gapBondFreeAuthEvt$31)
                      0000bdfc    0000001c                                                    : hal_assert.obj (.text:halAssertHandlerExt)
                      0000be18    0000001c     TRNGCC26XX.obj (.text:openTRNG)
                      0000be34    0000001c     simple_peripheral_cc2640r2lp_stack_library.lib : osal.obj (.text:osal_memdup)
                      0000be50    0000001c                                                    : osal.obj (.text:osal_revmemcpy)
                      0000be6c    0000001c     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Swi_construct2__E)
                      0000be88    0000001a     icall.obj (.text:ICall_enterCSImpl)
                      0000bea2    0000001a     simple_peripheral.obj (.text:SimpleBLEPeripheral_passcodeCB$1)
                      0000bebc    0000001a     simple_peripheral_cc2640r2lp_stack_library.lib : osal.obj (.text:osal_isbufset)
                      0000bed6    00000002     icall_api_lite.obj (.text:rfErrCb)
                      0000bed8    00000018     driverlib.lib : chipinfo.obj (.text:NOROM_ChipInfo_GetPackageType)
                      0000bef0    00000018                   : rfc.obj (.text:NOROM_RFCCpeIntGetAndClear)
                      0000bf08    00000018     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:Power_idleFunc)
                      0000bf20    00000018     RFCC26XX_singleMode.obj (.text:Q_pop$4)
                      0000bf38    00000018     RFCC26XX_singleMode.obj (.text:RF_runImmediateCmd)
                      0000bf50    00000018     simple_peripheral_cc2640r2lp_stack_library.lib : ble_dispatch_lite.obj (.text:bleDispatch_BMFree)
                      0000bf68    00000018     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:configureRFCoreClocks)
                      0000bf80    00000018                           : CryptoCC26XX.oem3 (.text:cryptoTransactionPoll)
                      0000bf98    00000018     app_ble_pem3.oem3 (.text:free)
                      0000bfb0    00000018     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrFindCharCfgItem$31)
                      0000bfc8    00000018                                                    : ble_dispatch_lite.obj (.text:icall_liteMsgParser)
                      0000bfe0    00000018                                                    : osal.obj (.text:osal_buffer_uint32)
                      0000bff8    00000018                                                    : osal.obj (.text:osal_memcpy)
                      0000c010    00000018     rtsv7M3_T_le_eabi.lib : args_main.obj (.text)
                      0000c028    00000018                           : ll_mul_t2.obj (.text)
                      0000c040    00000018                           : strcmp.obj (.text)
                      0000c058    00000018     RFCC26XX_singleMode.obj (.text:swiFxnFsm$4)
                      0000c070    00000018     app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsUnlock__I)
                      0000c088    00000018     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_heaps_HeapCallback_Instance_init__E)
                      0000c0a0    00000018                      : rom_sysbios.obj (.text:ti_sysbios_knl_Swi_or__E)
                      0000c0b8    00000018     app_ble_pem3.oem3 (.text:ti_sysbios_rom_cortexm_cc26xx_r2_CC26xx_checkRevision__E)
                      0000c0d0    00000018     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Error_init__E)
                      0000c0e8    00000016     icall.obj (.text:ICall_abort)
                      0000c0fe    00000016     icall.obj (.text:ICall_leaveCSImpl)
                      0000c114    00000016     icall.obj (.text:ICall_pwrDispense)
                      0000c12a    00000016     icall.obj (.text:ICall_pwrRequire)
                      0000c140    00000016     simple_peripheral_cc2640r2lp_stack_library.lib : rom_init.obj (.text:ROM_Spinlock)
                      0000c156    00000016     cc2640_ll_pxxx.a : ll_isr.o (.text)
                      0000c16c    00000016     ble_user_config.obj (.text:driverTable_fnSpinlock)
                      0000c182    00000016     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrEraseAllBondings$31)
                      0000c198    00000016     app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_errorRaiseHook__I)
                      0000c1ae    00000016     app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__I)
                      0000c1c4    00000014     RFCC26XX_singleMode.obj (.text:RF_Params_init)
                      0000c1d8    00000014     cc2640_ll_pxxx.a : ll_data.o (.text)
                      0000c1ec    00000014     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgr_gapIdle$31)
                      0000c200    00000014     rtsv7M3_T_le_eabi.lib : _lock.obj (.text)
                      0000c214    00000014                           : strlen.obj (.text)
                      0000c228    00000014     simple_peripheral_cc2640r2lp_stack_library.lib : osal_snv_wrapper.obj (.text:setActivePage$28)
                      0000c23c    00000014     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_getCount64__E)
                      0000c250    00000014     app_ble_pem3.oem3 (.text:ti_sysbios_heaps_HeapCallback_Object__get__S)
                      0000c264    00000014     app_ble_pem3.oem3 (.text:ti_sysbios_knl_Clock_doTick__I)
                      0000c278    00000012     RFCC26XX_singleMode.obj (.text:RF_getCmdOp)
                      0000c28a    00000012     dpl_cc26x0r2.aem3 : SemaphoreP_tirtos.oem3 (.text:SemaphoreP_pend)
                      0000c29c    00000012     rtsv7M3_T_le_eabi.lib : strcpy.obj (.text)
                      0000c2ae    00000012     app_ble_pem3.oem3 (.text:xdc_runtime_Startup_exec__I)
                      0000c2c0    00000010     dpl_cc26x0r2.aem3 : ClockP_tirtos.oem3 (.text:ClockP_isActive)
                      0000c2d0    00000010     gattservapp_util.obj (.text:GATTServApp_ReadCharCfg)
                      0000c2e0    00000010     dpl_cc26x0r2.aem3 : HwiP_tirtos.oem3 (.text:HwiP_Params_init)
                      0000c2f0    00000010     icall.obj (.text:ICall_taskEntry$6)
                      0000c300    00000010     simple_peripheral_cc2640r2lp_stack_library.lib : onboard.obj (.text:Onboard_rand)
                      0000c310    00000010     simple_peripheral.obj (.text:SimpleBLEPeripheral_clockHandler$1)
                      0000c320    00000010     dpl_cc26x0r2.aem3 : SwiP_tirtos.oem3 (.text:SwiP_Params_init)
                      0000c330    00000010     util.obj (.text:Util_isActive)
                      0000c340    00000010     cc2640_ll_pxxx.a : ll_isr.o (.text)
                      0000c350    00000010                      : ll_scheduler.o (.text)
                      0000c360    00000010     cc26xx_gap_pxxx.a : gap_linkmgr.o (.text)
                      0000c370    00000010     RFCC26XX_singleMode.obj (.text:clkPowerUpFxn$4)
                      0000c380    00000010     peripheral.obj (.text:gapRole_setEvent$14)
                      0000c390    00000010     simple_peripheral_cc2640r2lp_stack_library.lib : osal_memory_icall.obj (.text:osal_mem_alloc)
                      0000c3a0    00000010                                                    : osal_memory_icall.obj (.text:osal_mem_free)
                      0000c3b0    00000010                                                    : osal_snv_wrapper.obj (.text:setXferPage$28)
                      0000c3c0    00000010     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_getHandle__E)
                      0000c3d0    00000010                      : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_post__E)
                      0000c3e0    00000010                      : rom_sysbios.obj (.text:ti_sysbios_heaps_HeapCallback_alloc__E)
                      0000c3f0    00000010                      : rom_sysbios.obj (.text:ti_sysbios_heaps_HeapCallback_free__E)
                      0000c400    00000010                      : rom_sysbios.obj (.text:ti_sysbios_heaps_HeapCallback_getStats__E)
                      0000c410    00000010                      : rom_sysbios.obj (.text:ti_sysbios_heaps_HeapCallback_isBlocking__E)
                      0000c420    0000000e     icall.obj (.text:ICall_signal)
                      0000c42e    0000000e     util.obj (.text:Util_constructQueue)
                      0000c43c    0000000e     rtsv7M3_T_le_eabi.lib : copy_decompress_none.obj (.text:decompress:none)
                      0000c44a    0000000e     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E)
                      0000c458    0000000c     drivers_cc26x0r2.aem3 : CryptoCC26XX.oem3 (.text:CryptoCC26XX_init)
                      0000c464    0000000c     display.aem3 : Display.oem3 (.text:Display_doClearLines)
                      0000c470    0000000c     RFCC26XX_singleMode.obj (.text:FsmNextState$4)
                      0000c47c    0000000c     icall.obj (.text:ICall_clockFunc$6)
                      0000c488    0000000c     drivers_cc26x0r2.aem3 : List.oem3 (.text:List_empty)
                      0000c494    0000000c     driverlib.lib : cpu.obj (.text:NOROM_CPUcpsid)
                      0000c4a0    0000000c                   : cpu.obj (.text:NOROM_CPUcpsie)
                      0000c4ac    0000000c                   : osc.obj (.text:NOROM_OSC_HPOSCRelativeFrequencyOffsetToRFCoreFormatConvert)
                      0000c4b8    0000000c     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:Power_getConstraintMask)
                      0000c4c4    0000000c                           : PowerCC26XX.oem3 (.text:Power_getDependencyCount)
                      0000c4d0    0000000c     cc2640_ll_pxxx.a : ll_scheduler.o (.text)
                      0000c4dc    0000000c                      : ll_scheduler.o (.text)
                      0000c4e8    0000000c     cc26xx_hci_tl_none.a : hci_tl.o (.text)
                      0000c4f4    0000000c                          : hci_tl.o (.text)
                      0000c500    0000000c                          : hci_tl.o (.text)
                      0000c50c    0000000c     cc26xx_profiles_pxxx.a : gattservapp.o (.text)
                      0000c518    0000000c     rtsv7M3_T_le_eabi.lib : copy_zero_init.obj (.text:decompress:ZI)
                      0000c524    0000000c     icall.obj (.text:matchLiteCS$6)
                      0000c530    0000000c     icall.obj (.text:osalHeapGetStatsFxn)
                      0000c53c    0000000c     icall.obj (.text:osalHeapInitFxn)
                      0000c548    0000000c     simple_peripheral_cc2640r2lp_stack_library.lib : osal_cbtimer.obj (.text:osal_CbTimerStart)
                      0000c554    0000000c                                                    : osal.obj (.text:osal_self)
                      0000c560    0000000c     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_BIOS_getThreadType__E)
                      0000c56c    0000000c                      : rom_sysbios.obj (.text:ti_sysbios_knl_Swi_getTrigger__E)
                      0000c578    0000000c                      : rom_sysbios.obj (.text:ti_sysbios_knl_Swi_self__E)
                      0000c584    0000000c     app_ble_pem3.oem3 (.text:xdc_runtime_Startup_reset__I)
                      0000c590    0000000a     simple_peripheral_cc2640r2lp_stack_library.lib : hal_flash_wrapper.obj (.text:HalFlashWrite)
                      0000c59a    0000000a     icall.obj (.text:ICall_stopTimer)
                      0000c5a4    0000000a     simple_peripheral.obj (.text:SimpleBLEPeripheral_charValueChangeCB$1)
                      0000c5ae    0000000a     simple_peripheral.obj (.text:SimpleBLEPeripheral_stateChangeCB$1)
                      0000c5b8    00000008     drivers_cc26x0r2.aem3 : CryptoCC26XX.oem3 (.text:CryptoCC26XX_Params_init)
                      0000c5c0    00000008     RFCC26XX_singleMode.obj (.text:RF_flushCmd)
                      0000c5c8    00000008     drivers_cc26x0r2.aem3 : CryptoCC26XX.oem3 (.text:cryptoPostNotify)
                      0000c5d0    00000006     dpl_cc26x0r2.aem3 : ClockP_tirtos.oem3 (.text:ClockP_Params_init)
                      0000c5d6    00000006     drivers_cc26x0r2.aem3 : CryptoCC26XX.oem3 (.text:CryptoCC26XX_transact)
                      0000c5dc    00000006                           : CryptoCC26XX.oem3 (.text:CryptoCC26XX_transactPolling)
                      0000c5e2    00000006     icall.obj (.text:ICall_freeMsg)
                      0000c5e8    00000006     driverlib.lib : cpu.obj (.text:NOROM_CPUdelay)
                      0000c5ee    00000006     cc2640_ll_pxxx.a : ll_error_end_causes.o (.text)
                      0000c5f4    00000006     RFCC26XX_singleMode.obj (.text:clkInactivityFxn$4)
                      0000c5fa    00000006     icall.obj (.text:osalHeapAllocFxn)
                      0000c600    00000006     icall.obj (.text:osalHeapFreeFxn)
                      0000c606    00000006     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_setFunc__E)
                      0000c60c    00000004     dpl_cc26x0r2.aem3 : PowerCC26XX_tirtos.oem3 (.text:CPUwfi)
                      0000c610    00000004                       : ClockP_tirtos.oem3 (.text:ClockP_getTimeout)
                      0000c614    00000004                       : ClockP_tirtos.oem3 (.text:ClockP_setTimeout)
                      0000c618    00000004                       : ClockP_tirtos.oem3 (.text:ClockP_start)
                      0000c61c    00000004                       : ClockP_tirtos.oem3 (.text:ClockP_stop)
                      0000c620    00000004     simple_peripheral_cc2640r2lp_stack_library.lib : gap.obj (.text:GAP_UpdateResolvingList)
                      0000c624    00000004     dpl_cc26x0r2.aem3 : HwiP_tirtos.oem3 (.text:HwiP_disable)
                      0000c628    00000004                       : HwiP_tirtos.oem3 (.text:HwiP_enableInterrupt)
                      0000c62c    00000004                       : HwiP_tirtos.oem3 (.text:HwiP_post)
                      0000c630    00000004                       : HwiP_tirtos.oem3 (.text:HwiP_setFunc)
                      0000c634    00000004     icall.obj (.text:ICall_getTicks)
                      0000c638    00000004     icall.obj (.text:ICall_malloc)
                      0000c63c    00000004     drivers_cc26x0r2.aem3 : List.oem3 (.text:List_head)
                      0000c640    00000004                           : List.oem3 (.text:List_next)
                      0000c644    00000004     RFCC26XX_singleMode.obj (.text:Q_peek$4)
                      0000c648    00000004     dpl_cc26x0r2.aem3 : SemaphoreP_tirtos.oem3 (.text:SemaphoreP_post)
                      0000c64c    00000004                       : SwiP_tirtos.oem3 (.text:SwiP_disable)
                      0000c650    00000004                       : SwiP_tirtos.oem3 (.text:SwiP_getTrigger)
                      0000c654    00000004                       : SwiP_tirtos.oem3 (.text:SwiP_or)
                      0000c658    00000004     util.obj (.text:Util_startClock)
                      0000c65c    00000004     util.obj (.text:Util_stopClock)
                      0000c660    00000004     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:nopResourceHandler)
                      0000c664    00000004     icall.obj (.text:osalHeapIsBlockingFxn)
                      0000c668    00000004     simple_peripheral_cc2640r2lp_stack_library.lib : osal.obj (.text:osal_memset)
                      0000c66c    00000004                                                    : osal.obj (.text:osal_strlen)
                      0000c670    00000004     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_heaps_HeapCallback_defaultCreate)
                      0000c674    00000004                      : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_isActive__E)
                      0000c678    00000002     app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_nullFunc__I)
                      0000c67a    00000002     app_ble_pem3.oem3 (.text:ti_sysbios_rom_cortexm_cc26xx_r2_CC26xx_badRomRevision__E)
                      0000c67c    00000002     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_defaultAbort)
                      0000c67e    00000002                      : rom_sysbios.obj (.text:xdc_runtime_SysCallback_defaultExit)
                      0000c680    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E.1)
                      0000c688    00000008     (.tramp.ti_sysbios_knl_Queue_construct.1)
                      0000c690    00000008     ble_r2.symbols (.tramp.LL_PseudoRand.1)
                      0000c698    00000008     (.tramp.xdc_runtime_Startup_startMods__I.1)
                      0000c6a0    00000008     (.tramp.ti_sysbios_knl_Clock_logTick__E.1)
                      0000c6a8    00000008     ble_r2.symbols (.tramp.llResetRadio.1)
                      0000c6b0    00000008     (.tramp.ti_sysbios_knl_Swi_post__E.1)
                      0000c6b8    00000008     (.tramp.ti_sysbios_BIOS_RtsGateProxy_leave__E.1)
                      0000c6c0    00000008     (.tramp.xdc_runtime_Memory_free__E.1)
                      0000c6c8    00000008     (.tramp.ti_sysbios_knl_Swi_construct.1)
                      0000c6d0    00000008     (.tramp.ti_sysbios_BIOS_RtsGateProxy_enter__E.1)
                      0000c6d8    00000008     ble_r2.symbols (.tramp.llProcessTxData.1)
                      0000c6e0    00000008     ble_r2.symbols (.tramp.GAP_GetParamValue.1)
                      0000c6e8    00000008     ble_r2.symbols (.tramp.linkDB_State.1)
                      0000c6f0    00000008     ble_r2.symbols (.tramp.L2CAP_bm_alloc.1)
                      0000c6f8    00000008     (.tramp.ti_sysbios_knl_Semaphore_construct.1)
                      0000c700    00000008     (.tramp.xdc_runtime_Memory_alloc__E.1)
                      0000c708    00000008     ble_r2.symbols (.tramp.gattServApp_RegisterServiceCBs.1)
                      0000c710    00000008     ble_r2.symbols (.tramp.GATT_RegisterService.1)
                      0000c718    00000008     (.tramp.xdc_runtime_Core_createObject__I.1)
                      0000c720    00000008     (.tramp.ti_sysbios_knl_Task_startup__E.1)
                      0000c728    00000008     (.tramp.ti_sysbios_knl_Swi_startup__E.1)
                      0000c730    00000008     (.tramp.ti_sysbios_hal_Hwi_startup__E.1)
                      0000c738    00000008     (.tramp.ti_sysbios_family_arm_cc26xx_Timer_startup__E.1)
                      0000c740    00000008     (.tramp.xdc_runtime_System_atexit__E.1)
                      0000c748    00000008     (.tramp.ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E.1)
                      0000c750    00000008     (.tramp.ti_sysbios_knl_Swi_disable__E.1)
                      0000c758    00000008     ble_r2.symbols (.tramp.HCI_LE_AddWhiteListCmd.1)
                      0000c760    00000008     ble_r2.symbols (.tramp.HCI_LE_ClearWhiteListCmd.1)
                      0000c768    00000008     ble_r2.symbols (.tramp.HCI_LE_SetAddressResolutionEnableCmd.1)
                      0000c770    00000008     ble_r2.symbols (.tramp.smGenerateRandBuf.1)
                      0000c778    00000008     ble_r2.symbols (.tramp.GAP_PasscodeUpdate.1)
                      0000c780    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_construct.1)
                      0000c788    00000008     ble_r2.symbols (.tramp.GATT_UpdateMTU.1)
                      0000c790    00000008     ble_r2.symbols (.tramp.ATT_ExchangeMTURsp.1)
                      0000c798    00000008     ble_r2.symbols (.tramp.hciInitEventMasks.1)
                      0000c7a0    00000008     (.tramp.ti_sysbios_knl_Swi_Params__init__S.1)
                      0000c7a8    00000008     (.tramp.xdc_runtime_Startup_rtsDone__E.1)
                      0000c7b0    00000008     ble_r2.symbols (.tramp.gattServApp_ProcessMsg.1)
                      0000c7b8    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_Params__init__S.1)
                      0000c7c0    00000008     (.tramp.ti_sysbios_knl_Semaphore_create.1)
                      0000c7c8    00000008     (.tramp.ti_sysbios_knl_Semaphore_Params__init__S.1)
                      0000c7d0    00000008     ble_r2.symbols (.tramp.SM_ResponderInit.1)
                      0000c7d8    00000008     ble_r2.symbols (.tramp.GAP_PeriConnRegister.1)
                      0000c7e0    00000008     ble_r2.symbols (.tramp.GAP_PeriDevMgrInit.1)
                      0000c7e8    00000008     ble_r2.symbols (.tramp.GAP_SecParamsInit.1)
                      0000c7f0    00000008     ble_r2.symbols (.tramp.GAP_ParamsInit.1)
                      0000c7f8    00000008     (.tramp.xdc_runtime_System_exit__E.1)
                      0000c800    00000008     (.tramp.ti_sysbios_knl_Clock_construct.1)
                      0000c808    00000008     (.tramp.ti_sysbios_knl_Queue_put__E.1)
                      0000c810    00000008     (.tramp.ti_sysbios_knl_Event_create.1)
                      0000c818    00000008     ble_r2.symbols (.tramp.gattServApp_FindPrepareWriteQ.1)
                      0000c820    00000008     ble_r2.symbols (.tramp.linkDB_Register.1)
                      0000c828    00000008     ble_r2.symbols (.tramp.GATT_RegisterForReq.1)
                      0000c830    00000008     ble_r2.symbols (.tramp.gattServApp_SetNumPrepareWrites.1)
                      0000c838    00000008     (.tramp.ti_sysbios_knl_Task_restore__E.1)
                      0000c840    00000008     (.tramp.ti_sysbios_knl_Task_create.1)
                      0000c848    00000008     (.tramp.ti_sysbios_knl_Task_disable__E.1)
                      0000c850    00000008     ble_r2.symbols (.tramp.llTimeDelta.1)
                      0000c858    00000008     ble_r2.symbols (.tramp.GAP_Bond.1)
                      0000c860    00000008     ble_r2.symbols (.tramp.llVerifyConnParamReqParams.1)
                      0000c868    00000008     ble_r2.symbols (.tramp.GAP_GetIRK.1)
                      0000c870    00000008     ble_r2.symbols (.tramp.HCI_LE_ClearResolvingListCmd.1)
                      0000c878    00000008     ble_r2.symbols (.tramp.gapFreeAuthLink.1)
                      0000c880    00000008     ble_r2.symbols (.tramp.sendTerminateEvent.1)
                      0000c888    00000008     ble_r2.symbols (.tramp.disconnectNext.1)
                      0000c890    00000008     ble_r2.symbols (.tramp.linkDB_Remove.1)
                      0000c898    00000008     ble_r2.symbols (.tramp.linkDB_Role.1)
                      0000c8a0    00000008     ble_r2.symbols (.tramp.gattServApp_FindWriteAttrCB.1)
                      0000c8a8    00000008     (.tramp.xdc_runtime_Error_raiseX__E.1)
                      0000c8b0    00000008     (.tramp.ti_sysbios_BIOS_setThreadType__E.1)
                      0000c8b8    00000008     ble_r2.symbols (.tramp.llAddTxDataEntry.1)
                      0000c8c0    00000008     ble_r2.symbols (.tramp.LL_ENC_Encrypt.1)
                      0000c8c8    00000008     ble_r2.symbols (.tramp.LL_TX_bm_alloc.1)
                      0000c8d0    00000008     ble_r2.symbols (.tramp.GATT_bm_alloc.1)
                      0000c8d8    00000008     (.tramp.ti_sysbios_knl_Clock_create.1)
                      0000c8e0    00000008     (.tramp.ti_sysbios_knl_Clock_Params__init__S.1)
                      0000c8e8    00000008     (.tramp.ti_sysbios_knl_Clock_scheduleNextTick__E.1)
                      0000c8f0    00000008     (.tramp.ti_sysbios_knl_Clock_walkQueueDynamic__E.1)
                      0000c8f8    00000008     (.tramp.ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E.1)
                      0000c900    00000008     (.tramp.ti_sysbios_knl_Task_construct.1)
                      0000c908    00000008     (.tramp.ti_sysbios_knl_Task_Params__init__S.1)
                      0000c910    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_disableFxn__E.1)
                      0000c918    00000008     (.tramp.ti_sysbios_knl_Clock_stop__E.1)
                      0000c920    00000008     (.tramp.ti_sysbios_knl_Clock_start__E.1)
                      0000c928    00000008     (.tramp.ti_sysbios_knl_Clock_setTimeout__E.1)
                      0000c930    00000008     ble_r2.symbols (.tramp.sm_c1new.1)
                      0000c938    00000008     ble_r2.symbols (.tramp.smpBuildPairingReq.1)
                      0000c940    00000008     ble_r2.symbols (.tramp.smpBuildPairingRsp.1)
                      0000c948    00000008     ble_r2.symbols (.tramp.gapGetDevAddress.1)
                      0000c950    00000008     ble_r2.symbols (.tramp.gapGetDevAddressMode.1)
                      0000c958    00000008     ble_r2.symbols (.tramp.smSetPairingReqRsp.1)
                      0000c960    00000008     (.tramp.ti_sysbios_BIOS_start__E.1)
                      0000c968    00000008     ble_r2.symbols (.tramp.ATT_ReadByTypeRsp.1)
                      0000c970    00000008     ble_r2.symbols (.tramp.gattServApp_buildReadByTypeRsp.1)
                      0000c978    00000008     ble_r2.symbols (.tramp.GATT_VerifyReadPermissions.1)
                      0000c980    00000008     ble_r2.symbols (.tramp.ATT_GetMTU.1)
                      0000c988    00000008     ble_r2.symbols (.tramp.GAP_SendSlaveSecurityRequest.1)
                      0000c990    00000008     ble_r2.symbols (.tramp.GAP_Signable.1)
                      0000c998    00000008     ble_r2.symbols (.tramp.eccRom_genKeys.1)
                      0000c9a0    00000008     ble_r2.symbols (.tramp.GATT_FindHandleUUID.1)
                      0000c9a8    00000008     ble_r2.symbols (.tramp.LL_PRIV_Init.1)
                      0000c9b0    00000008     ble_r2.symbols (.tramp.llInitFeatureSet.1)
                      0000c9b8    00000008     ble_r2.symbols (.tramp.llReleaseAllConnId.1)
                      0000c9c0    00000008     ble_r2.symbols (.tramp.llConnCleanup.1)
                      0000c9c8    00000008     ble_r2.symbols (.tramp.LL_ClearWhiteList.1)
                      0000c9d0    00000008     ble_r2.symbols (.tramp.WL_Init.1)
                      0000c9d8    00000008     ble_r2.symbols (.tramp.llRfInit.1)
                      0000c9e0    00000008     ble_r2.symbols (.tramp.GAP_Authenticate.1)
                      0000c9e8    00000008     ble_r2.symbols (.tramp.L2CAP_GetMTU.1)
                      0000c9f0    00000008     ble_r2.symbols (.tramp.eccRom_genSharedSecret.1)
                      0000c9f8    00000008     (.tramp.ti_sysbios_knl_Semaphore_post__E.1)
                      0000ca00    00000008     (.tramp.ti_sysbios_knl_Semaphore_pend__E.1)
                      0000ca08    00000008     (.tramp.ti_sysbios_knl_Event_post__E.1)
                      0000ca10    00000008     (.tramp.ti_sysbios_knl_Clock_getTicks__E.1)
                      0000ca18    00000008     (.tramp.ti_sysbios_knl_Task_self__E.1)
                      0000ca20    00000008     ble_r2.symbols (.tramp.llCreateRxBuffer.1)
                      0000ca28    00000008     ble_r2.symbols (.tramp.llProcessSlaveControlPacket.1)
                      0000ca30    00000008     ble_r2.symbols (.tramp.llCombinePDU.1)
                      0000ca38    00000008     ble_r2.symbols (.tramp.LL_RxDataCompleteCback.1)
                      0000ca40    00000008     ble_r2.symbols (.tramp.LL_PRIV_UpdateRL.1)
                      0000ca48    00000008     ble_r2.symbols (.tramp.LL_ENC_Decrypt.1)
                      0000ca50    00000008     ble_r2.symbols (.tramp.RFHAL_NextDataEntryDone.1)
                      0000ca58    00000008     ble_r2.symbols (.tramp.RFHAL_GetNextDataEntry.1)
                      0000ca60    00000008     ble_r2.symbols (.tramp.llHaltRadio.1)
                      0000ca68    00000008     ble_r2.symbols (.tramp.LL_PRIV_UpdateExtWLEntry.1)
                      0000ca70    00000008     ble_r2.symbols (.tramp.WL_FindEntry.1)
                      0000ca78    00000008     ble_r2.symbols (.tramp.HCI_LE_AddDeviceToResolvingListCmd.1)
                      0000ca80    00000008     ble_r2.symbols (.tramp.HCI_LE_RemoveDeviceFromResolvingListCmd.1)
                      0000ca88    00000008     ble_r2.symbols (.tramp.GAP_TerminateAuth.1)
                      0000ca90    00000008     ble_r2.symbols (.tramp.linkDB_Find.1)
                      0000ca98    00000008     ble_r2.symbols (.tramp.smDetermineIOCaps.1)
                      0000caa0    00000008     ble_r2.symbols (.tramp.llSortActiveConns.1)
                      0000caa8    00000008     ble_r2.symbols (.tramp.llGetMinCI.1)
                      0000cab0    00000008     ble_r2.symbols (.tramp.llRealignConn.1)
                      0000cab8    00000008     ble_r2.symbols (.tramp.gattServApp_FindReadAttrCB.1)
                      0000cac0    00000008     ble_r2.symbols (.tramp.ATT_CompareUUID.1)
                      0000cac8    00000008     ble_r2.symbols (.tramp.GATT_FindNextAttr.1)
                      0000cad0    00000008     ble_r2.symbols (.tramp.GATT_FindHandle.1)
                      0000cad8    00000008     ble_r2.symbols (.tramp.gattServApp_FindAuthorizeAttrCB.1)
                      0000cae0    00000008     ble_r2.symbols (.tramp.llHardwareError.1)
                      0000cae8    00000008     ble_r2.symbols (.tramp.GAP_NumActiveConnections.1)
                      0000caf0    00000008     ble_r2.symbols (.tramp.linkDB_SecurityModeSCOnly.1)
                      0000caf8    00000008     ble_r2.symbols (.tramp.SM_SetECCRegenerationCount.1)
                      0000cb00    00000008     ble_r2.symbols (.tramp.GAP_SetParamValue.1)
                      0000cb08    00000008     (.tramp.ti_sysbios_knl_Swi_restore__E.1)
                      0000cb10    00000008     ble_r2.symbols (.tramp.GAP_RegisterBondMgrCBs.1)
                      0000cb18    00000008     ble_r2.symbols (.tramp.GATT_Init.1)
                      0000cb20    00000008     ble_r2.symbols (.tramp.SM_Init.1)
                      0000cb28    00000008     ble_r2.symbols (.tramp.GAP_Init.1)
                      0000cb30    00000008     ble_r2.symbols (.tramp.L2CAP_Init.1)
                      0000cb38    00000008     ble_r2.symbols (.tramp.L2CAP_SetUserConfig.1)
                      0000cb40    00000008     ble_r2.symbols (.tramp.llRfSetup.1)
                      0000cb48    00000008     ble_r2.symbols (.tramp.LL_PRIV_GenerateRPA.1)
                      0000cb50    00000008     ble_r2.symbols (.tramp.LL_PRIV_IsIDA.1)
                      0000cb58    00000008     ble_r2.symbols (.tramp.LL_PRIV_FindPeerInRL.1)
                      0000cb60    00000008     ble_r2.symbols (.tramp.LL_PRIV_IsResolvable.1)
                      0000cb68    00000008     ble_r2.symbols (.tramp.LL_PRIV_IsRPA.1)
                      0000cb70    00000008     ble_r2.symbols (.tramp.LL_PRIV_IsZeroIRK.1)
                      0000cb78    00000008     ble_r2.symbols (.tramp.LL_EnhancedConnectionCompleteCback.1)
                      0000cb80    00000008     ble_r2.symbols (.tramp.llTimeCompare.1)
                      0000cb88    00000008     ble_r2.symbols (.tramp.llGetCurrentTime.1)
                      0000cb90    00000008     ble_r2.symbols (.tramp.llProcessPostRfOps.1)
                      0000cb98    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_restoreFxn__E.1)
    
    .const     0    0000cba0    00000e1e     
                      0000cba0    00000a10     simple_peripheral_cc2640r2lp_stack_library.lib : rom_init.obj (.const:ROM_Flash_JT)
                      0000d5b0    0000004c     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.const:resourceDB)
                      0000d5fc    0000004c     ble_user_config.obj (.const:rfDriverTableBLE)
                      0000d648    00000048     app_ble_pem3.oem3 (.const:.string)
                      0000d690    00000044     icall_user_config.obj (.const:icallServiceTable)
                      0000d6d4    0000002c     gatt_uuid.obj (.const:$O9$$)
                      0000d700    0000002c     ble_user_config.obj (.const:cryptoDriverTableBLE)
                      0000d72c    00000028     CC2640_SENTRY.obj (.const:$O13$$)
                      0000d754    00000028     simple_peripheral_cc2640r2lp_stack_library.lib : osal_icall_ble.obj (.const:tasksArr)
                      0000d77c    00000028     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapCallback_Module__FXNS__C)
                      0000d7a4    00000028     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_sfxnTab__A)
                      0000d7cc    00000027     ble_user_config.obj (.const:TxPowerTable)
                      0000d7f3    00000001     CC2640_SENTRY.obj (.const)
                      0000d7f4    00000024     ble_user_config.obj (.const:bleStackConfig)
                      0000d818    00000020     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapCallback_Object__DESC__C)
                      0000d838    0000001c     RFCC26XX_singleMode.obj (.const:RF_defaultParams$4)
                      0000d854    0000001c     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapCallback_Object__PARAMS__C)
                      0000d870    00000018     icall.obj (.const:$O6$$)
                      0000d888    00000014     ble_user_config.obj (.const:driverTable)
                      0000d89c    00000014     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_sfxnRts__A)
                      0000d8b0    00000011     util.obj (.const:.string:$P$T0$2$2)
                      0000d8c1    00000002     devinfoservice.obj (.const:.string:devInfo11073CertUUID)
                      0000d8c3    00000001     display.aem3 : Display.oem3 (.const:Display_defaultParams)
                      0000d8c4    00000010     CC2640_SENTRY.obj (.const:PowerCC26XX_config)
                      0000d8d4    00000010     CC2640_SENTRY.obj (.const:cryptoCC26XXHWAttrs)
                      0000d8e4    00000010     icall_user_config.obj (.const:eccDriverTable)
                      0000d8f4    0000000c     ble_user_config.obj (.const:boardConfig)
                      0000d900    0000000c     devinfoservice.obj (.const:devInfoCBs)
                      0000d90c    0000000c     simple_gatt_profile.obj (.const:simpleProfileCBs)
                      0000d918    0000000c     icall_user_config.obj (.const:trngDriverTable)
                      0000d924    0000000c     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_firstFxns__A)
                      0000d930    00000008     CC2640_SENTRY.obj (.const:CryptoCC26XX_config)
                      0000d938    00000008     CC2640_SENTRY.obj (.const:PINCC26XX_hwAttrs)
                      0000d940    00000008     devinfoservice.obj (.const:devInfoService$11)
                      0000d948    00000008     simple_gatt_profile.obj (.const:simpleProfileService$15)
                      0000d950    00000008     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_excHookFuncs__A)
                      0000d958    00000006     ble_user_config.obj (.const:appTxPwrTbl)
                      0000d95e    00000005     simple_peripheral.obj (.const:.string:$P$T0$1$1)
                      0000d963    00000001     app_ble_pem3.oem3 (.const:xdc_runtime_Text_charTab__A)
                      0000d964    00000004     CC2640_SENTRY.obj (.const:TRNGCC26XXHWAttrs)
                      0000d968    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_E_exception__C)
                      0000d96c    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_E_noIsr__C)
                      0000d970    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_excHookFuncs__C)
                      0000d974    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_swiDisable__C)
                      0000d978    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_swiRestoreHwi__C)
                      0000d97c    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapCallback_Object__count__C)
                      0000d980    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapCallback_allocInstFxn__C)
                      0000d984    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapCallback_createInstFxn__C)
                      0000d988    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapCallback_freeInstFxn__C)
                      0000d98c    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapCallback_getStatsInstFxn__C)
                      0000d990    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapCallback_initInstFxn__C)
                      0000d994    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapCallback_isBlockingInstFxn__C)
                      0000d998    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Clock_tickPeriod__C)
                      0000d99c    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Idle_funcList__A)
                      0000d9a0    00000002     devinfoservice.obj (.const:.string:devInfoFirmwareRevUUID)
                      0000d9a2    00000002     devinfoservice.obj (.const:.string:devInfoHardwareRevUUID)
                      0000d9a4    00000002     devinfoservice.obj (.const:.string:devInfoMfrNameUUID)
                      0000d9a6    00000002     devinfoservice.obj (.const:.string:devInfoModelNumberUUID)
                      0000d9a8    00000002     devinfoservice.obj (.const:.string:devInfoPnpIdUUID)
                      0000d9aa    00000002     devinfoservice.obj (.const:.string:devInfoSerialNumberUUID)
                      0000d9ac    00000002     devinfoservice.obj (.const:.string:devInfoServUUID)
                      0000d9ae    00000002     devinfoservice.obj (.const:.string:devInfoSoftwareRevUUID)
                      0000d9b0    00000002     devinfoservice.obj (.const:.string:devInfoSystemIdUUID)
                      0000d9b2    00000002     simple_gatt_profile.obj (.const:.string:simpleProfileServUUID)
                      0000d9b4    00000002     simple_gatt_profile.obj (.const:.string:simpleProfilechar1UUID)
                      0000d9b6    00000002     simple_gatt_profile.obj (.const:.string:simpleProfilechar2UUID)
                      0000d9b8    00000002     simple_gatt_profile.obj (.const:.string:simpleProfilechar3UUID)
                      0000d9ba    00000002     simple_gatt_profile.obj (.const:.string:simpleProfilechar4UUID)
                      0000d9bc    00000002     simple_gatt_profile.obj (.const:.string:simpleProfilechar5UUID)
    
    .rodata    0    0000d9c0    00000090     
                      0000d9c0    00000038     cc2640_ll_pxxx.a : ll_config.o (.rodata)
                      0000d9f8    00000018     cc26xx_hci_tl_none.a : hci_tl.o (.rodata)
                      0000da10    0000000c     cc26xx_profiles_pxxx.a : gapgattserver.o (.rodata)
                      0000da1c    00000008     cc2640_ll_pxxx.a : ll_config.o (.rodata)
                      0000da24    00000008     cc26xx_profiles_pxxx.a : gapgattserver.o (.rodata)
                      0000da2c    00000008                            : gattservapp.o (.rodata)
                      0000da34    00000004     cc2640_ll_pxxx.a : ll_config.o (.rodata)
                      0000da38    00000004                      : ll_config.o (.rodata)
                      0000da3c    00000004                      : ll_config.o (.rodata)
                      0000da40    00000004                      : ll_config.o (.rodata)
                      0000da44    00000002                      : ll_config.o (.rodata)
                      0000da46    00000002                      : ll_config.o (.rodata)
                      0000da48    00000002                      : ll_config.o (.rodata)
                      0000da4a    00000002                      : ll_config.o (.rodata)
                      0000da4c    00000002                      : ll_config.o (.rodata)
                      0000da4e    00000001                      : ll_config.o (.rodata)
                      0000da4f    00000001                      : ll_config.o (.rodata)
    
    .cinit     0    0000da50    0000050c     
                      0000da50    000003c9     (.cinit..data.load) [load image, compression = lzss]
                      0000de19    00000029     (.cinit..data:ti_sysbios_family_arm_m3_Hwi_Module__state__V.load) [load image, compression = lzss]
                      0000de42    00000021     (.cinit..data:ti_sysbios_knl_Task_Module__state__V.load) [load image, compression = lzss]
                      0000de63    0000001f     (.cinit..data:ti_sysbios_BIOS_Module__state__V.load) [load image, compression = lzss]
                      0000de82    0000001e     (.cinit..data:ti_sysbios_knl_Clock_Module__state__V.load) [load image, compression = lzss]
                      0000dea0    00000010     (.cinit..data:ti_sysbios_knl_Swi_Module__state__V.load) [load image, compression = lzss]
                      0000deb0    0000000c     (__TI_handler_table)
                      0000debc    0000000b     (.cinit..data:ti_sysbios_family_arm_cc26xx_Timer_Module__state__V.load) [load image, compression = lzss]
                      0000dec7    00000001     --HOLE-- [fill = 0]
                      0000dec8    00000008     (.cinit..bss.load) [load image, compression = zero_init]
                      0000ded0    00000008     (.cinit..data:xdc_runtime_Memory_Module__state__V.load) [load image, compression = lzss]
                      0000ded8    00000007     (.cinit..data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V.load) [load image, compression = lzss]
                      0000dedf    00000007     (.cinit..data:xdc_runtime_Startup_Module__state__V.load) [load image, compression = lzss]
                      0000dee6    00000007     (.cinit..data:xdc_runtime_System_Module__state__V.load) [load image, compression = lzss]
                      0000deed    00000006     (.cinit..data:xdc_runtime_Error_Module__state__V.load) [load image, compression = lzss]
                      0000def3    00000001     --HOLE-- [fill = 0]
                      0000def4    00000068     (__TI_cinit_table)
    
    .snvSectors 
    *          0    0001e000    00001000     
                      0001e000    00001000     simple_peripheral_cc2640r2lp_stack_library.lib : osal_snv_wrapper.obj (.snvSectors:retain)
    
    .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:xdc_runtime_Error_Module__state__V 
    *          0    20000204    00000002     UNINITIALIZED
                      20000204    00000002     app_ble_pem3.oem3 (.data:xdc_runtime_Error_Module__state__V)
    
    .bootVecs 
    *          0    00000000    00000008     DSECT
                      00000000    00000008     boot.aem3 : boot.oem3 (.bootVecs)
    
    xdc.meta   0    00000000    00000106     COPY SECTION
                      00000000    00000106     app_ble_pem3.oem3 (xdc.meta)
    
    xdc.noload 
    *          0    00000000    00000000     COPY SECTION
    
    .init_array 
    *          0    00000000    00000000     UNINITIALIZED
    
    .data      0    20000208    00001618     UNINITIALIZED
                      20000208    00000364     simple_peripheral.obj (.data:$O2$$)
                      2000056c    00000004     simple_peripheral_cc2640r2lp_stack_library.lib : osal_pwrmgr.obj (.data:$O15$$)
                      20000570    00000340     peripheral.obj (.data:$O10$$)
                      200008b0    00000238     RFCC26XX_singleMode.obj (.data:$O4$$)
                      20000ae8    000001d4     devinfoservice.obj (.data:$O8$$)
                      20000cbc    00000194     rtsv7M3_T_le_eabi.lib : defs.obj (.data:$O25$$)
                      20000e50    00000174     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.data:$O18$$)
                      20000fc4    00000124     simple_gatt_profile.obj (.data:$O11$$)
                      200010e8    00000114     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.data:PowerCC26XX_module)
                      200011fc    000000d0     rtsv7M3_T_le_eabi.lib : lowlev.obj (.data:$O24$$)
                      200012cc    0000009c     icall.obj (.data:$O5$$)
                      20001368    0000007c     simple_peripheral_cc2640r2lp_stack_library.lib : osal_cbtimer.obj (.data:$O21$$)
                      200013e4    00000070     cc26xx_profiles_pxxx.a : gapgattserver.o (.data)
                      20001454    0000004c     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Task_Object__table__V)
                      200014a0    00000048     app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_cc26xx_Timer_Object__table__V)
                      200014e8    00000038     app_ble_pem3.oem3 (.data:ti_sysbios_gates_GateMutex_Object__table__V)
                      20001520    00000030     cc2640_ll_pxxx.a : ll_config.o (.data)
                      20001550    00000030     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Swi_Module_State_0_readyQ__A)
                      20001580    00000030     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Swi_Object__table__V)
                      200015b0    00000030     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Task_Module_State_0_readyQ__A)
                      200015e0    0000002c     simple_peripheral_cc2640r2lp_stack_library.lib : osal.obj (.data:$O14$$)
                      2000160c    00000024     cc26xx_profiles_pxxx.a : gapgattserver.o (.data)
                      20001630    00000020     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Clock_Object__table__V)
                      20001650    00000020     app_ble_pem3.oem3 (.data:xdc_runtime_Error_IgnoreBlock)
                      20001670    00000018     main.obj (.data:$O12$$)
                      20001688    00000018     app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Object__table__V)
                      200016a0    00000011     simple_gatt_profile.obj (.data:simpleProfileChar1UserDesp$15)
                      200016b1    00000011     simple_gatt_profile.obj (.data:simpleProfileChar2UserDesp$15)
                      200016c2    00000011     simple_gatt_profile.obj (.data:simpleProfileChar3UserDesp$15)
                      200016d3    00000011     simple_gatt_profile.obj (.data:simpleProfileChar4UserDesp$15)
                      200016e4    00000011     simple_gatt_profile.obj (.data:simpleProfileChar5UserDesp$15)
                      200016f5    00000001     TRNGCC26XX.obj (.data)
                      200016f6    00000002     app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A)
                      200016f8    00000010     icall_user_config.obj (.data:bleAppServiceInfoTable)
                      20001708    00000010     cc26xx_profiles_pxxx.a : gattservapp.o (.data)
                      20001718    00000010     icall_api_lite.obj (.data)
                      20001728    00000010     ble_user_config.obj (.data:rfRegTbl)
                      20001738    0000000c     rtsv7M3_T_le_eabi.lib : exit.obj (.data:$O1$$)
                      20001744    0000000c     app_ble_pem3.oem3 (.data:ti_sysbios_heaps_HeapCallback_Object__table__V)
                      20001750    00000009     devinfoservice.obj (.data)
                      20001759    00000001     cc26xx_profiles_pxxx.a : gapgattserver.o (.data)
                      2000175a    00000001                            : gapgattserver.o (.data)
                      2000175b    00000001                            : gapgattserver.o (.data)
                      2000175c    00000008     simple_peripheral_cc2640r2lp_stack_library.lib : hal_assert.obj (.data:$O20$$)
                      20001764    00000008                                                    : osal_clock.obj (.data:$O22$$)
                      2000176c    00000008     rtsv7M3_T_le_eabi.lib : _lock.obj (.data:$O23$$)
                      20001774    00000008     ECCROMCC26XX.obj (.data:$O3$$)
                      2000177c    00000008     icall_cc2650.obj (.data:$O7$$)
                      20001784    00000008     cc2640_ll_pxxx.a : ll_data.o (.data)
                      2000178c    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module__root__V)
                      20001794    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_gates_GateHwi_Module__root__V)
                      2000179c    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_gates_GateMutex_Module__root__V)
                      200017a4    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_hal_Hwi_Module__root__V)
                      200017ac    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_heaps_HeapCallback_Module__root__V)
                      200017b4    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_heaps_HeapMem_Module__root__V)
                      200017bc    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Clock_Module__root__V)
                      200017c4    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Event_Module__root__V)
                      200017cc    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Mailbox_Module__root__V)
                      200017d4    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Queue_Module__root__V)
                      200017dc    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Semaphore_Module__root__V)
                      200017e4    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Swi_Module__root__V)
                      200017ec    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Task_Module__root__V)
                      200017f4    00000005     simple_gatt_profile.obj (.data)
                      200017f9    00000001     simple_peripheral_cc2640r2lp_stack_library.lib : npi.obj (.data)
                      200017fa    00000002     --HOLE--
                      200017fc    00000004                                                    : osal_snv_wrapper.obj (.data:$O16$$)
                      20001800    00000004     CC2640_SENTRY.obj (.data)
                      20001804    00000004     ble_user_config.obj (.data)
                      20001808    00000004     rtsv7M3_T_le_eabi.lib : stkdepth_vars.obj (.data)
                      2000180c    00000004     simple_peripheral_cc2640r2lp_stack_library.lib : ble_user_config.obj (.data)
                      20001810    00000004                                                    : osal_bufmgr.obj (.data)
                      20001814    00000004     app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A)
                      20001818    00000004     app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A)
                      2000181c    00000004     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Task_Module_State_0_idleTask__A)
    
    .bss       0    20001820    00000608     UNINITIALIZED
                      20001820    00000200     app_ble_pem3.oem3 (.bss:taskStackSection)
                      20001a20    00000120     rtsv7M3_T_le_eabi.lib : trgmsg.obj (.bss:_CIOBUF_)
                      20001b40    00000110     drivers_cc26x0r2.aem3 : PINCC26XX.oem3 (.bss:$O1$$)
                      20001c50    000000c8     (.common:ti_sysbios_family_arm_m3_Hwi_dispatchTable)
                      20001d18    00000080     (.common:cryptoCC26XXObjects)
                      20001d98    0000001c                           : CryptoCC26XX.oem3 (.bss:CryptoSem)
                      20001db4    00000014     driverlib.lib : osc.obj (.bss:oscHfGlobals$76)
                      20001dc8    00000010     util.obj (.bss:str$1$2)
                      20001dd8    0000000c     simple_peripheral_cc2640r2lp_stack_library.lib : osal_timers.obj (.bss:$O17$$)
                      20001de4    0000000c     cc2640_ll_pxxx.a : ll_scheduler.o (.bss)
                      20001df0    00000008     dpl_cc26x0r2.aem3 : PowerCC26XX_tirtos.oem3 (.bss:$O1$$)
                      20001df8    00000008     RFCC26XX_singleMode.obj (.bss)
                      20001e00    00000008     rtsv7M3_T_le_eabi.lib : trgdrv.obj (.bss:parmbuf$61)
                      20001e08    00000008     driverlib.lib : sys_ctrl.obj (.bss:powerQualGlobals$77)
                      20001e10    00000004     cc26xx_profiles_pxxx.a : gapgattserver.o (.bss)
                      20001e14    00000004     (.common:ClockP_tickPeriod)
                      20001e18    00000004     (.common:tasksEvents)
                      20001e1c    00000004     (.common:trngCC26XXObjects)
                      20001e20    00000001     cc26xx_hci_tl_none.a : hci_tl.o (.bss)
                      20001e21    00000001                          : hci_tl.o (.bss)
                      20001e22    00000001                          : hci_tl.o (.bss)
                      20001e23    00000001                          : hci_tl.o (.bss)
                      20001e24    00000001                          : hci_tl.o (.bss)
                      20001e25    00000001     (.common:driverlib_release_0_48919)
                      20001e26    00000001     (.common:g_hwiInt)
                      20001e27    00000001     (.common:icall_liteTaskId)
    
    .vtable    0    20001e28    00000000     UNINITIALIZED
    
    .vtable_ram 
    *          0    20001e28    00000000     UNINITIALIZED
    
    vtable_ram 
    *          0    20001e28    00000000     UNINITIALIZED
    
    .sysmem    0    20001e28    00000000     UNINITIALIZED
    
    .nonretenvar 
    *          0    20001e28    00000000     UNINITIALIZED
    
    .stack     0    20004000    00000400     UNINITIALIZED
                      20004000    00000400     --HOLE--
    
    MODULE SUMMARY
    
           Module                                   code    ro data   rw data
           ------                                   ----    -------   -------
        .\Application\
           simple_peripheral.obj                    2706    5         868    
           util.obj                                 246     17        16     
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   2952    22        884    
                                                                             
        .\Drivers\ECC\
           ECCROMCC26XX.obj                         912     0         8      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   912     0         8      
                                                                             
        .\Drivers\RF\
           RFCC26XX_singleMode.obj                  4950    28        576    
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   4950    28        576    
                                                                             
        .\Drivers\TRNG\
           TRNGCC26XX.obj                           272     0         1      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   272     0         1      
                                                                             
        .\ICallBLE\
           ble_user_config.obj                      24      233       20     
           icall_api_lite.obj                       2       0         16     
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   26      233       36     
                                                                             
        .\ICall\
           icall.obj                                2474    24        156    
           icall_user_config.obj                    0       96        16     
           icall_cc2650.obj                         92      0         8      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   2566    120       180    
                                                                             
        .\PROFILES\
           peripheral.obj                           2632    0         832    
           simple_gatt_profile.obj                  564     32        382    
           devinfoservice.obj                       176     40        477    
           gattservapp_util.obj                     236     0         0      
           gatt_uuid.obj                            0       44        0      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   3608    116       1691   
                                                                             
        .\Startup\
           main.obj                                 712     0         24     
           ccfg_app_ble.obj                         0       88        0      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   712     88        24     
                                                                             
        .\boardFiles\
           CC2640_SENTRY.obj                        0       93        4      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   0       93        4      
                                                                             
        C:\Users\r\AppData\Local\Temp\
           {477DDF78-C24B-4CEB-B200-E2CBA54AFF9F}   0       0         138    
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   0       0         138    
                                                                             
        C:\Users\r\workspace_v7\simple_peripheral_cc2640r2lp_app\FlashROM_StackLibrary\configPkg\package\cfg\
           app_ble_pem3.oem3                        576     1181      1740   
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   576     1181      1740   
                                                                             
        C:\Users\r\workspace_v7\simple_peripheral_cc2640r2lp_stack_library\FlashROM_Library\
           ble_r2.symbols                           920     0         0      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   920     0         0      
                                                                             
        C:/Users/r/workspace_v7/simple_peripheral_cc2640r2lp_stack_library/FlashROM_Library/simple_peripheral_cc2640r2lp_stack_library.lib
           osal_snv_wrapper.obj                     1058    4096      4      
           gapbondmgr.obj                           4068    0         372    
           rom_init.obj                             22      2576      0      
           osal.obj                                 1636    0         44     
           osal_timers.obj                          760     0         12     
           icall_startup.obj                        700     0         0      
           osal_cbtimer.obj                         504     0         124    
           osal_bufmgr.obj                          212     0         4      
           ble_dispatch_lite.obj                    204     0         0      
           hal_flash_wrapper.obj                    90      0         0      
           npi.obj                                  80      0         1      
           gap.obj                                  70      0         0      
           hal_assert.obj                           32      0         8      
           osal_icall_ble.obj                       0       40        0      
           osal_memory_icall.obj                    32      0         0      
           onboard.obj                              18      0         0      
           osal_clock.obj                           0       0         8      
           ble_user_config.obj                      0       0         4      
           osal_pwrmgr.obj                          0       0         4      
           sm_ecc.obj                               4       0         0      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   9490    6712      585    
                                                                             
        C:/ti/simplelink_cc2640r2_sdk_1_40_00_45/kernel/tirtos/packages/ti/dpl/lib/dpl_cc26x0r2.aem3
           PowerCC26XX_tirtos.oem3                  280     0         8      
           ClockP_tirtos.oem3                       110     0         4      
           HwiP_tirtos.oem3                         96      0         0      
           SwiP_tirtos.oem3                         88      0         0      
           SemaphoreP_tirtos.oem3                   66      0         0      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   640     0         12     
                                                                             
        C:/ti/simplelink_cc2640r2_sdk_1_40_00_45/source/ti/devices/cc26x0r2/driverlib/bin/ccs/driverlib.lib
           sys_ctrl.obj                             732     0         8      
           setup.obj                                328     0         0      
           osc.obj                                  284     0         20     
           crypto.obj                               144     0         0      
           chipinfo.obj                             68      0         0      
           rfc.obj                                  68      0         0      
           flash.obj                                56      0         0      
           adi.obj                                  40      0         0      
           cpu.obj                                  30      0         0      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   1750    0         28     
                                                                             
        C:/ti/simplelink_cc2640r2_sdk_1_40_00_45/source/ti/display/lib/display.aem3
           Display.oem3                             146     1         0      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   146     1         0      
                                                                             
        C:/ti/simplelink_cc2640r2_sdk_1_40_00_45/source/ti/drivers/lib/drivers_cc26x0r2.aem3
           PowerCC26XX.oem3                         2164    76        276    
           PowerCC26XX_calibrateRCOSC.oem3          1388    0         0      
           CryptoCC26XX.oem3                        1116    0         29     
           PINCC26XX.oem3                           776     0         272    
           List.oem3                                54      0         0      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   5498    76        577    
                                                                             
        C:\Users\r\workspace_v7\simple_peripheral_cc2640r2lp_app\TOOLS\src\sysbios\rom_sysbios.aem3
           rom_sysbios.obj                          1444    0         0      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   1444    0         0      
                                                                             
        C:\ti\ccsv7\tools\compiler\ti-cgt-arm_16.9.3.LTS\lib\rtsv7M3_T_le_eabi.lib
           trgdrv.obj                               540     0         8      
           ull_div_t2.obj                           500     0         0      
           fputs.obj                                440     0         0      
           defs.obj                                 0       0         404    
           lowlev.obj                               192     0         208    
           trgmsg.obj                               104     0         288    
           setvbuf.obj                              212     0         0      
           fclose.obj                               188     0         0      
           memcpy_t2.obj                            156     0         0      
           memset_t2.obj                            122     0         0      
           copy_decompress_lzss.obj                 104     0         0      
           exit.obj                                 84      0         12     
           cpy_tbl.obj                              76      0         0      
           fflush.obj                               76      0         0      
           fopen.obj                                52      0         0      
           strncpy.obj                              52      0         0      
           memchr.obj                               32      0         0      
           _lock.obj                                20      0         8      
           args_main.obj                            24      0         0      
           ll_mul_t2.obj                            24      0         0      
           strcmp.obj                               24      0         0      
           strlen.obj                               20      0         0      
           strcpy.obj                               18      0         0      
           copy_decompress_none.obj                 14      0         0      
           copy_zero_init.obj                       12      0         0      
           stkdepth_vars.obj                        0       0         4      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   3086    0         932    
                                                                             
        C:\ti\simplelink_cc2640r2_sdk_1_40_00_45\kernel\tirtos\packages\ti\targets\arm\rtsarm\lib\auto_init.aem3
           auto_init.oem3                           160     0         0      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   160     0         0      
                                                                             
        C:\ti\simplelink_cc2640r2_sdk_1_40_00_45\kernel\tirtos\packages\ti\targets\arm\rtsarm\lib\boot.aem3
           boot.oem3                                68      0         0      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   68      0         0      
                                                                             
        C:\ti\simplelink_cc2640r2_sdk_1_40_00_45\source\ti\blestack\blelib\ctrl\cc2640_hci_pxxx.a
           hci_event.o                              124     0         0      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   124     0         0      
                                                                             
        C:\ti\simplelink_cc2640r2_sdk_1_40_00_45\source\ti\blestack\blelib\ctrl\cc2640_ll_pxxx.a
           ll.o                                     2712    0         0      
           ll_scheduler.o                           1812    0         12     
           ll_isr.o                                 1542    0         0      
           ll_common.o                              774     0         0      
           ll_enc.o                                 144     0         0      
           ll_config.o                              0       92        48     
           ll_data.o                                20      0         8      
           ll_error_end_causes.o                    6       0         0      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   7010    92        68     
                                                                             
        C:\ti\simplelink_cc2640r2_sdk_1_40_00_45\source\ti\blestack\blelib\hci_tl\cc26xx_hci_tl_none.a
           hci_tl.o                                 240     24        5      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   240     24        5      
                                                                             
        C:\ti\simplelink_cc2640r2_sdk_1_40_00_45\source\ti\blestack\blelib\host\cc26xx_gap_pxxx.a
           gap_linkmgr.o                            140     0         0      
           gap_configmgr.o                          48      0         0      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   188     0         0      
                                                                             
        C:\ti\simplelink_cc2640r2_sdk_1_40_00_45\source\ti\blestack\blelib\host\cc26xx_l2cap_pxxx.a
           l2cap_util.o                             56      0         0      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   56      0         0      
                                                                             
        C:\ti\simplelink_cc2640r2_sdk_1_40_00_45\source\ti\blestack\blelib\host\cc26xx_profiles_pxxx.a
           gattservapp.o                            1694    8         16     
           gapgattserver.o                          736     20        155    
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   2430    28        171    
                                                                             
        C:\ti\simplelink_cc2640r2_sdk_1_40_00_45\source\ti\blestack\blelib\host\cc26xx_sm_pxxx.a
           sm_pairing.o                             980     0         0      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   980     0         0      
                                                                             
           Stack:                                   0       0         1024   
           Linker Generated:                        448     1290      0      
        +--+----------------------------------------+-------+---------+---------+
           Grand Total:                             51252   10104     8684   
    
    
    LINKER GENERATED COPY TABLES
    
    __TI_cinit_table @ 0000def4 records: 13, size/record: 8, table size: 104
    	.data: load addr=0000da50, load size=000003c9 bytes, run addr=20000208, run size=00001618 bytes, compression=lzss
    	.data:ti_sysbios_family_arm_m3_Hwi_Module__state__V: load addr=0000de19, load size=00000029 bytes, run addr=20000144, run size=00000034 bytes, compression=lzss
    	.data:ti_sysbios_knl_Task_Module__state__V: load addr=0000de42, load size=00000021 bytes, run addr=20000100, run size=00000044 bytes, compression=lzss
    	.data:ti_sysbios_BIOS_Module__state__V: load addr=0000de63, load size=0000001f bytes, run addr=200001a4, run size=00000024 bytes, compression=lzss
    	.data:ti_sysbios_knl_Clock_Module__state__V: load addr=0000de82, load size=0000001e bytes, run addr=20000178, run size=0000002c bytes, compression=lzss
    	.data:ti_sysbios_knl_Swi_Module__state__V: load addr=0000dea0, load size=00000010 bytes, run addr=200001c8, run size=0000001c bytes, compression=lzss
    	.data:ti_sysbios_family_arm_cc26xx_Timer_Module__state__V: load addr=0000debc, load size=0000000b bytes, run addr=200001e4, run size=00000008 bytes, compression=lzss
    	.bss: load addr=0000dec8, load size=00000008 bytes, run addr=20001820, run size=00000608 bytes, compression=zero_init
    	.data:xdc_runtime_Memory_Module__state__V: load addr=0000ded0, load size=00000008 bytes, run addr=20000200, run size=00000004 bytes, compression=lzss
    	.data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V: load addr=0000ded8, load size=00000007 bytes, run addr=200001ec, run size=00000004 bytes, compression=lzss
    	.data:xdc_runtime_Startup_Module__state__V: load addr=0000dedf, load size=00000007 bytes, run addr=200001f0, run size=00000008 bytes, compression=lzss
    	.data:xdc_runtime_System_Module__state__V: load addr=0000dee6, load size=00000007 bytes, run addr=200001f8, run size=00000008 bytes, compression=lzss
    	.data:xdc_runtime_Error_Module__state__V: load addr=0000deed, load size=00000006 bytes, run addr=20000204, run size=00000002 bytes, compression=lzss
    
    
    LINKER GENERATED HANDLER TABLE
    
    __TI_handler_table @ 0000deb0 records: 3, size/record: 4, table size: 12
    	index: 0, handler: __TI_decompress_lzss
    	index: 1, handler: __TI_decompress_none
    	index: 2, handler: __TI_zero_init
    
    
    FAR CALL TRAMPOLINES
    
    callee name               trampoline name
       callee addr  tramp addr   call addr  call info
    --------------  -----------  ---------  ----------------
    ti_sysbios_knl_Event_pend__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Event_pend__E
       10019bf9     00000754     00000318   simple_peripheral.obj (.text:SimpleBLEPeripheral_taskFxn$1)
                                 00001444   peripheral.obj (.text:gapRole_taskFxn$14)
                                 000053a0   icall.obj (.text:icall_directAPI)
                                 00009c30   icall.obj (.text:ICall_wait)
    GATT_bm_free              $Tramp$TT$L$PI$$GATT_bm_free
       10018489     0000075c     000003ee   simple_peripheral.obj (.text:SimpleBLEPeripheral_taskFxn$1)
                                 00005eb2   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_ProcessEvent)
                                 00008810   gattservapp_util.obj (.text:gattServApp_SendNotiInd$13)
                                 0000945e   simple_peripheral.obj (.text:SimpleBLEPeripheral_freeAttRsp$1)
                                 0000a84a   cc26xx_profiles_pxxx.a : gattservapp.o (.text)
                                 0000bf5c   simple_peripheral_cc2640r2lp_stack_library.lib : ble_dispatch_lite.obj (.text:bleDispatch_BMFree)
    ti_sysbios_knl_Queue_get__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_get__E
       1001bd19     00000764     000004d8   simple_peripheral.obj (.text:SimpleBLEPeripheral_taskFxn$1)
    ti_sysbios_knl_Queue_empty__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_empty__E
       1001bf4f     0000076c     0000063e   simple_peripheral.obj (.text:SimpleBLEPeripheral_taskFxn$1)
    LL_ENC_GenerateTrueRandNum  $Tramp$TT$L$PI$$LL_ENC_GenerateTrueRandNum
       100171e5     00000d34     00000c74   cc2640_ll_pxxx.a : ll.o (.text)
    LL_PRIV_GenerateRSA       $Tramp$TT$L$PI$$LL_PRIV_GenerateRSA
       10016e1d     00000d3c     00000c7a   cc2640_ll_pxxx.a : ll.o (.text)
    LL_ENC_Init               $Tramp$TT$L$PI$$LL_ENC_Init
       1001714d     00000d44     00000c7e   cc2640_ll_pxxx.a : ll.o (.text)
    ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E
       1001af89     0000c680     0000c628   dpl_cc26x0r2.aem3 : HwiP_tirtos.oem3 (.text:HwiP_enableInterrupt)
    ti_sysbios_knl_Queue_construct  $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_construct
       1001b6a1     0000c688     0000c434   util.obj (.text:Util_constructQueue)
    LL_PseudoRand             $Tramp$TT$L$PI$$LL_PseudoRand
       10004ac1     0000c690     0000c306   simple_peripheral_cc2640r2lp_stack_library.lib : onboard.obj (.text:Onboard_rand)
    xdc_runtime_Startup_startMods__I  $Tramp$TT$L$PI$$xdc_runtime_Startup_startMods__I
       1001c129     0000c698     0000c2b8   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
       1001b843     0000c6a0     0000c266   app_ble_pem3.oem3 (.text:ti_sysbios_knl_Clock_doTick__I)
    llResetRadio              $Tramp$TT$L$PI$$llResetRadio
       10007071     0000c6a8     0000c168   cc2640_ll_pxxx.a : ll_isr.o (.text)
    ti_sysbios_knl_Swi_post__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_post__E
       1001b011     0000c6b0     0000c0b4   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Swi_or__E)
                                 0000c26e   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
       1001c095     0000c6b8     0000c07e   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsUnlock__I)
    xdc_runtime_Memory_free__E  $Tramp$TT$L$PI$$xdc_runtime_Memory_free__E
       1001c705     0000c6c0     0000bfaa   app_ble_pem3.oem3 (.text:free)
    ti_sysbios_knl_Swi_construct  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_construct
       1001ad79     0000c6c8     0000be72   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Swi_construct2__E)
    ti_sysbios_BIOS_RtsGateProxy_enter__E  $Tramp$TT$L$PI$$ti_sysbios_BIOS_RtsGateProxy_enter__E
       1001c091     0000c6d0     0000bbfa   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsLock__I)
    llProcessTxData           $Tramp$TT$L$PI$$llProcessTxData
       100086dd     0000c6d8     0000bae8   cc2640_ll_pxxx.a : ll_isr.o (.text)
    GAP_GetParamValue         $Tramp$TT$L$PI$$GAP_GetParamValue
       100184f5     0000c6e0     0000b5e4   cc26xx_sm_pxxx.a : sm_pairing.o (.text)
    linkDB_State              $Tramp$TT$L$PI$$linkDB_State
       10017fb1     0000c6e8     0000b5c2   cc26xx_profiles_pxxx.a : gattservapp.o (.text)
    L2CAP_bm_alloc            $Tramp$TT$L$PI$$L2CAP_bm_alloc
       1001542d     0000c6f0     0000b59e   simple_peripheral_cc2640r2lp_stack_library.lib : ble_dispatch_lite.obj (.text:bleDispatch_BMAlloc)
    ti_sysbios_knl_Semaphore_construct  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_construct
       1001b45d     0000c6f8     0000b57e   dpl_cc26x0r2.aem3 : SemaphoreP_tirtos.oem3 (.text:SemaphoreP_constructBinary)
    xdc_runtime_Memory_alloc__E  $Tramp$TT$L$PI$$xdc_runtime_Memory_alloc__E
       1001c349     0000c700     0000b496   app_ble_pem3.oem3 (.text:ti_sysbios_rts_gnu_MemAlloc_alloc)
    gattServApp_RegisterServiceCBs  $Tramp$TT$L$PI$$gattServApp_RegisterServiceCBs
       10010881     0000c708     0000b444   cc26xx_profiles_pxxx.a : gattservapp.o (.text)
    GATT_RegisterService      $Tramp$TT$L$PI$$GATT_RegisterService
       1000fb09     0000c710     0000b436   cc26xx_profiles_pxxx.a : gattservapp.o (.text)
    xdc_runtime_Core_createObject__I  $Tramp$TT$L$PI$$xdc_runtime_Core_createObject__I
       1001c2c9     0000c718     0000b3a8   app_ble_pem3.oem3 (.text:ti_sysbios_heaps_HeapCallback_Object__create__S)
    ti_sysbios_knl_Task_startup__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_startup__E
       1001c125     0000c720     0000b388   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
       1001c085     0000c728     0000b384   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
       1001c04b     0000c730     0000b380   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
       1001b4e9     0000c738     0000b37c   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    xdc_runtime_System_atexit__E  $Tramp$TT$L$PI$$xdc_runtime_System_atexit__E
       1001c581     0000c740     0000b374   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E  $Tramp$TT$L$PI$$ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E
       1001a683     0000c748     0000b36e   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    ti_sysbios_knl_Swi_disable__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_disable__E
       1001bf11     0000c750     0000b336   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
                                 0000c64c   dpl_cc26x0r2.aem3 : SwiP_tirtos.oem3 (.text:SwiP_disable)
    HCI_LE_AddWhiteListCmd    $Tramp$TT$L$PI$$HCI_LE_AddWhiteListCmd
       1000adc9     0000c758     0000b2f0   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgr_SyncWhiteList$31)
    HCI_LE_ClearWhiteListCmd  $Tramp$TT$L$PI$$HCI_LE_ClearWhiteListCmd
       1000ada9     0000c760     0000b2d6   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgr_SyncWhiteList$31)
    HCI_LE_SetAddressResolutionEnableCmd  $Tramp$TT$L$PI$$HCI_LE_SetAddressResolutionEnableCmd
       1000b24d     0000c768     0000b29a   cc26xx_gap_pxxx.a : gap_configmgr.o (.text)
    smGenerateRandBuf         $Tramp$TT$L$PI$$smGenerateRandBuf
       100123b1     0000c770     0000b28a   cc26xx_gap_pxxx.a : gap_configmgr.o (.text)
    GAP_PasscodeUpdate        $Tramp$TT$L$PI$$GAP_PasscodeUpdate
       10011829     0000c778     0000b108   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_PasscodeRsp)
    ti_sysbios_family_arm_m3_Hwi_construct  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_construct
       1001aabd     0000c780     0000abca   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_construct2__E)
    GATT_UpdateMTU            $Tramp$TT$L$PI$$GATT_UpdateMTU
       1001835d     0000c788     0000aa78   cc26xx_profiles_pxxx.a : gattservapp.o (.text)
    ATT_ExchangeMTURsp        $Tramp$TT$L$PI$$ATT_ExchangeMTURsp
       10018e59     0000c790     0000aa58   cc26xx_profiles_pxxx.a : gattservapp.o (.text)
    hciInitEventMasks         $Tramp$TT$L$PI$$hciInitEventMasks
       1000ba41     0000c798     0000aa24   cc26xx_hci_tl_none.a : hci_tl.o (.text)
    ti_sysbios_knl_Swi_Params__init__S  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_Params__init__S
       1001c015     0000c7a0     0000a9ae   dpl_cc26x0r2.aem3 : SwiP_tirtos.oem3 (.text:SwiP_construct)
    xdc_runtime_Startup_rtsDone__E  $Tramp$TT$L$PI$$xdc_runtime_Startup_rtsDone__E
       1001c769     0000c7a8     0000a866   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_heaps_HeapCallback_Module_startup__E)
                                 0000b366   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    gattServApp_ProcessMsg    $Tramp$TT$L$PI$$gattServApp_ProcessMsg
       10010911     0000c7b0     0000a83e   cc26xx_profiles_pxxx.a : gattservapp.o (.text)
    ti_sysbios_family_arm_m3_Hwi_Params__init__S  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_Params__init__S
       1001bf79     0000c7b8     0000a7c0   dpl_cc26x0r2.aem3 : HwiP_tirtos.oem3 (.text:HwiP_construct)
    ti_sysbios_knl_Semaphore_create  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_create
       1001b2d1     0000c7c0     0000a750   ECCROMCC26XX.obj (.text:ECCROMCC26XX_init)
    ti_sysbios_knl_Semaphore_Params__init__S  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_Params__init__S
       1001c009     0000c7c8     0000a742   ECCROMCC26XX.obj (.text:ECCROMCC26XX_init)
                                 0000b56e   dpl_cc26x0r2.aem3 : SemaphoreP_tirtos.oem3 (.text:SemaphoreP_constructBinary)
    SM_ResponderInit          $Tramp$TT$L$PI$$SM_ResponderInit
       10012dfd     0000c7d0     0000a718   simple_peripheral_cc2640r2lp_stack_library.lib : gap.obj (.text:GAP_DeviceInit)
    GAP_PeriConnRegister      $Tramp$TT$L$PI$$GAP_PeriConnRegister
       1001930d     0000c7d8     0000a714   simple_peripheral_cc2640r2lp_stack_library.lib : gap.obj (.text:GAP_DeviceInit)
    GAP_PeriDevMgrInit        $Tramp$TT$L$PI$$GAP_PeriDevMgrInit
       100146b1     0000c7e0     0000a710   simple_peripheral_cc2640r2lp_stack_library.lib : gap.obj (.text:GAP_DeviceInit)
    GAP_SecParamsInit         $Tramp$TT$L$PI$$GAP_SecParamsInit
       10018539     0000c7e8     0000a706   simple_peripheral_cc2640r2lp_stack_library.lib : gap.obj (.text:GAP_DeviceInit)
    GAP_ParamsInit            $Tramp$TT$L$PI$$GAP_ParamsInit
       10018505     0000c7f0     0000a6fa   simple_peripheral_cc2640r2lp_stack_library.lib : gap.obj (.text:GAP_DeviceInit)
    xdc_runtime_System_exit__E  $Tramp$TT$L$PI$$xdc_runtime_System_exit__E
       1001c6d5     0000c7f8     0000a534   boot.aem3 : boot.oem3 (.text)
                                 0000c1be   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__I)
    ti_sysbios_knl_Clock_construct  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_construct
       1001b269     0000c800     0000a300   dpl_cc26x0r2.aem3 : ClockP_tirtos.oem3 (.text:ClockP_construct)
                                 0000a3a0   util.obj (.text:Util_constructClock)
    ti_sysbios_knl_Queue_put__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_put__E
       1001bd35     0000c808     0000a138   simple_peripheral.obj (.text:SimpleBLEPeripheral_enqueueMsg$1)
    ti_sysbios_knl_Event_create  $Tramp$TT$L$PI$$ti_sysbios_knl_Event_create
       1001b42d     0000c810     0000a096   icall.obj (.text:ICall_newTask$6)
    gattServApp_FindPrepareWriteQ  $Tramp$TT$L$PI$$gattServApp_FindPrepareWriteQ
       10011409     0000c818     00009d4a   cc26xx_profiles_pxxx.a : gattservapp.o (.text)
                                 00009d56                          : gattservapp.o (.text)
                                 0000b5ca                          : gattservapp.o (.text)
    linkDB_Register           $Tramp$TT$L$PI$$linkDB_Register
       10017de5     0000c820     00009b14   cc26xx_profiles_pxxx.a : gattservapp.o (.text)
    GATT_RegisterForReq       $Tramp$TT$L$PI$$GATT_RegisterForReq
       1000fc09     0000c828     00009b0a   cc26xx_profiles_pxxx.a : gattservapp.o (.text)
    gattServApp_SetNumPrepareWrites  $Tramp$TT$L$PI$$gattServApp_SetNumPrepareWrites
       100107d1     0000c830     00009b04   cc26xx_profiles_pxxx.a : gattservapp.o (.text)
    ti_sysbios_knl_Task_restore__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_restore__E
       1001b7f5     0000c838     0000982e   icall.obj (.text:ICall_createRemoteTasksAtRuntime)
                                 0000bac6   dpl_cc26x0r2.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_schedulerRestore)
                                 0000c10e   icall.obj (.text:ICall_leaveCSImpl)
    ti_sysbios_knl_Task_create  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_create
       1001accd     0000c840     00009810   icall.obj (.text:ICall_createRemoteTasksAtRuntime)
    ti_sysbios_knl_Task_disable__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_disable__E
       1001bf31     0000c848     000097e8   icall.obj (.text:ICall_createRemoteTasksAtRuntime)
                                 0000b33a   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
                                 0000ba96   dpl_cc26x0r2.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_schedulerDisable)
                                 0000be8a   icall.obj (.text:ICall_enterCSImpl)
    llTimeDelta               $Tramp$TT$L$PI$$llTimeDelta
       100197dd     0000c850     0000933c   cc2640_ll_pxxx.a : ll_scheduler.o (.text)
    GAP_Bond                  $Tramp$TT$L$PI$$GAP_Bond
       1001187d     0000c858     00008ff4   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrBondReq$31)
    llVerifyConnParamReqParams  $Tramp$TT$L$PI$$llVerifyConnParamReqParams
       10008e45     0000c860     00008f7c   cc2640_ll_pxxx.a : ll_common.o (.text)
    GAP_GetIRK                $Tramp$TT$L$PI$$GAP_GetIRK
       100185a5     0000c868     00008eac   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_syncResolvingList)
    HCI_LE_ClearResolvingListCmd  $Tramp$TT$L$PI$$HCI_LE_ClearResolvingListCmd
       1000b1b1     0000c870     00008ea8   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_syncResolvingList)
    gapFreeAuthLink           $Tramp$TT$L$PI$$gapFreeAuthLink
       10011dc1     0000c878     00008c9c   cc26xx_gap_pxxx.a : gap_linkmgr.o (.text)
    sendTerminateEvent        $Tramp$TT$L$PI$$sendTerminateEvent
       10011bf9     0000c880     00008c8e   cc26xx_gap_pxxx.a : gap_linkmgr.o (.text)
    disconnectNext            $Tramp$TT$L$PI$$disconnectNext
       10011c8d     0000c888     00008c78   cc26xx_gap_pxxx.a : gap_linkmgr.o (.text)
    linkDB_Remove             $Tramp$TT$L$PI$$linkDB_Remove
       10017e91     0000c890     00008c66   cc26xx_gap_pxxx.a : gap_linkmgr.o (.text)
    linkDB_Role               $Tramp$TT$L$PI$$linkDB_Role
       10017fd5     0000c898     00008c48   cc26xx_gap_pxxx.a : gap_linkmgr.o (.text)
    gattServApp_FindWriteAttrCB  $Tramp$TT$L$PI$$gattServApp_FindWriteAttrCB
       10011499     0000c8a0     00008ade   cc26xx_profiles_pxxx.a : gattservapp.o (.text)
    xdc_runtime_Error_raiseX__E  $Tramp$TT$L$PI$$xdc_runtime_Error_raiseX__E
       1001c66d     0000c8a8     00008a1e   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excHandlerMin__I)
    ti_sysbios_BIOS_setThreadType__E  $Tramp$TT$L$PI$$ti_sysbios_BIOS_setThreadType__E
       1001bea1     0000c8b0     000089de   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excHandlerMin__I)
                                 0000b340   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
                                 0000c1a8   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_errorRaiseHook__I)
                                 0000c1b8   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__I)
    llAddTxDataEntry          $Tramp$TT$L$PI$$llAddTxDataEntry
       1000a4f5     0000c8b8     00008926   cc2640_ll_pxxx.a : ll_common.o (.text)
    LL_ENC_Encrypt            $Tramp$TT$L$PI$$LL_ENC_Encrypt
       10017485     0000c8c0     0000891e   cc2640_ll_pxxx.a : ll_common.o (.text)
    LL_TX_bm_alloc            $Tramp$TT$L$PI$$LL_TX_bm_alloc
       10004945     0000c8c8     000088b8   cc2640_ll_pxxx.a : ll_common.o (.text)
    GATT_bm_alloc             $Tramp$TT$L$PI$$GATT_bm_alloc
       10018405     0000c8d0     000087b6   gattservapp_util.obj (.text:gattServApp_SendNotiInd$13)
                                 0000b5ae   simple_peripheral_cc2640r2lp_stack_library.lib : ble_dispatch_lite.obj (.text:bleDispatch_BMAlloc)
    ti_sysbios_knl_Clock_create  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_create
       1001b1fd     0000c8d8     000080a6   icall.obj (.text:ICall_setTimer)
    ti_sysbios_knl_Clock_Params__init__S  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_Params__init__S
       1001bfc1     0000c8e0     00008092   icall.obj (.text:ICall_setTimer)
                                 0000a2f0   dpl_cc26x0r2.aem3 : ClockP_tirtos.oem3 (.text:ClockP_construct)
                                 0000a37a   util.obj (.text:Util_constructClock)
    ti_sysbios_knl_Clock_scheduleNextTick__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_scheduleNextTick__E
       1001bca9     0000c8e8     0000804a   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
       1001a2f1     0000c8f0     00008012   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
                                 0000802e                    : 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
       1001bee1     0000c8f8     00007fe0   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
                                 0000b6a2                    : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_getTicksUntilInterrupt__E)
    ti_sysbios_knl_Task_construct  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_construct
       1001ae19     0000c900     00007b96   simple_peripheral.obj (.text:SimpleBLEPeripheral_createTask)
                                 0000a792   peripheral.obj (.text:GAPRole_createTask)
    ti_sysbios_knl_Task_Params__init__S  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_Params__init__S
       1001c021     0000c908     00007b78   simple_peripheral.obj (.text:SimpleBLEPeripheral_createTask)
                                 000097f6   icall.obj (.text:ICall_createRemoteTasksAtRuntime)
                                 0000a772   peripheral.obj (.text:GAPRole_createTask)
    ti_sysbios_family_arm_m3_Hwi_disableFxn__E  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_disableFxn__E
       1001bf85     0000c910     00007a0c   TRNGCC26XX.obj (.text:TRNGCC26XX_getNumber)
                                 0000a72a   ECCROMCC26XX.obj (.text:ECCROMCC26XX_init)
                                 0000b762   TRNGCC26XX.obj (.text:TRNGCC26XX_init)
                                 0000bdaa   TRNGCC26XX.obj (.text:TRNGCC26XX_open)
                                 0000be94   icall.obj (.text:ICall_enterCSImpl)
                                 0000c624   dpl_cc26x0r2.aem3 : HwiP_tirtos.oem3 (.text:HwiP_disable)
    ti_sysbios_knl_Clock_stop__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_stop__E
       1001bab9     0000c918     0000713c   dpl_cc26x0r2.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
                                 000080ce   icall.obj (.text:ICall_setTimer)
                                 0000abfa   util.obj (.text:Util_restartClock)
                                 0000c59e   icall.obj (.text:ICall_stopTimer)
                                 0000c61c   dpl_cc26x0r2.aem3 : ClockP_tirtos.oem3 (.text:ClockP_stop)
                                 0000c65c   util.obj (.text:Util_stopClock)
    ti_sysbios_knl_Clock_start__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_start__E
       1001be1f     0000c920     00007130   dpl_cc26x0r2.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
                                 000080e4   icall.obj (.text:ICall_setTimer)
                                 0000ac18   util.obj (.text:Util_restartClock)
                                 0000c618   dpl_cc26x0r2.aem3 : ClockP_tirtos.oem3 (.text:ClockP_start)
                                 0000c658   util.obj (.text:Util_startClock)
    ti_sysbios_knl_Clock_setTimeout__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_setTimeout__E
       1001c0e5     0000c928     0000712a   dpl_cc26x0r2.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
                                 000080de   icall.obj (.text:ICall_setTimer)
                                 0000ac12   util.obj (.text:Util_restartClock)
                                 0000c614   dpl_cc26x0r2.aem3 : ClockP_tirtos.oem3 (.text:ClockP_setTimeout)
    sm_c1new                  $Tramp$TT$L$PI$$sm_c1new
       1001225d     0000c930     00006f2a   cc26xx_sm_pxxx.a : sm_pairing.o (.text)
    smpBuildPairingReq        $Tramp$TT$L$PI$$smpBuildPairingReq
       10016255     0000c938     00006f0e   cc26xx_sm_pxxx.a : sm_pairing.o (.text)
    smpBuildPairingRsp        $Tramp$TT$L$PI$$smpBuildPairingRsp
       10016269     0000c940     00006f06   cc26xx_sm_pxxx.a : sm_pairing.o (.text)
    gapGetDevAddress          $Tramp$TT$L$PI$$gapGetDevAddress
       100187ad     0000c948     00006e94   cc26xx_sm_pxxx.a : sm_pairing.o (.text)
                                 00006ed2                    : sm_pairing.o (.text)
                                 00007384                    : sm_pairing.o (.text)
                                 00007408                    : sm_pairing.o (.text)
    gapGetDevAddressMode      $Tramp$TT$L$PI$$gapGetDevAddressMode
       100187a5     0000c950     00006e88   cc26xx_sm_pxxx.a : sm_pairing.o (.text)
                                 00006ec6                    : sm_pairing.o (.text)
                                 00007392                    : sm_pairing.o (.text)
                                 00007416                    : sm_pairing.o (.text)
    smSetPairingReqRsp        $Tramp$TT$L$PI$$smSetPairingReqRsp
       1000f9f1     0000c958     00006e7a   cc26xx_sm_pxxx.a : sm_pairing.o (.text)
    ti_sysbios_BIOS_start__E  $Tramp$TT$L$PI$$ti_sysbios_BIOS_start__E
       1001beb1     0000c960     00006e1a   main.obj (.text:main)
    ATT_ReadByTypeRsp         $Tramp$TT$L$PI$$ATT_ReadByTypeRsp
       10018ef1     0000c968     00006c70   cc26xx_profiles_pxxx.a : gattservapp.o (.text)
    gattServApp_buildReadByTypeRsp  $Tramp$TT$L$PI$$gattServApp_buildReadByTypeRsp
       10010cd5     0000c970     00006c2a   cc26xx_profiles_pxxx.a : gattservapp.o (.text)
    GATT_VerifyReadPermissions  $Tramp$TT$L$PI$$GATT_VerifyReadPermissions
       1000fc11     0000c978     00006bec   cc26xx_profiles_pxxx.a : gattservapp.o (.text)
    ATT_GetMTU                $Tramp$TT$L$PI$$ATT_GetMTU
       1001621d     0000c980     00006baa   cc26xx_profiles_pxxx.a : gattservapp.o (.text)
    GAP_SendSlaveSecurityRequest  $Tramp$TT$L$PI$$GAP_SendSlaveSecurityRequest
       100192bd     0000c988     00006b8c   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_LinkEst)
    GAP_Signable              $Tramp$TT$L$PI$$GAP_Signable
       100116ad     0000c990     00006b2c   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_LinkEst)
    eccRom_genKeys            $Tramp$TT$L$PI$$eccRom_genKeys
       10016c1d     0000c998     000060c6   ECCROMCC26XX.obj (.text:ECCROMCC26XX_genKeys)
    GATT_FindHandleUUID       $Tramp$TT$L$PI$$GATT_FindHandleUUID
       1000fd55     0000c9a0     00005dd0   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_ProcessEvent)
                                 00006bd8   cc26xx_profiles_pxxx.a : gattservapp.o (.text)
                                 0000aa98                          : gattservapp.o (.text)
    LL_PRIV_Init              $Tramp$TT$L$PI$$LL_PRIV_Init
       10016cb5     0000c9a8     00005d0e   cc2640_ll_pxxx.a : ll.o (.text)
    llInitFeatureSet          $Tramp$TT$L$PI$$llInitFeatureSet
       10008621     0000c9b0     00005cbe   cc2640_ll_pxxx.a : ll.o (.text)
    llReleaseAllConnId        $Tramp$TT$L$PI$$llReleaseAllConnId
       100082cd     0000c9b8     00005cae   cc2640_ll_pxxx.a : ll.o (.text)
    llConnCleanup             $Tramp$TT$L$PI$$llConnCleanup
       10008479     0000c9c0     00005ca0   cc2640_ll_pxxx.a : ll.o (.text)
    LL_ClearWhiteList         $Tramp$TT$L$PI$$LL_ClearWhiteList
       100049d9     0000c9c8     00005c46   cc2640_ll_pxxx.a : ll.o (.text)
    WL_Init                   $Tramp$TT$L$PI$$WL_Init
       10018b81     0000c9d0     00005c42   cc2640_ll_pxxx.a : ll.o (.text)
    llRfInit                  $Tramp$TT$L$PI$$llRfInit
       10006fed     0000c9d8     00005c3c   cc2640_ll_pxxx.a : ll.o (.text)
    GAP_Authenticate          $Tramp$TT$L$PI$$GAP_Authenticate
       10011701     0000c9e0     000058f4   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrAuthenticate$31)
    L2CAP_GetMTU              $Tramp$TT$L$PI$$L2CAP_GetMTU
       1001929d     0000c9e8     000057fa   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrAuthenticate$31)
                                 0000aa4e   cc26xx_profiles_pxxx.a : gattservapp.o (.text)
    eccRom_genSharedSecret    $Tramp$TT$L$PI$$eccRom_genSharedSecret
       10016c65     0000c9f0     00005580   ECCROMCC26XX.obj (.text:ECCROMCC26XX_genDHKey)
    ti_sysbios_knl_Semaphore_post__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_post__E
       1001a3e1     0000c9f8     000054e4   ECCROMCC26XX.obj (.text:ECCROMCC26XX_genDHKey)
                                 000055bc   ECCROMCC26XX.obj (.text:ECCROMCC26XX_genDHKey)
                                 00006070   ECCROMCC26XX.obj (.text:ECCROMCC26XX_genKeys)
                                 00006102   ECCROMCC26XX.obj (.text:ECCROMCC26XX_genKeys)
                                 0000c648   dpl_cc26x0r2.aem3 : SemaphoreP_tirtos.oem3 (.text:SemaphoreP_post)
    ti_sysbios_knl_Semaphore_pend__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_pend__E
       10019b05     0000ca00     000054b2   ECCROMCC26XX.obj (.text:ECCROMCC26XX_genDHKey)
                                 0000603e   ECCROMCC26XX.obj (.text:ECCROMCC26XX_genKeys)
                                 0000c28c   dpl_cc26x0r2.aem3 : SemaphoreP_tirtos.oem3 (.text:SemaphoreP_pend)
    ti_sysbios_knl_Event_post__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Event_post__E
       1001a455     0000ca08     000053e4   icall.obj (.text:icall_directAPI)
                                 00009212   icall.obj (.text:ICall_sendServiceComplete)
                                 00009698   icall.obj (.text:ICall_send)
                                 0000a144   simple_peripheral.obj (.text:SimpleBLEPeripheral_enqueueMsg$1)
                                 0000bcfa   icall.obj (.text:ICall_primRepostSync$6)
                                 0000c316   simple_peripheral.obj (.text:SimpleBLEPeripheral_clockHandler$1)
                                 0000c386   peripheral.obj (.text:gapRole_setEvent$14)
                                 0000c426   icall.obj (.text:ICall_signal)
    ti_sysbios_knl_Clock_getTicks__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_getTicks__E
       1001b29d     0000ca10     0000538c   icall.obj (.text:icall_directAPI)
                                 000053f4   icall.obj (.text:icall_directAPI)
                                 0000b6fa   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_getTimeout__E)
                                 0000c634   icall.obj (.text:ICall_getTicks)
    ti_sysbios_knl_Task_self__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_self__E
       1001c02d     0000ca18     00005308   icall.obj (.text:icall_directAPI)
                                 0000535c   icall.obj (.text:icall_directAPI)
                                 00006740   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excFillContext__I)
                                 00006746                    : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excFillContext__I)
                                 0000674c                    : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_excFillContext__I)
                                 0000984c   icall.obj (.text:ICall_enrollService)
                                 0000990a   icall.obj (.text:ICall_fetchMsg)
                                 00009be8   icall.obj (.text:ICall_wait)
                                 00009f3a   icall.obj (.text:ICall_registerApp)
                                 0000bce6   icall.obj (.text:ICall_primRepostSync$6)
    llCreateRxBuffer          $Tramp$TT$L$PI$$llCreateRxBuffer
       10009371     0000ca20     0000528a   cc2640_ll_pxxx.a : ll_isr.o (.text)
    llProcessSlaveControlPacket  $Tramp$TT$L$PI$$llProcessSlaveControlPacket
       10009609     0000ca28     00005272   cc2640_ll_pxxx.a : ll_isr.o (.text)
    llCombinePDU              $Tramp$TT$L$PI$$llCombinePDU
       10008c01     0000ca30     00005260   cc2640_ll_pxxx.a : ll_isr.o (.text)
    LL_RxDataCompleteCback    $Tramp$TT$L$PI$$LL_RxDataCompleteCback
       10019465     0000ca38     00005252   cc2640_ll_pxxx.a : ll_isr.o (.text)
    LL_PRIV_UpdateRL          $Tramp$TT$L$PI$$LL_PRIV_UpdateRL
       10016f8d     0000ca40     000051c8   cc2640_ll_pxxx.a : ll_isr.o (.text)
    LL_ENC_Decrypt            $Tramp$TT$L$PI$$LL_ENC_Decrypt
       100174f9     0000ca48     000051ae   cc2640_ll_pxxx.a : ll_isr.o (.text)
    RFHAL_NextDataEntryDone   $Tramp$TT$L$PI$$RFHAL_NextDataEntryDone
       1000a5b1     0000ca50     0000516e   cc2640_ll_pxxx.a : ll_isr.o (.text)
                                 0000527e                    : ll_isr.o (.text)
    RFHAL_GetNextDataEntry    $Tramp$TT$L$PI$$RFHAL_GetNextDataEntry
       1000a5a9     0000ca58     0000514e   cc2640_ll_pxxx.a : ll_isr.o (.text)
    llHaltRadio               $Tramp$TT$L$PI$$llHaltRadio
       10007075     0000ca60     000049ae   cc2640_ll_pxxx.a : ll_isr.o (.text)
    LL_PRIV_UpdateExtWLEntry  $Tramp$TT$L$PI$$LL_PRIV_UpdateExtWLEntry
       10017051     0000ca68     0000493a   cc2640_ll_pxxx.a : ll_isr.o (.text)
                                 000049ba                    : ll_isr.o (.text)
    WL_FindEntry              $Tramp$TT$L$PI$$WL_FindEntry
       10018c51     0000ca70     0000492a   cc2640_ll_pxxx.a : ll_isr.o (.text)
                                 000049a2                    : ll_isr.o (.text)
    HCI_LE_AddDeviceToResolvingListCmd  $Tramp$TT$L$PI$$HCI_LE_AddDeviceToResolvingListCmd
       1000b16d     0000ca78     00004600   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrAddBond$31)
                                 00008eb8                                                  : gapbondmgr.obj (.text:GAPBondMgr_syncResolvingList)
                                 00008efa                                                  : gapbondmgr.obj (.text:GAPBondMgr_syncResolvingList)
    HCI_LE_RemoveDeviceFromResolvingListCmd  $Tramp$TT$L$PI$$HCI_LE_RemoveDeviceFromResolvingListCmd
       1000b191     0000ca80     00004558   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrAddBond$31)
                                 000062f4                                                  : gapbondmgr.obj (.text:gapBondMgrEraseBonding$31)
    GAP_TerminateAuth         $Tramp$TT$L$PI$$GAP_TerminateAuth
       100117c1     0000ca88     00004192   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_ProcessGAPMsg)
                                 0000b118                                                  : gapbondmgr.obj (.text:GAPBondMgr_PasscodeRsp)
    linkDB_Find               $Tramp$TT$L$PI$$linkDB_Find
       10017f55     0000ca90     00004168   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_ProcessGAPMsg)
                                 0000422e                                                  : gapbondmgr.obj (.text:GAPBondMgr_ProcessGAPMsg)
                                 0000578a                                                  : gapbondmgr.obj (.text:gapBondMgrAuthenticate$31)
                                 00006e6c   cc26xx_sm_pxxx.a : sm_pairing.o (.text)
                                 00007370                    : sm_pairing.o (.text)
                                 00008c40   cc26xx_gap_pxxx.a : gap_linkmgr.o (.text)
                                 0000a6ae   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_UpdateCharCfg)
    smDetermineIOCaps         $Tramp$TT$L$PI$$smDetermineIOCaps
       1000f819     0000ca98     00003f18   cc26xx_sm_pxxx.a : sm_pairing.o (.text)
    llSortActiveConns         $Tramp$TT$L$PI$$llSortActiveConns
       10008fdd     0000caa0     00003cda   cc2640_ll_pxxx.a : ll_common.o (.text)
    llGetMinCI                $Tramp$TT$L$PI$$llGetMinCI
       10008301     0000caa8     00003c20   cc2640_ll_pxxx.a : ll_common.o (.text)
    llRealignConn             $Tramp$TT$L$PI$$llRealignConn
       10009071     0000cab0     00003b62   cc2640_ll_pxxx.a : ll_common.o (.text)
    gattServApp_FindReadAttrCB  $Tramp$TT$L$PI$$gattServApp_FindReadAttrCB
       10011489     0000cab8     00003af8   cc26xx_profiles_pxxx.a : gattservapp.o (.text)
    ATT_CompareUUID           $Tramp$TT$L$PI$$ATT_CompareUUID
       10016111     0000cac0     00003a2a   cc26xx_profiles_pxxx.a : gattservapp.o (.text)
    GATT_FindNextAttr         $Tramp$TT$L$PI$$GATT_FindNextAttr
       1000fe05     0000cac8     00003a1c   cc26xx_profiles_pxxx.a : gattservapp.o (.text)
                                 00005e1c   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_ProcessEvent)
                                 0000aab2   cc26xx_profiles_pxxx.a : gattservapp.o (.text)
    GATT_FindHandle           $Tramp$TT$L$PI$$GATT_FindHandle
       1000fdbd     0000cad0     000039b2   cc26xx_profiles_pxxx.a : gattservapp.o (.text)
                                 00003a06                          : gattservapp.o (.text)
                                 00008ad2                          : gattservapp.o (.text)
    gattServApp_FindAuthorizeAttrCB  $Tramp$TT$L$PI$$gattServApp_FindAuthorizeAttrCB
       100114d5     0000cad8     00003930   cc26xx_profiles_pxxx.a : gattservapp.o (.text)
    llHardwareError           $Tramp$TT$L$PI$$llHardwareError
       1000929d     0000cae0     000033f4   cc2640_ll_pxxx.a : ll_isr.o (.text)
                                 00003496                    : ll_isr.o (.text)
                                 00003b84                    : ll_common.o (.text)
                                 00003cd2                    : ll_common.o (.text)
                                 00004a10                    : ll_isr.o (.text)
                                 0000529a                    : ll_isr.o (.text)
                                 0000c160                    : ll_isr.o (.text)
    GAP_NumActiveConnections  $Tramp$TT$L$PI$$GAP_NumActiveConnections
       100188fd     0000cae8     00002fb6   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_SetParameter)
                                 00003024                                                  : gapbondmgr.obj (.text:GAPBondMgr_SetParameter)
                                 00009ee6                                                  : gapbondmgr.obj (.text:GAPBondMgr_LinkTerm)
    linkDB_SecurityModeSCOnly  $Tramp$TT$L$PI$$linkDB_SecurityModeSCOnly
       10018105     0000caf0     00002f90   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_SetParameter)
    SM_SetECCRegenerationCount  $Tramp$TT$L$PI$$SM_SetECCRegenerationCount
       1000f551     0000caf8     00002f6e   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_SetParameter)
    GAP_SetParamValue         $Tramp$TT$L$PI$$GAP_SetParamValue
       100184bd     0000cb00     00002ed6   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_SetParameter)
                                 0000bcb6                                                  : gapbondmgr.obj (.text:GAPBondMgr_Register)
    ti_sysbios_knl_Swi_restore__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_restore__E
       1001b305     0000cb08     00002be8   drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
                                 00005bdc   RFCC26XX_singleMode.obj (.text:abortCmd$4)
                                 00008a5e   RFCC26XX_singleMode.obj (.text:RF_pendCmd)
                                 00008a84   RFCC26XX_singleMode.obj (.text:RF_pendCmd)
                                 00008aa6   RFCC26XX_singleMode.obj (.text:RF_pendCmd)
    GAP_RegisterBondMgrCBs    $Tramp$TT$L$PI$$GAP_RegisterBondMgrCBs
       10018b51     0000cb10     00002704   simple_peripheral_cc2640r2lp_stack_library.lib : icall_startup.obj (.text:startup_entry)
    GATT_Init                 $Tramp$TT$L$PI$$GATT_Init
       1001817d     0000cb18     000026f0   simple_peripheral_cc2640r2lp_stack_library.lib : icall_startup.obj (.text:startup_entry)
    SM_Init                   $Tramp$TT$L$PI$$SM_Init
       100175d9     0000cb20     000026ea   simple_peripheral_cc2640r2lp_stack_library.lib : icall_startup.obj (.text:startup_entry)
    GAP_Init                  $Tramp$TT$L$PI$$GAP_Init
       10018859     0000cb28     000026e4   simple_peripheral_cc2640r2lp_stack_library.lib : icall_startup.obj (.text:startup_entry)
    L2CAP_Init                $Tramp$TT$L$PI$$L2CAP_Init
       100179c9     0000cb30     000026de   simple_peripheral_cc2640r2lp_stack_library.lib : icall_startup.obj (.text:startup_entry)
    L2CAP_SetUserConfig       $Tramp$TT$L$PI$$L2CAP_SetUserConfig
       100192b9     0000cb38     00002550   simple_peripheral_cc2640r2lp_stack_library.lib : icall_startup.obj (.text:startup_entry)
    llRfSetup                 $Tramp$TT$L$PI$$llRfSetup
       10006f99     0000cb40     00002474   cc2640_ll_pxxx.a : ll.o (.text)
    LL_PRIV_GenerateRPA       $Tramp$TT$L$PI$$LL_PRIV_GenerateRPA
       10016d71     0000cb48     000023be   cc2640_ll_pxxx.a : ll.o (.text)
                                 00002402                    : ll.o (.text)
                                 0000864e                    : ll.o (.text)
    LL_PRIV_IsIDA             $Tramp$TT$L$PI$$LL_PRIV_IsIDA
       10016eb5     0000cb50     0000232e   cc2640_ll_pxxx.a : ll.o (.text)
    LL_PRIV_FindPeerInRL      $Tramp$TT$L$PI$$LL_PRIV_FindPeerInRL
       10016f19     0000cb58     000022e2   cc2640_ll_pxxx.a : ll.o (.text)
                                 0000233a                    : ll.o (.text)
                                 000023e6                    : ll.o (.text)
    LL_PRIV_IsResolvable      $Tramp$TT$L$PI$$LL_PRIV_IsResolvable
       10016ecd     0000cb60     000022d6   cc2640_ll_pxxx.a : ll.o (.text)
                                 00004902                    : ll_isr.o (.text)
                                 0000497a                    : ll_isr.o (.text)
    LL_PRIV_IsRPA             $Tramp$TT$L$PI$$LL_PRIV_IsRPA
       10016e89     0000cb68     000022c0   cc2640_ll_pxxx.a : ll.o (.text)
                                 000048f6                    : ll_isr.o (.text)
                                 0000496e                    : ll_isr.o (.text)
    LL_PRIV_IsZeroIRK         $Tramp$TT$L$PI$$LL_PRIV_IsZeroIRK
       10016f01     0000cb70     000022b2   cc2640_ll_pxxx.a : ll.o (.text)
                                 0000234a                    : ll.o (.text)
                                 000023f6                    : ll.o (.text)
                                 00008630                    : ll.o (.text)
                                 0000865e                    : ll.o (.text)
    LL_EnhancedConnectionCompleteCback  $Tramp$TT$L$PI$$LL_EnhancedConnectionCompleteCback
       1000c1c9     0000cb78     00002264   cc2640_ll_pxxx.a : ll.o (.text)
                                 00002384                    : ll.o (.text)
                                 000023aa                    : ll.o (.text)
    llTimeCompare             $Tramp$TT$L$PI$$llTimeCompare
       100197b9     0000cb80     00002086   cc2640_ll_pxxx.a : ll_scheduler.o (.text)
                                 000021d2                    : ll_scheduler.o (.text)
                                 00003cba                    : ll_common.o (.text)
                                 000061b6                    : ll_scheduler.o (.text)
                                 00006232                    : ll_scheduler.o (.text)
                                 0000931e                    : ll_scheduler.o (.text)
                                 0000932a                    : ll_scheduler.o (.text)
                                 00009350                    : ll_scheduler.o (.text)
                                 00009360                    : ll_scheduler.o (.text)
    llGetCurrentTime          $Tramp$TT$L$PI$$llGetCurrentTime
       100197b1     0000cb88     00001fbe   cc2640_ll_pxxx.a : ll_scheduler.o (.text)
                                 0000207e                    : ll_scheduler.o (.text)
                                 0000208c                    : ll_scheduler.o (.text)
                                 000020f6                    : ll_scheduler.o (.text)
                                 000021c8                    : ll_scheduler.o (.text)
                                 000021d8                    : ll_scheduler.o (.text)
                                 00003b38                    : ll_common.o (.text)
                                 000078bc                    : ll_scheduler.o (.text)
                                 00009310                    : ll_scheduler.o (.text)
    llProcessPostRfOps        $Tramp$TT$L$PI$$llProcessPostRfOps
       1000713d     0000cb90     00001f38   cc2640_ll_pxxx.a : ll_scheduler.o (.text)
    ti_sysbios_family_arm_m3_Hwi_restoreFxn__E  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_restoreFxn__E
       1001c061     0000cb98     000019bc   RFCC26XX_singleMode.obj (.text:fsmActiveState$4)
                                 00001bb0   RFCC26XX_singleMode.obj (.text:fsmActiveState$4)
                                 00001bca   RFCC26XX_singleMode.obj (.text:fsmActiveState$4)
                                 00002860   drivers_cc26x0r2.aem3 : CryptoCC26XX.oem3 (.text:cryptoTransactionExecute)
                                 000028ba                         : CryptoCC26XX.oem3 (.text:cryptoTransactionExecute)
                                 00002930                         : CryptoCC26XX.oem3 (.text:cryptoTransactionExecute)
                                 000029ae                         : CryptoCC26XX.oem3 (.text:cryptoTransactionExecute)
                                 00003156   RFCC26XX_singleMode.obj (.text:RF_open)
                                 00003226   RFCC26XX_singleMode.obj (.text:RF_open)
                                 00005044   RFCC26XX_singleMode.obj (.text:RF_postCmd)
                                 000050a6   RFCC26XX_singleMode.obj (.text:RF_postCmd)
                                 00005102   RFCC26XX_singleMode.obj (.text:RF_postCmd)
                                 00005b0c   RFCC26XX_singleMode.obj (.text:abortCmd$4)
                                 00005b34   RFCC26XX_singleMode.obj (.text:abortCmd$4)
                                 00005b68   RFCC26XX_singleMode.obj (.text:abortCmd$4)
                                 00005bce   RFCC26XX_singleMode.obj (.text:abortCmd$4)
                                 00005bfe   RFCC26XX_singleMode.obj (.text:abortCmd$4)
                                 0000695a   RFCC26XX_singleMode.obj (.text:radioOpDoneCb$4)
                                 00006fe8   drivers_cc26x0r2.aem3 : PINCC26XX.oem3 (.text:PINCC26XX_setIoCfg)
                                 0000705e                         : CryptoCC26XX.oem3 (.text:CryptoCC26XX_open)
                                 0000706c                         : CryptoCC26XX.oem3 (.text:CryptoCC26XX_open)
                                 0000770a                         : PowerCC26XX.oem3 (.text:Power_releaseDependency)
                                 000079ec                         : PowerCC26XX.oem3 (.text:Power_setDependency)
                                 00007a9e   TRNGCC26XX.obj (.text:TRNGCC26XX_getNumber)
                                 000089a8   drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                                 00008d78   RFCC26XX_singleMode.obj (.text:swiFxnHw$4)
                                 00008d94   RFCC26XX_singleMode.obj (.text:swiFxnHw$4)
                                 000092c2   drivers_cc26x0r2.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
                                 0000950a   RFCC26XX_singleMode.obj (.text:decActiveClientCnt$4)
                                 000098b2   RFCC26XX_singleMode.obj (.text:RF_getCurrentTime)
                                 000098ba   RFCC26XX_singleMode.obj (.text:RF_getCurrentTime)
                                 00009e32   RFCC26XX_singleMode.obj (.text:ratChanFree$4)
                                 0000a016   RFCC26XX_singleMode.obj (.text:RF_getInfo)
                                 0000a758   ECCROMCC26XX.obj (.text:ECCROMCC26XX_init)
                                 0000a804   RFCC26XX_singleMode.obj (.text:RF_getRssi)
                                 0000a908   drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
                                 0000a94a                         : PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
                                 0000ab90   RFCC26XX_singleMode.obj (.text:postDirImmCmd$4)
                                 0000aba4   RFCC26XX_singleMode.obj (.text:postDirImmCmd$4)
                                 0000af16   drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:Power_releaseConstraint)
                                 0000af50   RFCC26XX_singleMode.obj (.text:Q_push$4)
                                 0000b268   drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:Power_setConstraint)
                                 0000b77a   TRNGCC26XX.obj (.text:TRNGCC26XX_init)
                                 0000ba6a   drivers_cc26x0r2.aem3 : List.oem3 (.text:List_put)
                                 0000bdb6   TRNGCC26XX.obj (.text:TRNGCC26XX_open)
                                 0000bf30   RFCC26XX_singleMode.obj (.text:Q_pop$4)
                                 0000c106   icall.obj (.text:ICall_leaveCSImpl)
    
    [171 trampolines]
    [360 trampoline calls]
    
    
    GLOBAL SYMBOLS: SORTED ALPHABETICALLY BY Name 
    
    address   name                                                                      
    -------   ----                                                                      
    20004fd8  ACCX                                                                      
    20004fdc  ACCY                                                                      
    20004fe0  ACCZ                                                                      
    1000d2d5  ATOMICPATTERN                                                             
    10015c49  ATT_BuildErrorRsp                                                         
    10015c7d  ATT_BuildExchangeMTUReq                                                   
    10015c8d  ATT_BuildExchangeMTURsp                                                   
    10015ff5  ATT_BuildExecuteWriteReq                                                  
    10015d25  ATT_BuildFindByTypeValueReq                                               
    10015d89  ATT_BuildFindByTypeValueRsp                                               
    10015cb9  ATT_BuildFindInfoReq                                                      
    10015cc9  ATT_BuildFindInfoRsp                                                      
    1001601d  ATT_BuildHandleValueInd                                                   
    10015f75  ATT_BuildPrepareWriteReq                                                  
    10015fa1  ATT_BuildPrepareWriteRsp                                                  
    10015eb1  ATT_BuildReadBlobReq                                                      
    10015ef9  ATT_BuildReadBlobRsp                                                      
    10015f35  ATT_BuildReadByGrpTypeRsp                                                 
    10015da5  ATT_BuildReadByTypeReq                                                    
    10015e29  ATT_BuildReadByTypeRsp                                                    
    10015f0d  ATT_BuildReadMultiReq                                                     
    10015f2d  ATT_BuildReadMultiRsp                                                     
    10015e4d  ATT_BuildReadReq                                                          
    10015e6d  ATT_BuildReadRsp                                                          
    10015ea1  ATT_BuildWriteReq                                                         
    10016111  ATT_CompareUUID                                                           
    10016179  ATT_ConvertUUIDto128                                                      
    100161a5  ATT_ConvertUUIDto16                                                       
    10018e39  ATT_ErrorRsp                                                              
    10018e59  ATT_ExchangeMTURsp                                                        
    10019025  ATT_ExecuteWriteRsp                                                       
    10018ebd  ATT_FindByTypeValueRsp                                                    
    10018e81  ATT_FindInfoRsp                                                           
    1001621d  ATT_GetMTU                                                                
    10016251  ATT_GetParamValue                                                         
    10019065  ATT_HandleValueInd                                                        
    10019045  ATT_HandleValueNoti                                                       
    10015c5d  ATT_ParseErrorRsp                                                         
    10015c81  ATT_ParseExchangeMTUReq                                                   
    10015ca1  ATT_ParseExchangeMTURsp                                                   
    10015ffd  ATT_ParseExecuteWriteReq                                                  
    10016011  ATT_ParseExecuteWriteRsp                                                  
    10015d41  ATT_ParseFindByTypeValueReq                                               
    10015d91  ATT_ParseFindByTypeValueRsp                                               
    10015cbd  ATT_ParseFindInfoReq                                                      
    10015ce1  ATT_ParseFindInfoRsp                                                      
    10016065  ATT_ParseHandleValueCfm                                                   
    10016035  ATT_ParseHandleValueInd                                                   
    10015be5  ATT_ParsePacket                                                           
    10015f79  ATT_ParsePrepareWriteReq                                                  
    10015fc1  ATT_ParsePrepareWriteRsp                                                  
    10015ed1  ATT_ParseReadBlobReq                                                      
    10015efd  ATT_ParseReadBlobRsp                                                      
    10015f49  ATT_ParseReadByGrpTypeRsp                                                 
    10015de5  ATT_ParseReadByTypeReq                                                    
    10015e2d  ATT_ParseReadByTypeRsp                                                    
    10015f15  ATT_ParseReadMultiReq                                                     
    10015f31  ATT_ParseReadMultiRsp                                                     
    10015e51  ATT_ParseReadReq                                                          
    10015e71  ATT_ParseReadRsp                                                          
    10015e75  ATT_ParseWriteReq                                                         
    10015ea5  ATT_ParseWriteRsp                                                         
    10018ffd  ATT_PrepareWriteRsp                                                       
    10018f51  ATT_ReadBlobRsp                                                           
    10018fbd  ATT_ReadByGrpTypeRsp                                                      
    10018ef1  ATT_ReadByTypeRsp                                                         
    10018f91  ATT_ReadMultiRsp                                                          
    10018f2d  ATT_ReadRsp                                                               
    10018e31  ATT_RegisterServer                                                        
    1001624d  ATT_SetParamValue                                                         
    100161e9  ATT_UpdateMTU                                                             
    10018fed  ATT_WriteRsp                                                              
    00004c05  AssertHandler                                                             
    0000d73c  BoardGpioInitTable                                                        
    00009e41  C$$EXIT                                                                   
    00009617  C$$IO$$                                                                   
    1000dbf1  COPY                                                                      
    0000c5d1  ClockP_Params_init                                                        
    0000a2d5  ClockP_construct                                                          
    UNDEFED   ClockP_getSystemTicks                                                     
    0000c611  ClockP_getTimeout                                                         
    0000c2c1  ClockP_isActive                                                           
    0000c615  ClockP_setTimeout                                                         
    0000c619  ClockP_start                                                              
    0000c61d  ClockP_stop                                                               
    20001e14  ClockP_tickPeriod                                                         
    0000c5b9  CryptoCC26XX_Params_init                                                  
    00008dad  CryptoCC26XX_allocateKey                                                  
    0000d930  CryptoCC26XX_config                                                       
    0000b8a1  CryptoCC26XX_hwiIntFxn                                                    
    0000c459  CryptoCC26XX_init                                                         
    0000ae1d  CryptoCC26XX_loadKey                                                      
    00007015  CryptoCC26XX_open                                                         
    0000c5d7  CryptoCC26XX_transact                                                     
    0000c5dd  CryptoCC26XX_transactPolling                                              
    00007e93  DefaultAssertCback                                                        
    20001800  Display_config                                                            
    0000d7f3  Display_count                                                             
    0000d8c3  Display_defaultParams                                                     
    0000c465  Display_doClearLines                                                      
    00009961  Display_doOpen                                                            
    0000b6bd  Display_doPrintf                                                          
    00009e95  ECCROMCC26XX_Params_init                                                  
    0000545d  ECCROMCC26XX_genDHKey                                                     
    0000600d  ECCROMCC26XX_genKeys                                                      
    0000a725  ECCROMCC26XX_init                                                         
    20004f80  ECC_DATA$$Base                                                            
    20005000  ECC_DATA$$Limit                                                           
    10016795  ECC_allocWorkzone                                                         
    1001679d  ECC_setWin                                                                
    1000db95  EXPORTOPERAND                                                             
    20004fd4  EXPW                                                                      
    20004fc8  EXPX                                                                      
    20004fcc  EXPY                                                                      
    20004fd0  EXPZ                                                                      
    00006ab1  GAPBondMgr_LinkEst                                                        
    00009ee5  GAPBondMgr_LinkTerm                                                       
    0000b0f5  GAPBondMgr_PasscodeRsp                                                    
    00005d81  GAPBondMgr_ProcessEvent                                                   
    0000412d  GAPBondMgr_ProcessGAPMsg                                                  
    0000bcad  GAPBondMgr_Register                                                       
    00007c0d  GAPBondMgr_ResolveAddr                                                    
    00002e81  GAPBondMgr_SetParameter                                                   
    0000bcc9  GAPBondMgr_SupportsEnhancedPriv                                           
    0000a6a1  GAPBondMgr_UpdateCharCfg                                                  
    00008ea1  GAPBondMgr_syncResolvingList                                              
    00006385  GAPRole_GetParameter                                                      
    00000d4d  GAPRole_SetParameter                                                      
    0000b125  GAPRole_TerminateConnection                                               
    0000a765  GAPRole_createTask                                                        
    10011701  GAP_Authenticate                                                          
    1001187d  GAP_Bond                                                                  
    100185ad  GAP_ConfigDeviceAddr                                                      
    0000a6e3  GAP_DeviceInit                                                            
    10014599  GAP_EndDiscoverable                                                       
    10014655  GAP_GetAdvToken                                                           
    100185a5  GAP_GetIRK                                                                
    100184f5  GAP_GetParamValue                                                         
    10018859  GAP_Init                                                                  
    10014459  GAP_MakeDiscoverable                                                      
    100188fd  GAP_NumActiveConnections                                                  
    10018505  GAP_ParamsInit                                                            
    10011829  GAP_PasscodeUpdate                                                        
    100117ed  GAP_PasskeyUpdate                                                         
    1001930d  GAP_PeriConnRegister                                                      
    100146b1  GAP_PeriDevMgrInit                                                        
    0000b275  GAP_PrivacyInit                                                           
    10018879  GAP_ProcessEvent                                                          
    10018b51  GAP_RegisterBondMgrCBs                                                    
    10018851  GAP_RegisterForMsgs                                                       
    10014679  GAP_RemoveAdvToken                                                        
    10018539  GAP_SecParamsInit                                                         
    100192bd  GAP_SendSlaveSecurityRequest                                              
    100145e1  GAP_SetAdvToken                                                           
    100184bd  GAP_SetParamValue                                                         
    100116ad  GAP_Signable                                                              
    100117c1  GAP_TerminateAuth                                                         
    100114e5  GAP_TerminateLinkReq                                                      
    10014695  GAP_UpdateAdvTokens                                                       
    10014509  GAP_UpdateAdvertisingData                                                 
    1001157d  GAP_UpdateLinkParamReq                                                    
    10011605  GAP_UpdateLinkParamReqReply                                               
    0000c621  GAP_UpdateResolvingList                                                   
    0000c361  GAP_isPairing                                                             
    0000baf5  GATTServApp_AddService                                                    
    00009ad1  GATTServApp_Init                                                          
    0000ae55  GATTServApp_InitCharCfg                                                   
    0000a825  GATTServApp_ProcessEvent                                                  
    00003919  GATTServApp_ReadAttr                                                      
    0000c2d1  GATTServApp_ReadCharCfg                                                   
    0000c50d  GATTServApp_RegisterForMsg                                                
    0000b421  GATTServApp_RegisterService                                               
    0000aac1  GATTServApp_SendCCCUpdatedEvent                                           
    20004f60  GATTServApp_TaskID                                                        
    0000ba71  GATTServApp_UpdateCharCfg                                                 
    00008ac1  GATTServApp_WriteAttr                                                     
    1001814d  GATT_AppCompletedMsg                                                      
    1000fbc1  GATT_DeregisterService                                                    
    1000fdbd  GATT_FindHandle                                                           
    1000fd55  GATT_FindHandleUUID                                                       
    1000fe05  GATT_FindNextAttr                                                         
    100107b9  GATT_GetNextHandle                                                        
    1000ffcd  GATT_Indication                                                           
    1001817d  GATT_Init                                                                 
    1000fa89  GATT_InitServer                                                           
    10010045  GATT_Notification                                                         
    10018341  GATT_NotifyEvent                                                          
    100181ad  GATT_ProcessEvent                                                         
    10018131  GATT_RegisterForMsgs                                                      
    1000fc09  GATT_RegisterForReq                                                       
    1000fb09  GATT_RegisterService                                                      
    1000fedd  GATT_SendRsp                                                              
    1000fccd  GATT_ServiceChangedInd                                                    
    1000febd  GATT_ServiceEncKeySize                                                    
    1000fead  GATT_ServiceNumAttrs                                                      
    10018139  GATT_SetHostToAppFlowCtrl                                                 
    1001835d  GATT_UpdateMTU                                                            
    1000fc11  GATT_VerifyReadPermissions                                                
    1000fc59  GATT_VerifyWritePermissions                                               
    10018405  GATT_bm_alloc                                                             
    10018489  GATT_bm_free                                                              
    1000d1f1  GETBIT                                                                    
    1000d205  GETDIGIT                                                                  
    1000d255  GETDIGITL2R                                                               
    0000b931  GGS_AddService                                                            
    00008691  GGS_SetParameter                                                          
    1000bb91  HCI_CommandCompleteEvent                                                  
    1000bca5  HCI_CommandStatusEvent                                                    
    1000ba8d  HCI_DataBufferOverflowEvent                                               
    1000a875  HCI_DisconnectCmd                                                         
    1000b78d  HCI_EXT_AdvEventNoticeCmd                                                 
    1000b7a5  HCI_EXT_BuildRevisionCmd                                                  
    1000b3f5  HCI_EXT_ClkDivOnHaltCmd                                                   
    1000b799  HCI_EXT_ConnEventNoticeCmd                                                
    1000b415  HCI_EXT_DeclareNvUsageCmd                                                 
    1000b7f1  HCI_EXT_DelaySleepCmd                                                     
    1000b6a9  HCI_EXT_DisconnectImmedCmd                                                
    1000b5f9  HCI_EXT_EnablePTMCmd                                                      
    1000b569  HCI_EXT_EndModemTestCmd                                                   
    1000b739  HCI_EXT_ExtendRfRangeCmd                                                  
    1000b891  HCI_EXT_GetConnInfoCmd                                                    
    1000b76d  HCI_EXT_HaltDuringRfCmd                                                   
    1000b689  HCI_EXT_MapPmIoPortCmd                                                    
    1000b529  HCI_EXT_ModemHopTestTxCmd                                                 
    1000b549  HCI_EXT_ModemTestRxCmd                                                    
    1000b509  HCI_EXT_ModemTestTxCmd                                                    
    1000b871  HCI_EXT_NumComplPktsLimitCmd                                              
    1000b3c1  HCI_EXT_OnePktPerEvtCmd                                                   
    1000b851  HCI_EXT_OverlappedProcessingCmd                                           
    1000b719  HCI_EXT_PERbyChanCmd                                                      
    1000b6c9  HCI_EXT_PacketErrorRateCmd                                                
    1000b825  HCI_EXT_ResetSystemCmd                                                    
    1000b649  HCI_EXT_SaveFreqTuneCmd                                                   
    1000b5a1  HCI_EXT_SetBDADDRCmd                                                      
    1000b4b5  HCI_EXT_SetFastTxResponseTimeCmd                                          
    1000b619  HCI_EXT_SetFreqTuneCmd                                                    
    1000b495  HCI_EXT_SetLocalSupportedFeaturesCmd                                      
    1000b935  HCI_EXT_SetMaxDataLenCmd                                                  
    1000b669  HCI_EXT_SetMaxDtmTxPowerCmd                                               
    1000b351  HCI_EXT_SetRxGainCmd                                                      
    1000b5d9  HCI_EXT_SetSCACmd                                                         
    1000b4d5  HCI_EXT_SetSlaveLatencyOverrideCmd                                        
    1000b381  HCI_EXT_SetTxPowerCmd                                                     
    0000c4e9  HCI_GAPTaskRegister                                                       
    00008b41  HCI_HardwareErrorEvent                                                    
    1000a9b9  HCI_HostBufferSizeCmd                                                     
    1000a9f1  HCI_HostNumCompletedPktCmd                                                
    0000aa0d  HCI_Init                                                                  
    0000c4f5  HCI_L2CAPTaskRegister                                                     
    1000b16d  HCI_LE_AddDeviceToResolvingListCmd                                        
    1000adc9  HCI_LE_AddWhiteListCmd                                                    
    1000b1b1  HCI_LE_ClearResolvingListCmd                                              
    1000ada9  HCI_LE_ClearWhiteListCmd                                                  
    1000ae21  HCI_LE_ConnUpdateCmd                                                      
    1000ad55  HCI_LE_CreateConnCancelCmd                                                
    1000ad11  HCI_LE_CreateConnCmd                                                      
    1000b2bd  HCI_LE_GenerateDHKeyCmd                                                   
    1000afa9  HCI_LE_LtkReqNegReplyCmd                                                  
    1000af8d  HCI_LE_LtkReqReplyCmd                                                     
    1000af21  HCI_LE_RandCmd                                                            
    1000aca1  HCI_LE_ReadAdvChanTxPowerCmd                                              
    1000ab89  HCI_LE_ReadBufSizeCmd                                                     
    1000ae6d  HCI_LE_ReadChannelMapCmd                                                  
    1000b289  HCI_LE_ReadLocalP256PublicKeyCmd                                          
    1000b22d  HCI_LE_ReadLocalResolvableAddressCmd                                      
    1000abc5  HCI_LE_ReadLocalSupportedFeaturesCmd                                      
    1000b141  HCI_LE_ReadMaxDataLenCmd                                                  
    1000b1f5  HCI_LE_ReadPeerResolvableAddressCmd                                       
    1000ae95  HCI_LE_ReadRemoteUsedFeaturesCmd                                          
    1000b1d1  HCI_LE_ReadResolvingListSizeCmd                                           
    1000b0f5  HCI_LE_ReadSuggestedDefaultDataLenCmd                                     
    1000afc5  HCI_LE_ReadSupportedStatesCmd                                             
    1000ad75  HCI_LE_ReadWhiteListSizeCmd                                               
    1000b2fd  HCI_LE_ReceiverTestCmd                                                    
    1000b0bd  HCI_LE_RemoteConnParamReqNegReplyCmd                                      
    1000b079  HCI_LE_RemoteConnParamReqReplyCmd                                         
    1000b191  HCI_LE_RemoveDeviceFromResolvingListCmd                                   
    1000adfd  HCI_LE_RemoveWhiteListCmd                                                 
    1000b24d  HCI_LE_SetAddressResolutionEnableCmd                                      
    1000ac41  HCI_LE_SetAdvDataCmd                                                      
    1000ac81  HCI_LE_SetAdvEnableCmd                                                    
    1000ac09  HCI_LE_SetAdvParamCmd                                                     
    1000b0d9  HCI_LE_SetDataLenCmd                                                      
    1000ab61  HCI_LE_SetEventMaskCmd                                                    
    1000ae4d  HCI_LE_SetHostChanClassificationCmd                                       
    1000abe5  HCI_LE_SetRandomAddressCmd                                                
    1000b26d  HCI_LE_SetResolvablePrivateAddressTimeoutCmd                              
    1000acf1  HCI_LE_SetScanEnableCmd                                                   
    1000acc5  HCI_LE_SetScanParamCmd                                                    
    1000ac61  HCI_LE_SetScanRspDataCmd                                                  
    1000af71  HCI_LE_StartEncyptCmd                                                     
    1000b31d  HCI_LE_TestEndCmd                                                         
    1000b2e1  HCI_LE_TransmitterTestCmd                                                 
    1000b121  HCI_LE_WriteSuggestedDefaultDataLenCmd                                    
    1000bab1  HCI_NumOfCompletedPacketsEvent                                            
    000083d1  HCI_ProcessEvent                                                          
    1000b001  HCI_ReadAuthPayloadTimeoutCmd                                             
    1000ab05  HCI_ReadBDADDRCmd                                                         
    1000aac1  HCI_ReadLocalSupportedCommandsCmd                                         
    1000aadd  HCI_ReadLocalSupportedFeaturesCmd                                         
    1000aa51  HCI_ReadLocalVersionInfoCmd                                               
    1000a891  HCI_ReadRemoteVersionInfoCmd                                              
    1000ab25  HCI_ReadRssiCmd                                                           
    1000a959  HCI_ReadTransmitPowerLevelCmd                                             
    1000a91d  HCI_ResetCmd                                                              
    10019445  HCI_ReverseBytes                                                          
    0000c501  HCI_SMPTaskRegister                                                       
    1000bd79  HCI_SendCommandCompleteEvent                                              
    1000bd51  HCI_SendCommandStatusEvent                                                
    1000be21  HCI_SendControllerToHostEvent                                             
    1000a839  HCI_SendDataPkt                                                           
    1000a97d  HCI_SetControllerToHostFlowCtrlCmd                                        
    1000a8c5  HCI_SetEventMaskCmd                                                       
    1000a8f1  HCI_SetEventMaskPage2Cmd                                                  
    1000a7fd  HCI_ValidConnTimeParams                                                   
    1000bc2d  HCI_VendorSpecifcCommandCompleteEvent                                     
    1000b041  HCI_WriteAuthPayloadTimeoutCmd                                            
    1000a7f1  HCI_bm_alloc                                                              
    200012f4  HEAPMGR_SIZE                                                              
    00003541  HOSTclose                                                                 
    0000360f  HOSTlseek                                                                 
    000034ed  HOSTopen                                                                  
    00003577  HOSTread                                                                  
    000036a3  HOSTrename                                                                
    0000366d  HOSTunlink                                                                
    000035c5  HOSTwrite                                                                 
    00000fe1  HalFlashGetAddress                                                        
    0000b155  HalFlashRead                                                              
    0000c591  HalFlashWrite                                                             
    0000c2e1  HwiP_Params_init                                                          
    0000a7a5  HwiP_construct                                                            
    0000c625  HwiP_disable                                                              
    0000c629  HwiP_enableInterrupt                                                      
    0000c62d  HwiP_post                                                                 
    UNDEFED   HwiP_restore                                                              
    0000c631  HwiP_setFunc                                                              
    0000c0e9  ICall_abort                                                               
    000097e1  ICall_createRemoteTasksAtRuntime                                          
    200012f8  ICall_dispatcher                                                          
    00009841  ICall_enrollService                                                       
    0000be89  ICall_enterCSImpl                                                         
    200012d4  ICall_enterCriticalSection                                                
    00009901  ICall_fetchMsg                                                            
    0000b091  ICall_fetchServiceMsg                                                     
    0000ae89  ICall_free                                                                
    0000c5e3  ICall_freeMsg                                                             
    00009075  ICall_getHeapStats                                                        
    0000b4ad  ICall_getLocalMsgEntityId                                                 
    0000c635  ICall_getTicks                                                            
    0000ae89  ICall_heapFree                                                            
    00009075  ICall_heapGetStats                                                        
    000090e5  ICall_heapInit                                                            
    000084f1  ICall_heapMalloc                                                          
    0000c0ff  ICall_leaveCSImpl                                                         
    200012d8  ICall_leaveCriticalSection                                                
    0000c639  ICall_malloc                                                              
    0000c115  ICall_pwrDispense                                                         
    0000c12b  ICall_pwrRequire                                                          
    000099bd  ICall_pwrUpdActivityCounter                                               
    00009f35  ICall_registerApp                                                         
    0000aebd  ICall_searchServiceEntity                                                 
    00009651  ICall_send                                                                
    000091c5  ICall_sendServiceComplete                                                 
    00008065  ICall_setTimer                                                            
    0000ba2d  ICall_setTimerMSecs                                                       
    0000c421  ICall_signal                                                              
    0000c59b  ICall_stopTimer                                                           
    00009be5  ICall_wait                                                                
    1000dbb9  IMPORTDATA                                                                
    1000db2d  IMPORTLENGTH                                                              
    1000db31  IMPORTMODULUS                                                             
    1000db55  IMPORTOPERAND                                                             
    1000d8e1  INVERT                                                                    
    10019920  IOCapMatrix                                                               
    1000d6e9  JACADD                                                                    
    10014fad  L2CAP_BuildCmdReject                                                      
    100150d5  L2CAP_BuildInfoRsp                                                        
    10015095  L2CAP_BuildParamUpdateRsp                                                 
    10019185  L2CAP_CmdReject                                                           
    100191c5  L2CAP_ConnParamUpdateReq                                                  
    10019209  L2CAP_ConnParamUpdateRsp                                                  
    1001929d  L2CAP_GetMTU                                                              
    100154ad  L2CAP_GetParamValue                                                       
    10019275  L2CAP_HostNumCompletedPkts                                                
    1001919d  L2CAP_InfoReq                                                             
    100179c9  L2CAP_Init                                                                
    100150b9  L2CAP_ParseInfoReq                                                        
    10015059  L2CAP_ParseParamUpdateReq                                                 
    10017a51  L2CAP_ProcessEvent                                                        
    100190d9  L2CAP_RegisterApp                                                         
    10017b29  L2CAP_RegisterFlowCtrlTask                                                
    10019105  L2CAP_SendData                                                            
    0000ac95  L2CAP_SendDataPkt                                                         
    10019291  L2CAP_SetBufSize                                                          
    10019231  L2CAP_SetControllerToHostFlowCtrl                                         
    100154a9  L2CAP_SetParamValue                                                       
    100192b9  L2CAP_SetUserConfig                                                       
    1001542d  L2CAP_bm_alloc                                                            
    20004fac  LEN                                                                       
    10006425  LL_AddDeviceToResolvingList                                               
    100049f9  LL_AddWhiteListDevice                                                     
    1000c415  LL_AdvReportCback                                                         
    1000be71  LL_AuthPayloadTimeoutExpiredCback                                         
    10005f95  LL_ChanMapUpdate                                                          
    1000659d  LL_ClearResolvingList                                                     
    100049d9  LL_ClearWhiteList                                                         
    10005f61  LL_ConnActive                                                             
    1000c749  LL_ConnParamUpdateCback                                                   
    10005279  LL_ConnUpdate                                                             
    1000c521  LL_ConnectionCompleteCback                                                
    10005afd  LL_CreateConn                                                             
    10005e85  LL_CreateConnCancel                                                       
    10004bbd  LL_CtrlToHostFlowControl                                                  
    1000bf65  LL_DataLengthChangeEventCback                                             
    100050e9  LL_DirectTestEnd                                                          
    1000cb35  LL_DirectTestEndDoneCback                                                 
    10004fe9  LL_DirectTestRxTest                                                       
    10004e45  LL_DirectTestTxTest                                                       
    10004d15  LL_Disconnect                                                             
    1000c695  LL_DisconnectCback                                                        
    0000c157  LL_DoorbellErrorCback                                                     
    100172f9  LL_ENC_AES128_Decrypt                                                     
    1001729d  LL_ENC_AES128_Encrypt                                                     
    100174f9  LL_ENC_Decrypt                                                            
    00008341  LL_ENC_DecryptMsg                                                         
    10017485  LL_ENC_Encrypt                                                            
    10017361  LL_ENC_EncryptMsg                                                         
    10017221  LL_ENC_GenDeviceIV                                                        
    1001720d  LL_ENC_GenDeviceSKD                                                       
    10017235  LL_ENC_GenerateNonce                                                      
    100171cd  LL_ENC_GeneratePseudoRandNum                                              
    100171e5  LL_ENC_GenerateTrueRandNum                                                
    1001714d  LL_ENC_Init                                                               
    10017259  LL_ENC_LoadKey                                                            
    100171ad  LL_ENC_ReverseBytes                                                       
    10006d7d  LL_EXT_AdvEventNotice                                                     
    10006dc1  LL_EXT_BuildRevision                                                      
    100068c1  LL_EXT_ClkDivOnHalt                                                       
    10006d99  LL_EXT_ConnEventNotice                                                    
    100068c5  LL_EXT_DeclareNvUsage                                                     
    100068c9  LL_EXT_Decrypt                                                            
    10006cbd  LL_EXT_DisconnectImmed                                                    
    10006b59  LL_EXT_EndModemTest                                                       
    10006d75  LL_EXT_ExtendRfRange                                                      
    1000ba31  LL_EXT_ExtendRfRangeCback                                                 
    10006e59  LL_EXT_GetConnInfo                                                        
    10006d79  LL_EXT_HaltDuringRf                                                       
    10006cb9  LL_EXT_MapPmIoPort                                                        
    10006a01  LL_EXT_ModemHopTestTx                                                     
    10006ab5  LL_EXT_ModemTestRx                                                        
    10006965  LL_EXT_ModemTestTx                                                        
    10006e25  LL_EXT_NumComplPktsLimit                                                  
    100068a1  LL_EXT_OnePacketPerEvent                                                  
    10006e21  LL_EXT_OverlappedProcessing                                               
    10006d55  LL_EXT_PERbyChan                                                          
    10006d05  LL_EXT_PacketErrorRate                                                    
    1000b9d9  LL_EXT_PacketErrorRateCback                                               
    10006ded  LL_EXT_ResetSystem                                                        
    10006c99  LL_EXT_SaveFreqTune                                                       
    10006b8d  LL_EXT_SetBDADDR                                                          
    10006929  LL_EXT_SetFastTxResponseTime                                              
    10006c95  LL_EXT_SetFreqTune                                                        
    100068ed  LL_EXT_SetLocalSupportedFeatures                                          
    100063bd  LL_EXT_SetMaxDataLen                                                      
    10006c9d  LL_EXT_SetMaxDtmTxPower                                                   
    10006859  LL_EXT_SetRxGain                                                          
    1000b991  LL_EXT_SetRxGainCback                                                     
    10006c1d  LL_EXT_SetSCA                                                             
    10006941  LL_EXT_SetSlaveLatencyOverride                                            
    10006869  LL_EXT_SetTxPower                                                         
    1000b9a1  LL_EXT_SetTxPowerCback                                                    
    1000ca01  LL_EncChangeCback                                                         
    1000ca69  LL_EncKeyRefreshCback                                                     
    10005ab5  LL_EncLtkNegReply                                                         
    10005a61  LL_EncLtkReply                                                            
    1000c921  LL_EncLtkReqCback                                                         
    10004a95  LL_Encrypt                                                                
    1000c1c9  LL_EnhancedConnectionCompleteCback                                        
    10006819  LL_GenerateDHKeyCmd                                                       
    1000c0f9  LL_GenerateDHKeyCompleteEventCback                                        
    10004b49  LL_GetNumActiveConns                                                      
    00000775  LL_Init                                                                   
    000032cd  LL_LastCmdDoneCback                                                       
    10004a79  LL_NumEmptyWlEntries                                                      
    10016d29  LL_PRIV_Ah                                                                
    10017021  LL_PRIV_ClearExtWL                                                        
    100170d9  LL_PRIV_FindExtWLEntry                                                    
    10016f19  LL_PRIV_FindPeerInRL                                                      
    10016dd1  LL_PRIV_GenerateNRPA                                                      
    10016d71  LL_PRIV_GenerateRPA                                                       
    10016e1d  LL_PRIV_GenerateRSA                                                       
    10016cb5  LL_PRIV_Init                                                              
    10016eb5  LL_PRIV_IsIDA                                                             
    10016e9d  LL_PRIV_IsNRPA                                                            
    10016e89  LL_PRIV_IsRPA                                                             
    10016ecd  LL_PRIV_IsResolvable                                                      
    10016f01  LL_PRIV_IsZeroIRK                                                         
    10016fc5  LL_PRIV_NumberPeerRLEntries                                               
    10016e59  LL_PRIV_ResolveRPA                                                        
    10017139  LL_PRIV_SetWLSize                                                         
    10016fe5  LL_PRIV_SetupPrivacy                                                      
    10016ffd  LL_PRIV_TeardownPrivacy                                                   
    10017051  LL_PRIV_UpdateExtWLEntry                                                  
    10016f8d  LL_PRIV_UpdateRL                                                          
    00002225  LL_ProcessEvent                                                           
    10004ac1  LL_PseudoRand                                                             
    10004969  LL_RX_bm_alloc                                                            
    10004ab5  LL_Rand                                                                   
    1000b95d  LL_RandCback                                                              
    10005701  LL_ReadAdvChanTxPower                                                     
    100061c1  LL_ReadAuthPayloadTimeout                                                 
    1000498d  LL_ReadBDADDR                                                             
    10004c81  LL_ReadChanMap                                                            
    10006309  LL_ReadDefaultDataLen                                                     
    100067d5  LL_ReadLocalP256PublicKeyCmd                                              
    1000c015  LL_ReadLocalP256PublicKeyCompleteEventCback                               
    10006685  LL_ReadLocalResolvableAddress                                             
    10004b59  LL_ReadLocalSupportedFeatures                                             
    10004b7d  LL_ReadLocalVersionInfo                                                   
    1000637d  LL_ReadMaxDataLen                                                         
    10006625  LL_ReadPeerResolvableAddress                                              
    1000614d  LL_ReadRemoteUsedFeatures                                                 
    1000c825  LL_ReadRemoteUsedFeaturesCompleteCback                                    
    10004bd1  LL_ReadRemoteVersionInfo                                                  
    1000c8ad  LL_ReadRemoteVersionInfoCback                                             
    1000661d  LL_ReadResolvingListSize                                                  
    10004cb5  LL_ReadRssi                                                               
    10004aed  LL_ReadSupportedStates                                                    
    10004c31  LL_ReadTxPowerLevel                                                       
    10004a61  LL_ReadWlSize                                                             
    1000bee5  LL_RemoteConnParamReqCback                                                
    10005229  LL_RemoteConnParamReqNegReply                                             
    10005189  LL_RemoteConnParamReqReply                                                
    10006521  LL_RemoveDeviceFromResolvingList                                          
    10004a25  LL_RemoveWhiteListDevice                                                  
    00005c15  LL_Reset                                                                  
    10019465  LL_RxDataCompleteCback                                                    
    00005121  LL_RxEntryDoneCback                                                       
    00004881  LL_RxIgnoredCback                                                         
    00008609  LL_SetAddressResolutionEnable                                             
    100055f1  LL_SetAdvControl                                                          
    1000559d  LL_SetAdvData                                                             
    1000536d  LL_SetAdvParam                                                            
    10006269  LL_SetDataLen                                                             
    100049ad  LL_SetRandomAddress                                                       
    10006781  LL_SetResolvablePrivateAddressTimeout                                     
    10005919  LL_SetScanControl                                                         
    10005795  LL_SetScanParam                                                           
    10005739  LL_SetScanRspData                                                         
    1000604d  LL_StartEncrypt                                                           
    10004945  LL_TX_bm_alloc                                                            
    20004f6e  LL_TaskID                                                                 
    10004d81  LL_TxData                                                                 
    0000bad5  LL_TxEntryDoneCback                                                       
    100061fd  LL_WriteAuthPayloadTimeout                                                
    10006335  LL_WriteDefaultDataLen                                                    
    10019988  LUTC                                                                      
    100199b8  LUTINCI                                                                   
    100195dc  LUTJ                                                                      
    10019a30  LUTOPCODE                                                                 
    10019970  LUTOPSIGN                                                                 
    100199a0  LUTSE                                                                     
    1001973c  LUTSTATE                                                                  
    0000c489  List_empty                                                                
    0000c63d  List_head                                                                 
    0000c641  List_next                                                                 
    0000ba4f  List_put                                                                  
    20004fa8  MOD                                                                       
    20004ffc  MSBMOD                                                                    
    10019898  NIST_Curve_P256_Gx                                                        
    100198bc  NIST_Curve_P256_Gy                                                        
    10019850  NIST_Curve_P256_a                                                         
    10019874  NIST_Curve_P256_b                                                         
    10019808  NIST_Curve_P256_p                                                         
    1001982c  NIST_Curve_P256_r                                                         
    0000c495  NOROM_CPUcpsid                                                            
    0000c4a1  NOROM_CPUcpsie                                                            
    0000c5e9  NOROM_CPUdelay                                                            
    00008221  NOROM_CRYPTOAesLoadKey                                                    
    0000b505  NOROM_ChipInfo_GetChipFamily                                              
    0000bed9  NOROM_ChipInfo_GetPackageType                                             
    0000bd01  NOROM_FlashProgram                                                        
    0000bd1d  NOROM_FlashSectorErase                                                    
    00009231  NOROM_OSCHF_AttemptToSwitchToXosc                                         
    0000a43d  NOROM_OSCHF_SwitchToRcOscTurnOffXosc                                      
    0000b8c5  NOROM_OSCHF_TurnOnXosc                                                    
    0000a8a5  NOROM_OSC_HPOSCRelativeFrequencyOffsetGet                                 
    0000c4ad  NOROM_OSC_HPOSCRelativeFrequencyOffsetToRFCoreFormatConvert               
    0000bef1  NOROM_RFCCpeIntGetAndClear                                                
    0000b531  NOROM_RFCDoorbellSendTo                                                   
    000077e1  NOROM_SetupTrimDevice                                                     
    000096b5  NOROM_SysCtrlAdjustRechargeAfterPowerDown                                 
    00003709  NOROM_SysCtrlSetRechargeBeforePowerDown                                   
    000093e1  NOROM_SysCtrl_DCDC_VoltageConditionalControl                              
    00009f85  NPI_WriteTransport                                                        
    0001e000  NV_FLASH                                                                  
    20001768  OSAL_timeSeconds                                                          
    0000c301  Onboard_rand                                                              
    00008937  Onboard_soft_reset                                                        
    0000b8e9  PINCC26XX_getPinCount                                                     
    0000d938  PINCC26XX_hwAttrs                                                         
    20001bd4  PIN_HandleTable                                                           
    20001b40  PIN_NumPins                                                               
    0000590d  PIN_init                                                                  
    00009a19  PowerCC26XX_RCOSC_clockFunc                                               
    00001c11  PowerCC26XX_auxISR                                                        
    00009a75  PowerCC26XX_calibrate                                                     
    0000d8c4  PowerCC26XX_config                                                        
    000055ed  PowerCC26XX_doCalibrate                                                   
    0000929d  PowerCC26XX_initiateCalibration                                           
    0000a8e1  PowerCC26XX_isStableXOSC_HF                                               
    200010e8  PowerCC26XX_module                                                        
    0000ba95  PowerCC26XX_schedulerDisable                                              
    0000bab5  PowerCC26XX_schedulerRestore                                              
    000070e9  PowerCC26XX_standbyPolicy                                                 
    20001df4  PowerCC26XX_swiKey                                                        
    0000a91d  PowerCC26XX_switchXOSC_HF                                                 
    20001df0  PowerCC26XX_taskKey                                                       
    0000c4b9  Power_getConstraintMask                                                   
    0000c4c5  Power_getDependencyCount                                                  
    0000bc35  Power_getTransitionLatency                                                
    0000bf09  Power_idleFunc                                                            
    00005ed1  Power_init                                                                
    0000b711  Power_registerNotify                                                      
    0000aef1  Power_releaseConstraint                                                   
    00007669  Power_releaseDependency                                                   
    0000b245  Power_setConstraint                                                       
    00007951  Power_setDependency                                                       
    00002a11  Power_sleep                                                               
    200044f8  RAM_BASE_ADDR                                                             
    1000a5dd  RFHAL_AllocDataEntry                                                      
    1000a585  RFHAL_AllocDataEntryQueue                                                 
    1000a6c5  RFHAL_BuildDataEntryRingBuffer                                            
    1000a745  RFHAL_BuildLinkedBuffer                                                   
    1000a629  RFHAL_BuildRingBuffer                                                     
    1000a621  RFHAL_FreeDataEntry                                                       
    1000a5a1  RFHAL_FreeDataEntryQueue                                                  
    1000a55d  RFHAL_FreeNextTxDataEntry                                                 
    1000a5a9  RFHAL_GetNextDataEntry                                                    
    1000a5ad  RFHAL_GetTempDataEntry                                                    
    1000a551  RFHAL_InitDataQueue                                                       
    1000a5b1  RFHAL_NextDataEntryDone                                                   
    0000c1c5  RF_Params_init                                                            
    00005a99  RF_cancelCmd                                                              
    0000c5c1  RF_flushCmd                                                               
    0000c279  RF_getCmdOp                                                               
    000098a1  RF_getCurrentTime                                                         
    00009fd5  RF_getInfo                                                                
    0000a7e5  RF_getRssi                                                                
    000030ad  RF_open                                                                   
    00008a41  RF_pendCmd                                                                
    00004f79  RF_postCmd                                                                
    0000a959  RF_runCmd                                                                 
    0000bd71  RF_runDirectCmd                                                           
    0000bf39  RF_runImmediateCmd                                                        
    10004941  ROM_BASE_ADDR                                                             
    20004504  ROM_FlashJT                                                               
    0000cba0  ROM_Flash_JT                                                              
    0000c141  ROM_Spinlock                                                              
    0000a509  ResetISR                                                                  
    1000d1b1  SAVEPOINT                                                                 
    100199f0  SCA                                                                       
    20004fc4  SCAL                                                                      
    1000d195  SCALARMUL                                                                 
    1000ccb9  SCALARMUL_core                                                            
    1000d08d  SCALARMUL_final                                                           
    1000cb69  SCALARMUL_init                                                            
    1000dbd5  SETOPERAND                                                                
    1000dc15  SETWORD                                                                   
    UNDEFED   SHT$$INIT_ARRAY$$Base                                                     
    UNDEFED   SHT$$INIT_ARRAY$$Limit                                                    
    10012139  SM_Encrypt                                                                
    10012465  SM_GenerateAuthenSig                                                      
    1001790d  SM_GetDHKey                                                               
    100178c5  SM_GetEccKeys                                                             
    10017989  SM_GetScConfirmOob                                                        
    100175d9  SM_Init                                                                   
    1000eb91  SM_PasskeyUpdate                                                          
    10017615  SM_ProcessEvent                                                           
    100178bd  SM_RegisterTask                                                           
    10012dfd  SM_ResponderInit                                                          
    1000f551  SM_SetECCRegenerationCount                                                
    1000eaed  SM_StartPairing                                                           
    10012521  SM_VerifyAuthenSig                                                        
    20004f7d  SM_appExpectingKey                                                        
    200045a9  SM_appTaskID                                                              
    00008b3f  SM_dhKeyCB                                                                
    0000995f  SM_p256KeyCB                                                              
    1000da81  SQUAREMULTIPLYWORD                                                        
    0000b739  SafeHapiVoid                                                              
    1000d2c5  SelectReg                                                                 
    0000b55d  SemaphoreP_constructBinary                                                
    0000c28b  SemaphoreP_pend                                                           
    0000c649  SemaphoreP_post                                                           
    00007b65  SimpleBLEPeripheral_createTask                                            
    0000a4c5  SimpleProfile_GetParameter                                                
    00007429  SimpleProfile_SetParameter                                                
    0000c321  SwiP_Params_init                                                          
    0000a995  SwiP_construct                                                            
    0000c64d  SwiP_disable                                                              
    0000c651  SwiP_getTrigger                                                           
    0000c655  SwiP_or                                                                   
    UNDEFED   SwiP_restore                                                              
    20004f04  SysBootMsg                                                                
    20004fe4  TMP1                                                                      
    20004fe8  TMP2                                                                      
    20004fec  TMP3                                                                      
    20004ff0  TMP4                                                                      
    20004ff4  TMP5                                                                      
    20004ff8  TMP6                                                                      
    0000d964  TRNGCC26XXHWAttrs                                                         
    0000d72c  TRNGCC26XX_config                                                         
    00007a05  TRNGCC26XX_getNumber                                                      
    0000b761  TRNGCC26XX_init                                                           
    0000bda9  TRNGCC26XX_open                                                           
    0000d7cc  TxPowerTable                                                              
    0000a365  Util_constructClock                                                       
    0000c42f  Util_constructQueue                                                       
    0000a025  Util_convertBdAddr2Str                                                    
    0000c331  Util_isActive                                                             
    0000abed  Util_restartClock                                                         
    0000c659  Util_startClock                                                           
    0000c65d  Util_stopClock                                                            
    10018ca9  WL_AddEntry                                                               
    10018bb1  WL_Clear                                                                  
    10018bed  WL_ClearEntry                                                             
    10018df9  WL_ClearIgnoreList                                                        
    10018c51  WL_FindEntry                                                              
    10018c25  WL_GetNumFreeEntries                                                      
    10018c11  WL_GetSize                                                                
    10018b81  WL_Init                                                                   
    10018d41  WL_RemoveEntry                                                            
    10018dc1  WL_SetWlIgnore                                                            
    1000dc09  ZERO                                                                      
    00000000  __ASM__                                                                   
    20001a20  __CIOBUF_                                                                 
    00000080  __ISA__                                                                   
    00000092  __PLAT__                                                                  
    20004400  __STACK_END                                                               
    00000400  __STACK_SIZE                                                              
    20004400  __STACK_TOP                                                               
    000000b9  __TARG__                                                                  
    0000def4  __TI_CINIT_Base                                                           
    0000df5c  __TI_CINIT_Limit                                                          
    0000deb0  __TI_Handler_Table_Base                                                   
    0000debc  __TI_Handler_Table_Limit                                                  
    00007d55  __TI_auto_init                                                            
    0000aff5  __TI_cleanup                                                              
    20001738  __TI_cleanup_ptr                                                          
    00007725  __TI_closefile                                                            
    00009519  __TI_decompress_lzss                                                      
    0000c43d  __TI_decompress_none                                                      
    0000a23d  __TI_doflush                                                              
    2000173c  __TI_dtors_ptr                                                            
    20001740  __TI_enable_exit_profile_output                                           
    20000cbc  __TI_ft_end                                                               
    ffffffff  __TI_pprof_out_hndl                                                       
    ffffffff  __TI_prof_data_size                                                       
    ffffffff  __TI_prof_data_start                                                      
    0000961b  __TI_readmsg                                                              
    00000000  __TI_static_base__                                                        
    20000cc0  __TI_tmpnams                                                              
    000095e9  __TI_writemsg                                                             
    0000c519  __TI_zero_init                                                            
    000000de  __TRDR__                                                                  
    0001ffff  __UNUSED_FLASH_end__                                                      
    00000000  __UNUSED_FLASH_start__                                                    
    20005000  __UNUSED_SRAM_end__                                                       
    20000000  __UNUSED_SRAM_start__                                                     
    0000c029  __aeabi_lmul                                                              
    00008e27  __aeabi_memclr                                                            
    00008e27  __aeabi_memclr4                                                           
    00008e27  __aeabi_memclr8                                                           
    00007f31  __aeabi_memcpy                                                            
    00007f31  __aeabi_memcpy4                                                           
    00007f31  __aeabi_memcpy8                                                           
    00008e29  __aeabi_memset                                                            
    00008e29  __aeabi_memset4                                                           
    00008e29  __aeabi_memset8                                                           
    00003f39  __aeabi_uldivmod                                                          
    ffffffff  __binit__                                                                 
    ffffffff  __c_args__                                                                
    0001ffa8  __ccfg                                                                    
    10019afe  __checksum                                                                
    10004940  __checksum_begin                                                          
    10019afd  __checksum_end                                                            
    000081d7  __checksum_value                                                          
    10019a1d  __exit                                                                    
    20004000  __stack                                                                   
    0000c011  _args_main                                                                
    0000a509  _c_int00                                                                  
    20000d60  _ftable                                                                   
    2000176c  _lock                                                                     
    0000c201  _nop                                                                      
    0000c209  _register_lock                                                            
    0000c203  _register_unlock                                                          
    20001770  _unlock                                                                   
    00009e45  abort                                                                     
    20004f00  activeConns                                                               
    10019a40  advChan                                                                   
    20004a20  advCmd                                                                    
    20004ae4  advDataEntry                                                              
    20004da4  advDataQueue                                                              
    10019a10  advEvt2Cmd                                                                
    10019a28  advEvt2State                                                              
    20004f10  advInfo                                                                   
    20004db4  advOutput                                                                 
    20004bf4  advParam                                                                  
    0000da46  advPktSuffix                                                              
    20001804  appAssertCback                                                            
    200045a7  appTaskID                                                                 
    0000d958  appTxPwrTbl                                                               
    0000d6ee  appearanceUUID                                                            
    2000175c  assertSubcause                                                            
    10016071  attSendMsg                                                                
    10019099  attSendRspMsg                                                             
    20004e4c  attServerNotifyTxCB                                                       
    20004f3e  attrLen                                                                   
    20004fa0  aux64                                                                     
    20001368  baseTaskID                                                                
    ffffffff  binit                                                                     
    200016f8  bleAppServiceInfoTable                                                    
    0000b589  bleDispatch_BMAlloc                                                       
    0000bf51  bleDispatch_BMFree                                                        
    0000d7f4  bleStackConfig                                                            
    00009155  ble_dispatch_liteProcess                                                  
    0000d8f4  boardConfig                                                               
    100199d0  btBaseUUID                                                                
    20004f0c  buildInfo                                                                 
    20004df8  cachedTRNGdata                                                            
    2000136c  cbTimers                                                                  
    0000d6ea  charAggFormatUUID                                                         
    0000d6e0  charExtPropsUUID                                                          
    0000d6e8  charFormatUUID                                                            
    0000d6e2  charUserDescUUID                                                          
    0000d6d6  characterUUID                                                             
    0000d6e4  clientCharCfgUUID                                                         
    0000da3c  connEvtCutoff                                                             
    20004f44  connInitialMaxTxOctets                                                    
    20004f46  connInitialMaxTxTime                                                      
    20004d5c  connOutput                                                                
    20004c84  connReqData                                                               
    10019a00  const_Rb                                                                  
    0000a1f1  copy_in                                                                   
    0000d8d4  cryptoCC26XXHWAttrs                                                       
    20001d18  cryptoCC26XXObjects                                                       
    0000d700  cryptoDriverTableBLE                                                      
    20004ef8  cryptoDrvTblPtr                                                           
    0000da4f  cryptoMode                                                                
    20004c14  cryptoPRAND                                                               
    20004f63  ctrlToHostEnable                                                          
    20004f71  curTxPowerVal                                                             
    0000d8c1  devInfo11073CertUUID                                                      
    0000d900  devInfoCBs                                                                
    0000d9a0  devInfoFirmwareRevUUID                                                    
    0000d9a2  devInfoHardwareRevUUID                                                    
    0000d9a4  devInfoMfrNameUUID                                                        
    0000d9a6  devInfoModelNumberUUID                                                    
    0000d9a8  devInfoPnpIdUUID                                                          
    0000d9aa  devInfoSerialNumberUUID                                                   
    0000d9ac  devInfoServUUID                                                           
    0000d9ae  devInfoSoftwareRevUUID                                                    
    0000d9b0  devInfoSystemIdUUID                                                       
    20004dec  deviceFeatureSet                                                          
    0000d6ec  deviceNameUUID                                                            
    10011c8d  disconnectNext                                                            
    2000020c  dispHandle                                                                
    0000d888  driverTable                                                               
    0000c16d  driverTable_fnSpinlock                                                    
    20001e25  driverlib_release_0_48919                                                 
    20004f1c  dtmInfo                                                                   
    0000d8e4  eccDriverTable                                                            
    20004ef4  eccDrvTblPtr                                                              
    20004b7c  eccParams                                                                 
    10016c1d  eccRom_genKeys                                                            
    10016c65  eccRom_genSharedSecret                                                    
    20004f80  eccRom_param_Gx                                                           
    20004f84  eccRom_param_Gy                                                           
    20004f94  eccRom_param_a                                                            
    20004f98  eccRom_param_b                                                            
    20004f8c  eccRom_param_p                                                            
    20004f90  eccRom_param_r                                                            
    100167a5  eccRom_signHash                                                           
    10016941  eccRom_verifyHash                                                         
    20004f9c  eccRom_windowSize                                                         
    20004f88  eccRom_workzone                                                           
    20004f28  encHandle                                                                 
    20004f2c  encKey                                                                    
    20004f24  encParams                                                                 
    20001674  excCaller                                                                 
    20001670  excPC                                                                     
    0000b7b1  execHandlerHook                                                           
    00009e4d  exit                                                                      
    0000d6fa  extReportRefUUID                                                          
    20004f77  fastTxRespTime                                                            
    200045a8  flowCtrlTaskId                                                            
    00004dc1  fputs                                                                     
    0000bf99  free                                                                      
    20004e44  fwImmedCmd                                                                
    20004e58  fwParCmd                                                                  
    20004d14  fwParDtmCmd                                                               
    20004d44  fwParRfCmd                                                                
    20004e70  fwParamImmedCmd                                                           
    20001e26  g_hwiInt                                                                  
    10018741  gapAddAddrAdj                                                             
    100149fd  gapAddAdvToken                                                            
    200045a3  gapAdvAppTaskID                                                           
    1001476d  gapAllocAdvRecs                                                           
    200045a2  gapAppTaskID                                                              
    20000e86  gapBond_lruBondList                                                       
    20000e61  gapBond_removeLRUBond                                                     
    20000e62  gapBond_syncRL                                                            
    10014abd  gapBuildADTokens                                                          
    10014a89  gapCalcAdvTokenDataLen                                                    
    100195ad  gapClrState                                                               
    100149c9  gapConnectedCleanUpAdvertising                                            
    20004e04  gapCurrentRandomAddr                                                      
    10014a39  gapDeleteAdvToken                                                         
    20004f59  gapDeviceAddrMode                                                         
    10019549  gapFindADType                                                             
    10014a71  gapFindAdvToken                                                           
    10014c51  gapFreeAdvertState                                                        
    10011dc1  gapFreeAuthLink                                                           
    10011e01  gapFreeEstLink                                                            
    100187ad  gapGetDevAddress                                                          
    100187a5  gapGetDevAddressMode                                                      
    10018775  gapGetSRK                                                                 
    1001877d  gapGetSignCounter                                                         
    10018769  gapHost2CtrlOwnAddrType                                                   
    10018785  gapIncSignCounter                                                         
    10019525  gapIsAdvertising                                                          
    10019529  gapIsScanning                                                             
    100193dd  gapL2capConnParamUpdateReq                                                
    20004f3c  gapLimitedAdvertisingTimeout                                              
    10011f75  gapPairingCompleteCB                                                      
    20004508  gapParameters                                                             
    20004c50  gapParams                                                                 
    10011efd  gapPasskeyNeededCB                                                        
    1001933d  gapPeriProcessConnEvt                                                     
    10019385  gapPeriProcessConnUpdateCmdStatus                                         
    10019399  gapPeriProcessConnUpdateCompleteEvt                                       
    1001470d  gapPeriProcessHCICmdCompleteEvt                                           
    10019401  gapPeriProcessSignalEvt                                                   
    20004558  gapPeripheralCBs                                                          
    20004564  gapPeripheralConnCBs                                                      
    1001495d  gapProcessAdvertisingEvt                                                  
    100149b5  gapProcessAdvertisingTimeout                                              
    10018971  gapProcessBLEEvents                                                       
    10018ab5  gapProcessCommandStatusEvt                                                
    10018b09  gapProcessConnEvt                                                         
    100119e1  gapProcessConnectionCompleteEvt                                           
    00008c39  gapProcessDisconnectCompleteEvt                                           
    10018a11  gapProcessHCICmdCompleteEvt                                               
    10018709  gapProcessNewAddr                                                         
    10018909  gapProcessOSALMsg                                                         
    10011ac1  gapProcessRemoteConnParamReqEvt                                           
    20004f58  gapProfileRole                                                            
    10018679  gapReadBD_ADDRStatus                                                      
    100186bd  gapReadBufSizeCmdStatus                                                   
    10018b41  gapRegisterCentral                                                        
    100120f1  gapRegisterCentralConn                                                    
    10018b49  gapRegisterPeripheral                                                     
    100120f9  gapRegisterPeripheralConn                                                 
    20000680  gapRoleTask                                                               
    200006d0  gapRoleTaskStack                                                          
    0000c381  gapRole_clockHandler                                                      
    10014be5  gapSendAdDataUpdateEvent                                                  
    10011e25  gapSendBondCompleteEvent                                                  
    100187e9  gapSendDeviceInitDoneEvent                                                
    10014c1d  gapSendEndDiscoverableEvent                                               
    10011c35  gapSendLinkUpdateEvent                                                    
    10014ba1  gapSendMakeDiscEvent                                                      
    10011e81  gapSendPairingReqEvent                                                    
    1001194d  gapSendSignUpdateEvent                                                    
    10011985  gapSendSlaveSecurityReqEvent                                              
    0000da10  gapServiceCBs                                                             
    0000d6d8  gapServiceUUID                                                            
    100147bd  gapSetAdvParams                                                           
    10014881  gapSetAdvParamsStatus                                                     
    100195a1  gapSetState                                                               
    20004f5a  gapState                                                                  
    20004f5d  gapTaskID                                                                 
    200045a4  gapUnwantedTaskID                                                         
    10011919  gapUpdateConnSignCounter                                                  
    10019535  gapValidADType                                                            
    10014951  gapWriteAdvDataStatus                                                     
    100148b1  gapWriteAdvEnableStatus                                                   
    200045a6  gattAppTaskID                                                             
    20001708  gattAttrTbl                                                               
    1001065d  gattFindServerInfo                                                        
    1001061d  gattFindService                                                           
    100183b1  gattGetPayload                                                            
    10010635  gattGetServerStatus                                                       
    100182a9  gattNotifyEvent                                                           
    20004f5e  gattNumConns                                                              
    10010519  gattParseReq                                                              
    1001026d  gattProcessExchangeMTUReq                                                 
    10010619  gattProcessExecuteWriteReq                                                
    1001039d  gattProcessFindByTypeValueReq                                             
    10010271  gattProcessFindInfoReq                                                    
    100181e1  gattProcessOSALMsg                                                        
    1001049d  gattProcessReadByGrpTypeReq                                               
    100103c1  gattProcessReadByTypeReq                                                  
    10010421  gattProcessReadMultiReq                                                   
    100103f9  gattProcessReadReq                                                        
    1001059d  gattProcessReq                                                            
    100181f5  gattProcessRxData                                                         
    100104e9  gattProcessWriteReq                                                       
    10018129  gattRegisterClient                                                        
    10018121  gattRegisterServer                                                        
    10010685  gattResetServerInfo                                                       
    1001838d  gattSendFlowCtrlEvt                                                       
    0000a591  gattServApp_ClearPrepareWriteQ                                            
    100108c1  gattServApp_DeregisterServiceCBs                                          
    00009d45  gattServApp_EnqueuePrepareWriteReq                                        
    100114d5  gattServApp_FindAuthorizeAttrCB                                           
    10011409  gattServApp_FindPrepareWriteQ                                             
    10011489  gattServApp_FindReadAttrCB                                                
    100108f9  gattServApp_FindServiceCBs                                                
    10011499  gattServApp_FindWriteAttrCB                                               
    0000b5b5  gattServApp_HandleConnStatusCB                                            
    1001134d  gattServApp_IsWriteLong                                                   
    1001143d  gattServApp_PrepareWriteQInUse                                            
    0000aa49  gattServApp_ProcessExchangeMTUReq                                         
    100112d9  gattServApp_ProcessExecuteWriteReq                                        
    10010a7d  gattServApp_ProcessFindByTypeValueReq                                     
    10010911  gattServApp_ProcessMsg                                                    
    10011205  gattServApp_ProcessPrepareWriteReq                                        
    10010ddd  gattServApp_ProcessReadBlobReq                                            
    10010fd5  gattServApp_ProcessReadByGrpTypeReq                                       
    00006b9d  gattServApp_ProcessReadByTypeReq                                          
    10010ea9  gattServApp_ProcessReadMultiReq                                           
    10010d5d  gattServApp_ProcessReadReq                                                
    00009719  gattServApp_ProcessReliableWrites                                         
    0000b2a5  gattServApp_ProcessWriteLong                                              
    10011165  gattServApp_ProcessWriteReq                                               
    10010881  gattServApp_RegisterServiceCBs                                            
    0000aa85  gattServApp_ResetCharCfg                                                  
    100107d1  gattServApp_SetNumPrepareWrites                                           
    10010cd5  gattServApp_buildReadByTypeRsp                                            
    1001071d  gattServerHandleConnStatusCB                                              
    100106e1  gattServerHandleTimerCB                                                   
    100106b9  gattServerNotifyTxCB                                                      
    100100e9  gattServerProcessMsgCB                                                    
    1001069d  gattServerStartTimer                                                      
    0000da2c  gattService                                                               
    100100ad  gattServiceLastHandle                                                     
    0000d6da  gattServiceUUID                                                           
    1001830d  gattStartTimer                                                            
    10018321  gattStopTimer                                                             
    100100c9  gattStoreServerInfo                                                       
    20004f5f  gattTaskID                                                                
    10012789  generate_subkey                                                           
    20001760  halAssertCback                                                            
    0000b89f  halAssertHandler                                                          
    0000bdfd  halAssertHandlerExt                                                       
    0000ba93  halAssertSpinlock                                                         
    20001e21  hciGapTaskID                                                              
    1000ba41  hciInitEventMasks                                                         
    20001e23  hciL2capTaskID                                                            
    20004f62  hciPTMenabled                                                             
    20001e24  hciSmpTaskID                                                              
    20001e20  hciTaskID                                                                 
    20001e22  hciTestTaskID                                                             
    20004000  heapEnd                                                                   
    20001e28  heapStart                                                                 
    200012e8  heapmgrMemFreeTotal                                                       
    0000d690  icallServiceTable                                                         
    2000180c  icallServiceTblPtr                                                        
    000052c9  icall_directAPI                                                           
    0000bfc9  icall_liteMsgParser                                                       
    20001e27  icall_liteTaskId                                                          
    20004fb4  inPointX                                                                  
    20004fb8  inPointY                                                                  
    20004fb0  inScalar                                                                  
    0000d6de  includeUUID                                                               
    20004c6c  initCmd                                                                   
    20004aac  initDataEntry                                                             
    20004d84  initDataQueue                                                             
    20004f18  initInfo                                                                  
    20004dd4  initOutput                                                                
    20004bac  initParam                                                                 
    0000da4a  initPktSuffix                                                             
    10014c75  isLimitedDiscoverableMode                                                 
    10015239  l2capAllocChannel                                                         
    10015269  l2capAllocConnChannel                                                     
    100150a5  l2capBuildInfoReq                                                         
    1001502d  l2capBuildParamUpdateReq                                                  
    10014ce5  l2capBuildSignalHdr                                                       
    20004ee4  l2capChannels                                                             
    10015391  l2capDisconnectAllChannels                                                
    10014eb9  l2capEncapSendData                                                        
    100152bd  l2capFindLocalId                                                          
    20004b1c  l2capFixedChannels                                                        
    20004f64  l2capFlowCtrlMode                                                         
    100152a9  l2capFreeChannel                                                          
    100153fd  l2capFreePendingPkt                                                       
    10017d25  l2capHandleConnStatusCB                                                   
    10015385  l2capHandleRxError                                                        
    10015321  l2capHandleTimerCB                                                        
    20004f68  l2capId                                                                   
    200045a0  l2capMtuSize                                                              
    10015189  l2capNotifyData                                                           
    1001534d  l2capNotifyEvent                                                          
    100151dd  l2capNotifySignal                                                         
    20004f66  l2capNumChannels                                                          
    20004f67  l2capNumDataPkts                                                          
    10014fed  l2capParseCmdReject                                                       
    10015125  l2capParseInfoRsp                                                         
    10014f51  l2capParsePacket                                                          
    10015099  l2capParseParamUpdateRsp                                                  
    10014cd1  l2capParseSignalHdr                                                       
    10017ad9  l2capProcessOSALMsg                                                       
    10017cc9  l2capProcessReq                                                           
    10017c3d  l2capProcessRsp                                                           
    10017b31  l2capProcessRxData                                                        
    10017bbd  l2capProcessSignal                                                        
    10014d75  l2capSendCmd                                                              
    10014e69  l2capSendFCPkt                                                            
    10014e2d  l2capSendPkt                                                              
    10014cf9  l2capSendReq                                                              
    100152e9  l2capStartTimer                                                           
    10015309  l2capStopTimer                                                            
    10014e05  l2capStoreFCPkt                                                           
    20004f65  l2capTaskID                                                               
    20001724  lastAppOpcodeIdxSent                                                      
    1001287d  leftshift_onebit                                                          
    2000175d  legacyMode                                                                
    20004b4c  linkCBs                                                                   
    20004e80  linkCmd                                                                   
    20004ee8  linkDB                                                                    
    20004f69  linkDBNumConns                                                            
    10017e05  linkDB_Add                                                                
    1001804d  linkDB_Authen                                                             
    10017f55  linkDB_Find                                                               
    10017f7d  linkDB_FindFirst                                                          
    10017f09  linkDB_GetInfo                                                            
    10017d7d  linkDB_Init                                                               
    1001803d  linkDB_MTU                                                                
    10017ff1  linkDB_NumActive                                                          
    10018019  linkDB_NumConns                                                           
    100180b5  linkDB_PerformFunc                                                        
    10017de5  linkDB_Register                                                           
    10017e91  linkDB_Remove                                                             
    10017fd5  linkDB_Role                                                               
    10018105  linkDB_SecurityModeSCOnly                                                 
    10017fb1  linkDB_State                                                              
    10017ed5  linkDB_Update                                                             
    10018021  linkDB_UpdateMTU                                                          
    100180e5  linkDB_reportStatusChange                                                 
    20004f6a  linkDB_secureConnectionOnlyMode                                           
    20004e84  linkParam                                                                 
    0000ac25  llActiveTask                                                              
    1000a4f5  llAddTxDataEntry                                                          
    10015b75  llAdv_TaskAbort                                                           
    10015559  llAdv_TaskConnect                                                         
    10015a61  llAdv_TaskEnd                                                             
    10008d71  llAlignToNextEvent                                                        
    100080f1  llAllocConnId                                                             
    00008bbd  llAllocTask                                                               
    100080b9  llAtLeastTwoChans                                                         
    10008b01  llCBTimer_AptoExpiredCback                                                
    1001993d  llCalcScaFactor                                                           
    10014435  llCheckForLstoDuringSL                                                    
    100093ad  llCheckRxBuffers                                                          
    10007205  llCheckWhiteListUsage                                                     
    10008c01  llCombinePDU                                                              
    0000d9c0  llConfigTable                                                             
    10008479  llConnCleanup                                                             
    10008385  llConnExists                                                              
    100085a9  llConnTerminate                                                           
    20004e68  llConns                                                                   
    100086b9  llConvertCtrlProcTimeoutToEvent                                           
    10008699  llConvertLstoToEvent                                                      
    10009371  llCreateRxBuffer                                                          
    0000c1d9  llDataGetConnPtr                                                          
    10007f09  llDequeueCtrlPkt                                                          
    100154b1  llDirAdv_TaskEnd                                                          
    10007ead  llEnqueueCtrlPkt                                                          
    10008691  llEventDelta                                                              
    10008669  llEventInRange                                                            
    00006135  llFindNextSecTask                                                         
    00009309  llFindStartType                                                           
    10008b81  llFragmentPDU                                                             
    0000a54d  llFreeTask                                                                
    10008635  llGenerateCRC                                                             
    0000c4dd  llGetActiveTasks                                                          
    0000c351  llGetCurrentTask                                                          
    100197b1  llGetCurrentTime                                                          
    10008301  llGetMinCI                                                                
    00003b29  llGetNextConn                                                             
    10007ff5  llGetNextDataChan                                                         
    0000c4d1  llGetNumTasks                                                             
    10008fbd  llGetSlowestPhy                                                           
    0000ac5d  llGetTask                                                                 
    0000af8d  llGetTaskState                                                            
    100071e9  llGetTxPower                                                              
    10007075  llHaltRadio                                                               
    1000929d  llHardwareError                                                           
    10008621  llInitFeatureSet                                                          
    100092e9  llMemCopyDst                                                              
    100092d1  llMemCopySrc                                                              
    100095b9  llMoveTempTxDataEntries                                                   
    10008f89  llOctets2Time                                                             
    1000941d  llPatchCM0                                                                
    100085e1  llPendingUpdateParam                                                      
    10007fb5  llProcessChanMap                                                          
    10009d5d  llProcessMasterControlPacket                                              
    1000713d  llProcessPostRfOps                                                        
    10009609  llProcessSlaveControlPacket                                               
    10013f05  llProcessSlaveControlProcedures                                           
    100086dd  llProcessTxData                                                           
    10009465  llRatChanCBack_A                                                          
    10009469  llRatChanCBack_B                                                          
    1000946d  llRatChanCBack_C                                                          
    10009471  llRatChanCBack_D                                                          
    10009071  llRealignConn                                                             
    100082cd  llReleaseAllConnId                                                        
    1000828d  llReleaseConnId                                                           
    10007f69  llReplaceCtrlPkt                                                          
    100093dd  llReplaceRxBuffers                                                        
    10007071  llResetRadio                                                              
    10006fed  llRfInit                                                                  
    10006f99  llRfSetup                                                                 
    100070b1  llRfStartFS                                                               
    00007899  llScheduleTask                                                            
    00001f25  llScheduler                                                               
    0000a9d1  llSchedulerInit                                                           
    10008949  llSendReject                                                              
    10008049  llSetNextDataChan                                                         
    10007191  llSetTxPower                                                              
    10007251  llSetupAdv                                                                
    100094dd  llSetupAdvDataEntryQueue                                                  
    10007829  llSetupConn                                                               
    1000899d  llSetupConnParamReq                                                       
    100089d5  llSetupConnParamRsp                                                       
    10009509  llSetupConnRxDataEntryQueue                                               
    1000798d  llSetupEncReq                                                             
    10007a2d  llSetupEncRsp                                                             
    10007c89  llSetupFeatureSetReq                                                      
    10007cdd  llSetupFeatureSetRsp                                                      
    10007659  llSetupInit                                                               
    100094b9  llSetupInitDataEntryQueue                                                 
    000088b1  llSetupLenCtrlPkt                                                         
    10013b75  llSetupNextSlaveEvent                                                     
    10007b61  llSetupPauseEncReq                                                        
    10007bad  llSetupPauseEncRsp                                                        
    100087fd  llSetupPingReq                                                            
    1000885d  llSetupPingRsp                                                            
    10009431  llSetupRATChanCompare                                                     
    10007c39  llSetupRejectInd                                                          
    10008aa5  llSetupRejectIndExt                                                       
    10007479  llSetupScan                                                               
    10009475  llSetupScanDataEntryQueue                                                 
    10007aed  llSetupStartEncReq                                                        
    10007b19  llSetupStartEncRsp                                                        
    10007de5  llSetupTermInd                                                            
    10007e49  llSetupUnknownRsp                                                         
    10007901  llSetupUpdateChanReq                                                      
    10007869  llSetupUpdateParamReq                                                     
    10007d5d  llSetupVersionIndReq                                                      
    10013931  llSlave_TaskEnd                                                           
    10008fdd  llSortActiveConns                                                         
    20004f6f  llState                                                                   
    0000c5ef  llTaskError                                                               
    20001de4  llTaskList                                                                
    10008f59  llTime2Octets                                                             
    100197b9  llTimeCompare                                                             
    100197dd  llTimeDelta                                                               
    20001520  llUserConfig                                                              
    00008f19  llValidateConnParams                                                      
    10008e45  llVerifyConnParamReqParams                                                
    1000876d  llWriteTxData                                                             
    100092fe  ll_buildRevision                                                          
    20004a68  localEccKeys                                                              
    1000e6c9  mADD                                                                      
    1000dd2d  mINVK                                                                     
    1000e0f9  mMULT                                                                     
    1000e8c1  mOUT                                                                      
    1000dc21  mSET                                                                      
    1000e7c5  mSUB                                                                      
    00006d75  main                                                                      
    20001808  main_func_sp                                                              
    0000b47d  malloc                                                                    
    20004f7b  maxNumConns                                                               
    20004f61  maxNumPrepareWrites                                                       
    20004f6d  maxNumTxDataBufs                                                          
    20004f6b  maxPduSize                                                                
    0000da4c  maxPktsPerEvt                                                             
    20004f72  maxTxPwrForDTM                                                            
    0000bbd5  memchr                                                                    
    00007f31  memcpy                                                                    
    00008e2f  memset                                                                    
    2000459e  nextHandle                                                                
    20004f74  numComplPkts                                                              
    20004f76  numComplPktsFlush                                                         
    20004f75  numComplPktsLimit                                                         
    20004f40  numHostBufs                                                               
    20004f7a  numTxDataBufs                                                             
    20004f73  onePktPerEvt                                                              
    0000be19  openTRNG                                                                  
    0000a3ad  osalAddTimer                                                              
    0000bb35  osalFindTimer                                                             
    0000c5fb  osalHeapAllocFxn                                                          
    0000c601  osalHeapFreeFxn                                                           
    0000c531  osalHeapGetStatsFxn                                                       
    0000c53d  osalHeapInitFxn                                                           
    0000c665  osalHeapIsBlockingFxn                                                     
    00006c89  osalTimerUpdate                                                           
    00008461  osal_CbTimerProcessEvent                                                  
    0000c549  osal_CbTimerStart                                                         
    00009ced  osal_CbTimerStop                                                          
    00009581  osal_CbTimerUpdate                                                        
    0000ad3d  osal_alien2proxy                                                          
    0000b801  osal_bm_adjust_header                                                     
    0000aafd  osal_bm_alloc                                                             
    0000a1a5  osal_bm_free                                                              
    0000bfe1  osal_buffer_uint32                                                        
    0000b44f  osal_build_uint32                                                         
    0000afc1  osal_clear_event                                                          
    200015e1  osal_entity                                                               
    200015ec  osal_eventloop_hook                                                       
    0000b305  osal_get_timeoutEx                                                        
    200015f0  osal_icallMsg_hook                                                        
    0000bebd  osal_isbufset                                                             
    20001ddc  osal_last_timestamp                                                       
    200015fc  osal_max_msecs                                                            
    0000c391  osal_mem_alloc                                                            
    0000c3a1  osal_mem_free                                                             
    0000bb55  osal_memcmp                                                               
    0000bff9  osal_memcpy                                                               
    0000be35  osal_memdup                                                               
    0000c669  osal_memset                                                               
    0000b979  osal_msg_allocate                                                         
    0000bb75  osal_msg_deallocate                                                       
    000080f9  osal_msg_receive                                                          
    0000bb95  osal_msg_send                                                             
    0000b829  osal_next_timeout                                                         
    200015e8  osal_qHead                                                                
    0000c301  osal_rand                                                                 
    0000be51  osal_revmemcpy                                                            
    0000c555  osal_self                                                                 
    0000b99d  osal_service_entry                                                        
    000074e9  osal_set_event                                                            
    0000b851  osal_snv_compact                                                          
    0000bc8f  osal_snv_read                                                             
    000067cd  osal_snv_write                                                            
    0000ab39  osal_start_reload_timer                                                   
    00004a45  osal_start_system                                                         
    0000a65d  osal_start_timerEx                                                        
    0000adad  osal_stop_timerEx                                                         
    0000c66d  osal_strlen                                                               
    200015f4  osal_syncHandle                                                           
    200015f8  osal_tickperiod                                                           
    0000818d  osal_timer_refTimeUpdate                                                  
    20004fbc  outPointX                                                                 
    20004fc0  outPointY                                                                 
    20004e2c  ownPublicAddr                                                             
    20004e34  ownRandomAddr                                                             
    20004e3c  ownSavedPublicAddr                                                        
    20004ee0  pAttrValue                                                                
    20004ea4  pAuthLink                                                                 
    20004e14  pBleEvtMask                                                               
    20004ea0  pEstLink                                                                  
    20004eb4  pGapAdData                                                                
    20004eb0  pGapAdvTokens                                                             
    20004e9c  pGapAdvertState                                                           
    20004e98  pGapDiscReq                                                               
    20004eb8  pGapScanRspData                                                           
    20004e1c  pHciEvtMask                                                               
    20004e24  pHciEvtMask2                                                              
    20004f30  pPairingParams                                                            
    20001720  pRfErrCb                                                                  
    20004ecc  pServiceList                                                              
    10012861  padding                                                                   
    0000d6f4  periConnParamUUID                                                         
    0000d6f0  periPrivacyFlagUUID                                                       
    20001718  pfnBMAlloc                                                                
    2000171c  pfnBMFree                                                                 
    20004ec4  pfnBondMgrCBs                                                             
    20004ec0  pfnCentralCBs                                                             
    20004ea8  pfnCentralConnCBs                                                         
    20004ed4  pfnClientProcessMsgCB                                                     
    20004f38  pfnInitiatorCBs                                                           
    20004ebc  pfnPeripheralCBs                                                          
    20004eac  pfnPeripheralConnCBs                                                      
    20004f34  pfnResponderCBs                                                           
    20004ed0  pfnServerProcessMsgCB                                                     
    20004f52  postRfOperations                                                          
    20004ed8  prepareWritesTbl                                                          
    0000d6d4  primaryServiceUUID                                                        
    20004e78  privInfo                                                                  
    00004f53  puts                                                                      
    2000056e  pwrmgr_attribute                                                          
    2000056c  pwrmgr_initialized                                                        
    0000d6f2  reconnectAddrUUID                                                         
    0000d6fc  reportRefUUID                                                             
    200045a5  reqTaskId                                                                 
    200045ac  resolvingList                                                             
    0000d5b0  resourceDB                                                                
    0000af59  rfCallback                                                                
    20004f54  rfCfgAdiVal                                                               
    0000da38  rfCfgVal                                                                  
    20004f42  rfCmdHandle                                                               
    0000d5fc  rfDriverTableBLE                                                          
    20004ef0  rfDrvTblPtr                                                               
    0000bed7  rfErrCb                                                                   
    20004e50  rfEvent                                                                   
    20004f6c  rfFeModeBias                                                              
    20004eec  rfHandle                                                                  
    20004568  rfMode                                                                    
    20004988  rfObject                                                                  
    0000da34  rfOpLoc                                                                   
    0000c341  rfPUpCallback                                                             
    20001728  rfRegTbl                                                                  
    20004d2c  rfSetup                                                                   
    10019afc  romRev                                                                    
    20004cfc  rsp                                                                       
    20004f70  rssiCorrection                                                            
    20004e88  rxDataQ                                                                   
    20004f79  rxFifoFlowCtrl                                                            
    20004ce4  rxModemTestCmd                                                            
    0000da44  rxPktSuffix                                                               
    20004e90  rxRingBuf                                                                 
    20004de0  rxTestOut                                                                 
    20004d70  rxTestParam                                                               
    20000298  sbpTask                                                                   
    200002e8  sbpTaskStack                                                              
    20004c9c  scanCmd                                                                   
    200046ec  scanDataEntry                                                             
    20004d94  scanDataQueue                                                             
    20004f14  scanInfo                                                                  
    20004cb4  scanOutput                                                                
    20004bd0  scanParam                                                                 
    0000da48  scanPktSuffix                                                             
    20004f08  sclkSrc                                                                   
    0000d6dc  secondaryServiceUUID                                                      
    10011cb5  sendAuthEvent                                                             
    10011b85  sendEstLinkEvent                                                          
    10011bf9  sendTerminateEvent                                                        
    0000d6e6  servCharCfgUUID                                                           
    20004ec8  serverInfoTbl                                                             
    20004edc  serviceCBsList                                                            
    0000d6f6  serviceChangedUUID                                                        
    000071bd  setvbuf                                                                   
    0000d90c  simpleProfileCBs                                                          
    0000d9b2  simpleProfileServUUID                                                     
    0000d9b4  simpleProfilechar1UUID                                                    
    0000d9b6  simpleProfilechar2UUID                                                    
    0000d9b8  simpleProfilechar3UUID                                                    
    0000d9ba  simpleProfilechar4UUID                                                    
    0000d9bc  simpleProfilechar5UUID                                                    
    20001784  sizeInfo                                                                  
    20004f78  slOverride                                                                
    2000459c  slaveConnHandle                                                           
    20004e0c  slaveUpdateReq                                                            
    100123e1  smAuthReqToUint8                                                          
    1000f819  smDetermineIOCaps                                                         
    1000f9cd  smDetermineKeySize                                                        
    10012445  smEncrypt                                                                 
    10012459  smEncryptLocal                                                            
    1000f985  smEndPairing                                                              
    1000f215  smF5Wrapper                                                               
    10013365  smFinishPublicKeyExchange                                                 
    1000f911  smFreePairingParams                                                       
    00007365  smGenerateAddrInput                                                       
    1000f129  smGenerateConfirm                                                         
    1000f2b9  smGenerateDHKeyCheck                                                      
    1000f0d9  smGeneratePairingReqRsp                                                   
    100123b1  smGenerateRandBuf                                                         
    1000f149  smGenerateRandMsg                                                         
    1000f465  smGetECCKeys                                                              
    1000f565  smIncrementEccKeyRecycleCount                                             
    1000eca1  smLinkCheck                                                               
    1000eef1  smNextPairingState                                                        
    1000f58d  smOobSCAuthentication                                                     
    1000f855  smPairingSendEncInfo                                                      
    1000f8c1  smPairingSendIdentityAddrInfo                                             
    1000f899  smPairingSendIdentityInfo                                                 
    1000f869  smPairingSendMasterID                                                     
    1000f8fd  smPairingSendSigningInfo                                                  
    1000eced  smProcessDataMsg                                                          
    1000ee25  smProcessEncryptChange                                                    
    10017715  smProcessHCIBLEEventCode                                                  
    10017765  smProcessHCIBLEMetaEventCode                                              
    100176c1  smProcessOSALMsg                                                          
    1000f05d  smProcessPairingReq                                                       
    1000ec91  smRegisterInitiator                                                       
    1000ec99  smRegisterResponder                                                       
    100134cd  smResponderAuthStageTwo                                                   
    20004584  smResponderCBs                                                            
    10012e29  smResponderProcessLTKReq                                                  
    100136f1  smResponderSendNextKeyInfo                                                
    00003d35  smSavePairInfo                                                            
    1000f18d  smSaveRemotePublicKeys                                                    
    1000f435  smSendDHKeyCheck                                                          
    1000edf9  smSendFailAndEnd                                                          
    0000b5e1  smSendFailureEvt                                                          
    1000f1bd  smSendPublicKeys                                                          
    1001673d  smSendSMMsg                                                               
    1000f9f1  smSetPairingReqRsp                                                        
    1000f0bd  smStartEncryption                                                         
    1001217d  smStartRspTimer                                                           
    100121a5  smStopRspTimer                                                            
    20004f7c  smTaskID                                                                  
    1000ecdd  smTimedOut                                                                
    10012409  smUint8ToAuthReq                                                          
    10012625  sm_CMAC                                                                   
    1000f35d  sm_allocateSCParameters                                                   
    00006e59  sm_c1                                                                     
    1001225d  sm_c1new                                                                  
    1000f501  sm_computeDHKey                                                           
    100121b9  sm_d1                                                                     
    10012205  sm_dm                                                                     
    10012895  sm_f4                                                                     
    10012961  sm_f5                                                                     
    10012b01  sm_f6                                                                     
    10012c45  sm_g2                                                                     
    10012365  sm_s1                                                                     
    1001234d  sm_xor                                                                    
    100164ad  smpBuildEncInfo                                                           
    10016579  smpBuildIdentityAddrInfo                                                  
    10016549  smpBuildIdentityInfo                                                      
    1001670d  smpBuildKeypressNoti                                                      
    100164e5  smpBuildMasterID                                                          
    1001640d  smpBuildPairingConfirm                                                    
    100166d9  smpBuildPairingDHKeyCheck                                                 
    1001647d  smpBuildPairingFailed                                                     
    1001666d  smpBuildPairingPublicKey                                                  
    10016445  smpBuildPairingRandom                                                     
    10016255  smpBuildPairingReq                                                        
    1001627d  smpBuildPairingReqRsp                                                     
    10016269  smpBuildPairingRsp                                                        
    10016625  smpBuildSecurityReq                                                       
    100165ed  smpBuildSigningInfo                                                       
    100164c9  smpParseEncInfo                                                           
    100165c9  smpParseIdentityAddrInfo                                                  
    1001659d  smpParseIdentityInfo                                                      
    10016729  smpParseKeypressNoti                                                      
    10016511  smpParseMasterID                                                          
    10016429  smpParsePairingConfirm                                                    
    100166f5  smpParsePairingDHKeyCheck                                                 
    1001648d  smpParsePairingFailed                                                     
    1001669d  smpParsePairingPublicKey                                                  
    10016461  smpParsePairingRandom                                                     
    1001632d  smpParsePairingReq                                                        
    10016649  smpParseSecurityReq                                                       
    10016609  smpParseSigningInfo                                                       
    1000f01d  smpProcessIncoming                                                        
    1001353d  smpResponderProcessEncryptionInformation                                  
    10013641  smpResponderProcessIdentityAddrInfo                                       
    100135fd  smpResponderProcessIdentityInfo                                           
    10012f65  smpResponderProcessIncoming                                               
    10013589  smpResponderProcessMasterID                                               
    10013165  smpResponderProcessPairingConfirm                                         
    10013451  smpResponderProcessPairingDHKeyCheck                                      
    10013335  smpResponderProcessPairingPublicKey                                       
    100131ed  smpResponderProcessPairingRandom                                          
    10013061  smpResponderProcessPairingReq                                             
    100136a1  smpResponderProcessSigningInfo                                            
    10013091  smpResponderSendPairRspEvent                                              
    00002509  startup_entry                                                             
    0000c041  strcmp                                                                    
    0000c29d  strcpy                                                                    
    0000c215  strlen                                                                    
    0000b029  strncpy                                                                   
    100196b8  supportedCmdsTable                                                        
    20004f4c  supportedMaxRxOctets                                                      
    20004f4e  supportedMaxRxTime                                                        
    20004f48  supportedMaxTxOctets                                                      
    20004f4a  supportedMaxTxTime                                                        
    20004f20  taskEndAction                                                             
    20004f50  taskEndStatus                                                             
    0000d754  tasksArr                                                                  
    20001e18  tasksEvents                                                               
    20004f5b  terminateAllTaskID                                                        
    20004f5c  terminateReason                                                           
    200001a4  ti_sysbios_BIOS_Module__state__V                                          
    1001b9d9  ti_sysbios_BIOS_RtsGateProxy_Handle__label__S                             
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_Handle__label__S__mangled__                  
    1001b88d  ti_sysbios_BIOS_RtsGateProxy_Object__delete__S                            
    1001bfb5  ti_sysbios_BIOS_RtsGateProxy_Params__init__S                              
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_Params__init__S__mangled__                   
    1001c091  ti_sysbios_BIOS_RtsGateProxy_enter__E                                     
    1001c095  ti_sysbios_BIOS_RtsGateProxy_leave__E                                     
    1001c0bd  ti_sysbios_BIOS_RtsGateProxy_query__E                                     
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_query__E__mangled__                          
    0000b335  ti_sysbios_BIOS_atExitFunc__I                                             
    0000c199  ti_sysbios_BIOS_errorRaiseHook__I                                         
    0000c1af  ti_sysbios_BIOS_exitFunc__I                                               
    1001be81  ti_sysbios_BIOS_exit__E                                                   
    1001be91  ti_sysbios_BIOS_getCpuFreq__E                                             
    0000c561  ti_sysbios_BIOS_getThreadType__E                                          
    1001a683  ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E                         
    0000c679  ti_sysbios_BIOS_nullFunc__I                                               
    0000b9c1  ti_sysbios_BIOS_registerRTSLock__I                                        
    0000b9e5  ti_sysbios_BIOS_removeRTSLock__I                                          
    0000bbf5  ti_sysbios_BIOS_rtsLock__I                                                
    0000c071  ti_sysbios_BIOS_rtsUnlock__I                                              
    1001bea1  ti_sysbios_BIOS_setThreadType__E                                          
    0000b365  ti_sysbios_BIOS_startFunc__I                                              
    1001beb1  ti_sysbios_BIOS_start__E                                                  
    000077e1  ti_sysbios_family_arm_cc26xx_Boot_trimDevice                              
    00001280  ti_sysbios_family_arm_cc26xx_Timer_Module__id__C                          
    1001b8f9  ti_sysbios_family_arm_cc26xx_Timer_Module__startupDone__S                 
    200001e4  ti_sysbios_family_arm_cc26xx_Timer_Module__state__V                       
    1001b845  ti_sysbios_family_arm_cc26xx_Timer_Module_startup__E                      
    200014a0  ti_sysbios_family_arm_cc26xx_Timer_Object__table__V                       
    0000bc15  ti_sysbios_family_arm_cc26xx_Timer_dynamicStub__E                         
    0000c23d  ti_sysbios_family_arm_cc26xx_Timer_getCount64__E                          
    0000ade5  ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E                      
    1001c099  ti_sysbios_family_arm_cc26xx_Timer_getExpiredTicks__E                     
    0000ba09  ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E                         
    1001c09d  ti_sysbios_family_arm_cc26xx_Timer_getPeriod__E                           
    0000b05d  ti_sysbios_family_arm_cc26xx_Timer_initDevice__I                          
    10019f25  ti_sysbios_family_arm_cc26xx_Timer_periodicStub__E                        
    1001b4bd  ti_sysbios_family_arm_cc26xx_Timer_postInit__I                            
    0000b0c3  ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E                         
    1001c0a1  ti_sysbios_family_arm_cc26xx_Timer_setPeriod__E                           
    0000a3f5  ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I                        
    00009001  ti_sysbios_family_arm_cc26xx_Timer_start__E                               
    000011f8  ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C                       
    1001b4e9  ti_sysbios_family_arm_cc26xx_Timer_startup__E                             
    200001ec  ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V           
    1001b919  ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_startup__E          
    0000c44b  ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E                   
    1001b77d  ti_sysbios_family_arm_cc26xx_TimestampProvider_get64__E                   
    1001bf6b  ti_sysbios_family_arm_cc26xx_TimestampProvider_getFreq__E                 
    00001282  ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C           
    000011fc  ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C                          
    0000d968  ti_sysbios_family_arm_m3_Hwi_E_exception__C                               
    00001200  ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C                        
    0000d96c  ti_sysbios_family_arm_m3_Hwi_E_noIsr__C                                   
    1001a755  ti_sysbios_family_arm_m3_Hwi_Instance_finalize__E                         
    10019fc1  ti_sysbios_family_arm_m3_Hwi_Instance_init__E                             
    200016f6  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A                  
    20001814  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A                 
    20001818  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A                   
    00001284  ti_sysbios_family_arm_m3_Hwi_Module__id__C                                
    2000178c  ti_sysbios_family_arm_m3_Hwi_Module__root__V                              
    1001b939  ti_sysbios_family_arm_m3_Hwi_Module__startupDone__S                       
    20000144  ti_sysbios_family_arm_m3_Hwi_Module__state__V                             
    1001aeb5  ti_sysbios_family_arm_m3_Hwi_Module_startup__E                            
    00001204  ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C                            
    00001070  ti_sysbios_family_arm_m3_Hwi_Object__DESC__C                              
    1001c9e8  ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C                            
    00001208  ti_sysbios_family_arm_m3_Hwi_Object__count__C                             
    1001a7b9  ti_sysbios_family_arm_m3_Hwi_Object__create__S                            
    1001b959  ti_sysbios_family_arm_m3_Hwi_Object__delete__S                            
    1001bc39  ti_sysbios_family_arm_m3_Hwi_Object__destruct__S                          
    1001b515  ti_sysbios_family_arm_m3_Hwi_Object__get__S                               
    0000120c  ti_sysbios_family_arm_m3_Hwi_Object__table__C                             
    20001688  ti_sysbios_family_arm_m3_Hwi_Object__table__V                             
    1001bf79  ti_sysbios_family_arm_m3_Hwi_Params__init__S                              
    00001210  ti_sysbios_family_arm_m3_Hwi_ccr__C                                       
    1001aabd  ti_sysbios_family_arm_m3_Hwi_construct                                    
    0000abb1  ti_sysbios_family_arm_m3_Hwi_construct2__E                                
    1001a8e5  ti_sysbios_family_arm_m3_Hwi_create                                       
    1001c0a5  ti_sysbios_family_arm_m3_Hwi_delete                                       
    1001c0a9  ti_sysbios_family_arm_m3_Hwi_destruct                                     
    1001bf85  ti_sysbios_family_arm_m3_Hwi_disableFxn__E                                
    1001af45  ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E                          
    1001a81d  ti_sysbios_family_arm_m3_Hwi_dispatchC__I                                 
    20001c50  ti_sysbios_family_arm_m3_Hwi_dispatchTable                                
    1001c7a5  ti_sysbios_family_arm_m3_Hwi_dispatch__I                                  
    1001c043  ti_sysbios_family_arm_m3_Hwi_doSwiRestore__I                              
    1001c05b  ti_sysbios_family_arm_m3_Hwi_doTaskRestore__I                             
    1001bf91  ti_sysbios_family_arm_m3_Hwi_enableFxn__E                                 
    1001af89  ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E                           
    000066d1  ti_sysbios_family_arm_m3_Hwi_excFillContext__I                            
    1001c901  ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I                             
    00001214  ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C                            
    000089bd  ti_sysbios_family_arm_m3_Hwi_excHandlerMin__I                             
    1001b979  ti_sysbios_family_arm_m3_Hwi_excHandler__I                                
    0000d950  ti_sysbios_family_arm_m3_Hwi_excHookFuncs__A                              
    0000d970  ti_sysbios_family_arm_m3_Hwi_excHookFuncs__C                              
    0000c3c1  ti_sysbios_family_arm_m3_Hwi_getHandle__E                                 
    1001b099  ti_sysbios_family_arm_m3_Hwi_getStackInfo__E                              
    1001a171  ti_sysbios_family_arm_m3_Hwi_initNVIC__E                                  
    1001c8b9  ti_sysbios_family_arm_m3_Hwi_initStacks__E                                
    00001218  ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C                               
    0000121c  ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C                       
    e000e000  ti_sysbios_family_arm_m3_Hwi_nvic                                         
    1001c93f  ti_sysbios_family_arm_m3_Hwi_pendSV__I                                    
    1001bdc1  ti_sysbios_family_arm_m3_Hwi_plug__E                                      
    10019e75  ti_sysbios_family_arm_m3_Hwi_postInit__I                                  
    0000c3d1  ti_sysbios_family_arm_m3_Hwi_post__E                                      
    00001220  ti_sysbios_family_arm_m3_Hwi_priGroup__C                                  
    20000000  ti_sysbios_family_arm_m3_Hwi_ramVectors                                   
    00000000  ti_sysbios_family_arm_m3_Hwi_resetVectors                                 
    1001c061  ti_sysbios_family_arm_m3_Hwi_restoreFxn__E                                
    1001c957  ti_sysbios_family_arm_m3_Hwi_return                                       
    0000c607  ti_sysbios_family_arm_m3_Hwi_setFunc__E                                   
    1001bc55  ti_sysbios_family_arm_m3_Hwi_setPriority__E                               
    1001c04b  ti_sysbios_family_arm_m3_Hwi_startup__E                                   
    0000d974  ti_sysbios_family_arm_m3_Hwi_swiDisable__C                                
    0000d978  ti_sysbios_family_arm_m3_Hwi_swiRestoreHwi__C                             
    1001be35  ti_sysbios_family_arm_m3_Hwi_switchFromBootStack__E                       
    1001c0ad  ti_sysbios_family_arm_m3_TaskSupport_Module__startupDone__S               
    1001c86d  ti_sysbios_family_arm_m3_TaskSupport_buildTaskStack                       
    1001bf9d  ti_sysbios_family_arm_m3_TaskSupport_getStackAlignment__E                 
    1001c959  ti_sysbios_family_arm_m3_TaskSupport_glue                                 
    00001224  ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C                    
    1001b155  ti_sysbios_family_arm_m3_TaskSupport_start__E                             
    1001c969  ti_sysbios_family_arm_m3_TaskSupport_swap__E                              
    1001c921  ti_sysbios_family_xxx_Hwi_switchAndRunFunc                                
    1001b999  ti_sysbios_gates_GateHwi_Handle__label__S                                 
    1001b153  ti_sysbios_gates_GateHwi_Instance_init__E                                 
    00001028  ti_sysbios_gates_GateHwi_Module__FXNS__C                                  
    00001286  ti_sysbios_gates_GateHwi_Module__id__C                                    
    20001794  ti_sysbios_gates_GateHwi_Module__root__V                                  
    00001090  ti_sysbios_gates_GateHwi_Object__DESC__C                                  
    1001cad8  ti_sysbios_gates_GateHwi_Object__PARAMS__C                                
    1001b869  ti_sysbios_gates_GateHwi_Object__create__S                                
    1001b9b9  ti_sysbios_gates_GateHwi_Object__delete__S                                
    1001bfa9  ti_sysbios_gates_GateHwi_enter__E                                         
    1001c067  ti_sysbios_gates_GateHwi_leave__E                                         
    1001c0b1  ti_sysbios_gates_GateHwi_query__E                                         
    1001b9d9  ti_sysbios_gates_GateMutex_Handle__label__S                               
    1001cb68  ti_sysbios_gates_GateMutex_Instance_State_sem__O                          
    1001bec1  ti_sysbios_gates_GateMutex_Instance_finalize__E                           
    1001bc71  ti_sysbios_gates_GateMutex_Instance_init__E                               
    0000104c  ti_sysbios_gates_GateMutex_Module__FXNS__C                                
    00001288  ti_sysbios_gates_GateMutex_Module__id__C                                  
    2000179c  ti_sysbios_gates_GateMutex_Module__root__V                                
    000010b0  ti_sysbios_gates_GateMutex_Object__DESC__C                                
    1001caf0  ti_sysbios_gates_GateMutex_Object__PARAMS__C                              
    1001b36d  ti_sysbios_gates_GateMutex_Object__create__S                              
    1001b88d  ti_sysbios_gates_GateMutex_Object__delete__S                              
    1001b9f9  ti_sysbios_gates_GateMutex_Object__destruct__S                            
    200014e8  ti_sysbios_gates_GateMutex_Object__table__V                               
    1001bfb5  ti_sysbios_gates_GateMutex_Params__init__S                                
    1001b541  ti_sysbios_gates_GateMutex_construct                                      
    1001b39d  ti_sysbios_gates_GateMutex_create                                         
    1001c0b5  ti_sysbios_gates_GateMutex_delete                                         
    1001c0b9  ti_sysbios_gates_GateMutex_destruct                                       
    1001b3cd  ti_sysbios_gates_GateMutex_enter__E                                       
    1001bdd9  ti_sysbios_gates_GateMutex_leave__E                                       
    1001c0bd  ti_sysbios_gates_GateMutex_query__E                                       
    1001b939  ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S                        
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S__mangled__             
    1001bed1  ti_sysbios_hal_Hwi_HwiProxy_Object__create__S                             
    1001b959  ti_sysbios_hal_Hwi_HwiProxy_Object__delete__S                             
    1001bf79  ti_sysbios_hal_Hwi_HwiProxy_Params__init__S                               
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_Params__init__S__mangled__                    
    1001bc8d  ti_sysbios_hal_Hwi_HwiProxy_create                                        
    1001c0c1  ti_sysbios_hal_Hwi_HwiProxy_delete                                        
    1001af45  ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E                           
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E__mangled__                
    1001af89  ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E                            
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E__mangled__                 
    1001b099  ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E                               
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E__mangled__                    
    0000c3d1  ti_sysbios_hal_Hwi_HwiProxy_post__E                                       
    1001c04b  ti_sysbios_hal_Hwi_HwiProxy_startup__E                                    
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_startup__E__mangled__                         
    1001be35  ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E                        
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E__mangled__             
    1001c039  ti_sysbios_hal_Hwi_Instance_finalize__E                                   
    1001b81d  ti_sysbios_hal_Hwi_Instance_init__E                                       
    200017a4  ti_sysbios_hal_Hwi_Module__root__V                                        
    1001be5d  ti_sysbios_hal_Hwi_Module_startup__E                                      
    000010d0  ti_sysbios_hal_Hwi_Object__DESC__C                                        
    1001ca18  ti_sysbios_hal_Hwi_Object__PARAMS__C                                      
    1001ba19  ti_sysbios_hal_Hwi_Object__delete__S                                      
    1001a881  ti_sysbios_hal_Hwi_create                                                 
    1001c0c5  ti_sysbios_hal_Hwi_delete                                                 
    1001af45  ti_sysbios_hal_Hwi_disableInterrupt__E                                    
    UNDEFED   ti_sysbios_hal_Hwi_disableInterrupt__E                                    
    1001af89  ti_sysbios_hal_Hwi_enableInterrupt__E                                     
    UNDEFED   ti_sysbios_hal_Hwi_enableInterrupt__E                                     
    1001b099  ti_sysbios_hal_Hwi_getStackInfo__E                                        
    UNDEFED   ti_sysbios_hal_Hwi_getStackInfo__E                                        
    1001b56d  ti_sysbios_hal_Hwi_initStack                                              
    0000c3d1  ti_sysbios_hal_Hwi_post__E                                                
    1001c04b  ti_sysbios_hal_Hwi_startup__E                                             
    UNDEFED   ti_sysbios_hal_Hwi_startup__E                                             
    1001be35  ti_sysbios_hal_Hwi_switchFromBootStack__E                                 
    UNDEFED   ti_sysbios_hal_Hwi_switchFromBootStack__E                                 
    0000c089  ti_sysbios_heaps_HeapCallback_Instance_init__E                            
    0000d77c  ti_sysbios_heaps_HeapCallback_Module__FXNS__C                             
    200017ac  ti_sysbios_heaps_HeapCallback_Module__root__V                             
    0000a865  ti_sysbios_heaps_HeapCallback_Module_startup__E                           
    0000d818  ti_sysbios_heaps_HeapCallback_Object__DESC__C                             
    0000d854  ti_sysbios_heaps_HeapCallback_Object__PARAMS__C                           
    0000d97c  ti_sysbios_heaps_HeapCallback_Object__count__C                            
    0000b395  ti_sysbios_heaps_HeapCallback_Object__create__S                           
    0000c251  ti_sysbios_heaps_HeapCallback_Object__get__S                              
    20001744  ti_sysbios_heaps_HeapCallback_Object__table__V                            
    0000d980  ti_sysbios_heaps_HeapCallback_allocInstFxn__C                             
    0000c3e1  ti_sysbios_heaps_HeapCallback_alloc__E                                    
    0000d984  ti_sysbios_heaps_HeapCallback_createInstFxn__C                            
    0000c671  ti_sysbios_heaps_HeapCallback_defaultCreate                               
    0000d988  ti_sysbios_heaps_HeapCallback_freeInstFxn__C                              
    0000c3f1  ti_sysbios_heaps_HeapCallback_free__E                                     
    0000d98c  ti_sysbios_heaps_HeapCallback_getStatsInstFxn__C                          
    0000c401  ti_sysbios_heaps_HeapCallback_getStats__E                                 
    0000d990  ti_sysbios_heaps_HeapCallback_initInstFxn__C                              
    0000d994  ti_sysbios_heaps_HeapCallback_isBlockingInstFxn__C                        
    0000c411  ti_sysbios_heaps_HeapCallback_isBlocking__E                               
    00001228  ti_sysbios_heaps_HeapMem_E_memory__C                                      
    1001ba39  ti_sysbios_heaps_HeapMem_Handle__label__S                                 
    1001b18d  ti_sysbios_heaps_HeapMem_Instance_init__E                                 
    1001b9d9  ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S                
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S__mangled__     
    1001b88d  ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__delete__S               
    1001bfb5  ti_sysbios_heaps_HeapMem_Module_GateProxy_Params__init__S                 
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_Params__init__S__mangled__      
    1001c0c9  ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E                        
    1001c0cd  ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E                        
    1001c0bd  ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E                        
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E__mangled__             
    00001000  ti_sysbios_heaps_HeapMem_Module__FXNS__C                                  
    0000122c  ti_sysbios_heaps_HeapMem_Module__gateObj__C                               
    0000128a  ti_sysbios_heaps_HeapMem_Module__id__C                                    
    200017b4  ti_sysbios_heaps_HeapMem_Module__root__V                                  
    000010f0  ti_sysbios_heaps_HeapMem_Object__DESC__C                                  
    1001ca6c  ti_sysbios_heaps_HeapMem_Object__PARAMS__C                                
    00001230  ti_sysbios_heaps_HeapMem_Object__count__C                                 
    1001b599  ti_sysbios_heaps_HeapMem_Object__create__S                                
    1001ba59  ti_sysbios_heaps_HeapMem_Object__delete__S                                
    1001b5c5  ti_sysbios_heaps_HeapMem_Object__get__S                                   
    00001234  ti_sysbios_heaps_HeapMem_Object__table__C                                 
    1001a615  ti_sysbios_heaps_HeapMem_allocUnprotected__E                              
    1001ab15  ti_sysbios_heaps_HeapMem_alloc__E                                         
    1001ab6d  ti_sysbios_heaps_HeapMem_freeUnprotected__E                               
    1001b3fd  ti_sysbios_heaps_HeapMem_free__E                                          
    1001aefd  ti_sysbios_heaps_HeapMem_getStats__E                                      
    1001b235  ti_sysbios_heaps_HeapMem_init__I                                          
    1001c06d  ti_sysbios_heaps_HeapMem_isBlocking__E                                    
    00001238  ti_sysbios_heaps_HeapMem_reqAlign__C                                      
    1001bf41  ti_sysbios_heaps_HeapMem_restore__E                                       
    1001be09  ti_sysbios_knl_Clock_Instance_finalize__E                                 
    1001b1c5  ti_sysbios_knl_Clock_Instance_init__E                                     
    1001cb6c  ti_sysbios_knl_Clock_Module_State_clockQ__O                               
    200017bc  ti_sysbios_knl_Clock_Module__root__V                                      
    20000178  ti_sysbios_knl_Clock_Module__state__V                                     
    1001ba79  ti_sysbios_knl_Clock_Module_startup__E                                    
    00001110  ti_sysbios_knl_Clock_Object__DESC__C                                      
    1001ca90  ti_sysbios_knl_Clock_Object__PARAMS__C                                    
    1001b8b1  ti_sysbios_knl_Clock_Object__delete__S                                    
    1001ba99  ti_sysbios_knl_Clock_Object__destruct__S                                  
    20001630  ti_sysbios_knl_Clock_Object__table__V                                     
    1001bfc1  ti_sysbios_knl_Clock_Params__init__S                                      
    1001b8f9  ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S                    
    UNDEFED   ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S__mangled__         
    1001bee1  ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E                         
    1001c0d1  ti_sysbios_knl_Clock_TimerProxy_getExpiredTicks__E                        
    1001bef1  ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E                            
    1001c0d5  ti_sysbios_knl_Clock_TimerProxy_getPeriod__E                              
    1001bf01  ti_sysbios_knl_Clock_TimerProxy_setNextTick__E                            
    1001b4e9  ti_sysbios_knl_Clock_TimerProxy_startup__E                                
    UNDEFED   ti_sysbios_knl_Clock_TimerProxy_startup__E__mangled__                     
    1001b7a5  ti_sysbios_knl_Clock_addI__E                                              
    1001b269  ti_sysbios_knl_Clock_construct                                            
    1001b1fd  ti_sysbios_knl_Clock_create                                               
    1001c0d9  ti_sysbios_knl_Clock_delete                                               
    1001c0dd  ti_sysbios_knl_Clock_destruct                                             
    0000c265  ti_sysbios_knl_Clock_doTick__I                                            
    0000b691  ti_sysbios_knl_Clock_getTicksUntilInterrupt__E                            
    1001b29d  ti_sysbios_knl_Clock_getTicks__E                                          
    0000b6e7  ti_sysbios_knl_Clock_getTimeout__E                                        
    1001bfcd  ti_sysbios_knl_Clock_getTimerHandle__E                                    
    0000c675  ti_sysbios_knl_Clock_isActive__E                                          
    1001b843  ti_sysbios_knl_Clock_logTick__E                                           
    1001c0e1  ti_sysbios_knl_Clock_removeI__E                                           
    1001bca9  ti_sysbios_knl_Clock_scheduleNextTick__E                                  
    1001c0e5  ti_sysbios_knl_Clock_setTimeout__E                                        
    1001a1f1  ti_sysbios_knl_Clock_startI__E                                            
    1001be1f  ti_sysbios_knl_Clock_start__E                                             
    1001bab9  ti_sysbios_knl_Clock_stop__E                                              
    0000128e  ti_sysbios_knl_Clock_tickMode__C                                          
    0000d998  ti_sysbios_knl_Clock_tickPeriod__C                                        
    0000123c  ti_sysbios_knl_Clock_triggerClock__C                                      
    1001bdbf  ti_sysbios_knl_Clock_triggerFunc__I                                       
    1001a2f1  ti_sysbios_knl_Clock_walkQueueDynamic__E                                  
    00007fcd  ti_sysbios_knl_Clock_workFuncDynamic__E                                   
    1001a369  ti_sysbios_knl_Clock_workFunc__E                                          
    1001cb70  ti_sysbios_knl_Event_Instance_State_pendQ__O                              
    1001be49  ti_sysbios_knl_Event_Instance_init__E                                     
    200017c4  ti_sysbios_knl_Event_Module__root__V                                      
    00001130  ti_sysbios_knl_Event_Object__DESC__C                                      
    1001cb08  ti_sysbios_knl_Event_Object__PARAMS__C                                    
    1001bad9  ti_sysbios_knl_Event_Object__delete__S                                    
    1001bcc5  ti_sysbios_knl_Event_Object__destruct__S                                  
    1001bfd9  ti_sysbios_knl_Event_Params__init__S                                      
    1001baf9  ti_sysbios_knl_Event_checkEvents__I                                       
    1001b5f1  ti_sysbios_knl_Event_construct                                            
    1001b42d  ti_sysbios_knl_Event_create                                               
    1001c0e9  ti_sysbios_knl_Event_delete                                               
    1001c0ed  ti_sysbios_knl_Event_destruct                                             
    1001b61d  ti_sysbios_knl_Event_pendTimeout__I                                       
    10019bf9  ti_sysbios_knl_Event_pend__E                                              
    1001a455  ti_sysbios_knl_Event_post__E                                              
    1001be6f  ti_sysbios_knl_Event_sync__E                                              
    0000d99c  ti_sysbios_knl_Idle_funcList__A                                           
    000011f0  ti_sysbios_knl_Idle_funcList__C                                           
    1001c053  ti_sysbios_knl_Idle_loop__E                                               
    1001bb19  ti_sysbios_knl_Idle_run__E                                                
    1001cb74  ti_sysbios_knl_Mailbox_Instance_State_dataQue__O                          
    1001cb78  ti_sysbios_knl_Mailbox_Instance_State_dataSem__O                          
    1001cb7c  ti_sysbios_knl_Mailbox_Instance_State_freeQue__O                          
    1001cb80  ti_sysbios_knl_Mailbox_Instance_State_freeSem__O                          
    1001a4c5  ti_sysbios_knl_Mailbox_Instance_finalize__E                               
    10019dad  ti_sysbios_knl_Mailbox_Instance_init__E                                   
    200017cc  ti_sysbios_knl_Mailbox_Module__root__V                                    
    1001afcd  ti_sysbios_knl_Mailbox_Module_startup__E                                  
    00001150  ti_sysbios_knl_Mailbox_Object__DESC__C                                    
    1001c9b4  ti_sysbios_knl_Mailbox_Object__PARAMS__C                                  
    00001240  ti_sysbios_knl_Mailbox_Object__count__C                                   
    1001bb39  ti_sysbios_knl_Mailbox_Object__delete__S                                  
    1001bce1  ti_sysbios_knl_Mailbox_Object__destruct__S                                
    1001b649  ti_sysbios_knl_Mailbox_Object__get__S                                     
    00001244  ti_sysbios_knl_Mailbox_Object__table__C                                   
    1001bfe5  ti_sysbios_knl_Mailbox_Params__init__S                                    
    1001abc5  ti_sysbios_knl_Mailbox_construct                                          
    1001a945  ti_sysbios_knl_Mailbox_create                                             
    1001c0f1  ti_sysbios_knl_Mailbox_delete                                             
    1001c0f5  ti_sysbios_knl_Mailbox_destruct                                           
    00001248  ti_sysbios_knl_Mailbox_maxTypeAlign__C                                    
    1001a535  ti_sysbios_knl_Mailbox_pend__E                                            
    1001b675  ti_sysbios_knl_Mailbox_postInit__I                                        
    1001a0ed  ti_sysbios_knl_Mailbox_post__E                                            
    1001c073  ti_sysbios_knl_Queue_Instance_init__E                                     
    200017d4  ti_sysbios_knl_Queue_Module__root__V                                      
    00001170  ti_sysbios_knl_Queue_Object__DESC__C                                      
    1001cb20  ti_sysbios_knl_Queue_Object__PARAMS__C                                    
    0000124c  ti_sysbios_knl_Queue_Object__count__C                                     
    1001bb59  ti_sysbios_knl_Queue_Object__delete__S                                    
    1001bcfd  ti_sysbios_knl_Queue_Object__destruct__S                                  
    1001bb79  ti_sysbios_knl_Queue_Object__get__S                                       
    00001250  ti_sysbios_knl_Queue_Object__table__C                                     
    1001b6a1  ti_sysbios_knl_Queue_construct                                            
    1001b6cd  ti_sysbios_knl_Queue_create                                               
    1001c0f9  ti_sysbios_knl_Queue_delete                                               
    1001bff1  ti_sysbios_knl_Queue_dequeue__E                                           
    1001c0fd  ti_sysbios_knl_Queue_destruct                                             
    1001c079  ti_sysbios_knl_Queue_elemClear__E                                         
    1001bf4f  ti_sysbios_knl_Queue_empty__E                                             
    1001bffd  ti_sysbios_knl_Queue_enqueue__E                                           
    1001bd19  ti_sysbios_knl_Queue_get__E                                               
    1001c101  ti_sysbios_knl_Queue_head__E                                              
    1001c105  ti_sysbios_knl_Queue_next__E                                              
    1001bd35  ti_sysbios_knl_Queue_put__E                                               
    1001bf5d  ti_sysbios_knl_Queue_remove__E                                            
    1001cb84  ti_sysbios_knl_Semaphore_Instance_State_pendQ__O                          
    1001b7cd  ti_sysbios_knl_Semaphore_Instance_finalize__E                             
    1001a685  ti_sysbios_knl_Semaphore_Instance_init__E                                 
    200017dc  ti_sysbios_knl_Semaphore_Module__root__V                                  
    00001190  ti_sysbios_knl_Semaphore_Object__DESC__C                                  
    1001cab4  ti_sysbios_knl_Semaphore_Object__PARAMS__C                                
    1001b8d5  ti_sysbios_knl_Semaphore_Object__delete__S                                
    1001bb99  ti_sysbios_knl_Semaphore_Object__destruct__S                              
    1001c009  ti_sysbios_knl_Semaphore_Params__init__S                                  
    1001b45d  ti_sysbios_knl_Semaphore_construct                                        
    1001b2d1  ti_sysbios_knl_Semaphore_create                                           
    1001c109  ti_sysbios_knl_Semaphore_delete                                           
    1001c10d  ti_sysbios_knl_Semaphore_destruct                                         
    00001254  ti_sysbios_knl_Semaphore_eventPost__C                                     
    00001258  ti_sysbios_knl_Semaphore_eventSync__C                                     
    1001b6f9  ti_sysbios_knl_Semaphore_pendTimeout__I                                   
    10019b05  ti_sysbios_knl_Semaphore_pend__E                                          
    1001a3e1  ti_sysbios_knl_Semaphore_post__E                                          
    1001bf77  ti_sysbios_knl_Swi_Instance_finalize__E                                   
    1001a9a5  ti_sysbios_knl_Swi_Instance_init__E                                       
    20001550  ti_sysbios_knl_Swi_Module_State_0_readyQ__A                               
    200017e4  ti_sysbios_knl_Swi_Module__root__V                                        
    200001c8  ti_sysbios_knl_Swi_Module__state__V                                       
    1001c07f  ti_sysbios_knl_Swi_Module_startup__E                                      
    000011b0  ti_sysbios_knl_Swi_Object__DESC__C                                        
    1001ca44  ti_sysbios_knl_Swi_Object__PARAMS__C                                      
    0000125c  ti_sysbios_knl_Swi_Object__count__C                                       
    1001bbb9  ti_sysbios_knl_Swi_Object__delete__S                                      
    1001bd51  ti_sysbios_knl_Swi_Object__destruct__S                                    
    1001b725  ti_sysbios_knl_Swi_Object__get__S                                         
    00001260  ti_sysbios_knl_Swi_Object__table__C                                       
    20001580  ti_sysbios_knl_Swi_Object__table__V                                       
    1001c015  ti_sysbios_knl_Swi_Params__init__S                                        
    1001ad79  ti_sysbios_knl_Swi_construct                                              
    0000be6d  ti_sysbios_knl_Swi_construct2__E                                          
    1001ac1d  ti_sysbios_knl_Swi_create                                                 
    1001c111  ti_sysbios_knl_Swi_delete                                                 
    1001c115  ti_sysbios_knl_Swi_destruct                                               
    1001bf11  ti_sysbios_knl_Swi_disable__E                                             
    1001bf21  ti_sysbios_knl_Swi_enabled__E                                             
    0000c56d  ti_sysbios_knl_Swi_getTrigger__E                                          
    00001264  ti_sysbios_knl_Swi_numPriorities__C                                       
    0000c0a1  ti_sysbios_knl_Swi_or__E                                                  
    1001c119  ti_sysbios_knl_Swi_postInit__I                                            
    1001b011  ti_sysbios_knl_Swi_post__E                                                
    1001a6ed  ti_sysbios_knl_Swi_restoreHwi__E                                          
    1001b305  ti_sysbios_knl_Swi_restore__E                                             
    1001adc9  ti_sysbios_knl_Swi_runLoop__I                                             
    1001ac75  ti_sysbios_knl_Swi_run__I                                                 
    1001ad25  ti_sysbios_knl_Swi_schedule__I                                            
    0000c579  ti_sysbios_knl_Swi_self__E                                                
    1001c085  ti_sysbios_knl_Swi_startup__E                                             
    20001820  ti_sysbios_knl_Task_Instance_State_0_stack__A                             
    1001a059  ti_sysbios_knl_Task_Instance_finalize__E                                  
    10019ce1  ti_sysbios_knl_Task_Instance_init__E                                      
    2000181c  ti_sysbios_knl_Task_Module_State_0_idleTask__A                            
    200015b0  ti_sysbios_knl_Task_Module_State_0_readyQ__A                              
    1001cb88  ti_sysbios_knl_Task_Module_State_inactiveQ__O                             
    200017ec  ti_sysbios_knl_Task_Module__root__V                                       
    20000100  ti_sysbios_knl_Task_Module__state__V                                      
    1001aa05  ti_sysbios_knl_Task_Module_startup__E                                     
    000011d0  ti_sysbios_knl_Task_Object__DESC__C                                       
    1001c978  ti_sysbios_knl_Task_Object__PARAMS__C                                     
    00001268  ti_sysbios_knl_Task_Object__count__C                                      
    1001bbd9  ti_sysbios_knl_Task_Object__delete__S                                     
    1001bd6d  ti_sysbios_knl_Task_Object__destruct__S                                   
    1001bbf9  ti_sysbios_knl_Task_Object__get__S                                        
    0000126c  ti_sysbios_knl_Task_Object__table__C                                      
    20001454  ti_sysbios_knl_Task_Object__table__V                                      
    1001c021  ti_sysbios_knl_Task_Params__init__S                                       
    1001c0ad  ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S                   
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S__mangled__        
    1001bf9d  ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E                     
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E__mangled__          
    1001b155  ti_sysbios_knl_Task_SupportProxy_start__E                                 
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_start__E__mangled__                      
    1001c969  ti_sysbios_knl_Task_SupportProxy_swap__E                                  
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_swap__E__mangled__                       
    00001270  ti_sysbios_knl_Task_allBlockedFunc__C                                     
    1001b055  ti_sysbios_knl_Task_allBlockedFunction__I                                 
    1001b339  ti_sysbios_knl_Task_blockI__E                                             
    1001ae19  ti_sysbios_knl_Task_construct                                             
    1001accd  ti_sysbios_knl_Task_create                                                
    00001274  ti_sysbios_knl_Task_defaultStackHeap__C                                   
    00001278  ti_sysbios_knl_Task_defaultStackSize__C                                   
    1001c11d  ti_sysbios_knl_Task_delete                                                
    1001c121  ti_sysbios_knl_Task_destruct                                              
    1001bf31  ti_sysbios_knl_Task_disable__E                                            
    1001c08b  ti_sysbios_knl_Task_enable__E                                             
    1001bd89  ti_sysbios_knl_Task_enter__I                                              
    1001b119  ti_sysbios_knl_Task_exit__E                                               
    0000128c  ti_sysbios_knl_Task_initStackFlag__C                                      
    0000127c  ti_sysbios_knl_Task_numConstructedTasks__C                                
    1001a271  ti_sysbios_knl_Task_postInit__I                                           
    1001b48d  ti_sysbios_knl_Task_processVitalTaskFlag__I                               
    1001bc19  ti_sysbios_knl_Task_restoreHwi__E                                         
    1001b7f5  ti_sysbios_knl_Task_restore__E                                            
    1001ae69  ti_sysbios_knl_Task_schedule__I                                           
    1001c02d  ti_sysbios_knl_Task_self__E                                               
    1001bda5  ti_sysbios_knl_Task_sleepTimeout__I                                       
    1001a5a5  ti_sysbios_knl_Task_sleep__E                                              
    1001aa61  ti_sysbios_knl_Task_startCore__E                                          
    1001c125  ti_sysbios_knl_Task_startup__E                                            
    1001c971  ti_sysbios_knl_Task_swapReturn                                            
    1001b751  ti_sysbios_knl_Task_unblockI__E                                           
    1001bdf1  ti_sysbios_knl_Task_unblock__E                                            
    1001b0d9  ti_sysbios_knl_Task_yield__E                                              
    00001304  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E       
    00001308  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E   
    0000130c  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E      
    00001310  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_initDevice__I       
    00001314  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E      
    00001318  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I     
    0000131c  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_start__E            
    00001320  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E
    00001324  ti_sysbios_rom_ROM_xdc_runtime_Startup_getState__I                        
    00001328  ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_abort__E               
    0000132c  ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_exit__E                
    10019b00  ti_sysbios_rom_cortexm_cc26xx_r2_CC26xx_REVISION__C                       
    0000c67b  ti_sysbios_rom_cortexm_cc26xx_r2_CC26xx_badRomRevision__E                 
    0000c0b9  ti_sysbios_rom_cortexm_cc26xx_r2_CC26xx_checkRevision__E                  
    20001dd8  timerHead                                                                 
    20001e1c  trngCC26XXObjects                                                         
    0000d918  trngDriverTable                                                           
    20004efc  trngDrvTblPtr                                                             
    20004ccc  trxTestCmd                                                                
    20004e8c  txDataQ                                                                   
    20004c34  txModemTestCmd                                                            
    0000da40  txPowerTable                                                              
    0000da1c  txPwrTbl                                                                  
    20004e94  txTestOut                                                                 
    20004dc4  txTestParam                                                               
    0000763f  unlink                                                                    
    20001678  user0Cfg                                                                  
    0000d6f8  validRangeUUID                                                            
    20004e60  verInfo                                                                   
    0000da4e  wlSize                                                                    
    200047cc  wlTable                                                                   
    200048a8  wlTableScan                                                               
    000075a9  write                                                                     
    000012a0  xdc_runtime_Assert_E_assertFailed__C                                      
    1001c465  xdc_runtime_Assert_raise__I                                               
    1001c5b9  xdc_runtime_Core_assignLabel__I                                           
    1001c4ad  xdc_runtime_Core_assignParams__I                                          
    1001c4f5  xdc_runtime_Core_constructObject__I                                       
    1001c2c9  xdc_runtime_Core_createObject__I                                          
    1001c3b5  xdc_runtime_Core_deleteObject__I                                          
    1001c6a5  xdc_runtime_Core_destructObject__I                                        
    000012a4  xdc_runtime_Error_E_memory__C                                             
    20001650  xdc_runtime_Error_IgnoreBlock                                             
    20000204  xdc_runtime_Error_Module__state__V                                        
    1001c6bd  xdc_runtime_Error_check__E                                                
    0000c0d1  xdc_runtime_Error_init__E                                                 
    000012f8  xdc_runtime_Error_maxDepth__C                                             
    000012a8  xdc_runtime_Error_policyFxn__C                                            
    1001c413  xdc_runtime_Error_policySpin__E                                           
    00001300  xdc_runtime_Error_policy__C                                               
    000012ac  xdc_runtime_Error_raiseHook__C                                            
    1001c66d  xdc_runtime_Error_raiseX__E                                               
    1001c795  xdc_runtime_Gate_enterSystem__E                                           
    1001c789  xdc_runtime_Gate_leaveSystem__E                                           
    000012b0  xdc_runtime_IGateProvider_Interface__BASE__C                              
    000012b4  xdc_runtime_IHeap_Interface__BASE__C                                      
    000012b8  xdc_runtime_IModule_Interface__BASE__C                                    
    UNDEFED   xdc_runtime_Main_Module_GateProxy_Handle__label__S                        
    UNDEFED   xdc_runtime_Main_Module_GateProxy_query__E                                
    1001ba39  xdc_runtime_Memory_HeapProxy_Handle__label__S                             
    UNDEFED   xdc_runtime_Memory_HeapProxy_Handle__label__S__mangled__                  
    1001ba59  xdc_runtime_Memory_HeapProxy_Object__delete__S                            
    1001c775  xdc_runtime_Memory_HeapProxy_alloc__E                                     
    1001c77f  xdc_runtime_Memory_HeapProxy_free__E                                      
    000012fa  xdc_runtime_Memory_Module__id__C                                          
    20000200  xdc_runtime_Memory_Module__state__V                                       
    1001c349  xdc_runtime_Memory_alloc__E                                               
    1001c751  xdc_runtime_Memory_calloc__E                                              
    000012bc  xdc_runtime_Memory_defaultHeapInstance__C                                 
    1001c705  xdc_runtime_Memory_free__E                                                
    1001c75d  xdc_runtime_Memory_getMaxDefaultTypeAlign__E                              
    1001c689  xdc_runtime_Memory_valloc__E                                              
    200001f0  xdc_runtime_Startup_Module__state__V                                      
    00000001  xdc_runtime_Startup__EXECFXN__C                                           
    00000001  xdc_runtime_Startup__RESETFXN__C                                          
    000012c0  xdc_runtime_Startup_execImpl__C                                           
    1001c415  xdc_runtime_Startup_exec__E                                               
    0000c2af  xdc_runtime_Startup_exec__I                                               
    0000d924  xdc_runtime_Startup_firstFxns__A                                          
    00001290  xdc_runtime_Startup_firstFxns__C                                          
    00009b89  xdc_runtime_Startup_getState__I                                           
    00001298  xdc_runtime_Startup_lastFxns__C                                           
    000012c4  xdc_runtime_Startup_maxPasses__C                                          
    0000c585  xdc_runtime_Startup_reset__I                                              
    1001c769  xdc_runtime_Startup_rtsDone__E                                            
    0000d89c  xdc_runtime_Startup_sfxnRts__A                                            
    000012c8  xdc_runtime_Startup_sfxnRts__C                                            
    0000d7a4  xdc_runtime_Startup_sfxnTab__A                                            
    000012cc  xdc_runtime_Startup_sfxnTab__C                                            
    000012d0  xdc_runtime_Startup_startModsFxn__C                                       
    1001c129  xdc_runtime_Startup_startMods__I                                          
    000012d4  xdc_runtime_SysCallback_abortFxn__C                                       
    1001c715  xdc_runtime_SysCallback_abort__E                                          
    0000c67d  xdc_runtime_SysCallback_defaultAbort                                      
    0000c67f  xdc_runtime_SysCallback_defaultExit                                       
    000012d8  xdc_runtime_SysCallback_exitFxn__C                                        
    1001c725  xdc_runtime_SysCallback_exit__E                                           
    1001b999  xdc_runtime_System_Module_GateProxy_Handle__label__S                      
    UNDEFED   xdc_runtime_System_Module_GateProxy_Handle__label__S__mangled__           
    1001b9b9  xdc_runtime_System_Module_GateProxy_Object__delete__S                     
    1001c799  xdc_runtime_System_Module_GateProxy_enter__E                              
    1001c79d  xdc_runtime_System_Module_GateProxy_leave__E                              
    1001c0b1  xdc_runtime_System_Module_GateProxy_query__E                              
    UNDEFED   xdc_runtime_System_Module_GateProxy_query__E__mangled__                   
    200001f8  xdc_runtime_System_Module__state__V                                       
    1001c78f  xdc_runtime_System_Module_startup__E                                      
    UNDEFED   xdc_runtime_System_SupportProxy_abort__E                                  
    UNDEFED   xdc_runtime_System_SupportProxy_exit__E                                   
    000012dc  xdc_runtime_System_abortFxn__C                                            
    1001c7a1  xdc_runtime_System_abortSpin__E                                           
    00009e45  xdc_runtime_System_abortStd__E                                            
    1001c64d  xdc_runtime_System_abort__E                                               
    1001c581  xdc_runtime_System_atexit__E                                              
    000012e0  xdc_runtime_System_exitFxn__C                                             
    1001c7a3  xdc_runtime_System_exitSpin__E                                            
    00009e4d  xdc_runtime_System_exitStd__E                                             
    1001c6d5  xdc_runtime_System_exit__E                                                
    000012e4  xdc_runtime_System_maxAtexitHandlers__C                                   
    1001c5ed  xdc_runtime_System_processAtExit__E                                       
    000012fc  xdc_runtime_Text_charCnt__C                                               
    0000d963  xdc_runtime_Text_charTab__A                                               
    000012e8  xdc_runtime_Text_charTab__C                                               
    1001c621  xdc_runtime_Text_cordText__E                                              
    000012fe  xdc_runtime_Text_isLoaded__C                                              
    000012ec  xdc_runtime_Text_nameEmpty__C                                             
    000012f0  xdc_runtime_Text_nameStatic__C                                            
    000012f4  xdc_runtime_Text_nameUnknown__C                                           
    1001c6ed  xdc_runtime_Text_ropeText__E                                              
    1001c735  xdc_runtime_Timestamp_SupportProxy_get32__E                               
    0000c44b  xdc_runtime_Timestamp_SupportProxy_get32__E__mangled__                    
    1001b77d  xdc_runtime_Timestamp_SupportProxy_get64__E                               
    UNDEFED   xdc_runtime_Timestamp_SupportProxy_get64__E__mangled__                    
    1001bf6b  xdc_runtime_Timestamp_SupportProxy_getFreq__E                             
    UNDEFED   xdc_runtime_Timestamp_SupportProxy_getFreq__E__mangled__                  
    1001c735  xdc_runtime_Timestamp_get32__E                                            
    UNDEFED   xdc_runtime_Timestamp_get32__E                                            
    1001b77d  xdc_runtime_Timestamp_get64__E                                            
    UNDEFED   xdc_runtime_Timestamp_get64__E                                            
    1001bf6b  xdc_runtime_Timestamp_getFreq__E                                          
    UNDEFED   xdc_runtime_Timestamp_getFreq__E                                          
    1001284d  xor_128                                                                   
    1000de81  zADD                                                                      
    1000e021  zADD32                                                                    
    1000df4d  zMACC32                                                                   
    1000e075  zMULT32                                                                   
    1000dd25  zSET                                                                      
    1000dec9  zSUB                                                                      
    1000dfd5  zSUB32                                                                    
    
    
    GLOBAL SYMBOLS: SORTED BY Symbol Address 
    
    address   name                                                                      
    -------   ----                                                                      
    00000000  __ASM__                                                                   
    00000000  __TI_static_base__                                                        
    00000000  __UNUSED_FLASH_start__                                                    
    00000000  ti_sysbios_family_arm_m3_Hwi_resetVectors                                 
    00000001  xdc_runtime_Startup__EXECFXN__C                                           
    00000001  xdc_runtime_Startup__RESETFXN__C                                          
    00000080  __ISA__                                                                   
    00000092  __PLAT__                                                                  
    000000b9  __TARG__                                                                  
    000000de  __TRDR__                                                                  
    00000400  __STACK_SIZE                                                              
    00000775  LL_Init                                                                   
    00000d4d  GAPRole_SetParameter                                                      
    00000fe1  HalFlashGetAddress                                                        
    00001000  ti_sysbios_heaps_HeapMem_Module__FXNS__C                                  
    00001028  ti_sysbios_gates_GateHwi_Module__FXNS__C                                  
    0000104c  ti_sysbios_gates_GateMutex_Module__FXNS__C                                
    00001070  ti_sysbios_family_arm_m3_Hwi_Object__DESC__C                              
    00001090  ti_sysbios_gates_GateHwi_Object__DESC__C                                  
    000010b0  ti_sysbios_gates_GateMutex_Object__DESC__C                                
    000010d0  ti_sysbios_hal_Hwi_Object__DESC__C                                        
    000010f0  ti_sysbios_heaps_HeapMem_Object__DESC__C                                  
    00001110  ti_sysbios_knl_Clock_Object__DESC__C                                      
    00001130  ti_sysbios_knl_Event_Object__DESC__C                                      
    00001150  ti_sysbios_knl_Mailbox_Object__DESC__C                                    
    00001170  ti_sysbios_knl_Queue_Object__DESC__C                                      
    00001190  ti_sysbios_knl_Semaphore_Object__DESC__C                                  
    000011b0  ti_sysbios_knl_Swi_Object__DESC__C                                        
    000011d0  ti_sysbios_knl_Task_Object__DESC__C                                       
    000011f0  ti_sysbios_knl_Idle_funcList__C                                           
    000011f8  ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C                       
    000011fc  ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C                          
    00001200  ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C                        
    00001204  ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C                            
    00001208  ti_sysbios_family_arm_m3_Hwi_Object__count__C                             
    0000120c  ti_sysbios_family_arm_m3_Hwi_Object__table__C                             
    00001210  ti_sysbios_family_arm_m3_Hwi_ccr__C                                       
    00001214  ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C                            
    00001218  ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C                               
    0000121c  ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C                       
    00001220  ti_sysbios_family_arm_m3_Hwi_priGroup__C                                  
    00001224  ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C                    
    00001228  ti_sysbios_heaps_HeapMem_E_memory__C                                      
    0000122c  ti_sysbios_heaps_HeapMem_Module__gateObj__C                               
    00001230  ti_sysbios_heaps_HeapMem_Object__count__C                                 
    00001234  ti_sysbios_heaps_HeapMem_Object__table__C                                 
    00001238  ti_sysbios_heaps_HeapMem_reqAlign__C                                      
    0000123c  ti_sysbios_knl_Clock_triggerClock__C                                      
    00001240  ti_sysbios_knl_Mailbox_Object__count__C                                   
    00001244  ti_sysbios_knl_Mailbox_Object__table__C                                   
    00001248  ti_sysbios_knl_Mailbox_maxTypeAlign__C                                    
    0000124c  ti_sysbios_knl_Queue_Object__count__C                                     
    00001250  ti_sysbios_knl_Queue_Object__table__C                                     
    00001254  ti_sysbios_knl_Semaphore_eventPost__C                                     
    00001258  ti_sysbios_knl_Semaphore_eventSync__C                                     
    0000125c  ti_sysbios_knl_Swi_Object__count__C                                       
    00001260  ti_sysbios_knl_Swi_Object__table__C                                       
    00001264  ti_sysbios_knl_Swi_numPriorities__C                                       
    00001268  ti_sysbios_knl_Task_Object__count__C                                      
    0000126c  ti_sysbios_knl_Task_Object__table__C                                      
    00001270  ti_sysbios_knl_Task_allBlockedFunc__C                                     
    00001274  ti_sysbios_knl_Task_defaultStackHeap__C                                   
    00001278  ti_sysbios_knl_Task_defaultStackSize__C                                   
    0000127c  ti_sysbios_knl_Task_numConstructedTasks__C                                
    00001280  ti_sysbios_family_arm_cc26xx_Timer_Module__id__C                          
    00001282  ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C           
    00001284  ti_sysbios_family_arm_m3_Hwi_Module__id__C                                
    00001286  ti_sysbios_gates_GateHwi_Module__id__C                                    
    00001288  ti_sysbios_gates_GateMutex_Module__id__C                                  
    0000128a  ti_sysbios_heaps_HeapMem_Module__id__C                                    
    0000128c  ti_sysbios_knl_Task_initStackFlag__C                                      
    0000128e  ti_sysbios_knl_Clock_tickMode__C                                          
    00001290  xdc_runtime_Startup_firstFxns__C                                          
    00001298  xdc_runtime_Startup_lastFxns__C                                           
    000012a0  xdc_runtime_Assert_E_assertFailed__C                                      
    000012a4  xdc_runtime_Error_E_memory__C                                             
    000012a8  xdc_runtime_Error_policyFxn__C                                            
    000012ac  xdc_runtime_Error_raiseHook__C                                            
    000012b0  xdc_runtime_IGateProvider_Interface__BASE__C                              
    000012b4  xdc_runtime_IHeap_Interface__BASE__C                                      
    000012b8  xdc_runtime_IModule_Interface__BASE__C                                    
    000012bc  xdc_runtime_Memory_defaultHeapInstance__C                                 
    000012c0  xdc_runtime_Startup_execImpl__C                                           
    000012c4  xdc_runtime_Startup_maxPasses__C                                          
    000012c8  xdc_runtime_Startup_sfxnRts__C                                            
    000012cc  xdc_runtime_Startup_sfxnTab__C                                            
    000012d0  xdc_runtime_Startup_startModsFxn__C                                       
    000012d4  xdc_runtime_SysCallback_abortFxn__C                                       
    000012d8  xdc_runtime_SysCallback_exitFxn__C                                        
    000012dc  xdc_runtime_System_abortFxn__C                                            
    000012e0  xdc_runtime_System_exitFxn__C                                             
    000012e4  xdc_runtime_System_maxAtexitHandlers__C                                   
    000012e8  xdc_runtime_Text_charTab__C                                               
    000012ec  xdc_runtime_Text_nameEmpty__C                                             
    000012f0  xdc_runtime_Text_nameStatic__C                                            
    000012f4  xdc_runtime_Text_nameUnknown__C                                           
    000012f8  xdc_runtime_Error_maxDepth__C                                             
    000012fa  xdc_runtime_Memory_Module__id__C                                          
    000012fc  xdc_runtime_Text_charCnt__C                                               
    000012fe  xdc_runtime_Text_isLoaded__C                                              
    00001300  xdc_runtime_Error_policy__C                                               
    00001304  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E       
    00001308  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E   
    0000130c  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E      
    00001310  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_initDevice__I       
    00001314  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E      
    00001318  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I     
    0000131c  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_start__E            
    00001320  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E
    00001324  ti_sysbios_rom_ROM_xdc_runtime_Startup_getState__I                        
    00001328  ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_abort__E               
    0000132c  ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_exit__E                
    00001c11  PowerCC26XX_auxISR                                                        
    00001f25  llScheduler                                                               
    00002225  LL_ProcessEvent                                                           
    00002509  startup_entry                                                             
    00002a11  Power_sleep                                                               
    00002e81  GAPBondMgr_SetParameter                                                   
    000030ad  RF_open                                                                   
    000032cd  LL_LastCmdDoneCback                                                       
    000034ed  HOSTopen                                                                  
    00003541  HOSTclose                                                                 
    00003577  HOSTread                                                                  
    000035c5  HOSTwrite                                                                 
    0000360f  HOSTlseek                                                                 
    0000366d  HOSTunlink                                                                
    000036a3  HOSTrename                                                                
    00003709  NOROM_SysCtrlSetRechargeBeforePowerDown                                   
    00003919  GATTServApp_ReadAttr                                                      
    00003b29  llGetNextConn                                                             
    00003d35  smSavePairInfo                                                            
    00003f39  __aeabi_uldivmod                                                          
    0000412d  GAPBondMgr_ProcessGAPMsg                                                  
    00004881  LL_RxIgnoredCback                                                         
    00004a45  osal_start_system                                                         
    00004c05  AssertHandler                                                             
    00004dc1  fputs                                                                     
    00004f53  puts                                                                      
    00004f79  RF_postCmd                                                                
    00005121  LL_RxEntryDoneCback                                                       
    000052c9  icall_directAPI                                                           
    0000545d  ECCROMCC26XX_genDHKey                                                     
    000055ed  PowerCC26XX_doCalibrate                                                   
    0000590d  PIN_init                                                                  
    00005a99  RF_cancelCmd                                                              
    00005c15  LL_Reset                                                                  
    00005d81  GAPBondMgr_ProcessEvent                                                   
    00005ed1  Power_init                                                                
    0000600d  ECCROMCC26XX_genKeys                                                      
    00006135  llFindNextSecTask                                                         
    00006385  GAPRole_GetParameter                                                      
    000066d1  ti_sysbios_family_arm_m3_Hwi_excFillContext__I                            
    000067cd  osal_snv_write                                                            
    00006ab1  GAPBondMgr_LinkEst                                                        
    00006b9d  gattServApp_ProcessReadByTypeReq                                          
    00006c89  osalTimerUpdate                                                           
    00006d75  main                                                                      
    00006e59  sm_c1                                                                     
    00007015  CryptoCC26XX_open                                                         
    000070e9  PowerCC26XX_standbyPolicy                                                 
    000071bd  setvbuf                                                                   
    00007365  smGenerateAddrInput                                                       
    00007429  SimpleProfile_SetParameter                                                
    000074e9  osal_set_event                                                            
    000075a9  write                                                                     
    0000763f  unlink                                                                    
    00007669  Power_releaseDependency                                                   
    00007725  __TI_closefile                                                            
    000077e1  NOROM_SetupTrimDevice                                                     
    000077e1  ti_sysbios_family_arm_cc26xx_Boot_trimDevice                              
    00007899  llScheduleTask                                                            
    00007951  Power_setDependency                                                       
    00007a05  TRNGCC26XX_getNumber                                                      
    00007b65  SimpleBLEPeripheral_createTask                                            
    00007c0d  GAPBondMgr_ResolveAddr                                                    
    00007d55  __TI_auto_init                                                            
    00007e93  DefaultAssertCback                                                        
    00007f31  __aeabi_memcpy                                                            
    00007f31  __aeabi_memcpy4                                                           
    00007f31  __aeabi_memcpy8                                                           
    00007f31  memcpy                                                                    
    00007fcd  ti_sysbios_knl_Clock_workFuncDynamic__E                                   
    00008065  ICall_setTimer                                                            
    000080f9  osal_msg_receive                                                          
    0000818d  osal_timer_refTimeUpdate                                                  
    000081d7  __checksum_value                                                          
    00008221  NOROM_CRYPTOAesLoadKey                                                    
    00008341  LL_ENC_DecryptMsg                                                         
    000083d1  HCI_ProcessEvent                                                          
    00008461  osal_CbTimerProcessEvent                                                  
    000084f1  ICall_heapMalloc                                                          
    00008609  LL_SetAddressResolutionEnable                                             
    00008691  GGS_SetParameter                                                          
    000088b1  llSetupLenCtrlPkt                                                         
    00008937  Onboard_soft_reset                                                        
    000089bd  ti_sysbios_family_arm_m3_Hwi_excHandlerMin__I                             
    00008a41  RF_pendCmd                                                                
    00008ac1  GATTServApp_WriteAttr                                                     
    00008b3f  SM_dhKeyCB                                                                
    00008b41  HCI_HardwareErrorEvent                                                    
    00008bbd  llAllocTask                                                               
    00008c39  gapProcessDisconnectCompleteEvt                                           
    00008dad  CryptoCC26XX_allocateKey                                                  
    00008e27  __aeabi_memclr                                                            
    00008e27  __aeabi_memclr4                                                           
    00008e27  __aeabi_memclr8                                                           
    00008e29  __aeabi_memset                                                            
    00008e29  __aeabi_memset4                                                           
    00008e29  __aeabi_memset8                                                           
    00008e2f  memset                                                                    
    00008ea1  GAPBondMgr_syncResolvingList                                              
    00008f19  llValidateConnParams                                                      
    00009001  ti_sysbios_family_arm_cc26xx_Timer_start__E                               
    00009075  ICall_getHeapStats                                                        
    00009075  ICall_heapGetStats                                                        
    000090e5  ICall_heapInit                                                            
    00009155  ble_dispatch_liteProcess                                                  
    000091c5  ICall_sendServiceComplete                                                 
    00009231  NOROM_OSCHF_AttemptToSwitchToXosc                                         
    0000929d  PowerCC26XX_initiateCalibration                                           
    00009309  llFindStartType                                                           
    000093e1  NOROM_SysCtrl_DCDC_VoltageConditionalControl                              
    00009519  __TI_decompress_lzss                                                      
    00009581  osal_CbTimerUpdate                                                        
    000095e9  __TI_writemsg                                                             
    00009617  C$$IO$$                                                                   
    0000961b  __TI_readmsg                                                              
    00009651  ICall_send                                                                
    000096b5  NOROM_SysCtrlAdjustRechargeAfterPowerDown                                 
    00009719  gattServApp_ProcessReliableWrites                                         
    000097e1  ICall_createRemoteTasksAtRuntime                                          
    00009841  ICall_enrollService                                                       
    000098a1  RF_getCurrentTime                                                         
    00009901  ICall_fetchMsg                                                            
    0000995f  SM_p256KeyCB                                                              
    00009961  Display_doOpen                                                            
    000099bd  ICall_pwrUpdActivityCounter                                               
    00009a19  PowerCC26XX_RCOSC_clockFunc                                               
    00009a75  PowerCC26XX_calibrate                                                     
    00009ad1  GATTServApp_Init                                                          
    00009b89  xdc_runtime_Startup_getState__I                                           
    00009be5  ICall_wait                                                                
    00009ced  osal_CbTimerStop                                                          
    00009d45  gattServApp_EnqueuePrepareWriteReq                                        
    00009e41  C$$EXIT                                                                   
    00009e45  abort                                                                     
    00009e45  xdc_runtime_System_abortStd__E                                            
    00009e4d  exit                                                                      
    00009e4d  xdc_runtime_System_exitStd__E                                             
    00009e95  ECCROMCC26XX_Params_init                                                  
    00009ee5  GAPBondMgr_LinkTerm                                                       
    00009f35  ICall_registerApp                                                         
    00009f85  NPI_WriteTransport                                                        
    00009fd5  RF_getInfo                                                                
    0000a025  Util_convertBdAddr2Str                                                    
    0000a1a5  osal_bm_free                                                              
    0000a1f1  copy_in                                                                   
    0000a23d  __TI_doflush                                                              
    0000a2d5  ClockP_construct                                                          
    0000a365  Util_constructClock                                                       
    0000a3ad  osalAddTimer                                                              
    0000a3f5  ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I                        
    0000a43d  NOROM_OSCHF_SwitchToRcOscTurnOffXosc                                      
    0000a4c5  SimpleProfile_GetParameter                                                
    0000a509  ResetISR                                                                  
    0000a509  _c_int00                                                                  
    0000a54d  llFreeTask                                                                
    0000a591  gattServApp_ClearPrepareWriteQ                                            
    0000a65d  osal_start_timerEx                                                        
    0000a6a1  GAPBondMgr_UpdateCharCfg                                                  
    0000a6e3  GAP_DeviceInit                                                            
    0000a725  ECCROMCC26XX_init                                                         
    0000a765  GAPRole_createTask                                                        
    0000a7a5  HwiP_construct                                                            
    0000a7e5  RF_getRssi                                                                
    0000a825  GATTServApp_ProcessEvent                                                  
    0000a865  ti_sysbios_heaps_HeapCallback_Module_startup__E                           
    0000a8a5  NOROM_OSC_HPOSCRelativeFrequencyOffsetGet                                 
    0000a8e1  PowerCC26XX_isStableXOSC_HF                                               
    0000a91d  PowerCC26XX_switchXOSC_HF                                                 
    0000a959  RF_runCmd                                                                 
    0000a995  SwiP_construct                                                            
    0000a9d1  llSchedulerInit                                                           
    0000aa0d  HCI_Init                                                                  
    0000aa49  gattServApp_ProcessExchangeMTUReq                                         
    0000aa85  gattServApp_ResetCharCfg                                                  
    0000aac1  GATTServApp_SendCCCUpdatedEvent                                           
    0000aafd  osal_bm_alloc                                                             
    0000ab39  osal_start_reload_timer                                                   
    0000abb1  ti_sysbios_family_arm_m3_Hwi_construct2__E                                
    0000abed  Util_restartClock                                                         
    0000ac25  llActiveTask                                                              
    0000ac5d  llGetTask                                                                 
    0000ac95  L2CAP_SendDataPkt                                                         
    0000ad3d  osal_alien2proxy                                                          
    0000adad  osal_stop_timerEx                                                         
    0000ade5  ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E                      
    0000ae1d  CryptoCC26XX_loadKey                                                      
    0000ae55  GATTServApp_InitCharCfg                                                   
    0000ae89  ICall_free                                                                
    0000ae89  ICall_heapFree                                                            
    0000aebd  ICall_searchServiceEntity                                                 
    0000aef1  Power_releaseConstraint                                                   
    0000af59  rfCallback                                                                
    0000af8d  llGetTaskState                                                            
    0000afc1  osal_clear_event                                                          
    0000aff5  __TI_cleanup                                                              
    0000b029  strncpy                                                                   
    0000b05d  ti_sysbios_family_arm_cc26xx_Timer_initDevice__I                          
    0000b091  ICall_fetchServiceMsg                                                     
    0000b0c3  ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E                         
    0000b0f5  GAPBondMgr_PasscodeRsp                                                    
    0000b125  GAPRole_TerminateConnection                                               
    0000b155  HalFlashRead                                                              
    0000b245  Power_setConstraint                                                       
    0000b275  GAP_PrivacyInit                                                           
    0000b2a5  gattServApp_ProcessWriteLong                                              
    0000b305  osal_get_timeoutEx                                                        
    0000b335  ti_sysbios_BIOS_atExitFunc__I                                             
    0000b365  ti_sysbios_BIOS_startFunc__I                                              
    0000b395  ti_sysbios_heaps_HeapCallback_Object__create__S                           
    0000b421  GATTServApp_RegisterService                                               
    0000b44f  osal_build_uint32                                                         
    0000b47d  malloc                                                                    
    0000b4ad  ICall_getLocalMsgEntityId                                                 
    0000b505  NOROM_ChipInfo_GetChipFamily                                              
    0000b531  NOROM_RFCDoorbellSendTo                                                   
    0000b55d  SemaphoreP_constructBinary                                                
    0000b589  bleDispatch_BMAlloc                                                       
    0000b5b5  gattServApp_HandleConnStatusCB                                            
    0000b5e1  smSendFailureEvt                                                          
    0000b691  ti_sysbios_knl_Clock_getTicksUntilInterrupt__E                            
    0000b6bd  Display_doPrintf                                                          
    0000b6e7  ti_sysbios_knl_Clock_getTimeout__E                                        
    0000b711  Power_registerNotify                                                      
    0000b739  SafeHapiVoid                                                              
    0000b761  TRNGCC26XX_init                                                           
    0000b7b1  execHandlerHook                                                           
    0000b801  osal_bm_adjust_header                                                     
    0000b829  osal_next_timeout                                                         
    0000b851  osal_snv_compact                                                          
    0000b89f  halAssertHandler                                                          
    0000b8a1  CryptoCC26XX_hwiIntFxn                                                    
    0000b8c5  NOROM_OSCHF_TurnOnXosc                                                    
    0000b8e9  PINCC26XX_getPinCount                                                     
    0000b931  GGS_AddService                                                            
    0000b979  osal_msg_allocate                                                         
    0000b99d  osal_service_entry                                                        
    0000b9c1  ti_sysbios_BIOS_registerRTSLock__I                                        
    0000b9e5  ti_sysbios_BIOS_removeRTSLock__I                                          
    0000ba09  ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E                         
    0000ba2d  ICall_setTimerMSecs                                                       
    0000ba4f  List_put                                                                  
    0000ba71  GATTServApp_UpdateCharCfg                                                 
    0000ba93  halAssertSpinlock                                                         
    0000ba95  PowerCC26XX_schedulerDisable                                              
    0000bab5  PowerCC26XX_schedulerRestore                                              
    0000bad5  LL_TxEntryDoneCback                                                       
    0000baf5  GATTServApp_AddService                                                    
    0000bb35  osalFindTimer                                                             
    0000bb55  osal_memcmp                                                               
    0000bb75  osal_msg_deallocate                                                       
    0000bb95  osal_msg_send                                                             
    0000bbd5  memchr                                                                    
    0000bbf5  ti_sysbios_BIOS_rtsLock__I                                                
    0000bc15  ti_sysbios_family_arm_cc26xx_Timer_dynamicStub__E                         
    0000bc35  Power_getTransitionLatency                                                
    0000bc8f  osal_snv_read                                                             
    0000bcad  GAPBondMgr_Register                                                       
    0000bcc9  GAPBondMgr_SupportsEnhancedPriv                                           
    0000bd01  NOROM_FlashProgram                                                        
    0000bd1d  NOROM_FlashSectorErase                                                    
    0000bd71  RF_runDirectCmd                                                           
    0000bda9  TRNGCC26XX_open                                                           
    0000bdfd  halAssertHandlerExt                                                       
    0000be19  openTRNG                                                                  
    0000be35  osal_memdup                                                               
    0000be51  osal_revmemcpy                                                            
    0000be6d  ti_sysbios_knl_Swi_construct2__E                                          
    0000be89  ICall_enterCSImpl                                                         
    0000bebd  osal_isbufset                                                             
    0000bed7  rfErrCb                                                                   
    0000bed9  NOROM_ChipInfo_GetPackageType                                             
    0000bef1  NOROM_RFCCpeIntGetAndClear                                                
    0000bf09  Power_idleFunc                                                            
    0000bf39  RF_runImmediateCmd                                                        
    0000bf51  bleDispatch_BMFree                                                        
    0000bf99  free                                                                      
    0000bfc9  icall_liteMsgParser                                                       
    0000bfe1  osal_buffer_uint32                                                        
    0000bff9  osal_memcpy                                                               
    0000c011  _args_main                                                                
    0000c029  __aeabi_lmul                                                              
    0000c041  strcmp                                                                    
    0000c071  ti_sysbios_BIOS_rtsUnlock__I                                              
    0000c089  ti_sysbios_heaps_HeapCallback_Instance_init__E                            
    0000c0a1  ti_sysbios_knl_Swi_or__E                                                  
    0000c0b9  ti_sysbios_rom_cortexm_cc26xx_r2_CC26xx_checkRevision__E                  
    0000c0d1  xdc_runtime_Error_init__E                                                 
    0000c0e9  ICall_abort                                                               
    0000c0ff  ICall_leaveCSImpl                                                         
    0000c115  ICall_pwrDispense                                                         
    0000c12b  ICall_pwrRequire                                                          
    0000c141  ROM_Spinlock                                                              
    0000c157  LL_DoorbellErrorCback                                                     
    0000c16d  driverTable_fnSpinlock                                                    
    0000c199  ti_sysbios_BIOS_errorRaiseHook__I                                         
    0000c1af  ti_sysbios_BIOS_exitFunc__I                                               
    0000c1c5  RF_Params_init                                                            
    0000c1d9  llDataGetConnPtr                                                          
    0000c201  _nop                                                                      
    0000c203  _register_unlock                                                          
    0000c209  _register_lock                                                            
    0000c215  strlen                                                                    
    0000c23d  ti_sysbios_family_arm_cc26xx_Timer_getCount64__E                          
    0000c251  ti_sysbios_heaps_HeapCallback_Object__get__S                              
    0000c265  ti_sysbios_knl_Clock_doTick__I                                            
    0000c279  RF_getCmdOp                                                               
    0000c28b  SemaphoreP_pend                                                           
    0000c29d  strcpy                                                                    
    0000c2af  xdc_runtime_Startup_exec__I                                               
    0000c2c1  ClockP_isActive                                                           
    0000c2d1  GATTServApp_ReadCharCfg                                                   
    0000c2e1  HwiP_Params_init                                                          
    0000c301  Onboard_rand                                                              
    0000c301  osal_rand                                                                 
    0000c321  SwiP_Params_init                                                          
    0000c331  Util_isActive                                                             
    0000c341  rfPUpCallback                                                             
    0000c351  llGetCurrentTask                                                          
    0000c361  GAP_isPairing                                                             
    0000c381  gapRole_clockHandler                                                      
    0000c391  osal_mem_alloc                                                            
    0000c3a1  osal_mem_free                                                             
    0000c3c1  ti_sysbios_family_arm_m3_Hwi_getHandle__E                                 
    0000c3d1  ti_sysbios_family_arm_m3_Hwi_post__E                                      
    0000c3d1  ti_sysbios_hal_Hwi_HwiProxy_post__E                                       
    0000c3d1  ti_sysbios_hal_Hwi_post__E                                                
    0000c3e1  ti_sysbios_heaps_HeapCallback_alloc__E                                    
    0000c3f1  ti_sysbios_heaps_HeapCallback_free__E                                     
    0000c401  ti_sysbios_heaps_HeapCallback_getStats__E                                 
    0000c411  ti_sysbios_heaps_HeapCallback_isBlocking__E                               
    0000c421  ICall_signal                                                              
    0000c42f  Util_constructQueue                                                       
    0000c43d  __TI_decompress_none                                                      
    0000c44b  ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E                   
    0000c44b  xdc_runtime_Timestamp_SupportProxy_get32__E__mangled__                    
    0000c459  CryptoCC26XX_init                                                         
    0000c465  Display_doClearLines                                                      
    0000c489  List_empty                                                                
    0000c495  NOROM_CPUcpsid                                                            
    0000c4a1  NOROM_CPUcpsie                                                            
    0000c4ad  NOROM_OSC_HPOSCRelativeFrequencyOffsetToRFCoreFormatConvert               
    0000c4b9  Power_getConstraintMask                                                   
    0000c4c5  Power_getDependencyCount                                                  
    0000c4d1  llGetNumTasks                                                             
    0000c4dd  llGetActiveTasks                                                          
    0000c4e9  HCI_GAPTaskRegister                                                       
    0000c4f5  HCI_L2CAPTaskRegister                                                     
    0000c501  HCI_SMPTaskRegister                                                       
    0000c50d  GATTServApp_RegisterForMsg                                                
    0000c519  __TI_zero_init                                                            
    0000c531  osalHeapGetStatsFxn                                                       
    0000c53d  osalHeapInitFxn                                                           
    0000c549  osal_CbTimerStart                                                         
    0000c555  osal_self                                                                 
    0000c561  ti_sysbios_BIOS_getThreadType__E                                          
    0000c56d  ti_sysbios_knl_Swi_getTrigger__E                                          
    0000c579  ti_sysbios_knl_Swi_self__E                                                
    0000c585  xdc_runtime_Startup_reset__I                                              
    0000c591  HalFlashWrite                                                             
    0000c59b  ICall_stopTimer                                                           
    0000c5b9  CryptoCC26XX_Params_init                                                  
    0000c5c1  RF_flushCmd                                                               
    0000c5d1  ClockP_Params_init                                                        
    0000c5d7  CryptoCC26XX_transact                                                     
    0000c5dd  CryptoCC26XX_transactPolling                                              
    0000c5e3  ICall_freeMsg                                                             
    0000c5e9  NOROM_CPUdelay                                                            
    0000c5ef  llTaskError                                                               
    0000c5fb  osalHeapAllocFxn                                                          
    0000c601  osalHeapFreeFxn                                                           
    0000c607  ti_sysbios_family_arm_m3_Hwi_setFunc__E                                   
    0000c611  ClockP_getTimeout                                                         
    0000c615  ClockP_setTimeout                                                         
    0000c619  ClockP_start                                                              
    0000c61d  ClockP_stop                                                               
    0000c621  GAP_UpdateResolvingList                                                   
    0000c625  HwiP_disable                                                              
    0000c629  HwiP_enableInterrupt                                                      
    0000c62d  HwiP_post                                                                 
    0000c631  HwiP_setFunc                                                              
    0000c635  ICall_getTicks                                                            
    0000c639  ICall_malloc                                                              
    0000c63d  List_head                                                                 
    0000c641  List_next                                                                 
    0000c649  SemaphoreP_post                                                           
    0000c64d  SwiP_disable                                                              
    0000c651  SwiP_getTrigger                                                           
    0000c655  SwiP_or                                                                   
    0000c659  Util_startClock                                                           
    0000c65d  Util_stopClock                                                            
    0000c665  osalHeapIsBlockingFxn                                                     
    0000c669  osal_memset                                                               
    0000c66d  osal_strlen                                                               
    0000c671  ti_sysbios_heaps_HeapCallback_defaultCreate                               
    0000c675  ti_sysbios_knl_Clock_isActive__E                                          
    0000c679  ti_sysbios_BIOS_nullFunc__I                                               
    0000c67b  ti_sysbios_rom_cortexm_cc26xx_r2_CC26xx_badRomRevision__E                 
    0000c67d  xdc_runtime_SysCallback_defaultAbort                                      
    0000c67f  xdc_runtime_SysCallback_defaultExit                                       
    0000cba0  ROM_Flash_JT                                                              
    0000d5b0  resourceDB                                                                
    0000d5fc  rfDriverTableBLE                                                          
    0000d690  icallServiceTable                                                         
    0000d6d4  primaryServiceUUID                                                        
    0000d6d6  characterUUID                                                             
    0000d6d8  gapServiceUUID                                                            
    0000d6da  gattServiceUUID                                                           
    0000d6dc  secondaryServiceUUID                                                      
    0000d6de  includeUUID                                                               
    0000d6e0  charExtPropsUUID                                                          
    0000d6e2  charUserDescUUID                                                          
    0000d6e4  clientCharCfgUUID                                                         
    0000d6e6  servCharCfgUUID                                                           
    0000d6e8  charFormatUUID                                                            
    0000d6ea  charAggFormatUUID                                                         
    0000d6ec  deviceNameUUID                                                            
    0000d6ee  appearanceUUID                                                            
    0000d6f0  periPrivacyFlagUUID                                                       
    0000d6f2  reconnectAddrUUID                                                         
    0000d6f4  periConnParamUUID                                                         
    0000d6f6  serviceChangedUUID                                                        
    0000d6f8  validRangeUUID                                                            
    0000d6fa  extReportRefUUID                                                          
    0000d6fc  reportRefUUID                                                             
    0000d700  cryptoDriverTableBLE                                                      
    0000d72c  TRNGCC26XX_config                                                         
    0000d73c  BoardGpioInitTable                                                        
    0000d754  tasksArr                                                                  
    0000d77c  ti_sysbios_heaps_HeapCallback_Module__FXNS__C                             
    0000d7a4  xdc_runtime_Startup_sfxnTab__A                                            
    0000d7cc  TxPowerTable                                                              
    0000d7f3  Display_count                                                             
    0000d7f4  bleStackConfig                                                            
    0000d818  ti_sysbios_heaps_HeapCallback_Object__DESC__C                             
    0000d854  ti_sysbios_heaps_HeapCallback_Object__PARAMS__C                           
    0000d888  driverTable                                                               
    0000d89c  xdc_runtime_Startup_sfxnRts__A                                            
    0000d8c1  devInfo11073CertUUID                                                      
    0000d8c3  Display_defaultParams                                                     
    0000d8c4  PowerCC26XX_config                                                        
    0000d8d4  cryptoCC26XXHWAttrs                                                       
    0000d8e4  eccDriverTable                                                            
    0000d8f4  boardConfig                                                               
    0000d900  devInfoCBs                                                                
    0000d90c  simpleProfileCBs                                                          
    0000d918  trngDriverTable                                                           
    0000d924  xdc_runtime_Startup_firstFxns__A                                          
    0000d930  CryptoCC26XX_config                                                       
    0000d938  PINCC26XX_hwAttrs                                                         
    0000d950  ti_sysbios_family_arm_m3_Hwi_excHookFuncs__A                              
    0000d958  appTxPwrTbl                                                               
    0000d963  xdc_runtime_Text_charTab__A                                               
    0000d964  TRNGCC26XXHWAttrs                                                         
    0000d968  ti_sysbios_family_arm_m3_Hwi_E_exception__C                               
    0000d96c  ti_sysbios_family_arm_m3_Hwi_E_noIsr__C                                   
    0000d970  ti_sysbios_family_arm_m3_Hwi_excHookFuncs__C                              
    0000d974  ti_sysbios_family_arm_m3_Hwi_swiDisable__C                                
    0000d978  ti_sysbios_family_arm_m3_Hwi_swiRestoreHwi__C                             
    0000d97c  ti_sysbios_heaps_HeapCallback_Object__count__C                            
    0000d980  ti_sysbios_heaps_HeapCallback_allocInstFxn__C                             
    0000d984  ti_sysbios_heaps_HeapCallback_createInstFxn__C                            
    0000d988  ti_sysbios_heaps_HeapCallback_freeInstFxn__C                              
    0000d98c  ti_sysbios_heaps_HeapCallback_getStatsInstFxn__C                          
    0000d990  ti_sysbios_heaps_HeapCallback_initInstFxn__C                              
    0000d994  ti_sysbios_heaps_HeapCallback_isBlockingInstFxn__C                        
    0000d998  ti_sysbios_knl_Clock_tickPeriod__C                                        
    0000d99c  ti_sysbios_knl_Idle_funcList__A                                           
    0000d9a0  devInfoFirmwareRevUUID                                                    
    0000d9a2  devInfoHardwareRevUUID                                                    
    0000d9a4  devInfoMfrNameUUID                                                        
    0000d9a6  devInfoModelNumberUUID                                                    
    0000d9a8  devInfoPnpIdUUID                                                          
    0000d9aa  devInfoSerialNumberUUID                                                   
    0000d9ac  devInfoServUUID                                                           
    0000d9ae  devInfoSoftwareRevUUID                                                    
    0000d9b0  devInfoSystemIdUUID                                                       
    0000d9b2  simpleProfileServUUID                                                     
    0000d9b4  simpleProfilechar1UUID                                                    
    0000d9b6  simpleProfilechar2UUID                                                    
    0000d9b8  simpleProfilechar3UUID                                                    
    0000d9ba  simpleProfilechar4UUID                                                    
    0000d9bc  simpleProfilechar5UUID                                                    
    0000d9c0  llConfigTable                                                             
    0000da10  gapServiceCBs                                                             
    0000da1c  txPwrTbl                                                                  
    0000da2c  gattService                                                               
    0000da34  rfOpLoc                                                                   
    0000da38  rfCfgVal                                                                  
    0000da3c  connEvtCutoff                                                             
    0000da40  txPowerTable                                                              
    0000da44  rxPktSuffix                                                               
    0000da46  advPktSuffix                                                              
    0000da48  scanPktSuffix                                                             
    0000da4a  initPktSuffix                                                             
    0000da4c  maxPktsPerEvt                                                             
    0000da4e  wlSize                                                                    
    0000da4f  cryptoMode                                                                
    0000deb0  __TI_Handler_Table_Base                                                   
    0000debc  __TI_Handler_Table_Limit                                                  
    0000def4  __TI_CINIT_Base                                                           
    0000df5c  __TI_CINIT_Limit                                                          
    0001e000  NV_FLASH                                                                  
    0001ffa8  __ccfg                                                                    
    0001ffff  __UNUSED_FLASH_end__                                                      
    10004940  __checksum_begin                                                          
    10004941  ROM_BASE_ADDR                                                             
    10004945  LL_TX_bm_alloc                                                            
    10004969  LL_RX_bm_alloc                                                            
    1000498d  LL_ReadBDADDR                                                             
    100049ad  LL_SetRandomAddress                                                       
    100049d9  LL_ClearWhiteList                                                         
    100049f9  LL_AddWhiteListDevice                                                     
    10004a25  LL_RemoveWhiteListDevice                                                  
    10004a61  LL_ReadWlSize                                                             
    10004a79  LL_NumEmptyWlEntries                                                      
    10004a95  LL_Encrypt                                                                
    10004ab5  LL_Rand                                                                   
    10004ac1  LL_PseudoRand                                                             
    10004aed  LL_ReadSupportedStates                                                    
    10004b49  LL_GetNumActiveConns                                                      
    10004b59  LL_ReadLocalSupportedFeatures                                             
    10004b7d  LL_ReadLocalVersionInfo                                                   
    10004bbd  LL_CtrlToHostFlowControl                                                  
    10004bd1  LL_ReadRemoteVersionInfo                                                  
    10004c31  LL_ReadTxPowerLevel                                                       
    10004c81  LL_ReadChanMap                                                            
    10004cb5  LL_ReadRssi                                                               
    10004d15  LL_Disconnect                                                             
    10004d81  LL_TxData                                                                 
    10004e45  LL_DirectTestTxTest                                                       
    10004fe9  LL_DirectTestRxTest                                                       
    100050e9  LL_DirectTestEnd                                                          
    10005189  LL_RemoteConnParamReqReply                                                
    10005229  LL_RemoteConnParamReqNegReply                                             
    10005279  LL_ConnUpdate                                                             
    1000536d  LL_SetAdvParam                                                            
    1000559d  LL_SetAdvData                                                             
    100055f1  LL_SetAdvControl                                                          
    10005701  LL_ReadAdvChanTxPower                                                     
    10005739  LL_SetScanRspData                                                         
    10005795  LL_SetScanParam                                                           
    10005919  LL_SetScanControl                                                         
    10005a61  LL_EncLtkReply                                                            
    10005ab5  LL_EncLtkNegReply                                                         
    10005afd  LL_CreateConn                                                             
    10005e85  LL_CreateConnCancel                                                       
    10005f61  LL_ConnActive                                                             
    10005f95  LL_ChanMapUpdate                                                          
    1000604d  LL_StartEncrypt                                                           
    1000614d  LL_ReadRemoteUsedFeatures                                                 
    100061c1  LL_ReadAuthPayloadTimeout                                                 
    100061fd  LL_WriteAuthPayloadTimeout                                                
    10006269  LL_SetDataLen                                                             
    10006309  LL_ReadDefaultDataLen                                                     
    10006335  LL_WriteDefaultDataLen                                                    
    1000637d  LL_ReadMaxDataLen                                                         
    100063bd  LL_EXT_SetMaxDataLen                                                      
    10006425  LL_AddDeviceToResolvingList                                               
    10006521  LL_RemoveDeviceFromResolvingList                                          
    1000659d  LL_ClearResolvingList                                                     
    1000661d  LL_ReadResolvingListSize                                                  
    10006625  LL_ReadPeerResolvableAddress                                              
    10006685  LL_ReadLocalResolvableAddress                                             
    10006781  LL_SetResolvablePrivateAddressTimeout                                     
    100067d5  LL_ReadLocalP256PublicKeyCmd                                              
    10006819  LL_GenerateDHKeyCmd                                                       
    10006859  LL_EXT_SetRxGain                                                          
    10006869  LL_EXT_SetTxPower                                                         
    100068a1  LL_EXT_OnePacketPerEvent                                                  
    100068c1  LL_EXT_ClkDivOnHalt                                                       
    100068c5  LL_EXT_DeclareNvUsage                                                     
    100068c9  LL_EXT_Decrypt                                                            
    100068ed  LL_EXT_SetLocalSupportedFeatures                                          
    10006929  LL_EXT_SetFastTxResponseTime                                              
    10006941  LL_EXT_SetSlaveLatencyOverride                                            
    10006965  LL_EXT_ModemTestTx                                                        
    10006a01  LL_EXT_ModemHopTestTx                                                     
    10006ab5  LL_EXT_ModemTestRx                                                        
    10006b59  LL_EXT_EndModemTest                                                       
    10006b8d  LL_EXT_SetBDADDR                                                          
    10006c1d  LL_EXT_SetSCA                                                             
    10006c95  LL_EXT_SetFreqTune                                                        
    10006c99  LL_EXT_SaveFreqTune                                                       
    10006c9d  LL_EXT_SetMaxDtmTxPower                                                   
    10006cb9  LL_EXT_MapPmIoPort                                                        
    10006cbd  LL_EXT_DisconnectImmed                                                    
    10006d05  LL_EXT_PacketErrorRate                                                    
    10006d55  LL_EXT_PERbyChan                                                          
    10006d75  LL_EXT_ExtendRfRange                                                      
    10006d79  LL_EXT_HaltDuringRf                                                       
    10006d7d  LL_EXT_AdvEventNotice                                                     
    10006d99  LL_EXT_ConnEventNotice                                                    
    10006dc1  LL_EXT_BuildRevision                                                      
    10006ded  LL_EXT_ResetSystem                                                        
    10006e21  LL_EXT_OverlappedProcessing                                               
    10006e25  LL_EXT_NumComplPktsLimit                                                  
    10006e59  LL_EXT_GetConnInfo                                                        
    10006f99  llRfSetup                                                                 
    10006fed  llRfInit                                                                  
    10007071  llResetRadio                                                              
    10007075  llHaltRadio                                                               
    100070b1  llRfStartFS                                                               
    1000713d  llProcessPostRfOps                                                        
    10007191  llSetTxPower                                                              
    100071e9  llGetTxPower                                                              
    10007205  llCheckWhiteListUsage                                                     
    10007251  llSetupAdv                                                                
    10007479  llSetupScan                                                               
    10007659  llSetupInit                                                               
    10007829  llSetupConn                                                               
    10007869  llSetupUpdateParamReq                                                     
    10007901  llSetupUpdateChanReq                                                      
    1000798d  llSetupEncReq                                                             
    10007a2d  llSetupEncRsp                                                             
    10007aed  llSetupStartEncReq                                                        
    10007b19  llSetupStartEncRsp                                                        
    10007b61  llSetupPauseEncReq                                                        
    10007bad  llSetupPauseEncRsp                                                        
    10007c39  llSetupRejectInd                                                          
    10007c89  llSetupFeatureSetReq                                                      
    10007cdd  llSetupFeatureSetRsp                                                      
    10007d5d  llSetupVersionIndReq                                                      
    10007de5  llSetupTermInd                                                            
    10007e49  llSetupUnknownRsp                                                         
    10007ead  llEnqueueCtrlPkt                                                          
    10007f09  llDequeueCtrlPkt                                                          
    10007f69  llReplaceCtrlPkt                                                          
    10007fb5  llProcessChanMap                                                          
    10007ff5  llGetNextDataChan                                                         
    10008049  llSetNextDataChan                                                         
    100080b9  llAtLeastTwoChans                                                         
    100080f1  llAllocConnId                                                             
    1000828d  llReleaseConnId                                                           
    100082cd  llReleaseAllConnId                                                        
    10008301  llGetMinCI                                                                
    10008385  llConnExists                                                              
    10008479  llConnCleanup                                                             
    100085a9  llConnTerminate                                                           
    100085e1  llPendingUpdateParam                                                      
    10008621  llInitFeatureSet                                                          
    10008635  llGenerateCRC                                                             
    10008669  llEventInRange                                                            
    10008691  llEventDelta                                                              
    10008699  llConvertLstoToEvent                                                      
    100086b9  llConvertCtrlProcTimeoutToEvent                                           
    100086dd  llProcessTxData                                                           
    1000876d  llWriteTxData                                                             
    100087fd  llSetupPingReq                                                            
    1000885d  llSetupPingRsp                                                            
    10008949  llSendReject                                                              
    1000899d  llSetupConnParamReq                                                       
    100089d5  llSetupConnParamRsp                                                       
    10008aa5  llSetupRejectIndExt                                                       
    10008b01  llCBTimer_AptoExpiredCback                                                
    10008b81  llFragmentPDU                                                             
    10008c01  llCombinePDU                                                              
    10008d71  llAlignToNextEvent                                                        
    10008e45  llVerifyConnParamReqParams                                                
    10008f59  llTime2Octets                                                             
    10008f89  llOctets2Time                                                             
    10008fbd  llGetSlowestPhy                                                           
    10008fdd  llSortActiveConns                                                         
    10009071  llRealignConn                                                             
    1000929d  llHardwareError                                                           
    100092d1  llMemCopySrc                                                              
    100092e9  llMemCopyDst                                                              
    100092fe  ll_buildRevision                                                          
    10009371  llCreateRxBuffer                                                          
    100093ad  llCheckRxBuffers                                                          
    100093dd  llReplaceRxBuffers                                                        
    1000941d  llPatchCM0                                                                
    10009431  llSetupRATChanCompare                                                     
    10009465  llRatChanCBack_A                                                          
    10009469  llRatChanCBack_B                                                          
    1000946d  llRatChanCBack_C                                                          
    10009471  llRatChanCBack_D                                                          
    10009475  llSetupScanDataEntryQueue                                                 
    100094b9  llSetupInitDataEntryQueue                                                 
    100094dd  llSetupAdvDataEntryQueue                                                  
    10009509  llSetupConnRxDataEntryQueue                                               
    100095b9  llMoveTempTxDataEntries                                                   
    10009609  llProcessSlaveControlPacket                                               
    10009d5d  llProcessMasterControlPacket                                              
    1000a4f5  llAddTxDataEntry                                                          
    1000a551  RFHAL_InitDataQueue                                                       
    1000a55d  RFHAL_FreeNextTxDataEntry                                                 
    1000a585  RFHAL_AllocDataEntryQueue                                                 
    1000a5a1  RFHAL_FreeDataEntryQueue                                                  
    1000a5a9  RFHAL_GetNextDataEntry                                                    
    1000a5ad  RFHAL_GetTempDataEntry                                                    
    1000a5b1  RFHAL_NextDataEntryDone                                                   
    1000a5dd  RFHAL_AllocDataEntry                                                      
    1000a621  RFHAL_FreeDataEntry                                                       
    1000a629  RFHAL_BuildRingBuffer                                                     
    1000a6c5  RFHAL_BuildDataEntryRingBuffer                                            
    1000a745  RFHAL_BuildLinkedBuffer                                                   
    1000a7f1  HCI_bm_alloc                                                              
    1000a7fd  HCI_ValidConnTimeParams                                                   
    1000a839  HCI_SendDataPkt                                                           
    1000a875  HCI_DisconnectCmd                                                         
    1000a891  HCI_ReadRemoteVersionInfoCmd                                              
    1000a8c5  HCI_SetEventMaskCmd                                                       
    1000a8f1  HCI_SetEventMaskPage2Cmd                                                  
    1000a91d  HCI_ResetCmd                                                              
    1000a959  HCI_ReadTransmitPowerLevelCmd                                             
    1000a97d  HCI_SetControllerToHostFlowCtrlCmd                                        
    1000a9b9  HCI_HostBufferSizeCmd                                                     
    1000a9f1  HCI_HostNumCompletedPktCmd                                                
    1000aa51  HCI_ReadLocalVersionInfoCmd                                               
    1000aac1  HCI_ReadLocalSupportedCommandsCmd                                         
    1000aadd  HCI_ReadLocalSupportedFeaturesCmd                                         
    1000ab05  HCI_ReadBDADDRCmd                                                         
    1000ab25  HCI_ReadRssiCmd                                                           
    1000ab61  HCI_LE_SetEventMaskCmd                                                    
    1000ab89  HCI_LE_ReadBufSizeCmd                                                     
    1000abc5  HCI_LE_ReadLocalSupportedFeaturesCmd                                      
    1000abe5  HCI_LE_SetRandomAddressCmd                                                
    1000ac09  HCI_LE_SetAdvParamCmd                                                     
    1000ac41  HCI_LE_SetAdvDataCmd                                                      
    1000ac61  HCI_LE_SetScanRspDataCmd                                                  
    1000ac81  HCI_LE_SetAdvEnableCmd                                                    
    1000aca1  HCI_LE_ReadAdvChanTxPowerCmd                                              
    1000acc5  HCI_LE_SetScanParamCmd                                                    
    1000acf1  HCI_LE_SetScanEnableCmd                                                   
    1000ad11  HCI_LE_CreateConnCmd                                                      
    1000ad55  HCI_LE_CreateConnCancelCmd                                                
    1000ad75  HCI_LE_ReadWhiteListSizeCmd                                               
    1000ada9  HCI_LE_ClearWhiteListCmd                                                  
    1000adc9  HCI_LE_AddWhiteListCmd                                                    
    1000adfd  HCI_LE_RemoveWhiteListCmd                                                 
    1000ae21  HCI_LE_ConnUpdateCmd                                                      
    1000ae4d  HCI_LE_SetHostChanClassificationCmd                                       
    1000ae6d  HCI_LE_ReadChannelMapCmd                                                  
    1000ae95  HCI_LE_ReadRemoteUsedFeaturesCmd                                          
    1000af21  HCI_LE_RandCmd                                                            
    1000af71  HCI_LE_StartEncyptCmd                                                     
    1000af8d  HCI_LE_LtkReqReplyCmd                                                     
    1000afa9  HCI_LE_LtkReqNegReplyCmd                                                  
    1000afc5  HCI_LE_ReadSupportedStatesCmd                                             
    1000b001  HCI_ReadAuthPayloadTimeoutCmd                                             
    1000b041  HCI_WriteAuthPayloadTimeoutCmd                                            
    1000b079  HCI_LE_RemoteConnParamReqReplyCmd                                         
    1000b0bd  HCI_LE_RemoteConnParamReqNegReplyCmd                                      
    1000b0d9  HCI_LE_SetDataLenCmd                                                      
    1000b0f5  HCI_LE_ReadSuggestedDefaultDataLenCmd                                     
    1000b121  HCI_LE_WriteSuggestedDefaultDataLenCmd                                    
    1000b141  HCI_LE_ReadMaxDataLenCmd                                                  
    1000b16d  HCI_LE_AddDeviceToResolvingListCmd                                        
    1000b191  HCI_LE_RemoveDeviceFromResolvingListCmd                                   
    1000b1b1  HCI_LE_ClearResolvingListCmd                                              
    1000b1d1  HCI_LE_ReadResolvingListSizeCmd                                           
    1000b1f5  HCI_LE_ReadPeerResolvableAddressCmd                                       
    1000b22d  HCI_LE_ReadLocalResolvableAddressCmd                                      
    1000b24d  HCI_LE_SetAddressResolutionEnableCmd                                      
    1000b26d  HCI_LE_SetResolvablePrivateAddressTimeoutCmd                              
    1000b289  HCI_LE_ReadLocalP256PublicKeyCmd                                          
    1000b2bd  HCI_LE_GenerateDHKeyCmd                                                   
    1000b2e1  HCI_LE_TransmitterTestCmd                                                 
    1000b2fd  HCI_LE_ReceiverTestCmd                                                    
    1000b31d  HCI_LE_TestEndCmd                                                         
    1000b351  HCI_EXT_SetRxGainCmd                                                      
    1000b381  HCI_EXT_SetTxPowerCmd                                                     
    1000b3c1  HCI_EXT_OnePktPerEvtCmd                                                   
    1000b3f5  HCI_EXT_ClkDivOnHaltCmd                                                   
    1000b415  HCI_EXT_DeclareNvUsageCmd                                                 
    1000b495  HCI_EXT_SetLocalSupportedFeaturesCmd                                      
    1000b4b5  HCI_EXT_SetFastTxResponseTimeCmd                                          
    1000b4d5  HCI_EXT_SetSlaveLatencyOverrideCmd                                        
    1000b509  HCI_EXT_ModemTestTxCmd                                                    
    1000b529  HCI_EXT_ModemHopTestTxCmd                                                 
    1000b549  HCI_EXT_ModemTestRxCmd                                                    
    1000b569  HCI_EXT_EndModemTestCmd                                                   
    1000b5a1  HCI_EXT_SetBDADDRCmd                                                      
    1000b5d9  HCI_EXT_SetSCACmd                                                         
    1000b5f9  HCI_EXT_EnablePTMCmd                                                      
    1000b619  HCI_EXT_SetFreqTuneCmd                                                    
    1000b649  HCI_EXT_SaveFreqTuneCmd                                                   
    1000b669  HCI_EXT_SetMaxDtmTxPowerCmd                                               
    1000b689  HCI_EXT_MapPmIoPortCmd                                                    
    1000b6a9  HCI_EXT_DisconnectImmedCmd                                                
    1000b6c9  HCI_EXT_PacketErrorRateCmd                                                
    1000b719  HCI_EXT_PERbyChanCmd                                                      
    1000b739  HCI_EXT_ExtendRfRangeCmd                                                  
    1000b76d  HCI_EXT_HaltDuringRfCmd                                                   
    1000b78d  HCI_EXT_AdvEventNoticeCmd                                                 
    1000b799  HCI_EXT_ConnEventNoticeCmd                                                
    1000b7a5  HCI_EXT_BuildRevisionCmd                                                  
    1000b7f1  HCI_EXT_DelaySleepCmd                                                     
    1000b825  HCI_EXT_ResetSystemCmd                                                    
    1000b851  HCI_EXT_OverlappedProcessingCmd                                           
    1000b871  HCI_EXT_NumComplPktsLimitCmd                                              
    1000b891  HCI_EXT_GetConnInfoCmd                                                    
    1000b935  HCI_EXT_SetMaxDataLenCmd                                                  
    1000b95d  LL_RandCback                                                              
    1000b991  LL_EXT_SetRxGainCback                                                     
    1000b9a1  LL_EXT_SetTxPowerCback                                                    
    1000b9d9  LL_EXT_PacketErrorRateCback                                               
    1000ba31  LL_EXT_ExtendRfRangeCback                                                 
    1000ba41  hciInitEventMasks                                                         
    1000ba8d  HCI_DataBufferOverflowEvent                                               
    1000bab1  HCI_NumOfCompletedPacketsEvent                                            
    1000bb91  HCI_CommandCompleteEvent                                                  
    1000bc2d  HCI_VendorSpecifcCommandCompleteEvent                                     
    1000bca5  HCI_CommandStatusEvent                                                    
    1000bd51  HCI_SendCommandStatusEvent                                                
    1000bd79  HCI_SendCommandCompleteEvent                                              
    1000be21  HCI_SendControllerToHostEvent                                             
    1000be71  LL_AuthPayloadTimeoutExpiredCback                                         
    1000bee5  LL_RemoteConnParamReqCback                                                
    1000bf65  LL_DataLengthChangeEventCback                                             
    1000c015  LL_ReadLocalP256PublicKeyCompleteEventCback                               
    1000c0f9  LL_GenerateDHKeyCompleteEventCback                                        
    1000c1c9  LL_EnhancedConnectionCompleteCback                                        
    1000c415  LL_AdvReportCback                                                         
    1000c521  LL_ConnectionCompleteCback                                                
    1000c695  LL_DisconnectCback                                                        
    1000c749  LL_ConnParamUpdateCback                                                   
    1000c825  LL_ReadRemoteUsedFeaturesCompleteCback                                    
    1000c8ad  LL_ReadRemoteVersionInfoCback                                             
    1000c921  LL_EncLtkReqCback                                                         
    1000ca01  LL_EncChangeCback                                                         
    1000ca69  LL_EncKeyRefreshCback                                                     
    1000cb35  LL_DirectTestEndDoneCback                                                 
    1000cb69  SCALARMUL_init                                                            
    1000ccb9  SCALARMUL_core                                                            
    1000d08d  SCALARMUL_final                                                           
    1000d195  SCALARMUL                                                                 
    1000d1b1  SAVEPOINT                                                                 
    1000d1f1  GETBIT                                                                    
    1000d205  GETDIGIT                                                                  
    1000d255  GETDIGITL2R                                                               
    1000d2c5  SelectReg                                                                 
    1000d2d5  ATOMICPATTERN                                                             
    1000d6e9  JACADD                                                                    
    1000d8e1  INVERT                                                                    
    1000da81  SQUAREMULTIPLYWORD                                                        
    1000db2d  IMPORTLENGTH                                                              
    1000db31  IMPORTMODULUS                                                             
    1000db55  IMPORTOPERAND                                                             
    1000db95  EXPORTOPERAND                                                             
    1000dbb9  IMPORTDATA                                                                
    1000dbd5  SETOPERAND                                                                
    1000dbf1  COPY                                                                      
    1000dc09  ZERO                                                                      
    1000dc15  SETWORD                                                                   
    1000dc21  mSET                                                                      
    1000dd25  zSET                                                                      
    1000dd2d  mINVK                                                                     
    1000de81  zADD                                                                      
    1000dec9  zSUB                                                                      
    1000df4d  zMACC32                                                                   
    1000dfd5  zSUB32                                                                    
    1000e021  zADD32                                                                    
    1000e075  zMULT32                                                                   
    1000e0f9  mMULT                                                                     
    1000e6c9  mADD                                                                      
    1000e7c5  mSUB                                                                      
    1000e8c1  mOUT                                                                      
    1000eaed  SM_StartPairing                                                           
    1000eb91  SM_PasskeyUpdate                                                          
    1000ec91  smRegisterInitiator                                                       
    1000ec99  smRegisterResponder                                                       
    1000eca1  smLinkCheck                                                               
    1000ecdd  smTimedOut                                                                
    1000eced  smProcessDataMsg                                                          
    1000edf9  smSendFailAndEnd                                                          
    1000ee25  smProcessEncryptChange                                                    
    1000eef1  smNextPairingState                                                        
    1000f01d  smpProcessIncoming                                                        
    1000f05d  smProcessPairingReq                                                       
    1000f0bd  smStartEncryption                                                         
    1000f0d9  smGeneratePairingReqRsp                                                   
    1000f129  smGenerateConfirm                                                         
    1000f149  smGenerateRandMsg                                                         
    1000f18d  smSaveRemotePublicKeys                                                    
    1000f1bd  smSendPublicKeys                                                          
    1000f215  smF5Wrapper                                                               
    1000f2b9  smGenerateDHKeyCheck                                                      
    1000f35d  sm_allocateSCParameters                                                   
    1000f435  smSendDHKeyCheck                                                          
    1000f465  smGetECCKeys                                                              
    1000f501  sm_computeDHKey                                                           
    1000f551  SM_SetECCRegenerationCount                                                
    1000f565  smIncrementEccKeyRecycleCount                                             
    1000f58d  smOobSCAuthentication                                                     
    1000f819  smDetermineIOCaps                                                         
    1000f855  smPairingSendEncInfo                                                      
    1000f869  smPairingSendMasterID                                                     
    1000f899  smPairingSendIdentityInfo                                                 
    1000f8c1  smPairingSendIdentityAddrInfo                                             
    1000f8fd  smPairingSendSigningInfo                                                  
    1000f911  smFreePairingParams                                                       
    1000f985  smEndPairing                                                              
    1000f9cd  smDetermineKeySize                                                        
    1000f9f1  smSetPairingReqRsp                                                        
    1000fa89  GATT_InitServer                                                           
    1000fb09  GATT_RegisterService                                                      
    1000fbc1  GATT_DeregisterService                                                    
    1000fc09  GATT_RegisterForReq                                                       
    1000fc11  GATT_VerifyReadPermissions                                                
    1000fc59  GATT_VerifyWritePermissions                                               
    1000fccd  GATT_ServiceChangedInd                                                    
    1000fd55  GATT_FindHandleUUID                                                       
    1000fdbd  GATT_FindHandle                                                           
    1000fe05  GATT_FindNextAttr                                                         
    1000fead  GATT_ServiceNumAttrs                                                      
    1000febd  GATT_ServiceEncKeySize                                                    
    1000fedd  GATT_SendRsp                                                              
    1000ffcd  GATT_Indication                                                           
    10010045  GATT_Notification                                                         
    100100ad  gattServiceLastHandle                                                     
    100100c9  gattStoreServerInfo                                                       
    100100e9  gattServerProcessMsgCB                                                    
    1001026d  gattProcessExchangeMTUReq                                                 
    10010271  gattProcessFindInfoReq                                                    
    1001039d  gattProcessFindByTypeValueReq                                             
    100103c1  gattProcessReadByTypeReq                                                  
    100103f9  gattProcessReadReq                                                        
    10010421  gattProcessReadMultiReq                                                   
    1001049d  gattProcessReadByGrpTypeReq                                               
    100104e9  gattProcessWriteReq                                                       
    10010519  gattParseReq                                                              
    1001059d  gattProcessReq                                                            
    10010619  gattProcessExecuteWriteReq                                                
    1001061d  gattFindService                                                           
    10010635  gattGetServerStatus                                                       
    1001065d  gattFindServerInfo                                                        
    10010685  gattResetServerInfo                                                       
    1001069d  gattServerStartTimer                                                      
    100106b9  gattServerNotifyTxCB                                                      
    100106e1  gattServerHandleTimerCB                                                   
    1001071d  gattServerHandleConnStatusCB                                              
    100107b9  GATT_GetNextHandle                                                        
    100107d1  gattServApp_SetNumPrepareWrites                                           
    10010881  gattServApp_RegisterServiceCBs                                            
    100108c1  gattServApp_DeregisterServiceCBs                                          
    100108f9  gattServApp_FindServiceCBs                                                
    10010911  gattServApp_ProcessMsg                                                    
    10010a7d  gattServApp_ProcessFindByTypeValueReq                                     
    10010cd5  gattServApp_buildReadByTypeRsp                                            
    10010d5d  gattServApp_ProcessReadReq                                                
    10010ddd  gattServApp_ProcessReadBlobReq                                            
    10010ea9  gattServApp_ProcessReadMultiReq                                           
    10010fd5  gattServApp_ProcessReadByGrpTypeReq                                       
    10011165  gattServApp_ProcessWriteReq                                               
    10011205  gattServApp_ProcessPrepareWriteReq                                        
    100112d9  gattServApp_ProcessExecuteWriteReq                                        
    1001134d  gattServApp_IsWriteLong                                                   
    10011409  gattServApp_FindPrepareWriteQ                                             
    1001143d  gattServApp_PrepareWriteQInUse                                            
    10011489  gattServApp_FindReadAttrCB                                                
    10011499  gattServApp_FindWriteAttrCB                                               
    100114d5  gattServApp_FindAuthorizeAttrCB                                           
    100114e5  GAP_TerminateLinkReq                                                      
    1001157d  GAP_UpdateLinkParamReq                                                    
    10011605  GAP_UpdateLinkParamReqReply                                               
    100116ad  GAP_Signable                                                              
    10011701  GAP_Authenticate                                                          
    100117c1  GAP_TerminateAuth                                                         
    100117ed  GAP_PasskeyUpdate                                                         
    10011829  GAP_PasscodeUpdate                                                        
    1001187d  GAP_Bond                                                                  
    10011919  gapUpdateConnSignCounter                                                  
    1001194d  gapSendSignUpdateEvent                                                    
    10011985  gapSendSlaveSecurityReqEvent                                              
    100119e1  gapProcessConnectionCompleteEvt                                           
    10011ac1  gapProcessRemoteConnParamReqEvt                                           
    10011b85  sendEstLinkEvent                                                          
    10011bf9  sendTerminateEvent                                                        
    10011c35  gapSendLinkUpdateEvent                                                    
    10011c8d  disconnectNext                                                            
    10011cb5  sendAuthEvent                                                             
    10011dc1  gapFreeAuthLink                                                           
    10011e01  gapFreeEstLink                                                            
    10011e25  gapSendBondCompleteEvent                                                  
    10011e81  gapSendPairingReqEvent                                                    
    10011efd  gapPasskeyNeededCB                                                        
    10011f75  gapPairingCompleteCB                                                      
    100120f1  gapRegisterCentralConn                                                    
    100120f9  gapRegisterPeripheralConn                                                 
    10012139  SM_Encrypt                                                                
    1001217d  smStartRspTimer                                                           
    100121a5  smStopRspTimer                                                            
    100121b9  sm_d1                                                                     
    10012205  sm_dm                                                                     
    1001225d  sm_c1new                                                                  
    1001234d  sm_xor                                                                    
    10012365  sm_s1                                                                     
    100123b1  smGenerateRandBuf                                                         
    100123e1  smAuthReqToUint8                                                          
    10012409  smUint8ToAuthReq                                                          
    10012445  smEncrypt                                                                 
    10012459  smEncryptLocal                                                            
    10012465  SM_GenerateAuthenSig                                                      
    10012521  SM_VerifyAuthenSig                                                        
    10012625  sm_CMAC                                                                   
    10012789  generate_subkey                                                           
    1001284d  xor_128                                                                   
    10012861  padding                                                                   
    1001287d  leftshift_onebit                                                          
    10012895  sm_f4                                                                     
    10012961  sm_f5                                                                     
    10012b01  sm_f6                                                                     
    10012c45  sm_g2                                                                     
    10012dfd  SM_ResponderInit                                                          
    10012e29  smResponderProcessLTKReq                                                  
    10012f65  smpResponderProcessIncoming                                               
    10013061  smpResponderProcessPairingReq                                             
    10013091  smpResponderSendPairRspEvent                                              
    10013165  smpResponderProcessPairingConfirm                                         
    100131ed  smpResponderProcessPairingRandom                                          
    10013335  smpResponderProcessPairingPublicKey                                       
    10013365  smFinishPublicKeyExchange                                                 
    10013451  smpResponderProcessPairingDHKeyCheck                                      
    100134cd  smResponderAuthStageTwo                                                   
    1001353d  smpResponderProcessEncryptionInformation                                  
    10013589  smpResponderProcessMasterID                                               
    100135fd  smpResponderProcessIdentityInfo                                           
    10013641  smpResponderProcessIdentityAddrInfo                                       
    100136a1  smpResponderProcessSigningInfo                                            
    100136f1  smResponderSendNextKeyInfo                                                
    10013931  llSlave_TaskEnd                                                           
    10013b75  llSetupNextSlaveEvent                                                     
    10013f05  llProcessSlaveControlProcedures                                           
    10014435  llCheckForLstoDuringSL                                                    
    10014459  GAP_MakeDiscoverable                                                      
    10014509  GAP_UpdateAdvertisingData                                                 
    10014599  GAP_EndDiscoverable                                                       
    100145e1  GAP_SetAdvToken                                                           
    10014655  GAP_GetAdvToken                                                           
    10014679  GAP_RemoveAdvToken                                                        
    10014695  GAP_UpdateAdvTokens                                                       
    100146b1  GAP_PeriDevMgrInit                                                        
    1001470d  gapPeriProcessHCICmdCompleteEvt                                           
    1001476d  gapAllocAdvRecs                                                           
    100147bd  gapSetAdvParams                                                           
    10014881  gapSetAdvParamsStatus                                                     
    100148b1  gapWriteAdvEnableStatus                                                   
    10014951  gapWriteAdvDataStatus                                                     
    1001495d  gapProcessAdvertisingEvt                                                  
    100149b5  gapProcessAdvertisingTimeout                                              
    100149c9  gapConnectedCleanUpAdvertising                                            
    100149fd  gapAddAdvToken                                                            
    10014a39  gapDeleteAdvToken                                                         
    10014a71  gapFindAdvToken                                                           
    10014a89  gapCalcAdvTokenDataLen                                                    
    10014abd  gapBuildADTokens                                                          
    10014ba1  gapSendMakeDiscEvent                                                      
    10014be5  gapSendAdDataUpdateEvent                                                  
    10014c1d  gapSendEndDiscoverableEvent                                               
    10014c51  gapFreeAdvertState                                                        
    10014c75  isLimitedDiscoverableMode                                                 
    10014cd1  l2capParseSignalHdr                                                       
    10014ce5  l2capBuildSignalHdr                                                       
    10014cf9  l2capSendReq                                                              
    10014d75  l2capSendCmd                                                              
    10014e05  l2capStoreFCPkt                                                           
    10014e2d  l2capSendPkt                                                              
    10014e69  l2capSendFCPkt                                                            
    10014eb9  l2capEncapSendData                                                        
    10014f51  l2capParsePacket                                                          
    10014fad  L2CAP_BuildCmdReject                                                      
    10014fed  l2capParseCmdReject                                                       
    1001502d  l2capBuildParamUpdateReq                                                  
    10015059  L2CAP_ParseParamUpdateReq                                                 
    10015095  L2CAP_BuildParamUpdateRsp                                                 
    10015099  l2capParseParamUpdateRsp                                                  
    100150a5  l2capBuildInfoReq                                                         
    100150b9  L2CAP_ParseInfoReq                                                        
    100150d5  L2CAP_BuildInfoRsp                                                        
    10015125  l2capParseInfoRsp                                                         
    10015189  l2capNotifyData                                                           
    100151dd  l2capNotifySignal                                                         
    10015239  l2capAllocChannel                                                         
    10015269  l2capAllocConnChannel                                                     
    100152a9  l2capFreeChannel                                                          
    100152bd  l2capFindLocalId                                                          
    100152e9  l2capStartTimer                                                           
    10015309  l2capStopTimer                                                            
    10015321  l2capHandleTimerCB                                                        
    1001534d  l2capNotifyEvent                                                          
    10015385  l2capHandleRxError                                                        
    10015391  l2capDisconnectAllChannels                                                
    100153fd  l2capFreePendingPkt                                                       
    1001542d  L2CAP_bm_alloc                                                            
    100154a9  L2CAP_SetParamValue                                                       
    100154ad  L2CAP_GetParamValue                                                       
    100154b1  llDirAdv_TaskEnd                                                          
    10015559  llAdv_TaskConnect                                                         
    10015a61  llAdv_TaskEnd                                                             
    10015b75  llAdv_TaskAbort                                                           
    10015be5  ATT_ParsePacket                                                           
    10015c49  ATT_BuildErrorRsp                                                         
    10015c5d  ATT_ParseErrorRsp                                                         
    10015c7d  ATT_BuildExchangeMTUReq                                                   
    10015c81  ATT_ParseExchangeMTUReq                                                   
    10015c8d  ATT_BuildExchangeMTURsp                                                   
    10015ca1  ATT_ParseExchangeMTURsp                                                   
    10015cb9  ATT_BuildFindInfoReq                                                      
    10015cbd  ATT_ParseFindInfoReq                                                      
    10015cc9  ATT_BuildFindInfoRsp                                                      
    10015ce1  ATT_ParseFindInfoRsp                                                      
    10015d25  ATT_BuildFindByTypeValueReq                                               
    10015d41  ATT_ParseFindByTypeValueReq                                               
    10015d89  ATT_BuildFindByTypeValueRsp                                               
    10015d91  ATT_ParseFindByTypeValueRsp                                               
    10015da5  ATT_BuildReadByTypeReq                                                    
    10015de5  ATT_ParseReadByTypeReq                                                    
    10015e29  ATT_BuildReadByTypeRsp                                                    
    10015e2d  ATT_ParseReadByTypeRsp                                                    
    10015e4d  ATT_BuildReadReq                                                          
    10015e51  ATT_ParseReadReq                                                          
    10015e6d  ATT_BuildReadRsp                                                          
    10015e71  ATT_ParseReadRsp                                                          
    10015e75  ATT_ParseWriteReq                                                         
    10015ea1  ATT_BuildWriteReq                                                         
    10015ea5  ATT_ParseWriteRsp                                                         
    10015eb1  ATT_BuildReadBlobReq                                                      
    10015ed1  ATT_ParseReadBlobReq                                                      
    10015ef9  ATT_BuildReadBlobRsp                                                      
    10015efd  ATT_ParseReadBlobRsp                                                      
    10015f0d  ATT_BuildReadMultiReq                                                     
    10015f15  ATT_ParseReadMultiReq                                                     
    10015f2d  ATT_BuildReadMultiRsp                                                     
    10015f31  ATT_ParseReadMultiRsp                                                     
    10015f35  ATT_BuildReadByGrpTypeRsp                                                 
    10015f49  ATT_ParseReadByGrpTypeRsp                                                 
    10015f75  ATT_BuildPrepareWriteReq                                                  
    10015f79  ATT_ParsePrepareWriteReq                                                  
    10015fa1  ATT_BuildPrepareWriteRsp                                                  
    10015fc1  ATT_ParsePrepareWriteRsp                                                  
    10015ff5  ATT_BuildExecuteWriteReq                                                  
    10015ffd  ATT_ParseExecuteWriteReq                                                  
    10016011  ATT_ParseExecuteWriteRsp                                                  
    1001601d  ATT_BuildHandleValueInd                                                   
    10016035  ATT_ParseHandleValueInd                                                   
    10016065  ATT_ParseHandleValueCfm                                                   
    10016071  attSendMsg                                                                
    10016111  ATT_CompareUUID                                                           
    10016179  ATT_ConvertUUIDto128                                                      
    100161a5  ATT_ConvertUUIDto16                                                       
    100161e9  ATT_UpdateMTU                                                             
    1001621d  ATT_GetMTU                                                                
    1001624d  ATT_SetParamValue                                                         
    10016251  ATT_GetParamValue                                                         
    10016255  smpBuildPairingReq                                                        
    10016269  smpBuildPairingRsp                                                        
    1001627d  smpBuildPairingReqRsp                                                     
    1001632d  smpParsePairingReq                                                        
    1001640d  smpBuildPairingConfirm                                                    
    10016429  smpParsePairingConfirm                                                    
    10016445  smpBuildPairingRandom                                                     
    10016461  smpParsePairingRandom                                                     
    1001647d  smpBuildPairingFailed                                                     
    1001648d  smpParsePairingFailed                                                     
    100164ad  smpBuildEncInfo                                                           
    100164c9  smpParseEncInfo                                                           
    100164e5  smpBuildMasterID                                                          
    10016511  smpParseMasterID                                                          
    10016549  smpBuildIdentityInfo                                                      
    10016579  smpBuildIdentityAddrInfo                                                  
    1001659d  smpParseIdentityInfo                                                      
    100165c9  smpParseIdentityAddrInfo                                                  
    100165ed  smpBuildSigningInfo                                                       
    10016609  smpParseSigningInfo                                                       
    10016625  smpBuildSecurityReq                                                       
    10016649  smpParseSecurityReq                                                       
    1001666d  smpBuildPairingPublicKey                                                  
    1001669d  smpParsePairingPublicKey                                                  
    100166d9  smpBuildPairingDHKeyCheck                                                 
    100166f5  smpParsePairingDHKeyCheck                                                 
    1001670d  smpBuildKeypressNoti                                                      
    10016729  smpParseKeypressNoti                                                      
    1001673d  smSendSMMsg                                                               
    10016795  ECC_allocWorkzone                                                         
    1001679d  ECC_setWin                                                                
    100167a5  eccRom_signHash                                                           
    10016941  eccRom_verifyHash                                                         
    10016c1d  eccRom_genKeys                                                            
    10016c65  eccRom_genSharedSecret                                                    
    10016cb5  LL_PRIV_Init                                                              
    10016d29  LL_PRIV_Ah                                                                
    10016d71  LL_PRIV_GenerateRPA                                                       
    10016dd1  LL_PRIV_GenerateNRPA                                                      
    10016e1d  LL_PRIV_GenerateRSA                                                       
    10016e59  LL_PRIV_ResolveRPA                                                        
    10016e89  LL_PRIV_IsRPA                                                             
    10016e9d  LL_PRIV_IsNRPA                                                            
    10016eb5  LL_PRIV_IsIDA                                                             
    10016ecd  LL_PRIV_IsResolvable                                                      
    10016f01  LL_PRIV_IsZeroIRK                                                         
    10016f19  LL_PRIV_FindPeerInRL                                                      
    10016f8d  LL_PRIV_UpdateRL                                                          
    10016fc5  LL_PRIV_NumberPeerRLEntries                                               
    10016fe5  LL_PRIV_SetupPrivacy                                                      
    10016ffd  LL_PRIV_TeardownPrivacy                                                   
    10017021  LL_PRIV_ClearExtWL                                                        
    10017051  LL_PRIV_UpdateExtWLEntry                                                  
    100170d9  LL_PRIV_FindExtWLEntry                                                    
    10017139  LL_PRIV_SetWLSize                                                         
    1001714d  LL_ENC_Init                                                               
    100171ad  LL_ENC_ReverseBytes                                                       
    100171cd  LL_ENC_GeneratePseudoRandNum                                              
    100171e5  LL_ENC_GenerateTrueRandNum                                                
    1001720d  LL_ENC_GenDeviceSKD                                                       
    10017221  LL_ENC_GenDeviceIV                                                        
    10017235  LL_ENC_GenerateNonce                                                      
    10017259  LL_ENC_LoadKey                                                            
    1001729d  LL_ENC_AES128_Encrypt                                                     
    100172f9  LL_ENC_AES128_Decrypt                                                     
    10017361  LL_ENC_EncryptMsg                                                         
    10017485  LL_ENC_Encrypt                                                            
    100174f9  LL_ENC_Decrypt                                                            
    100175d9  SM_Init                                                                   
    10017615  SM_ProcessEvent                                                           
    100176c1  smProcessOSALMsg                                                          
    10017715  smProcessHCIBLEEventCode                                                  
    10017765  smProcessHCIBLEMetaEventCode                                              
    100178bd  SM_RegisterTask                                                           
    100178c5  SM_GetEccKeys                                                             
    1001790d  SM_GetDHKey                                                               
    10017989  SM_GetScConfirmOob                                                        
    100179c9  L2CAP_Init                                                                
    10017a51  L2CAP_ProcessEvent                                                        
    10017ad9  l2capProcessOSALMsg                                                       
    10017b29  L2CAP_RegisterFlowCtrlTask                                                
    10017b31  l2capProcessRxData                                                        
    10017bbd  l2capProcessSignal                                                        
    10017c3d  l2capProcessRsp                                                           
    10017cc9  l2capProcessReq                                                           
    10017d25  l2capHandleConnStatusCB                                                   
    10017d7d  linkDB_Init                                                               
    10017de5  linkDB_Register                                                           
    10017e05  linkDB_Add                                                                
    10017e91  linkDB_Remove                                                             
    10017ed5  linkDB_Update                                                             
    10017f09  linkDB_GetInfo                                                            
    10017f55  linkDB_Find                                                               
    10017f7d  linkDB_FindFirst                                                          
    10017fb1  linkDB_State                                                              
    10017fd5  linkDB_Role                                                               
    10017ff1  linkDB_NumActive                                                          
    10018019  linkDB_NumConns                                                           
    10018021  linkDB_UpdateMTU                                                          
    1001803d  linkDB_MTU                                                                
    1001804d  linkDB_Authen                                                             
    100180b5  linkDB_PerformFunc                                                        
    100180e5  linkDB_reportStatusChange                                                 
    10018105  linkDB_SecurityModeSCOnly                                                 
    10018121  gattRegisterServer                                                        
    10018129  gattRegisterClient                                                        
    10018131  GATT_RegisterForMsgs                                                      
    10018139  GATT_SetHostToAppFlowCtrl                                                 
    1001814d  GATT_AppCompletedMsg                                                      
    1001817d  GATT_Init                                                                 
    100181ad  GATT_ProcessEvent                                                         
    100181e1  gattProcessOSALMsg                                                        
    100181f5  gattProcessRxData                                                         
    100182a9  gattNotifyEvent                                                           
    1001830d  gattStartTimer                                                            
    10018321  gattStopTimer                                                             
    10018341  GATT_NotifyEvent                                                          
    1001835d  GATT_UpdateMTU                                                            
    1001838d  gattSendFlowCtrlEvt                                                       
    100183b1  gattGetPayload                                                            
    10018405  GATT_bm_alloc                                                             
    10018489  GATT_bm_free                                                              
    100184bd  GAP_SetParamValue                                                         
    100184f5  GAP_GetParamValue                                                         
    10018505  GAP_ParamsInit                                                            
    10018539  GAP_SecParamsInit                                                         
    100185a5  GAP_GetIRK                                                                
    100185ad  GAP_ConfigDeviceAddr                                                      
    10018679  gapReadBD_ADDRStatus                                                      
    100186bd  gapReadBufSizeCmdStatus                                                   
    10018709  gapProcessNewAddr                                                         
    10018741  gapAddAddrAdj                                                             
    10018769  gapHost2CtrlOwnAddrType                                                   
    10018775  gapGetSRK                                                                 
    1001877d  gapGetSignCounter                                                         
    10018785  gapIncSignCounter                                                         
    100187a5  gapGetDevAddressMode                                                      
    100187ad  gapGetDevAddress                                                          
    100187e9  gapSendDeviceInitDoneEvent                                                
    10018851  GAP_RegisterForMsgs                                                       
    10018859  GAP_Init                                                                  
    10018879  GAP_ProcessEvent                                                          
    100188fd  GAP_NumActiveConnections                                                  
    10018909  gapProcessOSALMsg                                                         
    10018971  gapProcessBLEEvents                                                       
    10018a11  gapProcessHCICmdCompleteEvt                                               
    10018ab5  gapProcessCommandStatusEvt                                                
    10018b09  gapProcessConnEvt                                                         
    10018b41  gapRegisterCentral                                                        
    10018b49  gapRegisterPeripheral                                                     
    10018b51  GAP_RegisterBondMgrCBs                                                    
    10018b81  WL_Init                                                                   
    10018bb1  WL_Clear                                                                  
    10018bed  WL_ClearEntry                                                             
    10018c11  WL_GetSize                                                                
    10018c25  WL_GetNumFreeEntries                                                      
    10018c51  WL_FindEntry                                                              
    10018ca9  WL_AddEntry                                                               
    10018d41  WL_RemoveEntry                                                            
    10018dc1  WL_SetWlIgnore                                                            
    10018df9  WL_ClearIgnoreList                                                        
    10018e31  ATT_RegisterServer                                                        
    10018e39  ATT_ErrorRsp                                                              
    10018e59  ATT_ExchangeMTURsp                                                        
    10018e81  ATT_FindInfoRsp                                                           
    10018ebd  ATT_FindByTypeValueRsp                                                    
    10018ef1  ATT_ReadByTypeRsp                                                         
    10018f2d  ATT_ReadRsp                                                               
    10018f51  ATT_ReadBlobRsp                                                           
    10018f91  ATT_ReadMultiRsp                                                          
    10018fbd  ATT_ReadByGrpTypeRsp                                                      
    10018fed  ATT_WriteRsp                                                              
    10018ffd  ATT_PrepareWriteRsp                                                       
    10019025  ATT_ExecuteWriteRsp                                                       
    10019045  ATT_HandleValueNoti                                                       
    10019065  ATT_HandleValueInd                                                        
    10019099  attSendRspMsg                                                             
    100190d9  L2CAP_RegisterApp                                                         
    10019105  L2CAP_SendData                                                            
    10019185  L2CAP_CmdReject                                                           
    1001919d  L2CAP_InfoReq                                                             
    100191c5  L2CAP_ConnParamUpdateReq                                                  
    10019209  L2CAP_ConnParamUpdateRsp                                                  
    10019231  L2CAP_SetControllerToHostFlowCtrl                                         
    10019275  L2CAP_HostNumCompletedPkts                                                
    10019291  L2CAP_SetBufSize                                                          
    1001929d  L2CAP_GetMTU                                                              
    100192b9  L2CAP_SetUserConfig                                                       
    100192bd  GAP_SendSlaveSecurityRequest                                              
    1001930d  GAP_PeriConnRegister                                                      
    1001933d  gapPeriProcessConnEvt                                                     
    10019385  gapPeriProcessConnUpdateCmdStatus                                         
    10019399  gapPeriProcessConnUpdateCompleteEvt                                       
    100193dd  gapL2capConnParamUpdateReq                                                
    10019401  gapPeriProcessSignalEvt                                                   
    10019445  HCI_ReverseBytes                                                          
    10019465  LL_RxDataCompleteCback                                                    
    10019525  gapIsAdvertising                                                          
    10019529  gapIsScanning                                                             
    10019535  gapValidADType                                                            
    10019549  gapFindADType                                                             
    100195a1  gapSetState                                                               
    100195ad  gapClrState                                                               
    100195dc  LUTJ                                                                      
    100196b8  supportedCmdsTable                                                        
    1001973c  LUTSTATE                                                                  
    100197b1  llGetCurrentTime                                                          
    100197b9  llTimeCompare                                                             
    100197dd  llTimeDelta                                                               
    10019808  NIST_Curve_P256_p                                                         
    1001982c  NIST_Curve_P256_r                                                         
    10019850  NIST_Curve_P256_a                                                         
    10019874  NIST_Curve_P256_b                                                         
    10019898  NIST_Curve_P256_Gx                                                        
    100198bc  NIST_Curve_P256_Gy                                                        
    10019920  IOCapMatrix                                                               
    1001993d  llCalcScaFactor                                                           
    10019970  LUTOPSIGN                                                                 
    10019988  LUTC                                                                      
    100199a0  LUTSE                                                                     
    100199b8  LUTINCI                                                                   
    100199d0  btBaseUUID                                                                
    100199f0  SCA                                                                       
    10019a00  const_Rb                                                                  
    10019a10  advEvt2Cmd                                                                
    10019a1d  __exit                                                                    
    10019a28  advEvt2State                                                              
    10019a30  LUTOPCODE                                                                 
    10019a40  advChan                                                                   
    10019afc  romRev                                                                    
    10019afd  __checksum_end                                                            
    10019afe  __checksum                                                                
    10019b00  ti_sysbios_rom_cortexm_cc26xx_r2_CC26xx_REVISION__C                       
    10019b05  ti_sysbios_knl_Semaphore_pend__E                                          
    10019bf9  ti_sysbios_knl_Event_pend__E                                              
    10019ce1  ti_sysbios_knl_Task_Instance_init__E                                      
    10019dad  ti_sysbios_knl_Mailbox_Instance_init__E                                   
    10019e75  ti_sysbios_family_arm_m3_Hwi_postInit__I                                  
    10019f25  ti_sysbios_family_arm_cc26xx_Timer_periodicStub__E                        
    10019fc1  ti_sysbios_family_arm_m3_Hwi_Instance_init__E                             
    1001a059  ti_sysbios_knl_Task_Instance_finalize__E                                  
    1001a0ed  ti_sysbios_knl_Mailbox_post__E                                            
    1001a171  ti_sysbios_family_arm_m3_Hwi_initNVIC__E                                  
    1001a1f1  ti_sysbios_knl_Clock_startI__E                                            
    1001a271  ti_sysbios_knl_Task_postInit__I                                           
    1001a2f1  ti_sysbios_knl_Clock_walkQueueDynamic__E                                  
    1001a369  ti_sysbios_knl_Clock_workFunc__E                                          
    1001a3e1  ti_sysbios_knl_Semaphore_post__E                                          
    1001a455  ti_sysbios_knl_Event_post__E                                              
    1001a4c5  ti_sysbios_knl_Mailbox_Instance_finalize__E                               
    1001a535  ti_sysbios_knl_Mailbox_pend__E                                            
    1001a5a5  ti_sysbios_knl_Task_sleep__E                                              
    1001a615  ti_sysbios_heaps_HeapMem_allocUnprotected__E                              
    1001a683  ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E                         
    1001a685  ti_sysbios_knl_Semaphore_Instance_init__E                                 
    1001a6ed  ti_sysbios_knl_Swi_restoreHwi__E                                          
    1001a755  ti_sysbios_family_arm_m3_Hwi_Instance_finalize__E                         
    1001a7b9  ti_sysbios_family_arm_m3_Hwi_Object__create__S                            
    1001a81d  ti_sysbios_family_arm_m3_Hwi_dispatchC__I                                 
    1001a881  ti_sysbios_hal_Hwi_create                                                 
    1001a8e5  ti_sysbios_family_arm_m3_Hwi_create                                       
    1001a945  ti_sysbios_knl_Mailbox_create                                             
    1001a9a5  ti_sysbios_knl_Swi_Instance_init__E                                       
    1001aa05  ti_sysbios_knl_Task_Module_startup__E                                     
    1001aa61  ti_sysbios_knl_Task_startCore__E                                          
    1001aabd  ti_sysbios_family_arm_m3_Hwi_construct                                    
    1001ab15  ti_sysbios_heaps_HeapMem_alloc__E                                         
    1001ab6d  ti_sysbios_heaps_HeapMem_freeUnprotected__E                               
    1001abc5  ti_sysbios_knl_Mailbox_construct                                          
    1001ac1d  ti_sysbios_knl_Swi_create                                                 
    1001ac75  ti_sysbios_knl_Swi_run__I                                                 
    1001accd  ti_sysbios_knl_Task_create                                                
    1001ad25  ti_sysbios_knl_Swi_schedule__I                                            
    1001ad79  ti_sysbios_knl_Swi_construct                                              
    1001adc9  ti_sysbios_knl_Swi_runLoop__I                                             
    1001ae19  ti_sysbios_knl_Task_construct                                             
    1001ae69  ti_sysbios_knl_Task_schedule__I                                           
    1001aeb5  ti_sysbios_family_arm_m3_Hwi_Module_startup__E                            
    1001aefd  ti_sysbios_heaps_HeapMem_getStats__E                                      
    1001af45  ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E                          
    1001af45  ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E                           
    1001af45  ti_sysbios_hal_Hwi_disableInterrupt__E                                    
    1001af89  ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E                           
    1001af89  ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E                            
    1001af89  ti_sysbios_hal_Hwi_enableInterrupt__E                                     
    1001afcd  ti_sysbios_knl_Mailbox_Module_startup__E                                  
    1001b011  ti_sysbios_knl_Swi_post__E                                                
    1001b055  ti_sysbios_knl_Task_allBlockedFunction__I                                 
    1001b099  ti_sysbios_family_arm_m3_Hwi_getStackInfo__E                              
    1001b099  ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E                               
    1001b099  ti_sysbios_hal_Hwi_getStackInfo__E                                        
    1001b0d9  ti_sysbios_knl_Task_yield__E                                              
    1001b119  ti_sysbios_knl_Task_exit__E                                               
    1001b153  ti_sysbios_gates_GateHwi_Instance_init__E                                 
    1001b155  ti_sysbios_family_arm_m3_TaskSupport_start__E                             
    1001b155  ti_sysbios_knl_Task_SupportProxy_start__E                                 
    1001b18d  ti_sysbios_heaps_HeapMem_Instance_init__E                                 
    1001b1c5  ti_sysbios_knl_Clock_Instance_init__E                                     
    1001b1fd  ti_sysbios_knl_Clock_create                                               
    1001b235  ti_sysbios_heaps_HeapMem_init__I                                          
    1001b269  ti_sysbios_knl_Clock_construct                                            
    1001b29d  ti_sysbios_knl_Clock_getTicks__E                                          
    1001b2d1  ti_sysbios_knl_Semaphore_create                                           
    1001b305  ti_sysbios_knl_Swi_restore__E                                             
    1001b339  ti_sysbios_knl_Task_blockI__E                                             
    1001b36d  ti_sysbios_gates_GateMutex_Object__create__S                              
    1001b39d  ti_sysbios_gates_GateMutex_create                                         
    1001b3cd  ti_sysbios_gates_GateMutex_enter__E                                       
    1001b3fd  ti_sysbios_heaps_HeapMem_free__E                                          
    1001b42d  ti_sysbios_knl_Event_create                                               
    1001b45d  ti_sysbios_knl_Semaphore_construct                                        
    1001b48d  ti_sysbios_knl_Task_processVitalTaskFlag__I                               
    1001b4bd  ti_sysbios_family_arm_cc26xx_Timer_postInit__I                            
    1001b4e9  ti_sysbios_family_arm_cc26xx_Timer_startup__E                             
    1001b4e9  ti_sysbios_knl_Clock_TimerProxy_startup__E                                
    1001b515  ti_sysbios_family_arm_m3_Hwi_Object__get__S                               
    1001b541  ti_sysbios_gates_GateMutex_construct                                      
    1001b56d  ti_sysbios_hal_Hwi_initStack                                              
    1001b599  ti_sysbios_heaps_HeapMem_Object__create__S                                
    1001b5c5  ti_sysbios_heaps_HeapMem_Object__get__S                                   
    1001b5f1  ti_sysbios_knl_Event_construct                                            
    1001b61d  ti_sysbios_knl_Event_pendTimeout__I                                       
    1001b649  ti_sysbios_knl_Mailbox_Object__get__S                                     
    1001b675  ti_sysbios_knl_Mailbox_postInit__I                                        
    1001b6a1  ti_sysbios_knl_Queue_construct                                            
    1001b6cd  ti_sysbios_knl_Queue_create                                               
    1001b6f9  ti_sysbios_knl_Semaphore_pendTimeout__I                                   
    1001b725  ti_sysbios_knl_Swi_Object__get__S                                         
    1001b751  ti_sysbios_knl_Task_unblockI__E                                           
    1001b77d  ti_sysbios_family_arm_cc26xx_TimestampProvider_get64__E                   
    1001b77d  xdc_runtime_Timestamp_SupportProxy_get64__E                               
    1001b77d  xdc_runtime_Timestamp_get64__E                                            
    1001b7a5  ti_sysbios_knl_Clock_addI__E                                              
    1001b7cd  ti_sysbios_knl_Semaphore_Instance_finalize__E                             
    1001b7f5  ti_sysbios_knl_Task_restore__E                                            
    1001b81d  ti_sysbios_hal_Hwi_Instance_init__E                                       
    1001b843  ti_sysbios_knl_Clock_logTick__E                                           
    1001b845  ti_sysbios_family_arm_cc26xx_Timer_Module_startup__E                      
    1001b869  ti_sysbios_gates_GateHwi_Object__create__S                                
    1001b88d  ti_sysbios_BIOS_RtsGateProxy_Object__delete__S                            
    1001b88d  ti_sysbios_gates_GateMutex_Object__delete__S                              
    1001b88d  ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__delete__S               
    1001b8b1  ti_sysbios_knl_Clock_Object__delete__S                                    
    1001b8d5  ti_sysbios_knl_Semaphore_Object__delete__S                                
    1001b8f9  ti_sysbios_family_arm_cc26xx_Timer_Module__startupDone__S                 
    1001b8f9  ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S                    
    1001b919  ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_startup__E          
    1001b939  ti_sysbios_family_arm_m3_Hwi_Module__startupDone__S                       
    1001b939  ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S                        
    1001b959  ti_sysbios_family_arm_m3_Hwi_Object__delete__S                            
    1001b959  ti_sysbios_hal_Hwi_HwiProxy_Object__delete__S                             
    1001b979  ti_sysbios_family_arm_m3_Hwi_excHandler__I                                
    1001b999  ti_sysbios_gates_GateHwi_Handle__label__S                                 
    1001b999  xdc_runtime_System_Module_GateProxy_Handle__label__S                      
    1001b9b9  ti_sysbios_gates_GateHwi_Object__delete__S                                
    1001b9b9  xdc_runtime_System_Module_GateProxy_Object__delete__S                     
    1001b9d9  ti_sysbios_BIOS_RtsGateProxy_Handle__label__S                             
    1001b9d9  ti_sysbios_gates_GateMutex_Handle__label__S                               
    1001b9d9  ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S                
    1001b9f9  ti_sysbios_gates_GateMutex_Object__destruct__S                            
    1001ba19  ti_sysbios_hal_Hwi_Object__delete__S                                      
    1001ba39  ti_sysbios_heaps_HeapMem_Handle__label__S                                 
    1001ba39  xdc_runtime_Memory_HeapProxy_Handle__label__S                             
    1001ba59  ti_sysbios_heaps_HeapMem_Object__delete__S                                
    1001ba59  xdc_runtime_Memory_HeapProxy_Object__delete__S                            
    1001ba79  ti_sysbios_knl_Clock_Module_startup__E                                    
    1001ba99  ti_sysbios_knl_Clock_Object__destruct__S                                  
    1001bab9  ti_sysbios_knl_Clock_stop__E                                              
    1001bad9  ti_sysbios_knl_Event_Object__delete__S                                    
    1001baf9  ti_sysbios_knl_Event_checkEvents__I                                       
    1001bb19  ti_sysbios_knl_Idle_run__E                                                
    1001bb39  ti_sysbios_knl_Mailbox_Object__delete__S                                  
    1001bb59  ti_sysbios_knl_Queue_Object__delete__S                                    
    1001bb79  ti_sysbios_knl_Queue_Object__get__S                                       
    1001bb99  ti_sysbios_knl_Semaphore_Object__destruct__S                              
    1001bbb9  ti_sysbios_knl_Swi_Object__delete__S                                      
    1001bbd9  ti_sysbios_knl_Task_Object__delete__S                                     
    1001bbf9  ti_sysbios_knl_Task_Object__get__S                                        
    1001bc19  ti_sysbios_knl_Task_restoreHwi__E                                         
    1001bc39  ti_sysbios_family_arm_m3_Hwi_Object__destruct__S                          
    1001bc55  ti_sysbios_family_arm_m3_Hwi_setPriority__E                               
    1001bc71  ti_sysbios_gates_GateMutex_Instance_init__E                               
    1001bc8d  ti_sysbios_hal_Hwi_HwiProxy_create                                        
    1001bca9  ti_sysbios_knl_Clock_scheduleNextTick__E                                  
    1001bcc5  ti_sysbios_knl_Event_Object__destruct__S                                  
    1001bce1  ti_sysbios_knl_Mailbox_Object__destruct__S                                
    1001bcfd  ti_sysbios_knl_Queue_Object__destruct__S                                  
    1001bd19  ti_sysbios_knl_Queue_get__E                                               
    1001bd35  ti_sysbios_knl_Queue_put__E                                               
    1001bd51  ti_sysbios_knl_Swi_Object__destruct__S                                    
    1001bd6d  ti_sysbios_knl_Task_Object__destruct__S                                   
    1001bd89  ti_sysbios_knl_Task_enter__I                                              
    1001bda5  ti_sysbios_knl_Task_sleepTimeout__I                                       
    1001bdbf  ti_sysbios_knl_Clock_triggerFunc__I                                       
    1001bdc1  ti_sysbios_family_arm_m3_Hwi_plug__E                                      
    1001bdd9  ti_sysbios_gates_GateMutex_leave__E                                       
    1001bdf1  ti_sysbios_knl_Task_unblock__E                                            
    1001be09  ti_sysbios_knl_Clock_Instance_finalize__E                                 
    1001be1f  ti_sysbios_knl_Clock_start__E                                             
    1001be35  ti_sysbios_family_arm_m3_Hwi_switchFromBootStack__E                       
    1001be35  ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E                        
    1001be35  ti_sysbios_hal_Hwi_switchFromBootStack__E                                 
    1001be49  ti_sysbios_knl_Event_Instance_init__E                                     
    1001be5d  ti_sysbios_hal_Hwi_Module_startup__E                                      
    1001be6f  ti_sysbios_knl_Event_sync__E                                              
    1001be81  ti_sysbios_BIOS_exit__E                                                   
    1001be91  ti_sysbios_BIOS_getCpuFreq__E                                             
    1001bea1  ti_sysbios_BIOS_setThreadType__E                                          
    1001beb1  ti_sysbios_BIOS_start__E                                                  
    1001bec1  ti_sysbios_gates_GateMutex_Instance_finalize__E                           
    1001bed1  ti_sysbios_hal_Hwi_HwiProxy_Object__create__S                             
    1001bee1  ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E                         
    1001bef1  ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E                            
    1001bf01  ti_sysbios_knl_Clock_TimerProxy_setNextTick__E                            
    1001bf11  ti_sysbios_knl_Swi_disable__E                                             
    1001bf21  ti_sysbios_knl_Swi_enabled__E                                             
    1001bf31  ti_sysbios_knl_Task_disable__E                                            
    1001bf41  ti_sysbios_heaps_HeapMem_restore__E                                       
    1001bf4f  ti_sysbios_knl_Queue_empty__E                                             
    1001bf5d  ti_sysbios_knl_Queue_remove__E                                            
    1001bf6b  ti_sysbios_family_arm_cc26xx_TimestampProvider_getFreq__E                 
    1001bf6b  xdc_runtime_Timestamp_SupportProxy_getFreq__E                             
    1001bf6b  xdc_runtime_Timestamp_getFreq__E                                          
    1001bf77  ti_sysbios_knl_Swi_Instance_finalize__E                                   
    1001bf79  ti_sysbios_family_arm_m3_Hwi_Params__init__S                              
    1001bf79  ti_sysbios_hal_Hwi_HwiProxy_Params__init__S                               
    1001bf85  ti_sysbios_family_arm_m3_Hwi_disableFxn__E                                
    1001bf91  ti_sysbios_family_arm_m3_Hwi_enableFxn__E                                 
    1001bf9d  ti_sysbios_family_arm_m3_TaskSupport_getStackAlignment__E                 
    1001bf9d  ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E                     
    1001bfa9  ti_sysbios_gates_GateHwi_enter__E                                         
    1001bfb5  ti_sysbios_BIOS_RtsGateProxy_Params__init__S                              
    1001bfb5  ti_sysbios_gates_GateMutex_Params__init__S                                
    1001bfb5  ti_sysbios_heaps_HeapMem_Module_GateProxy_Params__init__S                 
    1001bfc1  ti_sysbios_knl_Clock_Params__init__S                                      
    1001bfcd  ti_sysbios_knl_Clock_getTimerHandle__E                                    
    1001bfd9  ti_sysbios_knl_Event_Params__init__S                                      
    1001bfe5  ti_sysbios_knl_Mailbox_Params__init__S                                    
    1001bff1  ti_sysbios_knl_Queue_dequeue__E                                           
    1001bffd  ti_sysbios_knl_Queue_enqueue__E                                           
    1001c009  ti_sysbios_knl_Semaphore_Params__init__S                                  
    1001c015  ti_sysbios_knl_Swi_Params__init__S                                        
    1001c021  ti_sysbios_knl_Task_Params__init__S                                       
    1001c02d  ti_sysbios_knl_Task_self__E                                               
    1001c039  ti_sysbios_hal_Hwi_Instance_finalize__E                                   
    1001c043  ti_sysbios_family_arm_m3_Hwi_doSwiRestore__I                              
    1001c04b  ti_sysbios_family_arm_m3_Hwi_startup__E                                   
    1001c04b  ti_sysbios_hal_Hwi_HwiProxy_startup__E                                    
    1001c04b  ti_sysbios_hal_Hwi_startup__E                                             
    1001c053  ti_sysbios_knl_Idle_loop__E                                               
    1001c05b  ti_sysbios_family_arm_m3_Hwi_doTaskRestore__I                             
    1001c061  ti_sysbios_family_arm_m3_Hwi_restoreFxn__E                                
    1001c067  ti_sysbios_gates_GateHwi_leave__E                                         
    1001c06d  ti_sysbios_heaps_HeapMem_isBlocking__E                                    
    1001c073  ti_sysbios_knl_Queue_Instance_init__E                                     
    1001c079  ti_sysbios_knl_Queue_elemClear__E                                         
    1001c07f  ti_sysbios_knl_Swi_Module_startup__E                                      
    1001c085  ti_sysbios_knl_Swi_startup__E                                             
    1001c08b  ti_sysbios_knl_Task_enable__E                                             
    1001c091  ti_sysbios_BIOS_RtsGateProxy_enter__E                                     
    1001c095  ti_sysbios_BIOS_RtsGateProxy_leave__E                                     
    1001c099  ti_sysbios_family_arm_cc26xx_Timer_getExpiredTicks__E                     
    1001c09d  ti_sysbios_family_arm_cc26xx_Timer_getPeriod__E                           
    1001c0a1  ti_sysbios_family_arm_cc26xx_Timer_setPeriod__E                           
    1001c0a5  ti_sysbios_family_arm_m3_Hwi_delete                                       
    1001c0a9  ti_sysbios_family_arm_m3_Hwi_destruct                                     
    1001c0ad  ti_sysbios_family_arm_m3_TaskSupport_Module__startupDone__S               
    1001c0ad  ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S                   
    1001c0b1  ti_sysbios_gates_GateHwi_query__E                                         
    1001c0b1  xdc_runtime_System_Module_GateProxy_query__E                              
    1001c0b5  ti_sysbios_gates_GateMutex_delete                                         
    1001c0b9  ti_sysbios_gates_GateMutex_destruct                                       
    1001c0bd  ti_sysbios_BIOS_RtsGateProxy_query__E                                     
    1001c0bd  ti_sysbios_gates_GateMutex_query__E                                       
    1001c0bd  ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E                        
    1001c0c1  ti_sysbios_hal_Hwi_HwiProxy_delete                                        
    1001c0c5  ti_sysbios_hal_Hwi_delete                                                 
    1001c0c9  ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E                        
    1001c0cd  ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E                        
    1001c0d1  ti_sysbios_knl_Clock_TimerProxy_getExpiredTicks__E                        
    1001c0d5  ti_sysbios_knl_Clock_TimerProxy_getPeriod__E                              
    1001c0d9  ti_sysbios_knl_Clock_delete                                               
    1001c0dd  ti_sysbios_knl_Clock_destruct                                             
    1001c0e1  ti_sysbios_knl_Clock_removeI__E                                           
    1001c0e5  ti_sysbios_knl_Clock_setTimeout__E                                        
    1001c0e9  ti_sysbios_knl_Event_delete                                               
    1001c0ed  ti_sysbios_knl_Event_destruct                                             
    1001c0f1  ti_sysbios_knl_Mailbox_delete                                             
    1001c0f5  ti_sysbios_knl_Mailbox_destruct                                           
    1001c0f9  ti_sysbios_knl_Queue_delete                                               
    1001c0fd  ti_sysbios_knl_Queue_destruct                                             
    1001c101  ti_sysbios_knl_Queue_head__E                                              
    1001c105  ti_sysbios_knl_Queue_next__E                                              
    1001c109  ti_sysbios_knl_Semaphore_delete                                           
    1001c10d  ti_sysbios_knl_Semaphore_destruct                                         
    1001c111  ti_sysbios_knl_Swi_delete                                                 
    1001c115  ti_sysbios_knl_Swi_destruct                                               
    1001c119  ti_sysbios_knl_Swi_postInit__I                                            
    1001c11d  ti_sysbios_knl_Task_delete                                                
    1001c121  ti_sysbios_knl_Task_destruct                                              
    1001c125  ti_sysbios_knl_Task_startup__E                                            
    1001c129  xdc_runtime_Startup_startMods__I                                          
    1001c2c9  xdc_runtime_Core_createObject__I                                          
    1001c349  xdc_runtime_Memory_alloc__E                                               
    1001c3b5  xdc_runtime_Core_deleteObject__I                                          
    1001c413  xdc_runtime_Error_policySpin__E                                           
    1001c415  xdc_runtime_Startup_exec__E                                               
    1001c465  xdc_runtime_Assert_raise__I                                               
    1001c4ad  xdc_runtime_Core_assignParams__I                                          
    1001c4f5  xdc_runtime_Core_constructObject__I                                       
    1001c581  xdc_runtime_System_atexit__E                                              
    1001c5b9  xdc_runtime_Core_assignLabel__I                                           
    1001c5ed  xdc_runtime_System_processAtExit__E                                       
    1001c621  xdc_runtime_Text_cordText__E                                              
    1001c64d  xdc_runtime_System_abort__E                                               
    1001c66d  xdc_runtime_Error_raiseX__E                                               
    1001c689  xdc_runtime_Memory_valloc__E                                              
    1001c6a5  xdc_runtime_Core_destructObject__I                                        
    1001c6bd  xdc_runtime_Error_check__E                                                
    1001c6d5  xdc_runtime_System_exit__E                                                
    1001c6ed  xdc_runtime_Text_ropeText__E                                              
    1001c705  xdc_runtime_Memory_free__E                                                
    1001c715  xdc_runtime_SysCallback_abort__E                                          
    1001c725  xdc_runtime_SysCallback_exit__E                                           
    1001c735  xdc_runtime_Timestamp_SupportProxy_get32__E                               
    1001c735  xdc_runtime_Timestamp_get32__E                                            
    1001c751  xdc_runtime_Memory_calloc__E                                              
    1001c75d  xdc_runtime_Memory_getMaxDefaultTypeAlign__E                              
    1001c769  xdc_runtime_Startup_rtsDone__E                                            
    1001c775  xdc_runtime_Memory_HeapProxy_alloc__E                                     
    1001c77f  xdc_runtime_Memory_HeapProxy_free__E                                      
    1001c789  xdc_runtime_Gate_leaveSystem__E                                           
    1001c78f  xdc_runtime_System_Module_startup__E                                      
    1001c795  xdc_runtime_Gate_enterSystem__E                                           
    1001c799  xdc_runtime_System_Module_GateProxy_enter__E                              
    1001c79d  xdc_runtime_System_Module_GateProxy_leave__E                              
    1001c7a1  xdc_runtime_System_abortSpin__E                                           
    1001c7a3  xdc_runtime_System_exitSpin__E                                            
    1001c7a5  ti_sysbios_family_arm_m3_Hwi_dispatch__I                                  
    1001c86d  ti_sysbios_family_arm_m3_TaskSupport_buildTaskStack                       
    1001c8b9  ti_sysbios_family_arm_m3_Hwi_initStacks__E                                
    1001c901  ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I                             
    1001c921  ti_sysbios_family_xxx_Hwi_switchAndRunFunc                                
    1001c93f  ti_sysbios_family_arm_m3_Hwi_pendSV__I                                    
    1001c957  ti_sysbios_family_arm_m3_Hwi_return                                       
    1001c959  ti_sysbios_family_arm_m3_TaskSupport_glue                                 
    1001c969  ti_sysbios_family_arm_m3_TaskSupport_swap__E                              
    1001c969  ti_sysbios_knl_Task_SupportProxy_swap__E                                  
    1001c971  ti_sysbios_knl_Task_swapReturn                                            
    1001c978  ti_sysbios_knl_Task_Object__PARAMS__C                                     
    1001c9b4  ti_sysbios_knl_Mailbox_Object__PARAMS__C                                  
    1001c9e8  ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C                            
    1001ca18  ti_sysbios_hal_Hwi_Object__PARAMS__C                                      
    1001ca44  ti_sysbios_knl_Swi_Object__PARAMS__C                                      
    1001ca6c  ti_sysbios_heaps_HeapMem_Object__PARAMS__C                                
    1001ca90  ti_sysbios_knl_Clock_Object__PARAMS__C                                    
    1001cab4  ti_sysbios_knl_Semaphore_Object__PARAMS__C                                
    1001cad8  ti_sysbios_gates_GateHwi_Object__PARAMS__C                                
    1001caf0  ti_sysbios_gates_GateMutex_Object__PARAMS__C                              
    1001cb08  ti_sysbios_knl_Event_Object__PARAMS__C                                    
    1001cb20  ti_sysbios_knl_Queue_Object__PARAMS__C                                    
    1001cb68  ti_sysbios_gates_GateMutex_Instance_State_sem__O                          
    1001cb6c  ti_sysbios_knl_Clock_Module_State_clockQ__O                               
    1001cb70  ti_sysbios_knl_Event_Instance_State_pendQ__O                              
    1001cb74  ti_sysbios_knl_Mailbox_Instance_State_dataQue__O                          
    1001cb78  ti_sysbios_knl_Mailbox_Instance_State_dataSem__O                          
    1001cb7c  ti_sysbios_knl_Mailbox_Instance_State_freeQue__O                          
    1001cb80  ti_sysbios_knl_Mailbox_Instance_State_freeSem__O                          
    1001cb84  ti_sysbios_knl_Semaphore_Instance_State_pendQ__O                          
    1001cb88  ti_sysbios_knl_Task_Module_State_inactiveQ__O                             
    20000000  __UNUSED_SRAM_start__                                                     
    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                                       
    20000204  xdc_runtime_Error_Module__state__V                                        
    2000020c  dispHandle                                                                
    20000298  sbpTask                                                                   
    200002e8  sbpTaskStack                                                              
    2000056c  pwrmgr_initialized                                                        
    2000056e  pwrmgr_attribute                                                          
    20000680  gapRoleTask                                                               
    200006d0  gapRoleTaskStack                                                          
    20000cbc  __TI_ft_end                                                               
    20000cc0  __TI_tmpnams                                                              
    20000d60  _ftable                                                                   
    20000e61  gapBond_removeLRUBond                                                     
    20000e62  gapBond_syncRL                                                            
    20000e86  gapBond_lruBondList                                                       
    200010e8  PowerCC26XX_module                                                        
    200012d4  ICall_enterCriticalSection                                                
    200012d8  ICall_leaveCriticalSection                                                
    200012e8  heapmgrMemFreeTotal                                                       
    200012f4  HEAPMGR_SIZE                                                              
    200012f8  ICall_dispatcher                                                          
    20001368  baseTaskID                                                                
    2000136c  cbTimers                                                                  
    20001454  ti_sysbios_knl_Task_Object__table__V                                      
    200014a0  ti_sysbios_family_arm_cc26xx_Timer_Object__table__V                       
    200014e8  ti_sysbios_gates_GateMutex_Object__table__V                               
    20001520  llUserConfig                                                              
    20001550  ti_sysbios_knl_Swi_Module_State_0_readyQ__A                               
    20001580  ti_sysbios_knl_Swi_Object__table__V                                       
    200015b0  ti_sysbios_knl_Task_Module_State_0_readyQ__A                              
    200015e1  osal_entity                                                               
    200015e8  osal_qHead                                                                
    200015ec  osal_eventloop_hook                                                       
    200015f0  osal_icallMsg_hook                                                        
    200015f4  osal_syncHandle                                                           
    200015f8  osal_tickperiod                                                           
    200015fc  osal_max_msecs                                                            
    20001630  ti_sysbios_knl_Clock_Object__table__V                                     
    20001650  xdc_runtime_Error_IgnoreBlock                                             
    20001670  excPC                                                                     
    20001674  excCaller                                                                 
    20001678  user0Cfg                                                                  
    20001688  ti_sysbios_family_arm_m3_Hwi_Object__table__V                             
    200016f6  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A                  
    200016f8  bleAppServiceInfoTable                                                    
    20001708  gattAttrTbl                                                               
    20001718  pfnBMAlloc                                                                
    2000171c  pfnBMFree                                                                 
    20001720  pRfErrCb                                                                  
    20001724  lastAppOpcodeIdxSent                                                      
    20001728  rfRegTbl                                                                  
    20001738  __TI_cleanup_ptr                                                          
    2000173c  __TI_dtors_ptr                                                            
    20001740  __TI_enable_exit_profile_output                                           
    20001744  ti_sysbios_heaps_HeapCallback_Object__table__V                            
    2000175c  assertSubcause                                                            
    2000175d  legacyMode                                                                
    20001760  halAssertCback                                                            
    20001768  OSAL_timeSeconds                                                          
    2000176c  _lock                                                                     
    20001770  _unlock                                                                   
    20001784  sizeInfo                                                                  
    2000178c  ti_sysbios_family_arm_m3_Hwi_Module__root__V                              
    20001794  ti_sysbios_gates_GateHwi_Module__root__V                                  
    2000179c  ti_sysbios_gates_GateMutex_Module__root__V                                
    200017a4  ti_sysbios_hal_Hwi_Module__root__V                                        
    200017ac  ti_sysbios_heaps_HeapCallback_Module__root__V                             
    200017b4  ti_sysbios_heaps_HeapMem_Module__root__V                                  
    200017bc  ti_sysbios_knl_Clock_Module__root__V                                      
    200017c4  ti_sysbios_knl_Event_Module__root__V                                      
    200017cc  ti_sysbios_knl_Mailbox_Module__root__V                                    
    200017d4  ti_sysbios_knl_Queue_Module__root__V                                      
    200017dc  ti_sysbios_knl_Semaphore_Module__root__V                                  
    200017e4  ti_sysbios_knl_Swi_Module__root__V                                        
    200017ec  ti_sysbios_knl_Task_Module__root__V                                       
    20001800  Display_config                                                            
    20001804  appAssertCback                                                            
    20001808  main_func_sp                                                              
    2000180c  icallServiceTblPtr                                                        
    20001814  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A                 
    20001818  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A                   
    2000181c  ti_sysbios_knl_Task_Module_State_0_idleTask__A                            
    20001820  ti_sysbios_knl_Task_Instance_State_0_stack__A                             
    20001a20  __CIOBUF_                                                                 
    20001b40  PIN_NumPins                                                               
    20001bd4  PIN_HandleTable                                                           
    20001c50  ti_sysbios_family_arm_m3_Hwi_dispatchTable                                
    20001d18  cryptoCC26XXObjects                                                       
    20001dd8  timerHead                                                                 
    20001ddc  osal_last_timestamp                                                       
    20001de4  llTaskList                                                                
    20001df0  PowerCC26XX_taskKey                                                       
    20001df4  PowerCC26XX_swiKey                                                        
    20001e14  ClockP_tickPeriod                                                         
    20001e18  tasksEvents                                                               
    20001e1c  trngCC26XXObjects                                                         
    20001e20  hciTaskID                                                                 
    20001e21  hciGapTaskID                                                              
    20001e22  hciTestTaskID                                                             
    20001e23  hciL2capTaskID                                                            
    20001e24  hciSmpTaskID                                                              
    20001e25  driverlib_release_0_48919                                                 
    20001e26  g_hwiInt                                                                  
    20001e27  icall_liteTaskId                                                          
    20001e28  heapStart                                                                 
    20004000  __stack                                                                   
    20004000  heapEnd                                                                   
    20004400  __STACK_END                                                               
    20004400  __STACK_TOP                                                               
    200044f8  RAM_BASE_ADDR                                                             
    20004504  ROM_FlashJT                                                               
    20004508  gapParameters                                                             
    20004558  gapPeripheralCBs                                                          
    20004564  gapPeripheralConnCBs                                                      
    20004568  rfMode                                                                    
    20004584  smResponderCBs                                                            
    2000459c  slaveConnHandle                                                           
    2000459e  nextHandle                                                                
    200045a0  l2capMtuSize                                                              
    200045a2  gapAppTaskID                                                              
    200045a3  gapAdvAppTaskID                                                           
    200045a4  gapUnwantedTaskID                                                         
    200045a5  reqTaskId                                                                 
    200045a6  gattAppTaskID                                                             
    200045a7  appTaskID                                                                 
    200045a8  flowCtrlTaskId                                                            
    200045a9  SM_appTaskID                                                              
    200045ac  resolvingList                                                             
    200046ec  scanDataEntry                                                             
    200047cc  wlTable                                                                   
    200048a8  wlTableScan                                                               
    20004988  rfObject                                                                  
    20004a20  advCmd                                                                    
    20004a68  localEccKeys                                                              
    20004aac  initDataEntry                                                             
    20004ae4  advDataEntry                                                              
    20004b1c  l2capFixedChannels                                                        
    20004b4c  linkCBs                                                                   
    20004b7c  eccParams                                                                 
    20004bac  initParam                                                                 
    20004bd0  scanParam                                                                 
    20004bf4  advParam                                                                  
    20004c14  cryptoPRAND                                                               
    20004c34  txModemTestCmd                                                            
    20004c50  gapParams                                                                 
    20004c6c  initCmd                                                                   
    20004c84  connReqData                                                               
    20004c9c  scanCmd                                                                   
    20004cb4  scanOutput                                                                
    20004ccc  trxTestCmd                                                                
    20004ce4  rxModemTestCmd                                                            
    20004cfc  rsp                                                                       
    20004d14  fwParDtmCmd                                                               
    20004d2c  rfSetup                                                                   
    20004d44  fwParRfCmd                                                                
    20004d5c  connOutput                                                                
    20004d70  rxTestParam                                                               
    20004d84  initDataQueue                                                             
    20004d94  scanDataQueue                                                             
    20004da4  advDataQueue                                                              
    20004db4  advOutput                                                                 
    20004dc4  txTestParam                                                               
    20004dd4  initOutput                                                                
    20004de0  rxTestOut                                                                 
    20004dec  deviceFeatureSet                                                          
    20004df8  cachedTRNGdata                                                            
    20004e04  gapCurrentRandomAddr                                                      
    20004e0c  slaveUpdateReq                                                            
    20004e14  pBleEvtMask                                                               
    20004e1c  pHciEvtMask                                                               
    20004e24  pHciEvtMask2                                                              
    20004e2c  ownPublicAddr                                                             
    20004e34  ownRandomAddr                                                             
    20004e3c  ownSavedPublicAddr                                                        
    20004e44  fwImmedCmd                                                                
    20004e4c  attServerNotifyTxCB                                                       
    20004e50  rfEvent                                                                   
    20004e58  fwParCmd                                                                  
    20004e60  verInfo                                                                   
    20004e68  llConns                                                                   
    20004e70  fwParamImmedCmd                                                           
    20004e78  privInfo                                                                  
    20004e80  linkCmd                                                                   
    20004e84  linkParam                                                                 
    20004e88  rxDataQ                                                                   
    20004e8c  txDataQ                                                                   
    20004e90  rxRingBuf                                                                 
    20004e94  txTestOut                                                                 
    20004e98  pGapDiscReq                                                               
    20004e9c  pGapAdvertState                                                           
    20004ea0  pEstLink                                                                  
    20004ea4  pAuthLink                                                                 
    20004ea8  pfnCentralConnCBs                                                         
    20004eac  pfnPeripheralConnCBs                                                      
    20004eb0  pGapAdvTokens                                                             
    20004eb4  pGapAdData                                                                
    20004eb8  pGapScanRspData                                                           
    20004ebc  pfnPeripheralCBs                                                          
    20004ec0  pfnCentralCBs                                                             
    20004ec4  pfnBondMgrCBs                                                             
    20004ec8  serverInfoTbl                                                             
    20004ecc  pServiceList                                                              
    20004ed0  pfnServerProcessMsgCB                                                     
    20004ed4  pfnClientProcessMsgCB                                                     
    20004ed8  prepareWritesTbl                                                          
    20004edc  serviceCBsList                                                            
    20004ee0  pAttrValue                                                                
    20004ee4  l2capChannels                                                             
    20004ee8  linkDB                                                                    
    20004eec  rfHandle                                                                  
    20004ef0  rfDrvTblPtr                                                               
    20004ef4  eccDrvTblPtr                                                              
    20004ef8  cryptoDrvTblPtr                                                           
    20004efc  trngDrvTblPtr                                                             
    20004f00  activeConns                                                               
    20004f04  SysBootMsg                                                                
    20004f08  sclkSrc                                                                   
    20004f0c  buildInfo                                                                 
    20004f10  advInfo                                                                   
    20004f14  scanInfo                                                                  
    20004f18  initInfo                                                                  
    20004f1c  dtmInfo                                                                   
    20004f20  taskEndAction                                                             
    20004f24  encParams                                                                 
    20004f28  encHandle                                                                 
    20004f2c  encKey                                                                    
    20004f30  pPairingParams                                                            
    20004f34  pfnResponderCBs                                                           
    20004f38  pfnInitiatorCBs                                                           
    20004f3c  gapLimitedAdvertisingTimeout                                              
    20004f3e  attrLen                                                                   
    20004f40  numHostBufs                                                               
    20004f42  rfCmdHandle                                                               
    20004f44  connInitialMaxTxOctets                                                    
    20004f46  connInitialMaxTxTime                                                      
    20004f48  supportedMaxTxOctets                                                      
    20004f4a  supportedMaxTxTime                                                        
    20004f4c  supportedMaxRxOctets                                                      
    20004f4e  supportedMaxRxTime                                                        
    20004f50  taskEndStatus                                                             
    20004f52  postRfOperations                                                          
    20004f54  rfCfgAdiVal                                                               
    20004f58  gapProfileRole                                                            
    20004f59  gapDeviceAddrMode                                                         
    20004f5a  gapState                                                                  
    20004f5b  terminateAllTaskID                                                        
    20004f5c  terminateReason                                                           
    20004f5d  gapTaskID                                                                 
    20004f5e  gattNumConns                                                              
    20004f5f  gattTaskID                                                                
    20004f60  GATTServApp_TaskID                                                        
    20004f61  maxNumPrepareWrites                                                       
    20004f62  hciPTMenabled                                                             
    20004f63  ctrlToHostEnable                                                          
    20004f64  l2capFlowCtrlMode                                                         
    20004f65  l2capTaskID                                                               
    20004f66  l2capNumChannels                                                          
    20004f67  l2capNumDataPkts                                                          
    20004f68  l2capId                                                                   
    20004f69  linkDBNumConns                                                            
    20004f6a  linkDB_secureConnectionOnlyMode                                           
    20004f6b  maxPduSize                                                                
    20004f6c  rfFeModeBias                                                              
    20004f6d  maxNumTxDataBufs                                                          
    20004f6e  LL_TaskID                                                                 
    20004f6f  llState                                                                   
    20004f70  rssiCorrection                                                            
    20004f71  curTxPowerVal                                                             
    20004f72  maxTxPwrForDTM                                                            
    20004f73  onePktPerEvt                                                              
    20004f74  numComplPkts                                                              
    20004f75  numComplPktsLimit                                                         
    20004f76  numComplPktsFlush                                                         
    20004f77  fastTxRespTime                                                            
    20004f78  slOverride                                                                
    20004f79  rxFifoFlowCtrl                                                            
    20004f7a  numTxDataBufs                                                             
    20004f7b  maxNumConns                                                               
    20004f7c  smTaskID                                                                  
    20004f7d  SM_appExpectingKey                                                        
    20004f80  ECC_DATA$$Base                                                            
    20004f80  eccRom_param_Gx                                                           
    20004f84  eccRom_param_Gy                                                           
    20004f88  eccRom_workzone                                                           
    20004f8c  eccRom_param_p                                                            
    20004f90  eccRom_param_r                                                            
    20004f94  eccRom_param_a                                                            
    20004f98  eccRom_param_b                                                            
    20004f9c  eccRom_windowSize                                                         
    20004fa0  aux64                                                                     
    20004fa8  MOD                                                                       
    20004fac  LEN                                                                       
    20004fb0  inScalar                                                                  
    20004fb4  inPointX                                                                  
    20004fb8  inPointY                                                                  
    20004fbc  outPointX                                                                 
    20004fc0  outPointY                                                                 
    20004fc4  SCAL                                                                      
    20004fc8  EXPX                                                                      
    20004fcc  EXPY                                                                      
    20004fd0  EXPZ                                                                      
    20004fd4  EXPW                                                                      
    20004fd8  ACCX                                                                      
    20004fdc  ACCY                                                                      
    20004fe0  ACCZ                                                                      
    20004fe4  TMP1                                                                      
    20004fe8  TMP2                                                                      
    20004fec  TMP3                                                                      
    20004ff0  TMP4                                                                      
    20004ff4  TMP5                                                                      
    20004ff8  TMP6                                                                      
    20004ffc  MSBMOD                                                                    
    20005000  ECC_DATA$$Limit                                                           
    20005000  __UNUSED_SRAM_end__                                                       
    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   ClockP_getSystemTicks                                                     
    UNDEFED   HwiP_restore                                                              
    UNDEFED   SHT$$INIT_ARRAY$$Base                                                     
    UNDEFED   SHT$$INIT_ARRAY$$Limit                                                    
    UNDEFED   SwiP_restore                                                              
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_Handle__label__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_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_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_query__E                                
    UNDEFED   xdc_runtime_Memory_HeapProxy_Handle__label__S__mangled__                  
    UNDEFED   xdc_runtime_System_Module_GateProxy_Handle__label__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                                          
    
    [2200 symbols]
    

  • That address is on the heap. Can you also post the version of XDCtools you are using? Can you zip up and post your complete project? ROV problems are hard to debug without replicating them.