Quantcast
Viewing all 262198 articles
Browse latest View live

TPS65217: TPS65217C LDO3 Failed but PGOOD signal High

Part Number:TPS65217

We are testing a new lot of production boards that use the TPS65217C to power the AM3358BZCZ100, and on one of the boards, LDO3 has only 0.65 volts output instead of 1.8V (no apparent short on output; all other outputs are OK).  However, the PGOOD pin is high, indicating that the regulator's output is in spec.   What could cause this?


SIMPLELINK-CC2640R2-SDK: OAD - Program will not fit into available memory.

Part Number:SIMPLELINK-CC2640R2-SDK

Hi.

I imported the OAD feature to existing project. When i try to compile, i got error message;

Description	Resource	Path	Location	Type
<a href="processors.wiki.ti.com/.../10099">  program will not fit into available memory.  placement with alignment fails for section ".text" size 0x1450d .  Available memory ranges:	.ccsproject	/minfant_tirtos	line 256, external location: C:\ti\simplelink_cc2640r2_sdk_1_35_00_33\source\ti\blestack\common\cc26xx\ccs\cc26xx_app_oad_onchip.cmd	C/C++ Problem
<a href="processors.wiki.ti.com/.../10099">  program will not fit into available memory.  placement with alignment fails for section ".rodata" size 0x9a .  Available memory ranges:	.ccsproject	/minfant_tirtos	line 259, external location: C:\ti\simplelink_cc2640r2_sdk_1_35_00_33\source\ti\blestack\common\cc26xx\ccs\cc26xx_app_oad_onchip.cmd	C/C++ Problem
<a href="processors.wiki.ti.com/.../10099">  program will not fit into available memory.  placement with alignment fails for section ".const" size 0x187c .  Available memory ranges:	.ccsproject	/minfant_tirtos	line 257, external location: C:\ti\simplelink_cc2640r2_sdk_1_35_00_33\source\ti\blestack\common\cc26xx\ccs\cc26xx_app_oad_onchip.cmd	C/C++ Problem
<a href="processors.wiki.ti.com/.../10099">  program will not fit into available memory.  placement with alignment fails for section ".cinit" size 0x359 .  Available memory ranges:	.ccsproject	/minfant_tirtos	line 260, external location: C:\ti\simplelink_cc2640r2_sdk_1_35_00_33\source\ti\blestack\common\cc26xx\ccs\cc26xx_app_oad_onchip.cmd	C/C++ Problem

"C:/ti/simplelink_cc2640r2_sdk_1_35_00_33/source/ti/blestack/common/cc26xx/ccs/cc26xx_app_oad_onchip.cmd", line 256: error #10099-D: program will not fit into available memory.  placement with alignment fails for section ".text" size 0x1450d .  Available memory ranges:
   FLASH        size: 0xfff0       unused: 0x0          max hole: 0x0       
"C:/ti/simplelink_cc2640r2_sdk_1_35_00_33/source/ti/blestack/common/cc26xx/ccs/cc26xx_app_oad_onchip.cmd", line 257: error #10099-D: program will not fit into available memory.  placement with alignment fails for section ".const" size 0x187c .  Available memory ranges:
   FLASH        size: 0xfff0       unused: 0x0          max hole: 0x0       
"C:/ti/simplelink_cc2640r2_sdk_1_35_00_33/source/ti/blestack/common/cc26xx/ccs/cc26xx_app_oad_onchip.cmd", line 259: error #10099-D: program will not fit into available memory.  placement with alignment fails for section ".rodata" size 0x9a .  Available memory ranges:
   FLASH        size: 0xfff0       unused: 0x0          max hole: 0x0       
"C:/ti/simplelink_cc2640r2_sdk_1_35_00_33/source/ti/blestack/common/cc26xx/ccs/cc26xx_app_oad_onchip.cmd", line 260: error #10099-D: program will not fit into available memory.  placement with alignment fails for section ".cinit" size 0x359 .  Available memory ranges:
   FLASH        size: 0xfff0       unused: 0x0          max hole: 0x0    

It would be great to share some tips about how to decrease my application size.

Here is my cc26xx_app_oad_onchip.cmd file

 

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

 @file  cc26xx_app_oad_onchip.cmd

 @brief CC2650F128 linker configuration file for TI-RTOS with Code Composer
        Studio.  For use with OAD on chip applications (Image A or B).

        Imported Symbols
        Note: Linker defines are located in the CCS IDE project by placing them
        in
        Properties->Build->Linker->Advanced Options->Command File Preprocessing.

        CACHE_AS_RAM:       Disable system cache to be used as GPRAM for
                            additional volatile memory storage.
        CCxxxxROM:          Device Name (e.g. CC2650). In order to define this
                            symbol, the tool chain requires that it be set to
                            a specific value, but in fact, the actual value does
                            not matter as it is not used in the linker control
                            file. The only way this symbol is used is based on
                            whether it is defined or not, not its actual value.
                            There are other linker symbols that do specifically
                            set their value to 1 to indicate R1, and 2 to
                            indicate R2, and these values are checked and do make
                            a difference. However, it would appear confusing if
                            the device name's value did not correspond to the
                            value set in other linker symbols. In order to avoid
                            this confusion, when the symbol is defined, it should
                            be set to the value of the device's ROM that it
                            corresponds so as to look and feel consistent. Please
                            note that a device name symbol should always be
                            defined to avoid side effects from default values
                            that may not be correct for the device being used.
        IMAGE_A:            Fixed Image A build.  When not present, it is
                            assumed to be an Image B build.
        ICALL_RAM0_START:   RAM start of BLE stack.
        ICALL_STACK0_START: Flash start of BLE stack.

 Group: CMCU, SCS
 Target Device: CC2640R2

 ******************************************************************************
 
 Copyright (c) 2013-2017, Texas Instruments Incorporated
 All rights reserved.

 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:

 *  Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.

 *  Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.

 *  Neither the name of Texas Instruments Incorporated nor the names of
    its contributors may be used to endorse or promote products derived
    from this software without specific prior written permission.

 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
 OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
 EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

 ******************************************************************************
 Release Name: simplelink_cc2640r2_sdk_1_30_00_25
 Release Date: 2017-03-02 20:08:35
 *****************************************************************************/

/*******************************************************************************
 * CCS Linker configuration
 */

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

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

/*******************************************************************************
 * 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

#ifdef CC26X0ROM
  #define PAGE_SIZE              0x1000
#endif /* CC26X0ROM */

#ifdef CC26X0ROM
  #define PAGE_MASK              0xFFFFF000
#endif /* CC26X0ROM */

/* OAD Image Header is 16 bytes */
#define FLASH_OAD_IMG_HDR_SIZE   0x00000010

/* OAD does not support same page word aligned images. */
#ifdef ICALL_STACK0_START
#define ADJ_ICALL_STACK0_START   (ICALL_STACK0_START & PAGE_MASK)
#endif /* ICALL_STACK0_START */

/*
 * Image A links in RTOS in ROM symbols to reduce this image's length.
 * Image A is a fixed image and its ending address is the lowest page aligned
 * address in which it can link.
 * Image B begins on the next highest adjacent page.
 * The first 16 bytes of Image B and the header which is used to store OAD meta
 * information and BIM assumes this information is stored here.  Image B follows
 * its header on the adjacent flash word.
 */
/*#define FLASH_IMG_A_START        FLASH_START*/
#define FLASH_IMG_A_START        ((FLASH_START) + (FLASH_OAD_IMG_HDR_SIZE))
#define FLASH_IMG_A_END          (FLASH_START + (PAGE_SIZE * 7))
#define FLASH_IMG_A_SIZE         ((FLASH_IMG_A_END) - (FLASH_IMG_A_START))
#define FLASH_IMG_B_HDR_START    FLASH_IMG_A_END
#define FLASH_IMG_B_START        ((FLASH_IMG_B_HDR_START) + (FLASH_OAD_IMG_HDR_SIZE))

/*
 * When the Stack image is not present, Image B assume it contains all of the
 * remaining Flash pages above the contiguous portion of Image A's highest page
 * with the exception of the last 2 pages.  This assumes the application wishes
 * to retain a 1 page SNV storage area on the second to last page.
 */
#ifdef ICALL_STACK0_START
#define FLASH_IMG_B_END          ADJ_ICALL_STACK0_START
#else
#define FLASH_IMG_B_END          (FLASH_START + (FLASH_SIZE - (PAGE_SIZE*2))
#endif /* ICALL_STACK0_START */

#define FLASH_IMG_B_SIZE         (FLASH_IMG_B_END - FLASH_IMG_B_START)

/*******************************************************************************
 * 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 */

/*******************************************************************************
 * 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.
   *
   * IMAGE_A definition is defined at
   * Properties->ARM Linker->Advanced Options->Command File Preprocessing.
   */

  /* Flash */
  #ifdef IMAGE_A
      /* Image A is fixed, it does not matter where the header is linked. */
      #define IMG_HDR FLASH_IMG_A_START
      FLASH (RX) : origin = FLASH_IMG_A_START, length = FLASH_IMG_A_SIZE
  #else /* IMAGE B */
      FLASH (RX) : origin = FLASH_IMG_B_START, length = FLASH_IMG_B_SIZE
  #endif /* IMAGE_A */

  /* RAM */
  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
  .text           :   >> FLASH
  .const          :   > FLASH
  .constdata      :   > FLASH
  .rodata         :   > FLASH
  .cinit          :   > FLASH
  .pinit          :   > FLASH
  .init_array     :   > FLASH
  .emb_text       :   > FLASH

	GROUP > SRAM
	{
    .data
    #ifndef CACHE_AS_RAM
    .bss
    #endif /* CACHE_AS_RAM */
    .vtable
    .vtable_ram
    vtable_ram
	  .sysmem
    .nonretenvar
  } LOAD_END(heapStart)

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

  #ifdef CACHE_AS_RAM
  .bss            :   > GPRAM
  #endif /* CACHE_AS_RAM */
}

Here is my build_config.opt

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

 @file  build_config.opt

 @brief This file contains the Bluetooth Low Energy (BLE) build config options.

 Group: CMCU, SCS
 Target Device: CC2640R2

 ******************************************************************************
 
 Copyright (c) 2011-2017, Texas Instruments Incorporated
 All rights reserved.

 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:

 *  Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.

 *  Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.

 *  Neither the name of Texas Instruments Incorporated nor the names of
    its contributors may be used to endorse or promote products derived
    from this software without specific prior written permission.

 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
 OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
 EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

 ******************************************************************************
 Release Name: simplelink_cc2640r2_sdk_1_30_00_25
 Release Date: 2017-03-02 20:08:31
 *****************************************************************************/

/*
    The following is a list of all possible build defines and corresponding options
    that can be set for each define:

    GATT_DB_OFF_CHIP        - Indicates that the GATT database is maintained off the chip on the
                              Application Processor (AP).

    GAP_BOND_MGR            - Used to include the Bond Manager

    HOST_CONFIG             (BLE Host Build Configurations) Possible Options:
        PERIPHERAL_CFG      - Used to include the GAP Peripheral Role support
        CENTRAL_CFG         - Used to include the GAP Central Role support
        BROADCASTER_CFG     - Used to include the GAP Broadcaster Role support
        OBSERVER_CFG        - Used to include the GAP Observer Role support

    BLE_V41_FEATURES        Configure the stack to use features from the BLE 4.1 Specification
        L2CAP_COC_CFG       - Enable L2CAP Connection Oriented Channels
        V41_CTRL_CFG        - Enable Ping, Slave Feature Exchange, Connection Parameter Request, and
                              Master Slave connection roles within the Controller (always enabled)

    BLE_V42_FEATURES        Configure the stack to use features from the BLE 4.2 Specification
        EXT_DATA_LEN_CFG    - Enable the Extended Data Length Feature in the Controller (always enabled)
        SECURE_CONNS_CFG    - Enable Secure Connections Pairing Procedure
        PRIVACY_1_2_CFG     - Enable Enhanced Privacy (always enabled)

    HCI_TL_FULL             - All supported HCI commands are available via the Tranport Layer's NPI.
                            - Intended for NP solution.
    HCI_TL_PTM              - Only those HCI commands needed for Production Test Mode are available
                              via the Transport Layer's NPI
                            - Intended for SOC solutions where, during production, accesss is temporarily
                              needed (e.g. for PHY testing using Direct Test Mode, etc.).
    HCI_TL_NONE             - No supported HCI commands are available via the Transport Layer's NPI.
                            - Intended for SOC solutions.

    Below is general information for using and/or changing this configuration option file:

    Combo Roles:        Combo roles can be set by defining multiple roles for HOST_CONFIG. The possible
                        combo roles and HOST_CONFIG defines are:
                        Peripheral + Observer  :    PERIPHERAL_CFG+OBSERVER_CFG
                        Central + Broadcaster  :    CENTRAL_CFG+BROADCASTER_CFG
                        Peripheral + Central   :    PERIPHERAL_CFG+CENTRAL_CFG

    lib_search tool:    There is a pre build action for every stack project that runs a tool
                        lib_search.exe. This tool aims to automatically import the correct library
                        files into your project based on the defines in this file.

                        The locations of all library files and their correspond options are
                        <install dir>/ble_core/ble_[host,ctrl]_lib/<device> for stack libs
                        and at <install dir>/ble_core/hci_tl_lib/<device> for
                        HCI Transport Layer libs

                        If an library is found that was built with matching options, it will be
                        copied into the project local directory at <App ewp dir>/../../lib/ and
                        subsequently linked with the stack.

                        If you experience a build error with lib_search.exe, expand the build error
                        message by clicking Tools->Options->Messages->Show build messages:->All.
                        The error messages printed out by the lib_search tool should now appear in
                        your Build Message window.

*/

/* BLE Host Build Configurations */
-DHOST_CONFIG=PERIPHERAL_CFG
/* -DHOST_CONFIG=CENTRAL_CFG */
/* -DHOST_CONFIG=BROADCASTER_CFG */
/* -DHOST_CONFIG=OBSERVER_CFG */
/* -DHOST_CONFIG=PERIPHERAL_CFG+OBSERVER_CFG */
/* -DHOST_CONFIG=CENTRAL_CFG+BROADCASTER_CFG */
/* -DHOST_CONFIG=PERIPHERAL_CFG+CENTRAL_CFG */

/* GATT Database being off chip */
/* -DGATT_DB_OFF_CHIP */

/* Include GAP Bond Manager */
/*-DGAP_BOND_MGR*/

/* BLE v4.1 Features */
/* -DV41_FEATURES=L2CAP_COC_CFG */

/* BLE v4.2 Features */
/* Note: For advanced users who choose to explicitly build their BLE    */
/* Stack without ROM the following upper limit on RAM usage must be     */
/* observed when using the Secure Connections Feature:                  */
/* R1: 0x20004F2C                                                       */
/* R2: 0x20004F80                                                       */
/* When using linker command files provided by this SDK, the linker     */
/* symbol ENCRYPTION_ROM=1 or ENCRYPTION_ROM=2 may be defined to set    */
/* this upper limit for R1 and R2 devices, respectively.                */
-DV42_FEATURES=SECURE_CONNS_CFG
/*-DV42_FEATURES=EXT_DATA_LEN_CFG*/

/* Include Transport Layer (Full or PTM) */
-DHCI_TL_NONE
/* -DHCI_TL_PTM */
/* -DHCI_TL_FULL */

/* BLE Vendor Specific Features */
/* -DEXTRA_ADV_FEAT=SCAN_REQ_RPT_CFG */
/* -DEXTRA_SCAN_FEAT=SCAN_EVT_NOTICE_CFG */


Here is my memory map file

******************************************************************************
                  TI ARM Linker PC v16.9.1                     
******************************************************************************
>> Linked Thu Aug 10 17:11:31 2017

OUTPUT FILE NAME:   <minfant_tirtos.out>
ENTRY POINT SYMBOL: "ResetISR"  address: 00016655


MEMORY CONFIGURATION

         name            origin    length      used     unused   attr    fill
----------------------  --------  ---------  --------  --------  ----  --------
  FLASH                 00007010   0000fff0  0000fff0  00000000  R  X
  $BOUND$0x1e000        0001e000   00001000  00001000  00000000  R IX
  SRAM                  20000000   00003ff0  00002d99  00001257  RW X


SEGMENT ALLOCATION MAP

run origin  load origin   length   init length attrs members
----------  ----------- ---------- ----------- ----- -------
00000000    00000000    0000009a   0000009a    r--
  00000000    00000000    0000009a   0000009a    r-- .rodata
00000000    00000000    00000360   00000360    r--
  00000000    00000000    00000360   00000360    r-- .cinit
00000000    00000000    0000187c   0000187c    r--
  00000000    00000000    0000187c   0000187c    r-- .const
00000000    00000000    00003fa4   00003fa4    r-x
  00000000    00000000    00003fa4   00003fa4    r-x .text.1
00007010    00007010    0000fff0   0000fff0    r-x
  00007010    00007010    0000003c   0000003c    r-- .resetVecs
  0000704c    0000704c    0000ffb4   0000ffb4    r-x .text.2
0001e000    0001e000    00001000   00001000    r--
  0001e000    0001e000    00001000   00001000    r-- .TI.bound:NV_FLASH
200000c8    200000c8    00000058   00000058    r--
  200000c8    200000c8    00000058   00000058    r-- .ccfg
20000430    20000430    00000010   00000000    rw-
  20000430    20000430    00000010   00000000    rw- .TI.bound:dmaSpi0RxControlTableEntry
20000440    20000440    00000010   00000000    rw-
  20000440    20000440    00000010   00000000    rw- .TI.bound:dmaSpi0TxControlTableEntry
20000500    20000500    00000010   00000000    rw-
  20000500    20000500    00000010   00000000    rw- .TI.bound:dmaSpi1RxControlTableEntry
20000510    20000510    00002a49   00000000    rw-
  20000510    20000510    00000010   00000000    rw- .TI.bound:dmaSpi1TxControlTableEntry
  20000520    20000520    00000e92   00000000    rw- .data
  200013b8    200013b8    00001ba1   00000000    rw- .bss
20003df0    20003df0    00000200   00000000    rw-
  20003df0    20003df0    00000200   00000000    rw- .stack


SECTION ALLOCATION MAP

 output                                  attributes/
section   page    origin      length       input sections
--------  ----  ----------  ----------   ----------------
.bootVecs 
*          0    00000000    00000008     DSECT
                  00000000    00000008     boot.aem3 : boot.oem3 (.bootVecs)

.const     0    00000000    0000187c     FAILED TO ALLOCATE
.rodata    0    00000000    0000009a     FAILED TO ALLOCATE
.cinit     0    00000000    00000360     FAILED TO ALLOCATE
.resetVecs 
*          0    00007010    0000003c     
                  00007010    0000003c     app_ble_pem3.oem3 (.resetVecs)

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

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

xdc.noload 
*          0    00000000    00000000     COPY SECTION

.init_array 
*          0    00007010    00000000     UNINITIALIZED

.text.1    0    00000000    00003fa4     FAILED TO ALLOCATE
.text.2    0    0000704c    0000ffb4     
                  0000704c    0000059c     cc2640_ll_pxxx_sc.a : ll.o (.text)
                  000075e8    00000578     peripheral.obj (.text:GAPRole_SetParameter)
                  00007b60    00000548     peripheral.obj (.text:gapRole_processGAPMsg)
                  000080a8    00000534     app_ble_peripheral.obj (.text:SimpleBLEPeripheral_taskFxn)
                  000085dc    000004a0     RFCC26XX_singleMode.obj (.text:fsmActiveState)
                  00008a7c    000003b0     app_ble_peripheral.obj (.text:SimpleBLEPeripheral_init)
                  00008e2c    00000314     drivers_cc26x0r2.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_auxISR)
                  00009140    000002b8     cc2640_ll_pxxx_sc.a : ll_scheduler.o (.text)
                  000093f8    000002b4                         : ll.o (.text)
                  000096ac    0000028c     RFCC26XX_singleMode.obj (.text:RF_postCmd)
                  00009938    00000274     peripheral.obj (.text:GAPRole_GetParameter)
                  00009bac    00000264     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_SetParameter)
                  00009e10    0000024c     drivers_cc26x0r2.aem3 : CryptoCC26XX.oem3 (.text:cryptoTransactionExecute)
                  0000a05c    00000238     RFCC26XX_singleMode.obj (.text:abortCmd)
                  0000a294    00000228     cc26xx_profiles_pxxx_sc.a : gapgattserver.o (.text)
                  0000a4bc    0000021c     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
                  0000a6d8    00000218     app_ble_peripheral.obj (.text:app_ble_begin_adv)
                  0000a8f0    0000020c     driverlib.lib : sys_ctrl.obj (.text:NOROM_SysCtrlSetRechargeBeforePowerDown)
                  0000aafc    0000020c     cc2640_ll_pxxx_sc.a : ll_isr.o (.text)
                  0000ad08    0000020c     sfcp.obj (.text:sfcp_call)
                  0000af14    00000204     cc26xx_sm_pxxx_sc.a : sm_pairing.o (.text)
                  0000b118    000001fc     RFCC26XX_singleMode.obj (.text:fsmSetupState)
                  0000b314    000001f8     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_ProcessGAPMsg)
                  0000b50c    000001f8     cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
                  0000b704    000001f4     devinfoservice.obj (.text:DevInfo_SetParameter)
                  0000b8f8    000001f4     rtsv7M3_T_le_eabi.lib : ull_div_t2.obj (.text)
                  0000baec    000001f0     ECCROMCC26XX.obj (.text:ECCROMCC26XX_genDHKey)
                  0000bcdc    000001dc     drivers_cc26x0r2.aem3 : SPICC26XXDMA.oem3 (.text:SPICC26XXDMA_transfer)
                  0000beb8    000001d0     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrAddBond)
                  0000c088    000001c8                                                    : osal.obj (.text:osal_run_system)
                  0000c250    000001c0     cc2640_ll_pxxx_sc.a : ll_common.o (.text)
                  0000c410    000001c0                         : ll_isr.o (.text)
                  0000c5d0    000001bc     app_ble_peripheral.obj (.text:SimpleBLEPeripheral_processStateChangeEvt)
                  0000c78c    000001b4     drivers_cc26x0r2.aem3 : PINCC26XX.oem3 (.text:PIN_init)
                  0000c940    000001a0     cc2640_ll_pxxx_sc.a : ll_isr.o (.text)
                  0000cae0    000001a0     devinfoservice.obj (.text:devInfo_ReadAttrCB)
                  0000cc80    00000198     drivers_cc26x0r2.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_doCalibrate)
                  0000ce18    0000018c     ECCROMCC26XX.obj (.text:ECCROMCC26XX_genKeys)
                  0000cfa4    00000184     RFCC26XX_singleMode.obj (.text:fsmPowerUpState)
                  0000d128    00000180     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrAuthenticate)
                  0000d2a8    00000170     cc2640_ll_pxxx_sc.a : ll.o (.text)
                  0000d418    0000016c     peripheral.obj (.text:gapRole_taskFxn)
                  0000d584    00000164     RFCC26XX_singleMode.obj (.text:rf_init)
                  0000d6e8    00000160     RFCC26XX_singleMode.obj (.text:hwiFxnCpe0Active)
                  0000d848    0000015c     RFCC26XX_singleMode.obj (.text:radioOpDoneCb)
                  0000d9a4    0000015c     borda_gatt_profile.obj (.text:simpleProfile_ReadAttrCB)
                  0000db00    00000158     drivers_cc26x0r2.aem3 : SPICC26XXDMA.oem3 (.text:SPICC26XXDMA_initIO)
                  0000dc58    00000150     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_ProcessEvent)
                  0000dda8    0000014c     icall.obj (.text:ICall_heapMalloc)
                  0000def4    00000148     drivers_cc26x0r2.aem3 : SPICC26XXDMA.oem3 (.text:SPICC26XXDMA_open)
                  0000e03c    00000144     borda_gatt_profile.obj (.text:simpleProfile_WriteAttrCB)
                  0000e180    00000140     icall.obj (.text:ICall_waitMatch)
                  0000e2c0    00000134     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:Power_init)
                  0000e3f4    00000130     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrEraseBonding)
                  0000e524    0000012c                                                    : osal_snv_wrapper.obj (.text:compactPage)
                  0000e650    00000128     app_action.obj (.text:app_action_excite)
                  0000e778    00000128     cc2640_ll_pxxx_sc.a : ll_scheduler.o (.text)
                  0000e8a0    00000124     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:Power_shutdown)
                  0000e9c4    00000108     simple_peripheral_cc2640r2lp_stack_library.lib : osal_snv_wrapper.obj (.text:NVOCOP_writeItem)
                  0000eacc    00000108     RFCC26XX_singleMode.obj (.text:RF_open)
                  0000ebd4    00000104     peripheral.obj (.text:gapRole_init)
                  0000ecd8    00000100     scif_framework.obj (.text:scifInit)
                  0000edd8    000000f8     drivers_cc26x0r2.aem3 : CryptoCC26XX.oem3 (.text:CryptoCC26XX_open)
                  0000eed0    000000f8     sysbios.aem3 : BIOS.obj (.text:xdc_runtime_Startup_startMods__I)
                  0000efc8    000000f4     simple_peripheral_cc2640r2lp_stack_library.lib : osal_timers.obj (.text:osalTimerUpdate)
                  0000f0bc    000000f0     as393x.obj (.text:as393x_init)
                  0000f1ac    000000f0     as393x.obj (.text:as393x_tune_ant)
                  0000f29c    000000ec     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_LinkEst)
                  0000f388    000000e8     sysbios.aem3 : BIOS.obj (.text:ti_sysbios_knl_Event_pend__E)
                  0000f470    000000e0     drivers_cc26x0r2.aem3 : SPICC26XXDMA.oem3 (.text:SPICC26XXDMA_transferCancel)
                  0000f550    000000e0     as393x.obj (.text:as393x_apply_config)
                  0000f630    000000e0     simple_peripheral_cc2640r2lp_stack_library.lib : osal.obj (.text:osal_set_event)
                  0000f710    000000e0     scif_framework.obj (.text:scifCtrlTasksNbl)
                  0000f7f0    000000dc     drivers_cc26x0r2.aem3 : PINCC26XX.oem3 (.text:PINCC26XX_setIoCfg)
                  0000f8cc    000000d4     icall.obj (.text:ICall_enrollService)
                  0000f9a0    000000d4     dpl_cc26x0r2.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
                  0000fa74    000000d0     RFCC26XX_singleMode.obj (.text:swiFxnHw)
                  0000fb44    000000cc     app_lf.obj (.text:app_lf_init)
                  0000fc10    000000cc     sysbios.aem3 : BIOS.obj (.text:ti_sysbios_knl_Semaphore_pend__E)
                  0000fcdc    000000c8     app_lf.obj (.text:app_lf_filter)
                  0000fda4    000000c8     as393x.obj (.text:as393x_tune_ants)
                  0000fe6c    000000c8     peripheral.obj (.text:gapRole_startConnUpdate)
                  0000ff34    000000c8     sysbios.aem3 : m3_Hwi_asm.obj (.text:ti_sysbios_family_arm_m3_Hwi_dispatch__I)
                  0000fffc    000000c4     app_ble_peripheral.obj (.text:app_ble_update_data)
                  000100c0    000000c4     simple_peripheral_cc2640r2lp_stack_library.lib : ble_user_config.obj (.text:setBleUserConfig)
                  00010184    000000c4     sysbios.aem3 : BIOS.obj (.text:ti_sysbios_knl_Task_Instance_init__E)
                  00010248    000000c0     icall.obj (.text:ICall_heapInit)
                  00010308    000000c0     icall.obj (.text:ICall_setTimer)
                  000103c8    000000c0     borda_gatt_profile.obj (.text:SimpleProfile_SetParameter)
                  00010488    000000c0     app_match.obj (.text:app_match_set_data)
                  00010548    000000c0     app_match.obj (.text:ble_get_data)
                  00010608    000000bc     drivers_cc26x0r2.aem3 : GPTimerCC26XX.oem3 (.text:GPTimerCC26XX_open)
                  000106c4    000000bc                           : PowerCC26XX.oem3 (.text:Power_releaseDependency)
                  00010780    000000bc     crc8.obj (.text:crc8_calculate)
                  0001083c    000000b4     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:Power_setDependency)
                  000108f0    000000b0     icall.obj (.text:ICall_registerApp)
                  000109a0    000000b0     TRNGCC26XX.obj (.text:TRNGCC26XX_getNumber)
                  00010a50    000000ac     driverlib.lib : setup.obj (.text:NOROM_SetupTrimDevice)
                  00010afc    000000ac     app_ble_peripheral.obj (.text:app_alert_init)
                  00010ba8    000000a8     icall.obj (.text:ICall_send)
                  00010c50    000000a8     app_ble_peripheral.obj (.text:app_ble_add_status)
                  00010cf8    000000a8     app_match.obj (.text:app_match_begin)
                  00010da0    000000a6     drivers_cc26x0r2.aem3 : SPICC26XXDMA.oem3 (.text:SPICC26XXDMA_hwiFxn)
                  00010e46    00000002     simple_peripheral_cc2640r2lp_stack_library.lib : common_rom_init.obj (.text:CommonROM_Init)
                  00010e48    000000a4                                                    : gapbondmgr.obj (.text:GAPBondMgr_ResolveAddr)
                  00010eec    000000a4     icall.obj (.text:ICall_newTask)
                  00010f90    000000a4     app_match.obj (.text:app_match_init)
                  00011034    000000a4     simple_peripheral_cc2640r2lp_stack_library.lib : osal_cbtimer.obj (.text:cbTimerSetup)
                  000110d8    000000a4     cc2640_ll_pxxx_sc.a : ll_scheduler.o (.text)
                  0001117c    000000a4     gpioc.obj (.text:pin_int_edge)
                  00011220    000000a0     drivers_cc26x0r2.aem3 : GPTimerCC26XX.oem3 (.text:GPTimerCC26XX_close)
                  000112c0    000000a0     RFCC26XX_singleMode.obj (.text:RF_pendCmd)
                  00011360    000000a0     app_action.obj (.text:app_action_timer_cb)
                  00011400    000000a0     auto_init.aem3 : auto_init.oem3 (.text)
                  000114a0    000000a0     RFCC26XX_singleMode.obj (.text:decActiveClientCnt)
                  00011540    000000a0     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrUpdateCharCfg)
                  000115e0    000000a0     icall.obj (.text:icall_directAPI)
                  00011680    0000009c     icall.obj (.text:ICall_createRemoteTasks)
                  0001171c    0000009c     as393x.obj (.text:as393x_read_regs)
                  000117b8    0000009c     rtsv7M3_T_le_eabi.lib : memcpy_t2.obj (.text)
                  00011854    00000098     icall_cc2650.obj (.text:ICallPlatform_pwrUpdActivityCounter)
                  000118ec    00000098     drivers_cc26x0r2.aem3 : PINCC26XX.oem3 (.text:PIN_open)
                  00011984    00000098     RFCC26XX_singleMode.obj (.text:RF_getCurrentTime)
                  00011a1c    00000098     app_ble_peripheral.obj (.text:SimpleBLEPeripheral_processStackMsg)
                  00011ab4    00000098     app_match.obj (.text:app_match_callback)
                  00011b4c    00000098     as393x.obj (.text:as393x_write_regs)
                  00011be4    00000098     sysbios.aem3 : BIOS.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
                  00011c7c    00000096     gattservapp_util.obj (.text:GATTServApp_ProcessCCCWriteReq)
                  00011d12    00000002     driverlib.lib : rfc.obj (.text:NOROM_RFCAdi3VcoLdoVoltageMode)
                  00011d14    00000094     app_button.obj (.text:app_button_pin_cb)
                  00011da8    00000094     simple_peripheral_cc2640r2lp_stack_library.lib : osal_cbtimer.obj (.text:osal_CbTimerProcessEvent)
                  00011e3c    00000090     main.obj (.text:AssertHandler)
                  00011ecc    00000090     driverlib.lib : crypto.obj (.text:NOROM_CRYPTOAesLoadKey)
                  00011f5c    00000090     RFCC26XX_singleMode.obj (.text:RF_getInfo)
                  00011fec    00000090     drivers_cc26x0r2.aem3 : SPICC26XXDMA.oem3 (.text:SPICC26XXDMA_control)
                  0001207c    00000090     as393x.obj (.text:as393x_cl_dat_cb)
                  0001210c    00000090     cc26xx_hci_tl_none.a : hci_tl.o (.text)
                  0001219c    00000090     crc16.obj (.text:crc16_calculate)
                  0001222c    00000090     as393x.obj (.text:lf_rx_begin_receive)
                  000122bc    0000008c     icall.obj (.text:ICall_getEntityId)
                  00012348    0000008c     driverlib.lib : setup.obj (.text:TrimAfterColdResetWakeupFromShutDown)
                  000123d4    0000008c     app_ble_peripheral.obj (.text:app_ble_set_config)
                  00012460    0000008c     app_ble_peripheral.obj (.text:app_ble_set_mac)
                  000124ec    0000008c     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
                  00012578    0000008c     scif_framework.obj (.text:scifInitIo)
                  00012604    0000008c     sysbios.aem3 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_Instance_init__E)
                  00012690    00000088     cc2640_ll_pxxx_sc.a : ll_common.o (.text)
                  00012718    00000088     cc26xx_profiles_pxxx_sc.a : gapgattserver.o (.text)
                  000127a0    00000088     simple_peripheral_cc2640r2lp_stack_library.lib : osal_snv_wrapper.obj (.text:writeWord)
                  00012828    00000084     icall.obj (.text:ICall_wait)
                  000128ac    00000084     app_button.obj (.text:app_button_event)
                  00012930    00000084     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                  000129b4    00000080     RFCC26XX_singleMode.obj (.text:fsmXOSCState)
                  00012a34    00000080     simple_peripheral_cc2640r2lp_stack_library.lib : osal_icall_ble.obj (.text:osalInitTasks)
                  00012ab4    00000080     spi.obj (.text:spi_read)
                  00012b34    00000080     spi.obj (.text:spi_write)
                  00012bb4    00000080     sysbios.aem3 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_initNVIC__E)
                  00012c34    00000080                  : BIOS.obj (.text:ti_sysbios_knl_Task_postInit__I)
                  00012cb4    0000007c     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_syncResolvingList)
                  00012d30    0000007c     app_ble_peripheral.obj (.text:SimpleBLEPeripheral_sendAttRsp)
                  00012dac    0000007c     app_timespan.obj (.text:app_timespan_fill)
                  00012e28    0000007c     RFCC26XX_singleMode.obj (.text:applyRfCorePatch)
                  00012ea4    0000007c     cc26xx_gap_pxxx_sc.a : gap_linkmgr.o (.text)
                  00012f20    00000008     ble_r2.symbols (.tramp.linkDB_Role.1)
                  00012f28    00000008     ble_r2.symbols (.tramp.linkDB_Remove.1)
                  00012f30    00000008     ble_r2.symbols (.tramp.disconnectNext.1)
                  00012f38    00000008     ble_r2.symbols (.tramp.sendTerminateEvent.1)
                  00012f40    00000008     ble_r2.symbols (.tramp.gapFreeAuthLink.1)
                  00012f48    0000007c     main.obj (.text:main)
                  00012fc4    0000007c     spi.obj (.text:spi_open)
                  00013040    0000007a     drivers_cc26x0r2.aem3 : CryptoCC26XX.oem3 (.text:CryptoCC26XX_allocateKey)
                  000130ba    0000007a     rtsv7M3_T_le_eabi.lib : memset_t2.obj (.text)
                  00013134    00000078     ECCROMCC26XX.obj (.text:ECCROMCC26XX_Params_init)
                  000131ac    00000078     as393x.obj (.text:as393x_configure_pins)
                  00013224    00000078     cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
                  0001329c    00000008     ble_r2.symbols (.tramp.gattServApp_FindWriteAttrCB.1)
                  000132a4    00000078     peripheral.obj (.text:gapRole_processStackMsg)
                  0001331c    00000078     sysbios.aem3 : BIOS.obj (.text:ti_sysbios_knl_Clock_walkQueueDynamic__E)
                  00013394    00000076     app_lf.obj (.text:app_lf_check_data)
                  0001340a    00000002     driverlib.lib : rfc.obj (.text:NOROM_RFCRTrim)
                  0001340c    00000074     gattservapp_util.obj (.text:GATTServApp_InitCharCfg)
                  00013480    00000074     borda_gatt_profile.obj (.text:SimpleProfile_GetParameter)
                  000134f4    00000074     cc2640_ll_pxxx_sc.a : ll_common.o (.text)
                  00013568    00000008     ble_r2.symbols (.tramp.llVerifyConnParamReqParams.1)
                  00013570    00000074     RFCC26XX_singleMode.obj (.text:hwiFxnHw)
                  000135e4    00000074     simple_peripheral_cc2640r2lp_stack_library.lib : osal.obj (.text:osal_msg_enqueue_push)
                  00013658    00000074                                                    : osal.obj (.text:osal_msg_send)
                  000136cc    00000074     sysbios.aem3 : BIOS.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_start__E)
                  00013740    00000070     RFCC26XX_singleMode.obj (.text:RF_wakeupNotifyFxn)
                  000137b0    00000070     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrBondReq)
                  00013820    00000008     ble_r2.symbols (.tramp.GAP_Bond.1)
                  00013828    00000070     simple_peripheral_cc2640r2lp_stack_library.lib : osal.obj (.text:osal_msg_receive)
                  00013898    00000070     sysbios.aem3 : BIOS.obj (.text:ti_sysbios_knl_Event_post__E)
                  00013908    0000006e     app_lf.obj (.text:app_lf_get_location_id)
                  00013976    0000006e     sysbios.aem3 : BIOS.obj (.text:xdc_runtime_Core_createObject__I)
                  000139e4    0000006c     icall.obj (.text:ICall_init)
                  00013a50    0000006c     driverlib.lib : osc.obj (.text:NOROM_OSCHF_AttemptToSwitchToXosc)
                  00013abc    0000006c     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
                  00013b28    0000006c                           : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
                  00013b94    0000006c                           : UDMACC26XX.oem3 (.text:UDMACC26XX_open)
                  00013c00    0000006c     app_info.obj (.text:app_set_tag_id)
                  00013c6c    0000006c     simple_peripheral_cc2640r2lp_stack_library.lib : osal_cbtimer.obj (.text:osal_CbTimerUpdate)
                  00013cd8    0000006c     sysbios.aem3 : BIOS.obj (.text:xdc_runtime_Memory_alloc__E)
                  00013d44    0000006a     RFCC26XX_singleMode.obj (.text:syncCb)
                  00013dae    00000002     simple_peripheral_cc2640r2lp_stack_library.lib : onboard.obj (.text:Onboard_soft_reset)
                  00013db0    00000068     driverlib.lib : sys_ctrl.obj (.text:NOROM_SysCtrl_DCDC_VoltageConditionalControl)
                  00013e18    00000068     oad_reset_service.obj (.text:ResetWriteAttrCB)
                  00013e80    00000068     app_timespan.obj (.text:app_timespan_calculate)
                  00013ee8    00000068     as393x.obj (.text:as393x_send_command)
                  00013f50    00000068     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:configureXOSCHF)
                  00013fb8    00000068     rtsv7M3_T_le_eabi.lib : copy_decompress_lzss.obj (.text:decompress:lzss)
                  00014020    00000068     RFCC26XX_singleMode.obj (.text:getCmd)
                  00014088    00000068     RFCC26XX_singleMode.obj (.text:ratChanFree)
                  000140f0    00000068     sysbios.aem3 : BIOS.obj (.text:ti_sysbios_knl_Clock_startI__E)
                  00014158    00000068                  : BIOS.obj (.text:ti_sysbios_knl_Swi_restoreHwi__E)
                  000141c0    00000068     clocks.obj (.text:timer_open)
                  00014228    00000064     icall.obj (.text:ICall_searchTask)
                  0001428c    00000064     driverlib.lib : sys_ctrl.obj (.text:NOROM_SysCtrlAdjustRechargeAfterPowerDown)
                  000142f0    00000064     drivers_cc26x0r2.aem3 : PINCC26XX.oem3 (.text:PIN_add)
                  00014354    00000064     util.obj (.text:Util_rescheduleClock)
                  000143b8    00000064     cc2640_ll_pxxx_sc.a : ll_scheduler.o (.text)
                  0001441c    00000064     cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
                  00014480    00000064     simple_peripheral_cc2640r2lp_stack_library.lib : osal_snv_wrapper.obj (.text:findItem)
                  000144e4    00000064     clocks.obj (.text:rtca_open)
                  00014548    00000064     sysbios.aem3 : BIOS.obj (.text:ti_sysbios_knl_Semaphore_post__E)
                  000145ac    00000062     RFCC26XX_singleMode.obj (.text:Q_push)
                  0001460e    00000002     simple_peripheral_cc2640r2lp_stack_library.lib : sm_ecc.obj (.text:SM_dhKeyCB)
                  00014610    00000060     ECCROMCC26XX.obj (.text:ECC_initGlobals)
                  00014670    00000060     peripheral.obj (.text:GAPRole_SendUpdateParam)
                  000146d0    00000060     icall.obj (.text:ICall_searchServiceEntity)
                  00014730    00000060     app_ble_peripheral.obj (.text:SimpleBLEPeripheral_processGATTMsg)
                  00014790    00000060     util.obj (.text:Util_constructClock)
                  000147f0    00000060     app_action.obj (.text:app_action_init)
                  00014850    00000060     app_ble_peripheral.obj (.text:app_ble_set_adv_int)
                  000148b0    00000060     app_button.obj (.text:app_button_init)
                  00014910    00000060     simple_peripheral_cc2640r2lp_stack_library.lib : osal_icall_ble.obj (.text:stack_main)
                  00014970    0000005e     RFCC26XX_singleMode.obj (.text:updateImplicitState)
                  000149ce    00000002     simple_peripheral_cc2640r2lp_stack_library.lib : sm_ecc.obj (.text:SM_p256KeyCB)
                  000149d0    0000005c     icall.obj (.text:ICall_msecs2Ticks)
                  00014a2c    0000005c     icall.obj (.text:ICall_primEntityId2ServiceId)
                  00014a88    0000005c     drivers_cc26x0r2.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_RCOSC_clockFunc)
                  00014ae4    0000005c     RFCC26XX_singleMode.obj (.text:RF_runCmd)
                  00014b40    0000005c     app_ble_peripheral.obj (.text:app_ble_conf_changed)
                  00014b9c    0000005c     app_error.obj (.text:app_error_add)
                  00014bf8    0000005c     app_lf.obj (.text:app_lf_filter_location)
                  00014c54    0000005c     app_lf.obj (.text:app_lf_set_config)
                  00014cb0    0000005c     cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
                  00014d0c    00000008     ble_r2.symbols (.tramp.gattServApp_SetNumPrepareWrites.1)
                  00014d14    00000008     ble_r2.symbols (.tramp.GATT_RegisterForReq.1)
                  00014d1c    00000008     ble_r2.symbols (.tramp.linkDB_Register.1)
                  00014d24    0000005c     simple_peripheral_cc2640r2lp_stack_library.lib : osal_cbtimer.obj (.text:osal_CbTimerStop)
                  00014d80    0000005c     sysbios.aem3 : BIOS.obj (.text:ti_sysbios_knl_Task_Module_startup__E)
                  00014ddc    0000005c                  : BIOS.obj (.text:ti_sysbios_knl_Task_startCore__E)
                  00014e38    0000005a     drivers_cc26x0r2.aem3 : SPICC26XXDMA.oem3 (.text:SPICC26XXDMA_close)
                  00014e92    00000002     cc2640_ll_pxxx_sc.a : ll_error_end_causes.o (.text)
                  00014e94    00000058     drivers_cc26x0r2.aem3 : GPTimerCC26XX.oem3 (.text:GPTimerCC26XX_stop)
                  00014eec    00000058     icall.obj (.text:ICall_fetchMsg)
                  00014f44    00000058     drivers_cc26x0r2.aem3 : PINCC26XX.oem3 (.text:PIN_remove)
                  00014f9c    00000058     app_info.obj (.text:app_battery_get_level)
                  00014ff4    00000058     app_match.obj (.text:app_ble_begin_match)
                  0001504c    00000058     as393x.obj (.text:as3933_tune_rco)
                  000150a4    00000058     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrReadBonds)
                  000150fc    00000058                                                    : osal_timers.obj (.text:osal_timer_refTimeUpdate)
                  00015154    00000058     scif_framework.obj (.text:scifReinitIo)
                  000151ac    00000058     scif_framework.obj (.text:scifUninitIo)
                  00015204    00000058     sysbios.aem3 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_postInit__I)
                  0001525c    00000058                  : BIOS.obj (.text:ti_sysbios_knl_Swi_run__I)
                  000152b4    00000054     RFCC26XX_singleMode.obj (.text:RF_getRssi)
                  00015308    00000054     drivers_cc26x0r2.aem3 : SPICC26XXDMA.oem3 (.text:SPICC26XXDMA_initHw)
                  0001535c    00000054     TRNGCC26XX.obj (.text:TRNGCC26XX_isParamValid)
                  000153b0    00000054     app_led.obj (.text:app_led_init)
                  00015404    00000054     app_ble_peripheral.obj (.text:app_run_set_config)
                  00015458    00000054     as393x.obj (.text:lf_rx_get_rssi)
                  000154ac    00000054     simple_peripheral_cc2640r2lp_stack_library.lib : osal_bufmgr.obj (.text:osal_bm_free)
                  00015500    00000054     rtsv7M3_T_le_eabi.lib : exit.obj (.text)
                  00015554    00000054     sysbios.aem3 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_dispatchC__I)
                  000155a8    00000054                  : BIOS.obj (.text:ti_sysbios_knl_Swi_schedule__I)
                  000155fc    00000052     icall.obj (.text:ICall_msgEnqueue)
                  0001564e    00000002     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:emptyClockFunc)
                  00015650    00000050     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_LinkTerm)
                  000156a0    00000050                                                    : gapbondmgr.obj (.text:GAPBondMgr_UpdateCharCfg)
                  000156f0    00000050     icall.obj (.text:ICall_getMaxMSecs)
                  00015740    00000050     drivers_cc26x0r2.aem3 : SPICC26XXDMA.oem3 (.text:SPICC26XXDMA_swiFxn)
                  00015790    00000050     RFCC26XX_singleMode.obj (.text:allocCmd)
                  000157e0    00000050     app_action.obj (.text:app_action_get_action)
                  00015830    00000050     app_button.obj (.text:app_button_fill)
                  00015880    00000050     app_match.obj (.text:app_match_try)
                  000158d0    00000050     as393x.obj (.text:as393x_calib_timer_cb)
                  00015920    00000050     cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
                  00015970    00000008     ble_r2.symbols (.tramp.gattServApp_FindPrepareWriteQ.1)
                  00015978    00000050     gattservapp_util.obj (.text:gattServApp_FindCharCfgItem)
                  000159c8    00000050     sysbios.aem3 : BIOS.obj (.text:ti_sysbios_knl_Swi_Instance_init__E)
                  00015a18    00000050                  : BIOS.obj (.text:ti_sysbios_knl_Swi_runLoop__I)
                  00015a68    00000050                  : BIOS.obj (.text:xdc_runtime_Startup_exec__E)
                  00015ab8    0000004c     drivers_cc26x0r2.aem3 : GPTimerCC26XX.oem3 (.text:GPTimerCC26XX_start)
                  00015b04    0000004c     simple_peripheral_cc2640r2lp_stack_library.lib : npi.obj (.text:NPI_WriteTransport)
                  00015b50    0000004c                                                    : osal_snv_wrapper.obj (.text:NVOCOP_initNV)
                  00015b9c    0000004c                                                    : osal_snv_wrapper.obj (.text:erasePage)
                  00015be8    0000004c     peripheral.obj (.text:gapRole_HandleParamUpdateNoSuccess)
                  00015c34    0000004c     peripheral.obj (.text:gapRole_SetupGAP)
                  00015c80    0000004c     simple_peripheral_cc2640r2lp_stack_library.lib : osal_clock.obj (.text:osalAdjustTimer)
                  00015ccc    0000004c     rtsv7M3_T_le_eabi.lib : cpy_tbl.obj (.text)
                  00015d18    0000004c     sysbios.aem3 : m3_TaskSupport_asm.obj (.text:ti_sysbios_family_arm_m3_TaskSupport_buildTaskStack)
                  00015d64    0000004c                  : BIOS.obj (.text:ti_sysbios_knl_Task_schedule__I)
                  00015db0    0000004c     clocks.obj (.text:timer_count_edge)
                  00015dfc    0000004a     icall.obj (.text:ICall_msgPrepend)
                  00015e46    00000002     simple_peripheral_cc2640r2lp_stack_library.lib : hal_assert.obj (.text:halAssertHandler)
                  00015e48    00000048     peripheral.obj (.text:GAPRole_TerminateConnection)
                  00015e90    00000048     icall.obj (.text:ICall_fetchServiceMsg)
                  00015ed8    00000048     util.obj (.text:Util_restartClock)
                  00015f20    00000048     app_led.obj (.text:app_led_blink)
                  00015f68    00000048     app_lf.obj (.text:app_lf_run)
                  00015fb0    00000048     app_match.obj (.text:app_set_match_conf)
                  00015ff8    00000048     cc2640_ll_pxxx_sc.a : ll_scheduler.o (.text)
                  00016040    00000008     ble_r2.symbols (.tramp.llTimeDelta.1)
                  00016048    00000048     cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
                  00016090    00000048     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrUpdateLruBondList)
                  000160d8    00000048                                                    : osal_timers.obj (.text:osalAddTimer)
                  00016120    00000048                                                    : osal.obj (.text:osal_init_system)
                  00016168    00000048                                                    : osal_timers.obj (.text:osal_start_timerEx)
                  000161b0    00000048     gpioc.obj (.text:pin_cb)
                  000161f8    00000048     RFCC26XX_singleMode.obj (.text:postDirImmCmd)
                  00016240    00000048     sfcp.obj (.text:sfcp_get_call)
                  00016288    00000048     sysbios.aem3 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_Module_startup__E)
                  000162d0    00000048                  : m3_Hwi_asm_switch.obj (.text:ti_sysbios_family_arm_m3_Hwi_initStacks__E)
                  00016318    00000048                  : BIOS.obj (.text:xdc_runtime_Core_assignParams__I)
                  00016360    00000048                  : BIOS.obj (.text:xdc_runtime_Core_constructObject__I)
                  000163a8    00000046     simple_peripheral_cc2640r2lp_stack_library.lib : icall_lite_translation.obj (.text:icall_liteTranslation)
                  000163ee    00000002                                                    : hal_assert.obj (.text:halAssertSpinlock)
                  000163f0    00000044     ECCROMCC26XX.obj (.text:ECCROMCC26XX_init)
                  00016434    00000044     gattservapp_util.obj (.text:GATTServApp_WriteCharCfg)
                  00016478    00000044     icall.obj (.text:ICall_getLocalMsgEntityId)
                  000164bc    00000044     driverlib.lib : osc.obj (.text:NOROM_OSCHF_SwitchToRcOscTurnOffXosc)
                  00016500    00000044     oad_target_internal_flash.obj (.text:OADTarget_disableCache)
                  00016544    00000044     drivers_cc26x0r2.aem3 : PINCC26XX.oem3 (.text:PIN_swi)
                  00016588    00000044                           : SPICC26XXDMA.oem3 (.text:SPICC26XXDMA_csnCallback)
                  000165cc    00000044     app_ble_peripheral.obj (.text:SimpleBLEPeripheral_processCharValueChangeEvt)
                  00016610    00000044     as393x.obj (.text:as393x_rtc_timer_cb)
                  00016654    00000044     boot.aem3 : boot.oem3 (.text)
                  00016698    00000044     RFCC26XX_singleMode.obj (.text:dispatchOpWhen)
                  000166dc    00000044     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:notify)
                  00016720    00000044     scif.obj (.text:scifStartRtcTicks)
                  00016764    00000044     spi.obj (.text:spi_get_empty)
                  000167a8    00000044     sysbios.aem3 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E)
                  000167ec    00000044                  : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E)
                  00016830    00000044                  : BIOS.obj (.text:ti_sysbios_knl_Swi_post__E)
                  00016874    00000044                  : BIOS.obj (.text:ti_sysbios_knl_Task_allBlockedFunction__I)
                  000168b8    00000042     simple_peripheral_cc2640r2lp_stack_library.lib : gap.obj (.text:GAP_DeviceInit)
                  000168fa    00000002     sysbios.aem3 : BIOS.obj (.text:ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E)
                  000168fc    00000008     ble_r2.symbols (.tramp.GAP_ParamsInit.1)
                  00016904    00000008     ble_r2.symbols (.tramp.GAP_SecParamsInit.1)
                  0001690c    00000008     ble_r2.symbols (.tramp.GAP_PrivacyInit.1)
                  00016914    00000008     ble_r2.symbols (.tramp.GAP_PeriDevMgrInit.1)
                  0001691c    00000008     ble_r2.symbols (.tramp.GAP_PeriConnRegister.1)
                  00016924    00000008     ble_r2.symbols (.tramp.SM_ResponderInit.1)
                  0001692c    00000042     driverlib.lib : ssi.obj (.text:NOROM_SSIConfigSetExpClk)
                  0001696e    00000042     util.obj (.text:Util_enqueueMsg)
                  000169b0    00000040     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_Init)
                  000169f0    00000008     ble_r2.symbols (.tramp.GAP_RegisterBondMgrCBs.1)
                  000169f8    00000040     icall_cc2650.obj (.text:ICallPlatform_pwrDispenseImpl)
                  00016a38    00000040     icall_cc2650.obj (.text:ICallPlatform_pwrRequireImpl)
                  00016a78    00000040     icall.obj (.text:ICall_heapFree)
                  00016ab8    00000040     simple_peripheral_cc2640r2lp_stack_library.lib : osal_snv_wrapper.obj (.text:NVOCOP_compactNV)
                  00016af8    00000040     drivers_cc26x0r2.aem3 : PINCC26XX.oem3 (.text:PINCC26XX_getConfig)
                  00016b38    00000040                           : SPI.oem3 (.text:SPI_init)
                  00016b78    00000040                           : SPI.oem3 (.text:SPI_open)
                  00016bb8    00000040     app_ble_peripheral.obj (.text:SimpleBLEPeripheral_freeAttRsp)
                  00016bf8    00000040     app_timespan.obj (.text:app_get_timestamp)
                  00016c38    00000040     app_lf.obj (.text:app_lf_get_threshold)
                  00016c78    00000040     as393x.obj (.text:as393x_get_lco_freq)
                  00016cb8    00000040     cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
                  00016cf8    00000008     ble_r2.symbols (.tramp.gattServApp_ProcessMsg.1)
                  00016d00    00000040     simple_peripheral_cc2640r2lp_stack_library.lib : osal_bufmgr.obj (.text:osal_bm_alloc)
                  00016d40    00000040                                                    : osal.obj (.text:osal_clear_event)
                  00016d80    00000040                                                    : osal.obj (.text:osal_msg_extract)
                  00016dc0    00000010     ble_user_config.obj (.text:DefaultAssertCback)
                  00016dd0    00000008     ble_r2.symbols (.tramp.GAP_GetIRK.1)
                  00016dd8    00000008     ble_r2.symbols (.tramp.HCI_LE_ClearResolvingListCmd.1)
                  00016de0    00000008     ble_r2.symbols (.tramp.GATT_Init.1)
                  00016de8    00000008     ble_r2.symbols (.tramp.SM_Init.1)
                  00016df0    00000008     ble_r2.symbols (.tramp.GAP_Init.1)
                  00016df8    00000008     ble_r2.symbols (.tramp.L2CAP_Init.1)
                  00016e00    00000008     ble_r2.symbols (.tramp.llAddTxDataEntry.1)
                  00016e08    00000008     ble_r2.symbols (.tramp.LL_ENC_Encrypt.1)
                  00016e10    00000008     ble_r2.symbols (.tramp.LL_TX_bm_alloc.1)
                  00016e18    00000008     ble_r2.symbols (.tramp.L2CAP_SetUserConfig.1)
                  00016e20    00000008     ble_r2.symbols (.tramp.GAP_SendSlaveSecurityRequest.1)
                  00016e28    00000008     ble_r2.symbols (.tramp.GAP_Signable.1)
                  00016e30    00000008     ble_r2.symbols (.tramp.GATT_bm_free.1)
                  00016e38    00000008     ble_r2.symbols (.tramp.GATT_FindHandleUUID.1)
                  00016e40    00000008     ble_r2.symbols (.tramp.LL_PRIV_Init.1)
                  00016e48    00000008     ble_r2.symbols (.tramp.llInitFeatureSet.1)
                  00016e50    00000008     ble_r2.symbols (.tramp.llReleaseAllConnId.1)
                  00016e58    00000008     ble_r2.symbols (.tramp.llConnCleanup.1)
                  00016e60    00000008     ble_r2.symbols (.tramp.LL_ClearWhiteList.1)
                  00016e68    00000008     ble_r2.symbols (.tramp.WL_Init.1)
                  00016e70    00000008     ble_r2.symbols (.tramp.llRfInit.1)
                  00016e78    00000008     ble_r2.symbols (.tramp.GAP_Authenticate.1)
                  00016e80    00000008     ble_r2.symbols (.tramp.L2CAP_GetMTU.1)
                  00016e88    00000008     ble_r2.symbols (.tramp.eccRom_genKeys.1)
                  00016e90    00000008     ble_r2.symbols (.tramp.llCreateRxBuffer.1)
                  00016e98    00000008     ble_r2.symbols (.tramp.RFHAL_NextDataEntryDone.1)
                  00016ea0    00000008     ble_r2.symbols (.tramp.llProcessSlaveControlPacket.1)
                  00016ea8    00000008     ble_r2.symbols (.tramp.llCombinePDU.1)
                  00016eb0    00000008     ble_r2.symbols (.tramp.LL_RxDataCompleteCback.1)
                  00016eb8    00000008     ble_r2.symbols (.tramp.LL_PRIV_UpdateRL.1)
                  00016ec0    00000008     ble_r2.symbols (.tramp.LL_ENC_Decrypt.1)
                  00016ec8    00000008     ble_r2.symbols (.tramp.RFHAL_GetNextDataEntry.1)
                  00016ed0    00000008     ble_r2.symbols (.tramp.llHaltRadio.1)
                  00016ed8    00000008     ble_r2.symbols (.tramp.LL_PRIV_UpdateExtWLEntry.1)
                  00016ee0    00000008     ble_r2.symbols (.tramp.WL_FindEntry.1)
                  00016ee8    00000008     ble_r2.symbols (.tramp.llGetMinCI.1)
                  00016ef0    00000008     ble_r2.symbols (.tramp.llSortActiveConns.1)
                  00016ef8    00000008     ble_r2.symbols (.tramp.llRealignConn.1)
                  00016f00    00000008     ble_r2.symbols (.tramp.HCI_LE_AddDeviceToResolvingListCmd.1)
                  00016f08    00000008     ble_r2.symbols (.tramp.HCI_LE_RemoveDeviceFromResolvingListCmd.1)
                  00016f10    00000008     ble_r2.symbols (.tramp.eccRom_genSharedSecret.1)
                  00016f18    00000008     ble_r2.symbols (.tramp.gattServApp_FindReadAttrCB.1)
                  00016f20    00000008     ble_r2.symbols (.tramp.ATT_CompareUUID.1)
                  00016f28    00000008     ble_r2.symbols (.tramp.GATT_FindNextAttr.1)
                  00016f30    00000008     ble_r2.symbols (.tramp.GATT_FindHandle.1)
                  00016f38    00000008     ble_r2.symbols (.tramp.gattServApp_FindAuthorizeAttrCB.1)
                  00016f40    00000008     ble_r2.symbols (.tramp.GAP_PasscodeUpdate.1)
                  00016f48    00000008     ble_r2.symbols (.tramp.GAP_TerminateAuth.1)
                  00016f50    00000008     ble_r2.symbols (.tramp.linkDB_Find.1)
                  00016f58    00000008     ble_r2.symbols (.tramp.smDetermineIOCaps.1)
                  00016f60    00000008     ble_r2.symbols (.tramp.llHardwareError.1)
                  00016f68    00000008     ble_r2.symbols (.tramp.GAP_NumActiveConnections.1)
                  00016f70    00000008     ble_r2.symbols (.tramp.linkDB_SecurityModeSCOnly.1)
                  00016f78    00000008     ble_r2.symbols (.tramp.SM_SetECCRegenerationCount.1)
                  00016f80    00000008     ble_r2.symbols (.tramp.GAP_SetParamValue.1)
                  00016f88    00000008     ble_r2.symbols (.tramp.llRfSetup.1)
                  00016f90    00000008     ble_r2.symbols (.tramp.HCI_HardwareErrorEvent.1)
                  00016f98    00000008     ble_r2.symbols (.tramp.LL_PRIV_GenerateRPA.1)
                  00016fa0    00000008     ble_r2.symbols (.tramp.LL_PRIV_IsIDA.1)
                  00016fa8    00000008     ble_r2.symbols (.tramp.LL_PRIV_FindPeerInRL.1)
                  00016fb0    00000008     ble_r2.symbols (.tramp.LL_PRIV_IsResolvable.1)
                  00016fb8    00000008     ble_r2.symbols (.tramp.LL_PRIV_IsRPA.1)
                  00016fc0    00000008     ble_r2.symbols (.tramp.LL_PRIV_IsZeroIRK.1)
                  00016fc8    00000008     ble_r2.symbols (.tramp.LL_EnhancedConnectionCompleteCback.1)
                  00016fd0    00000008     ble_r2.symbols (.tramp.llTimeCompare.1)
                  00016fd8    00000008     ble_r2.symbols (.tramp.llGetCurrentTime.1)
                  00016fe0    00000008     ble_r2.symbols (.tramp.llProcessPostRfOps.1)
                  00016fe8    00000008     ble_r2.symbols (.tramp.LL_ENC_Init.1)
                  00016ff0    00000008     ble_r2.symbols (.tramp.LL_PRIV_GenerateRSA.1)
                  00016ff8    00000008     ble_r2.symbols (.tramp.LL_ENC_GenerateTrueRandNum.1)

.TI.bound:NV_FLASH 
*          0    0001e000    00001000     
                  0001e000    00001000     simple_peripheral_cc2640r2lp_stack_library.lib : osal_snv_wrapper.obj (.TI.bound:NV_FLASH)

.ccfg      0    200000c8    00000058     
                  200000c8    00000058     ccfg.obj (.ccfg:retain)

.TI.bound:dmaSpi0RxControlTableEntry 
*          0    20000430    00000010     UNINITIALIZED
                  20000430    00000010     drivers_cc26x0r2.aem3 : SPICC26XXDMA.oem3 (.TI.bound:dmaSpi0RxControlTableEntry)

.TI.bound:dmaSpi0TxControlTableEntry 
*          0    20000440    00000010     UNINITIALIZED
                  20000440    00000010     drivers_cc26x0r2.aem3 : SPICC26XXDMA.oem3 (.TI.bound:dmaSpi0TxControlTableEntry)

.TI.bound:dmaSpi1RxControlTableEntry 
*          0    20000500    00000010     UNINITIALIZED
                  20000500    00000010     drivers_cc26x0r2.aem3 : SPICC26XXDMA.oem3 (.TI.bound:dmaSpi1RxControlTableEntry)

.TI.bound:dmaSpi1TxControlTableEntry 
*          0    20000510    00000010     UNINITIALIZED
                  20000510    00000010     drivers_cc26x0r2.aem3 : SPICC26XXDMA.oem3 (.TI.bound:dmaSpi1TxControlTableEntry)

.data      0    20000520    00000e92     UNINITIALIZED
                  20000520    00000178     simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.data:$O1$$)
                  20000698    00000130     devinfoservice.obj (.data:devInfoAttrTbl)
                  200007c8    00000114     drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.data:PowerCC26XX_module)
                  200008dc    000000f0     app_action.obj (.data:gga_app_actions)
                  200009cc    000000a0     borda_gatt_profile.obj (.data:simpleProfileAttrTbl)
                  20000a6c    0000007c     simple_peripheral_cc2640r2lp_stack_library.lib : osal_cbtimer.obj (.data:$O1$$)
                  20000ae8    00000070     cc26xx_profiles_pxxx_sc.a : gapgattserver.o (.data)
                  20000b58    0000004c     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Task_Object__table__V)
                  20000ba4    00000004     simple_peripheral_cc2640r2lp_stack_library.lib : osal_pwrmgr.obj (.data:$O1$$)
                  20000ba8    00000048     app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_cc26xx_Timer_Object__table__V)
                  20000bf0    00000044     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Task_Module__state__V)
                  20000c34    00000040     gpioc.obj (.data:ga_configs)
                  20000c74    00000040     oad_reset_service.obj (.data:resetServiceAttrTbl)
                  20000cb4    00000040     borda_gatt_profile.obj (.data:simpleProfileChar1)
                  20000cf4    00000040     borda_gatt_profile.obj (.data:simpleProfileChar2)
                  20000d34    00000038     app_info.obj (.data:g_tag_info)
                  20000d6c    00000034     app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module__state__V)
                  20000da0    00000030     borda_gatt_profile.obj (.data:simpleProfileChar3)
                  20000dd0    00000030     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Swi_Module_State_0_readyQ__A)
                  20000e00    00000030     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Swi_Object__table__V)
                  20000e30    00000030     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Task_Module_State_0_readyQ__A)
                  20000e60    0000002c     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Clock_Module__state__V)
                  20000e8c    00000028     simple_peripheral_cc2640r2lp_stack_library.lib : osal.obj (.data:$O1$$)
                  20000eb4    00000024     cc26xx_profiles_pxxx_sc.a : gapgattserver.o (.data)
                  20000ed8    00000024     app_ble_pem3.oem3 (.data:ti_sysbios_BIOS_Module__state__V)
                  20000efc    00000020     cc2640_ll_pxxx_sc.a : ll_config.o (.data)
                  20000f1c    00000020     app_match.obj (.data:g_par_adv)
                  20000f3c    00000020     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Clock_Object__table__V)
                  20000f5c    0000001f     app_ble_peripheral.obj (.data:ga_data)
                  20000f7b    0000001f     peripheral.obj (.data:gapRole_AdvertData)
                  20000f9a    0000001f     peripheral.obj (.data:gapRole_ScanRspData)
                  20000fb9    0000001e     app_ble_peripheral.obj (.data:advertData)
                  20000fd7    00000001     ECCROMCC26XX.obj (.data)
                  20000fd8    0000001c     borda_gatt_profile.obj (.data)
                  20000ff4    0000001c     as393x.obj (.data:g_dev)
                  20001010    0000001c     peripheral.obj (.data)
                  2000102c    0000001c     app_ble_pem3.oem3 (.data:ti_sysbios_gates_GateMutex_Object__table__V)
                  20001048    0000001c     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Swi_Module__state__V)
                  20001064    0000001a     app_ble_peripheral.obj (.data)
                  2000107e    00000002     RFCC26XX_singleMode.obj (.data)
                  20001080    00000018     app_match.obj (.data:g_cmd_ble_adv)
                  20001098    00000018     app_error.obj (.data:g_last_error)
                  200010b0    00000018     app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Object__table__V)
                  200010c8    00000015     app_ble_peripheral.obj (.data:attDeviceName)
                  200010dd    00000015     devinfoservice.obj (.data:devInfoFirmwareRev)
                  200010f2    00000015     devinfoservice.obj (.data:devInfoHardwareRev)
                  20001107    00000015     devinfoservice.obj (.data:devInfoMfrName)
                  2000111c    00000015     devinfoservice.obj (.data:devInfoModelNumber)
                  20001131    00000015     devinfoservice.obj (.data:devInfoSerialNumber)
                  20001146    00000015     devinfoservice.obj (.data:devInfoSoftwareRev)
                  2000115b    00000012     app_lf.obj (.data:g_lf_config)
                  2000116d    00000002     oad_reset_service.obj (.data)
                  2000116f    00000001     TRNGCC26XX.obj (.data)
                  20001170    00000010     icall_user_config.obj (.data:bleAppServiceInfoTable)
                  20001180    00000010     cc26xx_profiles_pxxx_sc.a : gattservapp.o (.data)
                  20001190    00000010     ble_user_config.obj (.data:rfRegTbl)
                  200011a0    00000010     main.obj (.data:user0Cfg)
                  200011b0    00000010     app_ble_pem3.oem3 (.data:xdc_runtime_HeapMin_Object__table__V)
                  200011c0    0000000f     borda_gatt_profile.obj (.data:simpleProfileChar1UserDesp)
                  200011cf    0000000f     borda_gatt_profile.obj (.data:simpleProfileChar2UserDesp)
                  200011de    0000000e     devinfoservice.obj (.data:defaultDevInfo11073Cert)
                  200011ec    0000000e     devinfoservice.obj (.data)
                  200011fa    0000000e     borda_gatt_profile.obj (.data:simpleProfileChar3UserDesp)
                  20001208    0000000c     rtsv7M3_T_le_eabi.lib : exit.obj (.data:$O1$$)
                  20001214    0000000c     app_led.obj (.data:g_pin_conf)
                  20001220    0000000c     app_ble_peripheral.obj (.data:g_run_conf)
                  2000122c    0000000c     app_match.obj (.data:g_rx_entry)
                  20001238    0000000c     icall.obj (.data)
                  20001244    0000000c     icall_api_lite.obj (.data)
                  20001250    0000000c     scif_framework.obj (.data)
                  2000125c    0000000a     app_ble_peripheral.obj (.data:g_ble_conf)
                  20001266    0000000a     as393x.obj (.data:ga_reg_values)
                  20001270    0000000a     peripheral.obj (.data:gapRole_updateConnParams)
                  2000127a    00000009     app_ble_peripheral.obj (.data:scanRspData)
                  20001283    00000001     app_action.obj (.data)
                  20001284    00000008     rtsv7M3_T_le_eabi.lib : _lock.obj (.data:$O1$$)
                  2000128c    00000008     simple_peripheral_cc2640r2lp_stack_library.lib : hal_assert.obj (.data:$O1$$)
                  20001294    00000008                                                    : osal_clock.obj (.data:$O1$$)
                  2000129c    00000008     app_button.obj (.data)
                  200012a4    00000008     cc2640_ll_pxxx_sc.a : ll_data.o (.data)
                  200012ac    00000008     clocks.obj (.data)
                  200012b4    00000008     devinfoservice.obj (.data:devInfoSystemId)
                  200012bc    00000008     app_match.obj (.data:g_data_rx)
                  200012c4    00000008     app_lf.obj (.data:g_last_location)
                  200012cc    00000008     app_match.obj (.data:g_match)
                  200012d4    00000008     app_button.obj (.data:g_pin_conf)
                  200012dc    00000008     icall_cc2650.obj (.data)
                  200012e4    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_cc26xx_Timer_Module__state__V)
                  200012ec    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module__root__V)
                  200012f4    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_gates_GateHwi_Module__root__V)
                  200012fc    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_gates_GateMutex_Module__root__V)
                  20001304    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Clock_Module__root__V)
                  2000130c    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Event_Module__root__V)
                  20001314    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Queue_Module__root__V)
                  2000131c    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Semaphore_Module__root__V)
                  20001324    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Swi_Module__root__V)
                  2000132c    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Task_Module__root__V)
                  20001334    00000008     app_ble_pem3.oem3 (.data:xdc_runtime_HeapMin_Module__root__V)
                  2000133c    00000008     app_ble_pem3.oem3 (.data:xdc_runtime_Startup_Module__state__V)
                  20001344    00000008     app_ble_pem3.oem3 (.data:xdc_runtime_System_Module__state__V)
                  2000134c    00000007     app_match.obj (.data)
                  20001353    00000007     devinfoservice.obj (.data:devInfoPnpId)
                  2000135a    00000002     app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A)
                  2000135c    00000006     app_lf.obj (.data)
                  20001362    00000006     peripheral.obj (.data:gapRole_AdvDirectAddr)
                  20001368    00000006     peripheral.obj (.data:gapRole_ConnectedDevAddr)
                  2000136e    00000006     oad_reset_service.obj (.data:resetChar1UserDesc)
                  20001374    00000004     simple_peripheral_cc2640r2lp_stack_library.lib : osal_snv_wrapper.obj (.data:$O1$$)
                  20001378    00000004     icall.obj (.data:ICall_initParams)
                  2000137c    00000004     app_ble_peripheral.obj (.data:SimpleBLEPeripheral_gapRoleCBs)
                  20001380    00000004     app_ble_peripheral.obj (.data:SimpleBLEPeripheral_simpleProfileCBs)
                  20001384    00000004     app_error.obj (.data)
                  20001388    00000004     ble_user_config.obj (.data)
                  2000138c    00000004     rtsv7M3_T_le_eabi.lib : stkdepth_vars.obj (.data)
                  20001390    00000004     simple_peripheral_cc2640r2lp_stack_library.lib : ble_user_config.obj (.data)
                  20001394    00000004                                                    : osal_bufmgr.obj (.data)
                  20001398    00000004     app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A)
                  2000139c    00000004     app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A)
                  200013a0    00000004     app_ble_pem3.oem3 (.data:ti_sysbios_gates_GateHwi_Object__table__V)
                  200013a4    00000004     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Task_Module_State_0_idleTask__A)
                  200013a8    00000004     app_ble_pem3.oem3 (.data:xdc_runtime_Memory_Module__state__V)
                  200013ac    00000001     app_info.obj (.data)
                  200013ad    00000001     cc26xx_profiles_pxxx_sc.a : gapgattserver.o (.data)
                  200013ae    00000001                               : gapgattserver.o (.data)
                  200013af    00000001                               : gapgattserver.o (.data)
                  200013b0    00000001     drivers_cc26x0r2.aem3 : SPI.oem3 (.data)
                  200013b1    00000001     simple_peripheral_cc2640r2lp_stack_library.lib : npi.obj (.data)

.bss       0    200013b8    00001ba1     UNINITIALIZED
                  200013b8    00000684     (.common:xdc_runtime_HeapMin_Instance_State_0_buf__A)
                  20001a3c    00000284     (.common:sbpTaskStack)
                  20001cc0    00000200     app_ble_pem3.oem3 (.bss:taskStackSection)
                  20001ec0    000001e0     (.common:gapRoleTaskStack)
                  200020a0    0000012c     clocks.obj (.bss:ga_timers)
                  200021cc    00000110     drivers_cc26x0r2.aem3 : PINCC26XX.oem3 (.bss:$O1$$)
                  200022dc    00000104     clocks.obj (.bss:ga_rtcas)
                  200023e0    00000100     RFCC26XX_singleMode.obj (.bss:aCmdPool)
                  200024e0    000000dc     (.common:spiCC26XXDMAObjects)
                  200025bc    00000004     ECCROMCC26XX.obj (.bss)
                  200025c0    000000c8     cc2640_ll_pxxx_sc.a : ll.o (.bss)
                  20002688    000000c8     (.common:ti_sysbios_family_arm_m3_Hwi_dispatchTable)
                  20002750    00000080     (.common:cryptoCC26XXObjects)
                  200027d0    00000050     (.common:gapRoleTask)
                  20002820    00000050     (.common:sbpTask)
                  20002870    00000048     icall.obj (.bss:ICall_entities)
                  200028b8    00000048     (.common:gptimerCC26XXObjects)
                  20002900    0000003c     gpioc.obj (.bss:gfpa_callbacks)
                  2000293c    00000034     RFCC26XX_singleMode.obj (.bss:swiFsm)
                  20002970    00000034     RFCC26XX_singleMode.obj (.bss:swiHw)
                  200029a4    00000030     app_ble_peripheral.obj (.bss:ga_status)
                  200029d4    0000002c     RFCC26XX_singleMode.obj (.bss)
                  20002a00    0000002c     spi.obj (.bss:ga_spis)
                  20002a2c    00000028     app_match.obj (.bss:ga_rx_buffer)
                  20002a54    00000024     icall.obj (.bss:ICall_tasks)
                  20002a78    00000024     RFCC26XX_singleMode.obj (.bss:clkPowerUp)
                  20002a9c    00000024     app_button.obj (.bss:g_button_clock)
                  20002ac0    00000024     app_ble_peripheral.obj (.bss:g_disconnect_clk_struct)
                  20002ae4    00000024     app_action.obj (.bss:g_green_blink_clock)
                  20002b08    00000024     app_led.obj (.bss:g_green_led_clock)
                  20002b2c    00000024     app_lf.obj (.bss:g_lf_clock)
                  20002b50    00000024     app_match.obj (.bss:g_match_clock)
                  20002b74    00000024     app_action.obj (.bss:g_red_blink_clock)
                  20002b98    00000024     app_led.obj (.bss:g_red_led_clock)
                  20002bbc    00000024     app_ble_peripheral.obj (.bss:g_timeout_clk_struct)
                  20002be0    00000024     app_button.obj (.bss:g_wakeup_clock)
                  20002c04    00000024     app_ble_peripheral.obj (.bss:periodicClock)
                  20002c28    00000024     scif_framework.obj (.bss:scifData)
                  20002c4c    00000024     peripheral.obj (.bss:startAdvClock)
                  20002c70    00000024     peripheral.obj (.bss:startUpdateClock)
                  20002c94    00000024     peripheral.obj (.bss:updateTimeoutClock)
                  20002cb8    00000020     (.common:udmaObjects)
                  20002cd8    0000001c     drivers_cc26x0r2.aem3 : CryptoCC26XX.oem3 (.bss:CryptoSem)
                  20002cf4    0000001c     RFCC26XX_singleMode.obj (.bss:hwiCpe0)
                  20002d10    0000001c     scif_framework.obj (.bss:hwiCtrlReady)
                  20002d2c    0000001c     RFCC26XX_singleMode.obj (.bss:hwiHw)
                  20002d48    0000001c     scif_framework.obj (.bss:hwiTaskAlert)
                  20002d64    0000001c     scif_framework.obj (.bss:semCtrlReady)
                  20002d80    00000018     app_ble_peripheral.obj (.bss)
                  20002d98    00000018     RFCC26XX_singleMode.obj (.bss:cmdDirImm)
                  20002db0    00000018     app_timespan.obj (.bss:ga_times)
                  20002dc8    00000018     app_error.obj (.bss:s_error$1)
                  20002de0    00000014     RFCC26XX_singleMode.obj (.bss:RF_wakeupNotifyObj)
                  20002df4    00000014     RFCC26XX_singleMode.obj (.bss:cmdQ)
                  20002e08    00000014     icall.obj (.bss)
                  20002e1c    00000014     RFCC26XX_singleMode.obj (.bss:opRatSync)
                  20002e30    00000014     driverlib.lib : osc.obj (.bss:oscHfGlobals)
                  20002e44    00000014     peripheral.obj (.bss)
                  20002e58    00000014     app_match.obj (.bss:s_ble_rx$1)
                  20002e6c    00000010     peripheral.obj (.bss:gapRole_IRK)
                  20002e7c    00000010     peripheral.obj (.bss:gapRole_SRK)
                  20002e8c    0000000e     as393x.obj (.bss:g_calib)
                  20002e9a    00000002     borda_gatt_profile.obj (.bss)
                  20002e9c    0000000c     simple_peripheral_cc2640r2lp_stack_library.lib : osal_timers.obj (.bss:$O1$$)
                  20002ea8    0000000c     app_ble_peripheral.obj (.bss:appMsg)
                  20002eb4    0000000c     cc2640_ll_pxxx_sc.a : ll_scheduler.o (.bss)
                  20002ec0    0000000c     app_button.obj (.bss:g_pin_state)
                  20002ecc    0000000c     app_led.obj (.bss:g_pin_state)
                  20002ed8    0000000c     gpioc.obj (.bss:g_state)
                  20002ee4    0000000c     as393x.obj (.bss:s_lf_rssi$2)
                  20002ef0    0000000a     app_lf.obj (.bss:g_as393x_config)
                  20002efa    00000008     app_action.obj (.bss:g_blink)
                  20002f02    00000008     app_lf.obj (.bss:ga_lf_data)
                  20002f0a    00000008     app_match.obj (.bss:ga_mac_addr)
                  20002f12    00000008     peripheral.obj (.bss:gapRole_bdAddr)
                  20002f1a    00000002     app_error.obj (.bss:g_app_ack)
                  20002f1c    00000008     driverlib.lib : sys_ctrl.obj (.bss:powerQualGlobals)
                  20002f24    00000008     app_info.obj (.bss:s_bat$2)
                  20002f2c    00000004     app_led.obj (.bss)
                  20002f30    00000004     app_match.obj (.bss)
                  20002f34    00000004     cc26xx_profiles_pxxx_sc.a : gapgattserver.o (.bss)
                  20002f38    00000004     clocks.obj (.bss)
                  20002f3c    00000004     app_button.obj (.bss:ga_button_counts)
                  20002f40    00000004     gpioc.obj (.bss)
                  20002f44    00000004     (.common:HEAPMGR_SIZE)
                  20002f48    00000004     (.common:tasksEvents)
                  20002f4c    00000004     (.common:trngCC26XXObjects)
                  20002f50    00000001     cc26xx_hci_tl_none.a : hci_tl.o (.bss)
                  20002f51    00000001                          : hci_tl.o (.bss)
                  20002f52    00000001                          : hci_tl.o (.bss)
                  20002f53    00000001                          : hci_tl.o (.bss)
                  20002f54    00000001                          : hci_tl.o (.bss)
                  20002f55    00000001     (.common:driverlib_release_0_48632)
                  20002f56    00000001     (.common:g_hwiInt)
                  20002f57    00000001     (.common:icall_liteTaskId)
                  20002f58    00000001     (.common:osal_entity)

.vtable    0    20002f59    00000000     UNINITIALIZED

.vtable_ram 
*          0    20002f59    00000000     UNINITIALIZED

vtable_ram 
*          0    20002f59    00000000     UNINITIALIZED

.sysmem    0    20002f59    00000000     UNINITIALIZED

.nonretenvar 
*          0    20002f59    00000000     UNINITIALIZED

.stack     0    20003df0    00000200     UNINITIALIZED
                  20003df0    00000200     --HOLE--

MODULE SUMMARY

       Module                            code    ro data   rw data
       ------                            ----    -------   -------
    .\Drivers\ECC\
       ECCROMCC26XX.obj                  1176    0         5      
    +--+---------------------------------+-------+---------+---------+
       Total:                            1176    0         5      
                                                                  
    .\Drivers\RF\
       RFCC26XX_singleMode.obj           6826    0         582    
    +--+---------------------------------+-------+---------+---------+
       Total:                            6826    0         582    
                                                                  
    .\Drivers\TRNG\
       TRNGCC26XX.obj                    260     0         1      
    +--+---------------------------------+-------+---------+---------+
       Total:                            260     0         1      
                                                                  
    .\ICallBLE\
       ble_user_config.obj               16      0         20     
       icall_api_lite.obj                0       0         12     
    +--+---------------------------------+-------+---------+---------+
       Total:                            16      0         32     
                                                                  
    .\ICall\
       icall.obj                         3360    0         148    
       icall_cc2650.obj                  280     0         8      
       icall_user_config.obj             0       0         16     
    +--+---------------------------------+-------+---------+---------+
       Total:                            3640    0         172    
                                                                  
    .\app\profiles\
       peripheral.obj                    4644    0         840    
       borda_gatt_profile.obj            980     0         410    
       devinfoservice.obj                916     0         473    
       gattservapp_util.obj              414     0         0      
       oad_reset_service.obj             104     0         72     
       oad_target_internal_flash.obj     68      0         0      
    +--+---------------------------------+-------+---------+---------+
       Total:                            7126    0         1795   
                                                                  
    .\app\src\
       app_ble_peripheral.obj            4848    0         1063   
       app_match.obj                     1108    0         199    
       app_lf.obj                        952     0         86     
       app_action.obj                    632     0         321    
       app_button.obj                    456     0         104    
       bordainfant.obj                   0       0         456    
       util.obj                          334     0         0      
       app_timespan.obj                  292     0         24     
       main.obj                          268     0         16     
       app_info.obj                      196     0         65     
       app_led.obj                       156     0         100    
       app_error.obj                     92      0         54     
       ccfg.obj                          0       88        0      
    +--+---------------------------------+-------+---------+---------+
       Total:                            9334    88        2488   
                                                                  
    .\lib\src\
       as393x.obj                        2108    0         64     
       sfcp.obj                          596     0         0      
       crc8.obj                          188     0         0      
       crc16.obj                         144     0         0      
    +--+---------------------------------+-------+---------+---------+
       Total:                            3036    0         64     
                                                                  
    .\platform\tirtos\
       clocks.obj                        280     0         572    
       spi.obj                           448     0         44     
       gpioc.obj                         236     0         140    
    +--+---------------------------------+-------+---------+---------+
       Total:                            964     0         756    
                                                                  
    .\scif\mInfant\
       scif_framework.obj                796     0         132    
       scif.obj                          68      0         0      
    +--+---------------------------------+-------+---------+---------+
       Total:                            864     0         132    
                                                                  
    C:\WORK\firmware\proj\minfant_rtos\app\stack\
       ble_r2.symbols                    728     0         0      
    +--+---------------------------------+-------+---------+---------+
       Total:                            728     0         0      
                                                                  
    C:\WORK\firmware\proj\minfant_rtos\proj\ccs7\.debug_infant\configPkg\package\cfg\
       app_ble_pem3.oem3                 0       60        3326   
    +--+---------------------------------+-------+---------+---------+
       Total:                            0       60        3326   
                                                                  
    C:/WORK/firmware/proj/minfant_rtos/app/stack/simple_peripheral_cc2640r2lp_stack_library.lib
       osal_snv_wrapper.obj              1016    4096      4      
       gapbondmgr.obj                    3784    0         376    
       osal.obj                          1224    0         41     
       osal_cbtimer.obj                  512     0         124    
       osal_timers.obj                   476     0         12     
       osal_icall_ble.obj                224     0         4      
       ble_user_config.obj               196     0         4      
       osal_bufmgr.obj                   148     0         4      
       osal_clock.obj                    76      0         8      
       npi.obj                           76      0         1      
       icall_lite_translation.obj        70      0         0      
       gap.obj                           66      0         0      
       hal_assert.obj                    4       0         8      
       osal_pwrmgr.obj                   0       0         4      
       sm_ecc.obj                        4       0         0      
       common_rom_init.obj               2       0         0      
       onboard.obj                       2       0         0      
       ble_dispatch_lite.obj             0       0         1      
    +--+---------------------------------+-------+---------+---------+
       Total:                            7880    4096      591    
                                                                  
    C:/ti/simplelink_cc2640r2_sdk_1_35_00_33/kernel/tirtos/packages/ti/dpl/lib/dpl_cc26x0r2.aem3
       PowerCC26XX_tirtos.oem3           212     0         0      
    +--+---------------------------------+-------+---------+---------+
       Total:                            212     0         0      
                                                                  
    C:/ti/simplelink_cc2640r2_sdk_1_35_00_33/source/ti/devices/cc26x0r2/driverlib/bin/ccs/driverlib.lib
       sys_ctrl.obj                      728     0         8      
       setup.obj                         312     0         0      
       osc.obj                           176     0         20     
       crypto.obj                        144     0         0      
       ssi.obj                           66      0         0      
       rfc.obj                           4       0         0      
       driverlib_release.obj             0       0         1      
    +--+---------------------------------+-------+---------+---------+
       Total:                            1430    0         29     
                                                                  
    C:/ti/simplelink_cc2640r2_sdk_1_35_00_33/source/ti/drivers/lib/drivers_cc26x0r2.aem3
       PowerCC26XX.oem3                  2062    0         276    
       SPICC26XXDMA.oem3                 2004    0         64     
       PINCC26XX.oem3                    1128    0         272    
       PowerCC26XX_calibrateRCOSC.oem3   1396    0         0      
       CryptoCC26XX.oem3                 958     0         29     
       GPTimerCC26XX.oem3                512     0         0      
       SPI.oem3                          128     0         1      
       UDMACC26XX.oem3                   108     0         0      
    +--+---------------------------------+-------+---------+---------+
       Total:                            8296    0         642    
                                                                  
    C:\WORK\firmware\proj\minfant_rtos\proj\ccs7\tirtos\src\sysbios\sysbios.aem3
       BIOS.obj                          3636    0         0      
       m3_Hwi_asm.obj                    200     0         0      
       m3_TaskSupport_asm.obj            76      0         0      
       m3_Hwi_asm_switch.obj             72      0         0      
    +--+---------------------------------+-------+---------+---------+
       Total:                            3984    0         0      
                                                                  
    C:\ti\ccsv7\tools\compiler\ti-cgt-arm_16.9.1.LTS\lib\rtsv7M3_T_le_eabi.lib
       ull_div_t2.obj                    500     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      
       _lock.obj                         0       0         8      
       stkdepth_vars.obj                 0       0         4      
    +--+---------------------------------+-------+---------+---------+
       Total:                            1042    0         24     
                                                                  
    C:\ti\simplelink_cc2640r2_sdk_1_35_00_33\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_35_00_33\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_35_00_33\source\ti\blestack\blelib\ctrl\cc2640_ll_pxxx_sc.a
       ll.o                              2496    0         200    
       ll_isr.o                          1388    0         0      
       ll_scheduler.o                    1328    0         12     
       ll_common.o                       700     0         0      
       ll_config.o                       0       0         32     
       ll_data.o                         0       0         8      
       ll_error_end_causes.o             2       0         0      
    +--+---------------------------------+-------+---------+---------+
       Total:                            5914    0         252    
                                                                  
    C:\ti\simplelink_cc2640r2_sdk_1_35_00_33\source\ti\blestack\blelib\hci_tl\cc26xx_hci_tl_none.a
       hci_tl.o                          144     0         5      
    +--+---------------------------------+-------+---------+---------+
       Total:                            144     0         5      
                                                                  
    C:\ti\simplelink_cc2640r2_sdk_1_35_00_33\source\ti\blestack\blelib\host\cc26xx_gap_pxxx_sc.a
       gap_linkmgr.o                     124     0         0      
    +--+---------------------------------+-------+---------+---------+
       Total:                            124     0         0      
                                                                  
    C:\ti\simplelink_cc2640r2_sdk_1_35_00_33\source\ti\blestack\blelib\host\cc26xx_profiles_pxxx_sc.a
       gattservapp.o                     1032    0         16     
       gapgattserver.o                   688     0         155    
    +--+---------------------------------+-------+---------+---------+
       Total:                            1720    0         171    
                                                                  
    C:\ti\simplelink_cc2640r2_sdk_1_35_00_33\source\ti\blestack\blelib\host\cc26xx_sm_pxxx_sc.a
       sm_pairing.o                      516     0         0      
    +--+---------------------------------+-------+---------+---------+
       Total:                            516     0         0      
                                                                  
       Stack:                            0       0         512    
    +--+---------------------------------+-------+---------+---------+
       Grand Total:                      65460   4244      11579  


LINKER GENERATED COPY TABLES

__TI_cinit_table @ 00000330 records: 6, size/record: 8, table size: 48
	.data: load addr=00000000, load size=000002f5 bytes, run addr=20000520, run size=00000e92 bytes, compression=lzss
	.TI.bound:dmaSpi0RxControlTableEntry: load addr=00000308, load size=00000008 bytes, run addr=20000430, run size=00000010 bytes, compression=zero_init
	.TI.bound:dmaSpi0TxControlTableEntry: load addr=00000310, load size=00000008 bytes, run addr=20000440, run size=00000010 bytes, compression=zero_init
	.TI.bound:dmaSpi1RxControlTableEntry: load addr=00000318, load size=00000008 bytes, run addr=20000500, run size=00000010 bytes, compression=zero_init
	.TI.bound:dmaSpi1TxControlTableEntry: load addr=00000320, load size=00000008 bytes, run addr=20000510, run size=00000010 bytes, compression=zero_init
	.bss: load addr=00000328, load size=00000008 bytes, run addr=200013b8, run size=00001ba1 bytes, compression=zero_init


LINKER GENERATED HANDLER TABLE

__TI_handler_table @ 000002f8 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
--------------  -----------  ---------  ----------------
scifStartRtcTicks         $Tramp$TT$S$$scifStartRtcTicks
   00016721     00003c0c     00000028   scif.obj (.text:scifStartRtcTicksNow)
xdc_runtime_Core_createObject__I  $Tramp$TT$S$$xdc_runtime_Core_createObject__I
   00013977     00003c14     00000098   app_ble_pem3.oem3 (.text:ti_sysbios_knl_Task_create)
                             00000592   app_ble_pem3.oem3 (.text:ti_sysbios_knl_Clock_create)
                             00000f8a   app_ble_pem3.oem3 (.text:ti_sysbios_knl_Semaphore_create)
                             00001390   app_ble_pem3.oem3 (.text:ti_sysbios_gates_GateHwi_Object__create__S)
                             000013c0   app_ble_pem3.oem3 (.text:ti_sysbios_gates_GateMutex_Object__create__S)
                             00001450   app_ble_pem3.oem3 (.text:ti_sysbios_knl_Event_create)
                             000014e0   app_ble_pem3.oem3 (.text:xdc_runtime_HeapMin_Object__create__S)
ti_sysbios_knl_Task_Instance_init__E  $Tramp$TT$S$$ti_sysbios_knl_Task_Instance_init__E
   00010185     00003c1c     000000a6   app_ble_pem3.oem3 (.text:ti_sysbios_knl_Task_create)
                             0000106a   app_ble_pem3.oem3 (.text:ti_sysbios_knl_Task_construct)
ICall_searchServiceEntity  $Tramp$TT$S$$ICall_searchServiceEntity
   000146d1     00003c24     00000152   icall.obj (.text:ICall_sendServiceMsg)
                             00000bd6   icall.obj (.text:ICall_searchService)
ICall_send                $Tramp$TT$S$$ICall_send
   00010ba9     00003c2c     00000176   icall.obj (.text:ICall_sendServiceMsg)
NOROM_OSCHF_AttemptToSwitchToXosc  $Tramp$TT$S$$NOROM_OSCHF_AttemptToSwitchToXosc
   00013a51     00003c34     00000238   drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
notify                    $Tramp$TT$S$$notify
   000166dd     00003c3c     00000250   drivers_cc26x0r2.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
Util_enqueueMsg           $Tramp$TT$S$$Util_enqueueMsg
   0001696f     00003c44     000002d6   app_ble_peripheral.obj (.text:SimpleBLEPeripheral_enqueueMsg)
app_button_event          $Tramp$TT$S$$app_button_event
   000128ad     00003c4c     000002f2   app_button.obj (.text:app_button_timer_cb)
                             00000308   app_button.obj (.text:app_button_timer_cb)
app_lf_run                $Tramp$TT$S$$app_lf_run
   00015f69     00003c54     0000034c   app_lf.obj (.text:app_lf_do_set_conf)
app_match_set_data        $Tramp$TT$S$$app_match_set_data
   00010489     00003c5c     000003c6   app_match.obj (.text:app_match_is_match)
ATT_ExchangeMTURsp        $Tramp$TT$L$PI$$ATT_ExchangeMTURsp
   10018e59     00003c64     0000045c   cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
GATT_UpdateMTU            $Tramp$TT$L$PI$$GATT_UpdateMTU
   1001835d     00003c6c     0000047c   cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
osal_msg_send             $Tramp$TT$S$$osal_msg_send
   00013659     00003c74     000004b8   cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
                             00000810   cc26xx_l2cap_pxxx_sc.a : l2cap_util.o (.text)
                             00002d76   simple_peripheral_cc2640r2lp_stack_library.lib : ble_dispatch_lite.obj (.text:icall_liteMsgParser)
GATTServApp_InitCharCfg   $Tramp$TT$S$$GATTServApp_InitCharCfg
   0001340d     00003c7c     000004e4   cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
osalAddTimer              $Tramp$TT$S$$osalAddTimer
   000160d9     00003c84     00000516   simple_peripheral_cc2640r2lp_stack_library.lib : osal_timers.obj (.text:osal_start_reload_timer)
findItem                  $Tramp$TT$S$$findItem
   00014481     00003c8c     0000066e   simple_peripheral_cc2640r2lp_stack_library.lib : osal_snv_wrapper.obj (.text:NVOCOP_readItem)
osal_run_system           $Tramp$TT$S$$osal_run_system
   0000c089     00003c94     00000954   simple_peripheral_cc2640r2lp_stack_library.lib : osal.obj (.text:osal_start_system)
__aeabi_uldivmod          $Tramp$TT$S$$__aeabi_uldivmod
   0000b8f9     00003c9c     000009c0   sysbios.aem3 : BIOS.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E)
                             00002074                : BIOS.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E)
ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E  $Tramp$TT$S$$ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E
   000167a9     00003ca4     00000a2c   sysbios.aem3 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_Instance_finalize__E)
                             00003ac8   scif_framework.obj (.text:osalDisableCtrlReadyInt)
                             00003adc   scif_framework.obj (.text:scifOsalDisableTaskAlertInt)
ti_sysbios_knl_Semaphore_pend__E  $Tramp$TT$S$$ti_sysbios_knl_Semaphore_pend__E
   0000fc11     00003cac     00000ad0   drivers_cc26x0r2.aem3 : CryptoCC26XX.oem3 (.text:CryptoCC26XX_loadKey)
                             000013f4   sysbios.aem3 : BIOS.obj (.text:ti_sysbios_gates_GateMutex_enter__E)
                             00001d32   drivers_cc26x0r2.aem3 : CryptoCC26XX.oem3 (.text:cryptoTransactionPend)
NOROM_CRYPTOAesLoadKey    $Tramp$TT$S$$NOROM_CRYPTOAesLoadKey
   00011ecd     00003cb4     00000ae2   drivers_cc26x0r2.aem3 : CryptoCC26XX.oem3 (.text:CryptoCC26XX_loadKey)
ti_sysbios_knl_Semaphore_post__E  $Tramp$TT$S$$ti_sysbios_knl_Semaphore_post__E
   00014549     00003cbc     00000aee   drivers_cc26x0r2.aem3 : CryptoCC26XX.oem3 (.text:CryptoCC26XX_loadKey)
                             0000180a   scif_framework.obj (.text:osalIndicateCtrlReady)
                             00001d42   drivers_cc26x0r2.aem3 : CryptoCC26XX.oem3 (.text:cryptoTransactionPend)
                             00001d8a                         : CryptoCC26XX.oem3 (.text:CryptoCC26XX_hwiIntFxn)
                             00002ec4   sysbios.aem3 : BIOS.obj (.text:ti_sysbios_gates_GateMutex_leave__E)
                             00003b0a   drivers_cc26x0r2.aem3 : SPICC26XXDMA.oem3 (.text:SPICC26XXDMA_transferCallback)
ICall_msecs2Ticks         $Tramp$TT$S$$ICall_msecs2Ticks
   000149d1     00003cc4     00000b08   icall.obj (.text:ICall_setTimerMSecs)
ICall_setTimer            $Tramp$TT$S$$ICall_setTimer
   00010309     00003ccc     00000b22   icall.obj (.text:ICall_setTimerMSecs)
Power_releaseDependency   $Tramp$TT$S$$Power_releaseDependency
   000106c5     00003cd4     00000b56   drivers_cc26x0r2.aem3 : UDMACC26XX.oem3 (.text:UDMACC26XX_close)
ICall_searchTask          $Tramp$TT$S$$ICall_searchTask
   00014229     00003cdc     00000ba2   icall.obj (.text:ICall_primRepostSync)
ti_sysbios_knl_Event_post__E  $Tramp$TT$S$$ti_sysbios_knl_Event_post__E
   00013899     00003ce4     00000bc4   icall.obj (.text:ICall_primRepostSync)
                             0000321a   app_ble_peripheral.obj (.text:SimpleBLEPeripheral_clockHandler)
                             0000327e   app_ble_peripheral.obj (.text:app_ble_post_event)
                             000032e2   peripheral.obj (.text:gapRole_setEvent)
                             000033e4   icall.obj (.text:ICall_signal)
OADTarget_disableCache    $Tramp$TT$S$$OADTarget_disableCache
   00016501     00003cec     00000c0e   oad_target_internal_flash.obj (.text:OADTarget_writeFlash)
PINCC26XX_setIoCfg        $Tramp$TT$S$$PINCC26XX_setIoCfg
   0000f7f1     00003cf4     00000c5a   drivers_cc26x0r2.aem3 : PINCC26XX.oem3 (.text:PIN_setConfig)
memcpy                    $Tramp$TT$S$$memcpy
   000117b9     00003cfc     00000d1e   app_action.obj (.text:app_action_set_config)
                             00001e9e   app_lf.obj (.text:app_lf_rx_set_config)
                             0000349e   driverlib.lib : rfc.obj (.text:NOROM_RFCRfTrimSet)
                             00003718   rtsv7M3_T_le_eabi.lib : copy_decompress_none.obj (.text:decompress:none)
as393x_read_regs          $Tramp$TT$S$$as393x_read_regs
   0001171d     00003d04     00000d44   as393x.obj (.text:as393x_check)
                             00001ed2   as393x.obj (.text:as393x_read_reg)
LL_RxIgnoredCback         $Tramp$TT$S$$LL_RxIgnoredCback
   0000c411     00003d0c     00000d7c   cc2640_ll_pxxx_sc.a : ll_isr.o (.text)
LL_RxEntryDoneCback       $Tramp$TT$S$$LL_RxEntryDoneCback
   0000c941     00003d14     00000d84   cc2640_ll_pxxx_sc.a : ll_isr.o (.text)
LL_LastCmdDoneCback       $Tramp$TT$S$$LL_LastCmdDoneCback
   0000aafd     00003d1c     00000d8e   cc2640_ll_pxxx_sc.a : ll_isr.o (.text)
hciInitEventMasks         $Tramp$TT$L$PI$$hciInitEventMasks
   1000ba41     00003d24     00000de8   cc26xx_hci_tl_none.a : hci_tl.o (.text)
Util_rescheduleClock      $Tramp$TT$S$$Util_rescheduleClock
   00014355     00003d2c     00000e6a   clocks.obj (.text:rtca_set_interval_msec)
                             00002116   clocks.obj (.text:timer_set_period)
CommonROM_Init            $Tramp$TT$S$$CommonROM_Init
   00010e47     00003d34     00000eee   simple_peripheral_cc2640r2lp_stack_library.lib : icall_startup.obj (.text:startup_entry)
stack_main                $Tramp$TT$S$$stack_main
   00014911     00003d3c     00000ef8   simple_peripheral_cc2640r2lp_stack_library.lib : icall_startup.obj (.text:startup_entry)
xdc_runtime_Core_constructObject__I  $Tramp$TT$S$$xdc_runtime_Core_constructObject__I
   00016361     00003d44     00000f5a   app_ble_pem3.oem3 (.text:ti_sysbios_family_arm_m3_Hwi_construct)
                             00000fc2   app_ble_pem3.oem3 (.text:ti_sysbios_knl_Swi_construct)
                             0000105e   app_ble_pem3.oem3 (.text:ti_sysbios_knl_Task_construct)
                             00001424   app_ble_pem3.oem3 (.text:ti_sysbios_knl_Clock_construct)
                             00001484   app_ble_pem3.oem3 (.text:ti_sysbios_knl_Semaphore_construct)
                             0000191a   app_ble_pem3.oem3 (.text:ti_sysbios_knl_Queue_construct)
ti_sysbios_family_arm_m3_Hwi_Instance_init__E  $Tramp$TT$S$$ti_sysbios_family_arm_m3_Hwi_Instance_init__E
   00012605     00003d4c     00000f68   app_ble_pem3.oem3 (.text:ti_sysbios_family_arm_m3_Hwi_construct)
ti_sysbios_knl_Swi_Instance_init__E  $Tramp$TT$S$$ti_sysbios_knl_Swi_Instance_init__E
   000159c9     00003d54     00000fce   app_ble_pem3.oem3 (.text:ti_sysbios_knl_Swi_construct)
ti_sysbios_knl_Swi_schedule__I  $Tramp$TT$S$$ti_sysbios_knl_Swi_schedule__I
   000155a9     00003d5c     00000ffe   sysbios.aem3 : BIOS.obj (.text:ti_sysbios_knl_Swi_restore__E)
PIN_open                  $Tramp$TT$S$$PIN_open
   000118ed     00003d64     000010b2   gpioc.obj (.text:Bordainfant_initGeneral)
GATTServApp_WriteAttr     $Tramp$TT$S$$GATTServApp_WriteAttr
   00013225     00003d6c     00001274   cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
                             0000263a                             : gattservapp.o (.text)
ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E  $Tramp$TT$S$$ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E
   000168fb     00003d74     00001356   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
GATT_RegisterService      $Tramp$TT$L$PI$$GATT_RegisterService
   1000fb09     00003d7c     00001572   cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
gattServApp_RegisterServiceCBs  $Tramp$TT$L$PI$$gattServApp_RegisterServiceCBs
   10010881     00003d84     00001580   cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
scifInitIo                $Tramp$TT$S$$scifInitIo
   00012579     00003d8c     000015c4   scif.obj (.text:scifTaskResourceInit)
                             000015d2   scif.obj (.text:scifTaskResourceInit)
                             000015e0   scif.obj (.text:scifTaskResourceInit)
ti_sysbios_family_arm_m3_TaskSupport_buildTaskStack  $Tramp$TT$S$$ti_sysbios_family_arm_m3_TaskSupport_buildTaskStack
   00015d19     00003d94     0000160e   sysbios.aem3 : BIOS.obj (.text:ti_sysbios_family_arm_m3_TaskSupport_start__E)
osal_bm_alloc             $Tramp$TT$S$$osal_bm_alloc
   00016d01     00003d9c     00001730   simple_peripheral_cc2640r2lp_stack_library.lib : ble_dispatch_lite.obj (.text:bleDispatch_BMAlloc)
L2CAP_bm_alloc            $Tramp$TT$L$PI$$L2CAP_bm_alloc
   1001542d     00003da4     00001736   simple_peripheral_cc2640r2lp_stack_library.lib : ble_dispatch_lite.obj (.text:bleDispatch_BMAlloc)
GATT_bm_alloc             $Tramp$TT$L$PI$$GATT_bm_alloc
   10018405     00003dac     00001746   simple_peripheral_cc2640r2lp_stack_library.lib : ble_dispatch_lite.obj (.text:bleDispatch_BMAlloc)
linkDB_State              $Tramp$TT$L$PI$$linkDB_State
   10017fb1     00003db4     0000175a   cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
gattServApp_ClearPrepareWriteQ  $Tramp$TT$S$$gattServApp_ClearPrepareWriteQ
   00016049     00003dbc     00001768   cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
HCI_LE_ClearWhiteListCmd  $Tramp$TT$L$PI$$HCI_LE_ClearWhiteListCmd
   1000ada9     00003dc4     000017a6   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgr_SyncWhiteList)
HCI_LE_AddWhiteListCmd    $Tramp$TT$L$PI$$HCI_LE_AddWhiteListCmd
   1000adc9     00003dcc     000017be   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgr_SyncWhiteList)
SimpleBLEPeripheral_processStateChangeEvt  $Tramp$TT$S$$SimpleBLEPeripheral_processStateChangeEvt
   0000c5d1     00003dd4     000019be   app_ble_peripheral.obj (.text:SimpleBLEPeripheral_processAppMsg)
SimpleBLEPeripheral_processCharValueChangeEvt  $Tramp$TT$S$$SimpleBLEPeripheral_processCharValueChangeEvt
   000165cd     00003ddc     000019c8   app_ble_peripheral.obj (.text:SimpleBLEPeripheral_processAppMsg)
icall_directAPI           $Tramp$TT$S$$icall_directAPI
   000115e1     00003de4     00001a42   devinfoservice.obj (.text:DevInfo_AddService)
                             00001b0a   oad_reset_service.obj (.text:Reset_addService)
gapRole_SetupGAP          $Tramp$TT$S$$gapRole_SetupGAP
   00015c35     00003dec     00001a6c   peripheral.obj (.text:GAPRole_StartDevice)
osal_msg_receive          $Tramp$TT$S$$osal_msg_receive
   00013829     00003df4     00001c22   simple_peripheral_cc2640r2lp_stack_library.lib : ble_dispatch_lite.obj (.text:ble_dispatch_liteProcess)
icall_liteTranslation     $Tramp$TT$S$$icall_liteTranslation
   000163a9     00003dfc     00001c28   simple_peripheral_cc2640r2lp_stack_library.lib : ble_dispatch_lite.obj (.text:ble_dispatch_liteProcess)
ti_sysbios_knl_Task_schedule__I  $Tramp$TT$S$$ti_sysbios_knl_Task_schedule__I
   00015d65     00003e04     00001cee   sysbios.aem3 : BIOS.obj (.text:ti_sysbios_knl_Task_restore__E)
                             000025b8                : BIOS.obj (.text:ti_sysbios_knl_Task_restoreHwi__E)
                             00002a7c                : BIOS.obj (.text:ti_sysbios_knl_Task_enter__I)
GPTimerCC26XX_stop        $Tramp$TT$S$$GPTimerCC26XX_stop
   00014e95     00003e0c     00001d12   clocks.obj (.text:timer_get_count)
GPTimerCC26XX_close       $Tramp$TT$S$$GPTimerCC26XX_close
   00011221     00003e14     00001d1a   clocks.obj (.text:timer_get_count)
postDirImmCmd             $Tramp$TT$S$$postDirImmCmd
   000161f9     00003e1c     00001e40   RFCC26XX_singleMode.obj (.text:RF_runDirectCmd)
                             00001e64   RFCC26XX_singleMode.obj (.text:RF_runImmediateCmd)
crc16_calculate           $Tramp$TT$S$$crc16_calculate
   0001219d     00003e24     00001f0a   crc16.obj (.text:crc16_check)
ti_sysbios_family_arm_cc26xx_Timer_start__E  $Tramp$TT$S$$ti_sysbios_family_arm_cc26xx_Timer_start__E
   000136cd     00003e2c     000020a0   sysbios.aem3 : BIOS.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_startup__E)
gattServApp_FindCharCfgItem  $Tramp$TT$S$$gattServApp_FindCharCfgItem
   00015979     00003e34     0000212a   gattservapp_util.obj (.text:GATTServApp_ReadCharCfg)
GAPRole_SetParameter      $Tramp$TT$S$$GAPRole_SetParameter
   000075e9     00003e3c     00002170   app_ble_peripheral.obj (.text:app_ble_stop_adv)
                             0000217c   app_ble_peripheral.obj (.text:app_ble_stop_adv)
scifUninitIo              $Tramp$TT$S$$scifUninitIo
   000151ad     00003e44     000021ac   scif.obj (.text:scifTaskResourceUninit)
                             000021b6   scif.obj (.text:scifTaskResourceUninit)
                             000021c0   scif.obj (.text:scifTaskResourceUninit)
ICallPlatform_pwrDispenseImpl  $Tramp$TT$S$$ICallPlatform_pwrDispenseImpl
   000169f9     00003e4c     00002220   icall_cc2650.obj (.text:ICallPlatform_pwrDispense)
ICallPlatform_pwrRequireImpl  $Tramp$TT$S$$ICallPlatform_pwrRequireImpl
   00016a39     00003e54     00002240   icall_cc2650.obj (.text:ICallPlatform_pwrRequire)
abortCmd                  $Tramp$TT$S$$abortCmd
   0000a05d     00003e5c     000022e2   RFCC26XX_singleMode.obj (.text:RF_flushCmd)
                             000027ce   RFCC26XX_singleMode.obj (.text:RF_cancelCmd)
getCmd                    $Tramp$TT$S$$getCmd
   00014021     00003e64     000022f4   RFCC26XX_singleMode.obj (.text:RF_getCmdOp)
llProcessTxData           $Tramp$TT$L$PI$$llProcessTxData
   100086dd     00003e6c     0000237c   cc2640_ll_pxxx_sc.a : ll_isr.o (.text)
Power_setDependency       $Tramp$TT$S$$Power_setDependency
   0001083d     00003e74     000023e2   TRNGCC26XX.obj (.text:openTRNG)
PIN_remove                $Tramp$TT$S$$PIN_remove
   00014f45     00003e7c     000025da   drivers_cc26x0r2.aem3 : PINCC26XX.oem3 (.text:PIN_close)
as393x_write_regs         $Tramp$TT$S$$as393x_write_regs
   00011b4d     00003e84     0000261c   as393x.obj (.text:as393x_write_reg)
GGS_SetParameter          $Tramp$TT$S$$GGS_SetParameter
   00012719     00003e8c     00002676   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondSetupPrivFlag)
NVOCOP_writeItem          $Tramp$TT$S$$NVOCOP_writeItem
   0000e9c5     00003e94     00002694   simple_peripheral_cc2640r2lp_stack_library.lib : osal_snv_wrapper.obj (.text:osal_snv_write)
app_get_timestamp         $Tramp$TT$S$$app_get_timestamp
   00016bf9     00003e9c     00002830   app_timespan.obj (.text:app_timespan_update)
xdc_runtime_Memory_alloc__E  $Tramp$TT$S$$xdc_runtime_Memory_alloc__E
   00013cd9     00003ea4     00002ad0   sysbios.aem3 : BIOS.obj (.text:xdc_runtime_Memory_valloc__E)
memset                    $Tramp$TT$S$$memset
   000130c3     00003eac     00002adc   sysbios.aem3 : BIOS.obj (.text:xdc_runtime_Memory_valloc__E)
                             000038c8   rtsv7M3_T_le_eabi.lib : copy_zero_init.obj (.text:decompress:ZI)
                             00003bac   simple_peripheral_cc2640r2lp_stack_library.lib : osal.obj (.text:osal_memset)
ICallPlatform_pwrUpdActivityCounter  $Tramp$TT$S$$ICallPlatform_pwrUpdActivityCounter
   00011855     00003eb4     00002b44   icall.obj (.text:ICall_pwrUpdActivityCounter)
app_action_get_action     $Tramp$TT$S$$app_action_get_action
   000157e1     00003ebc     00002b62   app_action.obj (.text:app_action_get_config)
                             000034e2   app_action.obj (.text:app_action_get)
NVOCOP_compactNV          $Tramp$TT$S$$NVOCOP_compactNV
   00016ab9     00003ec4     00002b94   simple_peripheral_cc2640r2lp_stack_library.lib : osal_snv_wrapper.obj (.text:osal_snv_compact)
PINCC26XX_getConfig       $Tramp$TT$S$$PINCC26XX_getConfig
   00016af9     00003ecc     00002c62   drivers_cc26x0r2.aem3 : PINCC26XX.oem3 (.text:PIN_getConfig)
osal_bm_free              $Tramp$TT$S$$osal_bm_free
   000154ad     00003ed4     00002d02   simple_peripheral_cc2640r2lp_stack_library.lib : ble_dispatch_lite.obj (.text:bleDispatch_BMFree)
main                      $Tramp$TT$S$$main
   00012f49     00003edc     00002df0   rtsv7M3_T_le_eabi.lib : args_main.obj (.text)
ti_sysbios_knl_Swi_post__E  $Tramp$TT$S$$ti_sysbios_knl_Swi_post__E
   00016831     00003ee4     00002efc   sysbios.aem3 : BIOS.obj (.text:ti_sysbios_knl_Swi_or__E)
                             00003396   app_ble_pem3.oem3 (.text:ti_sysbios_knl_Clock_doTick__I)
gapBondMgrEraseBonding    $Tramp$TT$S$$gapBondMgrEraseBonding
   0000e3f5     00003eec     00002fd8   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrEraseAllBondings)
ti_sysbios_knl_Clock_startI__E  $Tramp$TT$S$$ti_sysbios_knl_Clock_startI__E
   000140f1     00003ef4     000030b6   sysbios.aem3 : BIOS.obj (.text:ti_sysbios_knl_Clock_start__E)
app_ble_add_status        $Tramp$TT$S$$app_ble_add_status
   00010c51     00003efc     00003296   app_error.obj (.text:app_error_add_info)
GAPBondMgr_syncResolvingList  $Tramp$TT$S$$GAPBondMgr_syncResolvingList
   00012cb5     00003f04     000032ce   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgr_gapIdle)
writeWord                 $Tramp$TT$S$$writeWord
   000127a1     00003f0c     0000335e   simple_peripheral_cc2640r2lp_stack_library.lib : osal_snv_wrapper.obj (.text:setActivePage)
                             000035c2                                                  : osal_snv_wrapper.obj (.text:setXferPage)
ti_sysbios_family_arm_m3_Hwi_initStacks__E  $Tramp$TT$S$$ti_sysbios_family_arm_m3_Hwi_initStacks__E
   000162d1     00003f14     0000337e   sysbios.aem3 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_switchFromBootStack__E)
ICall_heapFree            $Tramp$TT$S$$ICall_heapFree
   00016a79     00003f1c     000033d4   icall.obj (.text:ICall_freeMsg)
                             000037d6   icall.obj (.text:ICall_free)
scifCtrlTasksNbl          $Tramp$TT$S$$scifCtrlTasksNbl
   0000f711     00003f24     0000342e   scif_framework.obj (.text:scifStartTasksNbl)
xdc_runtime_Startup_startMods__I  $Tramp$TT$S$$xdc_runtime_Startup_startMods__I
   0000eed1     00003f2c     00003450   app_ble_pem3.oem3 (.text:xdc_runtime_Startup_exec__I)
ICall_heapMalloc          $Tramp$TT$S$$ICall_heapMalloc
   0000dda9     00003f34     00003462   icall.obj (.text:ICall_malloc)
LL_PseudoRand             $Tramp$TT$L$PI$$LL_PseudoRand
   10004ac1     00003f3c     000034be   simple_peripheral_cc2640r2lp_stack_library.lib : onboard.obj (.text:Onboard_rand)
llResetRadio              $Tramp$TT$L$PI$$llResetRadio
   10007071     00003f44     00003544   cc2640_ll_pxxx_sc.a : ll_isr.o (.text)
Util_restartClock         $Tramp$TT$S$$Util_restartClock
   00015ed9     00003f4c     000035b2   clocks.obj (.text:rtca_reset)
decActiveClientCnt        $Tramp$TT$S$$decActiveClientCnt
   000114a1     00003f54     000038ba   RFCC26XX_singleMode.obj (.text:clkInactivityFxn)
cbTimerSetup              $Tramp$TT$S$$cbTimerSetup
   00011035     00003f5c     000038ea   simple_peripheral_cc2640r2lp_stack_library.lib : osal_cbtimer.obj (.text:osal_CbTimerStart)
SPICC26XXDMA_initHw       $Tramp$TT$S$$SPICC26XXDMA_initHw
   00015309     00003f64     00003948   drivers_cc26x0r2.aem3 : SPICC26XXDMA.oem3 (.text:spiPostNotify)
xdc_runtime_Core_assignParams__I  $Tramp$TT$S$$xdc_runtime_Core_assignParams__I
   00016319     00003f6c     00003960   app_ble_pem3.oem3 (.text:ti_sysbios_family_arm_m3_Hwi_Params__init__S)
                             0000399c   app_ble_pem3.oem3 (.text:ti_sysbios_knl_Clock_Params__init__S)
                             000039f0   app_ble_pem3.oem3 (.text:ti_sysbios_knl_Semaphore_Params__init__S)
                             00003a14   app_ble_pem3.oem3 (.text:ti_sysbios_knl_Swi_Params__init__S)
                             00003a38   app_ble_pem3.oem3 (.text:ti_sysbios_knl_Task_Params__init__S)
abort                     $Tramp$TT$S$$abort
   00015505     00003f74     00003a94   icall.obj (.text:ICall_abort)
ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E  $Tramp$TT$S$$ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E
   000167ed     00003f7c     00003ad2   scif_framework.obj (.text:osalEnableCtrlReadyInt)
                             00003ae6   scif_framework.obj (.text:scifOsalEnableTaskAlertInt)
ti_sysbios_knl_Swi_restoreHwi__E  $Tramp$TT$S$$ti_sysbios_knl_Swi_restoreHwi__E
   00014159     00003f84     00003b34   sysbios.aem3 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_doSwiRestore__I)
cryptoTransactionExecute  $Tramp$TT$S$$cryptoTransactionExecute
   00009e11     00003f8c     00003b4a   drivers_cc26x0r2.aem3 : CryptoCC26XX.oem3 (.text:CryptoCC26XX_transact)
                             00003b50                         : CryptoCC26XX.oem3 (.text:CryptoCC26XX_transactPolling)
NVOCOP_initNV             $Tramp$TT$S$$NVOCOP_initNV
   00015b51     00003f94     00003bb0   simple_peripheral_cc2640r2lp_stack_library.lib : osal_snv_wrapper.obj (.text:osal_snv_init)
ti_sysbios_knl_Task_startCore__E  $Tramp$TT$S$$ti_sysbios_knl_Task_startCore__E
   00014ddd     00003f9c     00003bf8   sysbios.aem3 : BIOS.obj (.text:ti_sysbios_knl_Task_startup__E)
linkDB_Role               $Tramp$TT$L$PI$$linkDB_Role
   10017fd5     00012f20     00012eb4   cc26xx_gap_pxxx_sc.a : gap_linkmgr.o (.text)
linkDB_Remove             $Tramp$TT$L$PI$$linkDB_Remove
   10017e91     00012f28     00012ed2   cc26xx_gap_pxxx_sc.a : gap_linkmgr.o (.text)
disconnectNext            $Tramp$TT$L$PI$$disconnectNext
   10011c8d     00012f30     00012ee6   cc26xx_gap_pxxx_sc.a : gap_linkmgr.o (.text)
sendTerminateEvent        $Tramp$TT$L$PI$$sendTerminateEvent
   10011bf9     00012f38     00012efc   cc26xx_gap_pxxx_sc.a : gap_linkmgr.o (.text)
gapFreeAuthLink           $Tramp$TT$L$PI$$gapFreeAuthLink
   10011dc1     00012f40     00012f0a   cc26xx_gap_pxxx_sc.a : gap_linkmgr.o (.text)
gattServApp_FindWriteAttrCB  $Tramp$TT$L$PI$$gattServApp_FindWriteAttrCB
   10011499     0001329c     00013240   cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
llVerifyConnParamReqParams  $Tramp$TT$L$PI$$llVerifyConnParamReqParams
   10008e45     00013568     00013558   cc2640_ll_pxxx_sc.a : ll_common.o (.text)
GAP_Bond                  $Tramp$TT$L$PI$$GAP_Bond
   1001187d     00013820     00013812   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrBondReq)
gattServApp_SetNumPrepareWrites  $Tramp$TT$L$PI$$gattServApp_SetNumPrepareWrites
   100107d1     00014d0c     00014ce4   cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
GATT_RegisterForReq       $Tramp$TT$L$PI$$GATT_RegisterForReq
   1000fc09     00014d14     00014cea   cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
linkDB_Register           $Tramp$TT$L$PI$$linkDB_Register
   10017de5     00014d1c     00014cf4   cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
gattServApp_FindPrepareWriteQ  $Tramp$TT$L$PI$$gattServApp_FindPrepareWriteQ
   10011409     00015970     00015926   cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
                             00015930                             : gattservapp.o (.text)
                             00001762                             : gattservapp.o (.text)
llTimeDelta               $Tramp$TT$L$PI$$llTimeDelta
   100197dd     00016040     0001600c   cc2640_ll_pxxx_sc.a : ll_scheduler.o (.text)
GAP_ParamsInit            $Tramp$TT$L$PI$$GAP_ParamsInit
   10018505     000168fc     000168d0   simple_peripheral_cc2640r2lp_stack_library.lib : gap.obj (.text:GAP_DeviceInit)
GAP_SecParamsInit         $Tramp$TT$L$PI$$GAP_SecParamsInit
   10018539     00016904     000168dc   simple_peripheral_cc2640r2lp_stack_library.lib : gap.obj (.text:GAP_DeviceInit)
GAP_PrivacyInit           $Tramp$TT$L$PI$$GAP_PrivacyInit
   10018565     0001690c     000168e2   simple_peripheral_cc2640r2lp_stack_library.lib : gap.obj (.text:GAP_DeviceInit)
GAP_PeriDevMgrInit        $Tramp$TT$L$PI$$GAP_PeriDevMgrInit
   100146b1     00016914     000168e6   simple_peripheral_cc2640r2lp_stack_library.lib : gap.obj (.text:GAP_DeviceInit)
GAP_PeriConnRegister      $Tramp$TT$L$PI$$GAP_PeriConnRegister
   1001930d     0001691c     000168ea   simple_peripheral_cc2640r2lp_stack_library.lib : gap.obj (.text:GAP_DeviceInit)
SM_ResponderInit          $Tramp$TT$L$PI$$SM_ResponderInit
   10012dfd     00016924     000168ee   simple_peripheral_cc2640r2lp_stack_library.lib : gap.obj (.text:GAP_DeviceInit)
GAP_RegisterBondMgrCBs    $Tramp$TT$L$PI$$GAP_RegisterBondMgrCBs
   10018b51     000169f0     000169ba   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_Init)
gattServApp_ProcessMsg    $Tramp$TT$L$PI$$gattServApp_ProcessMsg
   10010911     00016cf8     00016cd4   cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
GAP_GetIRK                $Tramp$TT$L$PI$$GAP_GetIRK
   100185a5     00016dd0     00012cc6   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_syncResolvingList)
HCI_LE_ClearResolvingListCmd  $Tramp$TT$L$PI$$HCI_LE_ClearResolvingListCmd
   1000b1b1     00016dd8     00012cc2   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_syncResolvingList)
GATT_Init                 $Tramp$TT$L$PI$$GATT_Init
   1001817d     00016de0     00012a70   simple_peripheral_cc2640r2lp_stack_library.lib : osal_icall_ble.obj (.text:osalInitTasks)
SM_Init                   $Tramp$TT$L$PI$$SM_Init
   100175d9     00016de8     00012a6a   simple_peripheral_cc2640r2lp_stack_library.lib : osal_icall_ble.obj (.text:osalInitTasks)
GAP_Init                  $Tramp$TT$L$PI$$GAP_Init
   10018859     00016df0     00012a64   simple_peripheral_cc2640r2lp_stack_library.lib : osal_icall_ble.obj (.text:osalInitTasks)
L2CAP_Init                $Tramp$TT$L$PI$$L2CAP_Init
   100179c9     00016df8     00012a5e   simple_peripheral_cc2640r2lp_stack_library.lib : osal_icall_ble.obj (.text:osalInitTasks)
llAddTxDataEntry          $Tramp$TT$L$PI$$llAddTxDataEntry
   1000a4f5     00016e00     00012708   cc2640_ll_pxxx_sc.a : ll_common.o (.text)
LL_ENC_Encrypt            $Tramp$TT$L$PI$$LL_ENC_Encrypt
   10017485     00016e08     00012700   cc2640_ll_pxxx_sc.a : ll_common.o (.text)
LL_TX_bm_alloc            $Tramp$TT$L$PI$$LL_TX_bm_alloc
   10004945     00016e10     00012698   cc2640_ll_pxxx_sc.a : ll_common.o (.text)
L2CAP_SetUserConfig       $Tramp$TT$L$PI$$L2CAP_SetUserConfig
   100192b9     00016e18     000100d8   simple_peripheral_cc2640r2lp_stack_library.lib : ble_user_config.obj (.text:setBleUserConfig)
GAP_SendSlaveSecurityRequest  $Tramp$TT$L$PI$$GAP_SendSlaveSecurityRequest
   100192bd     00016e20     0000f378   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_LinkEst)
GAP_Signable              $Tramp$TT$L$PI$$GAP_Signable
   100116ad     00016e28     0000f318   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_LinkEst)
GATT_bm_free              $Tramp$TT$L$PI$$GATT_bm_free
   10018489     00016e30     0000dd8a   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_ProcessEvent)
                             0001477a   app_ble_peripheral.obj (.text:SimpleBLEPeripheral_processGATTMsg)
                             00016bd6   app_ble_peripheral.obj (.text:SimpleBLEPeripheral_freeAttRsp)
                             00016ce0   cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
                             00002cfc   simple_peripheral_cc2640r2lp_stack_library.lib : ble_dispatch_lite.obj (.text:bleDispatch_BMFree)
GATT_FindHandleUUID       $Tramp$TT$L$PI$$GATT_FindHandleUUID
   1000fd55     00016e38     0000dca8   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_ProcessEvent)
                             000004d8   cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
LL_PRIV_Init              $Tramp$TT$L$PI$$LL_PRIV_Init
   10016cb5     00016e40     0000d3a6   cc2640_ll_pxxx_sc.a : ll.o (.text)
llInitFeatureSet          $Tramp$TT$L$PI$$llInitFeatureSet
   10008621     00016e48     0000d352   cc2640_ll_pxxx_sc.a : ll.o (.text)
llReleaseAllConnId        $Tramp$TT$L$PI$$llReleaseAllConnId
   100082cd     00016e50     0000d342   cc2640_ll_pxxx_sc.a : ll.o (.text)
llConnCleanup             $Tramp$TT$L$PI$$llConnCleanup
   10008479     00016e58     0000d334   cc2640_ll_pxxx_sc.a : ll.o (.text)
LL_ClearWhiteList         $Tramp$TT$L$PI$$LL_ClearWhiteList
   100049d9     00016e60     0000d2da   cc2640_ll_pxxx_sc.a : ll.o (.text)
WL_Init                   $Tramp$TT$L$PI$$WL_Init
   10018b81     00016e68     0000d2d6   cc2640_ll_pxxx_sc.a : ll.o (.text)
llRfInit                  $Tramp$TT$L$PI$$llRfInit
   10006fed     00016e70     0000d2d0   cc2640_ll_pxxx_sc.a : ll.o (.text)
GAP_Authenticate          $Tramp$TT$L$PI$$GAP_Authenticate
   10011701     00016e78     0000d292   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrAuthenticate)
L2CAP_GetMTU              $Tramp$TT$L$PI$$L2CAP_GetMTU
   1001929d     00016e80     0000d19a   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrAuthenticate)
                             00000452   cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
eccRom_genKeys            $Tramp$TT$L$PI$$eccRom_genKeys
   10016c1d     00016e88     0000cf2c   ECCROMCC26XX.obj (.text:ECCROMCC26XX_genKeys)
llCreateRxBuffer          $Tramp$TT$L$PI$$llCreateRxBuffer
   10009371     00016e90     0000caa8   cc2640_ll_pxxx_sc.a : ll_isr.o (.text)
RFHAL_NextDataEntryDone   $Tramp$TT$L$PI$$RFHAL_NextDataEntryDone
   1000a5b1     00016e98     0000ca9c   cc2640_ll_pxxx_sc.a : ll_isr.o (.text)
llProcessSlaveControlPacket  $Tramp$TT$L$PI$$llProcessSlaveControlPacket
   10009609     00016ea0     0000ca90   cc2640_ll_pxxx_sc.a : ll_isr.o (.text)
llCombinePDU              $Tramp$TT$L$PI$$llCombinePDU
   10008c01     00016ea8     0000ca7e   cc2640_ll_pxxx_sc.a : ll_isr.o (.text)
LL_RxDataCompleteCback    $Tramp$TT$L$PI$$LL_RxDataCompleteCback
   10019465     00016eb0     0000ca70   cc2640_ll_pxxx_sc.a : ll_isr.o (.text)
LL_PRIV_UpdateRL          $Tramp$TT$L$PI$$LL_PRIV_UpdateRL
   10016f8d     00016eb8     0000c9ea   cc2640_ll_pxxx_sc.a : ll_isr.o (.text)
LL_ENC_Decrypt            $Tramp$TT$L$PI$$LL_ENC_Decrypt
   100174f9     00016ec0     0000c9d0   cc2640_ll_pxxx_sc.a : ll_isr.o (.text)
RFHAL_GetNextDataEntry    $Tramp$TT$L$PI$$RFHAL_GetNextDataEntry
   1000a5a9     00016ec8     0000c96e   cc2640_ll_pxxx_sc.a : ll_isr.o (.text)
llHaltRadio               $Tramp$TT$L$PI$$llHaltRadio
   10007075     00016ed0     0000c540   cc2640_ll_pxxx_sc.a : ll_isr.o (.text)
LL_PRIV_UpdateExtWLEntry  $Tramp$TT$L$PI$$LL_PRIV_UpdateExtWLEntry
   10017051     00016ed8     0000c4ca   cc2640_ll_pxxx_sc.a : ll_isr.o (.text)
                             0000c54c                       : ll_isr.o (.text)
WL_FindEntry              $Tramp$TT$L$PI$$WL_FindEntry
   10018c51     00016ee0     0000c4ba   cc2640_ll_pxxx_sc.a : ll_isr.o (.text)
                             0000c534                       : ll_isr.o (.text)
llGetMinCI                $Tramp$TT$L$PI$$llGetMinCI
   10008301     00016ee8     0000c352   cc2640_ll_pxxx_sc.a : ll_common.o (.text)
llSortActiveConns         $Tramp$TT$L$PI$$llSortActiveConns
   10008fdd     00016ef0     0000c2ce   cc2640_ll_pxxx_sc.a : ll_common.o (.text)
llRealignConn             $Tramp$TT$L$PI$$llRealignConn
   10009071     00016ef8     0000c284   cc2640_ll_pxxx_sc.a : ll_common.o (.text)
HCI_LE_AddDeviceToResolvingListCmd  $Tramp$TT$L$PI$$HCI_LE_AddDeviceToResolvingListCmd
   1000b16d     00016f00     0000bfcc   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrAddBond)
                             00012cd2                                                  : gapbondmgr.obj (.text:GAPBondMgr_syncResolvingList)
                             00012d14                                                  : gapbondmgr.obj (.text:GAPBondMgr_syncResolvingList)
HCI_LE_RemoveDeviceFromResolvingListCmd  $Tramp$TT$L$PI$$HCI_LE_RemoveDeviceFromResolvingListCmd
   1000b191     00016f08     0000bf22   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:gapBondMgrAddBond)
                             0000e490                                                  : gapbondmgr.obj (.text:gapBondMgrEraseBonding)
eccRom_genSharedSecret    $Tramp$TT$L$PI$$eccRom_genSharedSecret
   10016c65     00016f10     0000bc64   ECCROMCC26XX.obj (.text:ECCROMCC26XX_genDHKey)
gattServApp_FindReadAttrCB  $Tramp$TT$L$PI$$gattServApp_FindReadAttrCB
   10011489     00016f18     0000b6d4   cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
ATT_CompareUUID           $Tramp$TT$L$PI$$ATT_CompareUUID
   10016111     00016f20     0000b616   cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
GATT_FindNextAttr         $Tramp$TT$L$PI$$GATT_FindNextAttr
   1000fe05     00016f28     0000b608   cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
                             0000dcf4   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_ProcessEvent)
                             000004f2   cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
GATT_FindHandle           $Tramp$TT$L$PI$$GATT_FindHandle
   1000fdbd     00016f30     0000b5a8   cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
                             0000b5f2                             : gattservapp.o (.text)
                             00013234                             : gattservapp.o (.text)
gattServApp_FindAuthorizeAttrCB  $Tramp$TT$L$PI$$gattServApp_FindAuthorizeAttrCB
   100114d5     00016f38     0000b524   cc26xx_profiles_pxxx_sc.a : gattservapp.o (.text)
GAP_PasscodeUpdate        $Tramp$TT$L$PI$$GAP_PasscodeUpdate
   10011829     00016f40     0000b3e6   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_ProcessGAPMsg)
GAP_TerminateAuth         $Tramp$TT$L$PI$$GAP_TerminateAuth
   100117c1     00016f48     0000b378   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_ProcessGAPMsg)
linkDB_Find               $Tramp$TT$L$PI$$linkDB_Find
   10017f55     00016f50     0000b350   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_ProcessGAPMsg)
                             0000b42a                                                  : gapbondmgr.obj (.text:GAPBondMgr_ProcessGAPMsg)
                             0000d136                                                  : gapbondmgr.obj (.text:gapBondMgrAuthenticate)
                             00012eac   cc26xx_gap_pxxx_sc.a : gap_linkmgr.o (.text)
                             000156b0   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_UpdateCharCfg)
smDetermineIOCaps         $Tramp$TT$L$PI$$smDetermineIOCaps
   1000f819     00016f58     0000b0f8   cc26xx_sm_pxxx_sc.a : sm_pairing.o (.text)
llHardwareError           $Tramp$TT$L$PI$$llHardwareError
   1000929d     00016f60     0000ac1c   cc2640_ll_pxxx_sc.a : ll_isr.o (.text)
                             0000acb2                       : ll_isr.o (.text)
                             0000c29c                       : ll_common.o (.text)
                             0000c2c6                       : ll_common.o (.text)
                             0000c59c                       : ll_isr.o (.text)
                             0000cab2                       : ll_isr.o (.text)
                             0000353c                       : ll_isr.o (.text)
GAP_NumActiveConnections  $Tramp$TT$L$PI$$GAP_NumActiveConnections
   100188fd     00016f68     00009cec   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_SetParameter)
                             00009d62                                                  : gapbondmgr.obj (.text:GAPBondMgr_SetParameter)
                             00015652                                                  : gapbondmgr.obj (.text:GAPBondMgr_LinkTerm)
linkDB_SecurityModeSCOnly  $Tramp$TT$L$PI$$linkDB_SecurityModeSCOnly
   10018105     00016f70     00009cc6   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_SetParameter)
SM_SetECCRegenerationCount  $Tramp$TT$L$PI$$SM_SetECCRegenerationCount
   1000f551     00016f78     00009ca2   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_SetParameter)
GAP_SetParamValue         $Tramp$TT$L$PI$$GAP_SetParamValue
   100184bd     00016f80     00009c02   simple_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_SetParameter)
llRfSetup                 $Tramp$TT$L$PI$$llRfSetup
   10006f99     00016f88     00009638   cc2640_ll_pxxx_sc.a : ll.o (.text)
HCI_HardwareErrorEvent    $Tramp$TT$L$PI$$HCI_HardwareErrorEvent
   1000bced     00016f90     000095f2   cc2640_ll_pxxx_sc.a : ll.o (.text)
                             00009620                       : ll.o (.text)
LL_PRIV_GenerateRPA       $Tramp$TT$L$PI$$LL_PRIV_GenerateRPA
   10016d71     00016f98     0000958a   cc2640_ll_pxxx_sc.a : ll.o (.text)
                             000095ce                       : ll.o (.text)
LL_PRIV_IsIDA             $Tramp$TT$L$PI$$LL_PRIV_IsIDA
   10016eb5     00016fa0     000094fc   cc2640_ll_pxxx_sc.a : ll.o (.text)
LL_PRIV_FindPeerInRL      $Tramp$TT$L$PI$$LL_PRIV_FindPeerInRL
   10016f19     00016fa8     000094ae   cc2640_ll_pxxx_sc.a : ll.o (.text)
                             00009508                       : ll.o (.text)
                             000095b2                       : ll.o (.text)
LL_PRIV_IsResolvable      $Tramp$TT$L$PI$$LL_PRIV_IsResolvable
   10016ecd     00016fb0     000094a2   cc2640_ll_pxxx_sc.a : ll.o (.text)
                             0000c492                       : ll_isr.o (.text)
                             0000c50a                       : ll_isr.o (.text)
LL_PRIV_IsRPA             $Tramp$TT$L$PI$$LL_PRIV_IsRPA
   10016e89     00016fb8     0000948c   cc2640_ll_pxxx_sc.a : ll.o (.text)
                             0000c486                       : ll_isr.o (.text)
                             0000c4fe                       : ll_isr.o (.text)
LL_PRIV_IsZeroIRK         $Tramp$TT$L$PI$$LL_PRIV_IsZeroIRK
   10016f01     00016fc0     0000947e   cc2640_ll_pxxx_sc.a : ll.o (.text)
                             00009516                       : ll.o (.text)
                             000095c2                       : ll.o (.text)
LL_EnhancedConnectionCompleteCback  $Tramp$TT$L$PI$$LL_EnhancedConnectionCompleteCback
   1000c1c9     00016fc8     0000943a   cc2640_ll_pxxx_sc.a : ll.o (.text)
                             00009550                       : ll.o (.text)
                             00009576                       : ll.o (.text)
llTimeCompare             $Tramp$TT$L$PI$$llTimeCompare
   100197b9     00016fd0     0000927c   cc2640_ll_pxxx_sc.a : ll_scheduler.o (.text)
                             000093b0                       : ll_scheduler.o (.text)
                             0000c3ec                       : ll_common.o (.text)
                             0000e7f2                       : ll_scheduler.o (.text)
                             0000e87a                       : ll_scheduler.o (.text)
                             00016020                       : ll_scheduler.o (.text)
                             0001602e                       : ll_scheduler.o (.text)
llGetCurrentTime          $Tramp$TT$L$PI$$llGetCurrentTime
   100197b1     00016fd8     000091ce   cc2640_ll_pxxx_sc.a : ll_scheduler.o (.text)
                             00009274                       : ll_scheduler.o (.text)
                             00009282                       : ll_scheduler.o (.text)
                             000092ee                       : ll_scheduler.o (.text)
                             000093a8                       : ll_scheduler.o (.text)
                             000093b6                       : ll_scheduler.o (.text)
                             0000c254                       : ll_common.o (.text)
                             000110f6                       : ll_scheduler.o (.text)
                             00016000                       : ll_scheduler.o (.text)
llProcessPostRfOps        $Tramp$TT$L$PI$$llProcessPostRfOps
   1000713d     00016fe0     00009154   cc2640_ll_pxxx_sc.a : ll_scheduler.o (.text)
LL_ENC_Init               $Tramp$TT$L$PI$$LL_ENC_Init
   1001714d     00016fe8     00007532   cc2640_ll_pxxx_sc.a : ll.o (.text)
LL_PRIV_GenerateRSA       $Tramp$TT$L$PI$$LL_PRIV_GenerateRSA
   10016e1d     00016ff0     0000752e   cc2640_ll_pxxx_sc.a : ll.o (.text)
LL_ENC_GenerateTrueRandNum  $Tramp$TT$L$PI$$LL_ENC_GenerateTrueRandNum
   100171e5     00016ff8     00007528   cc2640_ll_pxxx_sc.a : ll.o (.text)

[206 trampolines]
[319 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                                               
00011e3d  AssertHandler                                              
00001484  BoardGpioInitTable                                         
000010ad  Bordainfant_initGeneral                                    
00015501  C$$EXIT                                                    
1000dbf1  COPY                                                       
00010e47  CommonROM_Init                                             
00003af7  CryptoCC26XX_Params_init                                   
00013041  CryptoCC26XX_allocateKey                                   
00001708  CryptoCC26XX_config                                        
00001d75  CryptoCC26XX_hwiIntFxn                                     
00001a09  CryptoCC26XX_init                                          
00000ac1  CryptoCC26XX_loadKey                                       
0000edd9  CryptoCC26XX_open                                          
00003b49  CryptoCC26XX_transact                                      
00003b4f  CryptoCC26XX_transactPolling                               
00016dc1  DefaultAssertCback                                         
00001a31  DevInfo_AddService                                         
0000b705  DevInfo_SetParameter                                       
00013135  ECCROMCC26XX_Params_init                                   
0000baed  ECCROMCC26XX_genDHKey                                      
0000ce19  ECCROMCC26XX_genKeys                                       
000163f1  ECCROMCC26XX_init                                          
20004f80  ECC_DATA$$Base                                             
20005000  ECC_DATA$$Limit                                            
10016795  ECC_allocWorkzone                                          
1001679d  ECC_setWin                                                 
100167a5  ECDSA_sign                                                 
10016941  ECDSA_verif                                                
1000db95  EXPORTOPERAND                                              
20004fd4  EXPW                                                       
20004fc8  EXPX                                                       
20004fcc  EXPY                                                       
20004fd0  EXPZ                                                       
000169b1  GAPBondMgr_Init                                            
0000f29d  GAPBondMgr_LinkEst                                         
00015651  GAPBondMgr_LinkTerm                                        
0000dc59  GAPBondMgr_ProcessEvent                                    
0000b315  GAPBondMgr_ProcessGAPMsg                                   
00010e49  GAPBondMgr_ResolveAddr                                     
00009bad  GAPBondMgr_SetParameter                                    
000026d7  GAPBondMgr_SupportsEnhancedPriv                            
000156a1  GAPBondMgr_UpdateCharCfg                                   
00012cb5  GAPBondMgr_syncResolvingList                               
00009939  GAPRole_GetParameter                                       
00014671  GAPRole_SendUpdateParam                                    
000075e9  GAPRole_SetParameter                                       
00001a59  GAPRole_StartDevice                                        
00015e49  GAPRole_TerminateConnection                                
000005f1  GAPRole_createTask                                         
10011701  GAP_Authenticate                                           
1001187d  GAP_Bond                                                   
100185ad  GAP_ConfigDeviceAddr                                       
000168b9  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                                         
10018565  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                                
00003559  GAP_isPairing                                              
00002845  GATTServApp_AddService                                     
00014cb1  GATTServApp_Init                                           
0001340d  GATTServApp_InitCharCfg                                    
00011c7d  GATTServApp_ProcessCCCWriteReq                             
00016cb9  GATTServApp_ProcessEvent                                   
0000b50d  GATTServApp_ReadAttr                                       
0000211d  GATTServApp_ReadCharCfg                                    
0000155d  GATTServApp_RegisterService                                
00000489  GATTServApp_SendCCCUpdatedEvent                            
20004f60  GATTServApp_TaskID                                         
00002623  GATTServApp_UpdateCharCfg                                  
00013225  GATTServApp_WriteAttr                                      
00016435  GATTServApp_WriteCharCfg                                   
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                                                
00002389  GGS_AddService                                             
00012719  GGS_SetParameter                                           
000037c5  GPTimerCC26XX_Params_init                                  
00011221  GPTimerCC26XX_close                                        
00001674  GPTimerCC26XX_config                                       
00001a81  GPTimerCC26XX_configureDebugStall                          
00003b55  GPTimerCC26XX_getValue                                     
00010609  GPTimerCC26XX_open                                         
00000b65  GPTimerCC26XX_setCaptureEdge                               
00015ab9  GPTimerCC26XX_start                                        
00014e95  GPTimerCC26XX_stop                                         
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                                  
1000b439  HCI_EXT_DecryptCmd                                         
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                                      
00003891  HCI_GAPTaskRegister                                        
1000bced  HCI_HardwareErrorEvent                                     
1000a9b9  HCI_HostBufferSizeCmd                                      
1000a9f1  HCI_HostNumCompletedPktCmd                                 
00000dd5  HCI_Init                                                   
0000389d  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                                       
1000aed9  HCI_LE_EncryptCmd                                          
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                             
0001210d  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                                           
000038a9  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                                               
20002f44  HEAPMGR_SIZE                                               
00002b01  HalFlashGetAddress                                         
00000629  HalFlashRead                                               
00003a89  HalFlashWrite                                              
00003b95  HwiP_disable                                               
00003b67  HwiP_restore                                               
00002209  ICallPlatform_pwrDispense                                  
00002229  ICallPlatform_pwrRequire                                   
00011855  ICallPlatform_pwrUpdActivityCounter                        
00003a93  ICall_abort                                                
00011681  ICall_createRemoteTasks                                    
20001240  ICall_dispatcher                                           
0000f8cd  ICall_enrollService                                        
00002f77  ICall_enterCSImpl                                          
20001238  ICall_enterCriticalSection                                 
00014eed  ICall_fetchMsg                                             
00015e91  ICall_fetchServiceMsg                                      
000037d1  ICall_free                                                 
000033c9  ICall_freeMsg                                              
000122bd  ICall_getEntityId                                          
00016479  ICall_getLocalMsgEntityId                                  
000156f1  ICall_getMaxMSecs                                          
00003aff  ICall_getTicks                                             
00016a79  ICall_heapFree                                             
00010249  ICall_heapInit                                             
0000dda9  ICall_heapMalloc                                           
000139e5  ICall_init                                                 
00002b1b  ICall_leaveCSImpl                                          
2000123c  ICall_leaveCriticalSection                                 
00003459  ICall_malloc                                               
00003469  ICall_pwrDispense                                          
00003479  ICall_pwrRequire                                           
00002b35  ICall_pwrUpdActivityCounter                                
000108f1  ICall_registerApp                                          
000146d1  ICall_searchServiceEntity                                  
00010ba9  ICall_send                                                 
0000013f  ICall_sendServiceMsg                                       
00010309  ICall_setTimer                                             
00000af7  ICall_setTimerMSecs                                        
000033db  ICall_signal                                               
00002f8d  ICall_stopTimer                                            
00012829  ICall_wait                                                 
0000e181  ICall_waitMatch                                            
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                                             
000007e9  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                                         
00003539  LL_DoorbellErrorCback                                      
100172f9  LL_ENC_AES128_Decrypt                                      
1001729d  LL_ENC_AES128_Encrypt                                      
100174f9  LL_ENC_Decrypt                                             
100173f9  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                                       
0000704d  LL_Init                                                    
0000aafd  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                                           
000093f9  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                                   
0000d2a9  LL_Reset                                                   
10019465  LL_RxDataCompleteCback                                     
0000c941  LL_RxEntryDoneCback                                        
0000c411  LL_RxIgnoredCback                                          
100066bd  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                                                  
00002369  LL_TxEntryDoneCback                                        
100061fd  LL_WriteAuthPayloadTimeout                                 
10006335  LL_WriteDefaultDataLen                                     
10019988  LUTC                                                       
100199b8  LUTINCI                                                    
100195dc  LUTJ                                                       
10019a30  LUTOPCODE                                                  
10019970  LUTOPSIGN                                                  
100199a0  LUTSE                                                      
1001973c  LUTSTATE                                                   
000037dd  List_empty                                                 
00003b99  List_head                                                  
00003b9d  List_next                                                  
0000213f  List_put                                                   
00002fa3  List_remove                                                
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                                          
000037e9  NOROM_CPUcpsid                                             
000037f5  NOROM_CPUcpsie                                             
00003b5b  NOROM_CPUdelay                                             
00011ecd  NOROM_CRYPTOAesLoadKey                                     
00001671  NOROM_ChipInfo_GetChipFamily                               
00002c19  NOROM_ChipInfo_GetPackageType                              
00002711  NOROM_FlashProgram                                         
0000272d  NOROM_FlashSectorErase                                     
00001aa9  NOROM_IOCIOIntSet                                          
00003185  NOROM_IOCIOPortPullSet                                     
00003199  NOROM_IOCIOShutdownSet                                     
000031ad  NOROM_IOCIntDisable                                        
000031c1  NOROM_IOCIntEnable                                         
00002249  NOROM_IOCPinTypeGpioInput                                  
00002749  NOROM_IOCPinTypeGpioOutput                                 
00003489  NOROM_IOCPortConfigureSet                                  
00013a51  NOROM_OSCHF_AttemptToSwitchToXosc                          
000164bd  NOROM_OSCHF_SwitchToRcOscTurnOffXosc                       
00001d99  NOROM_OSCHF_TurnOnXosc                                     
0000017d  NOROM_OSC_HPOSCRelativeFrequencyOffsetGet                  
00003801  NOROM_OSC_HPOSCRelativeFrequencyOffsetToRFCoreFormatConvert
00011d13  NOROM_RFCAdi3VcoLdoVoltageMode                             
00002c31  NOROM_RFCCpeIntGetAndClear                                 
00002269  NOROM_RFCDoorbellSendTo                                    
0001340b  NOROM_RFCRTrim                                             
00002289  NOROM_RFCRfTrimRead                                        
00003499  NOROM_RFCRfTrimSet                                         
000001b9  NOROM_RFCSynthPowerDown                                    
0001692d  NOROM_SSIConfigSetExpClk                                   
00010a51  NOROM_SetupTrimDevice                                      
0001428d  NOROM_SysCtrlAdjustRechargeAfterPowerDown                  
0000a8f1  NOROM_SysCtrlSetRechargeBeforePowerDown                    
00013db1  NOROM_SysCtrl_DCDC_VoltageConditionalControl               
000036c9  NOROM_ThisLibraryIsFor_CC26x0R2_HaltIfViolated             
00002c49  NOROM_TimerStallControl                                    
00002765  NOROM_VIMSConfigure                                        
00015b05  NPI_WriteTransport                                         
00016ab9  NVOCOP_compactNV                                           
00015b51  NVOCOP_initNV                                              
00000661  NVOCOP_readItem                                            
0000e9c5  NVOCOP_writeItem                                           
0001e000  NV_FLASH                                                   
000034a9  OADTarget_systemReset                                      
00000c01  OADTarget_writeFlash                                       
20001298  OSAL_timeSeconds                                           
000034b9  Onboard_rand                                               
00013daf  Onboard_soft_reset                                         
00016af9  PINCC26XX_getConfig                                        
00001de1  PINCC26XX_getPinCount                                      
00001710  PINCC26XX_hwAttrs                                          
0000169d  PINCC26XX_setMux                                           
20002260  PIN_HandleTable                                            
200021cc  PIN_NumPins                                                
000142f1  PIN_add                                                    
000025c9  PIN_close                                                  
00002c61  PIN_getConfig                                              
000031d5  PIN_getInputValue                                          
0000c78d  PIN_init                                                   
000118ed  PIN_open                                                   
0000380d  PIN_registerIntCb                                          
00014f45  PIN_remove                                                 
00000c35  PIN_setConfig                                              
00000c69  PIN_setInterrupt                                           
00000699  PIN_setOutputValue                                         
00014a89  PowerCC26XX_RCOSC_clockFunc                                
00008e2d  PowerCC26XX_auxISR                                         
00013abd  PowerCC26XX_calibrate                                      
00001614  PowerCC26XX_config                                         
0000cc81  PowerCC26XX_doCalibrate                                    
00013b29  PowerCC26XX_initiateCalibration                            
000001f5  PowerCC26XX_isStableXOSC_HF                                
200007c8  PowerCC26XX_module                                         
0000f9a1  PowerCC26XX_standbyPolicy                                  
00000231  PowerCC26XX_switchXOSC_HF                                  
00003819  Power_getConstraintMask                                    
00003825  Power_getDependencyCount                                   
000025e7  Power_getTransitionLatency                                 
00002c79  Power_idleFunc                                             
0000e2c1  Power_init                                                 
00001ad1  Power_registerNotify                                       
00000c9d  Power_releaseConstraint                                    
000106c5  Power_releaseDependency                                    
0000110d  Power_setConstraint                                        
0001083d  Power_setDependency                                        
0000e8a1  Power_shutdown                                             
0000a4bd  Power_sleep                                                
000022a9  Power_unregisterNotify                                     
200044f8  RAM_BASE_ADDR                                              
0000178c  RFCC26XX_hwAttrs                                           
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                                    
00002c91  RF_Params_init                                             
000027b9  RF_cancelCmd                                               
000022c9  RF_flushCmd                                                
000022e9  RF_getCmdOp                                                
00011985  RF_getCurrentTime                                          
00011f5d  RF_getInfo                                                 
000152b5  RF_getRssi                                                 
0000383d  RF_get_handle                                              
0000eacd  RF_open                                                    
000112c1  RF_pendCmd                                                 
000096ad  RF_postCmd                                                 
00014ae5  RF_runCmd                                                  
00001e29  RF_runDirectCmd                                            
00001e4d  RF_runImmediateCmd                                         
10004941  ROM_BASE_ADDR                                              
20004504  ROM_FlashJT                                                
00000000  ROM_Flash_JT                                               
000006d1  ROM_Init                                                   
00002fb9  ROM_Spinlock                                               
000031e9  RegisterAssertCback                                        
00016655  ResetISR                                                   
00001af9  Reset_addService                                           
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                                               
0001460f  SM_dhKeyCB                                                 
000149cf  SM_p256KeyCB                                               
00014e39  SPICC26XXDMA_close                                         
00011fed  SPICC26XXDMA_control                                       
000014f4  SPICC26XXDMA_fxnTable                                      
000036e5  SPICC26XXDMA_init                                          
0000def5  SPICC26XXDMA_open                                          
0000bcdd  SPICC26XXDMA_transfer                                      
0000f471  SPICC26XXDMA_transferCancel                                
0000168c  SPI_config                                                 
0000122b  SPI_count                                                  
00001304  SPI_defaultParams                                          
00016b39  SPI_init                                                   
00016b79  SPI_open                                                   
00003a9d  SPI_transfer                                               
1000da81  SQUAREMULTIPLYWORD                                         
00001b49  SafeHapiVoid                                               
1000d2c5  SelectReg                                                  
0000026d  SimpleBLEPeripheral_createTask                             
0000113d  SimpleProfile_AddService                                   
00013481  SimpleProfile_GetParameter                                 
00002309  SimpleProfile_RegisterAppCBs                               
000103c9  SimpleProfile_SetParameter                                 
20004f04  SysBootMsg                                                 
20004fe4  TMP1                                                       
20004fe8  TMP2                                                       
20004fec  TMP3                                                       
20004ff0  TMP4                                                       
20004ff4  TMP5                                                       
20004ff8  TMP6                                                       
00001790  TRNGCC26XXHWAttrs                                          
00001624  TRNGCC26XX_config                                          
000109a1  TRNGCC26XX_getNumber                                       
0000116d  TRNGCC26XX_init                                            
0001535d  TRNGCC26XX_isParamValid                                    
00001b71  TRNGCC26XX_open                                            
00001204  TxPowerTable                                               
00000b2d  UDMACC26XX_close                                           
00001718  UDMACC26XX_config                                          
00003aa7  UDMACC26XX_hwiIntFxn                                       
00013b95  UDMACC26XX_open                                            
00014791  Util_constructClock                                        
00003239  Util_constructQueue                                        
00001b99  Util_dequeueMsg                                            
0001696f  Util_enqueueMsg                                            
000027d5  Util_isActive                                              
00014355  Util_rescheduleClock                                       
00015ed9  Util_restartClock                                          
0000324d  Util_startClock                                            
00003261  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__                                                    
0000006c  __ISA__                                                    
0000007e  __PLAT__                                                   
20003ff0  __STACK_END                                                
00000200  __STACK_SIZE                                               
20003ff0  __STACK_TOP                                                
000000a5  __TARG__                                                   
00000330  __TI_CINIT_Base                                            
00000360  __TI_CINIT_Limit                                           
000002f8  __TI_Handler_Table_Base                                    
00000304  __TI_Handler_Table_Limit                                   
00011401  __TI_auto_init                                             
20001208  __TI_cleanup_ptr                                           
00013fb9  __TI_decompress_lzss                                       
0000370f  __TI_decompress_none                                       
2000120c  __TI_dtors_ptr                                             
20001210  __TI_enable_exit_profile_output                            
ffffffff  __TI_pprof_out_hndl                                        
ffffffff  __TI_prof_data_size                                        
ffffffff  __TI_prof_data_start                                       
00000000  __TI_static_base__                                         
000038c1  __TI_zero_init                                             
000000ca  __TRDR__                                                   
0000269b  __aeabi_llsr                                               
00002df9  __aeabi_lmul                                               
000130bb  __aeabi_memclr                                             
000130bb  __aeabi_memclr4                                            
000130bb  __aeabi_memclr8                                            
000117b9  __aeabi_memcpy                                             
000117b9  __aeabi_memcpy4                                            
000117b9  __aeabi_memcpy8                                            
000130bd  __aeabi_memset                                             
000130bd  __aeabi_memset4                                            
000130bd  __aeabi_memset8                                            
0000b8f9  __aeabi_uldivmod                                           
ffffffff  __binit__                                                  
ffffffff  __c_args__                                                 
200000c8  __ccfg                                                     
10019afe  __checksum                                                 
10004940  __checksum_begin                                           
10019afd  __checksum_end                                             
000081d7  __checksum_value                                           
10019a1d  __exit                                                     
20003df0  __stack                                                    
00002de1  _args_main                                                 
00016655  _c_int00                                                   
20001284  _lock                                                      
00003323  _nop                                                       
0000331b  _register_lock                                             
00003315  _register_unlock                                           
20001288  _unlock                                                    
00015505  abort                                                      
20004f00  activeConns                                                
10019a40  advChan                                                    
20004a20  advCmd                                                     
20004ae4  advDataEntry                                               
20004da4  advDataQueue                                               
10019a10  advEvt2Cmd                                                 
10019a28  advEvt2State                                               
20004f10  advInfo                                                    
20004db4  advOutput                                                  
20004bf4  advParam                                                   
00000080  advPktSuffix                                               
20001388  appAssertCback                                             
200045a7  appTaskID                                                  
00001776  appTxPwrTbl                                                
00000cd1  app_action_do_set_conf                                     
0000e651  app_action_excite                                          
000034d9  app_action_get                                             
00002b4f  app_action_get_config                                      
000147f1  app_action_init                                            
00000d05  app_action_set_config                                      
00010afd  app_alert_init                                             
00014f9d  app_battery_get_level                                      
00010c51  app_ble_add_status                                         
00014ff5  app_ble_begin_match                                        
000034e9  app_ble_get_config                                         
00003275  app_ble_post_event                                         
000123d5  app_ble_set_config                                         
00012461  app_ble_set_mac                                            
000128ad  app_button_event                                           
00015831  app_button_fill                                            
000148b1  app_button_init                                            
000036f3  app_button_wakeup_enable                                   
00014b9d  app_error_add                                              
00003289  app_error_add_info                                         
00003861  app_error_get_faults                                       
00002ca9  app_error_sw_reset                                         
000027f1  app_get_ack                                                
000034f9  app_get_tag_info                                           
00016bf9  app_get_timestamp                                          
00003509  app_get_unique_id                                          
00000709  app_info_do_set_id                                         
000016c9  app_info_init                                              
00015f21  app_led_blink                                              
000153b1  app_led_init                                               
00002349  app_led_shut_down                                          
00000321  app_lf_do_set_conf                                         
0000035d  app_lf_fill                                                
0000fcdd  app_lf_filter                                              
00001e71  app_lf_halt                                                
0000fb45  app_lf_init                                                
00015f69  app_lf_run                                                 
00003519  app_lf_rx_get_config                                       
00001e95  app_lf_rx_set_config                                       
00010cf9  app_match_begin                                            
00001be9  app_match_fill                                             
00010f91  app_match_init                                             
00015881  app_match_try                                              
00003529  app_run_get_config                                         
00015405  app_run_set_config                                         
00015fb1  app_set_match_conf                                         
00013c01  app_set_tag_id                                             
0000280d  app_sleep                                                  
00012dad  app_timespan_fill                                          
00002829  app_timespan_update                                        
000016f5  app_wakeup                                                 
00000ee6  appearanceUUID                                             
000158d1  as393x_calib_timer_cb                                      
0001207d  as393x_cl_dat_cb                                           
00003b11  as393x_get_calib_info                                      
0000f0bd  as393x_init                                                
00016611  as393x_rtc_timer_cb                                        
00000741  as393x_wake_cb                                             
2000128c  assertSubcause                                             
000011fd  assert_failed                                              
10016071  attSendMsg                                                 
10019099  attSendRspMsg                                              
20004e4c  attServerNotifyTxCB                                        
20004f3e  attrLen                                                    
20004fa0  aux64                                                      
20000a6c  baseTaskID                                                 
ffffffff  binit                                                      
20001170  bleAppServiceInfoTable                                     
00001721  bleDispatch_BMAlloc                                        
00002cf1  bleDispatch_BMFree                                         
0000156c  bleStackConfig                                             
0000386d  ble_dispatch_liteInit                                      
00001c11  ble_dispatch_liteProcess                                   
00001698  boardConfig                                                
100199d0  btBaseUUID                                                 
20004f0c  buildInfo                                                  
20004df8  cachedTRNGdata                                             
20000a70  cbTimers                                                   
00001672  charUserDescUUID                                           
000016ea  characterUUID                                              
000016f6  clientCharCfgUUID                                          
00000090  connEvtCutoff                                              
20004f44  connInitialMaxTxOctets                                     
20004f46  connInitialMaxTxTime                                       
20004d5c  connOutput                                                 
20004c84  connReqData                                                
10019a00  const_Rb                                                   
00015ccd  copy_in                                                    
0001219d  crc16_calculate                                            
00001f01  crc16_check                                                
00010781  crc8_calculate                                             
00001634  cryptoCC26XXHWAttrs                                        
20002750  cryptoCC26XXObjects                                        
00001160  cryptoDriverTableBLE                                       
20004ef8  cryptoDrvTblPtr                                            
00000099  cryptoMode                                                 
20004c14  cryptoPRAND                                                
20004f63  ctrlToHostEnable                                           
20004f71  curTxPowerVal                                              
00001850  devInfo11073CertUUID                                       
000016a4  devInfoCBs                                                 
00001852  devInfoFirmwareRevUUID                                     
00001854  devInfoHardwareRevUUID                                     
00001856  devInfoMfrNameUUID                                         
00001858  devInfoModelNumberUUID                                     
0000185a  devInfoPnpIdUUID                                           
0000185c  devInfoSerialNumberUUID                                    
0000185e  devInfoServUUID                                            
00001860  devInfoSoftwareRevUUID                                     
00001862  devInfoSystemIdUUID                                        
20004dec  deviceFeatureSet                                           
00001864  deviceNameUUID                                             
10011c8d  disconnectNext                                             
00001580  driverTable                                                
00002861  driverTable_fnSpinlock                                     
20002f55  driverlib_release_0_48632                                  
20004f1c  dtmInfo                                                    
00001644  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                                             
20004f9c  eccRom_windowSize                                          
20004f88  eccRom_workzone                                            
20004f28  encHandle                                                  
20004f2c  encKey                                                     
20004f24  encParams                                                  
0001550d  exit                                                       
20004f77  fastTxRespTime                                             
200045a8  flowCtrlTaskId                                             
20004e44  fwImmedCmd                                                 
20004e58  fwParCmd                                                   
20004d14  fwParDtmCmd                                                
20004d44  fwParRfCmd                                                 
20004e70  fwParamImmedCmd                                            
20002f56  g_hwiInt                                                   
10018741  gapAddAddrAdj                                              
100149fd  gapAddAdvToken                                             
200045a3  gapAdvAppTaskID                                            
1001476d  gapAllocAdvRecs                                            
200045a2  gapAppTaskID                                               
2000055a  gapBond_lruBondList                                        
20000531  gapBond_removeLRUBond                                      
20000532  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                            
00012ea5  gapProcessDisconnectCompleteEvt                            
10018a11  gapProcessHCICmdCompleteEvt                                
10018709  gapProcessNewAddr                                          
10018909  gapProcessOSALMsg                                          
10011ac1  gapProcessRemoteConnParamReqEvt                            
20004f58  gapProfileRole                                             
10018679  gapReadBD_ADDRStatus                                       
100186bd  gapReadBufSizeCmdStatus                                    
10018b41  gapRegisterCentral                                         
100120f1  gapRegisterCentralConn                                     
10018b49  gapRegisterPeripheral                                      
100120f9  gapRegisterPeripheralConn                                  
200027d0  gapRoleTask                                                
20001ec0  gapRoleTaskStack                                           
000038cd  gapRole_clockHandler                                       
10014be5  gapSendAdDataUpdateEvent                                   
10011e25  gapSendBondCompleteEvent                                   
100187e9  gapSendDeviceInitDoneEvent                                 
10014c1d  gapSendEndDiscoverableEvent                                
10011c35  gapSendLinkUpdateEvent                                     
10014ba1  gapSendMakeDiscEvent                                       
10011e81  gapSendPairingReqEvent                                     
1001194d  gapSendSignUpdateEvent                                     
10011985  gapSendSlaveSecurityReqEvent                               
00000050  gapServiceCBs                                              
00001866  gapServiceUUID                                             
100147bd  gapSetAdvParams                                            
10014881  gapSetAdvParamsStatus                                      
100195a1  gapSetState                                                
20004f5a  gapState                                                   
20004f5d  gapTaskID                                                  
200045a4  gapUnwantedTaskID                                          
10011919  gapUpdateConnSignCounter                                   
10019535  gapValidADType                                             
10014951  gapWriteAdvDataStatus                                      
100148b1  gapWriteAdvEnableStatus                                    
200045a6  gattAppTaskID                                              
20001180  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                                        
00016049  gattServApp_ClearPrepareWriteQ                             
100108c1  gattServApp_DeregisterServiceCBs                           
00015921  gattServApp_EnqueuePrepareWriteReq                         
100114d5  gattServApp_FindAuthorizeAttrCB                            
10011409  gattServApp_FindPrepareWriteQ                              
10011489  gattServApp_FindReadAttrCB                                 
100108f9  gattServApp_FindServiceCBs                                 
10011499  gattServApp_FindWriteAttrCB                                
0000174d  gattServApp_HandleConnStatusCB                             
1001134d  gattServApp_IsWriteLong                                    
1001143d  gattServApp_PrepareWriteQInUse                             
0000044d  gattServApp_ProcessExchangeMTUReq                          
100112d9  gattServApp_ProcessExecuteWriteReq                         
10010a7d  gattServApp_ProcessFindByTypeValueReq                      
10010911  gattServApp_ProcessMsg                                     
10011205  gattServApp_ProcessPrepareWriteReq                         
10010ddd  gattServApp_ProcessReadBlobReq                             
10010fd5  gattServApp_ProcessReadByGrpTypeReq                        
10010bd5  gattServApp_ProcessReadByTypeReq                           
10010ea9  gattServApp_ProcessReadMultiReq                            
10010d5d  gattServApp_ProcessReadReq                                 
0001441d  gattServApp_ProcessReliableWrites                          
0000125d  gattServApp_ProcessWriteLong                               
10011165  gattServApp_ProcessWriteReq                                
10010881  gattServApp_RegisterServiceCBs                             
000004c5  gattServApp_ResetCharCfg                                   
100107d1  gattServApp_SetNumPrepareWrites                            
10010cd5  gattServApp_buildReadByTypeRsp                             
1001071d  gattServerHandleConnStatusCB                               
100106e1  gattServerHandleTimerCB                                    
100106b9  gattServerNotifyTxCB                                       
100100e9  gattServerProcessMsgCB                                     
1001069d  gattServerStartTimer                                       
0000006c  gattService                                                
100100ad  gattServiceLastHandle                                      
00001868  gattServiceUUID                                            
1001830d  gattStartTimer                                             
10018321  gattStopTimer                                              
100100c9  gattStoreServerInfo                                        
20004f5f  gattTaskID                                                 
10012789  generate_subkey                                            
200028b8  gptimerCC26XXObjects                                       
000016b0  gptimerCC26xxHWAttrs                                       
20001290  halAssertCback                                             
00015e47  halAssertHandler                                           
000023a9  halAssertHandlerExt                                        
000032ed  halAssertInit                                              
000163ef  halAssertSpinlock                                          
20002f52  hciGapTaskID                                               
1000ba41  hciInitEventMasks                                          
20002f51  hciL2capTaskID                                             
20004f62  hciPTMenabled                                              
20002f53  hciSmpTaskID                                               
20002f50  hciTaskID                                                  
20002f54  hciTestTaskID                                              
20003df0  heapEnd                                                    
20002f59  heapStart                                                  
00001080  icallServiceTable                                          
20001390  icallServiceTblPtr                                         
000115e1  icall_directAPI                                            
00002d69  icall_liteMsgParser                                        
20002f57  icall_liteTaskId                                           
000163a9  icall_liteTranslation                                      
20004fb4  inPointX                                                   
20004fb8  inPointY                                                   
20004fb0  inScalar                                                   
20004c6c  initCmd                                                    
20004aac  initDataEntry                                              
20004d84  initDataQueue                                              
20004f18  initInfo                                                   
20004dd4  initOutput                                                 
20004bac  initParam                                                  
00000088  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                                                
2000124c  lastAppOpcodeIdxSent                                       
1001287d  leftshift_onebit                                           
2000128d  legacyMode                                                 
0001222d  lf_rx_begin_receive                                        
000028b5  lf_rx_completed                                            
0000128d  lf_rx_end_receive                                          
00015459  lf_rx_get_rssi                                             
00003ba1  lf_rx_woken_up                                             
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                                                  
00000779  llActiveTask                                               
1000a4f5  llAddTxDataEntry                                           
10015b75  llAdv_TaskAbort                                            
10015559  llAdv_TaskConnect                                          
10015a61  llAdv_TaskEnd                                              
10008d71  llAlignToNextEvent                                         
100080f1  llAllocConnId                                              
000143b9  llAllocTask                                                
100080b9  llAtLeastTwoChans                                          
10008b01  llCBTimer_AptoExpiredCback                                 
1001993d  llCalcScaFactor                                            
10014435  llCheckForLstoDuringSL                                     
100093ad  llCheckRxBuffers                                           
10007205  llCheckWhiteListUsage                                      
10008c01  llCombinePDU                                               
00000000  llConfigTable                                              
10008479  llConnCleanup                                              
10008385  llConnExists                                               
100085a9  llConnTerminate                                            
20004e68  llConns                                                    
100086b9  llConvertCtrlProcTimeoutToEvent                            
10008699  llConvertLstoToEvent                                       
10009371  llCreateRxBuffer                                           
0000329d  llDataGetConnPtr                                           
10007f09  llDequeueCtrlPkt                                           
100154b1  llDirAdv_TaskEnd                                           
10007ead  llEnqueueCtrlPkt                                           
10008691  llEventDelta                                               
10008669  llEventInRange                                             
0000e779  llFindNextSecTask                                          
00015ff9  llFindStartType                                            
10008b81  llFragmentPDU                                              
0000122d  llFreeTask                                                 
10008635  llGenerateCRC                                              
00003885  llGetActiveTasks                                           
000032b1  llGetCurrentTask                                           
100197b1  llGetCurrentTime                                           
10008301  llGetMinCI                                                 
0000c251  llGetNextConn                                              
10007ff5  llGetNextDataChan                                          
00003879  llGetNumTasks                                              
10008fbd  llGetSlowestPhy                                            
000007b1  llGetTask                                                  
00000da1  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                                                
000110d9  llScheduleTask                                             
00009141  llScheduler                                                
00000411  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                                  
00012691  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                                                    
00014e93  llTaskError                                                
20002eb4  llTaskList                                                 
10008f59  llTime2Octets                                              
100197b9  llTimeCompare                                              
100197dd  llTimeDelta                                                
20000efc  llUserConfig                                               
000134f5  llValidateConnParams                                       
10008e45  llVerifyConnParamReqParams                                 
1000876d  llWriteTxData                                              
100092fe  ll_buildRevision                                           
20004a68  localEccKeys                                               
1000e6c9  mADD                                                       
1000dd2d  mINVK                                                      
1000e0f9  mMULT                                                      
1000e8c1  mOUT                                                       
1000dc21  mSET                                                       
1000e7c5  mSUB                                                       
00012f49  main                                                       
2000138c  main_func_sp                                               
20004f7b  maxNumConns                                                
20004f61  maxNumPrepareWrites                                        
20004f6d  maxNumTxDataBufs                                           
20004f6b  maxPduSize                                                 
0000008c  maxPktsPerEvt                                              
20004f72  maxTxPwrForDTM                                             
00001fd9  memcmp                                                     
000117b9  memcpy                                                     
000130c3  memset                                                     
00003ba5  mpu_sleep                                                  
2000459e  nextHandle                                                 
20004f74  numComplPkts                                               
20004f76  numComplPktsFlush                                          
20004f75  numComplPktsLimit                                          
20004f40  numHostBufs                                                
20004f7a  numTxDataBufs                                              
20004f73  onePktPerEvt                                               
000023c9  openTRNG                                                   
000160d9  osalAddTimer                                               
00015c81  osalAdjustTimer                                            
00003b21  osalDeleteTimer                                            
000023e9  osalFindTimer                                              
00012a35  osalInitTasks                                              
000028d1  osalTimerInit                                              
0000efc9  osalTimerUpdate                                            
000028ed  osal_CbTimerInit                                           
00011da9  osal_CbTimerProcessEvent                                   
000038e5  osal_CbTimerStart                                          
00014d25  osal_CbTimerStop                                           
00013c6d  osal_CbTimerUpdate                                         
00000891  osal_alien2proxy                                           
00001c61  osal_bm_adjust_header                                      
00016d01  osal_bm_alloc                                              
000154ad  osal_bm_free                                               
00002d81  osal_buffer_uint32                                         
0000158b  osal_build_uint32                                          
00016d41  osal_clear_event                                           
00002d99  osal_enroll_senderid                                       
20002f58  osal_entity                                                
20000e94  osal_eventloop_hook                                        
00000e09  osal_get_timeoutEx                                         
20000e98  osal_icallMsg_hook                                         
00016121  osal_init_system                                           
00002b69  osal_isbufset                                              
20002ea0  osal_last_timestamp                                        
20000ea4  osal_max_msecs                                             
00003579  osal_mem_alloc                                             
00003589  osal_mem_free                                              
00002409  osal_memcmp                                                
00002db1  osal_memcpy                                                
00002909  osal_memdup                                                
00003bad  osal_memset                                                
00001f25  osal_msg_allocate                                          
00002429  osal_msg_deallocate                                        
00000901  osal_msg_enqueue                                           
00016d81  osal_msg_extract                                           
00001f49  osal_msg_push                                              
00013829  osal_msg_receive                                           
00013659  osal_msg_send                                              
00001c89  osal_next_timeout                                          
00003599  osal_pwrmgr_init                                           
20000e90  osal_qHead                                                 
000034b9  osal_rand                                                  
00002925  osal_revmemcpy                                             
0000c089  osal_run_system                                            
000038f1  osal_self                                                  
00001f6d  osal_service_entry                                         
0000f631  osal_set_event                                             
000038fd  osal_set_icall_hook                                        
00002b83  osal_snv_compact                                           
00003bb1  osal_snv_init                                              
00001f91  osal_snv_read                                              
0000267d  osal_snv_write                                             
00000501  osal_start_reload_timer                                    
00000939  osal_start_system                                          
00016169  osal_start_timerEx                                         
00000971  osal_stop_timerEx                                          
00003bb5  osal_strlen                                                
20000e9c  osal_syncHandle                                            
20000ea0  osal_tickperiod                                            
00003909  osal_timer_init                                            
000150fd  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                                             
20004ecc  pServiceList                                               
10012861  padding                                                    
0000186a  periConnParamUUID                                          
20001244  pfnBMAlloc                                                 
20001248  pfnBMFree                                                  
20004ec4  pfnBondMgrCBs                                              
20004ec0  pfnCentralCBs                                              
20004ea8  pfnCentralConnCBs                                          
20004ed4  pfnClientProcessMsgCB                                      
20004f38  pfnInitiatorCBs                                            
20004ebc  pfnPeripheralCBs                                           
20004eac  pfnPeripheralConnCBs                                       
20004f34  pfnResponderCBs                                            
20004ed0  pfnServerProcessMsgCB                                      
00003739  pin_clear                                                  
00003747  pin_dir_in                                                 
00003755  pin_dir_out                                                
00001fb5  pin_int_disable                                            
0001117d  pin_int_edge                                               
00001855  pin_int_enable                                             
00002941  pin_int_set_callback                                       
00003411  pin_pull_down                                              
00003763  pin_set                                                    
00002fe5  pin_state                                                  
20004f52  postRfOperations                                           
20004ed8  prepareWritesTbl                                           
0000186c  primaryServiceUUID                                         
20004e78  privInfo                                                   
20000ba6  pwrmgr_attribute                                           
20000ba4  pwrmgr_initialized                                         
200045a5  reqTaskId                                                  
000016bc  resetServiceCBs                                            
200045ac  resolvingList                                              
00000fe8  resourceDB                                                 
00000d6d  rfCallback                                                 
20004f54  rfCfgAdiVal                                                
00000078  rfCfgVal                                                   
20004f42  rfCmdHandle                                                
00001034  rfDriverTableBLE                                           
20004ef0  rfDrvTblPtr                                                
20004e50  rfEvent                                                    
20004f6c  rfFeModeBias                                               
20004eec  rfHandle                                                   
20004568  rfMode                                                     
200025c0  rfObject                                                   
00000074  rfOpLoc                                                    
00003549  rfPUpCallback                                              
20001190  rfRegTbl                                                   
20004d2c  rfSetup                                                    
10019afc  romRev                                                     
20004cfc  rsp                                                        
20004f70  rssiCorrection                                             
00003915  rtca_activate                                              
00003921  rtca_deactivate                                            
000144e5  rtca_open                                                  
000035a9  rtca_reset                                                 
00000e3d  rtca_set_interval_msec                                     
20004e88  rxDataQ                                                    
20004f79  rxFifoFlowCtrl                                             
20004ce4  rxModemTestCmd                                             
0000007c  rxPktSuffix                                                
20004e90  rxRingBuf                                                  
20004de0  rxTestOut                                                  
20004d70  rxTestParam                                                
20002820  sbpTask                                                    
20001a3c  sbpTaskStack                                               
20004c9c  scanCmd                                                    
200046ec  scanDataEntry                                              
20004d94  scanDataQueue                                              
20004f14  scanInfo                                                   
20004cb4  scanOutput                                                 
20004bd0  scanParam                                                  
00000084  scanPktSuffix                                              
00000e71  scifAckAlertEvents                                         
00002e11  scifClearAlertIntSource                                    
00001250  scifDriverSetup                                            
0000392d  scifGetAlertEvents                                         
0000ecd9  scifInit                                                   
00012579  scifInitIo                                                 
00003ad9  scifOsalDisableTaskAlertInt                                
00003ae3  scifOsalEnableTaskAlertInt                                 
00003b29  scifOsalEnterCriticalSection                               
00000ea5  scifOsalInit                                               
00003939  scifOsalLeaveCriticalSection                               
0000333d  scifOsalRegisterTaskAlertCallback                          
00015155  scifReinitIo                                               
00016721  scifStartRtcTicks                                          
00000001  scifStartRtcTicksNow                                       
00003423  scifStartTasksNbl                                          
00001881  scifStopRtcTicks                                           
000151ad  scifUninitIo                                               
20004f08  sclkSrc                                                    
0000186e  secondaryServiceUUID                                       
10011cb5  sendAuthEvent                                              
10011b85  sendEstLinkEvent                                           
10011bf9  sendTerminateEvent                                         
20004ec8  serverInfoTbl                                              
20004edc  serviceCBsList                                             
00001870  serviceChangedUUID                                         
000100c1  setBleUserConfig                                           
0000ad09  sfcp_call                                                  
000016c8  simpleProfileCBs                                           
000015d4  simpleProfileServUUID                                      
000015e4  simpleProfilechar1UUID                                     
000015f4  simpleProfilechar2UUID                                     
00001604  simpleProfilechar3UUID                                     
200012a4  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                                        
1000f399  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                                 
0000af15  smSavePairInfo                                             
1000f18d  smSaveRemotePublicKeys                                     
1000f435  smSendDHKeyCheck                                           
1000edf9  smSendFailAndEnd                                           
1000fa39  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                                    
1000ef31  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                               
000014bc  spiCC26XXDMAHWAttrs                                        
200024e0  spiCC26XXDMAObjects                                        
00002e29  spi_deselect                                               
00012fc5  spi_open                                                   
00012ab5  spi_read                                                   
00002e41  spi_select                                                 
00012b35  spi_write                                                  
00014911  stack_main                                                 
00000ed9  startup_entry                                              
00002ffb  strcpy                                                     
00003329  strlen                                                     
100196b8  supportedCmdsTable                                         
20004f4c  supportedMaxRxOctets                                       
20004f4e  supportedMaxRxTime                                         
20004f48  supportedMaxTxOctets                                       
20004f4a  supportedMaxTxTime                                         
20004f20  taskEndAction                                              
20004f50  taskEndStatus                                              
0000118c  tasksArr                                                   
0000187a  tasksCnt                                                   
20002f48  tasksEvents                                                
20004f5b  terminateAllTaskID                                         
20004f5c  terminateReason                                            
20000ed8  ti_sysbios_BIOS_Module__state__V                           
00003bb9  ti_sysbios_BIOS_RtsGateProxy_enter__E                      
00003bbd  ti_sysbios_BIOS_RtsGateProxy_leave__E                      
00003bcd  ti_sysbios_BIOS_RtsGateProxy_query__E                      
0000131d  ti_sysbios_BIOS_atExitFunc__I                              
00003027  ti_sysbios_BIOS_exitFunc__I                                
000035c9  ti_sysbios_BIOS_exit__E                                    
000035d9  ti_sysbios_BIOS_getCpuFreq__E                              
00003951  ti_sysbios_BIOS_getThreadType__E                           
000168fb  ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E          
000005ef  ti_sysbios_BIOS_nullFunc__I                                
00001ffd  ti_sysbios_BIOS_registerRTSLock__I                         
00002021  ti_sysbios_BIOS_removeRTSLock__I                           
00002469  ti_sysbios_BIOS_rtsLock__I                                 
00002e59  ti_sysbios_BIOS_rtsUnlock__I                               
000035e9  ti_sysbios_BIOS_setThreadType__E                           
0000134d  ti_sysbios_BIOS_startFunc__I                               
000035f9  ti_sysbios_BIOS_start__E                                   
00010a51  ti_sysbios_family_arm_cc26xx_Boot_trimDevice               
00002e71  ti_sysbios_family_arm_cc26xx_Timer_Module__startupDone__F  
00002e71  ti_sysbios_family_arm_cc26xx_Timer_Module__startupDone__S  
200012e4  ti_sysbios_family_arm_cc26xx_Timer_Module__state__V        
00002045  ti_sysbios_family_arm_cc26xx_Timer_Module_startup__E       
20000ba8  ti_sysbios_family_arm_cc26xx_Timer_Object__table__V        
00002489  ti_sysbios_family_arm_cc26xx_Timer_dynamicStub__E          
00003609  ti_sysbios_family_arm_cc26xx_Timer_getCount64__E           
000009a9  ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E       
00002069  ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E          
00000f0d  ti_sysbios_family_arm_cc26xx_Timer_initDevice__I           
000021c7  ti_sysbios_family_arm_cc26xx_Timer_postInit__I             
00001079  ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E          
00003bc1  ti_sysbios_family_arm_cc26xx_Timer_setPeriod__E            
000009e1  ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I         
000136cd  ti_sysbios_family_arm_cc26xx_Timer_start__E                
000017b0  ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C        
0000208d  ti_sysbios_family_arm_cc26xx_Timer_startup__E              
000017b4  ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C           
00000a19  ti_sysbios_family_arm_m3_Hwi_Instance_finalize__E          
00012605  ti_sysbios_family_arm_m3_Hwi_Instance_init__E              
2000135a  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A   
20001398  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A  
2000139c  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A    
00001872  ti_sysbios_family_arm_m3_Hwi_Module__id__C                 
200012ec  ti_sysbios_family_arm_m3_Hwi_Module__root__V               
00002e89  ti_sysbios_family_arm_m3_Hwi_Module__startupDone__F        
00002e89  ti_sysbios_family_arm_m3_Hwi_Module__startupDone__S        
20000d6c  ti_sysbios_family_arm_m3_Hwi_Module__state__V              
00016289  ti_sysbios_family_arm_m3_Hwi_Module_startup__E             
000017b8  ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C             
00001324  ti_sysbios_family_arm_m3_Hwi_Object__DESC__C               
00001130  ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C             
000017bc  ti_sysbios_family_arm_m3_Hwi_Object__count__C              
00003365  ti_sysbios_family_arm_m3_Hwi_Object__get__S                
200010b0  ti_sysbios_family_arm_m3_Hwi_Object__table__V              
0000395d  ti_sysbios_family_arm_m3_Hwi_Params__init__S               
000017c0  ti_sysbios_family_arm_m3_Hwi_ccr__C                        
00002979  ti_sysbios_family_arm_m3_Hwi_clearInterrupt__E             
00000f41  ti_sysbios_family_arm_m3_Hwi_construct                     
00002995  ti_sysbios_family_arm_m3_Hwi_destruct                      
00003969  ti_sysbios_family_arm_m3_Hwi_disableFxn__E                 
000167a9  ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E           
00015555  ti_sysbios_family_arm_m3_Hwi_dispatchC__I                  
20002688  ti_sysbios_family_arm_m3_Hwi_dispatchTable                 
0000ff35  ti_sysbios_family_arm_m3_Hwi_dispatch__I                   
00003b31  ti_sysbios_family_arm_m3_Hwi_doSwiRestore__I               
00003b61  ti_sysbios_family_arm_m3_Hwi_doTaskRestore__I              
000167ed  ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E            
000024a9  ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I              
000017c4  ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C             
000024c9  ti_sysbios_family_arm_m3_Hwi_excHandler__I                 
00000041  ti_sysbios_family_arm_m3_Hwi_getStackInfo__E               
00012bb5  ti_sysbios_family_arm_m3_Hwi_initNVIC__E                   
000162d1  ti_sysbios_family_arm_m3_Hwi_initStacks__E                 
000017c8  ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C                
e000e000  ti_sysbios_family_arm_m3_Hwi_nvic                          
00002b9d  ti_sysbios_family_arm_m3_Hwi_pendSV__I                     
00002ea1  ti_sysbios_family_arm_m3_Hwi_plug__E                       
00015205  ti_sysbios_family_arm_m3_Hwi_postInit__I                   
00003619  ti_sysbios_family_arm_m3_Hwi_post__E                       
000017cc  ti_sysbios_family_arm_m3_Hwi_priGroup__C                   
20000000  ti_sysbios_family_arm_m3_Hwi_ramVectors                    
00007010  ti_sysbios_family_arm_m3_Hwi_resetVectors                  
00003b67  ti_sysbios_family_arm_m3_Hwi_restoreFxn__E                 
00002bb5  ti_sysbios_family_arm_m3_Hwi_return                        
00003b6d  ti_sysbios_family_arm_m3_Hwi_setFunc__E                    
000029b1  ti_sysbios_family_arm_m3_Hwi_setPriority__E                
00003b39  ti_sysbios_family_arm_m3_Hwi_startup__E                    
00003379  ti_sysbios_family_arm_m3_Hwi_switchFromBootStack__E        
00003bc5  ti_sysbios_family_arm_m3_TaskSupport_Module__startupDone__S
00015d19  ti_sysbios_family_arm_m3_TaskSupport_buildTaskStack        
00003981  ti_sysbios_family_arm_m3_TaskSupport_getStackAlignment__E  
00003629  ti_sysbios_family_arm_m3_TaskSupport_glue                  
000017d0  ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C     
000015e7  ti_sysbios_family_arm_m3_TaskSupport_start__E              
00003639  ti_sysbios_family_arm_m3_TaskSupport_swap__E               
000026b9  ti_sysbios_family_xxx_Hwi_switchAndRunFunc                 
00000b63  ti_sysbios_gates_GateHwi_Instance_init__E                  
00001274  ti_sysbios_gates_GateHwi_Module__FXNS__C                   
200012f4  ti_sysbios_gates_GateHwi_Module__root__V                   
00001344  ti_sysbios_gates_GateHwi_Object__DESC__C                   
0000150c  ti_sysbios_gates_GateHwi_Object__PARAMS__C                 
0000137d  ti_sysbios_gates_GateHwi_Object__create__S                 
200013a0  ti_sysbios_gates_GateHwi_Object__table__V                  
0000398d  ti_sysbios_gates_GateHwi_enter__E                          
00003b73  ti_sysbios_gates_GateHwi_leave__E                          
00003bc9  ti_sysbios_gates_GateHwi_query__E                          
000017d4  ti_sysbios_gates_GateMutex_Instance_State_sem__O           
000029cd  ti_sysbios_gates_GateMutex_Instance_init__E                
00001298  ti_sysbios_gates_GateMutex_Module__FXNS__C                 
200012fc  ti_sysbios_gates_GateMutex_Module__root__V                 
00001364  ti_sysbios_gates_GateMutex_Object__DESC__C                 
00001524  ti_sysbios_gates_GateMutex_Object__PARAMS__C               
000013ad  ti_sysbios_gates_GateMutex_Object__create__S               
2000102c  ti_sysbios_gates_GateMutex_Object__table__V                
000013dd  ti_sysbios_gates_GateMutex_enter__E                        
00002eb9  ti_sysbios_gates_GateMutex_leave__E                        
00003bcd  ti_sysbios_gates_GateMutex_query__E                        
00002e89  ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S         
0000395d  ti_sysbios_hal_Hwi_HwiProxy_Params__init__S                
00002979  ti_sysbios_hal_Hwi_HwiProxy_clearInterrupt__E              
000167a9  ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E            
00003969  ti_sysbios_hal_Hwi_HwiProxy_disable__E                     
000167ed  ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E             
00000041  ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E                
00003619  ti_sysbios_hal_Hwi_HwiProxy_post__E                        
00003b67  ti_sysbios_hal_Hwi_HwiProxy_restore__E                     
00003b39  ti_sysbios_hal_Hwi_HwiProxy_startup__E                     
00003379  ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E         
00003435  ti_sysbios_hal_Hwi_Module_startup__E                       
00001615  ti_sysbios_hal_Hwi_initStack                               
00000a51  ti_sysbios_knl_Clock_Instance_init__E                      
000017d8  ti_sysbios_knl_Clock_Module_State_clockQ__O                
20001304  ti_sysbios_knl_Clock_Module__root__V                       
20000e60  ti_sysbios_knl_Clock_Module__state__V                      
000024e9  ti_sysbios_knl_Clock_Module_startup__E                     
00001384  ti_sysbios_knl_Clock_Object__DESC__C                       
000012bc  ti_sysbios_knl_Clock_Object__PARAMS__C                     
20000f3c  ti_sysbios_knl_Clock_Object__table__V                      
00003999  ti_sysbios_knl_Clock_Params__init__S                       
00002e71  ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S     
00003bd1  ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E          
00003bd5  ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E             
00003bd9  ti_sysbios_knl_Clock_TimerProxy_setNextTick__E             
0000208d  ti_sysbios_knl_Clock_TimerProxy_startup__E                 
00001cb1  ti_sysbios_knl_Clock_addI__E                               
0000140d  ti_sysbios_knl_Clock_construct                             
00000579  ti_sysbios_knl_Clock_create                                
0000338d  ti_sysbios_knl_Clock_doTick__I                             
000018ad  ti_sysbios_knl_Clock_getTicksUntilInterrupt__E             
00002509  ti_sysbios_knl_Clock_getTicks__E                           
00002ed1  ti_sysbios_knl_Clock_getTimeout__E                         
00003bdd  ti_sysbios_knl_Clock_isActive__E                           
000010ab  ti_sysbios_knl_Clock_logTick__E                            
00003be1  ti_sysbios_knl_Clock_removeI__E                            
000029e9  ti_sysbios_knl_Clock_scheduleNextTick__E                   
00003be5  ti_sysbios_knl_Clock_setPeriod__E                          
00003be9  ti_sysbios_knl_Clock_setTimeout__E                         
000140f1  ti_sysbios_knl_Clock_startI__E                             
000030ab  ti_sysbios_knl_Clock_start__E                              
00002529  ti_sysbios_knl_Clock_stop__E                               
000017dc  ti_sysbios_knl_Clock_tickPeriod__C                         
000017e0  ti_sysbios_knl_Clock_triggerClock__C                       
00001643  ti_sysbios_knl_Clock_triggerFunc__I                        
0001331d  ti_sysbios_knl_Clock_walkQueueDynamic__E                   
00011be5  ti_sysbios_knl_Clock_workFuncDynamic__E                    
000017e4  ti_sysbios_knl_Event_Instance_State_pendQ__O               
000033a1  ti_sysbios_knl_Event_Instance_init__E                      
2000130c  ti_sysbios_knl_Event_Module__root__V                       
000013a4  ti_sysbios_knl_Event_Object__DESC__C                       
0000153c  ti_sysbios_knl_Event_Object__PARAMS__C                     
00002549  ti_sysbios_knl_Event_checkEvents__I                        
0000143d  ti_sysbios_knl_Event_create                                
000018d9  ti_sysbios_knl_Event_pendTimeout__I                        
0000f389  ti_sysbios_knl_Event_pend__E                               
00013899  ti_sysbios_knl_Event_post__E                               
000017e8  ti_sysbios_knl_Idle_funcList__A                            
00001748  ti_sysbios_knl_Idle_funcList__C                            
00003b41  ti_sysbios_knl_Idle_loop__E                                
00002569  ti_sysbios_knl_Idle_run__E                                 
00003b79  ti_sysbios_knl_Queue_Instance_init__E                      
20001314  ti_sysbios_knl_Queue_Module__root__V                       
000013c4  ti_sysbios_knl_Queue_Object__DESC__C                       
00001554  ti_sysbios_knl_Queue_Object__PARAMS__C                     
000039bd  ti_sysbios_knl_Queue_Object__get__S                        
00001905  ti_sysbios_knl_Queue_construct                             
000039c9  ti_sysbios_knl_Queue_dequeue__E                            
00002a05  ti_sysbios_knl_Queue_destruct                              
00003b7f  ti_sysbios_knl_Queue_elemClear__E                          
00003771  ti_sysbios_knl_Queue_empty__E                              
000039d5  ti_sysbios_knl_Queue_enqueue__E                            
00002a21  ti_sysbios_knl_Queue_get__E                                
00003bed  ti_sysbios_knl_Queue_head__E                               
00003bf1  ti_sysbios_knl_Queue_next__E                               
00002a3d  ti_sysbios_knl_Queue_put__E                                
0000377f  ti_sysbios_knl_Queue_remove__E                             
000017ec  ti_sysbios_knl_Semaphore_Instance_State_pendQ__O           
00003649  ti_sysbios_knl_Semaphore_Instance_finalize__E              
000020b1  ti_sysbios_knl_Semaphore_Instance_init__E                  
2000131c  ti_sysbios_knl_Semaphore_Module__root__V                   
000013e4  ti_sysbios_knl_Semaphore_Object__DESC__C                   
000012e0  ti_sysbios_knl_Semaphore_Object__PARAMS__C                 
000039ed  ti_sysbios_knl_Semaphore_Params__init__S                   
0000146d  ti_sysbios_knl_Semaphore_construct                         
00000f75  ti_sysbios_knl_Semaphore_create                            
00002589  ti_sysbios_knl_Semaphore_destruct                          
00001931  ti_sysbios_knl_Semaphore_pendTimeout__I                    
0000fc11  ti_sysbios_knl_Semaphore_pend__E                           
00014549  ti_sysbios_knl_Semaphore_post__E                           
000026f3  ti_sysbios_knl_Swi_Instance_finalize__E                    
000159c9  ti_sysbios_knl_Swi_Instance_init__E                        
20000dd0  ti_sysbios_knl_Swi_Module_State_0_readyQ__A                
20001324  ti_sysbios_knl_Swi_Module__root__V                         
20001048  ti_sysbios_knl_Swi_Module__state__V                        
000020d5  ti_sysbios_knl_Swi_Module_startup__E                       
00001404  ti_sysbios_knl_Swi_Object__DESC__C                         
000011b4  ti_sysbios_knl_Swi_Object__PARAMS__C                       
000017f0  ti_sysbios_knl_Swi_Object__count__C                        
000033b5  ti_sysbios_knl_Swi_Object__get__S                          
20000e00  ti_sysbios_knl_Swi_Object__table__V                        
00003a11  ti_sysbios_knl_Swi_Params__init__S                         
00000fa9  ti_sysbios_knl_Swi_construct                               
00002a59  ti_sysbios_knl_Swi_destruct                                
00003659  ti_sysbios_knl_Swi_disable__E                              
00003669  ti_sysbios_knl_Swi_enabled__E                              
00003a1d  ti_sysbios_knl_Swi_getTrigger__E                           
00002ee9  ti_sysbios_knl_Swi_or__E                                   
00003bf5  ti_sysbios_knl_Swi_postInit__I                             
00016831  ti_sysbios_knl_Swi_post__E                                 
00014159  ti_sysbios_knl_Swi_restoreHwi__E                           
00000fdd  ti_sysbios_knl_Swi_restore__E                              
00015a19  ti_sysbios_knl_Swi_runLoop__I                              
0001525d  ti_sysbios_knl_Swi_run__I                                  
000155a9  ti_sysbios_knl_Swi_schedule__I                             
00003b85  ti_sysbios_knl_Swi_startup__E                              
20001cc0  ti_sysbios_knl_Task_Instance_State_0_stack__A              
00010185  ti_sysbios_knl_Task_Instance_init__E                       
200013a4  ti_sysbios_knl_Task_Module_State_0_idleTask__A             
20000e30  ti_sysbios_knl_Task_Module_State_0_readyQ__A               
000017f4  ti_sysbios_knl_Task_Module_State_inactiveQ__O              
2000132c  ti_sysbios_knl_Task_Module__root__V                        
20000bf0  ti_sysbios_knl_Task_Module__state__V                       
00014d81  ti_sysbios_knl_Task_Module_startup__E                      
00001424  ti_sysbios_knl_Task_Object__DESC__C                        
000010bc  ti_sysbios_knl_Task_Object__PARAMS__C                      
000017f8  ti_sysbios_knl_Task_Object__count__C                       
00003679  ti_sysbios_knl_Task_Object__get__S                         
20000b58  ti_sysbios_knl_Task_Object__table__V                       
00003a35  ti_sysbios_knl_Task_Params__init__S                        
00003bc5  ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S    
00003981  ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E      
000015e7  ti_sysbios_knl_Task_SupportProxy_start__E                  
00003639  ti_sysbios_knl_Task_SupportProxy_swap__E                   
000017fc  ti_sysbios_knl_Task_allBlockedFunc__C                      
00016875  ti_sysbios_knl_Task_allBlockedFunction__I                  
00001011  ti_sysbios_knl_Task_blockI__E                              
00001045  ti_sysbios_knl_Task_construct                              
00000081  ti_sysbios_knl_Task_create                                 
00001800  ti_sysbios_knl_Task_defaultStackHeap__C                    
00001804  ti_sysbios_knl_Task_defaultStackSize__C                    
00003689  ti_sysbios_knl_Task_disable__E                             
00002a75  ti_sysbios_knl_Task_enter__I                               
000005b5  ti_sysbios_knl_Task_exit__E                                
00001808  ti_sysbios_knl_Task_numConstructedTasks__C                 
00012c35  ti_sysbios_knl_Task_postInit__I                            
0000149d  ti_sysbios_knl_Task_processVitalTaskFlag__I                
000025a9  ti_sysbios_knl_Task_restoreHwi__E                          
00001cd9  ti_sysbios_knl_Task_restore__E                             
00015d65  ti_sysbios_knl_Task_schedule__I                            
00003a41  ti_sysbios_knl_Task_self__E                                
00014ddd  ti_sysbios_knl_Task_startCore__E                           
00003bf9  ti_sysbios_knl_Task_startup__E                             
00003641  ti_sysbios_knl_Task_swapReturn                             
0000195d  ti_sysbios_knl_Task_unblockI__E                            
00002f01  ti_sysbios_knl_Task_unblock__E                             
20002e9c  timerHead                                                  
00001989  timer_close                                                
00015db1  timer_count_edge                                           
00001d01  timer_get_count                                            
000141c1  timer_open                                                 
000020f9  timer_set_period                                           
0000378d  timer_start                                                
0000379b  timer_stop                                                 
20002f4c  trngCC26XXObjects                                          
000016d4  trngDriverTable                                            
20004efc  trngDrvTblPtr                                              
20004ccc  trxTestCmd                                                 
20004e8c  txDataQ                                                    
20004c34  txModemTestCmd                                             
00000094  txPowerTable                                               
0000005c  txPwrTbl                                                   
20004e94  txTestOut                                                  
20004dc4  txTestParam                                                
00001750  udmaHWAttrs                                                
20002cb8  udmaObjects                                                
200011a0  user0Cfg                                                   
20004e60  verInfo                                                    
00000098  wlSize                                                     
200047cc  wlTable                                                    
200048a8  wlTableScan                                                
00016319  xdc_runtime_Core_assignParams__I                           
00016361  xdc_runtime_Core_constructObject__I                        
00013977  xdc_runtime_Core_createObject__I                           
00002f31  xdc_runtime_Core_destructObject__I                         
0000180c  xdc_runtime_Error_E_memory__C                              
00002a91  xdc_runtime_Error_check__E                                 
00001810  xdc_runtime_Error_policyFxn__C                             
00002bb7  xdc_runtime_Error_policySpin__E                            
0000187b  xdc_runtime_Error_policy__C                                
00002aad  xdc_runtime_Error_raiseX__E                                
00003a4d  xdc_runtime_Gate_enterSystem__E                            
00003699  xdc_runtime_Gate_leaveSystem__E                            
00001814  xdc_runtime_HeapMin_E_freeError__C                         
200013b8  xdc_runtime_HeapMin_Instance_State_0_buf__A                
000037a9  xdc_runtime_HeapMin_Instance_init__E                       
000011dc  xdc_runtime_HeapMin_Module__FXNS__C                        
00001874  xdc_runtime_HeapMin_Module__id__C                          
20001334  xdc_runtime_HeapMin_Module__root__V                        
00001444  xdc_runtime_HeapMin_Object__DESC__C                        
00001464  xdc_runtime_HeapMin_Object__PARAMS__C                      
000014cd  xdc_runtime_HeapMin_Object__create__S                      
200011b0  xdc_runtime_HeapMin_Object__table__V                       
000000c1  xdc_runtime_HeapMin_alloc__E                               
00001876  xdc_runtime_HeapMin_freeError__C                           
000014fd  xdc_runtime_HeapMin_free__E                                
00003a59  xdc_runtime_HeapMin_getStats__E                            
00003bfd  xdc_runtime_HeapMin_isBlocking__E                          
00001818  xdc_runtime_IGateProvider_Interface__BASE__C               
0000181c  xdc_runtime_IHeap_Interface__BASE__C                       
00001820  xdc_runtime_IModule_Interface__BASE__C                     
00003bc9  xdc_runtime_Main_Module_GateProxy_query__E                 
00003aed  xdc_runtime_Memory_HeapProxy_alloc__E                      
00001878  xdc_runtime_Memory_Module__id__C                           
200013a8  xdc_runtime_Memory_Module__state__V                        
00013cd9  xdc_runtime_Memory_alloc__E                                
00003a65  xdc_runtime_Memory_calloc__E                               
00001824  xdc_runtime_Memory_defaultHeapInstance__C                  
00003a71  xdc_runtime_Memory_getMaxDefaultTypeAlign__E               
00002ac9  xdc_runtime_Memory_valloc__E                               
2000133c  xdc_runtime_Startup_Module__state__V                       
00000001  xdc_runtime_Startup__EXECFXN__C                            
00000001  xdc_runtime_Startup__RESETFXN__C                           
00001828  xdc_runtime_Startup_execImpl__C                            
00015a69  xdc_runtime_Startup_exec__E                                
00003447  xdc_runtime_Startup_exec__I                                
00001758  xdc_runtime_Startup_firstFxns__A                           
00001760  xdc_runtime_Startup_firstFxns__C                           
00001768  xdc_runtime_Startup_lastFxns__C                            
0000182c  xdc_runtime_Startup_maxPasses__C                           
00010a51  xdc_runtime_Startup_reset__I                               
00003a7d  xdc_runtime_Startup_rtsDone__E                             
00001664  xdc_runtime_Startup_sfxnRts__A                             
00001830  xdc_runtime_Startup_sfxnRts__C                             
000014d8  xdc_runtime_Startup_sfxnTab__A                             
00001834  xdc_runtime_Startup_sfxnTab__C                             
0000eed1  xdc_runtime_Startup_startMods__I                           
00001838  xdc_runtime_SysCallback_abortFxn__C                        
000036a9  xdc_runtime_SysCallback_abort__E                           
0000315b  xdc_runtime_SysCallback_defaultAbort                       
000037b7  xdc_runtime_SysCallback_defaultExit                        
0000183c  xdc_runtime_SysCallback_exitFxn__C                         
000036b9  xdc_runtime_SysCallback_exit__E                            
00003c01  xdc_runtime_System_Module_GateProxy_enter__E               
00003c05  xdc_runtime_System_Module_GateProxy_leave__E               
00003bc9  xdc_runtime_System_Module_GateProxy_query__E               
00001840  xdc_runtime_System_Module__gateObj__C                      
20001344  xdc_runtime_System_Module__state__V                        
00003b8b  xdc_runtime_System_Module_startup__E                       
000036a9  xdc_runtime_System_SupportProxy_abort__E                   
000036b9  xdc_runtime_System_SupportProxy_exit__E                    
00001844  xdc_runtime_System_abortFxn__C                             
00003b0f  xdc_runtime_System_abortSpin__E                            
00015505  xdc_runtime_System_abortStd__E                             
00002ae5  xdc_runtime_System_abort__E                                
00000a89  xdc_runtime_System_atexit__E                               
00001848  xdc_runtime_System_exitFxn__C                              
00003c09  xdc_runtime_System_exitSpin__E                             
0001550d  xdc_runtime_System_exitStd__E                              
00002f49  xdc_runtime_System_exit__E                                 
0000184c  xdc_runtime_System_maxAtexitHandlers__C                    
0000152d  xdc_runtime_System_processAtExit__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  ROM_Flash_JT                                               
00000000  __ASM__                                                    
00000000  __TI_static_base__                                         
00000000  llConfigTable                                              
00000001  scifStartRtcTicksNow                                       
00000001  xdc_runtime_Startup__EXECFXN__C                            
00000001  xdc_runtime_Startup__RESETFXN__C                           
00000041  ti_sysbios_family_arm_m3_Hwi_getStackInfo__E               
00000041  ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E                
00000050  gapServiceCBs                                              
0000005c  txPwrTbl                                                   
0000006c  __ISA__                                                    
0000006c  gattService                                                
00000074  rfOpLoc                                                    
00000078  rfCfgVal                                                   
0000007c  rxPktSuffix                                                
0000007e  __PLAT__                                                   
00000080  advPktSuffix                                               
00000081  ti_sysbios_knl_Task_create                                 
00000084  scanPktSuffix                                              
00000088  initPktSuffix                                              
0000008c  maxPktsPerEvt                                              
00000090  connEvtCutoff                                              
00000094  txPowerTable                                               
00000098  wlSize                                                     
00000099  cryptoMode                                                 
000000a5  __TARG__                                                   
000000c1  xdc_runtime_HeapMin_alloc__E                               
000000ca  __TRDR__                                                   
0000013f  ICall_sendServiceMsg                                       
0000017d  NOROM_OSC_HPOSCRelativeFrequencyOffsetGet                  
000001b9  NOROM_RFCSynthPowerDown                                    
000001f5  PowerCC26XX_isStableXOSC_HF                                
00000200  __STACK_SIZE                                               
00000231  PowerCC26XX_switchXOSC_HF                                  
0000026d  SimpleBLEPeripheral_createTask                             
000002f8  __TI_Handler_Table_Base                                    
00000304  __TI_Handler_Table_Limit                                   
00000321  app_lf_do_set_conf                                         
00000330  __TI_CINIT_Base                                            
0000035d  app_lf_fill                                                
00000360  __TI_CINIT_Limit                                           
00000411  llSchedulerInit                                            
0000044d  gattServApp_ProcessExchangeMTUReq                          
00000489  GATTServApp_SendCCCUpdatedEvent                            
000004c5  gattServApp_ResetCharCfg                                   
00000501  osal_start_reload_timer                                    
00000579  ti_sysbios_knl_Clock_create                                
000005b5  ti_sysbios_knl_Task_exit__E                                
000005ef  ti_sysbios_BIOS_nullFunc__I                                
000005f1  GAPRole_createTask                                         
00000629  HalFlashRead                                               
00000661  NVOCOP_readItem                                            
00000699  PIN_setOutputValue                                         
000006d1  ROM_Init                                                   
00000709  app_info_do_set_id                                         
00000741  as393x_wake_cb                                             
00000779  llActiveTask                                               
000007b1  llGetTask                                                  
000007e9  L2CAP_SendDataPkt                                          
00000891  osal_alien2proxy                                           
00000901  osal_msg_enqueue                                           
00000939  osal_start_system                                          
00000971  osal_stop_timerEx                                          
000009a9  ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E       
000009e1  ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I         
00000a19  ti_sysbios_family_arm_m3_Hwi_Instance_finalize__E          
00000a51  ti_sysbios_knl_Clock_Instance_init__E                      
00000a89  xdc_runtime_System_atexit__E                               
00000ac1  CryptoCC26XX_loadKey                                       
00000af7  ICall_setTimerMSecs                                        
00000b2d  UDMACC26XX_close                                           
00000b63  ti_sysbios_gates_GateHwi_Instance_init__E                  
00000b65  GPTimerCC26XX_setCaptureEdge                               
00000c01  OADTarget_writeFlash                                       
00000c35  PIN_setConfig                                              
00000c69  PIN_setInterrupt                                           
00000c9d  Power_releaseConstraint                                    
00000cd1  app_action_do_set_conf                                     
00000d05  app_action_set_config                                      
00000d6d  rfCallback                                                 
00000da1  llGetTaskState                                             
00000dd5  HCI_Init                                                   
00000e09  osal_get_timeoutEx                                         
00000e3d  rtca_set_interval_msec                                     
00000e71  scifAckAlertEvents                                         
00000ea5  scifOsalInit                                               
00000ed9  startup_entry                                              
00000ee6  appearanceUUID                                             
00000f0d  ti_sysbios_family_arm_cc26xx_Timer_initDevice__I           
00000f41  ti_sysbios_family_arm_m3_Hwi_construct                     
00000f75  ti_sysbios_knl_Semaphore_create                            
00000fa9  ti_sysbios_knl_Swi_construct                               
00000fdd  ti_sysbios_knl_Swi_restore__E                              
00000fe8  resourceDB                                                 
00001011  ti_sysbios_knl_Task_blockI__E                              
00001034  rfDriverTableBLE                                           
00001045  ti_sysbios_knl_Task_construct                              
00001079  ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E          
00001080  icallServiceTable                                          
000010ab  ti_sysbios_knl_Clock_logTick__E                            
000010ad  Bordainfant_initGeneral                                    
000010bc  ti_sysbios_knl_Task_Object__PARAMS__C                      
0000110d  Power_setConstraint                                        
00001130  ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C             
0000113d  SimpleProfile_AddService                                   
00001160  cryptoDriverTableBLE                                       
0000116d  TRNGCC26XX_init                                            
0000118c  tasksArr                                                   
000011b4  ti_sysbios_knl_Swi_Object__PARAMS__C                       
000011dc  xdc_runtime_HeapMin_Module__FXNS__C                        
000011fd  assert_failed                                              
00001204  TxPowerTable                                               
0000122b  SPI_count                                                  
0000122d  llFreeTask                                                 
00001250  scifDriverSetup                                            
0000125d  gattServApp_ProcessWriteLong                               
00001274  ti_sysbios_gates_GateHwi_Module__FXNS__C                   
0000128d  lf_rx_end_receive                                          
00001298  ti_sysbios_gates_GateMutex_Module__FXNS__C                 
000012bc  ti_sysbios_knl_Clock_Object__PARAMS__C                     
000012e0  ti_sysbios_knl_Semaphore_Object__PARAMS__C                 
00001304  SPI_defaultParams                                          
0000131d  ti_sysbios_BIOS_atExitFunc__I                              
00001324  ti_sysbios_family_arm_m3_Hwi_Object__DESC__C               
00001344  ti_sysbios_gates_GateHwi_Object__DESC__C                   
0000134d  ti_sysbios_BIOS_startFunc__I                               
00001364  ti_sysbios_gates_GateMutex_Object__DESC__C                 
0000137d  ti_sysbios_gates_GateHwi_Object__create__S                 
00001384  ti_sysbios_knl_Clock_Object__DESC__C                       
000013a4  ti_sysbios_knl_Event_Object__DESC__C                       
000013ad  ti_sysbios_gates_GateMutex_Object__create__S               
000013c4  ti_sysbios_knl_Queue_Object__DESC__C                       
000013dd  ti_sysbios_gates_GateMutex_enter__E                        
000013e4  ti_sysbios_knl_Semaphore_Object__DESC__C                   
00001404  ti_sysbios_knl_Swi_Object__DESC__C                         
0000140d  ti_sysbios_knl_Clock_construct                             
00001424  ti_sysbios_knl_Task_Object__DESC__C                        
0000143d  ti_sysbios_knl_Event_create                                
00001444  xdc_runtime_HeapMin_Object__DESC__C                        
00001464  xdc_runtime_HeapMin_Object__PARAMS__C                      
0000146d  ti_sysbios_knl_Semaphore_construct                         
00001484  BoardGpioInitTable                                         
0000149d  ti_sysbios_knl_Task_processVitalTaskFlag__I                
000014bc  spiCC26XXDMAHWAttrs                                        
000014cd  xdc_runtime_HeapMin_Object__create__S                      
000014d8  xdc_runtime_Startup_sfxnTab__A                             
000014f4  SPICC26XXDMA_fxnTable                                      
000014fd  xdc_runtime_HeapMin_free__E                                
0000150c  ti_sysbios_gates_GateHwi_Object__PARAMS__C                 
00001524  ti_sysbios_gates_GateMutex_Object__PARAMS__C               
0000152d  xdc_runtime_System_processAtExit__E                        
0000153c  ti_sysbios_knl_Event_Object__PARAMS__C                     
00001554  ti_sysbios_knl_Queue_Object__PARAMS__C                     
0000155d  GATTServApp_RegisterService                                
0000156c  bleStackConfig                                             
00001580  driverTable                                                
0000158b  osal_build_uint32                                          
000015d4  simpleProfileServUUID                                      
000015e4  simpleProfilechar1UUID                                     
000015e7  ti_sysbios_family_arm_m3_TaskSupport_start__E              
000015e7  ti_sysbios_knl_Task_SupportProxy_start__E                  
000015f4  simpleProfilechar2UUID                                     
00001604  simpleProfilechar3UUID                                     
00001614  PowerCC26XX_config                                         
00001615  ti_sysbios_hal_Hwi_initStack                               
00001624  TRNGCC26XX_config                                          
00001634  cryptoCC26XXHWAttrs                                        
00001643  ti_sysbios_knl_Clock_triggerFunc__I                        
00001644  eccDriverTable                                             
00001664  xdc_runtime_Startup_sfxnRts__A                             
00001671  NOROM_ChipInfo_GetChipFamily                               
00001672  charUserDescUUID                                           
00001674  GPTimerCC26XX_config                                       
0000168c  SPI_config                                                 
00001698  boardConfig                                                
0000169d  PINCC26XX_setMux                                           
000016a4  devInfoCBs                                                 
000016b0  gptimerCC26xxHWAttrs                                       
000016bc  resetServiceCBs                                            
000016c8  simpleProfileCBs                                           
000016c9  app_info_init                                              
000016d4  trngDriverTable                                            
000016ea  characterUUID                                              
000016f5  app_wakeup                                                 
000016f6  clientCharCfgUUID                                          
00001708  CryptoCC26XX_config                                        
00001710  PINCC26XX_hwAttrs                                          
00001718  UDMACC26XX_config                                          
00001721  bleDispatch_BMAlloc                                        
00001748  ti_sysbios_knl_Idle_funcList__C                            
0000174d  gattServApp_HandleConnStatusCB                             
00001750  udmaHWAttrs                                                
00001758  xdc_runtime_Startup_firstFxns__A                           
00001760  xdc_runtime_Startup_firstFxns__C                           
00001768  xdc_runtime_Startup_lastFxns__C                            
00001776  appTxPwrTbl                                                
0000178c  RFCC26XX_hwAttrs                                           
00001790  TRNGCC26XXHWAttrs                                          
000017b0  ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C        
000017b4  ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C           
000017b8  ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C             
000017bc  ti_sysbios_family_arm_m3_Hwi_Object__count__C              
000017c0  ti_sysbios_family_arm_m3_Hwi_ccr__C                        
000017c4  ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C             
000017c8  ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C                
000017cc  ti_sysbios_family_arm_m3_Hwi_priGroup__C                   
000017d0  ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C     
000017d4  ti_sysbios_gates_GateMutex_Instance_State_sem__O           
000017d8  ti_sysbios_knl_Clock_Module_State_clockQ__O                
000017dc  ti_sysbios_knl_Clock_tickPeriod__C                         
000017e0  ti_sysbios_knl_Clock_triggerClock__C                       
000017e4  ti_sysbios_knl_Event_Instance_State_pendQ__O               
000017e8  ti_sysbios_knl_Idle_funcList__A                            
000017ec  ti_sysbios_knl_Semaphore_Instance_State_pendQ__O           
000017f0  ti_sysbios_knl_Swi_Object__count__C                        
000017f4  ti_sysbios_knl_Task_Module_State_inactiveQ__O              
000017f8  ti_sysbios_knl_Task_Object__count__C                       
000017fc  ti_sysbios_knl_Task_allBlockedFunc__C                      
00001800  ti_sysbios_knl_Task_defaultStackHeap__C                    
00001804  ti_sysbios_knl_Task_defaultStackSize__C                    
00001808  ti_sysbios_knl_Task_numConstructedTasks__C                 
0000180c  xdc_runtime_Error_E_memory__C                              
00001810  xdc_runtime_Error_policyFxn__C                             
00001814  xdc_runtime_HeapMin_E_freeError__C                         
00001818  xdc_runtime_IGateProvider_Interface__BASE__C               
0000181c  xdc_runtime_IHeap_Interface__BASE__C                       
00001820  xdc_runtime_IModule_Interface__BASE__C                     
00001824  xdc_runtime_Memory_defaultHeapInstance__C                  
00001828  xdc_runtime_Startup_execImpl__C                            
0000182c  xdc_runtime_Startup_maxPasses__C                           
00001830  xdc_runtime_Startup_sfxnRts__C                             
00001834  xdc_runtime_Startup_sfxnTab__C                             
00001838  xdc_runtime_SysCallback_abortFxn__C                        
0000183c  xdc_runtime_SysCallback_exitFxn__C                         
00001840  xdc_runtime_System_Module__gateObj__C                      
00001844  xdc_runtime_System_abortFxn__C                             
00001848  xdc_runtime_System_exitFxn__C                              
0000184c  xdc_runtime_System_maxAtexitHandlers__C                    
00001850  devInfo11073CertUUID                                       
00001852  devInfoFirmwareRevUUID                                     
00001854  devInfoHardwareRevUUID                                     
00001855  pin_int_enable                                             
00001856  devInfoMfrNameUUID                                         
00001858  devInfoModelNumberUUID                                     
0000185a  devInfoPnpIdUUID                                           
0000185c  devInfoSerialNumberUUID                                    
0000185e  devInfoServUUID                                            
00001860  devInfoSoftwareRevUUID                                     
00001862  devInfoSystemIdUUID                                        
00001864  deviceNameUUID                                             
00001866  gapServiceUUID                                             
00001868  gattServiceUUID                                            
0000186a  periConnParamUUID                                          
0000186c  primaryServiceUUID                                         
0000186e  secondaryServiceUUID                                       
00001870  serviceChangedUUID                                         
00001872  ti_sysbios_family_arm_m3_Hwi_Module__id__C                 
00001874  xdc_runtime_HeapMin_Module__id__C                          
00001876  xdc_runtime_HeapMin_freeError__C                           
00001878  xdc_runtime_Memory_Module__id__C                           
0000187a  tasksCnt                                                   
0000187b  xdc_runtime_Error_policy__C                                
00001881  scifStopRtcTicks                                           
000018ad  ti_sysbios_knl_Clock_getTicksUntilInterrupt__E             
000018d9  ti_sysbios_knl_Event_pendTimeout__I                        
00001905  ti_sysbios_knl_Queue_construct                             
00001931  ti_sysbios_knl_Semaphore_pendTimeout__I                    
0000195d  ti_sysbios_knl_Task_unblockI__E                            
00001989  timer_close                                                
00001a09  CryptoCC26XX_init                                          
00001a31  DevInfo_AddService                                         
00001a59  GAPRole_StartDevice                                        
00001a81  GPTimerCC26XX_configureDebugStall                          
00001aa9  NOROM_IOCIOIntSet                                          
00001ad1  Power_registerNotify                                       
00001af9  Reset_addService                                           
00001b49  SafeHapiVoid                                               
00001b71  TRNGCC26XX_open                                            
00001b99  Util_dequeueMsg                                            
00001be9  app_match_fill                                             
00001c11  ble_dispatch_liteProcess                                   
00001c61  osal_bm_adjust_header                                      
00001c89  osal_next_timeout                                          
00001cb1  ti_sysbios_knl_Clock_addI__E                               
00001cd9  ti_sysbios_knl_Task_restore__E                             
00001d01  timer_get_count                                            
00001d75  CryptoCC26XX_hwiIntFxn                                     
00001d99  NOROM_OSCHF_TurnOnXosc                                     
00001de1  PINCC26XX_getPinCount                                      
00001e29  RF_runDirectCmd                                            
00001e4d  RF_runImmediateCmd                                         
00001e71  app_lf_halt                                                
00001e95  app_lf_rx_set_config                                       
00001f01  crc16_check                                                
00001f25  osal_msg_allocate                                          
00001f49  osal_msg_push                                              
00001f6d  osal_service_entry                                         
00001f91  osal_snv_read                                              
00001fb5  pin_int_disable                                            
00001fd9  memcmp                                                     
00001ffd  ti_sysbios_BIOS_registerRTSLock__I                         
00002021  ti_sysbios_BIOS_removeRTSLock__I                           
00002045  ti_sysbios_family_arm_cc26xx_Timer_Module_startup__E       
00002069  ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E          
0000208d  ti_sysbios_family_arm_cc26xx_Timer_startup__E              
0000208d  ti_sysbios_knl_Clock_TimerProxy_startup__E                 
000020b1  ti_sysbios_knl_Semaphore_Instance_init__E                  
000020d5  ti_sysbios_knl_Swi_Module_startup__E                       
000020f9  timer_set_period                                           
0000211d  GATTServApp_ReadCharCfg                                    
0000213f  List_put                                                   
000021c7  ti_sysbios_family_arm_cc26xx_Timer_postInit__I             
00002209  ICallPlatform_pwrDispense                                  
00002229  ICallPlatform_pwrRequire                                   
00002249  NOROM_IOCPinTypeGpioInput                                  
00002269  NOROM_RFCDoorbellSendTo                                    
00002289  NOROM_RFCRfTrimRead                                        
000022a9  Power_unregisterNotify                                     
000022c9  RF_flushCmd                                                
000022e9  RF_getCmdOp                                                
00002309  SimpleProfile_RegisterAppCBs                               
00002349  app_led_shut_down                                          
00002369  LL_TxEntryDoneCback                                        
00002389  GGS_AddService                                             
000023a9  halAssertHandlerExt                                        
000023c9  openTRNG                                                   
000023e9  osalFindTimer                                              
00002409  osal_memcmp                                                
00002429  osal_msg_deallocate                                        
00002469  ti_sysbios_BIOS_rtsLock__I                                 
00002489  ti_sysbios_family_arm_cc26xx_Timer_dynamicStub__E          
000024a9  ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I              
000024c9  ti_sysbios_family_arm_m3_Hwi_excHandler__I                 
000024e9  ti_sysbios_knl_Clock_Module_startup__E                     
00002509  ti_sysbios_knl_Clock_getTicks__E                           
00002529  ti_sysbios_knl_Clock_stop__E                               
00002549  ti_sysbios_knl_Event_checkEvents__I                        
00002569  ti_sysbios_knl_Idle_run__E                                 
00002589  ti_sysbios_knl_Semaphore_destruct                          
000025a9  ti_sysbios_knl_Task_restoreHwi__E                          
000025c9  PIN_close                                                  
000025e7  Power_getTransitionLatency                                 
00002623  GATTServApp_UpdateCharCfg                                  
0000267d  osal_snv_write                                             
0000269b  __aeabi_llsr                                               
000026b9  ti_sysbios_family_xxx_Hwi_switchAndRunFunc                 
000026d7  GAPBondMgr_SupportsEnhancedPriv                            
000026f3  ti_sysbios_knl_Swi_Instance_finalize__E                    
00002711  NOROM_FlashProgram                                         
0000272d  NOROM_FlashSectorErase                                     
00002749  NOROM_IOCPinTypeGpioOutput                                 
00002765  NOROM_VIMSConfigure                                        
000027b9  RF_cancelCmd                                               
000027d5  Util_isActive                                              
000027f1  app_get_ack                                                
0000280d  app_sleep                                                  
00002829  app_timespan_update                                        
00002845  GATTServApp_AddService                                     
00002861  driverTable_fnSpinlock                                     
000028b5  lf_rx_completed                                            
000028d1  osalTimerInit                                              
000028ed  osal_CbTimerInit                                           
00002909  osal_memdup                                                
00002925  osal_revmemcpy                                             
00002941  pin_int_set_callback                                       
00002979  ti_sysbios_family_arm_m3_Hwi_clearInterrupt__E             
00002979  ti_sysbios_hal_Hwi_HwiProxy_clearInterrupt__E              
00002995  ti_sysbios_family_arm_m3_Hwi_destruct                      
000029b1  ti_sysbios_family_arm_m3_Hwi_setPriority__E                
000029cd  ti_sysbios_gates_GateMutex_Instance_init__E                
000029e9  ti_sysbios_knl_Clock_scheduleNextTick__E                   
00002a05  ti_sysbios_knl_Queue_destruct                              
00002a21  ti_sysbios_knl_Queue_get__E                                
00002a3d  ti_sysbios_knl_Queue_put__E                                
00002a59  ti_sysbios_knl_Swi_destruct                                
00002a75  ti_sysbios_knl_Task_enter__I                               
00002a91  xdc_runtime_Error_check__E                                 
00002aad  xdc_runtime_Error_raiseX__E                                
00002ac9  xdc_runtime_Memory_valloc__E                               
00002ae5  xdc_runtime_System_abort__E                                
00002b01  HalFlashGetAddress                                         
00002b1b  ICall_leaveCSImpl                                          
00002b35  ICall_pwrUpdActivityCounter                                
00002b4f  app_action_get_config                                      
00002b69  osal_isbufset                                              
00002b83  osal_snv_compact                                           
00002b9d  ti_sysbios_family_arm_m3_Hwi_pendSV__I                     
00002bb5  ti_sysbios_family_arm_m3_Hwi_return                        
00002bb7  xdc_runtime_Error_policySpin__E                            
00002c19  NOROM_ChipInfo_GetPackageType                              
00002c31  NOROM_RFCCpeIntGetAndClear                                 
00002c49  NOROM_TimerStallControl                                    
00002c61  PIN_getConfig                                              
00002c79  Power_idleFunc                                             
00002c91  RF_Params_init                                             
00002ca9  app_error_sw_reset                                         
00002cf1  bleDispatch_BMFree                                         
00002d69  icall_liteMsgParser                                        
00002d81  osal_buffer_uint32                                         
00002d99  osal_enroll_senderid                                       
00002db1  osal_memcpy                                                
00002de1  _args_main                                                 
00002df9  __aeabi_lmul                                               
00002e11  scifClearAlertIntSource                                    
00002e29  spi_deselect                                               
00002e41  spi_select                                                 
00002e59  ti_sysbios_BIOS_rtsUnlock__I                               
00002e71  ti_sysbios_family_arm_cc26xx_Timer_Module__startupDone__F  
00002e71  ti_sysbios_family_arm_cc26xx_Timer_Module__startupDone__S  
00002e71  ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S     
00002e89  ti_sysbios_family_arm_m3_Hwi_Module__startupDone__F        
00002e89  ti_sysbios_family_arm_m3_Hwi_Module__startupDone__S        
00002e89  ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S         
00002ea1  ti_sysbios_family_arm_m3_Hwi_plug__E                       
00002eb9  ti_sysbios_gates_GateMutex_leave__E                        
00002ed1  ti_sysbios_knl_Clock_getTimeout__E                         
00002ee9  ti_sysbios_knl_Swi_or__E                                   
00002f01  ti_sysbios_knl_Task_unblock__E                             
00002f31  xdc_runtime_Core_destructObject__I                         
00002f49  xdc_runtime_System_exit__E                                 
00002f77  ICall_enterCSImpl                                          
00002f8d  ICall_stopTimer                                            
00002fa3  List_remove                                                
00002fb9  ROM_Spinlock                                               
00002fe5  pin_state                                                  
00002ffb  strcpy                                                     
00003027  ti_sysbios_BIOS_exitFunc__I                                
000030ab  ti_sysbios_knl_Clock_start__E                              
0000315b  xdc_runtime_SysCallback_defaultAbort                       
00003185  NOROM_IOCIOPortPullSet                                     
00003199  NOROM_IOCIOShutdownSet                                     
000031ad  NOROM_IOCIntDisable                                        
000031c1  NOROM_IOCIntEnable                                         
000031d5  PIN_getInputValue                                          
000031e9  RegisterAssertCback                                        
00003239  Util_constructQueue                                        
0000324d  Util_startClock                                            
00003261  Util_stopClock                                             
00003275  app_ble_post_event                                         
00003289  app_error_add_info                                         
0000329d  llDataGetConnPtr                                           
000032b1  llGetCurrentTask                                           
000032ed  halAssertInit                                              
00003315  _register_unlock                                           
0000331b  _register_lock                                             
00003323  _nop                                                       
00003329  strlen                                                     
0000333d  scifOsalRegisterTaskAlertCallback                          
00003365  ti_sysbios_family_arm_m3_Hwi_Object__get__S                
00003379  ti_sysbios_family_arm_m3_Hwi_switchFromBootStack__E        
00003379  ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E         
0000338d  ti_sysbios_knl_Clock_doTick__I                             
000033a1  ti_sysbios_knl_Event_Instance_init__E                      
000033b5  ti_sysbios_knl_Swi_Object__get__S                          
000033c9  ICall_freeMsg                                              
000033db  ICall_signal                                               
00003411  pin_pull_down                                              
00003423  scifStartTasksNbl                                          
00003435  ti_sysbios_hal_Hwi_Module_startup__E                       
00003447  xdc_runtime_Startup_exec__I                                
00003459  ICall_malloc                                               
00003469  ICall_pwrDispense                                          
00003479  ICall_pwrRequire                                           
00003489  NOROM_IOCPortConfigureSet                                  
00003499  NOROM_RFCRfTrimSet                                         
000034a9  OADTarget_systemReset                                      
000034b9  Onboard_rand                                               
000034b9  osal_rand                                                  
000034d9  app_action_get                                             
000034e9  app_ble_get_config                                         
000034f9  app_get_tag_info                                           
00003509  app_get_unique_id                                          
00003519  app_lf_rx_get_config                                       
00003529  app_run_get_config                                         
00003539  LL_DoorbellErrorCback                                      
00003549  rfPUpCallback                                              
00003559  GAP_isPairing                                              
00003579  osal_mem_alloc                                             
00003589  osal_mem_free                                              
00003599  osal_pwrmgr_init                                           
000035a9  rtca_reset                                                 
000035c9  ti_sysbios_BIOS_exit__E                                    
000035d9  ti_sysbios_BIOS_getCpuFreq__E                              
000035e9  ti_sysbios_BIOS_setThreadType__E                           
000035f9  ti_sysbios_BIOS_start__E                                   
00003609  ti_sysbios_family_arm_cc26xx_Timer_getCount64__E           
00003619  ti_sysbios_family_arm_m3_Hwi_post__E                       
00003619  ti_sysbios_hal_Hwi_HwiProxy_post__E                        
00003629  ti_sysbios_family_arm_m3_TaskSupport_glue                  
00003639  ti_sysbios_family_arm_m3_TaskSupport_swap__E               
00003639  ti_sysbios_knl_Task_SupportProxy_swap__E                   
00003641  ti_sysbios_knl_Task_swapReturn                             
00003649  ti_sysbios_knl_Semaphore_Instance_finalize__E              
00003659  ti_sysbios_knl_Swi_disable__E                              
00003669  ti_sysbios_knl_Swi_enabled__E                              
00003679  ti_sysbios_knl_Task_Object__get__S                         
00003689  ti_sysbios_knl_Task_disable__E                             
00003699  xdc_runtime_Gate_leaveSystem__E                            
000036a9  xdc_runtime_SysCallback_abort__E                           
000036a9  xdc_runtime_System_SupportProxy_abort__E                   
000036b9  xdc_runtime_SysCallback_exit__E                            
000036b9  xdc_runtime_System_SupportProxy_exit__E                    
000036c9  NOROM_ThisLibraryIsFor_CC26x0R2_HaltIfViolated             
000036e5  SPICC26XXDMA_init                                          
000036f3  app_button_wakeup_enable                                   
0000370f  __TI_decompress_none                                       
00003739  pin_clear                                                  
00003747  pin_dir_in                                                 
00003755  pin_dir_out                                                
00003763  pin_set                                                    
00003771  ti_sysbios_knl_Queue_empty__E                              
0000377f  ti_sysbios_knl_Queue_remove__E                             
0000378d  timer_start                                                
0000379b  timer_stop                                                 
000037a9  xdc_runtime_HeapMin_Instance_init__E                       
000037b7  xdc_runtime_SysCallback_defaultExit                        
000037c5  GPTimerCC26XX_Params_init                                  
000037d1  ICall_free                                                 
000037dd  List_empty                                                 
000037e9  NOROM_CPUcpsid                                             
000037f5  NOROM_CPUcpsie                                             
00003801  NOROM_OSC_HPOSCRelativeFrequencyOffsetToRFCoreFormatConvert
0000380d  PIN_registerIntCb                                          
00003819  Power_getConstraintMask                                    
00003825  Power_getDependencyCount                                   
0000383d  RF_get_handle                                              
00003861  app_error_get_faults                                       
0000386d  ble_dispatch_liteInit                                      
00003879  llGetNumTasks                                              
00003885  llGetActiveTasks                                           
00003891  HCI_GAPTaskRegister                                        
0000389d  HCI_L2CAPTaskRegister                                      
000038a9  HCI_SMPTaskRegister                                        
000038c1  __TI_zero_init                                             
000038cd  gapRole_clockHandler                                       
000038e5  osal_CbTimerStart                                          
000038f1  osal_self                                                  
000038fd  osal_set_icall_hook                                        
00003909  osal_timer_init                                            
00003915  rtca_activate                                              
00003921  rtca_deactivate                                            
0000392d  scifGetAlertEvents                                         
00003939  scifOsalLeaveCriticalSection                               
00003951  ti_sysbios_BIOS_getThreadType__E                           
0000395d  ti_sysbios_family_arm_m3_Hwi_Params__init__S               
0000395d  ti_sysbios_hal_Hwi_HwiProxy_Params__init__S                
00003969  ti_sysbios_family_arm_m3_Hwi_disableFxn__E                 
00003969  ti_sysbios_hal_Hwi_HwiProxy_disable__E                     
00003981  ti_sysbios_family_arm_m3_TaskSupport_getStackAlignment__E  
00003981  ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E      
0000398d  ti_sysbios_gates_GateHwi_enter__E                          
00003999  ti_sysbios_knl_Clock_Params__init__S                       
000039bd  ti_sysbios_knl_Queue_Object__get__S                        
000039c9  ti_sysbios_knl_Queue_dequeue__E                            
000039d5  ti_sysbios_knl_Queue_enqueue__E                            
000039ed  ti_sysbios_knl_Semaphore_Params__init__S                   
00003a11  ti_sysbios_knl_Swi_Params__init__S                         
00003a1d  ti_sysbios_knl_Swi_getTrigger__E                           
00003a35  ti_sysbios_knl_Task_Params__init__S                        
00003a41  ti_sysbios_knl_Task_self__E                                
00003a4d  xdc_runtime_Gate_enterSystem__E                            
00003a59  xdc_runtime_HeapMin_getStats__E                            
00003a65  xdc_runtime_Memory_calloc__E                               
00003a71  xdc_runtime_Memory_getMaxDefaultTypeAlign__E               
00003a7d  xdc_runtime_Startup_rtsDone__E                             
00003a89  HalFlashWrite                                              
00003a93  ICall_abort                                                
00003a9d  SPI_transfer                                               
00003aa7  UDMACC26XX_hwiIntFxn                                       
00003ad9  scifOsalDisableTaskAlertInt                                
00003ae3  scifOsalEnableTaskAlertInt                                 
00003aed  xdc_runtime_Memory_HeapProxy_alloc__E                      
00003af7  CryptoCC26XX_Params_init                                   
00003aff  ICall_getTicks                                             
00003b0f  xdc_runtime_System_abortSpin__E                            
00003b11  as393x_get_calib_info                                      
00003b21  osalDeleteTimer                                            
00003b29  scifOsalEnterCriticalSection                               
00003b31  ti_sysbios_family_arm_m3_Hwi_doSwiRestore__I               
00003b39  ti_sysbios_family_arm_m3_Hwi_startup__E                    
00003b39  ti_sysbios_hal_Hwi_HwiProxy_startup__E                     
00003b41  ti_sysbios_knl_Idle_loop__E                                
00003b49  CryptoCC26XX_transact                                      
00003b4f  CryptoCC26XX_transactPolling                               
00003b55  GPTimerCC26XX_getValue                                     
00003b5b  NOROM_CPUdelay                                             
00003b61  ti_sysbios_family_arm_m3_Hwi_doTaskRestore__I              
00003b67  HwiP_restore                                               
00003b67  ti_sysbios_family_arm_m3_Hwi_restoreFxn__E                 
00003b67  ti_sysbios_hal_Hwi_HwiProxy_restore__E                     
00003b6d  ti_sysbios_family_arm_m3_Hwi_setFunc__E                    
00003b73  ti_sysbios_gates_GateHwi_leave__E                          
00003b79  ti_sysbios_knl_Queue_Instance_init__E                      
00003b7f  ti_sysbios_knl_Queue_elemClear__E                          
00003b85  ti_sysbios_knl_Swi_startup__E                              
00003b8b  xdc_runtime_System_Module_startup__E                       
00003b95  HwiP_disable                                               
00003b99  List_head                                                  
00003b9d  List_next                                                  
00003ba1  lf_rx_woken_up                                             
00003ba5  mpu_sleep                                                  
00003bad  osal_memset                                                
00003bb1  osal_snv_init                                              
00003bb5  osal_strlen                                                
00003bb9  ti_sysbios_BIOS_RtsGateProxy_enter__E                      
00003bbd  ti_sysbios_BIOS_RtsGateProxy_leave__E                      
00003bc1  ti_sysbios_family_arm_cc26xx_Timer_setPeriod__E            
00003bc5  ti_sysbios_family_arm_m3_TaskSupport_Module__startupDone__S
00003bc5  ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S    
00003bc9  ti_sysbios_gates_GateHwi_query__E                          
00003bc9  xdc_runtime_Main_Module_GateProxy_query__E                 
00003bc9  xdc_runtime_System_Module_GateProxy_query__E               
00003bcd  ti_sysbios_BIOS_RtsGateProxy_query__E                      
00003bcd  ti_sysbios_gates_GateMutex_query__E                        
00003bd1  ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E          
00003bd5  ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E             
00003bd9  ti_sysbios_knl_Clock_TimerProxy_setNextTick__E             
00003bdd  ti_sysbios_knl_Clock_isActive__E                           
00003be1  ti_sysbios_knl_Clock_removeI__E                            
00003be5  ti_sysbios_knl_Clock_setPeriod__E                          
00003be9  ti_sysbios_knl_Clock_setTimeout__E                         
00003bed  ti_sysbios_knl_Queue_head__E                               
00003bf1  ti_sysbios_knl_Queue_next__E                               
00003bf5  ti_sysbios_knl_Swi_postInit__I                             
00003bf9  ti_sysbios_knl_Task_startup__E                             
00003bfd  xdc_runtime_HeapMin_isBlocking__E                          
00003c01  xdc_runtime_System_Module_GateProxy_enter__E               
00003c05  xdc_runtime_System_Module_GateProxy_leave__E               
00003c09  xdc_runtime_System_exitSpin__E                             
00007010  ti_sysbios_family_arm_m3_Hwi_resetVectors                  
0000704d  LL_Init                                                    
000075e9  GAPRole_SetParameter                                       
000081d7  __checksum_value                                           
00008e2d  PowerCC26XX_auxISR                                         
00009141  llScheduler                                                
000093f9  LL_ProcessEvent                                            
000096ad  RF_postCmd                                                 
00009939  GAPRole_GetParameter                                       
00009bad  GAPBondMgr_SetParameter                                    
0000a4bd  Power_sleep                                                
0000a8f1  NOROM_SysCtrlSetRechargeBeforePowerDown                    
0000aafd  LL_LastCmdDoneCback                                        
0000ad09  sfcp_call                                                  
0000af15  smSavePairInfo                                             
0000b315  GAPBondMgr_ProcessGAPMsg                                   
0000b50d  GATTServApp_ReadAttr                                       
0000b705  DevInfo_SetParameter                                       
0000b8f9  __aeabi_uldivmod                                           
0000baed  ECCROMCC26XX_genDHKey                                      
0000bcdd  SPICC26XXDMA_transfer                                      
0000c089  osal_run_system                                            
0000c251  llGetNextConn                                              
0000c411  LL_RxIgnoredCback                                          
0000c78d  PIN_init                                                   
0000c941  LL_RxEntryDoneCback                                        
0000cc81  PowerCC26XX_doCalibrate                                    
0000ce19  ECCROMCC26XX_genKeys                                       
0000d2a9  LL_Reset                                                   
0000dc59  GAPBondMgr_ProcessEvent                                    
0000dda9  ICall_heapMalloc                                           
0000def5  SPICC26XXDMA_open                                          
0000e181  ICall_waitMatch                                            
0000e2c1  Power_init                                                 
0000e651  app_action_excite                                          
0000e779  llFindNextSecTask                                          
0000e8a1  Power_shutdown                                             
0000e9c5  NVOCOP_writeItem                                           
0000eacd  RF_open                                                    
0000ecd9  scifInit                                                   
0000edd9  CryptoCC26XX_open                                          
0000eed1  xdc_runtime_Startup_startMods__I                           
0000efc9  osalTimerUpdate                                            
0000f0bd  as393x_init                                                
0000f29d  GAPBondMgr_LinkEst                                         
0000f389  ti_sysbios_knl_Event_pend__E                               
0000f471  SPICC26XXDMA_transferCancel                                
0000f631  osal_set_event                                             
0000f8cd  ICall_enrollService                                        
0000f9a1  PowerCC26XX_standbyPolicy                                  
0000fb45  app_lf_init                                                
0000fc11  ti_sysbios_knl_Semaphore_pend__E                           
0000fcdd  app_lf_filter                                              
0000ff35  ti_sysbios_family_arm_m3_Hwi_dispatch__I                   
000100c1  setBleUserConfig                                           
00010185  ti_sysbios_knl_Task_Instance_init__E                       
00010249  ICall_heapInit                                             
00010309  ICall_setTimer                                             
000103c9  SimpleProfile_SetParameter                                 
00010609  GPTimerCC26XX_open                                         
000106c5  Power_releaseDependency                                    
00010781  crc8_calculate                                             
0001083d  Power_setDependency                                        
000108f1  ICall_registerApp                                          
000109a1  TRNGCC26XX_getNumber                                       
00010a51  NOROM_SetupTrimDevice                                      
00010a51  ti_sysbios_family_arm_cc26xx_Boot_trimDevice               
00010a51  xdc_runtime_Startup_reset__I                               
00010afd  app_alert_init                                             
00010ba9  ICall_send                                                 
00010c51  app_ble_add_status                                         
00010cf9  app_match_begin                                            
00010e47  CommonROM_Init                                             
00010e49  GAPBondMgr_ResolveAddr                                     
00010f91  app_match_init                                             
000110d9  llScheduleTask                                             
0001117d  pin_int_edge                                               
00011221  GPTimerCC26XX_close                                        
000112c1  RF_pendCmd                                                 
00011401  __TI_auto_init                                             
000115e1  icall_directAPI                                            
00011681  ICall_createRemoteTasks                                    
000117b9  __aeabi_memcpy                                             
000117b9  __aeabi_memcpy4                                            
000117b9  __aeabi_memcpy8                                            
000117b9  memcpy                                                     
00011855  ICallPlatform_pwrUpdActivityCounter                        
000118ed  PIN_open                                                   
00011985  RF_getCurrentTime                                          
00011be5  ti_sysbios_knl_Clock_workFuncDynamic__E                    
00011c7d  GATTServApp_ProcessCCCWriteReq                             
00011d13  NOROM_RFCAdi3VcoLdoVoltageMode                             
00011da9  osal_CbTimerProcessEvent                                   
00011e3d  AssertHandler                                              
00011ecd  NOROM_CRYPTOAesLoadKey                                     
00011f5d  RF_getInfo                                                 
00011fed  SPICC26XXDMA_control                                       
0001207d  as393x_cl_dat_cb                                           
0001210d  HCI_ProcessEvent                                           
0001219d  crc16_calculate                                            
0001222d  lf_rx_begin_receive                                        
000122bd  ICall_getEntityId                                          
000123d5  app_ble_set_config                                         
00012461  app_ble_set_mac                                            
00012579  scifInitIo                                                 
00012605  ti_sysbios_family_arm_m3_Hwi_Instance_init__E              
00012691  llSetupLenCtrlPkt                                          
00012719  GGS_SetParameter                                           
00012829  ICall_wait                                                 
000128ad  app_button_event                                           
00012a35  osalInitTasks                                              
00012ab5  spi_read                                                   
00012b35  spi_write                                                  
00012bb5  ti_sysbios_family_arm_m3_Hwi_initNVIC__E                   
00012c35  ti_sysbios_knl_Task_postInit__I                            
00012cb5  GAPBondMgr_syncResolvingList                               
00012dad  app_timespan_fill                                          
00012ea5  gapProcessDisconnectCompleteEvt                            
00012f49  main                                                       
00012fc5  spi_open                                                   
00013041  CryptoCC26XX_allocateKey                                   
000130bb  __aeabi_memclr                                             
000130bb  __aeabi_memclr4                                            
000130bb  __aeabi_memclr8                                            
000130bd  __aeabi_memset                                             
000130bd  __aeabi_memset4                                            
000130bd  __aeabi_memset8                                            
000130c3  memset                                                     
00013135  ECCROMCC26XX_Params_init                                   
00013225  GATTServApp_WriteAttr                                      
0001331d  ti_sysbios_knl_Clock_walkQueueDynamic__E                   
0001340b  NOROM_RFCRTrim                                             
0001340d  GATTServApp_InitCharCfg                                    
00013481  SimpleProfile_GetParameter                                 
000134f5  llValidateConnParams                                       
00013659  osal_msg_send                                              
000136cd  ti_sysbios_family_arm_cc26xx_Timer_start__E                
00013829  osal_msg_receive                                           
00013899  ti_sysbios_knl_Event_post__E                               
00013977  xdc_runtime_Core_createObject__I                           
000139e5  ICall_init                                                 
00013a51  NOROM_OSCHF_AttemptToSwitchToXosc                          
00013abd  PowerCC26XX_calibrate                                      
00013b29  PowerCC26XX_initiateCalibration                            
00013b95  UDMACC26XX_open                                            
00013c01  app_set_tag_id                                             
00013c6d  osal_CbTimerUpdate                                         
00013cd9  xdc_runtime_Memory_alloc__E                                
00013daf  Onboard_soft_reset                                         
00013db1  NOROM_SysCtrl_DCDC_VoltageConditionalControl               
00013fb9  __TI_decompress_lzss                                       
000140f1  ti_sysbios_knl_Clock_startI__E                             
00014159  ti_sysbios_knl_Swi_restoreHwi__E                           
000141c1  timer_open                                                 
0001428d  NOROM_SysCtrlAdjustRechargeAfterPowerDown                  
000142f1  PIN_add                                                    
00014355  Util_rescheduleClock                                       
000143b9  llAllocTask                                                
0001441d  gattServApp_ProcessReliableWrites                          
000144e5  rtca_open                                                  
00014549  ti_sysbios_knl_Semaphore_post__E                           
0001460f  SM_dhKeyCB                                                 
00014671  GAPRole_SendUpdateParam                                    
000146d1  ICall_searchServiceEntity                                  
00014791  Util_constructClock                                        
000147f1  app_action_init                                            
000148b1  app_button_init                                            
00014911  stack_main                                                 
000149cf  SM_p256KeyCB                                               
00014a89  PowerCC26XX_RCOSC_clockFunc                                
00014ae5  RF_runCmd                                                  
00014b9d  app_error_add                                              
00014cb1  GATTServApp_Init                                           
00014d25  osal_CbTimerStop                                           
00014d81  ti_sysbios_knl_Task_Module_startup__E                      
00014ddd  ti_sysbios_knl_Task_startCore__E                           
00014e39  SPICC26XXDMA_close                                         
00014e93  llTaskError                                                
00014e95  GPTimerCC26XX_stop                                         
00014eed  ICall_fetchMsg                                             
00014f45  PIN_remove                                                 
00014f9d  app_battery_get_level                                      
00014ff5  app_ble_begin_match                                        
000150fd  osal_timer_refTimeUpdate                                   
00015155  scifReinitIo                                               
000151ad  scifUninitIo                                               
00015205  ti_sysbios_family_arm_m3_Hwi_postInit__I                   
0001525d  ti_sysbios_knl_Swi_run__I                                  
000152b5  RF_getRssi                                                 
0001535d  TRNGCC26XX_isParamValid                                    
000153b1  app_led_init                                               
00015405  app_run_set_config                                         
00015459  lf_rx_get_rssi                                             
000154ad  osal_bm_free                                               
00015501  C$$EXIT                                                    
00015505  abort                                                      
00015505  xdc_runtime_System_abortStd__E                             
0001550d  exit                                                       
0001550d  xdc_runtime_System_exitStd__E                              
00015555  ti_sysbios_family_arm_m3_Hwi_dispatchC__I                  
000155a9  ti_sysbios_knl_Swi_schedule__I                             
00015651  GAPBondMgr_LinkTerm                                        
000156a1  GAPBondMgr_UpdateCharCfg                                   
000156f1  ICall_getMaxMSecs                                          
00015831  app_button_fill                                            
00015881  app_match_try                                              
000158d1  as393x_calib_timer_cb                                      
00015921  gattServApp_EnqueuePrepareWriteReq                         
000159c9  ti_sysbios_knl_Swi_Instance_init__E                        
00015a19  ti_sysbios_knl_Swi_runLoop__I                              
00015a69  xdc_runtime_Startup_exec__E                                
00015ab9  GPTimerCC26XX_start                                        
00015b05  NPI_WriteTransport                                         
00015b51  NVOCOP_initNV                                              
00015c81  osalAdjustTimer                                            
00015ccd  copy_in                                                    
00015d19  ti_sysbios_family_arm_m3_TaskSupport_buildTaskStack        
00015d65  ti_sysbios_knl_Task_schedule__I                            
00015db1  timer_count_edge                                           
00015e47  halAssertHandler                                           
00015e49  GAPRole_TerminateConnection                                
00015e91  ICall_fetchServiceMsg                                      
00015ed9  Util_restartClock                                          
00015f21  app_led_blink                                              
00015f69  app_lf_run                                                 
00015fb1  app_set_match_conf                                         
00015ff9  llFindStartType                                            
00016049  gattServApp_ClearPrepareWriteQ                             
000160d9  osalAddTimer                                               
00016121  osal_init_system                                           
00016169  osal_start_timerEx                                         
00016289  ti_sysbios_family_arm_m3_Hwi_Module_startup__E             
000162d1  ti_sysbios_family_arm_m3_Hwi_initStacks__E                 
00016319  xdc_runtime_Core_assignParams__I                           
00016361  xdc_runtime_Core_constructObject__I                        
000163a9  icall_liteTranslation                                      
000163ef  halAssertSpinlock                                          
000163f1  ECCROMCC26XX_init                                          
00016435  GATTServApp_WriteCharCfg                                   
00016479  ICall_getLocalMsgEntityId                                  
000164bd  NOROM_OSCHF_SwitchToRcOscTurnOffXosc                       
00016611  as393x_rtc_timer_cb                                        
00016655  ResetISR                                                   
00016655  _c_int00                                                   
00016721  scifStartRtcTicks                                          
000167a9  ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E           
000167a9  ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E            
000167ed  ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E            
000167ed  ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E             
00016831  ti_sysbios_knl_Swi_post__E                                 
00016875  ti_sysbios_knl_Task_allBlockedFunction__I                  
000168b9  GAP_DeviceInit                                             
000168fb  ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E          
0001692d  NOROM_SSIConfigSetExpClk                                   
0001696f  Util_enqueueMsg                                            
000169b1  GAPBondMgr_Init                                            
00016a79  ICall_heapFree                                             
00016ab9  NVOCOP_compactNV                                           
00016af9  PINCC26XX_getConfig                                        
00016b39  SPI_init                                                   
00016b79  SPI_open                                                   
00016bf9  app_get_timestamp                                          
00016cb9  GATTServApp_ProcessEvent                                   
00016d01  osal_bm_alloc                                              
00016d41  osal_clear_event                                           
00016d81  osal_msg_extract                                           
00016dc1  DefaultAssertCback                                         
0001e000  NV_FLASH                                                   
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                              
100066bd  LL_SetAddressResolutionEnable                              
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                           
1000aed9  HCI_LE_EncryptCmd                                          
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                                  
1000b439  HCI_EXT_DecryptCmd                                         
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                                     
1000bced  HCI_HardwareErrorEvent                                     
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                                         
1000ef31  sm_c1                                                      
1000f01d  smpProcessIncoming                                         
1000f05d  smProcessPairingReq                                        
1000f0bd  smStartEncryption                                          
1000f0d9  smGeneratePairingReqRsp                                    
1000f129  smGenerateConfirm                                          
1000f149  smGenerateRandMsg                                          
1000f18d  smSaveRemotePublicKeys                                     
1000f1bd  smSendPublicKeys                                           
1000f215  smF5Wrapper                                                
1000f2b9  smGenerateDHKeyCheck                                       
1000f35d  sm_allocateSCParameters                                    
1000f399  smGenerateAddrInput                                        
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                                         
1000fa39  smSendFailureEvt                                           
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                      
10010bd5  gattServApp_ProcessReadByTypeReq                           
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  ECDSA_sign                                                 
10016941  ECDSA_verif                                                
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                                          
100173f9  LL_ENC_DecryptMsg                                          
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                                          
10018565  GAP_PrivacyInit                                            
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                                                 
20000000  ti_sysbios_family_arm_m3_Hwi_ramVectors                    
200000c8  __ccfg                                                     
20000531  gapBond_removeLRUBond                                      
20000532  gapBond_syncRL                                             
2000055a  gapBond_lruBondList                                        
200007c8  PowerCC26XX_module                                         
20000a6c  baseTaskID                                                 
20000a70  cbTimers                                                   
20000b58  ti_sysbios_knl_Task_Object__table__V                       
20000ba4  pwrmgr_initialized                                         
20000ba6  pwrmgr_attribute                                           
20000ba8  ti_sysbios_family_arm_cc26xx_Timer_Object__table__V        
20000bf0  ti_sysbios_knl_Task_Module__state__V                       
20000d6c  ti_sysbios_family_arm_m3_Hwi_Module__state__V              
20000dd0  ti_sysbios_knl_Swi_Module_State_0_readyQ__A                
20000e00  ti_sysbios_knl_Swi_Object__table__V                        
20000e30  ti_sysbios_knl_Task_Module_State_0_readyQ__A               
20000e60  ti_sysbios_knl_Clock_Module__state__V                      
20000e90  osal_qHead                                                 
20000e94  osal_eventloop_hook                                        
20000e98  osal_icallMsg_hook                                         
20000e9c  osal_syncHandle                                            
20000ea0  osal_tickperiod                                            
20000ea4  osal_max_msecs                                             
20000ed8  ti_sysbios_BIOS_Module__state__V                           
20000efc  llUserConfig                                               
20000f3c  ti_sysbios_knl_Clock_Object__table__V                      
2000102c  ti_sysbios_gates_GateMutex_Object__table__V                
20001048  ti_sysbios_knl_Swi_Module__state__V                        
200010b0  ti_sysbios_family_arm_m3_Hwi_Object__table__V              
20001170  bleAppServiceInfoTable                                     
20001180  gattAttrTbl                                                
20001190  rfRegTbl                                                   
200011a0  user0Cfg                                                   
200011b0  xdc_runtime_HeapMin_Object__table__V                       
20001208  __TI_cleanup_ptr                                           
2000120c  __TI_dtors_ptr                                             
20001210  __TI_enable_exit_profile_output                            
20001238  ICall_enterCriticalSection                                 
2000123c  ICall_leaveCriticalSection                                 
20001240  ICall_dispatcher                                           
20001244  pfnBMAlloc                                                 
20001248  pfnBMFree                                                  
2000124c  lastAppOpcodeIdxSent                                       
20001284  _lock                                                      
20001288  _unlock                                                    
2000128c  assertSubcause                                             
2000128d  legacyMode                                                 
20001290  halAssertCback                                             
20001298  OSAL_timeSeconds                                           
200012a4  sizeInfo                                                   
200012e4  ti_sysbios_family_arm_cc26xx_Timer_Module__state__V        
200012ec  ti_sysbios_family_arm_m3_Hwi_Module__root__V               
200012f4  ti_sysbios_gates_GateHwi_Module__root__V                   
200012fc  ti_sysbios_gates_GateMutex_Module__root__V                 
20001304  ti_sysbios_knl_Clock_Module__root__V                       
2000130c  ti_sysbios_knl_Event_Module__root__V                       
20001314  ti_sysbios_knl_Queue_Module__root__V                       
2000131c  ti_sysbios_knl_Semaphore_Module__root__V                   
20001324  ti_sysbios_knl_Swi_Module__root__V                         
2000132c  ti_sysbios_knl_Task_Module__root__V                        
20001334  xdc_runtime_HeapMin_Module__root__V                        
2000133c  xdc_runtime_Startup_Module__state__V                       
20001344  xdc_runtime_System_Module__state__V                        
2000135a  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A   
20001388  appAssertCback                                             
2000138c  main_func_sp                                               
20001390  icallServiceTblPtr                                         
20001398  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A  
2000139c  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A    
200013a0  ti_sysbios_gates_GateHwi_Object__table__V                  
200013a4  ti_sysbios_knl_Task_Module_State_0_idleTask__A             
200013a8  xdc_runtime_Memory_Module__state__V                        
200013b8  xdc_runtime_HeapMin_Instance_State_0_buf__A                
20001a3c  sbpTaskStack                                               
20001cc0  ti_sysbios_knl_Task_Instance_State_0_stack__A              
20001ec0  gapRoleTaskStack                                           
200021cc  PIN_NumPins                                                
20002260  PIN_HandleTable                                            
200024e0  spiCC26XXDMAObjects                                        
200025c0  rfObject                                                   
20002688  ti_sysbios_family_arm_m3_Hwi_dispatchTable                 
20002750  cryptoCC26XXObjects                                        
200027d0  gapRoleTask                                                
20002820  sbpTask                                                    
200028b8  gptimerCC26XXObjects                                       
20002cb8  udmaObjects                                                
20002e9c  timerHead                                                  
20002ea0  osal_last_timestamp                                        
20002eb4  llTaskList                                                 
20002f44  HEAPMGR_SIZE                                               
20002f48  tasksEvents                                                
20002f4c  trngCC26XXObjects                                          
20002f50  hciTaskID                                                  
20002f51  hciL2capTaskID                                             
20002f52  hciGapTaskID                                               
20002f53  hciSmpTaskID                                               
20002f54  hciTestTaskID                                              
20002f55  driverlib_release_0_48632                                  
20002f56  g_hwiInt                                                   
20002f57  icall_liteTaskId                                           
20002f58  osal_entity                                                
20002f59  heapStart                                                  
20003df0  __stack                                                    
20003df0  heapEnd                                                    
20003ff0  __STACK_END                                                
20003ff0  __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                                                
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                                            
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   SHT$$INIT_ARRAY$$Base                                      
UNDEFED   SHT$$INIT_ARRAY$$Limit                                     

[2100 symbols]


Are there any chance to fit the program into flash?
My project can be compiled before adding OAD feature. 
Pre-defined preprocessor; CC26x0ROM = 2

I appreciate you for your help.
Have a nice day





  #define FLASH_SIZE 0x00020000

UV led application

Hi, I am working on a consumer product that needs to brighten and dim a UV led which runs at 3-3.3 V at 10 mA.  The circuit just needs to brighten and dim the LED every 5 seconds or so in order to conserve battery life.  Is it possible to do this with a LDO (low dropout voltage regulator) or is possible to use just passive components?

Scot

LM5161: Topology with 9 isolated outputs

Part Number:LM5161

Hello,

I have to design a power scheme including a non-isolated 3.3 V rail and 9 individually isolated 3.3 V rails.

In the past I used LM5161 in fly-buck topology in order to generate 4 individually isolated rails with buck converters used to bring voltage down to 3.3 V, but with this new topology I'm not able to find a single transformer that does the job. Is there a way to generate all 9 isolated rails without using two or more converters?

I see there are many 6 1:1 windings isolated transformers on the market. I think I could take a couple of them and use their two primary windings in series as the non-isolated inductance of an LM5161, but what voltage should I expect on the 10 secondary windings?

Is there another simplest way to get the job done?

Thanks in advance.

Regards,

Stefano

CCS/TMS320F28379D: CCSv7.2 Command line import/build

Part Number:TMS320F28379D

Tool/software: Code Composer Studio

Hi,

I've been trying to use CCS from command line. I've a project that I want to import and build from command line and later on use DSS to load and run the COFF from command line as well.

I'm following the steps in below link, but I'm using CCSv7.2

http://processors.wiki.ti.com/index.php/Projects_-_Command_Line_Build/Create#Import_an_existing_CCS_Project 

I get below error with below command, am I missing any thing?

C:\ti\ccsv7\eclipse>eclipsec -noSplash -data "<C:\work\........\wspace>" -application com.ti.ccstudio.apps.projectImport -ccs.help

gogo: InterruptedException: sleep interrupted
java.lang.InterruptedException: sleep interrupted
at java.lang.Thread.sleep(Native Method)
at org.apache.felix.gogo.shell.Activator.run(Activator.java:72)
at java.lang.Thread.run(Thread.java:745)

Best Regards

Santosh Athuru

TMS320F2802: flash memory map question

PGA460: Interface Conditions Under Shutdown

Part Number:PGA460

Hello Team,

One of my customers are designing using the PGA460 and had a couple of questions about the state of the interface under a shutdown condition.

1)      Will the TX pin still have a weak pull-up to IOREG or does this shutdown to conserve power?

2)      If the RX input is held low and the device then shuts down will the device remain in shutdown, or will keeping the input low cause it to come out of shutdown?

Could you help clarify this? 

Thanks

CCS/UNIFLASH: How to get dslite.bat to stay open

Part Number:UNIFLASH

Tool/software: Code Composer Studio

Hey guys I am trying to modify dslite.bat that i generated from Uniflash 4.2 Standalone Command Line to stay open after it gets opened. I need it to work from windows not from CMD and the standard /K and pause options aren't working. Anyone have any insight into this?

@echo off
setlocal
setlocal ENABLEDELAYEDEXPANSION

REM Path to this batch script
set UNIFLASH_PATH=%~dp0

REM Path to DebugServer folder
set DEBUGSERVER_ROOT=%~dp0ccs_base\DebugServer\

set MODE=flash
set EXECUTABLE="!DEBUGSERVER_ROOT!bin\DSLite"

set GENERATED_COMMAND=-c user_files/configs/f28052f.ccxml -l user_files/settings/generated.ufsettings -e -f -v user_files/images/Image_working.txt  -a CalculateChecksum

REM list available modes
if "%1"=="--listMode" (
	echo.
	
	echo Usage: dslite --mode ^<mode^> arg
	echo.
	
	echo Available Modes for UniFlash CLI:
	echo   * flash [default] - on-chip flash programming
	echo   * memory          - export memory to a file
	echo   * load            - simple loader [use default options]
	echo   * serial          - serial flash programming
if exist !DEBUGSERVER_ROOT!drivers\MSP430Flasher.exe (
	echo   * mspflasher      - support MSPFlasher command line parameters [deprecated]
)
	
	exit /b 0
)

REM no parameters given, use the default generated command
if "%1" EQU "" (
	echo Executing default command:
	echo ^> dslite --mode !MODE! !GENERATED_COMMAND!
	echo.
	
	CMD /S /C "%EXECUTABLE% !MODE! !GENERATED_COMMAND!"
	exit /b !errorlevel!
)

REM user options parsing
set USEROPTIONS=%*

REM user options without the --mode
set "_args=%*"
set "_args=!_args:*%1 =!"
set "_args=!_args:*%2 =!"

if "%3"=="" (
	set USEROPTIONS2=
) else (
	set USEROPTIONS2=!_args!
)

REM custom mode from users
if "%1" EQU "--mode" (
	set MODE=%2
	set USEROPTIONS=!USEROPTIONS2!
)

REM default user options if none given
if "!USEROPTIONS!" EQU "" (
	set USEROPTIONS=-h
)

REM mspflasher support
if "%MODE%" EQU "mspflasher" (
	set EXECUTABLE=!DEBUGSERVER_ROOT!drivers\MSP430Flasher.exe
	set MODE=
)

REM execute with given user parameters
echo Executing the following command:
if "!MODE!" EQU "" (
	echo ^> !EXECUTABLE! !USEROPTIONS!
) else (
	echo ^> !EXECUTABLE! !MODE! !USEROPTIONS!
)
echo.

echo this is a test POINT
CMD /K /S  "%EXECUTABLE% !MODE! !USEROPTIONS!"
exit /b !errorlevel!


TM4C1294NCPDT: Erase flash memory whitout JTAG

Part Number:TM4C1294NCPDT

Hi evebody

I developed a custom board where I have 2 microcontrollers TM4C1294NCPDT that communicate via port SSI0. But only one of them is connected to a JTAG interface.

I try to write the firmware on the other microcontroller via SSI, but for this to work, the microcontroller flash memory needs to be erased.

I think flash memory is erased from the factory, but that does not happen. The microcontroller has never been used.

I want to know if it is possible to erase flash memory via a circuit or SSI port.
Or if is possible force a firmware update via SSI in the microcontroller without the jtag.

TMS320F28335: power up sequencing and SCI questions

Part Number:TMS320F28335

Hi,

my customer is using F28335.

What's the state of SCI pins when they are configured to work as SCITX and SCIRX? The customer is connecting these pins with external 3.3V(connected to ground through a cap) through pull up resistor, but even when the external 3.3V is not powered, they can measure 3.3V on these pins, so they are curious what's the state of SCITX and SCIRX pins.

How long should XRS pin should be pulled low after power up?(they are choosing external reset chip)

In power sequencing chapter, there is a delay between device powered up and clock settled(tOSCST), during this time, the XRS should be pulled low, right? But in the datasheet, only nominal value of tOSCST is given=10ms, how about the longest time? Will the temperature affect this time?

Howard

AM5728: Configuring EMIF(s) to use solely EMIF2

Part Number:AM5728

Hello,

We have a custom designed PCB with an AM5728, we are having issues with our SPL failing to launch U-Boot and we suspect it is an issue with the EMIF configs.

I have followed SPRAC36A closely to populate configuration values, however our configuration seems to be different than the typical as we use EMIF2 and not EMIF1. EMIF2 was selected for PCB layout reasons, and before design the TRM was consulted to look for any issues with using just EMIF2 and not EMIF1, there was no indication found that this was not allowed.

When 1 EMIF interface is selected in the EMIF Config document it seems to default settings to EMIF1. Namely it looks like the dmm_lisa_map_x [1:4] registers default to EMIF1.

It is also of note that values for emif_ddr_ext_phy_ctrl_x [1:5] included in the emif_regs structs are not produced by the spreadsheet, is there anything that we should be doing with them?

See below the input data used:

 Image may be NSFW.
Clik here to view.

Output configuration data:

const struct dpll_params AM572x_DDR3L_532MHz_6728_rev00_pll_params = {

    .m = 266,

    .n = 4,

    .m2 = 2,

    .m4_h11 = 8

};

const struct ctrl_ioregs AM572x_DDR3L_532MHz_6728_rev00_ctrl_ioregs = {

    .ctrl_ddr3ch = 0x80808080,

    .ctrl_ddrch = 0x40404040,

    .ctrl_ddrio_0 = 0x00094A40,

    .ctrl_ddrio_1 = 0x04A52000,

    .ctrl_emif_sdram_config_ext = 0x0000C123

};

const struct dmm_lisa_map_regs AM572x_DDR3L_532MHz_6728_rev00_dmm_regs = {

    .dmm_lisa_map_0 = 0x00000000,

    .dmm_lisa_map_1 = 0x00000000,

    .dmm_lisa_map_2 = 0x80400100, <- original value

    .dmm_lisa_map_3 = 0xFF020100, <- original value

    .dmm_lisa_map_2 = 0x80400200, <- Attempted fix for EMIF2

    .dmm_lisa_map_3 = 0xFF020200, <- Attempted fix for EMIF2

    .is_ma_present = 0x1

};

const struct emif_regs AM572x_DDR3L_532MHz_6728_rev00_emif_regs = {

    .sdram_config_init = 0x61851A32,

    .sdram_config = 0x61851A32,

    .sdram_config2 = 0x00000000,

    .ref_ctrl = 0x000040F1,

    .ref_ctrl_final = 0x00001035,

    .sdram_tim1 = 0xCCCF36AB,

    .sdram_tim2 = 0x30457FDA,

    .sdram_tim3 = 0x407F83A8,

    .read_idle_ctrl = 0x00050000,

    .zq_config = 0x5007190B,

    .temp_alert_config = 0x00000000,

    .emif_rd_wr_lvl_rmp_ctl = 0x80000000,

    .emif_rd_wr_lvl_ctl = 0x00000000,

    .emif_ddr_phy_ctlr_1_init = 0x0024400B,

    .emif_ddr_phy_ctlr_1 = 0x0E24400B,

    .emif_rd_wr_exec_thresh = 0x00000305

};

Thanks,

Chad

CC2564MODN: certification questions

Part Number:CC2564MODN

Customer is just before certification and got in advance following questions from the test house Eurofins:


  • Bluetooth classic: Is "enhanced power control" supported by CC2564MODN? If not is there a "power control" function?
  • Bluetooth classic: Does CC2564MODN support "1-slot packets", "3-slot packets" or "5-slot packets"?
  • Bluetooth low energy: Is a "stable modulation index" used for transmitter and/or receiver?

Regards, Bernd

SN74LVC244A: the abs. minimum input negative AC voltage

Part Number:SN74LVC244A

Hi, team,

I have one question about SN74LVC244A. What is the abs. minimum input negative AC voltage for this device?

In datasheet, only -0.5VDC is marked, and note (2) is described. From customer's test, the minimum input voltage is -1.152V/240ns.

So how to evaluate the risk to device pin?

And what is the recommended time when input pin voltage is <-0.5V? Could you supply to me the judgement method?

Image may be NSFW.
Clik here to view.
Image may be NSFW.
Clik here to view.

Thanks.

Johnny

IWR1443BOOST: Reserved pin number

DRV5053: In the TIDA-00218 design, we mentioned "Contactless Proximity Current Sensing for AC, 3-Phase Input Currents".

Part Number:DRV5053

Hi, in the TIDA-00218 design, we mentioned "Contactless Proximity Current Sensing for AC, 3-Phase Input Currents".

And a customer is asking how we measure the AC, 3 phase input currents?

In the TIDA-00218, there is only one flux concentrator on it, and customer can just put a AC 3-phase wire thur it and measure the current?

Or actually we need to separate AC 3-phase into 3 wires to measure the current?

Thanks~


CCS: Update Error

Tool/software: Code Composer Studio

I am trying to update Code Composer Studio after it gave me notification that updates are available.  Unfortunately, after attempting to update, I receive the notification below.

I am using Code Composer 7.1.0 with Windows 7 Professional 64-bit, and have MSP430 and Hercules build tools installed.  My install logs (from an error report, which also failed and then instructed me to post here) are also attached.

How should I proceed?

Thanks,

Adam J.

Image may be NSFW.
Clik here to view.

(Please visit the site to view this file)

TAS5782MEVM: Idle Mode Current Consumption

Part Number:TAS5782MEVM

Hi Audio Team,

My customer is using the TAS5782EVM and is looking at reproducing the idle power consumption information in the datasheet on page 20. In particular the 37mA on the PVDD rail in the 24V PVDD, 4 Ohm load, 768kHz, Idle configuration.

In 2 different configurations, this was measured on the EVM with one (of the two) device enabled (and unmuted) and in both cases the EVM is showing around 120mA PVDD (24V) current. This is a little more than 3x higher than stated.

In the first configuration, the EVM was connected to the PPCMB (Rev F, +4V powered via an external supply) and using the EVM GUI to control the status of the device.

In the second configuration, the EVM was separated from the PPCMB and the I2C/I2S/3.3V were provided directly from an alternate source.\

In both cases a resistive 4Ohm load was used.

We are very interested for your thoughts on why the PVDD current draw would be so much higher than expected.

Please let me know if you have any questions, thank you!

Regards,

~John

Linux/AM5728: dhclient does not start automatically

Part Number:AM5728

Tool/software: Linux

Hello,

We are using Yocto based build system and we have recently started using /etc/network/interface file to manage our network. Main aim to use this file is to have automatic dhcp invocation and IP allocation when interface file is modified respectively. We have dhclient as the DHCP client. Previously we used to run the dhclient manually through our application whenever there was new network configuration updated. 

I know having an interface file, dhclient can work automatically and systemd can invoke it whenever required. In our case, dhclient is not invoking automatically (neither at bootup nor at interface file change), if we manually run the dhclient wlan0 command, then only it will retrieve an IP address from the DHCP server. We only need it for wlan0 interface, we don't have an ethernet.

I have also attached the interface file for the clarification below:

interface file for dynamic IP allocation:

auto lo
iface lo inet loopback

auto can0
iface can0 inet manual
pre-up /sbin/ip link set $IFACE type can bitrate 125000
pre-up ip link set $IFACE type can restart-ms 1000
up /sbin/ifconfig $IFACE up
down /sbin/ifconfig $IFACE down

auto can1
iface can1 inet manual
pre-up /sbin/ip link set $IFACE type can bitrate 125000
pre-up ip link set $IFACE type can restart-ms 1000
up /sbin/ifconfig $IFACE up
down /sbin/ifconfig $IFACE down

auto wlan0
iface wlan0 inet dhcp
post-up systemctl start wpa_supplicant
post-down systemctl stop wpa_supplicant

interface file for static IP allocation:

auto wlan0
iface wlan0 inet static
address 192.168.180.111
netmask 255.255.255.0
gateway 192.168.180.1
dhcp 0

Ultimate goal is to have dhclient work automatically as what it supposed to do. I would appreciate a prompt response.

Thanks,

Divyeshkumar 

CC2640R2F: BTools error - GAP Device Initialization Timeout

Part Number:CC2640R2F

Hi, I am using CC2640R2F in one of my circuit design. FYI, the UART_TX and UART_RX of my CC2640R2F is connected to the UART_RX and UART_TX of an MCU. When I tried to launch the BTool (with the correct COM port setting and the use of level shifter board), I got the following error message:

GAP Device Initialization Timeout.

Device May Not Function Properly.

Also, I notice that the current drops from 25 mA to 9 mA (at 3.3V) when I launched BTool. I assume 25 mA is the total current needed to power both CC2640R2F and the MCU. 

However, when I isolated my CC2640R2F from the MCU (i.e. removing the UART connection between them), I manage to launch the BTool successfully. May I know why did this happen? FYI, my design requires the UART (TX and RX) of MCU and CC2640R2F to be connected.

Please advise.

Thanks.

Best Regards,

Zhi Wei

RM46L852: RM46L852

Part Number:RM46L852

Hello,

I am trying to use dual clock comparator in self test but I cannot find it in HALCOGEN. Please advise.

ALso regarding the CPU selftest(STC) any example code for saving the all context before starting the test?

Viewing all 262198 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>