This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

RTOS/CC2650STK: Log_info1( "%f", floatVar) logs only only 'f'

Part Number: CC2650STK
Other Parts Discussed in Thread: CC2650, SYSBIOS

Tool/software: TI-RTOS

Hello,

Ti_DEV Team

CC2650STK using

I have 1 question.

Source code :

Log_info1("Temperature : %f", temperature*0.25);

[Uart Print]

[Work Space]

 

/*
utils.importFile("../../../../../src/common/cc26xx/kernel/cc2640/config/cc2640.cfg");

* Extend the cc2640 configuration
*/
/******************************************************************************

 @file  cc2640.cfg

 @brief TI RTOS Configuration file for CC26xx

        Imported Symbols
        Note: These symbols are defined following the --cfgArgs option.
        In IAR this is done at the end of the pre-build step.  In CCS, this
        is done in Properties->build->XDCtools-Advanced options->Configuration
        script arguments.  Multiple symbols can be used separating them by a
        comma (",").

        By default, TI RTOS builds with RTOS in ROM, interrupt vectors starting
        at address 0x0 and uses ROM only kernel modules.

        NO_ROM:     When set to a non-zero value, RTOS builds in Flash instead
                    of ROM
        OAD_IMG_A:  When set to a non-zero value, interrupt vectors are set to
                    their expected location for on-chip OAD Image A.
        OAD_IMG_B:  When set to a non-zero value, interrupt vectors are set to
                    their expected location for on-chip OAD Image B.
        OAD_IMG_E:  When set to a non-zero value, interrupt vectors are set to
                    their expected location for external flash OAD.
        USE_EVENTS: Build the RTOS Kernel Event module.

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

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

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

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

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

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

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

 ******************************************************************************
 Release Name: ble_sdk_2_02_01_18
 Release Date: 2016-10-26 15:20:04
 *****************************************************************************/


/* ================ ROM configuration ================ */
/*
 * To use BIOS in flash, comment out the code block below.
 */
if (typeof NO_ROM == 'undefined' || (typeof NO_ROM != 'undefined' && NO_ROM == 0))
{
  var ROM = xdc.useModule('ti.sysbios.rom.ROM');
  if (Program.cpu.deviceName.match(/CC26/)) {
      ROM.romName = ROM.CC2650;
  }
  else if (Program.cpu.deviceName.match(/CC13/)) {
      ROM.romName = ROM.CC1350;
  }
}



/* ================ Boot configuration ================ */
if (typeof NO_ROM == 'undefined' || (typeof NO_ROM != 'undefined' && NO_ROM == 0))
{
  var Boot = xdc.useModule('ti.sysbios.family.arm.cc26xx.Boot');
}
/*
 * This module contains family specific Boot APIs and configuration settings.
 * See the SYS/BIOS API guide for more information.
 */
if (typeof NO_ROM == 'undefined' || (typeof NO_ROM != 'undefined' && NO_ROM == 0))
{
  Boot.driverlibVersion = 2;
  Boot.customerConfig = false;
}


/* ================ Clock configuration ================ */
var Clock = xdc.useModule('ti.sysbios.knl.Clock');
/*
 * When using Power and calibrateRCOSC is set to true, this should be set to 10.
 * The timer used by the Clock module supports TickMode_DYNAMIC. This enables us
 * to set the tick period to 10 us without generating the overhead of additional
 * interrupts.
 *
 * Note: The calibrateRCOSC parameter is set within the Power configuration
 *     structure in the "Board.c" file.
 */
Clock.tickPeriod = 10;
Clock.swiPriority = 5;


/* ================ Types configuration ================ */
var Types = xdc.useModule('xdc.runtime.Types');
/*
 * This module defines basic constants and types used throughout the
 * xdc.runtime package.
 */



/* ================ Defaults (module) configuration ================ */
var Defaults = xdc.useModule('xdc.runtime.Defaults');
/*
 * A flag to allow module names to be loaded on the target. Module name
 * strings are placed in the .const section for debugging purposes.
 *
 * Pick one:
 *  - true (default)
 *      Setting this parameter to true will include name strings in the .const
 *      section so that Errors and Asserts are easier to debug.
 *  - false
 *      Setting this parameter to false will reduce footprint in the .const
 *      section. As a result, Error and Assert messages will contain an
 *      "unknown module" prefix instead of the actual module name.
 *
 *  When using BIOS in ROM:
 *      This option must be set to false.
 */
//Defaults.common$.namedModule = true;
Defaults.common$.namedModule = false;

/* Compile out all Assert's */
//Defaults.common$.diags_ASSERT = Diags.ALWAYS_OFF;

/* Allow Mod_create() and Mod_construct() but not delete() or destruct() */
Defaults.common$.memoryPolicy = Types.CREATE_POLICY;



/* ================ Error configuration ================ */
var Error = xdc.useModule('xdc.runtime.Error');
/*
 * This function is called to handle all raised errors, but unlike
 * Error.raiseHook, this function is responsible for completely handling the
 * error with an appropriately initialized Error_Block.
 *
 * Pick one:
 *  - Error.policyDefault (default)
 *      Calls Error.raiseHook with an initialized Error_Block structure and logs
 *      the error using the module's logger.
 *  - Error.policySpin
 *      Simple alternative that traps on a while(1) loop for minimized target
 *      footprint.
 *      Using Error.policySpin, the Error.raiseHook will NOT called.
 */
//Error.policyFxn = Error.policyDefault;
Error.policyFxn = Error.policySpin;

/*
 * If Error.policyFxn is set to Error.policyDefault, this function is called
 * whenever an error is raised by the Error module.
 *
 * Pick one:
 *  - Error.print (default)
 *      Errors are formatted and output via System_printf() for easier
 *      debugging.
 *  - null
 *      Errors are trapped with a while(1) stub function. This option reduces
 *      code footprint.
 *  - non-null function
 *      Errors invoke custom user function. See the Error module documentation
 *      for more details.
 */
//Error.raiseHook = Error.print;
Error.raiseHook = null;
//Error.raiseHook = "&myErrorFxn";

/*
 * If Error.policyFxn is set to Error.policyDefault, this option applies to the
 * maximum number of times the Error.raiseHook function can be recursively
 * invoked. This option limits the possibility of an infinite recursion that
 * could lead to a stack overflow.
 * The default value is 16.
 */
Error.maxDepth = 2;



/* ================ Hwi configuration ================ */
var halHwi = xdc.useModule('ti.sysbios.hal.Hwi');
var m3Hwi = xdc.useModule('ti.sysbios.family.arm.m3.Hwi');
/*
 * Checks for Hwi (system) stack overruns while in the Idle loop.
 *
 * Pick one:
 *  - true (default)
 *      Checks the top word for system stack overflows during the idle loop and
 *      raises an Error if one is detected.
 *  - false
 *      Disabling the runtime check improves runtime performance and yields a
 *      reduced flash footprint.
 */
//halHwi.checkStackFlag = true;
halHwi.checkStackFlag = false;

/*
 * The following options alter the system's behavior when a hardware exception
 * is detected.
 *
 * Pick one:
 *  - Hwi.enableException = true
 *      This option causes the default m3Hwi.excHandlerFunc function to fully
 *      decode an exception and dump the registers to the system console.
 *      This option raises errors in the Error module and displays the
 *      exception in ROV.
 *  - Hwi.enableException = false
 *      This option reduces code footprint by not decoding or printing the
 *      exception to the system console.
 *      It however still raises errors in the Error module and displays the
 *      exception in ROV.
 *  - Hwi.excHandlerFunc = null
 *      This is the most aggressive option for code footprint savings; but it
 *      can difficult to debug exceptions. It reduces flash footprint by
 *      plugging in a default while(1) trap when exception occur. This option
 *      does not raise an error with the Error module.
 */
//m3Hwi.enableException = true;
//m3Hwi.enableException = false;
m3Hwi.excHandlerFunc = null;

/*
 * Enable hardware exception generation when dividing by zero.
 *
 * Pick one:
 *  - 0 (default)
 *      Disables hardware exceptions when dividing by zero
 *  - 1
 *      Enables hardware exceptions when dividing by zero
 */
m3Hwi.nvicCCR.DIV_0_TRP = 0;
//m3Hwi.nvicCCR.DIV_0_TRP = 1;

/*
 * Enable hardware exception generation for invalid data alignment.
 *
 * Pick one:
 *  - 0 (default)
 *      Disables hardware exceptions for data alignment
 *  - 1
 *      Enables hardware exceptions for data alignment
 */
m3Hwi.nvicCCR.UNALIGN_TRP = 0;
//m3Hwi.nvicCCR.UNALIGN_TRP = 1;

/* Put reset vector at start of Flash */
if (typeof OAD_IMG_A != 'undefined' && OAD_IMG_A == 1)
{
  m3Hwi.resetVectorAddress  = 0x0610;
}
else if (typeof OAD_IMG_B != 'undefined' && OAD_IMG_B == 1)
{
  m3Hwi.resetVectorAddress  = 0x6010;
}
else if (typeof OAD_IMG_E != 'undefined' && OAD_IMG_E == 1)
{
  m3Hwi.resetVectorAddress  = 0x1010;
}
else
{
  m3Hwi.resetVectorAddress  = 0x0;
}

/* Put interrupt vector at start of RAM so interrupts can be configured at runtime */
m3Hwi.vectorTableAddress  = 0x20000000;

/* CC2650 has 50 interrupts */
m3Hwi.NUM_INTERRUPTS = 50;



/* ================ Idle configuration ================ */
var Idle = xdc.useModule('ti.sysbios.knl.Idle');
/*
 * The Idle module is used to specify a list of functions to be called when no
 * other tasks are running in the system.
 *
 * Functions added here will be run continuously within the idle task.
 *
 * Function signature:
 *     Void func(Void);
 */
//Idle.addFunc("&myIdleFunc");



/* ================ Kernel (SYS/BIOS) configuration ================ */
var BIOS = xdc.useModule('ti.sysbios.BIOS');
/*
 * Enable asserts in the BIOS library.
 *
 * Pick one:
 *  - true (default)
 *      Enables asserts for debugging purposes.
 *  - false
 *      Disables asserts for a reduced code footprint and better performance.
 *
 *  When using BIOS in ROM:
 *      This option must be set to false.
 */
//BIOS.assertsEnabled = true;
BIOS.assertsEnabled = false;

/*
 * Specify default heap size for BIOS.
 */
if (typeof NO_ROM == 'undefined' || (typeof NO_ROM != 'undefined' && NO_ROM == 0))
{
  BIOS.heapSize = 1668;
}

/*
 * A flag to determine if xdc.runtime sources are to be included in a custom
 * built BIOS library.
 *
 * Pick one:
 *  - false (default)
 *      The pre-built xdc.runtime library is provided by the respective target
 *      used to build the application.
 *  - true
 *      xdc.runtime library sources are to be included in the custom BIOS
 *      library. This option yields the most efficient library in both code
 *      footprint and runtime performance.
 */
//BIOS.includeXdcRuntime = false;
BIOS.includeXdcRuntime = true;

/*
 * The SYS/BIOS runtime is provided in the form of a library that is linked
 * with the application. Several forms of this library are provided with the
 * SYS/BIOS product.
 *
 * Pick one:
 *   - BIOS.LibType_Custom
 *      Custom built library that is highly optimized for code footprint and
 *      runtime performance.
 *   - BIOS.LibType_Debug
 *      Custom built library that is non-optimized that can be used to
 *      single-step through APIs with a debugger.
 *
 */
BIOS.libType = BIOS.LibType_Custom;
//BIOS.libType = BIOS.LibType_Debug;

/*
 * Runtime instance creation enable flag.
 *
 * Pick one:
 *   - true (default)
 *      Allows Mod_create() and Mod_delete() to be called at runtime which
 *      requires a default heap for dynamic memory allocation.
 *   - false
 *      Reduces code footprint by disallowing Mod_create() and Mod_delete() to
 *      be called at runtime. Object instances are constructed via
 *      Mod_construct() and destructed via Mod_destruct().
 *
 *  When using BIOS in ROM:
 *      This option must be set to true.
 */
BIOS.runtimeCreatesEnabled = true;
//BIOS.runtimeCreatesEnabled = false;

/*
 * Enable logs in the BIOS library.
 *
 * Pick one:
 *  - true (default)
 *      Enables logs for debugging purposes.
 *  - false
 *      Disables logging for reduced code footprint and improved runtime
 *      performance.
 *
 *  When using BIOS in ROM:
 *      This option must be set to false.
 */
//BIOS.logsEnabled = true;
BIOS.logsEnabled = false;

BIOS.swiEnabled = true;



/* ================ Memory configuration ================ */
var Memory = xdc.useModule('xdc.runtime.Memory');
/*
 * The Memory module itself simply provides a common interface for any
 * variety of system and application specific memory management policies
 * implemented by the IHeap modules(Ex. HeapMem, HeapBuf).
 */
/* Create a small "alloc-only" heap */
if (typeof NO_ROM != 'undefined' && NO_ROM != 0)
{
  var HeapMin = xdc.useModule('xdc.runtime.HeapMin');
  var heapMinParams = new HeapMin.Params;
  heapMinParams.size = 1668;
  var myHeapMin = HeapMin.create(heapMinParams);
  Memory.defaultHeapInstance = myHeapMin;
}



/* ================ Program configuration ================ */
/*
 *  Program.stack is ignored with IAR. Use the project options in
 *  IAR Embedded Workbench to alter the system stack size.
 */
if (typeof NO_ROM == 'undefined' || (typeof NO_ROM != 'undefined' && NO_ROM == 0))
{
  Program.stack = 1024;
  Program.argSize = 0;
}
else
{
  Program.stack = 512;
}



/* ================ Semaphore configuration ================ */
var Semaphore = xdc.useModule('ti.sysbios.knl.Semaphore');
/*
 * Enables global support for Task priority pend queuing.
 *
 * Pick one:
 *  - true (default)
 *      This allows pending tasks to be serviced based on their task priority.
 *  - false
 *      Pending tasks are services based on first in, first out basis.
 *
 *  When using BIOS in ROM:
 *      This option must be set to false.
 */
//Semaphore.supportsPriority = true;
Semaphore.supportsPriority = false;

/*
 * Allows for the implicit posting of events through the semaphore,
 * disable for additional code saving.
 *
 * Pick one:
 *  - true
 *      This allows the Semaphore module to post semaphores and events
 *      simultaneously.
 *  - false (default)
 *      Events must be explicitly posted to unblock tasks.
 *
 *  When using BIOS in ROM:
 *      This option must be set to false.
 */
//Semaphore.supportsEvents = true;
Semaphore.supportsEvents = false;




/* ================ Events configuration ================ */
if (typeof USE_EVENTS != 'undefined' && USE_EVENTS != 0)
{
  var Events = xdc.useModule('ti.sysbios.knl.Event');
}



/* ================ Swi configuration ================ */
var Swi = xdc.useModule('ti.sysbios.knl.Swi');
/*
 * A software interrupt is an object that encapsulates a function to be
 * executed and a priority. Software interrupts are prioritized, preempt tasks
 * and are preempted by hardware interrupt service routines.
 *
 * This module is included to allow Swi's in a users' application.
 */
Swi.numPriorities = 6;



/* ================ System configuration ================ */
var System = xdc.useModule('xdc.runtime.System');
/*
 * The Abort handler is called when the system exits abnormally.
 *
 * Pick one:
 *  - System.abortStd (default)
 *      Call the ANSI C Standard 'abort()' to terminate the application.
 *  - System.abortSpin
 *      A lightweight abort function that loops indefinitely in a while(1) trap
 *      function.
 *  - A custom abort handler
 *      A user-defined function. See the System module documentation for
 *      details.
 */
//System.abortFxn = System.abortStd;
System.abortFxn = System.abortSpin;
//System.abortFxn = "&myAbortSystem";

/*
 * The Exit handler is called when the system exits normally.
 *
 * Pick one:
 *  - System.exitStd (default)
 *      Call the ANSI C Standard 'exit()' to terminate the application.
 *  - System.exitSpin
 *      A lightweight exit function that loops indefinitely in a while(1) trap
 *      function.
 *  - A custom exit function
 *      A user-defined function. See the System module documentation for
 *      details.
 */
//System.exitFxn = System.exitStd;
System.exitFxn = System.exitSpin;
//System.exitFxn = "&myExitSystem";

/*
 * Minimize exit handler array in the System module. The System module includes
 * an array of functions that are registered with System_atexit() which is
 * called by System_exit(). The default value is 8.
 */
System.maxAtexitHandlers = 0;

/*
 * The System.SupportProxy defines a low-level implementation of System
 * functions such as System_printf(), System_flush(), etc.
 *
 * Pick one pair:
 *  - SysMin
 *      This module maintains an internal configurable circular buffer that
 *      stores the output until System_flush() is called.
 *      The size of the circular buffer is set via SysMin.bufSize.
 *  - SysCallback
 *      SysCallback allows for user-defined implementations for System APIs.
 *      The SysCallback support proxy has a smaller code footprint and can be
 *      used to supply custom System_printf services.
 *      The default SysCallback functions point to stub functions. See the
 *      SysCallback module's documentation.
 */
//var SysMin = xdc.useModule('xdc.runtime.SysMin');
//SysMin.bufSize = 128;
//System.SupportProxy = SysMin;
var SysCallback = xdc.useModule('xdc.runtime.SysCallback');
System.SupportProxy = SysCallback;
//SysCallback.abortFxn = "&myUserAbort";
//SysCallback.exitFxn  = "&myUserExit";
//SysCallback.flushFxn = "&myUserFlush";
//SysCallback.putchFxn = "&myUserPutch";
//SysCallback.readyFxn = "&myUserReady";



/* ================ Task configuration ================ */
var Task = xdc.useModule('ti.sysbios.knl.Task');
/*
 * Check task stacks for overflow conditions.
 *
 * Pick one:
 *  - true (default)
 *      Enables runtime checks for task stack overflow conditions during
 *      context switching ("from" and "to")
 *  - false
 *      Disables runtime checks for task stack overflow conditions.
 *
 *  When using BIOS in ROM:
 *      This option must be set to false.
 */
//Task.checkStackFlag = true;
Task.checkStackFlag = false;

/*
 * Set the default task stack size when creating tasks.
 *
 * The default is dependent on the device being used. Reducing the default stack
 * size yields greater memory savings.
 */
Task.defaultStackSize = 512;

/*
 * Enables the idle task.
 *
 * Pick one:
 *  - true (default)
 *      Creates a task with priority of 0 which calls idle hook functions. This
 *      option must be set to true to gain power savings provided by the Power
 *      module.
 *  - false
 *      No idle task is created. This option consumes less memory as no
 *      additional default task stack is needed.
 *      To gain power savings by the Power module without having the idle task,
 *      add Idle.run as the Task.allBlockedFunc.
 */
Task.enableIdleTask = true;
//Task.enableIdleTask = false;
//Task.allBlockedFunc = Idle.run;

/*
 * If Task.enableIdleTask is set to true, this option sets the idle task's
 * stack size.
 *
 * Reducing the idle stack size yields greater memory savings.
 */
Task.idleTaskStackSize = 512;

/*
 * Reduce the number of task priorities.
 * The default is 16.
 * Decreasing the number of task priorities yield memory savings.
 */
Task.numPriorities = 6;



/* ================ Text configuration ================ */
var Text = xdc.useModule('xdc.runtime.Text');
/*
 * These strings are placed in the .const section. Setting this parameter to
 * false will save space in the .const section. Error, Assert and Log messages
 * will print raw ids and args instead of a formatted message.
 *
 * Pick one:
 *  - true (default)
 *      This option loads test string into the .const for easier debugging.
 *  - false
 *      This option reduces the .const footprint.
 */
//Text.isLoaded = true;
Text.isLoaded = false;



/* ================ TI-RTOS middleware configuration ================ */
var mwConfig = xdc.useModule('ti.mw.Config');
/*
 * Include TI-RTOS middleware libraries
 */



/* ================ TI-RTOS drivers' configuration ================ */
var driversConfig = xdc.useModule('ti.drivers.Config');
/*
 * Include TI-RTOS drivers
 *
 * Pick one:
 *  - driversConfig.LibType_NonInstrumented (default)
 *      Use TI-RTOS drivers library optimized for footprint and performance
 *      without asserts or logs.
 *  - driversConfig.LibType_Instrumented
 *      Use TI-RTOS drivers library for debugging with asserts and logs enabled.
 */
driversConfig.libType = driversConfig.LibType_NonInstrumented;
//driversConfig.libType = driversConfig.LibType_Instrumented;



// Remaining Modules
var Diags = xdc.useModule('xdc.runtime.Diags');
var Main = xdc.useModule('xdc.runtime.Main');
var Reset = xdc.useModule('xdc.runtime.Reset');




// Need Text loaded for formatting of Log_info/warning/error, but not for Log_print.
Text.isLoaded = true;

// Logging
var Log = xdc.useModule('xdc.runtime.Log');

// Override error output color with ANSI codes, and use shorter (file.c:line) format.
Log.L_error =  {
    mask: Diags.STATUS,
    level: Diags.ERROR,
    msg: "\x1b[31;1mERROR:\x1b[0m (%s:%d) %$S"
};

Log.L_info = {
    mask: Diags.INFO,
    msg: "\x1b[32;1mINFO:\x1b[0m (%s:%d) %$S"
};

Log.L_warning = {
    mask: Diags.STATUS,
    level: Diags.WARNING,
    msg: "\x1b[33;1mWARNING:\x1b[0m (%s:%d) %$S"
    };

// Pull in LoggerCallback
var LoggerCallback = xdc.useModule('xdc.runtime.LoggerCallback');

// Tell LoggerCallback to call our output function
LoggerCallback.outputFxn = "&uartLog_outputFxn";

// Tell the Idle module to add our flush() function to the idle loop (before Power)
var Idle = xdc.useModule('ti.sysbios.knl.Idle'); // Add if Idle isn't already imported.
Idle.addFunc('&uartLog_flush');

// Create a static instance of LoggerCallback and set as default Main logger
var loggerParams = new LoggerCallback.Params();
loggerParams.arg = 1;

// Only for Main (code that's not in an rtsc module)
Main.common$.logger = LoggerCallback.create(loggerParams);
//Defaults.common$.logger = LoggerCallback.create(loggerParams); // Use for all log events

// Turn on USER1 logs and INFO in Main module (user code). Turn off USER2 for fun.
Main.common$.diags_USER1 = Diags.ALWAYS_ON;
Main.common$.diags_USER2 = Diags.ALWAYS_OFF;
Main.common$.diags_USER6 = Diags.ALWAYS_ON;
Main.common$.diags_INFO = Diags.ALWAYS_ON;

 

 

 

 

 

 

 

 

 

How can i print uart float value?

  • and i find same problem

    e2e.ti.com/.../300136

    but i'm not find solution..

  • I can't tell from your config script if you are using ROM or not. If you are, the function System_printf could be in ROM and might not have 'f' conversion enabled. When you reach Log_info function in your code, can you set up a breakpoint on that line 'if (c == "f")' and see if you reach it?
    Also, please post *.map file from your project.
  • Hello Sasha,

    I find map and add map file.

    ******************************************************************************
                      TI ARM Linker PC v5.2.6                      
    ******************************************************************************
    >> Linked Mon Mar 06 19:55:55 2017
    
    OUTPUT FILE NAME:   <arrhythmia_1ch_cc2650_smartpatch_app.out>
    ENTRY POINT SYMBOL: "ResetISR"  address: 00009339
    
    
    MEMORY CONFIGURATION
    
             name            origin    length      used     unused   attr    fill
    ----------------------  --------  ---------  --------  --------  ----  --------
      FLASH                 00000000   00011000  0000ed4e  000022b2  R  X
      FLASH_LAST_PAGE       0001f000   00001000  00000058  00000fa8  R  X
      SRAM                  20000000   00004428  0000361f  00000e09  RW X
    
    
    SEGMENT ALLOCATION MAP
    
    run origin  load origin   length   init length attrs members
    ----------  ----------- ---------- ----------- ----- -------
    00000000    00000000    0000ed58   0000ed58    r-x
      00000000    00000000    0000003c   0000003c    r-- .resetVecs
      0000003c    0000003c    000000c4   000000c4    r-x .text.1
      00000100    00000100    0000003c   0000003c    r-- .const:ti_sysbios_knl_Task_Object__PARAMS__C
      0000013c    0000013c    00000034   00000034    r-- .const:ti_sysbios_knl_Mailbox_Object__PARAMS__C
      00000170    00000170    00000030   00000030    r-- .const:ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C
      000001a0    000001a0    0000002c   0000002c    r-- .const:ti_sysbios_hal_Hwi_Object__PARAMS__C
      000001cc    000001cc    00000028   00000028    r-- .const:ti_sysbios_heaps_HeapMem_Module__FXNS__C
      000001f4    000001f4    00000028   00000028    r-- .const:ti_sysbios_knl_Swi_Object__PARAMS__C
      0000021c    0000021c    00000024   00000024    r-- .const:ti_sysbios_gates_GateHwi_Module__FXNS__C
      00000240    00000240    00000024   00000024    r-- .const:ti_sysbios_gates_GateMutex_Module__FXNS__C
      00000264    00000264    00000024   00000024    r-- .const:ti_sysbios_heaps_HeapMem_Object__PARAMS__C
      00000288    00000288    00000024   00000024    r-- .const:ti_sysbios_knl_Clock_Object__PARAMS__C
      000002ac    000002ac    00000024   00000024    r-- .const:ti_sysbios_knl_Semaphore_Object__PARAMS__C
      000002d0    000002d0    00000020   00000020    r-- .const:ti_sysbios_family_arm_m3_Hwi_Object__DESC__C
      000002f0    000002f0    00000020   00000020    r-- .const:ti_sysbios_gates_GateHwi_Object__DESC__C
      00000310    00000310    00000020   00000020    r-- .const:ti_sysbios_gates_GateMutex_Object__DESC__C
      00000330    00000330    00000020   00000020    r-- .const:ti_sysbios_hal_Hwi_Object__DESC__C
      00000350    00000350    00000020   00000020    r-- .const:ti_sysbios_heaps_HeapMem_Object__DESC__C
      00000370    00000370    00000020   00000020    r-- .const:ti_sysbios_knl_Clock_Object__DESC__C
      00000390    00000390    00000020   00000020    r-- .const:ti_sysbios_knl_Mailbox_Object__DESC__C
      000003b0    000003b0    00000020   00000020    r-- .const:ti_sysbios_knl_Queue_Object__DESC__C
      000003d0    000003d0    00000020   00000020    r-- .const:ti_sysbios_knl_Semaphore_Object__DESC__C
      000003f0    000003f0    00000020   00000020    r-- .const:ti_sysbios_knl_Swi_Object__DESC__C
      00000410    00000410    00000020   00000020    r-- .const:ti_sysbios_knl_Task_Object__DESC__C
      00000430    00000430    00000018   00000018    r-- .const:ti_sysbios_gates_GateHwi_Object__PARAMS__C
      00000448    00000448    00000018   00000018    r-- .const:ti_sysbios_gates_GateMutex_Object__PARAMS__C
      00000460    00000460    00000018   00000018    r-- .const:ti_sysbios_knl_Queue_Object__PARAMS__C
      00000478    00000478    00000008   00000008    r-- .const:ti_sysbios_knl_Idle_funcList__C
      00000480    00000480    00000004   00000004    r-x .text.2
      00000484    00000484    00000004   00000004    r-- .const:ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C
      00000488    00000488    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C
      0000048c    0000048c    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C
      00000490    00000490    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C
      00000494    00000494    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_Object__count__C
      00000498    00000498    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_Object__table__C
      0000049c    0000049c    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_ccr__C
      000004a0    000004a0    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C
      000004a4    000004a4    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C
      000004a8    000004a8    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C
      000004ac    000004ac    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_Hwi_priGroup__C
      000004b0    000004b0    00000004   00000004    r-- .const:ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C
      000004b4    000004b4    00000004   00000004    r-- .const:ti_sysbios_heaps_HeapMem_E_memory__C
      000004b8    000004b8    00000004   00000004    r-- .const:ti_sysbios_heaps_HeapMem_Module__gateObj__C
      000004bc    000004bc    00000004   00000004    r-- .const:ti_sysbios_heaps_HeapMem_Object__count__C
      000004c0    000004c0    00000004   00000004    r-- .const:ti_sysbios_heaps_HeapMem_Object__table__C
      000004c4    000004c4    00000004   00000004    r-- .const:ti_sysbios_heaps_HeapMem_reqAlign__C
      000004c8    000004c8    00000004   00000004    r-- .const:ti_sysbios_knl_Clock_serviceMargin__C
      000004cc    000004cc    00000004   00000004    r-- .const:ti_sysbios_knl_Mailbox_Object__count__C
      000004d0    000004d0    00000004   00000004    r-- .const:ti_sysbios_knl_Mailbox_Object__table__C
      000004d4    000004d4    00000004   00000004    r-- .const:ti_sysbios_knl_Queue_Object__count__C
      000004d8    000004d8    00000004   00000004    r-- .const:ti_sysbios_knl_Queue_Object__table__C
      000004dc    000004dc    00000004   00000004    r-- .const:ti_sysbios_knl_Swi_Object__count__C
      000004e0    000004e0    00000004   00000004    r-- .const:ti_sysbios_knl_Swi_Object__table__C
      000004e4    000004e4    00000004   00000004    r-- .const:ti_sysbios_knl_Swi_numPriorities__C
      000004e8    000004e8    00000004   00000004    r-- .const:ti_sysbios_knl_Task_Object__count__C
      000004ec    000004ec    00000004   00000004    r-- .const:ti_sysbios_knl_Task_Object__table__C
      000004f0    000004f0    00000004   00000004    r-- .const:ti_sysbios_knl_Task_allBlockedFunc__C
      000004f4    000004f4    00000004   00000004    r-- .const:ti_sysbios_knl_Task_defaultStackHeap__C
      000004f8    000004f8    00000004   00000004    r-- .const:ti_sysbios_knl_Task_defaultStackSize__C
      000004fc    000004fc    00000004   00000004    r-- .const:ti_sysbios_knl_Task_numConstructedTasks__C
      00000500    00000500    00000002   00000002    r-x .text.3
      00000502    00000502    00000002   00000002    r-- .const:ti_sysbios_family_arm_cc26xx_Timer_Module__id__C
      00000504    00000504    00000002   00000002    r-- .const:ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C
      00000506    00000506    00000002   00000002    r-- .const:ti_sysbios_family_arm_m3_Hwi_Module__id__C
      00000508    00000508    00000002   00000002    r-- .const:ti_sysbios_gates_GateHwi_Module__id__C
      0000050a    0000050a    00000002   00000002    r-- .const:ti_sysbios_gates_GateMutex_Module__id__C
      0000050c    0000050c    00000002   00000002    r-- .const:ti_sysbios_heaps_HeapMem_Module__id__C
      0000050e    0000050e    00000002   00000002    r-- .const:ti_sysbios_knl_Task_initStackFlag__C
      00000510    00000510    00000001   00000001    r-- .const:ti_sysbios_knl_Clock_tickMode__C
      00000514    00000514    00000008   00000008    r-- .const:xdc_runtime_Startup_firstFxns__C
      0000051c    0000051c    00000008   00000008    r-- .const:xdc_runtime_Startup_lastFxns__C
      00000524    00000524    00000004   00000004    r-- .const:xdc_runtime_Assert_E_assertFailed__C
      00000528    00000528    00000004   00000004    r-- .const:xdc_runtime_Error_E_memory__C
      0000052c    0000052c    00000004   00000004    r-- .const:xdc_runtime_Error_policyFxn__C
      00000530    00000530    00000004   00000004    r-- .const:xdc_runtime_IGateProvider_Interface__BASE__C
      00000534    00000534    00000004   00000004    r-- .const:xdc_runtime_IHeap_Interface__BASE__C
      00000538    00000538    00000004   00000004    r-- .const:xdc_runtime_IModule_Interface__BASE__C
      0000053c    0000053c    00000004   00000004    r-- .const:xdc_runtime_Main_Module__diagsEnabled__C
      00000540    00000540    00000004   00000004    r-- .const:xdc_runtime_Main_Module__diagsIncluded__C
      00000544    00000544    00000004   00000004    r-- .const:xdc_runtime_Main_Module__diagsMask__C
      00000548    00000548    00000004   00000004    r-- .const:xdc_runtime_Memory_defaultHeapInstance__C
      0000054c    0000054c    00000004   00000004    r-- .const:xdc_runtime_Startup_execImpl__C
      00000550    00000550    00000004   00000004    r-- .const:xdc_runtime_Startup_maxPasses__C
      00000554    00000554    00000004   00000004    r-- .const:xdc_runtime_Startup_sfxnRts__C
      00000558    00000558    00000004   00000004    r-- .const:xdc_runtime_Startup_sfxnTab__C
      0000055c    0000055c    00000004   00000004    r-- .const:xdc_runtime_Startup_startModsFxn__C
      00000560    00000560    00000004   00000004    r-- .const:xdc_runtime_SysCallback_abortFxn__C
      00000564    00000564    00000004   00000004    r-- .const:xdc_runtime_SysCallback_exitFxn__C
      00000568    00000568    00000004   00000004    r-- .const:xdc_runtime_System_abortFxn__C
      0000056c    0000056c    00000004   00000004    r-- .const:xdc_runtime_System_exitFxn__C
      00000570    00000570    00000004   00000004    r-- .const:xdc_runtime_System_maxAtexitHandlers__C
      00000574    00000574    00000004   00000004    r-- .const:xdc_runtime_Text_charTab__C
      00000578    00000578    00000004   00000004    r-- .const:xdc_runtime_Text_nameEmpty__C
      0000057c    0000057c    00000004   00000004    r-- .const:xdc_runtime_Text_nameStatic__C
      00000580    00000580    00000004   00000004    r-- .const:xdc_runtime_Text_nameUnknown__C
      00000584    00000584    00000002   00000002    r-- .const:xdc_runtime_Main_Module__id__C
      00000586    00000586    00000002   00000002    r-- .const:xdc_runtime_Memory_Module__id__C
      00000588    00000588    00000002   00000002    r-- .const:xdc_runtime_Text_charCnt__C
      0000058a    0000058a    00000002   00000002    r-- .const:xdc_runtime_Text_isLoaded__C
      0000058c    0000058c    00000001   00000001    r-- .const:xdc_runtime_Error_policy__C
      00000590    00000590    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_AONRTCChannelEnable
      00000594    00000594    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_AONRTCCompareValueSet
      00000598    00000598    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_AONRTCCurrentCompareValueGet
      0000059c    0000059c    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_AONRTCEventClear
      000005a0    000005a0    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E
      000005a4    000005a4    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E
      000005a8    000005a8    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E
      000005ac    000005ac    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_initDevice__I
      000005b0    000005b0    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E
      000005b4    000005b4    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I
      000005b8    000005b8    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_start__E
      000005bc    000005bc    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E
      000005c0    000005c0    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_xdc_runtime_Startup_getState__I
      000005c4    000005c4    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_abort__E
      000005c8    000005c8    00000004   00000004    r-- .const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_exit__E
      000005cc    000005cc    00000004   00000004    r-- .const:ti_sysbios_gates_GateMutex_Instance_State_sem__O
      000005d0    000005d0    00000004   00000004    r-- .const:ti_sysbios_knl_Clock_Module_State_clockQ__O
      000005d4    000005d4    00000004   00000004    r-- .const:ti_sysbios_knl_Mailbox_Instance_State_dataQue__O
      000005d8    000005d8    00000004   00000004    r-- .const:ti_sysbios_knl_Mailbox_Instance_State_dataSem__O
      000005dc    000005dc    00000004   00000004    r-- .const:ti_sysbios_knl_Mailbox_Instance_State_freeQue__O
      000005e0    000005e0    00000004   00000004    r-- .const:ti_sysbios_knl_Mailbox_Instance_State_freeSem__O
      000005e4    000005e4    00000004   00000004    r-- .const:ti_sysbios_knl_Semaphore_Instance_State_pendQ__O
      000005e8    000005e8    00000004   00000004    r-- .const:ti_sysbios_knl_Task_Module_State_inactiveQ__O
      000005ec    000005ec    0000bdb0   0000bdb0    r-x .text.4
      0000c39c    0000c39c    00001f30   00001f30    r-- .const
      0000e2d0    0000e2d0    00000a88   00000a88    r-- .cinit
    0001ffa8    0001ffa8    00000058   00000058    r--
      0001ffa8    0001ffa8    00000058   00000058    r-- .ccfg
    20000100    20000100    0000315b   00000000    rw-
      20000100    20000100    00000044   00000000    rw- .data:ti_sysbios_knl_Task_Module__state__V
      20000144    20000144    00000034   00000000    rw- .data:ti_sysbios_family_arm_m3_Hwi_Module__state__V
      20000178    20000178    0000002c   00000000    rw- .data:ti_sysbios_knl_Clock_Module__state__V
      200001a4    200001a4    00000024   00000000    rw- .data:ti_sysbios_BIOS_Module__state__V
      200001c8    200001c8    0000001c   00000000    rw- .data:ti_sysbios_knl_Swi_Module__state__V
      200001e4    200001e4    00000008   00000000    rw- .data:ti_sysbios_family_arm_cc26xx_Timer_Module__state__V
      200001ec    200001ec    00000004   00000000    rw- .data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V
      200001f0    200001f0    00000008   00000000    rw- .data:xdc_runtime_Startup_Module__state__V
      200001f8    200001f8    00000008   00000000    rw- .data:xdc_runtime_System_Module__state__V
      20000200    20000200    00000004   00000000    rw- .data:xdc_runtime_Memory_Module__state__V
      20000208    20000208    00002351   00000000    rw- .data
      20002560    20002560    00000cfb   00000000    rw- .bss
    20004028    20004028    00000400   00000000    rw-
      20004028    20004028    00000400   00000000    rw- .stack
    
    
    SECTION ALLOCATION MAP
    
     output                                  attributes/
    section   page    origin      length       input sections
    --------  ----  ----------  ----------   ----------------
    .resetVecs 
    *          0    00000000    0000003c     
                      00000000    0000003c     app_ble_pem3.oem3 (.resetVecs)
    
    .text.1    0    0000003c    000000c4     
                      0000003c    000000c4     barometerservice.obj (.text:sensor_WriteAttrCB$40)
    
    .const:ti_sysbios_knl_Task_Object__PARAMS__C 
    *          0    00000100    0000003c     
                      00000100    0000003c     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_Object__PARAMS__C)
    
    .const:ti_sysbios_knl_Mailbox_Object__PARAMS__C 
    *          0    0000013c    00000034     
                      0000013c    00000034     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Object__PARAMS__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C 
    *          0    00000170    00000030     
                      00000170    00000030     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C)
    
    .const:ti_sysbios_hal_Hwi_Object__PARAMS__C 
    *          0    000001a0    0000002c     
                      000001a0    0000002c     app_ble_pem3.oem3 (.const:ti_sysbios_hal_Hwi_Object__PARAMS__C)
    
    .const:ti_sysbios_heaps_HeapMem_Module__FXNS__C 
    *          0    000001cc    00000028     
                      000001cc    00000028     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Module__FXNS__C)
    
    .const:ti_sysbios_knl_Swi_Object__PARAMS__C 
    *          0    000001f4    00000028     
                      000001f4    00000028     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Swi_Object__PARAMS__C)
    
    .const:ti_sysbios_gates_GateHwi_Module__FXNS__C 
    *          0    0000021c    00000024     
                      0000021c    00000024     app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateHwi_Module__FXNS__C)
    
    .const:ti_sysbios_gates_GateMutex_Module__FXNS__C 
    *          0    00000240    00000024     
                      00000240    00000024     app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Module__FXNS__C)
    
    .const:ti_sysbios_heaps_HeapMem_Object__PARAMS__C 
    *          0    00000264    00000024     
                      00000264    00000024     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Object__PARAMS__C)
    
    .const:ti_sysbios_knl_Clock_Object__PARAMS__C 
    *          0    00000288    00000024     
                      00000288    00000024     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Clock_Object__PARAMS__C)
    
    .const:ti_sysbios_knl_Semaphore_Object__PARAMS__C 
    *          0    000002ac    00000024     
                      000002ac    00000024     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Semaphore_Object__PARAMS__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_Object__DESC__C 
    *          0    000002d0    00000020     
                      000002d0    00000020     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Object__DESC__C)
    
    .const:ti_sysbios_gates_GateHwi_Object__DESC__C 
    *          0    000002f0    00000020     
                      000002f0    00000020     app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateHwi_Object__DESC__C)
    
    .const:ti_sysbios_gates_GateMutex_Object__DESC__C 
    *          0    00000310    00000020     
                      00000310    00000020     app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Object__DESC__C)
    
    .const:ti_sysbios_hal_Hwi_Object__DESC__C 
    *          0    00000330    00000020     
                      00000330    00000020     app_ble_pem3.oem3 (.const:ti_sysbios_hal_Hwi_Object__DESC__C)
    
    .const:ti_sysbios_heaps_HeapMem_Object__DESC__C 
    *          0    00000350    00000020     
                      00000350    00000020     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Object__DESC__C)
    
    .const:ti_sysbios_knl_Clock_Object__DESC__C 
    *          0    00000370    00000020     
                      00000370    00000020     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Clock_Object__DESC__C)
    
    .const:ti_sysbios_knl_Mailbox_Object__DESC__C 
    *          0    00000390    00000020     
                      00000390    00000020     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Object__DESC__C)
    
    .const:ti_sysbios_knl_Queue_Object__DESC__C 
    *          0    000003b0    00000020     
                      000003b0    00000020     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Queue_Object__DESC__C)
    
    .const:ti_sysbios_knl_Semaphore_Object__DESC__C 
    *          0    000003d0    00000020     
                      000003d0    00000020     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Semaphore_Object__DESC__C)
    
    .const:ti_sysbios_knl_Swi_Object__DESC__C 
    *          0    000003f0    00000020     
                      000003f0    00000020     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Swi_Object__DESC__C)
    
    .const:ti_sysbios_knl_Task_Object__DESC__C 
    *          0    00000410    00000020     
                      00000410    00000020     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_Object__DESC__C)
    
    .const:ti_sysbios_gates_GateHwi_Object__PARAMS__C 
    *          0    00000430    00000018     
                      00000430    00000018     app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateHwi_Object__PARAMS__C)
    
    .const:ti_sysbios_gates_GateMutex_Object__PARAMS__C 
    *          0    00000448    00000018     
                      00000448    00000018     app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Object__PARAMS__C)
    
    .const:ti_sysbios_knl_Queue_Object__PARAMS__C 
    *          0    00000460    00000018     
                      00000460    00000018     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Queue_Object__PARAMS__C)
    
    .const:ti_sysbios_knl_Idle_funcList__C 
    *          0    00000478    00000008     
                      00000478    00000008     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Idle_funcList__C)
    
    .text.2    0    00000480    00000004     
                      00000480    00000004     icall_api.obj (.text:GATTServApp_AddService)
    
    .const:ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C 
    *          0    00000484    00000004     
                      00000484    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C 
    *          0    00000488    00000004     
                      00000488    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C 
    *          0    0000048c    00000004     
                      0000048c    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C 
    *          0    00000490    00000004     
                      00000490    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_Object__count__C 
    *          0    00000494    00000004     
                      00000494    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Object__count__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_Object__table__C 
    *          0    00000498    00000004     
                      00000498    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Object__table__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_ccr__C 
    *          0    0000049c    00000004     
                      0000049c    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_ccr__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C 
    *          0    000004a0    00000004     
                      000004a0    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C 
    *          0    000004a4    00000004     
                      000004a4    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C 
    *          0    000004a8    00000004     
                      000004a8    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_priGroup__C 
    *          0    000004ac    00000004     
                      000004ac    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_priGroup__C)
    
    .const:ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C 
    *          0    000004b0    00000004     
                      000004b0    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C)
    
    .const:ti_sysbios_heaps_HeapMem_E_memory__C 
    *          0    000004b4    00000004     
                      000004b4    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_E_memory__C)
    
    .const:ti_sysbios_heaps_HeapMem_Module__gateObj__C 
    *          0    000004b8    00000004     
                      000004b8    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Module__gateObj__C)
    
    .const:ti_sysbios_heaps_HeapMem_Object__count__C 
    *          0    000004bc    00000004     
                      000004bc    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Object__count__C)
    
    .const:ti_sysbios_heaps_HeapMem_Object__table__C 
    *          0    000004c0    00000004     
                      000004c0    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Object__table__C)
    
    .const:ti_sysbios_heaps_HeapMem_reqAlign__C 
    *          0    000004c4    00000004     
                      000004c4    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_reqAlign__C)
    
    .const:ti_sysbios_knl_Clock_serviceMargin__C 
    *          0    000004c8    00000004     
                      000004c8    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Clock_serviceMargin__C)
    
    .const:ti_sysbios_knl_Mailbox_Object__count__C 
    *          0    000004cc    00000004     
                      000004cc    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Object__count__C)
    
    .const:ti_sysbios_knl_Mailbox_Object__table__C 
    *          0    000004d0    00000004     
                      000004d0    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Object__table__C)
    
    .const:ti_sysbios_knl_Queue_Object__count__C 
    *          0    000004d4    00000004     
                      000004d4    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Queue_Object__count__C)
    
    .const:ti_sysbios_knl_Queue_Object__table__C 
    *          0    000004d8    00000004     
                      000004d8    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Queue_Object__table__C)
    
    .const:ti_sysbios_knl_Swi_Object__count__C 
    *          0    000004dc    00000004     
                      000004dc    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Swi_Object__count__C)
    
    .const:ti_sysbios_knl_Swi_Object__table__C 
    *          0    000004e0    00000004     
                      000004e0    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Swi_Object__table__C)
    
    .const:ti_sysbios_knl_Swi_numPriorities__C 
    *          0    000004e4    00000004     
                      000004e4    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Swi_numPriorities__C)
    
    .const:ti_sysbios_knl_Task_Object__count__C 
    *          0    000004e8    00000004     
                      000004e8    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_Object__count__C)
    
    .const:ti_sysbios_knl_Task_Object__table__C 
    *          0    000004ec    00000004     
                      000004ec    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_Object__table__C)
    
    .const:ti_sysbios_knl_Task_allBlockedFunc__C 
    *          0    000004f0    00000004     
                      000004f0    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_allBlockedFunc__C)
    
    .const:ti_sysbios_knl_Task_defaultStackHeap__C 
    *          0    000004f4    00000004     
                      000004f4    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_defaultStackHeap__C)
    
    .const:ti_sysbios_knl_Task_defaultStackSize__C 
    *          0    000004f8    00000004     
                      000004f8    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_defaultStackSize__C)
    
    .const:ti_sysbios_knl_Task_numConstructedTasks__C 
    *          0    000004fc    00000004     
                      000004fc    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_numConstructedTasks__C)
    
    .text.3    0    00000500    00000002     
                      00000500    00000002     ble_user_config.obj (.text:DefaultAssertCback)
    
    .const:ti_sysbios_family_arm_cc26xx_Timer_Module__id__C 
    *          0    00000502    00000002     
                      00000502    00000002     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_cc26xx_Timer_Module__id__C)
    
    .const:ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C 
    *          0    00000504    00000002     
                      00000504    00000002     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C)
    
    .const:ti_sysbios_family_arm_m3_Hwi_Module__id__C 
    *          0    00000506    00000002     
                      00000506    00000002     app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Module__id__C)
    
    .const:ti_sysbios_gates_GateHwi_Module__id__C 
    *          0    00000508    00000002     
                      00000508    00000002     app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateHwi_Module__id__C)
    
    .const:ti_sysbios_gates_GateMutex_Module__id__C 
    *          0    0000050a    00000002     
                      0000050a    00000002     app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Module__id__C)
    
    .const:ti_sysbios_heaps_HeapMem_Module__id__C 
    *          0    0000050c    00000002     
                      0000050c    00000002     app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Module__id__C)
    
    .const:ti_sysbios_knl_Task_initStackFlag__C 
    *          0    0000050e    00000002     
                      0000050e    00000002     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_initStackFlag__C)
    
    .const:ti_sysbios_knl_Clock_tickMode__C 
    *          0    00000510    00000001     
                      00000510    00000001     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Clock_tickMode__C)
    
    .const:xdc_runtime_Startup_firstFxns__C 
    *          0    00000514    00000008     
                      00000514    00000008     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_firstFxns__C)
    
    .const:xdc_runtime_Startup_lastFxns__C 
    *          0    0000051c    00000008     
                      0000051c    00000008     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_lastFxns__C)
    
    .const:xdc_runtime_Assert_E_assertFailed__C 
    *          0    00000524    00000004     
                      00000524    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Assert_E_assertFailed__C)
    
    .const:xdc_runtime_Error_E_memory__C 
    *          0    00000528    00000004     
                      00000528    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Error_E_memory__C)
    
    .const:xdc_runtime_Error_policyFxn__C 
    *          0    0000052c    00000004     
                      0000052c    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Error_policyFxn__C)
    
    .const:xdc_runtime_IGateProvider_Interface__BASE__C 
    *          0    00000530    00000004     
                      00000530    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_IGateProvider_Interface__BASE__C)
    
    .const:xdc_runtime_IHeap_Interface__BASE__C 
    *          0    00000534    00000004     
                      00000534    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_IHeap_Interface__BASE__C)
    
    .const:xdc_runtime_IModule_Interface__BASE__C 
    *          0    00000538    00000004     
                      00000538    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_IModule_Interface__BASE__C)
    
    .const:xdc_runtime_Main_Module__diagsEnabled__C 
    *          0    0000053c    00000004     
                      0000053c    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__diagsEnabled__C)
    
    .const:xdc_runtime_Main_Module__diagsIncluded__C 
    *          0    00000540    00000004     
                      00000540    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__diagsIncluded__C)
    
    .const:xdc_runtime_Main_Module__diagsMask__C 
    *          0    00000544    00000004     
                      00000544    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__diagsMask__C)
    
    .const:xdc_runtime_Memory_defaultHeapInstance__C 
    *          0    00000548    00000004     
                      00000548    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Memory_defaultHeapInstance__C)
    
    .const:xdc_runtime_Startup_execImpl__C 
    *          0    0000054c    00000004     
                      0000054c    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_execImpl__C)
    
    .const:xdc_runtime_Startup_maxPasses__C 
    *          0    00000550    00000004     
                      00000550    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_maxPasses__C)
    
    .const:xdc_runtime_Startup_sfxnRts__C 
    *          0    00000554    00000004     
                      00000554    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_sfxnRts__C)
    
    .const:xdc_runtime_Startup_sfxnTab__C 
    *          0    00000558    00000004     
                      00000558    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_sfxnTab__C)
    
    .const:xdc_runtime_Startup_startModsFxn__C 
    *          0    0000055c    00000004     
                      0000055c    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_startModsFxn__C)
    
    .const:xdc_runtime_SysCallback_abortFxn__C 
    *          0    00000560    00000004     
                      00000560    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_SysCallback_abortFxn__C)
    
    .const:xdc_runtime_SysCallback_exitFxn__C 
    *          0    00000564    00000004     
                      00000564    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_SysCallback_exitFxn__C)
    
    .const:xdc_runtime_System_abortFxn__C 
    *          0    00000568    00000004     
                      00000568    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_System_abortFxn__C)
    
    .const:xdc_runtime_System_exitFxn__C 
    *          0    0000056c    00000004     
                      0000056c    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_System_exitFxn__C)
    
    .const:xdc_runtime_System_maxAtexitHandlers__C 
    *          0    00000570    00000004     
                      00000570    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_System_maxAtexitHandlers__C)
    
    .const:xdc_runtime_Text_charTab__C 
    *          0    00000574    00000004     
                      00000574    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Text_charTab__C)
    
    .const:xdc_runtime_Text_nameEmpty__C 
    *          0    00000578    00000004     
                      00000578    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Text_nameEmpty__C)
    
    .const:xdc_runtime_Text_nameStatic__C 
    *          0    0000057c    00000004     
                      0000057c    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Text_nameStatic__C)
    
    .const:xdc_runtime_Text_nameUnknown__C 
    *          0    00000580    00000004     
                      00000580    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Text_nameUnknown__C)
    
    .const:xdc_runtime_Main_Module__id__C 
    *          0    00000584    00000002     
                      00000584    00000002     app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__id__C)
    
    .const:xdc_runtime_Memory_Module__id__C 
    *          0    00000586    00000002     
                      00000586    00000002     app_ble_pem3.oem3 (.const:xdc_runtime_Memory_Module__id__C)
    
    .const:xdc_runtime_Text_charCnt__C 
    *          0    00000588    00000002     
                      00000588    00000002     app_ble_pem3.oem3 (.const:xdc_runtime_Text_charCnt__C)
    
    .const:xdc_runtime_Text_isLoaded__C 
    *          0    0000058a    00000002     
                      0000058a    00000002     app_ble_pem3.oem3 (.const:xdc_runtime_Text_isLoaded__C)
    
    .const:xdc_runtime_Error_policy__C 
    *          0    0000058c    00000001     
                      0000058c    00000001     app_ble_pem3.oem3 (.const:xdc_runtime_Error_policy__C)
    
    .const:ti_sysbios_rom_ROM_AONRTCChannelEnable 
    *          0    00000590    00000004     
                      00000590    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_AONRTCChannelEnable)
    
    .const:ti_sysbios_rom_ROM_AONRTCCompareValueSet 
    *          0    00000594    00000004     
                      00000594    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_AONRTCCompareValueSet)
    
    .const:ti_sysbios_rom_ROM_AONRTCCurrentCompareValueGet 
    *          0    00000598    00000004     
                      00000598    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_AONRTCCurrentCompareValueGet)
    
    .const:ti_sysbios_rom_ROM_AONRTCEventClear 
    *          0    0000059c    00000004     
                      0000059c    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_AONRTCEventClear)
    
    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E 
    *          0    000005a0    00000004     
                      000005a0    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E)
    
    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E 
    *          0    000005a4    00000004     
                      000005a4    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E)
    
    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E 
    *          0    000005a8    00000004     
                      000005a8    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E)
    
    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_initDevice__I 
    *          0    000005ac    00000004     
                      000005ac    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_initDevice__I)
    
    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E 
    *          0    000005b0    00000004     
                      000005b0    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E)
    
    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I 
    *          0    000005b4    00000004     
                      000005b4    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I)
    
    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_start__E 
    *          0    000005b8    00000004     
                      000005b8    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_start__E)
    
    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E 
    *          0    000005bc    00000004     
                      000005bc    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E)
    
    .const:ti_sysbios_rom_ROM_xdc_runtime_Startup_getState__I 
    *          0    000005c0    00000004     
                      000005c0    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_xdc_runtime_Startup_getState__I)
    
    .const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_abort__E 
    *          0    000005c4    00000004     
                      000005c4    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_abort__E)
    
    .const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_exit__E 
    *          0    000005c8    00000004     
                      000005c8    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_exit__E)
    
    .const:ti_sysbios_gates_GateMutex_Instance_State_sem__O 
    *          0    000005cc    00000004     
                      000005cc    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Instance_State_sem__O)
    
    .const:ti_sysbios_knl_Clock_Module_State_clockQ__O 
    *          0    000005d0    00000004     
                      000005d0    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Clock_Module_State_clockQ__O)
    
    .const:ti_sysbios_knl_Mailbox_Instance_State_dataQue__O 
    *          0    000005d4    00000004     
                      000005d4    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Instance_State_dataQue__O)
    
    .const:ti_sysbios_knl_Mailbox_Instance_State_dataSem__O 
    *          0    000005d8    00000004     
                      000005d8    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Instance_State_dataSem__O)
    
    .const:ti_sysbios_knl_Mailbox_Instance_State_freeQue__O 
    *          0    000005dc    00000004     
                      000005dc    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Instance_State_freeQue__O)
    
    .const:ti_sysbios_knl_Mailbox_Instance_State_freeSem__O 
    *          0    000005e0    00000004     
                      000005e0    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Instance_State_freeSem__O)
    
    .const:ti_sysbios_knl_Semaphore_Instance_State_pendQ__O 
    *          0    000005e4    00000004     
                      000005e4    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Semaphore_Instance_State_pendQ__O)
    
    .const:ti_sysbios_knl_Task_Module_State_inactiveQ__O 
    *          0    000005e8    00000004     
                      000005e8    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_Module_State_inactiveQ__O)
    
    .text.4    0    000005ec    0000bdb0     
                      000005ec    000006dc     I2CCC26XX.obj (.text:I2CCC26XX_hwiFxn$17)
                      00000cc8    00000340     I2CCC26XX.obj (.text:I2CCC26XX_primeTransfer$17)
                      00001008    00000338     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_System_doPrint__I)
                      00001340    00000310     RFCC26XX_singleMode.obj (.text:fsmActiveState$19)
                      00001650    000002ec     peripheral.obj (.text:gapRole_processGAPMsg$53)
                      0000193c    000002e8     UARTCC26XX.obj (.text:UARTCC26XX_open)
                      00001c24    00000264     I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                      00001e88    0000025c     UARTCC26XX.obj (.text:UARTCC26XX_write)
                      000020e4    0000023c     peripheral.obj (.text:GAPRole_SetParameter)
                      00002320    00000228     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
                      00002548    00000210     SensorS5852A.obj (.text:SensorS5852A_read)
                      00002758    00000204     driverlib.lib : sys_ctrl.obj (.text:NOROM_SysCtrlSetRechargeBeforePowerDown)
                      0000295c    000001f4     I2CCC26XX.obj (.text:I2CCC26XX_open)
                      00002b50    000001f4     rtsv7M3_T_le_eabi.lib : ull_div_t2.obj (.text)
                      00002d44    000001d4     UARTCC26XX.obj (.text:UARTCC26XX_read)
                      00002f18    000001d0     drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:calibrateRcoscHf1)
                      000030e8    000001cc     I2CCC26XX.obj (.text:I2CCC26XX_swiFxn$17)
                      000032b4    000001b0     sensortag.obj (.text:SensorTag_init$0)
                      00003464    000001a8     PINCC26XX.obj (.text:PIN_init)
                      0000360c    000001a8     RFCC26XX_singleMode.obj (.text:abortCmd$19)
                      000037b4    00000184     drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_doCalibrate)
                      00003938    00000170     RFCC26XX_singleMode.obj (.text:RF_postCmd)
                      00003aa8    00000164     peripheral.obj (.text:gapRole_init$53)
                      00003c0c    0000015c     UARTCC26XX.obj (.text:UARTCC26XX_hwiIntFxn)
                      00003d68    00000158     uart_logs.obj (.text:uartLog_doPrint$60)
                      00003ec0    00000130     driverlib.lib : setup.obj (.text:NOROM_SetupAfterColdResetWakeupFromShutDownCfg3)
                      00003ff0    00000128     RFCC26XX_singleMode.obj (.text:fsmSetupState$19)
                      00004118    00000120     peripheral.obj (.text:GAPRole_GetParameter)
                      00004238    0000011c     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_init)
                      00004354    00000110     UARTCC26XX.obj (.text:UARTCC26XX_writeCancel)
                      00004464    00000110     RFCC26XX_singleMode.obj (.text:hwiFxnCpe0Active$19)
                      00004574    000000fc     peripheral.obj (.text:gapRole_taskFxn$53)
                      00004670    000000fc     rtsv7M3_T_le_eabi.lib : fd_mul_t2.obj (.text)
                      0000476c    000000f8     app_ble_pem3.oem3 (.text:xdc_runtime_System_printfExtend__I)
                      00004864    000000f4     UARTCC26XX.obj (.text:UARTCC26XX_readCancel)
                      00004958    000000f4     humidityservice.obj (.text:sensor_ReadAttrCB$46)
                      00004a4c    000000ec     icall.obj (.text:ICall_primWaitMatch$26)
                      00004b38    000000ec     RFCC26XX_singleMode.obj (.text:rf_init$19)
                      00004c24    000000ec     registerservice.obj (.text:sensor_WriteAttrCB$54)
                      00004d10    000000e4     driverlib.lib : setup.obj (.text:NOROM_SetupAfterColdResetWakeupFromShutDownCfg2)
                      00004df4    000000e0     sensortag.obj (.text:SensorTag_processStateChangeEvt$0)
                      00004ed4    000000dc     UARTCC26XX.obj (.text:UARTCC26XX_close)
                      00004fb0    000000d4     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_releaseDependency)
                      00005084    000000d0     I2CCC26XX.obj (.text:I2CCC26XX_close)
                      00005154    000000d0     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_setDependency)
                      00005224    000000d0     UARTCC26XX.obj (.text:UARTCC26XX_swiIntFxn)
                      000052f4    000000d0     UARTCC26XX.obj (.text:readData$24)
                      000053c4    000000cc     driverlib.lib : setup.obj (.text:TrimAfterColdResetWakeupFromShutDown)
                      00005490    000000cc     UARTCC26XX.obj (.text:writeData$24)
                      0000555c    000000c8     sensortag_keys.obj (.text:SensorTagKeys_processKeyLeft)
                      00005624    000000c8     sensortag_keys.obj (.text:SensorTagKeys_processKeyRight)
                      000056ec    000000c8     RFCC26XX_singleMode.obj (.text:fsmPowerUpState$19)
                      000057b4    000000c4     humidityservice.obj (.text:sensor_WriteAttrCB$46)
                      00005878    000000c4     irtempservice.obj (.text:sensor_WriteAttrCB$48)
                      0000593c    000000c4     movementservice.obj (.text:sensor_WriteAttrCB$49)
                      00005a00    000000c4     opticservice.obj (.text:sensor_WriteAttrCB$52)
                      00005ac4    000000c4     RFCC26XX_singleMode.obj (.text:swiFxnHw$19)
                      00005b88    000000c0     RFCC26XX_singleMode.obj (.text:RF_open)
                      00005c48    000000c0     sensortag_mov.obj (.text:SensorTagMov_processCharChangeEvt)
                      00005d08    000000c0     ioservice.obj (.text:io_WriteAttrCB$47)
                      00005dc8    000000bc     power_cc26xx_tirtos.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
                      00005e84    000000bc     UARTCC26XX.obj (.text:UARTCC26XX_initHw$24)
                      00005f40    000000b4     PINCC26XX.obj (.text:PINCC26XX_setIoCfg$18)
                      00005ff4    000000b0     devinfoservice.obj (.text:devInfo_ReadAttrCB$43)
                      000060a4    000000a8     sensortag_io.obj (.text:SensorTagIO_processCharChangeEvt)
                      0000614c    000000a4     driverlib.lib : setup.obj (.text:NOROM_SetupTrimDevice)
                      000061f0    000000a0     auto_init.aem3 : auto_init.oem3 (.text)
                      00006290    000000a0     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Task_setPri__E)
                      00006330    0000009c     rtsv7M3_T_le_eabi.lib : memcpy_t2.obj (.text)
                      000063cc    0000009a     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_putSite__E)
                      00006466    00000002     driverlib.lib : rfc.obj (.text:NOROM_RFCAdi3VcoLdoVoltageMode)
                      00006468    00000098     PINCC26XX.obj (.text:PIN_open)
                      00006500    00000098     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
                      00006598    00000094     gattservapp_util.obj (.text:GATTServApp_ProcessCharCfg)
                      0000662c    00000094     sensortag_opt.obj (.text:SensorTagOpt_processCharChangeEvt)
                      000066c0    00000094     sensortag.obj (.text:SensorTag_taskFxn$0)
                      00006754    00000094     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_putMod__E)
                      000067e8    00000090     I2CCC26XX.obj (.text:I2CCC26XX_blockingCallback$17)
                      00006878    00000090     UARTCC26XX.obj (.text:UARTCC26XX_initIO$24)
                      00006908    00000090     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                      00006998    00000090     UARTCC26XX.obj (.text:writeFinishedDoCallback$24)
                      00006a28    0000008c     devinfoservice.obj (.text:DevInfo_SetParameter)
                      00006ab4    0000008c     driverlib.lib : osc.obj (.text:NOROM_OSCHF_GetStartupTime)
                      00006b40    00000088     I2CCC26XX.obj (.text:I2CCC26XX_cancel)
                      00006bc8    00000088     sensortag_bar.obj (.text:SensorTagBar_processCharChangeEvt)
                      00006c50    00000088     sensortag_register.obj (.text:SensorTagRegister_processCharChangeEvt)
                      00006cd8    00000088     UARTCC26XX.obj (.text:readSemCallback$24)
                      00006d60    00000088     registerservice.obj (.text:sensor_ReadAttrCB$54)
                      00006de8    00000084     icall.obj (.text:ICall_heapMalloc)
                      00006e6c    00000084     icall.obj (.text:ICall_primSetTimer$26)
                      00006ef0    00000084     TRNGCC26XX.obj (.text:TRNGCC26XX_getNumber)
                      00006f74    00000084     sensortag_register.obj (.text:readRegister$12)
                      00006ff8    00000080     RFCC26XX_singleMode.obj (.text:RF_pendCmd)
                      00007078    00000080     sensortag_tmp.obj (.text:SensorTagTmp_processCharChangeEvt)
                      000070f8    00000080     SensorMpu9250.obj (.text:sensorMagInit$34)
                      00007178    00000080     uart_logs.obj (.text:uartLog_outputFxn)
                      000071f8    0000007c     icall.obj (.text:ICall_createRemoteTasks)
                      00007274    0000007c     sensortag_hum.obj (.text:SensorTagHum_processCharChangeEvt)
                      000072f0    0000007c     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
                      0000736c    0000007a     rtsv7M3_T_le_eabi.lib : memset_t2.obj (.text)
                      000073e6    00000002     driverlib.lib : rfc.obj (.text:NOROM_RFCRTrim)
                      000073e8    00000078                   : setup.obj (.text:NOROM_SetupAfterColdResetWakeupFromShutDownCfg1)
                      00007460    00000074     icall_cc2650.obj (.text:ICallPlatform_pwrUpdActivityCounter)
                      000074d4    00000074     icall.obj (.text:ICall_primSend$26)
                      00007548    00000074     drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_auxISR)
                      000075bc    00000074                             : PowerCC26XX_calibrateRCOSC.oem3 (.text:calibrateRcoscHf2)
                      00007630    00000074     peripheral.obj (.text:gapRole_startConnUpdate$53)
                      000076a4    00000072     UARTCC26XX.obj (.text:writeTxFifoFlush$24)
                      00007716    00000002     RFCC26XX_singleMode.obj (.text:defaultErrCb$19)
                      00007718    00000070     driverlib.lib : chipinfo.obj (.text:NOROM_ChipInfo_GetHwRevision)
                      00007788    00000070     SensorI2C.obj (.text:SensorI2C_select)
                      000077f8    0000006d     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_System_formatNum__I)
                      00007865    00000001     --HOLE-- [fill = 0]
                      00007866    00000002     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:emptyClockFunc)
                      00007868    0000006c     icall.obj (.text:ICall_heapInit)
                      000078d4    0000006c     driverlib.lib : setup.obj (.text:NOROM_SetupGetTrimForAmpcompCtrl)
                      00007940    0000006c     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
                      000079ac    0000006c     SensorMpu9250.obj (.text:SensorMpu9250_reset)
                      00007a18    0000006c     RFCC26XX_singleMode.obj (.text:fsmPowerDownState$19)
                      00007a84    0000006c     gattservapp_util.obj (.text:gattServApp_SendNotiInd$45)
                      00007af0    0000006c     movementservice.obj (.text:sensor_ReadAttrCB$49)
                      00007b5c    0000006a     rtsv7M3_T_le_eabi.lib : copy_decompress_rle.obj (.text)
                      00007bc6    00000002                           : i_div0.obj (.text)
                      00007bc8    00000068     driverlib.lib : setup.obj (.text:NOROM_SetupGetTrimForAnabypassValue1)
                      00007c30    00000068                   : sys_ctrl.obj (.text:NOROM_SysCtrl_DCDC_VoltageConditionalControl)
                      00007c98    00000068     uart_logs.obj (.text:uartLog_flush)
                      00007d00    00000064     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_start__E)
                      00007d64    00000062     barometerservice.obj (.text:sensor_ReadAttrCB$40)
                      00007dc6    00000002     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E)
                      00007dc8    00000060     I2CCC26XX.obj (.text:I2CCC26XX_initIO$17)
                      00007e28    00000060     icall.obj (.text:ICall_primEnroll$26)
                      00007e88    00000060     drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_RCOSC_clockFunc)
                      00007ee8    00000060     RFCC26XX_singleMode.obj (.text:RF_getCurrentTime)
                      00007f48    00000060     sensortag_mov.obj (.text:appStateSet$9)
                      00007fa8    00000060     battservice.obj (.text:battReadAttrCB$41)
                      00008008    00000060     drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:updateSubSecInc)
                      00008068    0000005c     icall.obj (.text:ICall_primThreadServes$26)
                      000080c4    0000005c     driverlib.lib : osc.obj (.text:NOROM_OSCHF_AttemptToSwitchToXosc)
                      00008120    0000005c                   : sys_ctrl.obj (.text:NOROM_SysCtrlAdjustRechargeAfterPowerDown)
                      0000817c    0000005c     SensorMpu9250.obj (.text:SensorMpu9250_test)
                      000081d8    0000005c     RFCC26XX_singleMode.obj (.text:applyRfCorePatch$19)
                      00008234    0000005c     RFCC26XX_singleMode.obj (.text:decActiveClientCnt$19)
                      00008290    0000005c     SensorMpu9250.obj (.text:sensorMpu9250WakeUp$34)
                      000082ec    0000005c     app_ble_pem3.oem3 (.text:xdc_runtime_Startup_getState__I)
                      00008348    0000005b     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_putLab__E)
                      000083a3    00000001     --HOLE-- [fill = 0]
                      000083a4    0000005a     irtempservice.obj (.text:sensor_ReadAttrCB$48)
                      000083fe    0000005a     opticservice.obj (.text:sensor_ReadAttrCB$52)
                      00008458    00000058     movementservice.obj (.text:Movement_setParameter)
                      000084b0    00000058     PINCC26XX.obj (.text:PIN_remove)
                      00008508    00000058     drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
                      00008560    00000058     UARTCC26XX.obj (.text:UARTCC26XX_control)
                      000085b8    00000054     barometerservice.obj (.text:Barometer_setParameter)
                      0000860c    00000054     SensorI2C.obj (.text:SensorI2C_open)
                      00008660    00000054     util.obj (.text:Util_rescheduleClock)
                      000086b4    00000054     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:configureXOSCHF)
                      00008708    00000054     RFCC26XX_singleMode.obj (.text:fsmXOSCState$19)
                      0000875c    00000054     RFCC26XX_singleMode.obj (.text:hwiFxnHw$19)
                      000087b0    00000054     RFCC26XX_singleMode.obj (.text:ratChanFree$19)
                      00008804    00000052     icall.obj (.text:ICall_primWait$26)
                      00008856    00000002     app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_nullFunc__I)
                      00008858    00000050     icall_api.obj (.text:GAP_DeviceInit)
                      000088a8    00000050     icall_api.obj (.text:GAP_UpdateAdvertisingData)
                      000088f8    00000050     humidityservice.obj (.text:Humidity_setParameter)
                      00008948    00000050     icall.obj (.text:ICall_primRegisterApp$26)
                      00008998    00000050     irtempservice.obj (.text:IRTemp_setParameter)
                      000089e8    00000050     driverlib.lib : setup.obj (.text:NOROM_SetupSetCacheModeAccordingToCcfgSetting)
                      00008a38    00000050     opticservice.obj (.text:Optic_setParameter)
                      00008a88    00000050     RFCC26XX_singleMode.obj (.text:RF_getInfo)
                      00008ad8    00000050     RFCC26XX_singleMode.obj (.text:syncCb$19)
                      00008b28    0000004e     SensorOpt3001.obj (.text:SensorOpt3001_test)
                      00008b76    0000004e     ioservice.obj (.text:io_ReadAttrCB$47)
                      00008bc4    0000004c     icall_cc2650.obj (.text:ICallPlatform_pwrRegisterNotify)
                      00008c10    0000004c     icall.obj (.text:ICall_newTask$26)
                      00008c5c    0000004c     icall.obj (.text:ICall_primGetEntityId$26)
                      00008ca8    0000004c     driverlib.lib : osc.obj (.text:NOROM_OSCClockSourceSet)
                      00008cf4    0000004c     sensortag.obj (.text:SensorTag_setDeviceInfo$0)
                      00008d40    0000004c     util.obj (.text:Util_constructClock)
                      00008d8c    0000004c     battservice.obj (.text:battWriteAttrCB$41)
                      00008dd8    0000004c     RFCC26XX_singleMode.obj (.text:dispatchOpWhen$19)
                      00008e24    0000004c     peripheral.obj (.text:gapRole_processStackMsg$53)
                      00008e70    0000004c     rtsv7M3_T_le_eabi.lib : cpy_tbl.obj (.text)
                      00008ebc    0000004c     UARTCC26XX.obj (.text:startTxFifoEmptyClk$24)
                      00008f08    0000004c     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_visitRope2__I)
                      00008f54    0000004a     gattservapp_util.obj (.text:GATTServApp_ProcessCCCWriteReq)
                      00008f9e    00000002     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_triggerFunc__I)
                      00008fa0    00000048     I2CCC26XX.obj (.text:I2CCC26XX_initHw$17)
                      00008fe8    00000048     driverlib.lib : chipinfo.obj (.text:NOROM_ChipInfo_GetChipFamily)
                      00009030    00000048                   : ddi.obj (.text:NOROM_DDI16BitfieldWrite)
                      00009078    00000048     sensortag.obj (.text:SensorTag_processCharValueChangeEvt$0)
                      000090c0    00000048     battservice.obj (.text:battNotify$41)
                      00009108    00000048     icall_api.obj (.text:gattIndNoti$29)
                      00009150    00000048     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:notify)
                      00009198    00000048     rtsv7M3_T_le_eabi.lib : fd_toi_t2.obj (.text)
                      000091e0    00000048     sensortag_register.obj (.text:writeRegister$12)
                      00009228    00000044     icall_api.obj (.text:GAP_TerminateLinkReq)
                      0000926c    00000044     PINCC26XX.obj (.text:PIN_swi$18)
                      000092b0    00000044     SensorMpu9250.obj (.text:SensorMpu9250_accSetRange)
                      000092f4    00000044     sensortag_io.obj (.text:SensorTagIO_blinkLed)
                      00009338    00000044     boot.aem3 : boot.oem3 (.text)
                      0000937c    00000044     icall_api.obj (.text:gapSendParamAndPtrCmd$29)
                      000093c0    00000044     rtsv7M3_T_le_eabi.lib : exit.obj (.text)
                      00009404    00000044     SensorMpu9250.obj (.text:sensorMpu9250SetBypass$34)
                      00009448    00000044     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_write8__E)
                      0000948c    00000044                      : rom_sysbios.obj (.text:xdc_runtime_Text_xprintf__I)
                      000094d0    00000042     icall.obj (.text:ICall_primCreateTask$26)
                      00009512    00000002     app_ble_pem3.oem3 (.text:ti_sysbios_rom_cortexm_cc26xx_CC26xx_badRomRevision__E)
                      00009514    00000040     peripheral.obj (.text:GAPRole_SendUpdateParam)
                      00009554    00000040     peripheral.obj (.text:GAPRole_createTask)
                      00009594    00000040     driverlib.lib : ddi.obj (.text:NOROM_DDI16BitfieldRead)
                      000095d4    00000040     RFCC26XX_singleMode.obj (.text:RF_getRssi)
                      00009614    00000040     SensorTmp007.obj (.text:SensorTmp007_enable)
                      00009654    00000040     rtsv7M3_T_le_eabi.lib : u_divt2.obj (.text)
                      00009694    00000040     SensorMpu9250.obj (.text:sensorMagEnable$34)
                      000096d4    00000040     SensorMpu9250.obj (.text:sensorMpuSleep$34)
                      00009714    00000040     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_Module_startup__E)
                      00009754    0000003c     icall_api.obj (.text:GAP_GetParamValue)
                      00009790    0000003c     icall_api.obj (.text:GATTServApp_RegisterService)
                      000097cc    0000003c     icall_cc2650.obj (.text:ICallPlatform_pwrConfigACAction)
                      00009808    0000003c     driverlib.lib : osc.obj (.text:NOROM_OSC_HPOSCRelativeFrequencyOffsetGet)
                      00009844    0000003c                   : rfc.obj (.text:NOROM_RFCSynthPowerDown)
                      00009880    0000003c     RFCC26XX_singleMode.obj (.text:RF_runCmd)
                      000098bc    0000003c     registerservice.obj (.text:Register_setParameter)
                      000098f8    0000003c     SensorI2C.obj (.text:SensorI2C_writeRead)
                      00009934    0000003c     SensorMpu9250.obj (.text:SensorMpu9250_accReadRange)
                      00009970    0000003c     sensortag_buzzer.obj (.text:SensorTagBuzzer_open)
                      000099ac    0000003c     sensortag_buzzer.obj (.text:SensorTagBuzzer_setFrequency)
                      000099e8    0000003c     sensortag.obj (.text:SensorTag_createTask)
                      00009a24    0000003c     RFCC26XX_singleMode.obj (.text:postDirImmCmd$19)
                      00009a60    0000003c     icall_api.obj (.text:profileSetParameter$29)
                      00009a9c    0000003c     icall_api.obj (.text:sendWaitMatchCS$29)
                      00009ad8    0000003c     icall_api.obj (.text:sendWaitMatchValueCS$29)
                      00009b14    00000038     icall_api.obj (.text:GAPBondMgr_LinkEst)
                      00009b4c    00000038     I2C.obj (.text:I2C_init)
                      00009b84    00000038     icall.obj (.text:ICall_primGetMaxMSecs$26)
                      00009bbc    00000038     PINCC26XX.obj (.text:PIN_setOutputEnable)
                      00009bf4    00000038     SensorI2C.obj (.text:SensorI2C_write)
                      00009c2c    00000038     UART.obj (.text:UART_init)
                      00009c64    00000038     util.obj (.text:Util_restartClock)
                      00009c9c    00000038     battservice.obj (.text:battMeasure$41)
                      00009cd4    00000038     battservice.obj (.text:battNotifyLevel$41)
                      00009d0c    00000038     icall_api.obj (.text:linkDB_NumConns)
                      00009d44    00000038     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E)
                      00009d7c    00000036     RFCC26XX_singleMode.obj (.text:updateImplicitState$19)
                      00009db2    00000002     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_defaultAbort)
                      00009db4    00000034     icall_api.obj (.text:GAPBondMgr_SetParameter)
                      00009de8    00000034     icall_api.obj (.text:GAP_SetParamValue)
                      00009e1c    00000034     icall.obj (.text:ICall_primEntityId2ServiceId$26)
                      00009e50    00000034     icall.obj (.text:ICall_primFetchMsg$26)
                      00009e84    00000034     icall.obj (.text:ICall_primRegisterISR$26)
                      00009eb8    00000034     icall.obj (.text:ICall_primRegisterISR_Ext$26)
                      00009eec    00000034     icall.obj (.text:ICall_searchServiceEntity)
                      00009f20    00000034     ioservice.obj (.text:Io_setParameter)
                      00009f54    00000034     driverlib.lib : osc.obj (.text:NOROM_OSCHF_SwitchToRcOscTurnOffXosc)
                      00009f88    00000034                   : trng.obj (.text:NOROM_TRNGConfigure)
                      00009fbc    00000034     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
                      00009ff0    00000034     RFCC26XX_singleMode.obj (.text:Q_push$19)
                      0000a024    00000034     registerservice.obj (.text:Register_getParameter)
                      0000a058    00000034     SensorMpu9250.obj (.text:SensorMpu9250_enable)
                      0000a08c    00000034     sensortag_keys.obj (.text:SensorTagKeys_processRelay)
                      0000a0c0    00000034     icall_api.obj (.text:osal_snv_read)
                      0000a0f4    00000034     icall_api.obj (.text:osal_snv_write)
                      0000a128    00000034     icall_api.obj (.text:profileAddService$29)
                      0000a15c    00000034     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_write4__E)
                      0000a190    00000032     icall_api.obj (.text:gapSendParamsCmd$29)
                      0000a1c2    00000032     icall_api.obj (.text:gapSendPtrParamsCmd$29)
                      0000a1f4    00000032     main.obj (.text:main)
                      0000a226    00000032     icall_api.obj (.text:matchGapSetGetParamCS$29)
                      0000a258    00000032     icall_api.obj (.text:matchGattCmdStatus$29)
                      0000a28a    00000032     icall_api.obj (.text:matchUtilNvCS$29)
                      0000a2bc    00000032     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E)
                      0000a2ee    00000030     icall_cc2650.obj (.text:ICallPlatform_pwrNotify$27)
                      0000a31e    00000002     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_defaultExit)
                      0000a320    00000030     icall.obj (.text:ICall_msecs2Ticks$26)
                      0000a350    00000030     icall.obj (.text:ICall_searchTask$26)
                      0000a380    00000030     movementservice.obj (.text:Movement_getParameter)
                      0000a3b0    00000030     driverlib.lib : setup.obj (.text:NOROM_SetupSetAonRtcSubSecInc)
                      0000a3e0    00000030     PINCC26XX.obj (.text:PIN_setInterrupt)
                      0000a410    00000030     PINCC26XX.obj (.text:PIN_setOutputValue)
                      0000a440    00000030     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_releaseConstraint)
                      0000a470    00000030                             : PowerCC26XX.oem3 (.text:Power_setConstraint)
                      0000a4a0    00000030     SensorMpu9250.obj (.text:SensorMpu9250_powerOn)
                      0000a4d0    00000030     UART.obj (.text:UART_open)
                      0000a500    00000030     SensorMpu9250.obj (.text:sensorMpu9250SelectAxes$34)
                      0000a530    00000030     app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
                      0000a560    00000030     app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
                      0000a590    00000030     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_initDevice__I)
                      0000a5c0    00000030                      : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I)
                      0000a5f0    00000030     app_ble_pem3.oem3 (.text:xdc_runtime_LoggerCallback_Object__create__S)
                      0000a620    0000002f     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_printVisFxn__I)
                      0000a64f    00000001     --HOLE-- [fill = 0]
                      0000a650    0000002e     icall_cc2650.obj (.text:ICallPlatform_pwrDispenseImpl$27)
                      0000a67e    0000002e     icall_cc2650.obj (.text:ICallPlatform_pwrRequireImpl$27)
                      0000a6ac    0000002e     sensortag.obj (.text:ICall_fetchServiceMsg$0)
                      0000a6da    0000002e     peripheral.obj (.text:ICall_fetchServiceMsg$53)
                      0000a708    0000002e     icall.obj (.text:ICall_msgDequeue$26)
                      0000a736    0000002e     SensorOpt3001.obj (.text:SensorOpt3001_enable)
                      0000a764    0000002e     icall_api.obj (.text:matchProfileAddServiceCS$29)
                      0000a792    00000002     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_defaultPutch)
                      0000a794    0000002c     icall_api.obj (.text:GAPBondMgr_Register)
                      0000a7c0    0000002c     icall.obj (.text:ICall_heapFree)
                      0000a7ec    0000002c     battservice.obj (.text:ICall_malloc$41)
                      0000a818    0000002c     icall.obj (.text:ICall_msgEnqueue$26)
                      0000a844    0000002c     icall.obj (.text:ICall_primAllocMsg$26)
                      0000a870    0000002c     icall.obj (.text:ICall_primFetchServiceMsg$26)
                      0000a89c    0000002c     icall_api.obj (.text:ICall_sendServiceMsg$29)
                      0000a8c8    0000002c     driverlib.lib : ddi.obj (.text:NOROM_DDI32RegWrite)
                      0000a8f4    0000002c                   : setup.obj (.text:NOROM_SetupGetTrimForRadcExtCfg)
                      0000a920    0000002c     PINCC26XX.obj (.text:PINCC26XX_setMux)
                      0000a94c    0000002c     PINCC26XX.obj (.text:PIN_setConfig)
                      0000a978    0000002c     SensorI2C.obj (.text:SensorI2C_writeReg)
                      0000a9a4    0000002c     sensortag_batt.obj (.text:SensorTagBatt_init)
                      0000a9d0    0000002c     RFCC26XX_singleMode.obj (.text:getCmd$19)
                      0000a9fc    0000002c     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_getTicksUntilInterrupt__E)
                      0000aa28    0000002c     st_util.obj (.text:utilExtractUuid16)
                      0000aa54    0000002c     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_write2__E)
                      0000aa80    0000002a     icall_api.obj (.text:ICall_waitMatch$29)
                      0000aaaa    0000002a     TRNGCC26XX.obj (.text:TRNGCC26XX_isParamValid)
                      0000aad4    0000002a     util.obj (.text:Util_enqueueMsg)
                      0000aafe    0000002a     icall_api.obj (.text:matchProfileCS$29)
                      0000ab28    0000002a     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_System_putchar__I)
                      0000ab52    00000002     --HOLE-- [fill = 0]
                      0000ab54    00000028     battservice.obj (.text:Batt_AddService)
                      0000ab7c    00000028     gattservapp_util.obj (.text:GATTServApp_WriteCharCfg)
                      0000aba4    00000028     icall.obj (.text:ICall_init)
                      0000abcc    00000028     icall.obj (.text:ICall_msgPrepend$26)
                      0000abf4    00000028     sensortag.obj (.text:ICall_registerApp$0)
                      0000ac1c    00000028     peripheral.obj (.text:ICall_registerApp$53)
                      0000ac44    00000028     driverlib.lib : aon_batmon.obj (.text:NOROM_AONBatMonTemperatureGetDegC)
                      0000ac6c    00000028     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
                      0000ac94    00000028                             : PowerCC26XX.oem3 (.text:Power_registerNotify)
                      0000acbc    00000028     driverlib.lib : adi.obj (.text:SafeHapiVoid)
                      0000ace4    00000028     SensorBmp280.obj (.text:SensorBmp280_enable)
                      0000ad0c    00000028     sensortag_buzzer.obj (.text:SensorTagBuzzer_close)
                      0000ad34    00000028     sensortag.obj (.text:SensorTag_enqueueMsg$0)
                      0000ad5c    00000028     TRNGCC26XX.obj (.text:TRNGCC26XX_init)
                      0000ad84    00000028     RFCC26XX_singleMode.obj (.text:clkPowerUpFxn$19)
                      0000adac    00000028     gattservapp_util.obj (.text:gattServApp_FindCharCfgItem$45)
                      0000add4    00000028     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E)
                      0000adfc    00000028                      : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_write0__E)
                      0000ae24    00000028                      : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_write1__E)
                      0000ae4c    00000026     drivers_cc26xxware.aem3 : List.oem3 (.text:List_put)
                      0000ae72    00000002     --HOLE-- [fill = 0]
                      0000ae74    00000024     barometerservice.obj (.text:Barometer_getParameter)
                      0000ae98    00000024     icall_api.obj (.text:GAPBondMgr_LinkTerm)
                      0000aebc    00000024     I2C.obj (.text:I2C_open)
                      0000aee0    00000024     icall_api.obj (.text:ICall_getLocalMsgEntityId$29)
                      0000af04    00000024     icall_api.obj (.text:ICall_threadServes$29)
                      0000af28    00000024     PINCC26XX.obj (.text:PINCC26XX_getPinCount)
                      0000af4c    00000024     SensorMpu9250.obj (.text:SensorMpu9250_powerOff)
                      0000af70    00000024     sensortag_register.obj (.text:SensorTagRegister_update)
                      0000af94    00000024     drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:getTdcSemaphore)
                      0000afb8    00000024     RFCC26XX_singleMode.obj (.text:hwiFxnCpe0PowerFsm$19)
                      0000afdc    00000024     app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_registerRTSLock__I)
                      0000b000    00000024     app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_removeRTSLock__I)
                      0000b024    00000022     icall.obj (.text:ICall_dispatch$26)
                      0000b046    00000022     sensortag.obj (.text:ICall_malloc$0)
                      0000b068    00000022     util.obj (.text:ICall_malloc$14)
                      0000b08a    00000022     rtsv7M3_T_le_eabi.lib : memcmp.obj (.text)
                      0000b0ac    00000020     gattservapp_util.obj (.text:GATTServApp_InitCharCfg)
                      0000b0cc    00000020     humidityservice.obj (.text:Humidity_getParameter)
                      0000b0ec    00000020     icall_api.obj (.text:ICall_allocMsg$29)
                      0000b10c    00000020     icall_api.obj (.text:ICall_getEntityId$29)
                      0000b12c    00000020     devinfoservice.obj (.text:ICall_malloc$43)
                      0000b14c    00000020     icall.obj (.text:ICall_primService$26)
                      0000b16c    00000020     icall.obj (.text:ICall_searchService$26)
                      0000b18c    00000020     irtempservice.obj (.text:IRTemp_getParameter)
                      0000b1ac    00000020     driverlib.lib : rfc.obj (.text:NOROM_RFCDoorbellSendTo)
                      0000b1cc    00000020                   : rfc.obj (.text:NOROM_RFCRfTrimRead)
                      0000b1ec    00000020                   : setup.obj (.text:NOROM_SetupGetTrimForXoscHfCtl)
                      0000b20c    00000020     opticservice.obj (.text:Optic_getParameter)
                      0000b22c    00000020     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_unregisterNotify)
                      0000b24c    00000020     sensortag_batt.obj (.text:SensorTagBatt_reset)
                      0000b26c    00000020     RFCC26XX_singleMode.obj (.text:allocCmd$19)
                      0000b28c    00000020     sensortag_mov.obj (.text:initCharacteristicValue$9)
                      0000b2ac    00000020     rtsv7M3_T_le_eabi.lib : u_tofd_t2.obj (.text)
                      0000b2cc    00000020     app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsLock__I)
                      0000b2ec    00000020     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_stop__E)
                      0000b30c    00000020                      : rom_sysbios.obj (.text:xdc_runtime_Registry_findById__E)
                      0000b32c    0000001e     icall.obj (.text:ICall_primSendServiceMsg$26)
                      0000b34a    0000001e     PINCC26XX.obj (.text:PIN_close)
                      0000b368    0000001e     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_getTransitionLatency)
                      0000b386    0000001e     icall_api.obj (.text:waitMatchCS$29)
                      0000b3a4    0000001c     battservice.obj (.text:Batt_MeasLevel)
                      0000b3c0    0000001c     peripheral.obj (.text:GAPRole_StartDevice)
                      0000b3dc    0000001c     icall_api.obj (.text:GATT_bm_alloc)
                      0000b3f8    0000001c     icall_api.obj (.text:GATT_bm_free)
                      0000b414    0000001c     icall.obj (.text:ICall_initPrim$26)
                      0000b430    0000001c     sensortag.obj (.text:ICall_wait$0)
                      0000b44c    0000001c     peripheral.obj (.text:ICall_wait$53)
                      0000b468    0000001c     driverlib.lib : osc.obj (.text:NOROM_OSCClockSourceGet)
                      0000b484    0000001c                   : setup.obj (.text:NOROM_SetupGetTrimForAmpcompTh2)
                      0000b4a0    0000001c                   : setup.obj (.text:NOROM_SetupGetTrimForRcOscLfRtuneCtuneTrim)
                      0000b4bc    0000001c     PINCC26XX.obj (.text:PINCC26XX_setIoCfgMux$18)
                      0000b4d8    0000001c     PINCC26XX.obj (.text:PIN_hwi$18)
                      0000b4f4    0000001c     RFCC26XX_singleMode.obj (.text:RF_runDirectCmd)
                      0000b510    0000001c     RFCC26XX_singleMode.obj (.text:RF_runImmediateCmd)
                      0000b52c    0000001c     sensortag_batt.obj (.text:SensorTagBatt_processCharChangeEvt)
                      0000b548    0000001c     sensortag.obj (.text:SensorTag_callback$0)
                      0000b564    0000001c     sensortag.obj (.text:SensorTag_processAppMsg$0)
                      0000b580    0000001c     TRNGCC26XX.obj (.text:TRNGCC26XX_open)
                      0000b59c    0000001c     peripheral.obj (.text:gapRole_HandleParamUpdateNoSuccess$53)
                      0000b5b8    0000001c     icall_api.obj (.text:getStatusValueFromErrNo$29)
                      0000b5d4    0000001c     TRNGCC26XX.obj (.text:openTRNG)
                      0000b5f0    0000001c     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_dynamicStub__E)
                      0000b60c    0000001c                      : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_Instance_init__E)
                      0000b628    0000001a     icall_api.obj (.text:GATT_Notification)
                      0000b642    0000001a     icall.obj (.text:ICall_enterCSImpl)
                      0000b65c    0000001a     icall.obj (.text:ICall_primSetTimerMSecs$26)
                      0000b676    0000001a     drivers_cc26xxware.aem3 : List.oem3 (.text:List_remove)
                      0000b690    0000001a     util.obj (.text:Util_dequeueMsg)
                      0000b6aa    0000001a     icall_api.obj (.text:matchGattIndNotiCS$29)
                      0000b6c4    0000001a     rom_sysbios.aem3 : rom_sysbios_config.obj (.text:xdc_runtime_System_snprintf__E)
                      0000b6de    00000002     --HOLE-- [fill = 0]
                      0000b6e0    00000018     battservice.obj (.text:Batt_SetParameter)
                      0000b6f8    00000018     peripheral.obj (.text:GAPRole_TerminateConnection)
                      0000b710    00000018     I2C.obj (.text:I2C_Params_init)
                      0000b728    00000018     icall_cc2650.obj (.text:ICallPlatform_pwrDispense)
                      0000b740    00000018     icall_cc2650.obj (.text:ICallPlatform_pwrRequire)
                      0000b758    00000018     sensortag.obj (.text:ICall_free$0)
                      0000b770    00000018     util.obj (.text:ICall_free$14)
                      0000b788    00000018     devinfoservice.obj (.text:ICall_free$43)
                      0000b7a0    00000018     sensortag.obj (.text:ICall_freeMsg$0)
                      0000b7b8    00000018     icall.obj (.text:ICall_freeMsg$26)
                      0000b7d0    00000018     icall_api.obj (.text:ICall_freeMsg$29)
                      0000b7e8    00000018     peripheral.obj (.text:ICall_freeMsg$53)
                      0000b800    00000018     icall.obj (.text:ICall_primMalloc$26)
                      0000b818    00000018     driverlib.lib : aon_rtc.obj (.text:NOROM_AONRTCCurrentCompareValueGet)
                      0000b830    00000018                   : chipinfo.obj (.text:NOROM_ChipInfo_GetPackageType)
                      0000b848    00000018                   : osc.obj (.text:NOROM_OSCHF_TurnOnXosc)
                      0000b860    00000018                   : rfc.obj (.text:NOROM_RFCCpeIntGetAndClear)
                      0000b878    00000018                   : setup.obj (.text:NOROM_SetupGetTrimForAdcShModeEn)
                      0000b890    00000018                   : setup.obj (.text:NOROM_SetupGetTrimForAdcShVbufEn)
                      0000b8a8    00000018                   : setup.obj (.text:NOROM_SetupGetTrimForAmpcompTh1)
                      0000b8c0    00000018                   : setup.obj (.text:NOROM_SetupGetTrimForDblrLoopFilterResetVoltage)
                      0000b8d8    00000018                   : setup.obj (.text:NOROM_SetupGetTrimForRcOscLfIBiasTrim)
                      0000b8f0    00000018                   : setup.obj (.text:NOROM_SetupGetTrimForXoscLfRegulatorAndCmirrwrRatio)
                      0000b908    00000018     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_idleFunc)
                      0000b920    00000018     RFCC26XX_singleMode.obj (.text:Q_pop$19)
                      0000b938    00000018     sensortag_batt.obj (.text:SensorTagBatt_clockHandler$2)
                      0000b950    00000018     sensortag.obj (.text:SensorTag_clockHandler$0)
                      0000b968    00000018     sensortag.obj (.text:SensorTag_updateAdvertisingData)
                      0000b980    00000018     UARTCC26XX.obj (.text:UARTCC26XX_init)
                      0000b998    00000018     util.obj (.text:Util_constructQueue)
                      0000b9b0    00000018     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:configureRFCoreClocks)
                      0000b9c8    00000018     peripheral.obj (.text:gapRole_setEvent$53)
                      0000b9e0    00000018     sensortag_opt.obj (.text:initCharacteristicValue$11)
                      0000b9f8    00000018     sensortag_tmp.obj (.text:initCharacteristicValue$13)
                      0000ba10    00000018     sensortag_bar.obj (.text:initCharacteristicValue$1)
                      0000ba28    00000018     sensortag_hum.obj (.text:initCharacteristicValue$6)
                      0000ba40    00000018     rtsv7M3_T_le_eabi.lib : args_main.obj (.text)
                      0000ba58    00000018                           : ll_mul_t2.obj (.text)
                      0000ba70    00000018     RFCC26XX_singleMode.obj (.text:swiFxnFsm$19)
                      0000ba88    00000018     app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsUnlock__I)
                      0000baa0    00000018     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Swi_or__E)
                      0000bab8    00000018     app_ble_pem3.oem3 (.text:ti_sysbios_rom_cortexm_cc26xx_CC26xx_checkRevision__E)
                      0000bad0    00000016     main.obj (.text:AssertHandler)
                      0000bae6    00000016     icall.obj (.text:ICall_abort$26)
                      0000bafc    00000016     icall.obj (.text:ICall_leaveCSImpl)
                      0000bb12    00000016     icall.obj (.text:ICall_primStopTimer$26)
                      0000bb28    00000016     ble_user_config.obj (.text:driverTable_fnSpinlock)
                      0000bb3e    00000016     app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__I)
                      0000bb54    00000014     battservice.obj (.text:Batt_Register)
                      0000bb68    00000014     devinfoservice.obj (.text:DevInfo_AddService)
                      0000bb7c    00000014     ioservice.obj (.text:Io_getParameter)
                      0000bb90    00000014     driverlib.lib : aon_rtc.obj (.text:NOROM_AONRTCCurrent64BitValueGet)
                      0000bba4    00000014                   : chipinfo.obj (.text:NOROM_ThisCodeIsBuiltForCC26xxHwRev22AndLater_HaltIfViolated)
                      0000bbb8    00000014     PINCC26XX.obj (.text:PINCC26XX_getInputValue$18)
                      0000bbcc    00000014     PINCC26XX.obj (.text:PINCC26XX_getOutputValue$18)
                      0000bbe0    00000014     RFCC26XX_singleMode.obj (.text:RF_Params_init)
                      0000bbf4    00000014     SensorMpu9250.obj (.text:SensorMpu9250_powerIsOn)
                      0000bc08    00000014     sensortag_batt.obj (.text:SensorTagBatt_processSensorEvent)
                      0000bc1c    00000014     rtsv7M3_T_le_eabi.lib : _lock.obj (.text)
                      0000bc30    00000014                           : strlen.obj (.text)
                      0000bc44    00000014     icall_api.obj (.text:setICallCmdEvtHdr$29)
                      0000bc58    00000014     app_ble_pem3.oem3 (.text:ti_sysbios_knl_Clock_doTick__I)
                      0000bc6c    00000012     gattservapp_util.obj (.text:GATTServApp_FindAttr)
                      0000bc7e    00000012     RFCC26XX_singleMode.obj (.text:RF_getCmdOp)
                      0000bc90    00000012     app_ble_pem3.oem3 (.text:xdc_runtime_Startup_exec__I)
                      0000bca2    00000002     --HOLE-- [fill = 0]
                      0000bca4    00000010     RFCC26XX_singleMode.obj (.text:FsmDispatch$19)
                      0000bcb4    00000010     icall_api.obj (.text:GAP_EndDiscoverable)
                      0000bcc4    00000010     gattservapp_util.obj (.text:GATTServApp_ReadCharCfg)
                      0000bcd4    00000010     icall_cc2650.obj (.text:ICallPlatform_pwrGetXOSCStartupTime)
                      0000bce4    00000010     icall.obj (.text:ICall_primGetTickPeriod$26)
                      0000bcf4    00000010     icall.obj (.text:ICall_taskEntry$26)
                      0000bd04    00000010     driverlib.lib : rfc.obj (.text:NOROM_RFCRfTrimSet)
                      0000bd14    00000010                   : setup.obj (.text:NOROM_SetupGetTrimForXoscHfFastStart)
                      0000bd24    00000010                   : setup.obj (.text:NOROM_SetupGetTrimForXoscHfIbiastherm)
                      0000bd34    00000010     ble_user_config.obj (.text:RegisterAssertCback)
                      0000bd44    00000010     util.obj (.text:Util_isActive)
                      0000bd54    00000010     I2CCC26XX.obj (.text:i2cPostNotify$17)
                      0000bd64    00000010     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_post__E)
                      0000bd74    00000010     UARTCC26XX.obj (.text:uartPostNotify$24)
                      0000bd84    00000010     app_ble_pem3.oem3 (.text:xdc_runtime_LoggerCallback_Object__get__S)
                      0000bd94    00000010     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_putch__E)
                      0000bda4    00000010                      : rom_sysbios.obj (.text:xdc_runtime_SysCallback_ready__E)
                      0000bdb4    00000010                      : rom_sysbios.obj (.text:xdc_runtime_System_vsnprintf__E)
                      0000bdc4    0000000e     icall_api.obj (.text:GATT_Indication)
                      0000bdd2    0000000e     icall_cc2650.obj (.text:ICallPlatform_pwrGetTransitionState)
                      0000bde0    0000000e     icall_cc2650.obj (.text:ICallPlatform_pwrIsStableXOSCHF)
                      0000bdee    0000000e     icall.obj (.text:ICall_primDisableMInt$26)
                      0000bdfc    0000000e     icall.obj (.text:ICall_primEnableMInt$26)
                      0000be0a    0000000e     icall.obj (.text:ICall_primFreeMsg$26)
                      0000be18    0000000e     icall.obj (.text:ICall_primGetTicks$26)
                      0000be26    0000000e     driverlib.lib : setup.obj (.text:NOROM_SetupSignExtendVddrTrimValue)
                      0000be34    0000000e                   : vims.obj (.text:NOROM_VIMSModeGet)
                      0000be42    0000000e     SensorI2C.obj (.text:SensorI2C_readReg)
                      0000be50    0000000e     rtsv7M3_T_le_eabi.lib : copy_decompress_none.obj (.text:decompress:none)
                      0000be5e    0000000e     icall_api.obj (.text:matchGSARegisterServiceCS$29)
                      0000be6c    0000000e     icall_api.obj (.text:matchGapLinkEstCS$29)
                      0000be7a    0000000e     icall_api.obj (.text:matchLinkDBNumConnsCS$29)
                      0000be88    0000000e     icall_api.obj (.text:setDispatchCmdEvtHdr$29)
                      0000be96    0000000e     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E)
                      0000bea4    0000000c     RFCC26XX_singleMode.obj (.text:FsmNextState$19)
                      0000beb0    0000000c     icall_api.obj (.text:GAP_MakeDiscoverable)
                      0000bebc    0000000c     icall_api.obj (.text:GAP_TerminateAuth)
                      0000bec8    0000000c     icall_api.obj (.text:GAP_UpdateLinkParamReq)
                      0000bed4    0000000c     icall_api.obj (.text:GAP_UpdateLinkParamReqReply)
                      0000bee0    0000000c     icall_api.obj (.text:GGS_SetParameter)
                      0000beec    0000000c     icall.obj (.text:ICall_clockFunc$26)
                      0000bef8    0000000c     icall.obj (.text:ICall_primDisableInt$26)
                      0000bf04    0000000c     icall.obj (.text:ICall_primEnableInt$26)
                      0000bf10    0000000c     icall.obj (.text:ICall_primFree$26)
                      0000bf1c    0000000c     icall.obj (.text:ICall_primSignal$26)
                      0000bf28    0000000c     driverlib.lib : cpu.obj (.text:NOROM_CPUcpsid)
                      0000bf34    0000000c                   : cpu.obj (.text:NOROM_CPUcpsie)
                      0000bf40    0000000c     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_getConstraintMask)
                      0000bf4c    0000000c                             : PowerCC26XX.oem3 (.text:Power_getDependencyCount)
                      0000bf58    0000000c                             : PowerCC26XX.oem3 (.text:Power_getTransitionState)
                      0000bf64    0000000c     SensorI2C.obj (.text:SensorI2C_deselect)
                      0000bf70    0000000c     sensortag.obj (.text:SensorTag_processGATTMsg$0)
                      0000bf7c    0000000c     sensortag.obj (.text:SensorTag_processStackMsg$0)
                      0000bf88    0000000c     sensortag.obj (.text:SensorTag_testResult)
                      0000bf94    0000000c     uart_logs.obj (.text:UartLog_doInit)
                      0000bfa0    0000000c     rtsv7M3_T_le_eabi.lib : copy_zero_init.obj (.text:decompress:ZI)
                      0000bfac    0000000c     icall_api.obj (.text:matchProfileSetParamCS$29)
                      0000bfb8    0000000c     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_BIOS_getThreadType__E)
                      0000bfc4    0000000c                      : rom_sysbios_config.obj (.text:ti_sysbios_hal_Hwi_Params__init__S)
                      0000bfd0    0000000c                      : rom_sysbios.obj (.text:ti_sysbios_knl_Swi_getTrigger__E)
                      0000bfdc    0000000c     app_ble_pem3.oem3 (.text:xdc_runtime_Startup_reset__I)
                      0000bfe8    0000000c     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Startup_rtsDone__E)
                      0000bff4    0000000a     I2CCC26XX.obj (.text:I2CCC26XX_init)
                      0000bffe    0000000a     I2C.obj (.text:I2C_close)
                      0000c008    0000000a     I2C.obj (.text:I2C_transfer)
                      0000c012    0000000a     icall_cc2650.obj (.text:ICallPlatform_pwrSwitchXOSCHF)
                      0000c01c    0000000a     icall.obj (.text:ICall_primE2S$26)
                      0000c026    0000000a     drivers_cc26xxware.aem3 : List.oem3 (.text:List_empty)
                      0000c030    0000000a     sensortag.obj (.text:SensorTag_charValueChangeCB)
                      0000c03a    0000000a     sensortag.obj (.text:SensorTag_stateChangeCB$0)
                      0000c044    0000000a     UART.obj (.text:UART_write)
                      0000c04e    0000000a     rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_disable__E)
                      0000c058    0000000a                      : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_enable__E)
                      0000c062    0000000a     app_ble_pem3.oem3 (.text:xdc_runtime_Text_visitRope__I)
                      0000c06c    00000008     RFCC26XX_singleMode.obj (.text:RF_flushCmd)
                      0000c074    00000008     sensortag_io.obj (.text:ioChangeCB$7)
                      0000c07c    00000008     sensortag_register.obj (.text:registerChangeCB$12)
                      0000c084    00000008     sensortag_mov.obj (.text:sensorChangeCB$9)
                      0000c08c    00000008     sensortag_opt.obj (.text:sensorConfigChangeCB$11)
                      0000c094    00000008     sensortag_tmp.obj (.text:sensorConfigChangeCB$13)
                      0000c09c    00000008     sensortag_bar.obj (.text:sensorConfigChangeCB$1)
                      0000c0a4    00000008     sensortag_batt.obj (.text:sensorConfigChangeCB$2)
                      0000c0ac    00000008     sensortag_hum.obj (.text:sensorConfigChangeCB$6)
                      0000c0b4    00000008     UARTCC26XX.obj (.text:writeSemCallback$24)
                      0000c0bc    00000006     icall_api.obj (.text:GGS_AddService)
                      0000c0c2    00000006     I2CCC26XX.obj (.text:I2CCC26XX_control)
                      0000c0c8    00000006     icall.obj (.text:ICall_mallocImpl)
                      0000c0ce    00000006     driverlib.lib : cpu.obj (.text:NOROM_CPUdelay)
                      0000c0d4    00000006     PINCC26XX.obj (.text:PIN_registerIntCb)
                      0000c0da    00000006     UARTCC26XX.obj (.text:UARTCC26XX_readPolling)
                      0000c0e0    00000006     UARTCC26XX.obj (.text:UARTCC26XX_writePolling)
                      0000c0e6    00000006     rom_sysbios.aem3 : rom_sysbios.obj (.text:__xdc__init)
                      0000c0ec    00000006     RFCC26XX_singleMode.obj (.text:clkInactivityFxn$19)
                      0000c0f2    00000006     rtsv7M3_T_le_eabi.lib : copy_decompress_rle.obj (.text:decompress:rle24)
                      0000c0f8    00000006     icall_api.obj (.text:gattAddService$29)
                      0000c0fe    00000006     icall_api.obj (.text:matchBondMgrSetParamCS$29)
                      0000c104    00000006     icall_api.obj (.text:matchGGSSetParamCS$29)
                      0000c10a    00000006     icall_api.obj (.text:matchGapConnParamUpdateReplyCS$29)
                      0000c110    00000006     icall_api.obj (.text:matchGapDeviceInitCS$29)
                      0000c116    00000006     icall_api.obj (.text:matchGapEndDiscoverableCS$29)
                      0000c11c    00000006     icall_api.obj (.text:matchGapGetParamCS$29)
                      0000c122    00000006     icall_api.obj (.text:matchGapMakeDiscoverableCS$29)
                      0000c128    00000006     icall_api.obj (.text:matchGapSetParamCS$29)
                      0000c12e    00000006     icall_api.obj (.text:matchGapTerminateAuthCS$29)
                      0000c134    00000006     icall_api.obj (.text:matchGapTerminateLinkReqCS$29)
                      0000c13a    00000006     icall_api.obj (.text:matchGapUpdateAdvDataCS$29)
                      0000c140    00000006     icall_api.obj (.text:matchGapUpdateLinkParamReqCS$29)
                      0000c146    00000006     icall_api.obj (.text:matchUtilNvReadCS$29)
                      0000c14c    00000006     icall_api.obj (.text:matchUtilNvWriteCS$29)
                      0000c152    00000006     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_setFunc__E)
                      0000c158    00000004     tirtosport.aem3 : HwiP_tirtos.oem3 (.text:HwiP_disable)
                      0000c15c    00000004     icall.obj (.text:ICall_primAbort$26)
                      0000c160    00000004     drivers_cc26xxware.aem3 : List.oem3 (.text:List_head)
                      0000c164    00000004                             : List.oem3 (.text:List_next)
                      0000c168    00000004     RFCC26XX_singleMode.obj (.text:Q_peek$19)
                      0000c16c    00000004     sensortag.obj (.text:SensorTag_resetAllModules$0)
                      0000c170    00000004     util.obj (.text:Util_startClock)
                      0000c174    00000004     util.obj (.text:Util_stopClock)
                      0000c178    00000004     peripheral.obj (.text:gapRole_SetupGAP$53)
                      0000c17c    00000004     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:nopResourceHandler)
                      0000c180    00000004     rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_getCount64__E)
                      0000c184    00000004                      : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_isActive__E)
                      0000c188    00000004                      : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_setPeriod__E)
                      0000c18c    00000004                      : rom_sysbios.obj (.text:ti_sysbios_knl_Queue_insert__E)
                      0000c190    00000004                      : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_defaultCreate)
                      0000c194    00000004                      : rom_sysbios.obj (.text:xdc_runtime_SysCallback_defaultReady)
                      0000c198    00000004                      : rom_sysbios.obj (.text:xdc_runtime_System_snprintf_va__F)
                      0000c19c    00000008     (.tramp.xdc_runtime_Core_assignParams__I.1)
                      0000c1a4    00000008     (.tramp.ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E.1)
                      0000c1ac    00000008     (.tramp.ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E.1)
                      0000c1b4    00000008     (.tramp.ti_sysbios_knl_Task_enable__E.1)
                      0000c1bc    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_enableFxn__E.1)
                      0000c1c4    00000008     (.tramp.xdc_runtime_Startup_startMods__I.1)
                      0000c1cc    00000008     (.tramp.ti_sysbios_knl_Clock_logTick__E.1)
                      0000c1d4    00000008     (.tramp.ti_sysbios_BIOS_RtsGateProxy_leave__E.1)
                      0000c1dc    00000008     (.tramp.ti_sysbios_knl_Queue_construct.1)
                      0000c1e4    00000008     (.tramp.ti_sysbios_knl_Queue_get__E.1)
                      0000c1ec    00000008     (.tramp.ti_sysbios_BIOS_RtsGateProxy_enter__E.1)
                      0000c1f4    00000008     (.tramp.ti_sysbios_knl_Queue_put__E.1)
                      0000c1fc    00000008     (.tramp.xdc_runtime_Core_createObject__I.1)
                      0000c204    00000008     (.tramp.ti_sysbios_knl_Task_startup__E.1)
                      0000c20c    00000008     (.tramp.ti_sysbios_knl_Swi_startup__E.1)
                      0000c214    00000008     (.tramp.ti_sysbios_hal_Hwi_HwiProxy_startup__E.1)
                      0000c21c    00000008     (.tramp.ti_sysbios_family_arm_cc26xx_Timer_startup__E.1)
                      0000c224    00000008     (.tramp.xdc_runtime_System_atexit__E.1)
                      0000c22c    00000008     (.tramp.ti_sysbios_BIOS_setThreadType__E.1)
                      0000c234    00000008     (.tramp.ti_sysbios_BIOS_start__E.1)
                      0000c23c    00000008     (.tramp.ti_sysbios_hal_Hwi_create.1)
                      0000c244    00000008     (.tramp.ti_sysbios_knl_Task_construct.1)
                      0000c24c    00000008     (.tramp.xdc_runtime_System_exit__E.1)
                      0000c254    00000008     (.tramp.ti_sysbios_knl_Semaphore_create.1)
                      0000c25c    00000008     (.tramp.ti_sysbios_knl_Task_create.1)
                      0000c264    00000008     (.tramp.ti_sysbios_knl_Task_Params__init__S.1)
                      0000c26c    00000008     (.tramp.ti_sysbios_knl_Clock_create.1)
                      0000c274    00000008     (.tramp.ti_sysbios_knl_Clock_scheduleNextTick__E.1)
                      0000c27c    00000008     (.tramp.ti_sysbios_knl_Clock_walkQueueDynamic__E.1)
                      0000c284    00000008     (.tramp.ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E.1)
                      0000c28c    00000008     (.tramp.ti_sysbios_knl_Queue_enqueue__E.1)
                      0000c294    00000008     (.tramp.ti_sysbios_knl_Queue_empty__E.1)
                      0000c29c    00000008     (.tramp.ti_sysbios_knl_Queue_remove__E.1)
                      0000c2a4    00000008     (.tramp.ti_sysbios_BIOS_getCpuFreq__E.1)
                      0000c2ac    00000008     (.tramp.ti_sysbios_knl_Task_sleep__E.1)
                      0000c2b4    00000008     (.tramp.ti_sysbios_knl_Clock_destruct.1)
                      0000c2bc    00000008     (.tramp.ti_sysbios_knl_Semaphore_destruct.1)
                      0000c2c4    00000008     (.tramp.ti_sysbios_knl_Swi_destruct.1)
                      0000c2cc    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_destruct.1)
                      0000c2d4    00000008     (.tramp.ti_sysbios_knl_Clock_getTicks__E.1)
                      0000c2dc    00000008     (.tramp.ti_sysbios_knl_Task_self__E.1)
                      0000c2e4    00000008     (.tramp.xdc_runtime_Text_ropeText__E.1)
                      0000c2ec    00000008     (.tramp.xdc_runtime_System_abortSpin__E.1)
                      0000c2f4    00000008     (.tramp.ti_sysbios_knl_Task_restore__E.1)
                      0000c2fc    00000008     (.tramp.ti_sysbios_knl_Swi_restore__E.1)
                      0000c304    00000008     (.tramp.ti_sysbios_knl_Swi_disable__E.1)
                      0000c30c    00000008     (.tramp.ti_sysbios_knl_Task_disable__E.1)
                      0000c314    00000008     (.tramp.ti_sysbios_knl_Semaphore_post__E.1)
                      0000c31c    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E.1)
                      0000c324    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E.1)
                      0000c32c    00000008     (.tramp.ti_sysbios_knl_Semaphore_pend__E.1)
                      0000c334    00000008     (.tramp.ti_sysbios_knl_Clock_construct.1)
                      0000c33c    00000008     (.tramp.ti_sysbios_knl_Clock_Params__init__S.1)
                      0000c344    00000008     (.tramp.ti_sysbios_knl_Semaphore_construct.1)
                      0000c34c    00000008     (.tramp.ti_sysbios_knl_Semaphore_Params__init__S.1)
                      0000c354    00000008     (.tramp.ti_sysbios_knl_Swi_construct.1)
                      0000c35c    00000008     (.tramp.ti_sysbios_knl_Swi_Params__init__S.1)
                      0000c364    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_construct.1)
                      0000c36c    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_Params__init__S.1)
                      0000c374    00000008     (.tramp.ti_sysbios_knl_Clock_start__E.1)
                      0000c37c    00000008     (.tramp.ti_sysbios_knl_Clock_setTimeout__E.1)
                      0000c384    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_restoreFxn__E.1)
                      0000c38c    00000008     (.tramp.ti_sysbios_family_arm_m3_Hwi_disableFxn__E.1)
                      0000c394    00000008     (.tramp.ti_sysbios_knl_Swi_post__E.1)
    
    .const     0    0000c39c    00001f30     
                      0000c39c    000017c0     app_ble_pem3.oem3 (.const:xdc_runtime_Text_charTab__A)
                      0000db5c    000000cc     icall.obj (.const)
                      0000dc28    0000004c     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.const:resourceDB)
                      0000dc74    0000004c     ble_user_config.obj (.const:rfDriverTable)
                      0000dcc0    00000048     app_ble_pem3.oem3 (.const:.string)
                      0000dd08    00000040     barometerservice.obj (.const:.string)
                      0000dd48    00000040     humidityservice.obj (.const:.string)
                      0000dd88    00000040     irtempservice.obj (.const:.string)
                      0000ddc8    00000040     movementservice.obj (.const:.string)
                      0000de08    00000040     opticservice.obj (.const:.string)
                      0000de48    00000040     registerservice.obj (.const:.string)
                      0000de88    00000040     UARTCC26XX.obj (.const)
                      0000dec8    0000003c     sensortag.obj (.const)
                      0000df04    00000034     app_ble_pem3.oem3 (.const:xdc_runtime_LoggerCallback_Module__FXNS__C)
                      0000df38    00000030     ioservice.obj (.const:.string)
                      0000df68    00000030     board.obj (.const:BoardGpioInitTable)
                      0000df98    0000002c     gatt_uuid.obj (.const)
                      0000dfc4    00000028     UARTCC26XX.obj (.const:UARTCC26XX_fxnTable)
                      0000dfec    00000028     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_sfxnTab__A)
                      0000e014    00000027     ble_user_config.obj (.const:txPowerTable)
                      0000e03b    00000001     --HOLE-- [fill = 0]
                      0000e03c    00000024     UART.obj (.const:UART_defaultParams)
                      0000e060    00000020     I2CCC26XX.obj (.const)
                      0000e080    00000020     app_ble_pem3.oem3 (.const:xdc_runtime_LoggerCallback_Object__DESC__C)
                      0000e0a0    0000001c     app_ble_pem3.oem3 (.const:xdc_runtime_LoggerCallback_Object__PARAMS__C)
                      0000e0bc    00000018     board.obj (.const:I2C_config)
                      0000e0d4    00000018     board.obj (.const:UART_config)
                      0000e0ec    00000018     board.obj (.const:i2cCC26xxHWAttrs)
                      0000e104    00000018     board.obj (.const:uartCC26XXHWAttrs)
                      0000e11c    00000014     devinfoservice.obj (.const:.string)
                      0000e130    00000014     RFCC26XX_singleMode.obj (.const)
                      0000e144    00000014     barometerservice.obj (.const)
                      0000e158    00000014     battservice.obj (.const)
                      0000e16c    00000014     ble_user_config.obj (.const)
                      0000e180    00000014     devinfoservice.obj (.const)
                      0000e194    00000014     humidityservice.obj (.const)
                      0000e1a8    00000014     ioservice.obj (.const)
                      0000e1bc    00000014     irtempservice.obj (.const)
                      0000e1d0    00000014     movementservice.obj (.const)
                      0000e1e4    00000014     opticservice.obj (.const)
                      0000e1f8    00000014     registerservice.obj (.const)
                      0000e20c    00000014     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_sfxnRts__A)
                      0000e220    00000010     I2C.obj (.const)
                      0000e230    00000010     board.obj (.const:PowerCC26XX_config)
                      0000e240    00000010     board.obj (.const:TRNGCC26XX_config)
                      0000e250    00000010     app_ble_pem3.oem3 (.const:xdc_runtime_Text_nodeTab__A)
                      0000e260    0000000c     app_ble_pem3.oem3 (.const:xdc_runtime_Startup_firstFxns__A)
                      0000e26c    00000008     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Idle_funcList__A)
                      0000e274    00000004     battservice.obj (.const:.string)
                      0000e278    00000004     board.obj (.const:TRNGCC26XXHWAttrs)
                      0000e27c    00000004     icall_cc2650.obj (.const)
                      0000e280    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Clock_tickPeriod__C)
                      0000e284    00000004     app_ble_pem3.oem3 (.const:ti_sysbios_knl_Clock_triggerClock__C)
                      0000e288    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_ILogger_Interface__BASE__C)
                      0000e28c    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Log_L_info__C)
                      0000e290    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Log_L_warning__C)
                      0000e294    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_LoggerCallback_Object__count__C)
                      0000e298    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_LoggerCallback_createInstFxn__C)
                      0000e29c    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_LoggerCallback_outputFxn__C)
                      0000e2a0    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerFxn2__C)
                      0000e2a4    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerFxn4__C)
                      0000e2a8    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerFxn8__C)
                      0000e2ac    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerObj__C)
                      0000e2b0    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_SysCallback_putchFxn__C)
                      0000e2b4    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_SysCallback_readyFxn__C)
                      0000e2b8    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_System_extendFxn__C)
                      0000e2bc    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Text_nodeTab__C)
                      0000e2c0    00000004     app_ble_pem3.oem3 (.const:xdc_runtime_Text_visitRopeFxn__C)
                      0000e2c4    00000002     SensorI2C.obj (.const)
                      0000e2c6    00000002     app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerDefined__C)
                      0000e2c8    00000002     app_ble_pem3.oem3 (.const:xdc_runtime_Text_registryModsLastId__C)
                      0000e2ca    00000002     app_ble_pem3.oem3 (.const:xdc_runtime_Text_unnamedModsLastId__C)
    
    .cinit     0    0000e2d0    00000a88     
                      0000e2d0    000008fb     (.cinit..data.load) [load image, compression = rle]
                      0000ebcb    00000005     --HOLE-- [fill = 0]
                      0000ebd0    0000002d     (.cinit..data:ti_sysbios_family_arm_m3_Hwi_Module__state__V.load) [load image, compression = rle]
                      0000ebfd    00000003     --HOLE-- [fill = 0]
                      0000ec00    0000002c     (.cinit..data:ti_sysbios_knl_Task_Module__state__V.load) [load image, compression = rle]
                      0000ec2c    00000004     --HOLE-- [fill = 0]
                      0000ec30    00000021     (.cinit..data:ti_sysbios_knl_Clock_Module__state__V.load) [load image, compression = rle]
                      0000ec51    00000007     --HOLE-- [fill = 0]
                      0000ec58    0000001f     (.cinit..data:ti_sysbios_BIOS_Module__state__V.load) [load image, compression = rle]
                      0000ec77    00000001     --HOLE-- [fill = 0]
                      0000ec78    00000011     (.cinit..data:ti_sysbios_knl_Swi_Module__state__V.load) [load image, compression = rle]
                      0000ec89    00000007     --HOLE-- [fill = 0]
                      0000ec90    0000000d     (.cinit..data:ti_sysbios_family_arm_cc26xx_Timer_Module__state__V.load) [load image, compression = rle]
                      0000ec9d    00000003     --HOLE-- [fill = 0]
                      0000eca0    0000000c     (__TI_handler_table)
                      0000ecac    00000004     --HOLE-- [fill = 0]
                      0000ecb0    0000000a     (.cinit..data:xdc_runtime_Memory_Module__state__V.load) [load image, compression = rle]
                      0000ecba    00000006     --HOLE-- [fill = 0]
                      0000ecc0    00000009     (.cinit..data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V.load) [load image, compression = rle]
                      0000ecc9    00000007     --HOLE-- [fill = 0]
                      0000ecd0    00000009     (.cinit..data:xdc_runtime_Startup_Module__state__V.load) [load image, compression = rle]
                      0000ecd9    00000007     --HOLE-- [fill = 0]
                      0000ece0    00000009     (.cinit..data:xdc_runtime_System_Module__state__V.load) [load image, compression = rle]
                      0000ece9    00000007     --HOLE-- [fill = 0]
                      0000ecf0    00000008     (.cinit..bss.load) [load image, compression = zero_init]
                      0000ecf8    00000060     (__TI_cinit_table)
    
    .init_array 
    *          0    00000000    00000000     UNINITIALIZED
    
    .ccfg      0    0001ffa8    00000058     
                      0001ffa8    00000058     ccfg_app_ble.obj (.ccfg:retain)
    
    .vecs      0    20000000    000000c8     NOLOAD SECTION
                      20000000    000000c8     app_ble_pem3.oem3 (.vecs)
    
    .data:ti_sysbios_knl_Task_Module__state__V 
    *          0    20000100    00000044     UNINITIALIZED
                      20000100    00000044     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Task_Module__state__V)
    
    .data:ti_sysbios_family_arm_m3_Hwi_Module__state__V 
    *          0    20000144    00000034     UNINITIALIZED
                      20000144    00000034     app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module__state__V)
    
    .data:ti_sysbios_knl_Clock_Module__state__V 
    *          0    20000178    0000002c     UNINITIALIZED
                      20000178    0000002c     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Clock_Module__state__V)
    
    .data:ti_sysbios_BIOS_Module__state__V 
    *          0    200001a4    00000024     UNINITIALIZED
                      200001a4    00000024     app_ble_pem3.oem3 (.data:ti_sysbios_BIOS_Module__state__V)
    
    .data:ti_sysbios_knl_Swi_Module__state__V 
    *          0    200001c8    0000001c     UNINITIALIZED
                      200001c8    0000001c     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Swi_Module__state__V)
    
    .data:ti_sysbios_family_arm_cc26xx_Timer_Module__state__V 
    *          0    200001e4    00000008     UNINITIALIZED
                      200001e4    00000008     app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_cc26xx_Timer_Module__state__V)
    
    .data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V 
    *          0    200001ec    00000004     UNINITIALIZED
                      200001ec    00000004     app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V)
    
    .data:xdc_runtime_Startup_Module__state__V 
    *          0    200001f0    00000008     UNINITIALIZED
                      200001f0    00000008     app_ble_pem3.oem3 (.data:xdc_runtime_Startup_Module__state__V)
    
    .data:xdc_runtime_System_Module__state__V 
    *          0    200001f8    00000008     UNINITIALIZED
                      200001f8    00000008     app_ble_pem3.oem3 (.data:xdc_runtime_System_Module__state__V)
    
    .data:xdc_runtime_Memory_Module__state__V 
    *          0    20000200    00000004     UNINITIALIZED
                      20000200    00000004     app_ble_pem3.oem3 (.data:xdc_runtime_Memory_Module__state__V)
    
    .data      0    20000208    00002351     UNINITIALIZED
                      20000208    000005b8     uart_logs.obj (.data)
                      200007c0    000003b4     sensortag.obj (.data)
                      20000b74    0000031c     peripheral.obj (.data)
                      20000e90    000002b4     sensortag_bar.obj (.data)
                      20001144    000002b4     sensortag_hum.obj (.data)
                      200013f8    000002b4     sensortag_tmp.obj (.data)
                      200016ac    00000004     I2C.obj (.data)
                      200016b0    00000230     RFCC26XX_singleMode.obj (.data)
                      200018e0    000001e0     devinfoservice.obj (.data)
                      20001ac0    00000110     drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.data:PowerCC26XX_module)
                      20001bd0    0000010c     icall.obj (.data)
                      20001cdc    000000e8     app_ble_pem3.oem3 (.data)
                      20001dc4    000000a4     movementservice.obj (.data)
                      20001e68    00000098     barometerservice.obj (.data)
                      20001f00    00000094     humidityservice.obj (.data)
                      20001f94    00000094     irtempservice.obj (.data)
                      20002028    00000094     registerservice.obj (.data)
                      200020bc    00000090     opticservice.obj (.data)
                      2000214c    00000084     battservice.obj (.data)
                      200021d0    00000060     ioservice.obj (.data)
                      20002230    00000050     ble_user_config.obj (.data:rfRegTbl)
                      20002280    0000004c     sensortag_mov.obj (.data)
                      200022cc    0000004c     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Task_Object__table__V)
                      20002318    00000048     app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_cc26xx_Timer_Object__table__V)
                      20002360    00000038     app_ble_pem3.oem3 (.data:ti_sysbios_gates_GateMutex_Object__table__V)
                      20002398    00000034     SensorMpu9250.obj (.data)
                      200023cc    00000030     sensortag_register.obj (.data)
                      200023fc    00000030     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Swi_Module_State_0_readyQ__A)
                      2000242c    00000030     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Swi_Object__table__V)
                      2000245c    00000030     app_ble_pem3.oem3 (.data:ti_sysbios_knl_Task_Module_State_0_readyQ__A)
                      2000248c    00000030     main.obj (.data:user0Cfg)
                      200024bc    0000002c     sensortag_keys.obj (.data)
                      200024e8    0000002c     sensortag_opt.obj (.data)
                      20002514    0000000c     icall_api.obj (.data)
                      20002520    00000008     icall_cc2650.obj (.data)
                      20002528    00000008     rtsv7M3_T_le_eabi.lib : _lock.obj (.data)
                      20002530    00000008                           : exit.obj (.data)
                      20002538    00000008     sensortag_io.obj (.data)
                      20002540    00000008     app_ble_pem3.oem3 (.data:xdc_runtime_Registry_Module__state__V)
                      20002548    00000004     UART.obj (.data)
                      2000254c    00000004     ble_user_config.obj (.data)
                      20002550    00000004     rtsv7M3_T_le_eabi.lib : stkdepth_vars.obj (.data)
                      20002554    00000004     sensortag_buzzer.obj (.data)
                      20002558    00000001     TRNGCC26XX.obj (.data)
    
    .bss       0    20002560    00000cfb     UNINITIALIZED
                      20002560    00000680     app_ble_pem3.oem3 (.bss:ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A)
                      20002be0    00000200     app_ble_pem3.oem3 (.bss:taskStackSection)
                      20002de0    00000114     board.obj (.bss:uartCC26XXObjects)
                      20002ef4    00000110     PINCC26XX.obj (.bss)
                      20003004    000000e0     board.obj (.bss:i2cCC26xxObjects)
                      200030e4    000000c8     app_ble_pem3.oem3 (.bss:ti_sysbios_family_arm_m3_Hwi_dispatchTable)
                      200031ac    00000050     SensorI2C.obj (.bss)
                      200031fc    00000028     sensortag_batt.obj (.bss)
                      20003224    00000014     driverlib.lib : osc.obj (.bss:oscHfGlobals)
                      20003238    00000008     SensorTmp007.obj (.bss)
                      20003240    00000008     driverlib.lib : sys_ctrl.obj (.bss:powerQualGlobals)
                      20003248    00000004     (.common:buf$36)
                      2000324c    00000004     (.common:dispatchInUs$19)
                      20003250    00000004     (.common:trngCC26XXObjects)
                      20003254    00000001     (.common:bRestart$19)
                      20003255    00000001     (.common:driverlib_release_0_46593)
                      20003256    00000001     (.common:interface$33)
                      20003257    00000001     (.common:mpuDataRdy$9)
                      20003258    00000001     (.common:slaveAddr$33)
                      20003259    00000001     (.common:uartRxPowerConstraint$24)
                      2000325a    00000001     (.common:uartTxPowerConstraint$24)
    
    .vtable    0    2000325b    00000000     UNINITIALIZED
    
    .vtable_ram 
    *          0    2000325b    00000000     UNINITIALIZED
    
    vtable_ram 
    *          0    2000325b    00000000     UNINITIALIZED
    
    .sysmem    0    2000325b    00000000     UNINITIALIZED
    
    .nonretenvar 
    *          0    2000325b    00000000     UNINITIALIZED
    
    .stack     0    20004028    00000400     UNINITIALIZED
                      20004028    00000400     --HOLE--
    
    .bootVecs 
    *          0    00000000    00000008     DSECT
                      00000000    00000008     boot.aem3 : boot.oem3 (.bootVecs)
    
    xdc.meta   0    00000000    0000011e     COPY SECTION
                      00000000    0000011e     app_ble_pem3.oem3 (xdc.meta)
    
    
    LINKER GENERATED COPY TABLES
    
    __TI_cinit_table @ 0000ecf8 records: 12, size/record: 8, table size: 96
    	.data: load addr=0000e2d0, load size=000008fb bytes, run addr=20000208, run size=00002351 bytes, compression=rle
    	.data:ti_sysbios_family_arm_m3_Hwi_Module__state__V: load addr=0000ebd0, load size=0000002d bytes, run addr=20000144, run size=00000034 bytes, compression=rle
    	.data:ti_sysbios_knl_Task_Module__state__V: load addr=0000ec00, load size=0000002c bytes, run addr=20000100, run size=00000044 bytes, compression=rle
    	.data:ti_sysbios_knl_Clock_Module__state__V: load addr=0000ec30, load size=00000021 bytes, run addr=20000178, run size=0000002c bytes, compression=rle
    	.data:ti_sysbios_BIOS_Module__state__V: load addr=0000ec58, load size=0000001f bytes, run addr=200001a4, run size=00000024 bytes, compression=rle
    	.data:ti_sysbios_knl_Swi_Module__state__V: load addr=0000ec78, load size=00000011 bytes, run addr=200001c8, run size=0000001c bytes, compression=rle
    	.data:ti_sysbios_family_arm_cc26xx_Timer_Module__state__V: load addr=0000ec90, load size=0000000d bytes, run addr=200001e4, run size=00000008 bytes, compression=rle
    	.data:xdc_runtime_Memory_Module__state__V: load addr=0000ecb0, load size=0000000a bytes, run addr=20000200, run size=00000004 bytes, compression=rle
    	.data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V: load addr=0000ecc0, load size=00000009 bytes, run addr=200001ec, run size=00000004 bytes, compression=rle
    	.data:xdc_runtime_Startup_Module__state__V: load addr=0000ecd0, load size=00000009 bytes, run addr=200001f0, run size=00000008 bytes, compression=rle
    	.data:xdc_runtime_System_Module__state__V: load addr=0000ece0, load size=00000009 bytes, run addr=200001f8, run size=00000008 bytes, compression=rle
    	.bss: load addr=0000ecf0, load size=00000008 bytes, run addr=20002560, run size=00000cfb bytes, compression=zero_init
    
    
    LINKER GENERATED HANDLER TABLE
    
    __TI_handler_table @ 0000eca0 records: 3, size/record: 4, table size: 12
    	index: 0, handler: __TI_decompress_rle24
    	index: 1, handler: __TI_decompress_none
    	index: 2, handler: __TI_zero_init
    
    
    FAR CALL TRAMPOLINES
    
    callee name               trampoline name
       callee addr  tramp addr   call addr  call info
    --------------  -----------  ---------  ----------------
    xdc_runtime_Core_assignParams__I  $Tramp$TT$L$PI$$xdc_runtime_Core_assignParams__I
       1001c5f1     0000c19c     0000bfc8   rom_sysbios.aem3 : rom_sysbios_config.obj (.text:ti_sysbios_hal_Hwi_Params__init__S)
    ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E  $Tramp$TT$L$PI$$ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E
       1001c285     0000c1a4     0000bf08   icall.obj (.text:ICall_primEnableInt$26)
    ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E  $Tramp$TT$L$PI$$ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E
       1001c281     0000c1ac     0000befc   icall.obj (.text:ICall_primDisableInt$26)
    ti_sysbios_knl_Task_enable__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_enable__E
       1001c243     0000c1b4     0000be02   icall.obj (.text:ICall_primEnableMInt$26)
    ti_sysbios_family_arm_m3_Hwi_enableFxn__E  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_enableFxn__E
       1001c155     0000c1bc     0000bdfe   icall.obj (.text:ICall_primEnableMInt$26)
    xdc_runtime_Startup_startMods__I  $Tramp$TT$L$PI$$xdc_runtime_Startup_startMods__I
       1001c30d     0000c1c4     0000bc9a   app_ble_pem3.oem3 (.text:xdc_runtime_Startup_exec__I)
    ti_sysbios_knl_Clock_logTick__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_logTick__E
       1001be67     0000c1cc     0000bc5a   app_ble_pem3.oem3 (.text:ti_sysbios_knl_Clock_doTick__I)
    ti_sysbios_BIOS_RtsGateProxy_leave__E  $Tramp$TT$L$PI$$ti_sysbios_BIOS_RtsGateProxy_leave__E
       1001c24d     0000c1d4     0000ba96   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsUnlock__I)
    ti_sysbios_knl_Queue_construct  $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_construct
       1001b8f5     0000c1dc     0000b9a2   util.obj (.text:Util_constructQueue)
    ti_sysbios_knl_Queue_get__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_get__E
       1001bf11     0000c1e4     0000b694   util.obj (.text:Util_dequeueMsg)
    ti_sysbios_BIOS_RtsGateProxy_enter__E  $Tramp$TT$L$PI$$ti_sysbios_BIOS_RtsGateProxy_enter__E
       1001c249     0000c1ec     0000b2d2   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsLock__I)
    ti_sysbios_knl_Queue_put__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_put__E
       1001bf2d     0000c1f4     0000aaf0   util.obj (.text:Util_enqueueMsg)
    xdc_runtime_Core_createObject__I  $Tramp$TT$L$PI$$xdc_runtime_Core_createObject__I
       1001c405     0000c1fc     0000a604   app_ble_pem3.oem3 (.text:xdc_runtime_LoggerCallback_Object__create__S)
    ti_sysbios_knl_Task_startup__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_startup__E
       1001c309     0000c204     0000a584   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    ti_sysbios_knl_Swi_startup__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_startup__E
       1001c23d     0000c20c     0000a580   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    ti_sysbios_hal_Hwi_HwiProxy_startup__E  $Tramp$TT$L$PI$$ti_sysbios_hal_Hwi_HwiProxy_startup__E
       1001c28d     0000c214     0000a57c   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    ti_sysbios_family_arm_cc26xx_Timer_startup__E  $Tramp$TT$L$PI$$ti_sysbios_family_arm_cc26xx_Timer_startup__E
       1001b795     0000c21c     0000a578   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    xdc_runtime_System_atexit__E  $Tramp$TT$L$PI$$xdc_runtime_System_atexit__E
       1001c681     0000c224     0000a570   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    ti_sysbios_BIOS_setThreadType__E  $Tramp$TT$L$PI$$ti_sysbios_BIOS_setThreadType__E
       1001c045     0000c22c     0000a53c   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
                                 0000bb48   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__I)
    ti_sysbios_BIOS_start__E  $Tramp$TT$L$PI$$ti_sysbios_BIOS_start__E
       1001c055     0000c234     0000a21e   main.obj (.text:main)
    ti_sysbios_hal_Hwi_create  $Tramp$TT$L$PI$$ti_sysbios_hal_Hwi_create
       1001ab79     0000c23c     00009ea4   icall.obj (.text:ICall_primRegisterISR$26)
                                 00009ed8   icall.obj (.text:ICall_primRegisterISR_Ext$26)
    ti_sysbios_knl_Task_construct  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_construct
       1001b125     0000c244     00009582   peripheral.obj (.text:GAPRole_createTask)
                                 00009a14   sensortag.obj (.text:SensorTag_createTask)
    xdc_runtime_System_exit__E  $Tramp$TT$L$PI$$xdc_runtime_System_exit__E
       1001c7d1     0000c24c     00009364   boot.aem3 : boot.oem3 (.text)
                                 0000bb4e   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__I)
    ti_sysbios_knl_Semaphore_create  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_create
       1001b5ad     0000c254     00008c34   icall.obj (.text:ICall_newTask$26)
    ti_sysbios_knl_Task_create  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_create
       1001ae19     0000c25c     00007232   icall.obj (.text:ICall_createRemoteTasks)
                                 000094fa   icall.obj (.text:ICall_primCreateTask$26)
    ti_sysbios_knl_Task_Params__init__S  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_Params__init__S
       1001c1d9     0000c264     00007216   icall.obj (.text:ICall_createRemoteTasks)
                                 000094e4   icall.obj (.text:ICall_primCreateTask$26)
                                 00009562   peripheral.obj (.text:GAPRole_createTask)
                                 000099f6   sensortag.obj (.text:SensorTag_createTask)
    ti_sysbios_knl_Clock_create  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_create
       1001b3ed     0000c26c     00006e9e   icall.obj (.text:ICall_primSetTimer$26)
    ti_sysbios_knl_Clock_scheduleNextTick__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_scheduleNextTick__E
       1001bebd     0000c274     0000657e   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
    ti_sysbios_knl_Clock_walkQueueDynamic__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_walkQueueDynamic__E
       1001a80d     0000c27c     00006546   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
                                 00006562                    : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
    ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E
       1001c095     0000c284     00006514   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
                                 0000aa0e                    : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_getTicksUntilInterrupt__E)
    ti_sysbios_knl_Queue_enqueue__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_enqueue__E
       1001c1b5     0000c28c     000062f0   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Task_setPri__E)
                                 0000c18c                    : rom_sysbios.obj (.text:ti_sysbios_knl_Queue_insert__E)
    ti_sysbios_knl_Queue_empty__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_empty__E
       1001c113     0000c294     000062d8   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Task_setPri__E)
                                 0000671c   sensortag.obj (.text:SensorTag_taskFxn$0)
    ti_sysbios_knl_Queue_remove__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_remove__E
       1001c121     0000c29c     000062d2   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Task_setPri__E)
    ti_sysbios_BIOS_getCpuFreq__E  $Tramp$TT$L$PI$$ti_sysbios_BIOS_getCpuFreq__E
       1001bff9     0000c2a4     00005eda   UARTCC26XX.obj (.text:UARTCC26XX_initHw$24)
                                 00008fa8   I2CCC26XX.obj (.text:I2CCC26XX_initHw$17)
    ti_sysbios_knl_Task_sleep__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_sleep__E
       1001a96d     0000c2ac     00005c94   sensortag_mov.obj (.text:SensorTagMov_processCharChangeEvt)
                                 00007130   SensorMpu9250.obj (.text:sensorMagInit$34)
                                 000079ea   SensorMpu9250.obj (.text:SensorMpu9250_reset)
                                 000081a4   SensorMpu9250.obj (.text:SensorMpu9250_test)
                                 00009314   sensortag_io.obj (.text:SensorTagIO_blinkLed)
                                 00009324   sensortag_io.obj (.text:SensorTagIO_blinkLed)
                                 00009434   SensorMpu9250.obj (.text:sensorMpu9250SetBypass$34)
                                 0000a4ba   SensorMpu9250.obj (.text:SensorMpu9250_powerOn)
    ti_sysbios_knl_Clock_destruct  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_destruct
       1001c2b9     0000c2b4     00004f26   UARTCC26XX.obj (.text:UARTCC26XX_close)
    ti_sysbios_knl_Semaphore_destruct  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_destruct
       1001c2e1     0000c2bc     00004f12   UARTCC26XX.obj (.text:UARTCC26XX_close)
                                 00004f1e   UARTCC26XX.obj (.text:UARTCC26XX_close)
                                 000050b8   I2CCC26XX.obj (.text:I2CCC26XX_close)
                                 000050c4   I2CCC26XX.obj (.text:I2CCC26XX_close)
    ti_sysbios_knl_Swi_destruct  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_destruct
       1001c2e9     0000c2c4     00004f06   UARTCC26XX.obj (.text:UARTCC26XX_close)
                                 000050b0   I2CCC26XX.obj (.text:I2CCC26XX_close)
    ti_sysbios_family_arm_m3_Hwi_destruct  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_destruct
       1001c261     0000c2cc     00004efe   UARTCC26XX.obj (.text:UARTCC26XX_close)
                                 000050a8   I2CCC26XX.obj (.text:I2CCC26XX_close)
    ti_sysbios_knl_Clock_getTicks__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_getTicks__E
       1001b6d9     0000c2d4     00004aa0   icall.obj (.text:ICall_primWaitMatch$26)
                                 00004b0a   icall.obj (.text:ICall_primWaitMatch$26)
                                 0000be1c   icall.obj (.text:ICall_primGetTicks$26)
    ti_sysbios_knl_Task_self__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_self__E
       1001c1e5     0000c2dc     00004a56   icall.obj (.text:ICall_primWaitMatch$26)
                                 00007e2c   icall.obj (.text:ICall_primEnroll$26)
                                 0000807c   icall.obj (.text:ICall_primThreadServes$26)
                                 00008808   icall.obj (.text:ICall_primWait$26)
                                 0000894c   icall.obj (.text:ICall_primRegisterApp$26)
                                 00008c60   icall.obj (.text:ICall_primGetEntityId$26)
                                 00009e54   icall.obj (.text:ICall_primFetchMsg$26)
    xdc_runtime_Text_ropeText__E  $Tramp$TT$L$PI$$xdc_runtime_Text_ropeText__E
       1001c7e9     0000c2e4     00003de2   uart_logs.obj (.text:uartLog_doPrint$60)
                                 00008f24   rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_visitRope2__I)
                                 00008f32                    : rom_sysbios.obj (.text:xdc_runtime_Text_visitRope2__I)
    xdc_runtime_System_abortSpin__E  $Tramp$TT$L$PI$$xdc_runtime_System_abortSpin__E
       1001c899     0000c2ec     00003892   drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_doCalibrate)
                                 00007eaa                           : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_RCOSC_clockFunc)
    ti_sysbios_knl_Task_restore__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_restore__E
       1001ba49     0000c2f4     00002508   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
                                 0000631e   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Task_setPri__E)
                                 00007256   icall.obj (.text:ICall_createRemoteTasks)
                                 0000bb0c   icall.obj (.text:ICall_leaveCSImpl)
    ti_sysbios_knl_Swi_restore__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_restore__E
       1001b5e1     0000c2fc     000024fe   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
                                 0000376e   RFCC26XX_singleMode.obj (.text:abortCmd$19)
                                 00007010   RFCC26XX_singleMode.obj (.text:RF_pendCmd)
                                 0000703c   RFCC26XX_singleMode.obj (.text:RF_pendCmd)
                                 00007058   RFCC26XX_singleMode.obj (.text:RF_pendCmd)
    ti_sysbios_knl_Swi_disable__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_disable__E
       1001c0d5     0000c304     0000235a   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
                                 0000374c   RFCC26XX_singleMode.obj (.text:abortCmd$19)
                                 00006ffe   RFCC26XX_singleMode.obj (.text:RF_pendCmd)
                                 0000a532   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
    ti_sysbios_knl_Task_disable__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Task_disable__E
       1001c0f5     0000c30c     00002342   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
                                 00006298   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Task_setPri__E)
                                 00007200   icall.obj (.text:ICall_createRemoteTasks)
                                 0000a536   app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
                                 0000b644   icall.obj (.text:ICall_enterCSImpl)
                                 0000bdf0   icall.obj (.text:ICall_primDisableMInt$26)
    ti_sysbios_knl_Semaphore_post__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_post__E
       1001ac41     0000c314     00001dcc   I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                                 00004b28   icall.obj (.text:ICall_primWaitMatch$26)
                                 000055c0   sensortag_keys.obj (.text:SensorTagKeys_processKeyLeft)
                                 00005688   sensortag_keys.obj (.text:SensorTagKeys_processKeyRight)
                                 000064ee   PINCC26XX.obj (.text:PIN_open)
                                 0000682a   I2CCC26XX.obj (.text:I2CCC26XX_blockingCallback$17)
                                 00006d1a   UARTCC26XX.obj (.text:readSemCallback$24)
                                 00007532   icall.obj (.text:ICall_primSend$26)
                                 00007a38   RFCC26XX_singleMode.obj (.text:fsmPowerDownState$19)
                                 00008b20   RFCC26XX_singleMode.obj (.text:syncCb$19)
                                 0000a0b0   sensortag_keys.obj (.text:SensorTagKeys_processRelay)
                                 0000aaf8   util.obj (.text:Util_enqueueMsg)
                                 0000b942   sensortag_batt.obj (.text:SensorTagBatt_clockHandler$2)
                                 0000b95e   sensortag.obj (.text:SensorTag_clockHandler$0)
                                 0000b9d6   peripheral.obj (.text:gapRole_setEvent$53)
                                 0000bf20   icall.obj (.text:ICall_primSignal$26)
                                 0000bf68   SensorI2C.obj (.text:SensorI2C_deselect)
                                 0000c0b8   UARTCC26XX.obj (.text:writeSemCallback$24)
    ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E
       1001b2dd     0000c31c     00001c96   I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                                 0000578a   RFCC26XX_singleMode.obj (.text:fsmPowerUpState$19)
    ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E
       1001b299     0000c324     00001c86   I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    ti_sysbios_knl_Semaphore_pend__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_pend__E
       1001a0cd     0000c32c     00001c80   I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                                 00001cfa   I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                                 00001f14   UARTCC26XX.obj (.text:UARTCC26XX_write)
                                 00001f80   UARTCC26XX.obj (.text:UARTCC26XX_write)
                                 00002dbe   UARTCC26XX.obj (.text:UARTCC26XX_read)
                                 00004ab4   icall.obj (.text:ICall_primWaitMatch$26)
                                 0000647c   PINCC26XX.obj (.text:PIN_open)
                                 00007048   RFCC26XX_singleMode.obj (.text:RF_pendCmd)
                                 000076e8   UARTCC26XX.obj (.text:writeTxFifoFlush$24)
                                 000077a0   SensorI2C.obj (.text:SensorI2C_select)
                                 00008848   icall.obj (.text:ICall_primWait$26)
    ti_sysbios_knl_Clock_construct  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_construct
       1001b579     0000c334     00001adc   UARTCC26XX.obj (.text:UARTCC26XX_open)
                                 0000427e   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_init)
                                 0000428c                           : PowerCC26XX.oem3 (.text:Power_init)
                                 0000429a                           : PowerCC26XX.oem3 (.text:Power_init)
                                 00004bdc   RFCC26XX_singleMode.obj (.text:rf_init$19)
                                 00005c34   RFCC26XX_singleMode.obj (.text:RF_open)
                                 00007984   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
                                 00008d80   util.obj (.text:Util_constructClock)
    ti_sysbios_knl_Clock_Params__init__S  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_Params__init__S
       1001c185     0000c33c     00001ac4   UARTCC26XX.obj (.text:UARTCC26XX_open)
                                 00004266   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_init)
                                 00005c24   RFCC26XX_singleMode.obj (.text:RF_open)
                                 00006e8a   icall.obj (.text:ICall_primSetTimer$26)
                                 0000796c   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
                                 00008d56   util.obj (.text:Util_constructClock)
    ti_sysbios_knl_Semaphore_construct  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_construct
       1001b709     0000c344     00001aa0   UARTCC26XX.obj (.text:UARTCC26XX_open)
                                 00001ab4   UARTCC26XX.obj (.text:UARTCC26XX_open)
                                 00002a0a   I2CCC26XX.obj (.text:I2CCC26XX_open)
                                 00002a1a   I2CCC26XX.obj (.text:I2CCC26XX_open)
                                 0000352c   PINCC26XX.obj (.text:PIN_init)
                                 00005c18   RFCC26XX_singleMode.obj (.text:RF_open)
                                 0000862e   SensorI2C.obj (.text:SensorI2C_open)
    ti_sysbios_knl_Semaphore_Params__init__S  $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_Params__init__S
       1001c1c1     0000c34c     00001a8a   UARTCC26XX.obj (.text:UARTCC26XX_open)
                                 000029fa   I2CCC26XX.obj (.text:I2CCC26XX_open)
                                 00003518   PINCC26XX.obj (.text:PIN_init)
                                 00005c08   RFCC26XX_singleMode.obj (.text:RF_open)
                                 0000861a   SensorI2C.obj (.text:SensorI2C_open)
    ti_sysbios_knl_Swi_construct  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_construct
       1001b085     0000c354     00001a7e   UARTCC26XX.obj (.text:UARTCC26XX_open)
                                 000029ee   I2CCC26XX.obj (.text:I2CCC26XX_open)
                                 000035c2   PINCC26XX.obj (.text:PIN_init)
                                 00004b68   RFCC26XX_singleMode.obj (.text:rf_init$19)
                                 00004baa   RFCC26XX_singleMode.obj (.text:rf_init$19)
    ti_sysbios_knl_Swi_Params__init__S  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_Params__init__S
       1001c1cd     0000c35c     00001a68   UARTCC26XX.obj (.text:UARTCC26XX_open)
                                 000029da   I2CCC26XX.obj (.text:I2CCC26XX_open)
                                 000035b0   PINCC26XX.obj (.text:PIN_init)
                                 00004b54   RFCC26XX_singleMode.obj (.text:rf_init$19)
                                 00004b9a   RFCC26XX_singleMode.obj (.text:rf_init$19)
    ti_sysbios_family_arm_m3_Hwi_construct  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_construct
       1001af29     0000c364     00001a5c   UARTCC26XX.obj (.text:UARTCC26XX_open)
                                 000029ce   I2CCC26XX.obj (.text:I2CCC26XX_open)
                                 000035a4   PINCC26XX.obj (.text:PIN_init)
                                 00004b8e   RFCC26XX_singleMode.obj (.text:rf_init$19)
                                 00004bce   RFCC26XX_singleMode.obj (.text:rf_init$19)
                                 00007994   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
    ti_sysbios_family_arm_m3_Hwi_Params__init__S  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_Params__init__S
       1001c13d     0000c36c     00001a44   UARTCC26XX.obj (.text:UARTCC26XX_open)
                                 000029b6   I2CCC26XX.obj (.text:I2CCC26XX_open)
                                 0000358e   PINCC26XX.obj (.text:PIN_init)
                                 00004b74   RFCC26XX_singleMode.obj (.text:rf_init$19)
                                 00004bb6   RFCC26XX_singleMode.obj (.text:rf_init$19)
    ti_sysbios_knl_Clock_start__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_start__E
       1001bfe3     0000c374     00001598   RFCC26XX_singleMode.obj (.text:fsmActiveState$19)
                                 00003910   drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_doCalibrate)
                                 00003a40   RFCC26XX_singleMode.obj (.text:RF_postCmd)
                                 00004318   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_init)
                                 00005e0c   power_cc26xx_tirtos.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
                                 0000695a   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                                 00006a12   UARTCC26XX.obj (.text:writeFinishedDoCallback$24)
                                 00006ee2   icall.obj (.text:ICall_primSetTimer$26)
                                 00007328   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
                                 0000827a   RFCC26XX_singleMode.obj (.text:decActiveClientCnt$19)
                                 000086a8   util.obj (.text:Util_rescheduleClock)
                                 000086f2   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:configureXOSCHF)
                                 00008738   RFCC26XX_singleMode.obj (.text:fsmXOSCState$19)
                                 00008efa   UARTCC26XX.obj (.text:startTxFifoEmptyClk$24)
                                 00009c90   util.obj (.text:Util_restartClock)
                                 0000b2fe   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_stop__E)
                                 0000c170   util.obj (.text:Util_startClock)
    ti_sysbios_knl_Clock_setTimeout__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_setTimeout__E
       1001c2c1     0000c37c     00001590   RFCC26XX_singleMode.obj (.text:fsmActiveState$19)
                                 00003a38   RFCC26XX_singleMode.obj (.text:RF_postCmd)
                                 00004312   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_init)
                                 00005e06   power_cc26xx_tirtos.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
                                 00006954   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                                 00006a0c   UARTCC26XX.obj (.text:writeFinishedDoCallback$24)
                                 00006edc   icall.obj (.text:ICall_primSetTimer$26)
                                 00007322   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
                                 00008274   RFCC26XX_singleMode.obj (.text:decActiveClientCnt$19)
                                 0000868e   util.obj (.text:Util_rescheduleClock)
                                 000086ec   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:configureXOSCHF)
                                 00008732   RFCC26XX_singleMode.obj (.text:fsmXOSCState$19)
                                 00008ef4   UARTCC26XX.obj (.text:startTxFifoEmptyClk$24)
                                 00009c8a   util.obj (.text:Util_restartClock)
    ti_sysbios_family_arm_m3_Hwi_restoreFxn__E  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_restoreFxn__E
       1001c219     0000c384     0000155a   RFCC26XX_singleMode.obj (.text:fsmActiveState$19)
                                 000015ce   RFCC26XX_singleMode.obj (.text:fsmActiveState$19)
                                 0000196c   UARTCC26XX.obj (.text:UARTCC26XX_open)
                                 00001a34   UARTCC26XX.obj (.text:UARTCC26XX_open)
                                 00001b2a   UARTCC26XX.obj (.text:UARTCC26XX_open)
                                 00001c5a   I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                                 00001c6c   I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                                 00001ec4   UARTCC26XX.obj (.text:UARTCC26XX_write)
                                 00001ee0   UARTCC26XX.obj (.text:UARTCC26XX_write)
                                 00001f3e   UARTCC26XX.obj (.text:UARTCC26XX_write)
                                 00001fb4   UARTCC26XX.obj (.text:UARTCC26XX_write)
                                 00001ffc   UARTCC26XX.obj (.text:UARTCC26XX_write)
                                 00002978   I2CCC26XX.obj (.text:I2CCC26XX_open)
                                 00002986   I2CCC26XX.obj (.text:I2CCC26XX_open)
                                 00002d78   UARTCC26XX.obj (.text:UARTCC26XX_read)
                                 00002d94   UARTCC26XX.obj (.text:UARTCC26XX_read)
                                 00002de8   UARTCC26XX.obj (.text:UARTCC26XX_read)
                                 00002e3a   UARTCC26XX.obj (.text:UARTCC26XX_read)
                                 00003680   RFCC26XX_singleMode.obj (.text:abortCmd$19)
                                 000036a8   RFCC26XX_singleMode.obj (.text:abortCmd$19)
                                 000036dc   RFCC26XX_singleMode.obj (.text:abortCmd$19)
                                 00003760   RFCC26XX_singleMode.obj (.text:abortCmd$19)
                                 00003790   RFCC26XX_singleMode.obj (.text:abortCmd$19)
                                 000039e8   RFCC26XX_singleMode.obj (.text:RF_postCmd)
                                 00003a1a   RFCC26XX_singleMode.obj (.text:RF_postCmd)
                                 00003a86   RFCC26XX_singleMode.obj (.text:RF_postCmd)
                                 0000436e   UARTCC26XX.obj (.text:UARTCC26XX_writeCancel)
                                 00004378   UARTCC26XX.obj (.text:UARTCC26XX_writeCancel)
                                 000043ba   UARTCC26XX.obj (.text:UARTCC26XX_writeCancel)
                                 0000487e   UARTCC26XX.obj (.text:UARTCC26XX_readCancel)
                                 000048ac   UARTCC26XX.obj (.text:UARTCC26XX_readCancel)
                                 00004902   UARTCC26XX.obj (.text:UARTCC26XX_readCancel)
                                 00004f32   UARTCC26XX.obj (.text:UARTCC26XX_close)
                                 0000506a   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_releaseDependency)
                                 000050d8   I2CCC26XX.obj (.text:I2CCC26XX_close)
                                 0000520a   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_setDependency)
                                 00005248   UARTCC26XX.obj (.text:UARTCC26XX_swiIntFxn)
                                 00005b16   RFCC26XX_singleMode.obj (.text:swiFxnHw$19)
                                 00005b34   RFCC26XX_singleMode.obj (.text:swiFxnHw$19)
                                 00005bc0   RFCC26XX_singleMode.obj (.text:RF_open)
                                 00005bce   RFCC26XX_singleMode.obj (.text:RF_open)
                                 00005fdc   PINCC26XX.obj (.text:PINCC26XX_setIoCfg$18)
                                 00006982   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                                 000069ce   UARTCC26XX.obj (.text:writeFinishedDoCallback$24)
                                 00006bb8   I2CCC26XX.obj (.text:I2CCC26XX_cancel)
                                 00006f5a   TRNGCC26XX.obj (.text:TRNGCC26XX_getNumber)
                                 000071ec   uart_logs.obj (.text:uartLog_outputFxn)
                                 00007ce6   uart_logs.obj (.text:uartLog_flush)
                                 00007efa   RFCC26XX_singleMode.obj (.text:RF_getCurrentTime)
                                 00007f02   RFCC26XX_singleMode.obj (.text:RF_getCurrentTime)
                                 00008280   RFCC26XX_singleMode.obj (.text:decActiveClientCnt$19)
                                 0000852e   drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
                                 0000859a   UARTCC26XX.obj (.text:UARTCC26XX_control)
                                 000087f6   RFCC26XX_singleMode.obj (.text:ratChanFree$19)
                                 00008aca   RFCC26XX_singleMode.obj (.text:RF_getInfo)
                                 000095f4   RFCC26XX_singleMode.obj (.text:RF_getRssi)
                                 00009a40   RFCC26XX_singleMode.obj (.text:postDirImmCmd$19)
                                 00009a54   RFCC26XX_singleMode.obj (.text:postDirImmCmd$19)
                                 00009be6   PINCC26XX.obj (.text:PIN_setOutputEnable)
                                 00009fe0   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
                                 0000a01c   RFCC26XX_singleMode.obj (.text:Q_push$19)
                                 0000a464   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_releaseConstraint)
                                 0000a494                           : PowerCC26XX.oem3 (.text:Power_setConstraint)
                                 0000ac8a                           : PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
                                 0000ad76   TRNGCC26XX.obj (.text:TRNGCC26XX_init)
                                 0000ae6c   drivers_cc26xxware.aem3 : List.oem3 (.text:List_put)
                                 0000b240                           : PowerCC26XX.oem3 (.text:Power_unregisterNotify)
                                 0000b58e   TRNGCC26XX.obj (.text:TRNGCC26XX_open)
                                 0000b930   RFCC26XX_singleMode.obj (.text:Q_pop$19)
                                 0000bb04   icall.obj (.text:ICall_leaveCSImpl)
    ti_sysbios_family_arm_m3_Hwi_disableFxn__E  $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_disableFxn__E
       1001c149     0000c38c     00001534   RFCC26XX_singleMode.obj (.text:fsmActiveState$19)
                                 000015ba   RFCC26XX_singleMode.obj (.text:fsmActiveState$19)
                                 00001950   UARTCC26XX.obj (.text:UARTCC26XX_open)
                                 00001a2e   UARTCC26XX.obj (.text:UARTCC26XX_open)
                                 00001c46   I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                                 00001e9c   UARTCC26XX.obj (.text:UARTCC26XX_write)
                                 00001ec8   UARTCC26XX.obj (.text:UARTCC26XX_write)
                                 00001f2a   UARTCC26XX.obj (.text:UARTCC26XX_write)
                                 00001fa0   UARTCC26XX.obj (.text:UARTCC26XX_write)
                                 0000296c   I2CCC26XX.obj (.text:I2CCC26XX_open)
                                 00002d58   UARTCC26XX.obj (.text:UARTCC26XX_read)
                                 00002d7c   UARTCC26XX.obj (.text:UARTCC26XX_read)
                                 00002dd4   UARTCC26XX.obj (.text:UARTCC26XX_read)
                                 00003620   RFCC26XX_singleMode.obj (.text:abortCmd$19)
                                 00003944   RFCC26XX_singleMode.obj (.text:RF_postCmd)
                                 000039fc   RFCC26XX_singleMode.obj (.text:RF_postCmd)
                                 0000435e   UARTCC26XX.obj (.text:UARTCC26XX_writeCancel)
                                 000043a4   UARTCC26XX.obj (.text:UARTCC26XX_writeCancel)
                                 0000486e   UARTCC26XX.obj (.text:UARTCC26XX_readCancel)
                                 00004896   UARTCC26XX.obj (.text:UARTCC26XX_readCancel)
                                 00004f2a   UARTCC26XX.obj (.text:UARTCC26XX_close)
                                 00004fb6   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_releaseDependency)
                                 000050d0   I2CCC26XX.obj (.text:I2CCC26XX_close)
                                 0000515a   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_setDependency)
                                 0000522e   UARTCC26XX.obj (.text:UARTCC26XX_swiIntFxn)
                                 00005ac6   RFCC26XX_singleMode.obj (.text:swiFxnHw$19)
                                 00005bb8   RFCC26XX_singleMode.obj (.text:RF_open)
                                 00005fbc   PINCC26XX.obj (.text:PINCC26XX_setIoCfg$18)
                                 0000690c   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                                 000069b6   UARTCC26XX.obj (.text:writeFinishedDoCallback$24)
                                 00006b50   I2CCC26XX.obj (.text:I2CCC26XX_cancel)
                                 00006ef6   TRNGCC26XX.obj (.text:TRNGCC26XX_getNumber)
                                 0000717e   uart_logs.obj (.text:uartLog_outputFxn)
                                 00007cae   uart_logs.obj (.text:uartLog_flush)
                                 00007eea   RFCC26XX_singleMode.obj (.text:RF_getCurrentTime)
                                 00008238   RFCC26XX_singleMode.obj (.text:decActiveClientCnt$19)
                                 0000851a   drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
                                 0000857e   UARTCC26XX.obj (.text:UARTCC26XX_control)
                                 000087b4   RFCC26XX_singleMode.obj (.text:ratChanFree$19)
                                 00008a8e   RFCC26XX_singleMode.obj (.text:RF_getInfo)
                                 000095e4   RFCC26XX_singleMode.obj (.text:RF_getRssi)
                                 00009a28   RFCC26XX_singleMode.obj (.text:postDirImmCmd$19)
                                 00009bd4   PINCC26XX.obj (.text:PIN_setOutputEnable)
                                 00009fbe   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
                                 00009ffe   RFCC26XX_singleMode.obj (.text:Q_push$19)
                                 0000a006   RFCC26XX_singleMode.obj (.text:Q_push$19)
                                 0000a444   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_releaseConstraint)
                                 0000a474                           : PowerCC26XX.oem3 (.text:Power_setConstraint)
                                 0000ac6e                           : PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
                                 0000ad5e   TRNGCC26XX.obj (.text:TRNGCC26XX_init)
                                 0000b230   drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_unregisterNotify)
                                 0000b582   TRNGCC26XX.obj (.text:TRNGCC26XX_open)
                                 0000b64e   icall.obj (.text:ICall_enterCSImpl)
                                 0000b924   RFCC26XX_singleMode.obj (.text:Q_pop$19)
                                 0000bdf4   icall.obj (.text:ICall_primDisableMInt$26)
                                 0000c158   tirtosport.aem3 : HwiP_tirtos.oem3 (.text:HwiP_disable)
    ti_sysbios_knl_Swi_post__E  $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_post__E
       1001b321     0000c394     00000638   I2CCC26XX.obj (.text:I2CCC26XX_hwiFxn$17)
                                 00000a02   I2CCC26XX.obj (.text:I2CCC26XX_hwiFxn$17)
                                 00001dc6   I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                                 000031b6   I2CCC26XX.obj (.text:I2CCC26XX_swiFxn$17)
                                 00003ca8   UARTCC26XX.obj (.text:UARTCC26XX_hwiIntFxn)
                                 0000bab4   rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Swi_or__E)
                                 0000bc62   app_ble_pem3.oem3 (.text:ti_sysbios_knl_Clock_doTick__I)
    
    [64 trampolines]
    [341 trampoline calls]
    
    
    GLOBAL SYMBOLS: SORTED ALPHABETICALLY BY Name 
    
    address   name                                                                      
    -------   ----                                                                      
    10014c00  A1_rw                                                                     
    10019ffe  A2_rw                                                                     
    10019ffc  A3_rw                                                                     
    20004f2c  A4_rw                                                                     
    20004f7c  ACCX                                                                      
    20004f80  ACCY                                                                      
    20004f84  ACCZ                                                                      
    10015229  ATOMICPATTERN                                                             
    10016c29  AddRoundKeySubBytes_Sw                                                    
    10018a19  AesCcm_authEncrypt_Sw                                                     
    10018a35  AesCcm_decryptAuth_Sw                                                     
    10018b09  AesCcm_getNumBlocks_Sw                                                    
    10018ac5  Aes_decrypt_Sw                                                            
    10018a99  Aes_encrypt_Sw                                                            
    0000bad1  AssertHandler                                                             
    0000ae75  Barometer_getParameter                                                    
    000085b9  Barometer_setParameter                                                    
    0000ab55  Batt_AddService                                                           
    0000b3a5  Batt_MeasLevel                                                            
    0000bb55  Batt_Register                                                             
    0000b6e1  Batt_SetParameter                                                         
    0000df68  BoardGpioInitTable                                                        
    000093c1  C$$EXIT                                                                   
    20004f2c  COMMON_RAM_BASE_ADDR                                                      
    10014c01  COMMON_ROM_BASE_ADDR                                                      
    10015a6d  COPY                                                                      
    00000501  DefaultAssertCback                                                        
    0000bb69  DevInfo_AddService                                                        
    00006a29  DevInfo_SetParameter                                                      
    10017959  ECC_allocWorkzone                                                         
    10017961  ECC_setWin                                                                
    10017969  ECDSA_sign                                                                
    10017b01  ECDSA_verif                                                               
    10015a11  EXPORTOPERAND                                                             
    20004f78  EXPW                                                                      
    20004f6c  EXPX                                                                      
    20004f70  EXPY                                                                      
    20004f74  EXPZ                                                                      
    10016f58  FFMult2                                                                   
    10017058  FFMult3                                                                   
    10016d05  FFMult_Sw                                                                 
    10018d6c  Fill1                                                                     
    00009b15  GAPBondMgr_LinkEst                                                        
    0000ae99  GAPBondMgr_LinkTerm                                                       
    0000a795  GAPBondMgr_Register                                                       
    00009db5  GAPBondMgr_SetParameter                                                   
    00004119  GAPRole_GetParameter                                                      
    00009515  GAPRole_SendUpdateParam                                                   
    000020e5  GAPRole_SetParameter                                                      
    0000b3c1  GAPRole_StartDevice                                                       
    0000b6f9  GAPRole_TerminateConnection                                               
    00009555  GAPRole_createTask                                                        
    00008859  GAP_DeviceInit                                                            
    0000bcb5  GAP_EndDiscoverable                                                       
    00009755  GAP_GetParamValue                                                         
    0000beb1  GAP_MakeDiscoverable                                                      
    00009de9  GAP_SetParamValue                                                         
    0000bebd  GAP_TerminateAuth                                                         
    00009229  GAP_TerminateLinkReq                                                      
    000088a9  GAP_UpdateAdvertisingData                                                 
    0000bec9  GAP_UpdateLinkParamReq                                                    
    0000bed5  GAP_UpdateLinkParamReqReply                                               
    00000481  GATTServApp_AddService                                                    
    0000bc6d  GATTServApp_FindAttr                                                      
    0000b0ad  GATTServApp_InitCharCfg                                                   
    00008f55  GATTServApp_ProcessCCCWriteReq                                            
    00006599  GATTServApp_ProcessCharCfg                                                
    0000bcc5  GATTServApp_ReadCharCfg                                                   
    00009791  GATTServApp_RegisterService                                               
    0000ab7d  GATTServApp_WriteCharCfg                                                  
    0000bdc5  GATT_Indication                                                           
    0000b629  GATT_Notification                                                         
    0000b3dd  GATT_bm_alloc                                                             
    0000b3f9  GATT_bm_free                                                              
    10015141  GETBIT                                                                    
    10015155  GETDIGIT                                                                  
    100151a5  GETDIGITL2R                                                               
    0000c0bd  GGS_AddService                                                            
    0000bee1  GGS_SetParameter                                                          
    20001bf4  HEAPMGR_SIZE                                                              
    0000b0cd  Humidity_getParameter                                                     
    000088f9  Humidity_setParameter                                                     
    0000c159  HwiP_disable                                                              
    UNDEFED   HwiP_restore                                                              
    00006b41  I2CCC26XX_cancel                                                          
    00005085  I2CCC26XX_close                                                           
    0000c0c3  I2CCC26XX_control                                                         
    0000e060  I2CCC26XX_fxnTable                                                        
    0000bff5  I2CCC26XX_init                                                            
    0000295d  I2CCC26XX_open                                                            
    00001c25  I2CCC26XX_transfer                                                        
    0000b711  I2C_Params_init                                                           
    0000bfff  I2C_close                                                                 
    0000e0bc  I2C_config                                                                
    0000e220  I2C_defaultParams                                                         
    00009b4d  I2C_init                                                                  
    0000aebd  I2C_open                                                                  
    0000c009  I2C_transfer                                                              
    000097cd  ICallPlatform_pwrConfigACAction                                           
    0000b729  ICallPlatform_pwrDispense                                                 
    0000bdd3  ICallPlatform_pwrGetTransitionState                                       
    0000bcd5  ICallPlatform_pwrGetXOSCStartupTime                                       
    0000bde1  ICallPlatform_pwrIsStableXOSCHF                                           
    00008bc5  ICallPlatform_pwrRegisterNotify                                           
    0000b741  ICallPlatform_pwrRequire                                                  
    0000c013  ICallPlatform_pwrSwitchXOSCHF                                             
    00007461  ICallPlatform_pwrUpdActivityCounter                                       
    000071f9  ICall_createRemoteTasks                                                   
    20001bd0  ICall_dispatcher                                                          
    0000b643  ICall_enterCSImpl                                                         
    20001bd8  ICall_enterCriticalSection                                                
    0000a7c1  ICall_freeImpl                                                            
    0000a7c1  ICall_heapFree                                                            
    00007869  ICall_heapInit                                                            
    00006de9  ICall_heapMalloc                                                          
    0000aba5  ICall_init                                                                
    0000bafd  ICall_leaveCSImpl                                                         
    20001bdc  ICall_leaveCriticalSection                                                
    0000c0c9  ICall_mallocImpl                                                          
    00009eed  ICall_searchServiceEntity                                                 
    10015a35  IMPORTDATA                                                                
    100159a9  IMPORTLENGTH                                                              
    100159ad  IMPORTMODULUS                                                             
    100159d1  IMPORTOPERAND                                                             
    1001568d  INVERT                                                                    
    0000b18d  IRTemp_getParameter                                                       
    00008999  IRTemp_setParameter                                                       
    10016da1  InvAddRoundKey_Sw                                                         
    10016ed5  InvMixColumns_Sw                                                          
    10016dc9  InvRoundKey_Sw                                                            
    10017264  InvSbox                                                                   
    10016ea1  InvShiftRows_Sw                                                           
    10016e8d  InvSubBytes_Sw                                                            
    0000bb7d  Io_getParameter                                                           
    00009f21  Io_setParameter                                                           
    100154f5  JACADD                                                                    
    20004fe8  LEN                                                                       
    100158ac  LUTC                                                                      
    100158dc  LUTINCI                                                                   
    100158f4  LUTJ                                                                      
    1001588c  LUTOPCODE                                                                 
    10015894  LUTOPSIGN                                                                 
    100158c4  LUTSE                                                                     
    1001596c  LUTSTATE                                                                  
    0000c027  List_empty                                                                
    0000c161  List_head                                                                 
    0000c165  List_next                                                                 
    0000ae4d  List_put                                                                  
    0000b677  List_remove                                                               
    10018825  MB_ClearInts                                                              
    100187f5  MB_DisableInts                                                            
    10018835  MB_EnableHWInts                                                           
    10018799  MB_EnableInts                                                             
    10018945  MB_FwDebugDump                                                            
    10018755  MB_Init                                                                   
    10018935  MB_ReadMailboxStatus                                                      
    1001893d  MB_RegisterIsrCback                                                       
    10018865  MB_SendCommand                                                            
    100188a5  MB_SendCommandSynch                                                       
    20004fe4  MOD                                                                       
    20004fd8  MSBMOD                                                                    
    10016c79  MixColumns_Sw                                                             
    0000a381  Movement_getParameter                                                     
    00008459  Movement_setParameter                                                     
    10018b9c  NIST_Curve_P256_Gx                                                        
    10018bc0  NIST_Curve_P256_Gy                                                        
    10018b54  NIST_Curve_P256_a                                                         
    10018b78  NIST_Curve_P256_b                                                         
    10018b0c  NIST_Curve_P256_p                                                         
    10018b30  NIST_Curve_P256_r                                                         
    0000ac45  NOROM_AONBatMonTemperatureGetDegC                                         
    0000bb91  NOROM_AONRTCCurrent64BitValueGet                                          
    0000b819  NOROM_AONRTCCurrentCompareValueGet                                        
    0000bf29  NOROM_CPUcpsid                                                            
    0000bf35  NOROM_CPUcpsie                                                            
    0000c0cf  NOROM_CPUdelay                                                            
    00008fe9  NOROM_ChipInfo_GetChipFamily                                              
    00007719  NOROM_ChipInfo_GetHwRevision                                              
    0000b831  NOROM_ChipInfo_GetPackageType                                             
    00009595  NOROM_DDI16BitfieldRead                                                   
    00009031  NOROM_DDI16BitfieldWrite                                                  
    0000a8c9  NOROM_DDI32RegWrite                                                       
    0000b469  NOROM_OSCClockSourceGet                                                   
    00008ca9  NOROM_OSCClockSourceSet                                                   
    000080c5  NOROM_OSCHF_AttemptToSwitchToXosc                                         
    00006ab5  NOROM_OSCHF_GetStartupTime                                                
    00009f55  NOROM_OSCHF_SwitchToRcOscTurnOffXosc                                      
    0000b849  NOROM_OSCHF_TurnOnXosc                                                    
    00009809  NOROM_OSC_HPOSCRelativeFrequencyOffsetGet                                 
    00006467  NOROM_RFCAdi3VcoLdoVoltageMode                                            
    0000b861  NOROM_RFCCpeIntGetAndClear                                                
    0000b1ad  NOROM_RFCDoorbellSendTo                                                   
    000073e7  NOROM_RFCRTrim                                                            
    0000b1cd  NOROM_RFCRfTrimRead                                                       
    0000bd05  NOROM_RFCRfTrimSet                                                        
    00009845  NOROM_RFCSynthPowerDown                                                   
    000073e9  NOROM_SetupAfterColdResetWakeupFromShutDownCfg1                           
    00004d11  NOROM_SetupAfterColdResetWakeupFromShutDownCfg2                           
    00003ec1  NOROM_SetupAfterColdResetWakeupFromShutDownCfg3                           
    0000b879  NOROM_SetupGetTrimForAdcShModeEn                                          
    0000b891  NOROM_SetupGetTrimForAdcShVbufEn                                          
    000078d5  NOROM_SetupGetTrimForAmpcompCtrl                                          
    0000b8a9  NOROM_SetupGetTrimForAmpcompTh1                                           
    0000b485  NOROM_SetupGetTrimForAmpcompTh2                                           
    00007bc9  NOROM_SetupGetTrimForAnabypassValue1                                      
    0000b8c1  NOROM_SetupGetTrimForDblrLoopFilterResetVoltage                           
    0000a8f5  NOROM_SetupGetTrimForRadcExtCfg                                           
    0000b8d9  NOROM_SetupGetTrimForRcOscLfIBiasTrim                                     
    0000b4a1  NOROM_SetupGetTrimForRcOscLfRtuneCtuneTrim                                
    0000b1ed  NOROM_SetupGetTrimForXoscHfCtl                                            
    0000bd15  NOROM_SetupGetTrimForXoscHfFastStart                                      
    0000bd25  NOROM_SetupGetTrimForXoscHfIbiastherm                                     
    0000b8f1  NOROM_SetupGetTrimForXoscLfRegulatorAndCmirrwrRatio                       
    0000a3b1  NOROM_SetupSetAonRtcSubSecInc                                             
    000089e9  NOROM_SetupSetCacheModeAccordingToCcfgSetting                             
    0000be27  NOROM_SetupSignExtendVddrTrimValue                                        
    0000614d  NOROM_SetupTrimDevice                                                     
    00008121  NOROM_SysCtrlAdjustRechargeAfterPowerDown                                 
    00002759  NOROM_SysCtrlSetRechargeBeforePowerDown                                   
    00007c31  NOROM_SysCtrl_DCDC_VoltageConditionalControl                              
    00009f89  NOROM_TRNGConfigure                                                       
    0000bba5  NOROM_ThisCodeIsBuiltForCC26xxHwRev22AndLater_HaltIfViolated              
    0000be35  NOROM_VIMSModeGet                                                         
    0000b20d  Optic_getParameter                                                        
    00008a39  Optic_setParameter                                                        
    10014c04  P1_ro                                                                     
    10019ffe  P1_ro_2                                                                   
    20004f40  P2_rw                                                                     
    20004f40  P2_s0                                                                     
    20004fac  P2_zi                                                                     
    0000af29  PINCC26XX_getPinCount                                                     
    0000a921  PINCC26XX_setMux                                                          
    20002f88  PIN_HandleTable                                                           
    20002ef4  PIN_NumPins                                                               
    0000b34b  PIN_close                                                                 
    0000bbb9  PIN_getInputValue                                                         
    0000bbcd  PIN_getOutputValue                                                        
    00003465  PIN_init                                                                  
    00006469  PIN_open                                                                  
    0000c0d5  PIN_registerIntCb                                                         
    000084b1  PIN_remove                                                                
    0000a94d  PIN_setConfig                                                             
    0000a3e1  PIN_setInterrupt                                                          
    00009bbd  PIN_setOutputEnable                                                       
    0000a411  PIN_setOutputValue                                                        
    00007e89  PowerCC26XX_RCOSC_clockFunc                                               
    00007549  PowerCC26XX_auxISR                                                        
    00007941  PowerCC26XX_calibrate                                                     
    0000e230  PowerCC26XX_config                                                        
    000037b5  PowerCC26XX_doCalibrate                                                   
    00006ab5  PowerCC26XX_getXoscStartupTime                                            
    00008509  PowerCC26XX_initiateCalibration                                           
    00009fbd  PowerCC26XX_isStableXOSC_HF                                               
    20001ac0  PowerCC26XX_module                                                        
    00005dc9  PowerCC26XX_standbyPolicy                                                 
    0000ac6d  PowerCC26XX_switchXOSC_HF                                                 
    0000bf41  Power_getConstraintMask                                                   
    0000bf4d  Power_getDependencyCount                                                  
    0000b369  Power_getTransitionLatency                                                
    0000bf59  Power_getTransitionState                                                  
    0000b909  Power_idleFunc                                                            
    00004239  Power_init                                                                
    0000ac95  Power_registerNotify                                                      
    0000a441  Power_releaseConstraint                                                   
    00004fb1  Power_releaseDependency                                                   
    0000a471  Power_setConstraint                                                       
    00005155  Power_setDependency                                                       
    00002321  Power_sleep                                                               
    0000b22d  Power_unregisterNotify                                                    
    10017158  RCon                                                                      
    10018415  RFHAL_AddTxDataEntry                                                      
    100184f9  RFHAL_AllocDataEntry                                                      
    100184a9  RFHAL_AllocDataEntryQueue                                                 
    10018315  RFHAL_AllocRatChan                                                        
    100185e1  RFHAL_BuildDataEntryRingBuffer                                            
    10018669  RFHAL_BuildLinkedBuffer                                                   
    10018551  RFHAL_BuildRingBuffer                                                     
    10018549  RFHAL_FreeDataEntry                                                       
    100184c5  RFHAL_FreeDataEntryQueue                                                  
    10018485  RFHAL_FreeNextTxDataEntry                                                 
    1001833d  RFHAL_FreeRatChan                                                         
    100184cd  RFHAL_GetNextDataEntry                                                    
    100184d1  RFHAL_GetTempDataEntry                                                    
    100183b9  RFHAL_InitDataQueue                                                       
    100182ad  RFHAL_InitRfHal                                                           
    10018369  RFHAL_MapRatChansToInt                                                    
    100184d5  RFHAL_NextDataEntryDone                                                   
    100183c5  RFHAL_QueueRFDataEntries                                                  
    10018391  RFHAL_RegisterRatChanCallback                                             
    0000bbe1  RF_Params_init                                                            
    0000360d  RF_cancelCmd                                                              
    0000c06d  RF_flushCmd                                                               
    0000bc7f  RF_getCmdOp                                                               
    00007ee9  RF_getCurrentTime                                                         
    00008a89  RF_getInfo                                                                
    000095d5  RF_getRssi                                                                
    00005b89  RF_open                                                                   
    00006ff9  RF_pendCmd                                                                
    00003939  RF_postCmd                                                                
    00009881  RF_runCmd                                                                 
    0000b4f5  RF_runDirectCmd                                                           
    0000b511  RF_runImmediateCmd                                                        
    0000bd35  RegisterAssertCback                                                       
    0000a025  Register_getParameter                                                     
    000098bd  Register_setParameter                                                     
    00009339  ResetISR                                                                  
    10016b79  RoundKey_Sw                                                               
    10015101  SAVEPOINT                                                                 
    20004f68  SCAL                                                                      
    100150e5  SCALARMUL                                                                 
    10014ced  SCALARMUL_core                                                            
    10015019  SCALARMUL_final                                                           
    10014c05  SCALARMUL_init                                                            
    10015a51  SETOPERAND                                                                
    10015a91  SETWORD                                                                   
    10018089  SHA256_final                                                              
    10018129  SHA256_full                                                               
    10017ffd  SHA256_init                                                               
    10017ef1  SHA256_nextState                                                          
    10018019  SHA256_process                                                            
    10017e75  SHA256_round                                                              
    10017f49  SHA256_saveBuffer                                                         
    10017e39  SHA256_updateW                                                            
    UNDEFED   SHT$$INIT_ARRAY$$Base                                                     
    UNDEFED   SHT$$INIT_ARRAY$$Limit                                                    
    10015821  SQUAREMULTIPLYWORD                                                        
    10017895  SSP_CCM_Auth_Encrypt_Sw                                                   
    10017365  SSP_CCM_Auth_Sw                                                           
    1001767d  SSP_CCM_Decrypt_Sw                                                        
    100174fd  SSP_CCM_Encrypt_Sw                                                        
    100178f5  SSP_CCM_InvAuth_Decrypt_Sw                                                
    10017839  SSP_CCM_InvAuth_Sw                                                        
    10017771  SSP_CTR_Decrypt_Sw                                                        
    100175ed  SSP_CTR_Encrypt_Sw                                                        
    0000acbd  SafeHapiVoid                                                              
    10017164  Sbox                                                                      
    10015215  SelectReg                                                                 
    0000ace5  SensorBmp280_enable                                                       
    0000bf65  SensorI2C_deselect                                                        
    0000860d  SensorI2C_open                                                            
    0000be43  SensorI2C_readReg                                                         
    00007789  SensorI2C_select                                                          
    00009bf5  SensorI2C_write                                                           
    000098f9  SensorI2C_writeRead                                                       
    0000a979  SensorI2C_writeReg                                                        
    00009935  SensorMpu9250_accReadRange                                                
    000092b1  SensorMpu9250_accSetRange                                                 
    0000a059  SensorMpu9250_enable                                                      
    0000bbf5  SensorMpu9250_powerIsOn                                                   
    0000af4d  SensorMpu9250_powerOff                                                    
    0000a4a1  SensorMpu9250_powerOn                                                     
    000079ad  SensorMpu9250_reset                                                       
    0000817d  SensorMpu9250_test                                                        
    0000a737  SensorOpt3001_enable                                                      
    00008b29  SensorOpt3001_test                                                        
    00002549  SensorS5852A_read                                                         
    00006bc9  SensorTagBar_processCharChangeEvt                                         
    0000a9a5  SensorTagBatt_init                                                        
    0000b52d  SensorTagBatt_processCharChangeEvt                                        
    0000bc09  SensorTagBatt_processSensorEvent                                          
    0000b24d  SensorTagBatt_reset                                                       
    0000ad0d  SensorTagBuzzer_close                                                     
    00009971  SensorTagBuzzer_open                                                      
    000099ad  SensorTagBuzzer_setFrequency                                              
    00007275  SensorTagHum_processCharChangeEvt                                         
    000092f5  SensorTagIO_blinkLed                                                      
    000060a5  SensorTagIO_processCharChangeEvt                                          
    0000555d  SensorTagKeys_processKeyLeft                                              
    00005625  SensorTagKeys_processKeyRight                                             
    0000a08d  SensorTagKeys_processRelay                                                
    00005c49  SensorTagMov_processCharChangeEvt                                         
    0000662d  SensorTagOpt_processCharChangeEvt                                         
    00006c51  SensorTagRegister_processCharChangeEvt                                    
    0000af71  SensorTagRegister_update                                                  
    00007079  SensorTagTmp_processCharChangeEvt                                         
    0000c031  SensorTag_charValueChangeCB                                               
    000099e9  SensorTag_createTask                                                      
    0000bf89  SensorTag_testResult                                                      
    0000b969  SensorTag_updateAdvertisingData                                           
    00009615  SensorTmp007_enable                                                       
    10016c45  ShiftRows_Sw                                                              
    20004f88  TMP1                                                                      
    20004f8c  TMP2                                                                      
    20004f90  TMP3                                                                      
    20004f94  TMP4                                                                      
    20004f98  TMP5                                                                      
    20004f9c  TMP6                                                                      
    0000e278  TRNGCC26XXHWAttrs                                                         
    0000e240  TRNGCC26XX_config                                                         
    00006ef1  TRNGCC26XX_getNumber                                                      
    0000ad5d  TRNGCC26XX_init                                                           
    0000aaab  TRNGCC26XX_isParamValid                                                   
    0000b581  TRNGCC26XX_open                                                           
    00004ed5  UARTCC26XX_close                                                          
    00008561  UARTCC26XX_control                                                        
    0000dfc4  UARTCC26XX_fxnTable                                                       
    00003c0d  UARTCC26XX_hwiIntFxn                                                      
    0000b981  UARTCC26XX_init                                                           
    0000193d  UARTCC26XX_open                                                           
    00002d45  UARTCC26XX_read                                                           
    00004865  UARTCC26XX_readCancel                                                     
    0000c0db  UARTCC26XX_readPolling                                                    
    00005225  UARTCC26XX_swiIntFxn                                                      
    00001e89  UARTCC26XX_write                                                          
    00004355  UARTCC26XX_writeCancel                                                    
    0000c0e1  UARTCC26XX_writePolling                                                   
    0000e0d4  UART_config                                                               
    0000e03c  UART_defaultParams                                                        
    00009c2d  UART_init                                                                 
    0000a4d1  UART_open                                                                 
    0000c045  UART_write                                                                
    0000bf95  UartLog_doInit                                                            
    00008d41  Util_constructClock                                                       
    0000b999  Util_constructQueue                                                       
    0000b691  Util_dequeueMsg                                                           
    0000aad5  Util_enqueueMsg                                                           
    0000bd45  Util_isActive                                                             
    00008661  Util_rescheduleClock                                                      
    00009c65  Util_restartClock                                                         
    0000c171  Util_startClock                                                           
    0000c175  Util_stopClock                                                            
    10015a85  ZERO                                                                      
    00000000  __ASM__                                                                   
    00000098  __ISA__                                                                   
    000000aa  __PLAT__                                                                  
    20004428  __STACK_END                                                               
    00000400  __STACK_SIZE                                                              
    20004428  __STACK_TOP                                                               
    000000d1  __TARG__                                                                  
    0000ecf8  __TI_CINIT_Base                                                           
    0000ed58  __TI_CINIT_Limit                                                          
    0000eca0  __TI_Handler_Table_Base                                                   
    0000ecac  __TI_Handler_Table_Limit                                                  
    000061f1  __TI_auto_init                                                            
    20002530  __TI_cleanup_ptr                                                          
    0000be51  __TI_decompress_none                                                      
    0000c0f3  __TI_decompress_rle24                                                     
    20002534  __TI_dtors_ptr                                                            
    0000e2d0  __TI_static_base__                                                        
    0000bfa1  __TI_zero_init                                                            
    000000f6  __TRDR__                                                                  
    00009199  __aeabi_d2iz                                                              
    00004671  __aeabi_dmul                                                              
    00007bc7  __aeabi_idiv0                                                             
    0000ba59  __aeabi_lmul                                                              
    0000736d  __aeabi_memclr                                                            
    0000736d  __aeabi_memclr4                                                           
    0000736d  __aeabi_memclr8                                                           
    00006331  __aeabi_memcpy                                                            
    00006331  __aeabi_memcpy4                                                           
    00006331  __aeabi_memcpy8                                                           
    0000736f  __aeabi_memset                                                            
    0000736f  __aeabi_memset4                                                           
    0000736f  __aeabi_memset8                                                           
    0000b2ad  __aeabi_ui2d                                                              
    00009655  __aeabi_uidiv                                                             
    00009655  __aeabi_uidivmod                                                          
    00002b51  __aeabi_uldivmod                                                          
    ffffffff  __binit__                                                                 
    ffffffff  __c_args__                                                                
    0001ffa8  __ccfg                                                                    
    10019ffe  __checksum_CommonROM                                                      
    10014c00  __checksum_begin_CommonROM                                                
    10019ffd  __checksum_end_CommonROM                                                  
    0000e0ea  __checksum_value_CommonROM                                                
    10018ced  __exit                                                                    
    20004028  __stack                                                                   
    0000c0e7  __xdc__init                                                               
    20001dc0  __xdc__init__addr                                                         
    0000ba41  _args_main                                                                
    00009339  _c_int00                                                                  
    20002528  _lock                                                                     
    0000bc1d  _nop                                                                      
    0000bc25  _register_lock                                                            
    0000bc1f  _register_unlock                                                          
    2000252c  _unlock                                                                   
    000093c5  abort                                                                     
    2000254c  appAssertCback                                                            
    0000dfb4  appearanceUUID                                                            
    20004fdc  aux64                                                                     
    0000e160  battCBs                                                                   
    0000e276  battLevelUUID                                                             
    0000e274  battServUUID                                                              
    ffffffff  binit                                                                     
    0000dfb0  charAggFormatUUID                                                         
    0000dfaa  charExtPropsUUID                                                          
    0000df9e  charFormatUUID                                                            
    0000dfac  charUserDescUUID                                                          
    0000df9a  characterUUID                                                             
    0000df9c  clientCharCfgUUID                                                         
    00008e71  copy_in                                                                   
    0000e12c  devInfo11073CertUUID                                                      
    0000e188  devInfoCBs                                                                
    0000e124  devInfoFirmwareRevUUID                                                    
    0000e126  devInfoHardwareRevUUID                                                    
    0000e12a  devInfoMfrNameUUID                                                        
    0000e120  devInfoModelNumberUUID                                                    
    0000e12e  devInfoPnpIdUUID                                                          
    0000e122  devInfoSerialNumberUUID                                                   
    0000e11c  devInfoServUUID                                                           
    0000e128  devInfoSoftwareRevUUID                                                    
    0000e11e  devInfoSystemIdUUID                                                       
    0000dfb2  deviceNameUUID                                                            
    0000bb29  driverTable_fnSpinlock                                                    
    20003255  driverlib_release_0_46593                                                 
    10017dbd  eccRom_genKeys                                                            
    10017ded  eccRom_genSharedSecret                                                    
    20004fa0  eccRom_param_Gx                                                           
    20004fa4  eccRom_param_Gy                                                           
    20004f50  eccRom_param_a                                                            
    20004fa8  eccRom_param_b                                                            
    20004f48  eccRom_param_p                                                            
    20004f4c  eccRom_param_r                                                            
    20004f40  eccRom_windowSize                                                         
    20004f44  eccRom_workzone                                                           
    000093cd  exit                                                                      
    0000dfc0  extReportRefUUID                                                          
    20004fcc  fwInfoCmd                                                                 
    200007c0  gapProfileState                                                           
    20000c88  gapRoleTask                                                               
    20000cd8  gapRoleTaskStack                                                          
    0000b9c9  gapRole_clockHandler                                                      
    0000dfa2  gapServiceUUID                                                            
    0000dfa4  gattServiceUUID                                                           
    200007cc  hGpioPin                                                                  
    20004028  heapEnd                                                                   
    2000325b  heapStart                                                                 
    0000e0ec  i2cCC26xxHWAttrs                                                          
    20003004  i2cCC26xxObjects                                                          
    20004f58  inPointX                                                                  
    20004f5c  inPointY                                                                  
    20004f54  inScalar                                                                  
    0000dfa8  includeUUID                                                               
    0000e1b0  ioCBs                                                                     
    0000df58  ioConfUUID                                                                
    0000df48  ioDataUUID                                                                
    0000df38  ioServUUID                                                                
    20002514  lastAppOpcodeSent                                                         
    20000b74  linkDBNumConns                                                            
    00009d0d  linkDB_NumConns                                                           
    10016551  mADD                                                                      
    10015bd5  mINVK                                                                     
    10015f81  mMULT                                                                     
    10016749  mOUT                                                                      
    10015a9d  mSET                                                                      
    1001664d  mSUB                                                                      
    0000a1f5  main                                                                      
    20002550  main_func_sp                                                              
    10018949  mbCmdAckIsr                                                               
    1001895d  mbCpe0Isr                                                                 
    10018985  mbCpe1Isr                                                                 
    100189e5  mbHwIsr                                                                   
    0000b08b  memcmp                                                                    
    00006331  memcpy                                                                    
    00007375  memset                                                                    
    0000b5d5  openTRNG                                                                  
    0000a0c1  osal_snv_read                                                             
    0000a0f5  osal_snv_write                                                            
    20004f60  outPointX                                                                 
    20004f64  outPointY                                                                 
    20004ffc  pSspAesEncrypt_Sw                                                         
    0000dfba  periConnParamUUID                                                         
    0000dfb6  periPrivacyFlagUUID                                                       
    20002518  pfnBMAlloc                                                                
    2000251c  pfnBMFree                                                                 
    200007e8  pinGpioState                                                              
    0000df98  primaryServiceUUID                                                        
    20004fac  ratChanInfo                                                               
    0000dfb8  reconnectAddrUUID                                                         
    0000dfa0  reportRefUUID                                                             
    0000dc28  resourceDB                                                                
    0000dc74  rfDriverTable                                                             
    20002230  rfRegTbl                                                                  
    0000dfa6  secondaryServiceUUID                                                      
    200007c1  selfEntityMain                                                            
    200007c8  sem                                                                       
    0000dfae  servCharCfgUUID                                                           
    0000dfbc  serviceChangedUUID                                                        
    10016d29  sspAesDecrypt_Sw                                                          
    10016af5  sspAesEncryptBasic_Sw                                                     
    10016a99  sspAesEncryptKeyExp_Sw                                                    
    10016979  sspAesEncrypt_Sw                                                          
    10016985  sspKeyExpansion_Sw                                                        
    10016975  ssp_KeyInit_Sw                                                            
    0000bc31  strlen                                                                    
    200001a4  ti_sysbios_BIOS_Module__state__V                                          
    1001bc29  ti_sysbios_BIOS_RtsGateProxy_Handle__label__S                             
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_Handle__label__S__mangled__                  
    1001bab9  ti_sysbios_BIOS_RtsGateProxy_Object__delete__S                            
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_Object__delete__S__mangled__                 
    1001c179  ti_sysbios_BIOS_RtsGateProxy_Params__init__S                              
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_Params__init__S__mangled__                   
    1001c249  ti_sysbios_BIOS_RtsGateProxy_enter__E                                     
    1001c24d  ti_sysbios_BIOS_RtsGateProxy_leave__E                                     
    1001c275  ti_sysbios_BIOS_RtsGateProxy_query__E                                     
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_query__E__mangled__                          
    0000a531  ti_sysbios_BIOS_atExitFunc__I                                             
    0000bb3f  ti_sysbios_BIOS_exitFunc__I                                               
    1001c035  ti_sysbios_BIOS_exit__E                                                   
    1001bff9  ti_sysbios_BIOS_getCpuFreq__E                                             
    0000bfb9  ti_sysbios_BIOS_getThreadType__E                                          
    00007dc7  ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E                         
    00008857  ti_sysbios_BIOS_nullFunc__I                                               
    0000afdd  ti_sysbios_BIOS_registerRTSLock__I                                        
    0000b001  ti_sysbios_BIOS_removeRTSLock__I                                          
    0000b2cd  ti_sysbios_BIOS_rtsLock__I                                                
    0000ba89  ti_sysbios_BIOS_rtsUnlock__I                                              
    1001c045  ti_sysbios_BIOS_setThreadType__E                                          
    0000a561  ti_sysbios_BIOS_startFunc__I                                              
    1001c055  ti_sysbios_BIOS_start__E                                                  
    0000614d  ti_sysbios_family_arm_cc26xx_Boot_trimDevice                              
    00000502  ti_sysbios_family_arm_cc26xx_Timer_Module__id__C                          
    20001cdc  ti_sysbios_family_arm_cc26xx_Timer_Module__root__V                        
    1001bb49  ti_sysbios_family_arm_cc26xx_Timer_Module__startupDone__S                 
    200001e4  ti_sysbios_family_arm_cc26xx_Timer_Module__state__V                       
    1001ba71  ti_sysbios_family_arm_cc26xx_Timer_Module_startup__E                      
    20002318  ti_sysbios_family_arm_cc26xx_Timer_Object__table__V                       
    0000b5f1  ti_sysbios_family_arm_cc26xx_Timer_dynamicStub__E                         
    0000c181  ti_sysbios_family_arm_cc26xx_Timer_getCount64__E                          
    00009d45  ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E                      
    1001c251  ti_sysbios_family_arm_cc26xx_Timer_getExpiredTicks__E                     
    0000add5  ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E                         
    1001c255  ti_sysbios_family_arm_cc26xx_Timer_getPeriod__E                           
    0000a591  ti_sysbios_family_arm_cc26xx_Timer_initDevice__I                          
    1001a469  ti_sysbios_family_arm_cc26xx_Timer_periodicStub__E                        
    1001b769  ti_sysbios_family_arm_cc26xx_Timer_postInit__I                            
    0000a2bd  ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E                         
    1001c259  ti_sysbios_family_arm_cc26xx_Timer_setPeriod__E                           
    0000a5c1  ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I                        
    00007d01  ti_sysbios_family_arm_cc26xx_Timer_start__E                               
    00000484  ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C                       
    1001b795  ti_sysbios_family_arm_cc26xx_Timer_startup__E                             
    200001ec  ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V           
    1001bb69  ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_startup__E          
    0000be97  ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E                   
    1001b9d1  ti_sysbios_family_arm_cc26xx_TimestampProvider_get64__E                   
    1001c12f  ti_sysbios_family_arm_cc26xx_TimestampProvider_getFreq__E                 
    00000504  ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C           
    00000488  ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C                          
    0000048c  ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C                        
    1001aed1  ti_sysbios_family_arm_m3_Hwi_Instance_finalize__E                         
    1001a3c9  ti_sysbios_family_arm_m3_Hwi_Instance_init__E                             
    20001d04  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A                  
    20001d08  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A                 
    20001d0c  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A                   
    00000506  ti_sysbios_family_arm_m3_Hwi_Module__id__C                                
    20001ce4  ti_sysbios_family_arm_m3_Hwi_Module__root__V                              
    1001bb89  ti_sysbios_family_arm_m3_Hwi_Module__startupDone__S                       
    20000144  ti_sysbios_family_arm_m3_Hwi_Module__state__V                             
    1001b1c1  ti_sysbios_family_arm_m3_Hwi_Module_startup__E                            
    00000490  ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C                            
    000002d0  ti_sysbios_family_arm_m3_Hwi_Object__DESC__C                              
    00000170  ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C                            
    00000494  ti_sysbios_family_arm_m3_Hwi_Object__count__C                             
    1001aab1  ti_sysbios_family_arm_m3_Hwi_Object__create__S                            
    1001bba9  ti_sysbios_family_arm_m3_Hwi_Object__delete__S                            
    1001be69  ti_sysbios_family_arm_m3_Hwi_Object__destruct__S                          
    1001b7c1  ti_sysbios_family_arm_m3_Hwi_Object__get__S                               
    00000498  ti_sysbios_family_arm_m3_Hwi_Object__table__C                             
    20001cec  ti_sysbios_family_arm_m3_Hwi_Object__table__V                             
    1001c13d  ti_sysbios_family_arm_m3_Hwi_Params__init__S                              
    0000049c  ti_sysbios_family_arm_m3_Hwi_ccr__C                                       
    1001af29  ti_sysbios_family_arm_m3_Hwi_construct                                    
    1001ab15  ti_sysbios_family_arm_m3_Hwi_create                                       
    1001c25d  ti_sysbios_family_arm_m3_Hwi_delete                                       
    1001c261  ti_sysbios_family_arm_m3_Hwi_destruct                                     
    1001c149  ti_sysbios_family_arm_m3_Hwi_disableFxn__E                                
    1001b299  ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E                          
    1001aa49  ti_sysbios_family_arm_m3_Hwi_dispatchC__I                                 
    200030e4  ti_sysbios_family_arm_m3_Hwi_dispatchTable                                
    1001c89d  ti_sysbios_family_arm_m3_Hwi_dispatch__I                                  
    1001c1fb  ti_sysbios_family_arm_m3_Hwi_doSwiRestore__I                              
    1001c213  ti_sysbios_family_arm_m3_Hwi_doTaskRestore__I                             
    1001c155  ti_sysbios_family_arm_m3_Hwi_enableFxn__E                                 
    1001b2dd  ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E                           
    1001ca01  ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I                             
    000004a0  ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C                            
    1001bbc9  ti_sysbios_family_arm_m3_Hwi_excHandler__I                                
    1001b465  ti_sysbios_family_arm_m3_Hwi_getStackInfo__E                              
    1001a699  ti_sysbios_family_arm_m3_Hwi_initNVIC__E                                  
    1001c9b9  ti_sysbios_family_arm_m3_Hwi_initStacks__E                                
    000004a4  ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C                               
    000004a8  ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C                       
    e000e000  ti_sysbios_family_arm_m3_Hwi_nvic                                         
    1001ca3f  ti_sysbios_family_arm_m3_Hwi_pendSV__I                                    
    1001c065  ti_sysbios_family_arm_m3_Hwi_plug__E                                      
    1001a319  ti_sysbios_family_arm_m3_Hwi_postInit__I                                  
    0000bd65  ti_sysbios_family_arm_m3_Hwi_post__E                                      
    000004ac  ti_sysbios_family_arm_m3_Hwi_priGroup__C                                  
    20000000  ti_sysbios_family_arm_m3_Hwi_ramVectors                                   
    00000000  ti_sysbios_family_arm_m3_Hwi_resetVectors                                 
    1001c219  ti_sysbios_family_arm_m3_Hwi_restoreFxn__E                                
    1001ca57  ti_sysbios_family_arm_m3_Hwi_return                                       
    0000c153  ti_sysbios_family_arm_m3_Hwi_setFunc__E                                   
    1001be85  ti_sysbios_family_arm_m3_Hwi_setPriority__E                               
    1001c203  ti_sysbios_family_arm_m3_Hwi_startup__E                                   
    1001c00d  ti_sysbios_family_arm_m3_Hwi_switchFromBootStack__E                       
    1001c265  ti_sysbios_family_arm_m3_TaskSupport_Module__startupDone__S               
    1001c96d  ti_sysbios_family_arm_m3_TaskSupport_buildTaskStack                       
    1001c161  ti_sysbios_family_arm_m3_TaskSupport_getStackAlignment__E                 
    1001ca59  ti_sysbios_family_arm_m3_TaskSupport_glue                                 
    000004b0  ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C                    
    1001b49d  ti_sysbios_family_arm_m3_TaskSupport_start__E                             
    1001ca69  ti_sysbios_family_arm_m3_TaskSupport_swap__E                              
    1001ca21  ti_sysbios_family_xxx_Hwi_switchAndRunFunc                                
    1001bbe9  ti_sysbios_gates_GateHwi_Handle__label__S                                 
    1001b463  ti_sysbios_gates_GateHwi_Instance_init__E                                 
    0000021c  ti_sysbios_gates_GateHwi_Module__FXNS__C                                  
    00000508  ti_sysbios_gates_GateHwi_Module__id__C                                    
    20001d10  ti_sysbios_gates_GateHwi_Module__root__V                                  
    000002f0  ti_sysbios_gates_GateHwi_Object__DESC__C                                  
    00000430  ti_sysbios_gates_GateHwi_Object__PARAMS__C                                
    1001ba95  ti_sysbios_gates_GateHwi_Object__create__S                                
    1001bc09  ti_sysbios_gates_GateHwi_Object__delete__S                                
    20001d18  ti_sysbios_gates_GateHwi_Object__table__V                                 
    1001c16d  ti_sysbios_gates_GateHwi_enter__E                                         
    1001c21f  ti_sysbios_gates_GateHwi_leave__E                                         
    1001c269  ti_sysbios_gates_GateHwi_query__E                                         
    1001bc29  ti_sysbios_gates_GateMutex_Handle__label__S                               
    000005cc  ti_sysbios_gates_GateMutex_Instance_State_sem__O                          
    1001c075  ti_sysbios_gates_GateMutex_Instance_finalize__E                           
    1001bea1  ti_sysbios_gates_GateMutex_Instance_init__E                               
    00000240  ti_sysbios_gates_GateMutex_Module__FXNS__C                                
    0000050a  ti_sysbios_gates_GateMutex_Module__id__C                                  
    20001d1c  ti_sysbios_gates_GateMutex_Module__root__V                                
    00000310  ti_sysbios_gates_GateMutex_Object__DESC__C                                
    00000448  ti_sysbios_gates_GateMutex_Object__PARAMS__C                              
    1001b649  ti_sysbios_gates_GateMutex_Object__create__S                              
    1001bab9  ti_sysbios_gates_GateMutex_Object__delete__S                              
    1001bc49  ti_sysbios_gates_GateMutex_Object__destruct__S                            
    20002360  ti_sysbios_gates_GateMutex_Object__table__V                               
    1001c179  ti_sysbios_gates_GateMutex_Params__init__S                                
    1001b7ed  ti_sysbios_gates_GateMutex_construct                                      
    1001b679  ti_sysbios_gates_GateMutex_create                                         
    1001c26d  ti_sysbios_gates_GateMutex_delete                                         
    1001c271  ti_sysbios_gates_GateMutex_destruct                                       
    1001b6a9  ti_sysbios_gates_GateMutex_enter__E                                       
    1001bf9d  ti_sysbios_gates_GateMutex_leave__E                                       
    1001c275  ti_sysbios_gates_GateMutex_query__E                                       
    1001c279  ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S                        
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S__mangled__             
    1001c085  ti_sysbios_hal_Hwi_HwiProxy_Object__create__S                             
    1001bba9  ti_sysbios_hal_Hwi_HwiProxy_Object__delete__S                             
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_Object__delete__S__mangled__                  
    1001c13d  ti_sysbios_hal_Hwi_HwiProxy_Params__init__S                               
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_Params__init__S__mangled__                    
    1001be49  ti_sysbios_hal_Hwi_HwiProxy_create                                        
    1001c27d  ti_sysbios_hal_Hwi_HwiProxy_delete                                        
    1001c281  ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E                           
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E__mangled__                
    1001c285  ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E                            
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E__mangled__                 
    1001c289  ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E                               
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E__mangled__                    
    0000bd65  ti_sysbios_hal_Hwi_HwiProxy_post__E                                       
    1001c28d  ti_sysbios_hal_Hwi_HwiProxy_startup__E                                    
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_startup__E__mangled__                         
    1001c291  ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E                        
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E__mangled__             
    1001c1f1  ti_sysbios_hal_Hwi_Instance_finalize__E                                   
    1001b9f9  ti_sysbios_hal_Hwi_Instance_init__E                                       
    20001d24  ti_sysbios_hal_Hwi_Module__root__V                                        
    1001c021  ti_sysbios_hal_Hwi_Module_startup__E                                      
    00000330  ti_sysbios_hal_Hwi_Object__DESC__C                                        
    000001a0  ti_sysbios_hal_Hwi_Object__PARAMS__C                                      
    1001bc69  ti_sysbios_hal_Hwi_Object__delete__S                                      
    0000bfc5  ti_sysbios_hal_Hwi_Params__init__S                                        
    1001ab79  ti_sysbios_hal_Hwi_create                                                 
    1001c295  ti_sysbios_hal_Hwi_delete                                                 
    1001c281  ti_sysbios_hal_Hwi_disableInterrupt__E                                    
    UNDEFED   ti_sysbios_hal_Hwi_disableInterrupt__E                                    
    1001c285  ti_sysbios_hal_Hwi_enableInterrupt__E                                     
    UNDEFED   ti_sysbios_hal_Hwi_enableInterrupt__E                                     
    1001c289  ti_sysbios_hal_Hwi_getStackInfo__E                                        
    UNDEFED   ti_sysbios_hal_Hwi_getStackInfo__E                                        
    1001b819  ti_sysbios_hal_Hwi_initStack                                              
    0000bd65  ti_sysbios_hal_Hwi_post__E                                                
    1001c28d  ti_sysbios_hal_Hwi_startup__E                                             
    UNDEFED   ti_sysbios_hal_Hwi_startup__E                                             
    1001c299  ti_sysbios_hal_Hwi_switchFromBootStack__E                                 
    UNDEFED   ti_sysbios_hal_Hwi_switchFromBootStack__E                                 
    000004b4  ti_sysbios_heaps_HeapMem_E_memory__C                                      
    1001bc89  ti_sysbios_heaps_HeapMem_Handle__label__S                                 
    20002560  ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A                          
    1001b4d5  ti_sysbios_heaps_HeapMem_Instance_init__E                                 
    1001bc29  ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S                
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S__mangled__     
    1001bab9  ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__delete__S               
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__delete__S__mangled__    
    1001c179  ti_sysbios_heaps_HeapMem_Module_GateProxy_Params__init__S                 
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_Params__init__S__mangled__      
    1001c29d  ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E                        
    1001c2a1  ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E                        
    1001c275  ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E                        
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E__mangled__             
    000001cc  ti_sysbios_heaps_HeapMem_Module__FXNS__C                                  
    000004b8  ti_sysbios_heaps_HeapMem_Module__gateObj__C                               
    0000050c  ti_sysbios_heaps_HeapMem_Module__id__C                                    
    20001d2c  ti_sysbios_heaps_HeapMem_Module__root__V                                  
    00000350  ti_sysbios_heaps_HeapMem_Object__DESC__C                                  
    00000264  ti_sysbios_heaps_HeapMem_Object__PARAMS__C                                
    000004bc  ti_sysbios_heaps_HeapMem_Object__count__C                                 
    1001b845  ti_sysbios_heaps_HeapMem_Object__create__S                                
    1001bca9  ti_sysbios_heaps_HeapMem_Object__delete__S                                
    1001b871  ti_sysbios_heaps_HeapMem_Object__get__S                                   
    000004c0  ti_sysbios_heaps_HeapMem_Object__table__C                                 
    20001d34  ti_sysbios_heaps_HeapMem_Object__table__V                                 
    1001a199  ti_sysbios_heaps_HeapMem_alloc__E                                         
    1001a795  ti_sysbios_heaps_HeapMem_free__E                                          
    1001b209  ti_sysbios_heaps_HeapMem_getStats__E                                      
    1001b545  ti_sysbios_heaps_HeapMem_init__I                                          
    1001c2a5  ti_sysbios_heaps_HeapMem_isBlocking__E                                    
    000004c4  ti_sysbios_heaps_HeapMem_reqAlign__C                                      
    1001c105  ti_sysbios_heaps_HeapMem_restore__E                                       
    1001bfcd  ti_sysbios_knl_Clock_Instance_finalize__E                                 
    1001b50d  ti_sysbios_knl_Clock_Instance_init__E                                     
    000005d0  ti_sysbios_knl_Clock_Module_State_clockQ__O                               
    20001d4c  ti_sysbios_knl_Clock_Module__root__V                                      
    20000178  ti_sysbios_knl_Clock_Module__state__V                                     
    1001bcc9  ti_sysbios_knl_Clock_Module_startup__E                                    
    00000370  ti_sysbios_knl_Clock_Object__DESC__C                                      
    00000288  ti_sysbios_knl_Clock_Object__PARAMS__C                                    
    1001badd  ti_sysbios_knl_Clock_Object__delete__S                                    
    1001bce9  ti_sysbios_knl_Clock_Object__destruct__S                                  
    20001d54  ti_sysbios_knl_Clock_Object__table__V                                     
    1001c185  ti_sysbios_knl_Clock_Params__init__S                                      
    1001c2a9  ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S                    
    UNDEFED   ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S__mangled__         
    1001c095  ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E                         
    1001c2ad  ti_sysbios_knl_Clock_TimerProxy_getExpiredTicks__E                        
    1001c0a5  ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E                            
    1001c2b1  ti_sysbios_knl_Clock_TimerProxy_getPeriod__E                              
    1001c0b5  ti_sysbios_knl_Clock_TimerProxy_setNextTick__E                            
    1001b795  ti_sysbios_knl_Clock_TimerProxy_startup__E                                
    UNDEFED   ti_sysbios_knl_Clock_TimerProxy_startup__E__mangled__                     
    1001ba21  ti_sysbios_knl_Clock_addI__E                                              
    1001b579  ti_sysbios_knl_Clock_construct                                            
    1001b3ed  ti_sysbios_knl_Clock_create                                               
    1001c2b5  ti_sysbios_knl_Clock_delete                                               
    1001c2b9  ti_sysbios_knl_Clock_destruct                                             
    0000bc59  ti_sysbios_knl_Clock_doTick__I                                            
    0000a9fd  ti_sysbios_knl_Clock_getTicksUntilInterrupt__E                            
    1001b6d9  ti_sysbios_knl_Clock_getTicks__E                                          
    1001c191  ti_sysbios_knl_Clock_getTimerHandle__E                                    
    0000c185  ti_sysbios_knl_Clock_isActive__E                                          
    1001be67  ti_sysbios_knl_Clock_logTick__E                                           
    1001c2bd  ti_sysbios_knl_Clock_removeI__E                                           
    1001bebd  ti_sysbios_knl_Clock_scheduleNextTick__E                                  
    000004c8  ti_sysbios_knl_Clock_serviceMargin__C                                     
    0000c189  ti_sysbios_knl_Clock_setPeriod__E                                         
    1001c2c1  ti_sysbios_knl_Clock_setTimeout__E                                        
    1001a719  ti_sysbios_knl_Clock_startI__E                                            
    1001bfe3  ti_sysbios_knl_Clock_start__E                                             
    0000b2ed  ti_sysbios_knl_Clock_stop__E                                              
    00000510  ti_sysbios_knl_Clock_tickMode__C                                          
    0000e280  ti_sysbios_knl_Clock_tickPeriod__C                                        
    0000e284  ti_sysbios_knl_Clock_triggerClock__C                                      
    00008f9f  ti_sysbios_knl_Clock_triggerFunc__I                                       
    1001a80d  ti_sysbios_knl_Clock_walkQueueDynamic__E                                  
    00006501  ti_sysbios_knl_Clock_workFuncDynamic__E                                   
    1001a885  ti_sysbios_knl_Clock_workFunc__E                                          
    20001d74  ti_sysbios_knl_Event_Module__root__V                                      
    0000e26c  ti_sysbios_knl_Idle_funcList__A                                           
    00000478  ti_sysbios_knl_Idle_funcList__C                                           
    1001c20b  ti_sysbios_knl_Idle_loop__E                                               
    1001bd09  ti_sysbios_knl_Idle_run__E                                                
    000005d4  ti_sysbios_knl_Mailbox_Instance_State_dataQue__O                          
    000005d8  ti_sysbios_knl_Mailbox_Instance_State_dataSem__O                          
    000005dc  ti_sysbios_knl_Mailbox_Instance_State_freeQue__O                          
    000005e0  ti_sysbios_knl_Mailbox_Instance_State_freeSem__O                          
    1001a9dd  ti_sysbios_knl_Mailbox_Instance_finalize__E                               
    1001a001  ti_sysbios_knl_Mailbox_Instance_init__E                                   
    20001d7c  ti_sysbios_knl_Mailbox_Module__root__V                                    
    1001b251  ti_sysbios_knl_Mailbox_Module_startup__E                                  
    00000390  ti_sysbios_knl_Mailbox_Object__DESC__C                                    
    0000013c  ti_sysbios_knl_Mailbox_Object__PARAMS__C                                  
    000004cc  ti_sysbios_knl_Mailbox_Object__count__C                                   
    1001bd29  ti_sysbios_knl_Mailbox_Object__delete__S                                  
    1001bed9  ti_sysbios_knl_Mailbox_Object__destruct__S                                
    1001b89d  ti_sysbios_knl_Mailbox_Object__get__S                                     
    000004d0  ti_sysbios_knl_Mailbox_Object__table__C                                   
    1001c19d  ti_sysbios_knl_Mailbox_Params__init__S                                    
    1001af81  ti_sysbios_knl_Mailbox_construct                                          
    1001abdd  ti_sysbios_knl_Mailbox_create                                             
    1001c2c5  ti_sysbios_knl_Mailbox_delete                                             
    1001c2c9  ti_sysbios_knl_Mailbox_destruct                                           
    1001a8fd  ti_sysbios_knl_Mailbox_pend__E                                            
    1001b8c9  ti_sysbios_knl_Mailbox_postInit__I                                        
    1001a591  ti_sysbios_knl_Mailbox_post__E                                            
    1001c22b  ti_sysbios_knl_Queue_Instance_init__E                                     
    20001d84  ti_sysbios_knl_Queue_Module__root__V                                      
    000003b0  ti_sysbios_knl_Queue_Object__DESC__C                                      
    00000460  ti_sysbios_knl_Queue_Object__PARAMS__C                                    
    000004d4  ti_sysbios_knl_Queue_Object__count__C                                     
    1001bd49  ti_sysbios_knl_Queue_Object__delete__S                                    
    1001bef5  ti_sysbios_knl_Queue_Object__destruct__S                                  
    1001bd69  ti_sysbios_knl_Queue_Object__get__S                                       
    000004d8  ti_sysbios_knl_Queue_Object__table__C                                     
    1001b8f5  ti_sysbios_knl_Queue_construct                                            
    1001b921  ti_sysbios_knl_Queue_create                                               
    1001c2cd  ti_sysbios_knl_Queue_delete                                               
    1001c1a9  ti_sysbios_knl_Queue_dequeue__E                                           
    1001c2d1  ti_sysbios_knl_Queue_destruct                                             
    1001c231  ti_sysbios_knl_Queue_elemClear__E                                         
    1001c113  ti_sysbios_knl_Queue_empty__E                                             
    1001c1b5  ti_sysbios_knl_Queue_enqueue__E                                           
    1001bf11  ti_sysbios_knl_Queue_get__E                                               
    1001c2d5  ti_sysbios_knl_Queue_head__E                                              
    0000c18d  ti_sysbios_knl_Queue_insert__E                                            
    1001c2d9  ti_sysbios_knl_Queue_next__E                                              
    1001bf2d  ti_sysbios_knl_Queue_put__E                                               
    1001c121  ti_sysbios_knl_Queue_remove__E                                            
    000005e4  ti_sysbios_knl_Semaphore_Instance_State_pendQ__O                          
    1001c0c5  ti_sysbios_knl_Semaphore_Instance_finalize__E                             
    1001bb01  ti_sysbios_knl_Semaphore_Instance_init__E                                 
    20001d8c  ti_sysbios_knl_Semaphore_Module__root__V                                  
    000003d0  ti_sysbios_knl_Semaphore_Object__DESC__C                                  
    000002ac  ti_sysbios_knl_Semaphore_Object__PARAMS__C                                
    1001bb25  ti_sysbios_knl_Semaphore_Object__delete__S                                
    1001bd89  ti_sysbios_knl_Semaphore_Object__destruct__S                              
    1001c1c1  ti_sysbios_knl_Semaphore_Params__init__S                                  
    1001b709  ti_sysbios_knl_Semaphore_construct                                        
    1001b5ad  ti_sysbios_knl_Semaphore_create                                           
    1001c2dd  ti_sysbios_knl_Semaphore_delete                                           
    1001c2e1  ti_sysbios_knl_Semaphore_destruct                                         
    1001b94d  ti_sysbios_knl_Semaphore_pendTimeout__I                                   
    1001a0cd  ti_sysbios_knl_Semaphore_pend__E                                          
    1001ac41  ti_sysbios_knl_Semaphore_post__E                                          
    1001bf9b  ti_sysbios_knl_Swi_Instance_finalize__E                                   
    1001aca5  ti_sysbios_knl_Swi_Instance_init__E                                       
    200023fc  ti_sysbios_knl_Swi_Module_State_0_readyQ__A                               
    20001d94  ti_sysbios_knl_Swi_Module__root__V                                        
    200001c8  ti_sysbios_knl_Swi_Module__state__V                                       
    1001c237  ti_sysbios_knl_Swi_Module_startup__E                                      
    000003f0  ti_sysbios_knl_Swi_Object__DESC__C                                        
    000001f4  ti_sysbios_knl_Swi_Object__PARAMS__C                                      
    000004dc  ti_sysbios_knl_Swi_Object__count__C                                       
    1001bda9  ti_sysbios_knl_Swi_Object__delete__S                                      
    1001bf49  ti_sysbios_knl_Swi_Object__destruct__S                                    
    1001b979  ti_sysbios_knl_Swi_Object__get__S                                         
    000004e0  ti_sysbios_knl_Swi_Object__table__C                                       
    2000242c  ti_sysbios_knl_Swi_Object__table__V                                       
    1001c1cd  ti_sysbios_knl_Swi_Params__init__S                                        
    1001b085  ti_sysbios_knl_Swi_construct                                              
    1001ad05  ti_sysbios_knl_Swi_create                                                 
    1001c2e5  ti_sysbios_knl_Swi_delete                                                 
    1001c2e9  ti_sysbios_knl_Swi_destruct                                               
    1001c0d5  ti_sysbios_knl_Swi_disable__E                                             
    1001c0e5  ti_sysbios_knl_Swi_enabled__E                                             
    0000bfd1  ti_sysbios_knl_Swi_getTrigger__E                                          
    000004e4  ti_sysbios_knl_Swi_numPriorities__C                                       
    0000baa1  ti_sysbios_knl_Swi_or__E                                                  
    1001c2ed  ti_sysbios_knl_Swi_postInit__I                                            
    1001b321  ti_sysbios_knl_Swi_post__E                                                
    1001ad61  ti_sysbios_knl_Swi_restoreHwi__E                                          
    1001b5e1  ti_sysbios_knl_Swi_restore__E                                             
    1001b0d5  ti_sysbios_knl_Swi_runLoop__I                                             
    1001afd9  ti_sysbios_knl_Swi_run__I                                                 
    1001b031  ti_sysbios_knl_Swi_schedule__I                                            
    1001c23d  ti_sysbios_knl_Swi_startup__E                                             
    20002be0  ti_sysbios_knl_Task_Instance_State_0_stack__A                             
    1001a4fd  ti_sysbios_knl_Task_Instance_finalize__E                                  
    1001a25d  ti_sysbios_knl_Task_Instance_init__E                                      
    20001da4  ti_sysbios_knl_Task_Module_State_0_idleTask__A                            
    2000245c  ti_sysbios_knl_Task_Module_State_0_readyQ__A                              
    000005e8  ti_sysbios_knl_Task_Module_State_inactiveQ__O                             
    20001d9c  ti_sysbios_knl_Task_Module__root__V                                       
    20000100  ti_sysbios_knl_Task_Module__state__V                                      
    1001adbd  ti_sysbios_knl_Task_Module_startup__E                                     
    00000410  ti_sysbios_knl_Task_Object__DESC__C                                       
    00000100  ti_sysbios_knl_Task_Object__PARAMS__C                                     
    000004e8  ti_sysbios_knl_Task_Object__count__C                                      
    1001bdc9  ti_sysbios_knl_Task_Object__delete__S                                     
    1001bf65  ti_sysbios_knl_Task_Object__destruct__S                                   
    1001bde9  ti_sysbios_knl_Task_Object__get__S                                        
    000004ec  ti_sysbios_knl_Task_Object__table__C                                      
    200022cc  ti_sysbios_knl_Task_Object__table__V                                      
    1001c1d9  ti_sysbios_knl_Task_Params__init__S                                       
    1001c2f1  ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S                   
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S__mangled__        
    1001c2f5  ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E                     
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E__mangled__          
    1001c2f9  ti_sysbios_knl_Task_SupportProxy_start__E                                 
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_start__E__mangled__                      
    1001c2fd  ti_sysbios_knl_Task_SupportProxy_swap__E                                  
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_swap__E__mangled__                       
    000004f0  ti_sysbios_knl_Task_allBlockedFunc__C                                     
    1001b365  ti_sysbios_knl_Task_allBlockedFunction__I                                 
    1001b615  ti_sysbios_knl_Task_blockI__E                                             
    1001b125  ti_sysbios_knl_Task_construct                                             
    1001ae19  ti_sysbios_knl_Task_create                                                
    000004f4  ti_sysbios_knl_Task_defaultStackHeap__C                                   
    000004f8  ti_sysbios_knl_Task_defaultStackSize__C                                   
    1001c301  ti_sysbios_knl_Task_delete                                                
    1001c305  ti_sysbios_knl_Task_destruct                                              
    1001c0f5  ti_sysbios_knl_Task_disable__E                                            
    1001c243  ti_sysbios_knl_Task_enable__E                                             
    1001be09  ti_sysbios_knl_Task_enter__I                                              
    1001b429  ti_sysbios_knl_Task_exit__E                                               
    0000050e  ti_sysbios_knl_Task_initStackFlag__C                                      
    000004fc  ti_sysbios_knl_Task_numConstructedTasks__C                                
    1001a615  ti_sysbios_knl_Task_postInit__I                                           
    1001b739  ti_sysbios_knl_Task_processVitalTaskFlag__I                               
    1001be29  ti_sysbios_knl_Task_restoreHwi__E                                         
    1001ba49  ti_sysbios_knl_Task_restore__E                                            
    1001b175  ti_sysbios_knl_Task_schedule__I                                           
    1001c1e5  ti_sysbios_knl_Task_self__E                                               
    00006291  ti_sysbios_knl_Task_setPri__E                                             
    1001bf81  ti_sysbios_knl_Task_sleepTimeout__I                                       
    1001a96d  ti_sysbios_knl_Task_sleep__E                                              
    1001ae75  ti_sysbios_knl_Task_startCore__E                                          
    1001c309  ti_sysbios_knl_Task_startup__E                                            
    1001ca71  ti_sysbios_knl_Task_swapReturn                                            
    1001b9a5  ti_sysbios_knl_Task_unblockI__E                                           
    1001bfb5  ti_sysbios_knl_Task_unblock__E                                            
    1001b3a9  ti_sysbios_knl_Task_yield__E                                              
    00000590  ti_sysbios_rom_ROM_AONRTCChannelEnable                                    
    00000594  ti_sysbios_rom_ROM_AONRTCCompareValueSet                                  
    00000598  ti_sysbios_rom_ROM_AONRTCCurrentCompareValueGet                           
    0000059c  ti_sysbios_rom_ROM_AONRTCEventClear                                       
    000005a0  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E       
    000005a4  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E   
    000005a8  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E      
    000005ac  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_initDevice__I       
    000005b0  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E      
    000005b4  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I     
    000005b8  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_start__E            
    000005bc  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E
    000005c0  ti_sysbios_rom_ROM_xdc_runtime_Startup_getState__I                        
    000005c4  ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_abort__E               
    000005c8  ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_exit__E                
    00009513  ti_sysbios_rom_cortexm_cc26xx_CC26xx_badRomRevision__E                    
    0000bab9  ti_sysbios_rom_cortexm_cc26xx_CC26xx_checkRevision__E                     
    1001ca9b  ti_sysbios_rom_cortexm_cc26xx_CC26xx_getRevision__E                       
    20003250  trngCC26XXObjects                                                         
    0000e174  trngDriverTable                                                           
    0000e014  txPowerTable                                                              
    0000e16c  txPwrTbl                                                                  
    0000e104  uartCC26XXHWAttrs                                                         
    20002de0  uartCC26XXObjects                                                         
    200002c0  uartLog_evBuf                                                             
    2000020a  uartLog_evBufIsEmpty                                                      
    2000020c  uartLog_evtNum                                                            
    00007c99  uartLog_flush                                                             
    20000209  uartLog_head                                                              
    20000214  uartLog_outBuf                                                            
    00007179  uartLog_outputFxn                                                         
    20000208  uartLog_tail                                                              
    2000248c  user0Cfg                                                                  
    0000aa29  utilExtractUuid16                                                         
    0000dfbe  validRangeUUID                                                            
    00000524  xdc_runtime_Assert_E_assertFailed__C                                      
    1001c5a9  xdc_runtime_Assert_raise__I                                               
    1001c6ed  xdc_runtime_Core_assignLabel__I                                           
    1001c5f1  xdc_runtime_Core_assignParams__I                                          
    1001c639  xdc_runtime_Core_constructObject__I                                       
    1001c405  xdc_runtime_Core_createObject__I                                          
    1001c4f9  xdc_runtime_Core_deleteObject__I                                          
    1001c7a1  xdc_runtime_Core_destructObject__I                                        
    00000528  xdc_runtime_Error_E_memory__C                                             
    1001c7b9  xdc_runtime_Error_check__E                                                
    1001c841  xdc_runtime_Error_init__E                                                 
    0000052c  xdc_runtime_Error_policyFxn__C                                            
    1001c487  xdc_runtime_Error_policySpin__E                                           
    0000058c  xdc_runtime_Error_policy__C                                               
    1001c769  xdc_runtime_Error_raiseX__E                                               
    1001c885  xdc_runtime_Gate_enterSystem__E                                           
    1001c879  xdc_runtime_Gate_leaveSystem__E                                           
    00000530  xdc_runtime_IGateProvider_Interface__BASE__C                              
    00000534  xdc_runtime_IHeap_Interface__BASE__C                                      
    0000e288  xdc_runtime_ILogger_Interface__BASE__C                                    
    00000538  xdc_runtime_IModule_Interface__BASE__C                                    
    0000e28c  xdc_runtime_Log_L_info__C                                                 
    0000e290  xdc_runtime_Log_L_warning__C                                              
    0000b60d  xdc_runtime_LoggerCallback_Instance_init__E                               
    0000df04  xdc_runtime_LoggerCallback_Module__FXNS__C                                
    20001da8  xdc_runtime_LoggerCallback_Module__root__V                                
    00009715  xdc_runtime_LoggerCallback_Module_startup__E                              
    0000e080  xdc_runtime_LoggerCallback_Object__DESC__C                                
    0000e0a0  xdc_runtime_LoggerCallback_Object__PARAMS__C                              
    0000e294  xdc_runtime_LoggerCallback_Object__count__C                               
    0000a5f1  xdc_runtime_LoggerCallback_Object__create__S                              
    0000bd85  xdc_runtime_LoggerCallback_Object__get__S                                 
    20001db0  xdc_runtime_LoggerCallback_Object__table__V                               
    0000e298  xdc_runtime_LoggerCallback_createInstFxn__C                               
    0000c191  xdc_runtime_LoggerCallback_defaultCreate                                  
    0000c04f  xdc_runtime_LoggerCallback_disable__E                                     
    0000c059  xdc_runtime_LoggerCallback_enable__E                                      
    0000e29c  xdc_runtime_LoggerCallback_outputFxn__C                                   
    0000adfd  xdc_runtime_LoggerCallback_write0__E                                      
    0000ae25  xdc_runtime_LoggerCallback_write1__E                                      
    0000aa55  xdc_runtime_LoggerCallback_write2__E                                      
    0000a15d  xdc_runtime_LoggerCallback_write4__E                                      
    00009449  xdc_runtime_LoggerCallback_write8__E                                      
    UNDEFED   xdc_runtime_Main_Module_GateProxy_Handle__label__S                        
    UNDEFED   xdc_runtime_Main_Module_GateProxy_Object__delete__S                       
    UNDEFED   xdc_runtime_Main_Module_GateProxy_query__E                                
    0000053c  xdc_runtime_Main_Module__diagsEnabled__C                                  
    00000540  xdc_runtime_Main_Module__diagsIncluded__C                                 
    00000544  xdc_runtime_Main_Module__diagsMask__C                                     
    00000584  xdc_runtime_Main_Module__id__C                                            
    0000e2c6  xdc_runtime_Main_Module__loggerDefined__C                                 
    0000e2a0  xdc_runtime_Main_Module__loggerFxn2__C                                    
    0000e2a4  xdc_runtime_Main_Module__loggerFxn4__C                                    
    0000e2a8  xdc_runtime_Main_Module__loggerFxn8__C                                    
    0000e2ac  xdc_runtime_Main_Module__loggerObj__C                                     
    1001bc89  xdc_runtime_Memory_HeapProxy_Handle__label__S                             
    UNDEFED   xdc_runtime_Memory_HeapProxy_Handle__label__S__mangled__                  
    1001bca9  xdc_runtime_Memory_HeapProxy_Object__delete__S                            
    UNDEFED   xdc_runtime_Memory_HeapProxy_Object__delete__S__mangled__                 
    1001c889  xdc_runtime_Memory_HeapProxy_alloc__E                                     
    1001c88d  xdc_runtime_Memory_HeapProxy_free__E                                      
    00000586  xdc_runtime_Memory_Module__id__C                                          
    20000200  xdc_runtime_Memory_Module__state__V                                       
    1001c489  xdc_runtime_Memory_alloc__E                                               
    1001c84d  xdc_runtime_Memory_calloc__E                                              
    00000548  xdc_runtime_Memory_defaultHeapInstance__C                                 
    1001c801  xdc_runtime_Memory_free__E                                                
    1001c859  xdc_runtime_Memory_getMaxDefaultTypeAlign__E                              
    1001c785  xdc_runtime_Memory_valloc__E                                              
    20002540  xdc_runtime_Registry_Module__state__V                                     
    0000b30d  xdc_runtime_Registry_findById__E                                          
    200001f0  xdc_runtime_Startup_Module__state__V                                      
    00000001  xdc_runtime_Startup__EXECFXN__C                                           
    00000001  xdc_runtime_Startup__RESETFXN__C                                          
    0000054c  xdc_runtime_Startup_execImpl__C                                           
    1001c559  xdc_runtime_Startup_exec__E                                               
    0000bc91  xdc_runtime_Startup_exec__I                                               
    0000e260  xdc_runtime_Startup_firstFxns__A                                          
    00000514  xdc_runtime_Startup_firstFxns__C                                          
    000082ed  xdc_runtime_Startup_getState__I                                           
    0000051c  xdc_runtime_Startup_lastFxns__C                                           
    00000550  xdc_runtime_Startup_maxPasses__C                                          
    0000bfdd  xdc_runtime_Startup_reset__I                                              
    0000bfe9  xdc_runtime_Startup_rtsDone__E                                            
    0000e20c  xdc_runtime_Startup_sfxnRts__A                                            
    00000554  xdc_runtime_Startup_sfxnRts__C                                            
    0000dfec  xdc_runtime_Startup_sfxnTab__A                                            
    00000558  xdc_runtime_Startup_sfxnTab__C                                            
    0000055c  xdc_runtime_Startup_startModsFxn__C                                       
    1001c30d  xdc_runtime_Startup_startMods__I                                          
    00000560  xdc_runtime_SysCallback_abortFxn__C                                       
    1001c811  xdc_runtime_SysCallback_abort__E                                          
    00009db3  xdc_runtime_SysCallback_defaultAbort                                      
    0000a31f  xdc_runtime_SysCallback_defaultExit                                       
    0000a793  xdc_runtime_SysCallback_defaultPutch                                      
    0000c195  xdc_runtime_SysCallback_defaultReady                                      
    00000564  xdc_runtime_SysCallback_exitFxn__C                                        
    1001c821  xdc_runtime_SysCallback_exit__E                                           
    0000e2b0  xdc_runtime_SysCallback_putchFxn__C                                       
    0000bd95  xdc_runtime_SysCallback_putch__E                                          
    0000e2b4  xdc_runtime_SysCallback_readyFxn__C                                       
    0000bda5  xdc_runtime_SysCallback_ready__E                                          
    1001bbe9  xdc_runtime_System_Module_GateProxy_Handle__label__S                      
    UNDEFED   xdc_runtime_System_Module_GateProxy_Handle__label__S__mangled__           
    1001bc09  xdc_runtime_System_Module_GateProxy_Object__delete__S                     
    UNDEFED   xdc_runtime_System_Module_GateProxy_Object__delete__S__mangled__          
    1001c891  xdc_runtime_System_Module_GateProxy_enter__E                              
    1001c895  xdc_runtime_System_Module_GateProxy_leave__E                              
    1001c269  xdc_runtime_System_Module_GateProxy_query__E                              
    UNDEFED   xdc_runtime_System_Module_GateProxy_query__E__mangled__                   
    200001f8  xdc_runtime_System_Module__state__V                                       
    1001c87f  xdc_runtime_System_Module_startup__E                                      
    UNDEFED   xdc_runtime_System_SupportProxy_abort__E                                  
    UNDEFED   xdc_runtime_System_SupportProxy_exit__E                                   
    0000bd95  xdc_runtime_System_SupportProxy_putch__E                                  
    0000bda5  xdc_runtime_System_SupportProxy_ready__E                                  
    00000568  xdc_runtime_System_abortFxn__C                                            
    1001c899  xdc_runtime_System_abortSpin__E                                           
    000093c5  xdc_runtime_System_abortStd__E                                            
    1001c749  xdc_runtime_System_abort__E                                               
    1001c681  xdc_runtime_System_atexit__E                                              
    00001009  xdc_runtime_System_doPrint__I                                             
    0000056c  xdc_runtime_System_exitFxn__C                                             
    1001c89b  xdc_runtime_System_exitSpin__E                                            
    000093cd  xdc_runtime_System_exitStd__E                                             
    1001c7d1  xdc_runtime_System_exit__E                                                
    0000e2b8  xdc_runtime_System_extendFxn__C                                           
    000077f9  xdc_runtime_System_formatNum__I                                           
    00000570  xdc_runtime_System_maxAtexitHandlers__C                                   
    0000476d  xdc_runtime_System_printfExtend__I                                        
    1001c6b9  xdc_runtime_System_processAtExit__E                                       
    0000ab29  xdc_runtime_System_putchar__I                                             
    0000b6c5  xdc_runtime_System_snprintf__E                                            
    0000c199  xdc_runtime_System_snprintf_va__F                                         
    0000bdb5  xdc_runtime_System_vsnprintf__E                                           
    00000588  xdc_runtime_Text_charCnt__C                                               
    0000c39c  xdc_runtime_Text_charTab__A                                               
    00000574  xdc_runtime_Text_charTab__C                                               
    1001c71d  xdc_runtime_Text_cordText__E                                              
    0000058a  xdc_runtime_Text_isLoaded__C                                              
    00000578  xdc_runtime_Text_nameEmpty__C                                             
    0000057c  xdc_runtime_Text_nameStatic__C                                            
    00000580  xdc_runtime_Text_nameUnknown__C                                           
    0000e250  xdc_runtime_Text_nodeTab__A                                               
    0000e2bc  xdc_runtime_Text_nodeTab__C                                               
    0000a621  xdc_runtime_Text_printVisFxn__I                                           
    00008349  xdc_runtime_Text_putLab__E                                                
    00006755  xdc_runtime_Text_putMod__E                                                
    000063cd  xdc_runtime_Text_putSite__E                                               
    0000e2c8  xdc_runtime_Text_registryModsLastId__C                                    
    1001c7e9  xdc_runtime_Text_ropeText__E                                              
    0000e2ca  xdc_runtime_Text_unnamedModsLastId__C                                     
    00008f09  xdc_runtime_Text_visitRope2__I                                            
    0000e2c0  xdc_runtime_Text_visitRopeFxn__C                                          
    0000c063  xdc_runtime_Text_visitRope__I                                             
    0000948d  xdc_runtime_Text_xprintf__I                                               
    1001c831  xdc_runtime_Timestamp_SupportProxy_get32__E                               
    0000be97  xdc_runtime_Timestamp_SupportProxy_get32__E__mangled__                    
    1001b9d1  xdc_runtime_Timestamp_SupportProxy_get64__E                               
    UNDEFED   xdc_runtime_Timestamp_SupportProxy_get64__E__mangled__                    
    1001c12f  xdc_runtime_Timestamp_SupportProxy_getFreq__E                             
    UNDEFED   xdc_runtime_Timestamp_SupportProxy_getFreq__E__mangled__                  
    1001c831  xdc_runtime_Timestamp_get32__E                                            
    UNDEFED   xdc_runtime_Timestamp_get32__E                                            
    1001b9d1  xdc_runtime_Timestamp_get64__E                                            
    UNDEFED   xdc_runtime_Timestamp_get64__E                                            
    1001c12f  xdc_runtime_Timestamp_getFreq__E                                          
    UNDEFED   xdc_runtime_Timestamp_getFreq__E                                          
    10015d19  zADD                                                                      
    10015eb5  zADD32                                                                    
    10015de9  zMACC32                                                                   
    10015f0d  zMULT32                                                                   
    10015bcd  zSET                                                                      
    10015d5d  zSUB                                                                      
    10015e69  zSUB32                                                                    
    
    
    GLOBAL SYMBOLS: SORTED BY Symbol Address 
    
    address   name                                                                      
    -------   ----                                                                      
    00000000  __ASM__                                                                   
    00000000  ti_sysbios_family_arm_m3_Hwi_resetVectors                                 
    00000001  xdc_runtime_Startup__EXECFXN__C                                           
    00000001  xdc_runtime_Startup__RESETFXN__C                                          
    00000098  __ISA__                                                                   
    000000aa  __PLAT__                                                                  
    000000d1  __TARG__                                                                  
    000000f6  __TRDR__                                                                  
    00000100  ti_sysbios_knl_Task_Object__PARAMS__C                                     
    0000013c  ti_sysbios_knl_Mailbox_Object__PARAMS__C                                  
    00000170  ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C                            
    000001a0  ti_sysbios_hal_Hwi_Object__PARAMS__C                                      
    000001cc  ti_sysbios_heaps_HeapMem_Module__FXNS__C                                  
    000001f4  ti_sysbios_knl_Swi_Object__PARAMS__C                                      
    0000021c  ti_sysbios_gates_GateHwi_Module__FXNS__C                                  
    00000240  ti_sysbios_gates_GateMutex_Module__FXNS__C                                
    00000264  ti_sysbios_heaps_HeapMem_Object__PARAMS__C                                
    00000288  ti_sysbios_knl_Clock_Object__PARAMS__C                                    
    000002ac  ti_sysbios_knl_Semaphore_Object__PARAMS__C                                
    000002d0  ti_sysbios_family_arm_m3_Hwi_Object__DESC__C                              
    000002f0  ti_sysbios_gates_GateHwi_Object__DESC__C                                  
    00000310  ti_sysbios_gates_GateMutex_Object__DESC__C                                
    00000330  ti_sysbios_hal_Hwi_Object__DESC__C                                        
    00000350  ti_sysbios_heaps_HeapMem_Object__DESC__C                                  
    00000370  ti_sysbios_knl_Clock_Object__DESC__C                                      
    00000390  ti_sysbios_knl_Mailbox_Object__DESC__C                                    
    000003b0  ti_sysbios_knl_Queue_Object__DESC__C                                      
    000003d0  ti_sysbios_knl_Semaphore_Object__DESC__C                                  
    000003f0  ti_sysbios_knl_Swi_Object__DESC__C                                        
    00000400  __STACK_SIZE                                                              
    00000410  ti_sysbios_knl_Task_Object__DESC__C                                       
    00000430  ti_sysbios_gates_GateHwi_Object__PARAMS__C                                
    00000448  ti_sysbios_gates_GateMutex_Object__PARAMS__C                              
    00000460  ti_sysbios_knl_Queue_Object__PARAMS__C                                    
    00000478  ti_sysbios_knl_Idle_funcList__C                                           
    00000481  GATTServApp_AddService                                                    
    00000484  ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C                       
    00000488  ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C                          
    0000048c  ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C                        
    00000490  ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C                            
    00000494  ti_sysbios_family_arm_m3_Hwi_Object__count__C                             
    00000498  ti_sysbios_family_arm_m3_Hwi_Object__table__C                             
    0000049c  ti_sysbios_family_arm_m3_Hwi_ccr__C                                       
    000004a0  ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C                            
    000004a4  ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C                               
    000004a8  ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C                       
    000004ac  ti_sysbios_family_arm_m3_Hwi_priGroup__C                                  
    000004b0  ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C                    
    000004b4  ti_sysbios_heaps_HeapMem_E_memory__C                                      
    000004b8  ti_sysbios_heaps_HeapMem_Module__gateObj__C                               
    000004bc  ti_sysbios_heaps_HeapMem_Object__count__C                                 
    000004c0  ti_sysbios_heaps_HeapMem_Object__table__C                                 
    000004c4  ti_sysbios_heaps_HeapMem_reqAlign__C                                      
    000004c8  ti_sysbios_knl_Clock_serviceMargin__C                                     
    000004cc  ti_sysbios_knl_Mailbox_Object__count__C                                   
    000004d0  ti_sysbios_knl_Mailbox_Object__table__C                                   
    000004d4  ti_sysbios_knl_Queue_Object__count__C                                     
    000004d8  ti_sysbios_knl_Queue_Object__table__C                                     
    000004dc  ti_sysbios_knl_Swi_Object__count__C                                       
    000004e0  ti_sysbios_knl_Swi_Object__table__C                                       
    000004e4  ti_sysbios_knl_Swi_numPriorities__C                                       
    000004e8  ti_sysbios_knl_Task_Object__count__C                                      
    000004ec  ti_sysbios_knl_Task_Object__table__C                                      
    000004f0  ti_sysbios_knl_Task_allBlockedFunc__C                                     
    000004f4  ti_sysbios_knl_Task_defaultStackHeap__C                                   
    000004f8  ti_sysbios_knl_Task_defaultStackSize__C                                   
    000004fc  ti_sysbios_knl_Task_numConstructedTasks__C                                
    00000501  DefaultAssertCback                                                        
    00000502  ti_sysbios_family_arm_cc26xx_Timer_Module__id__C                          
    00000504  ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C           
    00000506  ti_sysbios_family_arm_m3_Hwi_Module__id__C                                
    00000508  ti_sysbios_gates_GateHwi_Module__id__C                                    
    0000050a  ti_sysbios_gates_GateMutex_Module__id__C                                  
    0000050c  ti_sysbios_heaps_HeapMem_Module__id__C                                    
    0000050e  ti_sysbios_knl_Task_initStackFlag__C                                      
    00000510  ti_sysbios_knl_Clock_tickMode__C                                          
    00000514  xdc_runtime_Startup_firstFxns__C                                          
    0000051c  xdc_runtime_Startup_lastFxns__C                                           
    00000524  xdc_runtime_Assert_E_assertFailed__C                                      
    00000528  xdc_runtime_Error_E_memory__C                                             
    0000052c  xdc_runtime_Error_policyFxn__C                                            
    00000530  xdc_runtime_IGateProvider_Interface__BASE__C                              
    00000534  xdc_runtime_IHeap_Interface__BASE__C                                      
    00000538  xdc_runtime_IModule_Interface__BASE__C                                    
    0000053c  xdc_runtime_Main_Module__diagsEnabled__C                                  
    00000540  xdc_runtime_Main_Module__diagsIncluded__C                                 
    00000544  xdc_runtime_Main_Module__diagsMask__C                                     
    00000548  xdc_runtime_Memory_defaultHeapInstance__C                                 
    0000054c  xdc_runtime_Startup_execImpl__C                                           
    00000550  xdc_runtime_Startup_maxPasses__C                                          
    00000554  xdc_runtime_Startup_sfxnRts__C                                            
    00000558  xdc_runtime_Startup_sfxnTab__C                                            
    0000055c  xdc_runtime_Startup_startModsFxn__C                                       
    00000560  xdc_runtime_SysCallback_abortFxn__C                                       
    00000564  xdc_runtime_SysCallback_exitFxn__C                                        
    00000568  xdc_runtime_System_abortFxn__C                                            
    0000056c  xdc_runtime_System_exitFxn__C                                             
    00000570  xdc_runtime_System_maxAtexitHandlers__C                                   
    00000574  xdc_runtime_Text_charTab__C                                               
    00000578  xdc_runtime_Text_nameEmpty__C                                             
    0000057c  xdc_runtime_Text_nameStatic__C                                            
    00000580  xdc_runtime_Text_nameUnknown__C                                           
    00000584  xdc_runtime_Main_Module__id__C                                            
    00000586  xdc_runtime_Memory_Module__id__C                                          
    00000588  xdc_runtime_Text_charCnt__C                                               
    0000058a  xdc_runtime_Text_isLoaded__C                                              
    0000058c  xdc_runtime_Error_policy__C                                               
    00000590  ti_sysbios_rom_ROM_AONRTCChannelEnable                                    
    00000594  ti_sysbios_rom_ROM_AONRTCCompareValueSet                                  
    00000598  ti_sysbios_rom_ROM_AONRTCCurrentCompareValueGet                           
    0000059c  ti_sysbios_rom_ROM_AONRTCEventClear                                       
    000005a0  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E       
    000005a4  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E   
    000005a8  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E      
    000005ac  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_initDevice__I       
    000005b0  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E      
    000005b4  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I     
    000005b8  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_start__E            
    000005bc  ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E
    000005c0  ti_sysbios_rom_ROM_xdc_runtime_Startup_getState__I                        
    000005c4  ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_abort__E               
    000005c8  ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_exit__E                
    000005cc  ti_sysbios_gates_GateMutex_Instance_State_sem__O                          
    000005d0  ti_sysbios_knl_Clock_Module_State_clockQ__O                               
    000005d4  ti_sysbios_knl_Mailbox_Instance_State_dataQue__O                          
    000005d8  ti_sysbios_knl_Mailbox_Instance_State_dataSem__O                          
    000005dc  ti_sysbios_knl_Mailbox_Instance_State_freeQue__O                          
    000005e0  ti_sysbios_knl_Mailbox_Instance_State_freeSem__O                          
    000005e4  ti_sysbios_knl_Semaphore_Instance_State_pendQ__O                          
    000005e8  ti_sysbios_knl_Task_Module_State_inactiveQ__O                             
    00001009  xdc_runtime_System_doPrint__I                                             
    0000193d  UARTCC26XX_open                                                           
    00001c25  I2CCC26XX_transfer                                                        
    00001e89  UARTCC26XX_write                                                          
    000020e5  GAPRole_SetParameter                                                      
    00002321  Power_sleep                                                               
    00002549  SensorS5852A_read                                                         
    00002759  NOROM_SysCtrlSetRechargeBeforePowerDown                                   
    0000295d  I2CCC26XX_open                                                            
    00002b51  __aeabi_uldivmod                                                          
    00002d45  UARTCC26XX_read                                                           
    00003465  PIN_init                                                                  
    0000360d  RF_cancelCmd                                                              
    000037b5  PowerCC26XX_doCalibrate                                                   
    00003939  RF_postCmd                                                                
    00003c0d  UARTCC26XX_hwiIntFxn                                                      
    00003ec1  NOROM_SetupAfterColdResetWakeupFromShutDownCfg3                           
    00004119  GAPRole_GetParameter                                                      
    00004239  Power_init                                                                
    00004355  UARTCC26XX_writeCancel                                                    
    00004671  __aeabi_dmul                                                              
    0000476d  xdc_runtime_System_printfExtend__I                                        
    00004865  UARTCC26XX_readCancel                                                     
    00004d11  NOROM_SetupAfterColdResetWakeupFromShutDownCfg2                           
    00004ed5  UARTCC26XX_close                                                          
    00004fb1  Power_releaseDependency                                                   
    00005085  I2CCC26XX_close                                                           
    00005155  Power_setDependency                                                       
    00005225  UARTCC26XX_swiIntFxn                                                      
    0000555d  SensorTagKeys_processKeyLeft                                              
    00005625  SensorTagKeys_processKeyRight                                             
    00005b89  RF_open                                                                   
    00005c49  SensorTagMov_processCharChangeEvt                                         
    00005dc9  PowerCC26XX_standbyPolicy                                                 
    000060a5  SensorTagIO_processCharChangeEvt                                          
    0000614d  NOROM_SetupTrimDevice                                                     
    0000614d  ti_sysbios_family_arm_cc26xx_Boot_trimDevice                              
    000061f1  __TI_auto_init                                                            
    00006291  ti_sysbios_knl_Task_setPri__E                                             
    00006331  __aeabi_memcpy                                                            
    00006331  __aeabi_memcpy4                                                           
    00006331  __aeabi_memcpy8                                                           
    00006331  memcpy                                                                    
    000063cd  xdc_runtime_Text_putSite__E                                               
    00006467  NOROM_RFCAdi3VcoLdoVoltageMode                                            
    00006469  PIN_open                                                                  
    00006501  ti_sysbios_knl_Clock_workFuncDynamic__E                                   
    00006599  GATTServApp_ProcessCharCfg                                                
    0000662d  SensorTagOpt_processCharChangeEvt                                         
    00006755  xdc_runtime_Text_putMod__E                                                
    00006a29  DevInfo_SetParameter                                                      
    00006ab5  NOROM_OSCHF_GetStartupTime                                                
    00006ab5  PowerCC26XX_getXoscStartupTime                                            
    00006b41  I2CCC26XX_cancel                                                          
    00006bc9  SensorTagBar_processCharChangeEvt                                         
    00006c51  SensorTagRegister_processCharChangeEvt                                    
    00006de9  ICall_heapMalloc                                                          
    00006ef1  TRNGCC26XX_getNumber                                                      
    00006ff9  RF_pendCmd                                                                
    00007079  SensorTagTmp_processCharChangeEvt                                         
    00007179  uartLog_outputFxn                                                         
    000071f9  ICall_createRemoteTasks                                                   
    00007275  SensorTagHum_processCharChangeEvt                                         
    0000736d  __aeabi_memclr                                                            
    0000736d  __aeabi_memclr4                                                           
    0000736d  __aeabi_memclr8                                                           
    0000736f  __aeabi_memset                                                            
    0000736f  __aeabi_memset4                                                           
    0000736f  __aeabi_memset8                                                           
    00007375  memset                                                                    
    000073e7  NOROM_RFCRTrim                                                            
    000073e9  NOROM_SetupAfterColdResetWakeupFromShutDownCfg1                           
    00007461  ICallPlatform_pwrUpdActivityCounter                                       
    00007549  PowerCC26XX_auxISR                                                        
    00007719  NOROM_ChipInfo_GetHwRevision                                              
    00007789  SensorI2C_select                                                          
    000077f9  xdc_runtime_System_formatNum__I                                           
    00007869  ICall_heapInit                                                            
    000078d5  NOROM_SetupGetTrimForAmpcompCtrl                                          
    00007941  PowerCC26XX_calibrate                                                     
    000079ad  SensorMpu9250_reset                                                       
    00007bc7  __aeabi_idiv0                                                             
    00007bc9  NOROM_SetupGetTrimForAnabypassValue1                                      
    00007c31  NOROM_SysCtrl_DCDC_VoltageConditionalControl                              
    00007c99  uartLog_flush                                                             
    00007d01  ti_sysbios_family_arm_cc26xx_Timer_start__E                               
    00007dc7  ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E                         
    00007e89  PowerCC26XX_RCOSC_clockFunc                                               
    00007ee9  RF_getCurrentTime                                                         
    000080c5  NOROM_OSCHF_AttemptToSwitchToXosc                                         
    00008121  NOROM_SysCtrlAdjustRechargeAfterPowerDown                                 
    0000817d  SensorMpu9250_test                                                        
    000082ed  xdc_runtime_Startup_getState__I                                           
    00008349  xdc_runtime_Text_putLab__E                                                
    00008459  Movement_setParameter                                                     
    000084b1  PIN_remove                                                                
    00008509  PowerCC26XX_initiateCalibration                                           
    00008561  UARTCC26XX_control                                                        
    000085b9  Barometer_setParameter                                                    
    0000860d  SensorI2C_open                                                            
    00008661  Util_rescheduleClock                                                      
    00008857  ti_sysbios_BIOS_nullFunc__I                                               
    00008859  GAP_DeviceInit                                                            
    000088a9  GAP_UpdateAdvertisingData                                                 
    000088f9  Humidity_setParameter                                                     
    00008999  IRTemp_setParameter                                                       
    000089e9  NOROM_SetupSetCacheModeAccordingToCcfgSetting                             
    00008a39  Optic_setParameter                                                        
    00008a89  RF_getInfo                                                                
    00008b29  SensorOpt3001_test                                                        
    00008bc5  ICallPlatform_pwrRegisterNotify                                           
    00008ca9  NOROM_OSCClockSourceSet                                                   
    00008d41  Util_constructClock                                                       
    00008e71  copy_in                                                                   
    00008f09  xdc_runtime_Text_visitRope2__I                                            
    00008f55  GATTServApp_ProcessCCCWriteReq                                            
    00008f9f  ti_sysbios_knl_Clock_triggerFunc__I                                       
    00008fe9  NOROM_ChipInfo_GetChipFamily                                              
    00009031  NOROM_DDI16BitfieldWrite                                                  
    00009199  __aeabi_d2iz                                                              
    00009229  GAP_TerminateLinkReq                                                      
    000092b1  SensorMpu9250_accSetRange                                                 
    000092f5  SensorTagIO_blinkLed                                                      
    00009339  ResetISR                                                                  
    00009339  _c_int00                                                                  
    000093c1  C$$EXIT                                                                   
    000093c5  abort                                                                     
    000093c5  xdc_runtime_System_abortStd__E                                            
    000093cd  exit                                                                      
    000093cd  xdc_runtime_System_exitStd__E                                             
    00009449  xdc_runtime_LoggerCallback_write8__E                                      
    0000948d  xdc_runtime_Text_xprintf__I                                               
    00009513  ti_sysbios_rom_cortexm_cc26xx_CC26xx_badRomRevision__E                    
    00009515  GAPRole_SendUpdateParam                                                   
    00009555  GAPRole_createTask                                                        
    00009595  NOROM_DDI16BitfieldRead                                                   
    000095d5  RF_getRssi                                                                
    00009615  SensorTmp007_enable                                                       
    00009655  __aeabi_uidiv                                                             
    00009655  __aeabi_uidivmod                                                          
    00009715  xdc_runtime_LoggerCallback_Module_startup__E                              
    00009755  GAP_GetParamValue                                                         
    00009791  GATTServApp_RegisterService                                               
    000097cd  ICallPlatform_pwrConfigACAction                                           
    00009809  NOROM_OSC_HPOSCRelativeFrequencyOffsetGet                                 
    00009845  NOROM_RFCSynthPowerDown                                                   
    00009881  RF_runCmd                                                                 
    000098bd  Register_setParameter                                                     
    000098f9  SensorI2C_writeRead                                                       
    00009935  SensorMpu9250_accReadRange                                                
    00009971  SensorTagBuzzer_open                                                      
    000099ad  SensorTagBuzzer_setFrequency                                              
    000099e9  SensorTag_createTask                                                      
    00009b15  GAPBondMgr_LinkEst                                                        
    00009b4d  I2C_init                                                                  
    00009bbd  PIN_setOutputEnable                                                       
    00009bf5  SensorI2C_write                                                           
    00009c2d  UART_init                                                                 
    00009c65  Util_restartClock                                                         
    00009d0d  linkDB_NumConns                                                           
    00009d45  ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E                      
    00009db3  xdc_runtime_SysCallback_defaultAbort                                      
    00009db5  GAPBondMgr_SetParameter                                                   
    00009de9  GAP_SetParamValue                                                         
    00009eed  ICall_searchServiceEntity                                                 
    00009f21  Io_setParameter                                                           
    00009f55  NOROM_OSCHF_SwitchToRcOscTurnOffXosc                                      
    00009f89  NOROM_TRNGConfigure                                                       
    00009fbd  PowerCC26XX_isStableXOSC_HF                                               
    0000a025  Register_getParameter                                                     
    0000a059  SensorMpu9250_enable                                                      
    0000a08d  SensorTagKeys_processRelay                                                
    0000a0c1  osal_snv_read                                                             
    0000a0f5  osal_snv_write                                                            
    0000a15d  xdc_runtime_LoggerCallback_write4__E                                      
    0000a1f5  main                                                                      
    0000a2bd  ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E                         
    0000a31f  xdc_runtime_SysCallback_defaultExit                                       
    0000a381  Movement_getParameter                                                     
    0000a3b1  NOROM_SetupSetAonRtcSubSecInc                                             
    0000a3e1  PIN_setInterrupt                                                          
    0000a411  PIN_setOutputValue                                                        
    0000a441  Power_releaseConstraint                                                   
    0000a471  Power_setConstraint                                                       
    0000a4a1  SensorMpu9250_powerOn                                                     
    0000a4d1  UART_open                                                                 
    0000a531  ti_sysbios_BIOS_atExitFunc__I                                             
    0000a561  ti_sysbios_BIOS_startFunc__I                                              
    0000a591  ti_sysbios_family_arm_cc26xx_Timer_initDevice__I                          
    0000a5c1  ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I                        
    0000a5f1  xdc_runtime_LoggerCallback_Object__create__S                              
    0000a621  xdc_runtime_Text_printVisFxn__I                                           
    0000a737  SensorOpt3001_enable                                                      
    0000a793  xdc_runtime_SysCallback_defaultPutch                                      
    0000a795  GAPBondMgr_Register                                                       
    0000a7c1  ICall_freeImpl                                                            
    0000a7c1  ICall_heapFree                                                            
    0000a8c9  NOROM_DDI32RegWrite                                                       
    0000a8f5  NOROM_SetupGetTrimForRadcExtCfg                                           
    0000a921  PINCC26XX_setMux                                                          
    0000a94d  PIN_setConfig                                                             
    0000a979  SensorI2C_writeReg                                                        
    0000a9a5  SensorTagBatt_init                                                        
    0000a9fd  ti_sysbios_knl_Clock_getTicksUntilInterrupt__E                            
    0000aa29  utilExtractUuid16                                                         
    0000aa55  xdc_runtime_LoggerCallback_write2__E                                      
    0000aaab  TRNGCC26XX_isParamValid                                                   
    0000aad5  Util_enqueueMsg                                                           
    0000ab29  xdc_runtime_System_putchar__I                                             
    0000ab55  Batt_AddService                                                           
    0000ab7d  GATTServApp_WriteCharCfg                                                  
    0000aba5  ICall_init                                                                
    0000ac45  NOROM_AONBatMonTemperatureGetDegC                                         
    0000ac6d  PowerCC26XX_switchXOSC_HF                                                 
    0000ac95  Power_registerNotify                                                      
    0000acbd  SafeHapiVoid                                                              
    0000ace5  SensorBmp280_enable                                                       
    0000ad0d  SensorTagBuzzer_close                                                     
    0000ad5d  TRNGCC26XX_init                                                           
    0000add5  ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E                         
    0000adfd  xdc_runtime_LoggerCallback_write0__E                                      
    0000ae25  xdc_runtime_LoggerCallback_write1__E                                      
    0000ae4d  List_put                                                                  
    0000ae75  Barometer_getParameter                                                    
    0000ae99  GAPBondMgr_LinkTerm                                                       
    0000aebd  I2C_open                                                                  
    0000af29  PINCC26XX_getPinCount                                                     
    0000af4d  SensorMpu9250_powerOff                                                    
    0000af71  SensorTagRegister_update                                                  
    0000afdd  ti_sysbios_BIOS_registerRTSLock__I                                        
    0000b001  ti_sysbios_BIOS_removeRTSLock__I                                          
    0000b08b  memcmp                                                                    
    0000b0ad  GATTServApp_InitCharCfg                                                   
    0000b0cd  Humidity_getParameter                                                     
    0000b18d  IRTemp_getParameter                                                       
    0000b1ad  NOROM_RFCDoorbellSendTo                                                   
    0000b1cd  NOROM_RFCRfTrimRead                                                       
    0000b1ed  NOROM_SetupGetTrimForXoscHfCtl                                            
    0000b20d  Optic_getParameter                                                        
    0000b22d  Power_unregisterNotify                                                    
    0000b24d  SensorTagBatt_reset                                                       
    0000b2ad  __aeabi_ui2d                                                              
    0000b2cd  ti_sysbios_BIOS_rtsLock__I                                                
    0000b2ed  ti_sysbios_knl_Clock_stop__E                                              
    0000b30d  xdc_runtime_Registry_findById__E                                          
    0000b34b  PIN_close                                                                 
    0000b369  Power_getTransitionLatency                                                
    0000b3a5  Batt_MeasLevel                                                            
    0000b3c1  GAPRole_StartDevice                                                       
    0000b3dd  GATT_bm_alloc                                                             
    0000b3f9  GATT_bm_free                                                              
    0000b469  NOROM_OSCClockSourceGet                                                   
    0000b485  NOROM_SetupGetTrimForAmpcompTh2                                           
    0000b4a1  NOROM_SetupGetTrimForRcOscLfRtuneCtuneTrim                                
    0000b4f5  RF_runDirectCmd                                                           
    0000b511  RF_runImmediateCmd                                                        
    0000b52d  SensorTagBatt_processCharChangeEvt                                        
    0000b581  TRNGCC26XX_open                                                           
    0000b5d5  openTRNG                                                                  
    0000b5f1  ti_sysbios_family_arm_cc26xx_Timer_dynamicStub__E                         
    0000b60d  xdc_runtime_LoggerCallback_Instance_init__E                               
    0000b629  GATT_Notification                                                         
    0000b643  ICall_enterCSImpl                                                         
    0000b677  List_remove                                                               
    0000b691  Util_dequeueMsg                                                           
    0000b6c5  xdc_runtime_System_snprintf__E                                            
    0000b6e1  Batt_SetParameter                                                         
    0000b6f9  GAPRole_TerminateConnection                                               
    0000b711  I2C_Params_init                                                           
    0000b729  ICallPlatform_pwrDispense                                                 
    0000b741  ICallPlatform_pwrRequire                                                  
    0000b819  NOROM_AONRTCCurrentCompareValueGet                                        
    0000b831  NOROM_ChipInfo_GetPackageType                                             
    0000b849  NOROM_OSCHF_TurnOnXosc                                                    
    0000b861  NOROM_RFCCpeIntGetAndClear                                                
    0000b879  NOROM_SetupGetTrimForAdcShModeEn                                          
    0000b891  NOROM_SetupGetTrimForAdcShVbufEn                                          
    0000b8a9  NOROM_SetupGetTrimForAmpcompTh1                                           
    0000b8c1  NOROM_SetupGetTrimForDblrLoopFilterResetVoltage                           
    0000b8d9  NOROM_SetupGetTrimForRcOscLfIBiasTrim                                     
    0000b8f1  NOROM_SetupGetTrimForXoscLfRegulatorAndCmirrwrRatio                       
    0000b909  Power_idleFunc                                                            
    0000b969  SensorTag_updateAdvertisingData                                           
    0000b981  UARTCC26XX_init                                                           
    0000b999  Util_constructQueue                                                       
    0000b9c9  gapRole_clockHandler                                                      
    0000ba41  _args_main                                                                
    0000ba59  __aeabi_lmul                                                              
    0000ba89  ti_sysbios_BIOS_rtsUnlock__I                                              
    0000baa1  ti_sysbios_knl_Swi_or__E                                                  
    0000bab9  ti_sysbios_rom_cortexm_cc26xx_CC26xx_checkRevision__E                     
    0000bad1  AssertHandler                                                             
    0000bafd  ICall_leaveCSImpl                                                         
    0000bb29  driverTable_fnSpinlock                                                    
    0000bb3f  ti_sysbios_BIOS_exitFunc__I                                               
    0000bb55  Batt_Register                                                             
    0000bb69  DevInfo_AddService                                                        
    0000bb7d  Io_getParameter                                                           
    0000bb91  NOROM_AONRTCCurrent64BitValueGet                                          
    0000bba5  NOROM_ThisCodeIsBuiltForCC26xxHwRev22AndLater_HaltIfViolated              
    0000bbb9  PIN_getInputValue                                                         
    0000bbcd  PIN_getOutputValue                                                        
    0000bbe1  RF_Params_init                                                            
    0000bbf5  SensorMpu9250_powerIsOn                                                   
    0000bc09  SensorTagBatt_processSensorEvent                                          
    0000bc1d  _nop                                                                      
    0000bc1f  _register_unlock                                                          
    0000bc25  _register_lock                                                            
    0000bc31  strlen                                                                    
    0000bc59  ti_sysbios_knl_Clock_doTick__I                                            
    0000bc6d  GATTServApp_FindAttr                                                      
    0000bc7f  RF_getCmdOp                                                               
    0000bc91  xdc_runtime_Startup_exec__I                                               
    0000bcb5  GAP_EndDiscoverable                                                       
    0000bcc5  GATTServApp_ReadCharCfg                                                   
    0000bcd5  ICallPlatform_pwrGetXOSCStartupTime                                       
    0000bd05  NOROM_RFCRfTrimSet                                                        
    0000bd15  NOROM_SetupGetTrimForXoscHfFastStart                                      
    0000bd25  NOROM_SetupGetTrimForXoscHfIbiastherm                                     
    0000bd35  RegisterAssertCback                                                       
    0000bd45  Util_isActive                                                             
    0000bd65  ti_sysbios_family_arm_m3_Hwi_post__E                                      
    0000bd65  ti_sysbios_hal_Hwi_HwiProxy_post__E                                       
    0000bd65  ti_sysbios_hal_Hwi_post__E                                                
    0000bd85  xdc_runtime_LoggerCallback_Object__get__S                                 
    0000bd95  xdc_runtime_SysCallback_putch__E                                          
    0000bd95  xdc_runtime_System_SupportProxy_putch__E                                  
    0000bda5  xdc_runtime_SysCallback_ready__E                                          
    0000bda5  xdc_runtime_System_SupportProxy_ready__E                                  
    0000bdb5  xdc_runtime_System_vsnprintf__E                                           
    0000bdc5  GATT_Indication                                                           
    0000bdd3  ICallPlatform_pwrGetTransitionState                                       
    0000bde1  ICallPlatform_pwrIsStableXOSCHF                                           
    0000be27  NOROM_SetupSignExtendVddrTrimValue                                        
    0000be35  NOROM_VIMSModeGet                                                         
    0000be43  SensorI2C_readReg                                                         
    0000be51  __TI_decompress_none                                                      
    0000be97  ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E                   
    0000be97  xdc_runtime_Timestamp_SupportProxy_get32__E__mangled__                    
    0000beb1  GAP_MakeDiscoverable                                                      
    0000bebd  GAP_TerminateAuth                                                         
    0000bec9  GAP_UpdateLinkParamReq                                                    
    0000bed5  GAP_UpdateLinkParamReqReply                                               
    0000bee1  GGS_SetParameter                                                          
    0000bf29  NOROM_CPUcpsid                                                            
    0000bf35  NOROM_CPUcpsie                                                            
    0000bf41  Power_getConstraintMask                                                   
    0000bf4d  Power_getDependencyCount                                                  
    0000bf59  Power_getTransitionState                                                  
    0000bf65  SensorI2C_deselect                                                        
    0000bf89  SensorTag_testResult                                                      
    0000bf95  UartLog_doInit                                                            
    0000bfa1  __TI_zero_init                                                            
    0000bfb9  ti_sysbios_BIOS_getThreadType__E                                          
    0000bfc5  ti_sysbios_hal_Hwi_Params__init__S                                        
    0000bfd1  ti_sysbios_knl_Swi_getTrigger__E                                          
    0000bfdd  xdc_runtime_Startup_reset__I                                              
    0000bfe9  xdc_runtime_Startup_rtsDone__E                                            
    0000bff5  I2CCC26XX_init                                                            
    0000bfff  I2C_close                                                                 
    0000c009  I2C_transfer                                                              
    0000c013  ICallPlatform_pwrSwitchXOSCHF                                             
    0000c027  List_empty                                                                
    0000c031  SensorTag_charValueChangeCB                                               
    0000c045  UART_write                                                                
    0000c04f  xdc_runtime_LoggerCallback_disable__E                                     
    0000c059  xdc_runtime_LoggerCallback_enable__E                                      
    0000c063  xdc_runtime_Text_visitRope__I                                             
    0000c06d  RF_flushCmd                                                               
    0000c0bd  GGS_AddService                                                            
    0000c0c3  I2CCC26XX_control                                                         
    0000c0c9  ICall_mallocImpl                                                          
    0000c0cf  NOROM_CPUdelay                                                            
    0000c0d5  PIN_registerIntCb                                                         
    0000c0db  UARTCC26XX_readPolling                                                    
    0000c0e1  UARTCC26XX_writePolling                                                   
    0000c0e7  __xdc__init                                                               
    0000c0f3  __TI_decompress_rle24                                                     
    0000c153  ti_sysbios_family_arm_m3_Hwi_setFunc__E                                   
    0000c159  HwiP_disable                                                              
    0000c161  List_head                                                                 
    0000c165  List_next                                                                 
    0000c171  Util_startClock                                                           
    0000c175  Util_stopClock                                                            
    0000c181  ti_sysbios_family_arm_cc26xx_Timer_getCount64__E                          
    0000c185  ti_sysbios_knl_Clock_isActive__E                                          
    0000c189  ti_sysbios_knl_Clock_setPeriod__E                                         
    0000c18d  ti_sysbios_knl_Queue_insert__E                                            
    0000c191  xdc_runtime_LoggerCallback_defaultCreate                                  
    0000c195  xdc_runtime_SysCallback_defaultReady                                      
    0000c199  xdc_runtime_System_snprintf_va__F                                         
    0000c39c  xdc_runtime_Text_charTab__A                                               
    0000dc28  resourceDB                                                                
    0000dc74  rfDriverTable                                                             
    0000df04  xdc_runtime_LoggerCallback_Module__FXNS__C                                
    0000df38  ioServUUID                                                                
    0000df48  ioDataUUID                                                                
    0000df58  ioConfUUID                                                                
    0000df68  BoardGpioInitTable                                                        
    0000df98  primaryServiceUUID                                                        
    0000df9a  characterUUID                                                             
    0000df9c  clientCharCfgUUID                                                         
    0000df9e  charFormatUUID                                                            
    0000dfa0  reportRefUUID                                                             
    0000dfa2  gapServiceUUID                                                            
    0000dfa4  gattServiceUUID                                                           
    0000dfa6  secondaryServiceUUID                                                      
    0000dfa8  includeUUID                                                               
    0000dfaa  charExtPropsUUID                                                          
    0000dfac  charUserDescUUID                                                          
    0000dfae  servCharCfgUUID                                                           
    0000dfb0  charAggFormatUUID                                                         
    0000dfb2  deviceNameUUID                                                            
    0000dfb4  appearanceUUID                                                            
    0000dfb6  periPrivacyFlagUUID                                                       
    0000dfb8  reconnectAddrUUID                                                         
    0000dfba  periConnParamUUID                                                         
    0000dfbc  serviceChangedUUID                                                        
    0000dfbe  validRangeUUID                                                            
    0000dfc0  extReportRefUUID                                                          
    0000dfc4  UARTCC26XX_fxnTable                                                       
    0000dfec  xdc_runtime_Startup_sfxnTab__A                                            
    0000e014  txPowerTable                                                              
    0000e03c  UART_defaultParams                                                        
    0000e060  I2CCC26XX_fxnTable                                                        
    0000e080  xdc_runtime_LoggerCallback_Object__DESC__C                                
    0000e0a0  xdc_runtime_LoggerCallback_Object__PARAMS__C                              
    0000e0bc  I2C_config                                                                
    0000e0d4  UART_config                                                               
    0000e0ea  __checksum_value_CommonROM                                                
    0000e0ec  i2cCC26xxHWAttrs                                                          
    0000e104  uartCC26XXHWAttrs                                                         
    0000e11c  devInfoServUUID                                                           
    0000e11e  devInfoSystemIdUUID                                                       
    0000e120  devInfoModelNumberUUID                                                    
    0000e122  devInfoSerialNumberUUID                                                   
    0000e124  devInfoFirmwareRevUUID                                                    
    0000e126  devInfoHardwareRevUUID                                                    
    0000e128  devInfoSoftwareRevUUID                                                    
    0000e12a  devInfoMfrNameUUID                                                        
    0000e12c  devInfo11073CertUUID                                                      
    0000e12e  devInfoPnpIdUUID                                                          
    0000e160  battCBs                                                                   
    0000e16c  txPwrTbl                                                                  
    0000e174  trngDriverTable                                                           
    0000e188  devInfoCBs                                                                
    0000e1b0  ioCBs                                                                     
    0000e20c  xdc_runtime_Startup_sfxnRts__A                                            
    0000e220  I2C_defaultParams                                                         
    0000e230  PowerCC26XX_config                                                        
    0000e240  TRNGCC26XX_config                                                         
    0000e250  xdc_runtime_Text_nodeTab__A                                               
    0000e260  xdc_runtime_Startup_firstFxns__A                                          
    0000e26c  ti_sysbios_knl_Idle_funcList__A                                           
    0000e274  battServUUID                                                              
    0000e276  battLevelUUID                                                             
    0000e278  TRNGCC26XXHWAttrs                                                         
    0000e280  ti_sysbios_knl_Clock_tickPeriod__C                                        
    0000e284  ti_sysbios_knl_Clock_triggerClock__C                                      
    0000e288  xdc_runtime_ILogger_Interface__BASE__C                                    
    0000e28c  xdc_runtime_Log_L_info__C                                                 
    0000e290  xdc_runtime_Log_L_warning__C                                              
    0000e294  xdc_runtime_LoggerCallback_Object__count__C                               
    0000e298  xdc_runtime_LoggerCallback_createInstFxn__C                               
    0000e29c  xdc_runtime_LoggerCallback_outputFxn__C                                   
    0000e2a0  xdc_runtime_Main_Module__loggerFxn2__C                                    
    0000e2a4  xdc_runtime_Main_Module__loggerFxn4__C                                    
    0000e2a8  xdc_runtime_Main_Module__loggerFxn8__C                                    
    0000e2ac  xdc_runtime_Main_Module__loggerObj__C                                     
    0000e2b0  xdc_runtime_SysCallback_putchFxn__C                                       
    0000e2b4  xdc_runtime_SysCallback_readyFxn__C                                       
    0000e2b8  xdc_runtime_System_extendFxn__C                                           
    0000e2bc  xdc_runtime_Text_nodeTab__C                                               
    0000e2c0  xdc_runtime_Text_visitRopeFxn__C                                          
    0000e2c6  xdc_runtime_Main_Module__loggerDefined__C                                 
    0000e2c8  xdc_runtime_Text_registryModsLastId__C                                    
    0000e2ca  xdc_runtime_Text_unnamedModsLastId__C                                     
    0000e2d0  __TI_static_base__                                                        
    0000eca0  __TI_Handler_Table_Base                                                   
    0000ecac  __TI_Handler_Table_Limit                                                  
    0000ecf8  __TI_CINIT_Base                                                           
    0000ed58  __TI_CINIT_Limit                                                          
    0001ffa8  __ccfg                                                                    
    10014c00  A1_rw                                                                     
    10014c00  __checksum_begin_CommonROM                                                
    10014c01  COMMON_ROM_BASE_ADDR                                                      
    10014c04  P1_ro                                                                     
    10014c05  SCALARMUL_init                                                            
    10014ced  SCALARMUL_core                                                            
    10015019  SCALARMUL_final                                                           
    100150e5  SCALARMUL                                                                 
    10015101  SAVEPOINT                                                                 
    10015141  GETBIT                                                                    
    10015155  GETDIGIT                                                                  
    100151a5  GETDIGITL2R                                                               
    10015215  SelectReg                                                                 
    10015229  ATOMICPATTERN                                                             
    100154f5  JACADD                                                                    
    1001568d  INVERT                                                                    
    10015821  SQUAREMULTIPLYWORD                                                        
    1001588c  LUTOPCODE                                                                 
    10015894  LUTOPSIGN                                                                 
    100158ac  LUTC                                                                      
    100158c4  LUTSE                                                                     
    100158dc  LUTINCI                                                                   
    100158f4  LUTJ                                                                      
    1001596c  LUTSTATE                                                                  
    100159a9  IMPORTLENGTH                                                              
    100159ad  IMPORTMODULUS                                                             
    100159d1  IMPORTOPERAND                                                             
    10015a11  EXPORTOPERAND                                                             
    10015a35  IMPORTDATA                                                                
    10015a51  SETOPERAND                                                                
    10015a6d  COPY                                                                      
    10015a85  ZERO                                                                      
    10015a91  SETWORD                                                                   
    10015a9d  mSET                                                                      
    10015bcd  zSET                                                                      
    10015bd5  mINVK                                                                     
    10015d19  zADD                                                                      
    10015d5d  zSUB                                                                      
    10015de9  zMACC32                                                                   
    10015e69  zSUB32                                                                    
    10015eb5  zADD32                                                                    
    10015f0d  zMULT32                                                                   
    10015f81  mMULT                                                                     
    10016551  mADD                                                                      
    1001664d  mSUB                                                                      
    10016749  mOUT                                                                      
    10016975  ssp_KeyInit_Sw                                                            
    10016979  sspAesEncrypt_Sw                                                          
    10016985  sspKeyExpansion_Sw                                                        
    10016a99  sspAesEncryptKeyExp_Sw                                                    
    10016af5  sspAesEncryptBasic_Sw                                                     
    10016b79  RoundKey_Sw                                                               
    10016c29  AddRoundKeySubBytes_Sw                                                    
    10016c45  ShiftRows_Sw                                                              
    10016c79  MixColumns_Sw                                                             
    10016d05  FFMult_Sw                                                                 
    10016d29  sspAesDecrypt_Sw                                                          
    10016da1  InvAddRoundKey_Sw                                                         
    10016dc9  InvRoundKey_Sw                                                            
    10016e8d  InvSubBytes_Sw                                                            
    10016ea1  InvShiftRows_Sw                                                           
    10016ed5  InvMixColumns_Sw                                                          
    10016f58  FFMult2                                                                   
    10017058  FFMult3                                                                   
    10017158  RCon                                                                      
    10017164  Sbox                                                                      
    10017264  InvSbox                                                                   
    10017365  SSP_CCM_Auth_Sw                                                           
    100174fd  SSP_CCM_Encrypt_Sw                                                        
    100175ed  SSP_CTR_Encrypt_Sw                                                        
    1001767d  SSP_CCM_Decrypt_Sw                                                        
    10017771  SSP_CTR_Decrypt_Sw                                                        
    10017839  SSP_CCM_InvAuth_Sw                                                        
    10017895  SSP_CCM_Auth_Encrypt_Sw                                                   
    100178f5  SSP_CCM_InvAuth_Decrypt_Sw                                                
    10017959  ECC_allocWorkzone                                                         
    10017961  ECC_setWin                                                                
    10017969  ECDSA_sign                                                                
    10017b01  ECDSA_verif                                                               
    10017dbd  eccRom_genKeys                                                            
    10017ded  eccRom_genSharedSecret                                                    
    10017e39  SHA256_updateW                                                            
    10017e75  SHA256_round                                                              
    10017ef1  SHA256_nextState                                                          
    10017f49  SHA256_saveBuffer                                                         
    10017ffd  SHA256_init                                                               
    10018019  SHA256_process                                                            
    10018089  SHA256_final                                                              
    10018129  SHA256_full                                                               
    100182ad  RFHAL_InitRfHal                                                           
    10018315  RFHAL_AllocRatChan                                                        
    1001833d  RFHAL_FreeRatChan                                                         
    10018369  RFHAL_MapRatChansToInt                                                    
    10018391  RFHAL_RegisterRatChanCallback                                             
    100183b9  RFHAL_InitDataQueue                                                       
    100183c5  RFHAL_QueueRFDataEntries                                                  
    10018415  RFHAL_AddTxDataEntry                                                      
    10018485  RFHAL_FreeNextTxDataEntry                                                 
    100184a9  RFHAL_AllocDataEntryQueue                                                 
    100184c5  RFHAL_FreeDataEntryQueue                                                  
    100184cd  RFHAL_GetNextDataEntry                                                    
    100184d1  RFHAL_GetTempDataEntry                                                    
    100184d5  RFHAL_NextDataEntryDone                                                   
    100184f9  RFHAL_AllocDataEntry                                                      
    10018549  RFHAL_FreeDataEntry                                                       
    10018551  RFHAL_BuildRingBuffer                                                     
    100185e1  RFHAL_BuildDataEntryRingBuffer                                            
    10018669  RFHAL_BuildLinkedBuffer                                                   
    10018755  MB_Init                                                                   
    10018799  MB_EnableInts                                                             
    100187f5  MB_DisableInts                                                            
    10018825  MB_ClearInts                                                              
    10018835  MB_EnableHWInts                                                           
    10018865  MB_SendCommand                                                            
    100188a5  MB_SendCommandSynch                                                       
    10018935  MB_ReadMailboxStatus                                                      
    1001893d  MB_RegisterIsrCback                                                       
    10018945  MB_FwDebugDump                                                            
    10018949  mbCmdAckIsr                                                               
    1001895d  mbCpe0Isr                                                                 
    10018985  mbCpe1Isr                                                                 
    100189e5  mbHwIsr                                                                   
    10018a19  AesCcm_authEncrypt_Sw                                                     
    10018a35  AesCcm_decryptAuth_Sw                                                     
    10018a99  Aes_encrypt_Sw                                                            
    10018ac5  Aes_decrypt_Sw                                                            
    10018b09  AesCcm_getNumBlocks_Sw                                                    
    10018b0c  NIST_Curve_P256_p                                                         
    10018b30  NIST_Curve_P256_r                                                         
    10018b54  NIST_Curve_P256_a                                                         
    10018b78  NIST_Curve_P256_b                                                         
    10018b9c  NIST_Curve_P256_Gx                                                        
    10018bc0  NIST_Curve_P256_Gy                                                        
    10018ced  __exit                                                                    
    10018d6c  Fill1                                                                     
    10019ffc  A3_rw                                                                     
    10019ffd  __checksum_end_CommonROM                                                  
    10019ffe  A2_rw                                                                     
    10019ffe  P1_ro_2                                                                   
    10019ffe  __checksum_CommonROM                                                      
    1001a001  ti_sysbios_knl_Mailbox_Instance_init__E                                   
    1001a0cd  ti_sysbios_knl_Semaphore_pend__E                                          
    1001a199  ti_sysbios_heaps_HeapMem_alloc__E                                         
    1001a25d  ti_sysbios_knl_Task_Instance_init__E                                      
    1001a319  ti_sysbios_family_arm_m3_Hwi_postInit__I                                  
    1001a3c9  ti_sysbios_family_arm_m3_Hwi_Instance_init__E                             
    1001a469  ti_sysbios_family_arm_cc26xx_Timer_periodicStub__E                        
    1001a4fd  ti_sysbios_knl_Task_Instance_finalize__E                                  
    1001a591  ti_sysbios_knl_Mailbox_post__E                                            
    1001a615  ti_sysbios_knl_Task_postInit__I                                           
    1001a699  ti_sysbios_family_arm_m3_Hwi_initNVIC__E                                  
    1001a719  ti_sysbios_knl_Clock_startI__E                                            
    1001a795  ti_sysbios_heaps_HeapMem_free__E                                          
    1001a80d  ti_sysbios_knl_Clock_walkQueueDynamic__E                                  
    1001a885  ti_sysbios_knl_Clock_workFunc__E                                          
    1001a8fd  ti_sysbios_knl_Mailbox_pend__E                                            
    1001a96d  ti_sysbios_knl_Task_sleep__E                                              
    1001a9dd  ti_sysbios_knl_Mailbox_Instance_finalize__E                               
    1001aa49  ti_sysbios_family_arm_m3_Hwi_dispatchC__I                                 
    1001aab1  ti_sysbios_family_arm_m3_Hwi_Object__create__S                            
    1001ab15  ti_sysbios_family_arm_m3_Hwi_create                                       
    1001ab79  ti_sysbios_hal_Hwi_create                                                 
    1001abdd  ti_sysbios_knl_Mailbox_create                                             
    1001ac41  ti_sysbios_knl_Semaphore_post__E                                          
    1001aca5  ti_sysbios_knl_Swi_Instance_init__E                                       
    1001ad05  ti_sysbios_knl_Swi_create                                                 
    1001ad61  ti_sysbios_knl_Swi_restoreHwi__E                                          
    1001adbd  ti_sysbios_knl_Task_Module_startup__E                                     
    1001ae19  ti_sysbios_knl_Task_create                                                
    1001ae75  ti_sysbios_knl_Task_startCore__E                                          
    1001aed1  ti_sysbios_family_arm_m3_Hwi_Instance_finalize__E                         
    1001af29  ti_sysbios_family_arm_m3_Hwi_construct                                    
    1001af81  ti_sysbios_knl_Mailbox_construct                                          
    1001afd9  ti_sysbios_knl_Swi_run__I                                                 
    1001b031  ti_sysbios_knl_Swi_schedule__I                                            
    1001b085  ti_sysbios_knl_Swi_construct                                              
    1001b0d5  ti_sysbios_knl_Swi_runLoop__I                                             
    1001b125  ti_sysbios_knl_Task_construct                                             
    1001b175  ti_sysbios_knl_Task_schedule__I                                           
    1001b1c1  ti_sysbios_family_arm_m3_Hwi_Module_startup__E                            
    1001b209  ti_sysbios_heaps_HeapMem_getStats__E                                      
    1001b251  ti_sysbios_knl_Mailbox_Module_startup__E                                  
    1001b299  ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E                          
    1001b2dd  ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E                           
    1001b321  ti_sysbios_knl_Swi_post__E                                                
    1001b365  ti_sysbios_knl_Task_allBlockedFunction__I                                 
    1001b3a9  ti_sysbios_knl_Task_yield__E                                              
    1001b3ed  ti_sysbios_knl_Clock_create                                               
    1001b429  ti_sysbios_knl_Task_exit__E                                               
    1001b463  ti_sysbios_gates_GateHwi_Instance_init__E                                 
    1001b465  ti_sysbios_family_arm_m3_Hwi_getStackInfo__E                              
    1001b49d  ti_sysbios_family_arm_m3_TaskSupport_start__E                             
    1001b4d5  ti_sysbios_heaps_HeapMem_Instance_init__E                                 
    1001b50d  ti_sysbios_knl_Clock_Instance_init__E                                     
    1001b545  ti_sysbios_heaps_HeapMem_init__I                                          
    1001b579  ti_sysbios_knl_Clock_construct                                            
    1001b5ad  ti_sysbios_knl_Semaphore_create                                           
    1001b5e1  ti_sysbios_knl_Swi_restore__E                                             
    1001b615  ti_sysbios_knl_Task_blockI__E                                             
    1001b649  ti_sysbios_gates_GateMutex_Object__create__S                              
    1001b679  ti_sysbios_gates_GateMutex_create                                         
    1001b6a9  ti_sysbios_gates_GateMutex_enter__E                                       
    1001b6d9  ti_sysbios_knl_Clock_getTicks__E                                          
    1001b709  ti_sysbios_knl_Semaphore_construct                                        
    1001b739  ti_sysbios_knl_Task_processVitalTaskFlag__I                               
    1001b769  ti_sysbios_family_arm_cc26xx_Timer_postInit__I                            
    1001b795  ti_sysbios_family_arm_cc26xx_Timer_startup__E                             
    1001b795  ti_sysbios_knl_Clock_TimerProxy_startup__E                                
    1001b7c1  ti_sysbios_family_arm_m3_Hwi_Object__get__S                               
    1001b7ed  ti_sysbios_gates_GateMutex_construct                                      
    1001b819  ti_sysbios_hal_Hwi_initStack                                              
    1001b845  ti_sysbios_heaps_HeapMem_Object__create__S                                
    1001b871  ti_sysbios_heaps_HeapMem_Object__get__S                                   
    1001b89d  ti_sysbios_knl_Mailbox_Object__get__S                                     
    1001b8c9  ti_sysbios_knl_Mailbox_postInit__I                                        
    1001b8f5  ti_sysbios_knl_Queue_construct                                            
    1001b921  ti_sysbios_knl_Queue_create                                               
    1001b94d  ti_sysbios_knl_Semaphore_pendTimeout__I                                   
    1001b979  ti_sysbios_knl_Swi_Object__get__S                                         
    1001b9a5  ti_sysbios_knl_Task_unblockI__E                                           
    1001b9d1  ti_sysbios_family_arm_cc26xx_TimestampProvider_get64__E                   
    1001b9d1  xdc_runtime_Timestamp_SupportProxy_get64__E                               
    1001b9d1  xdc_runtime_Timestamp_get64__E                                            
    1001b9f9  ti_sysbios_hal_Hwi_Instance_init__E                                       
    1001ba21  ti_sysbios_knl_Clock_addI__E                                              
    1001ba49  ti_sysbios_knl_Task_restore__E                                            
    1001ba71  ti_sysbios_family_arm_cc26xx_Timer_Module_startup__E                      
    1001ba95  ti_sysbios_gates_GateHwi_Object__create__S                                
    1001bab9  ti_sysbios_BIOS_RtsGateProxy_Object__delete__S                            
    1001bab9  ti_sysbios_gates_GateMutex_Object__delete__S                              
    1001bab9  ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__delete__S               
    1001badd  ti_sysbios_knl_Clock_Object__delete__S                                    
    1001bb01  ti_sysbios_knl_Semaphore_Instance_init__E                                 
    1001bb25  ti_sysbios_knl_Semaphore_Object__delete__S                                
    1001bb49  ti_sysbios_family_arm_cc26xx_Timer_Module__startupDone__S                 
    1001bb69  ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_startup__E          
    1001bb89  ti_sysbios_family_arm_m3_Hwi_Module__startupDone__S                       
    1001bba9  ti_sysbios_family_arm_m3_Hwi_Object__delete__S                            
    1001bba9  ti_sysbios_hal_Hwi_HwiProxy_Object__delete__S                             
    1001bbc9  ti_sysbios_family_arm_m3_Hwi_excHandler__I                                
    1001bbe9  ti_sysbios_gates_GateHwi_Handle__label__S                                 
    1001bbe9  xdc_runtime_System_Module_GateProxy_Handle__label__S                      
    1001bc09  ti_sysbios_gates_GateHwi_Object__delete__S                                
    1001bc09  xdc_runtime_System_Module_GateProxy_Object__delete__S                     
    1001bc29  ti_sysbios_BIOS_RtsGateProxy_Handle__label__S                             
    1001bc29  ti_sysbios_gates_GateMutex_Handle__label__S                               
    1001bc29  ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S                
    1001bc49  ti_sysbios_gates_GateMutex_Object__destruct__S                            
    1001bc69  ti_sysbios_hal_Hwi_Object__delete__S                                      
    1001bc89  ti_sysbios_heaps_HeapMem_Handle__label__S                                 
    1001bc89  xdc_runtime_Memory_HeapProxy_Handle__label__S                             
    1001bca9  ti_sysbios_heaps_HeapMem_Object__delete__S                                
    1001bca9  xdc_runtime_Memory_HeapProxy_Object__delete__S                            
    1001bcc9  ti_sysbios_knl_Clock_Module_startup__E                                    
    1001bce9  ti_sysbios_knl_Clock_Object__destruct__S                                  
    1001bd09  ti_sysbios_knl_Idle_run__E                                                
    1001bd29  ti_sysbios_knl_Mailbox_Object__delete__S                                  
    1001bd49  ti_sysbios_knl_Queue_Object__delete__S                                    
    1001bd69  ti_sysbios_knl_Queue_Object__get__S                                       
    1001bd89  ti_sysbios_knl_Semaphore_Object__destruct__S                              
    1001bda9  ti_sysbios_knl_Swi_Object__delete__S                                      
    1001bdc9  ti_sysbios_knl_Task_Object__delete__S                                     
    1001bde9  ti_sysbios_knl_Task_Object__get__S                                        
    1001be09  ti_sysbios_knl_Task_enter__I                                              
    1001be29  ti_sysbios_knl_Task_restoreHwi__E                                         
    1001be49  ti_sysbios_hal_Hwi_HwiProxy_create                                        
    1001be67  ti_sysbios_knl_Clock_logTick__E                                           
    1001be69  ti_sysbios_family_arm_m3_Hwi_Object__destruct__S                          
    1001be85  ti_sysbios_family_arm_m3_Hwi_setPriority__E                               
    1001bea1  ti_sysbios_gates_GateMutex_Instance_init__E                               
    1001bebd  ti_sysbios_knl_Clock_scheduleNextTick__E                                  
    1001bed9  ti_sysbios_knl_Mailbox_Object__destruct__S                                
    1001bef5  ti_sysbios_knl_Queue_Object__destruct__S                                  
    1001bf11  ti_sysbios_knl_Queue_get__E                                               
    1001bf2d  ti_sysbios_knl_Queue_put__E                                               
    1001bf49  ti_sysbios_knl_Swi_Object__destruct__S                                    
    1001bf65  ti_sysbios_knl_Task_Object__destruct__S                                   
    1001bf81  ti_sysbios_knl_Task_sleepTimeout__I                                       
    1001bf9b  ti_sysbios_knl_Swi_Instance_finalize__E                                   
    1001bf9d  ti_sysbios_gates_GateMutex_leave__E                                       
    1001bfb5  ti_sysbios_knl_Task_unblock__E                                            
    1001bfcd  ti_sysbios_knl_Clock_Instance_finalize__E                                 
    1001bfe3  ti_sysbios_knl_Clock_start__E                                             
    1001bff9  ti_sysbios_BIOS_getCpuFreq__E                                             
    1001c00d  ti_sysbios_family_arm_m3_Hwi_switchFromBootStack__E                       
    1001c021  ti_sysbios_hal_Hwi_Module_startup__E                                      
    1001c035  ti_sysbios_BIOS_exit__E                                                   
    1001c045  ti_sysbios_BIOS_setThreadType__E                                          
    1001c055  ti_sysbios_BIOS_start__E                                                  
    1001c065  ti_sysbios_family_arm_m3_Hwi_plug__E                                      
    1001c075  ti_sysbios_gates_GateMutex_Instance_finalize__E                           
    1001c085  ti_sysbios_hal_Hwi_HwiProxy_Object__create__S                             
    1001c095  ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E                         
    1001c0a5  ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E                            
    1001c0b5  ti_sysbios_knl_Clock_TimerProxy_setNextTick__E                            
    1001c0c5  ti_sysbios_knl_Semaphore_Instance_finalize__E                             
    1001c0d5  ti_sysbios_knl_Swi_disable__E                                             
    1001c0e5  ti_sysbios_knl_Swi_enabled__E                                             
    1001c0f5  ti_sysbios_knl_Task_disable__E                                            
    1001c105  ti_sysbios_heaps_HeapMem_restore__E                                       
    1001c113  ti_sysbios_knl_Queue_empty__E                                             
    1001c121  ti_sysbios_knl_Queue_remove__E                                            
    1001c12f  ti_sysbios_family_arm_cc26xx_TimestampProvider_getFreq__E                 
    1001c12f  xdc_runtime_Timestamp_SupportProxy_getFreq__E                             
    1001c12f  xdc_runtime_Timestamp_getFreq__E                                          
    1001c13d  ti_sysbios_family_arm_m3_Hwi_Params__init__S                              
    1001c13d  ti_sysbios_hal_Hwi_HwiProxy_Params__init__S                               
    1001c149  ti_sysbios_family_arm_m3_Hwi_disableFxn__E                                
    1001c155  ti_sysbios_family_arm_m3_Hwi_enableFxn__E                                 
    1001c161  ti_sysbios_family_arm_m3_TaskSupport_getStackAlignment__E                 
    1001c16d  ti_sysbios_gates_GateHwi_enter__E                                         
    1001c179  ti_sysbios_BIOS_RtsGateProxy_Params__init__S                              
    1001c179  ti_sysbios_gates_GateMutex_Params__init__S                                
    1001c179  ti_sysbios_heaps_HeapMem_Module_GateProxy_Params__init__S                 
    1001c185  ti_sysbios_knl_Clock_Params__init__S                                      
    1001c191  ti_sysbios_knl_Clock_getTimerHandle__E                                    
    1001c19d  ti_sysbios_knl_Mailbox_Params__init__S                                    
    1001c1a9  ti_sysbios_knl_Queue_dequeue__E                                           
    1001c1b5  ti_sysbios_knl_Queue_enqueue__E                                           
    1001c1c1  ti_sysbios_knl_Semaphore_Params__init__S                                  
    1001c1cd  ti_sysbios_knl_Swi_Params__init__S                                        
    1001c1d9  ti_sysbios_knl_Task_Params__init__S                                       
    1001c1e5  ti_sysbios_knl_Task_self__E                                               
    1001c1f1  ti_sysbios_hal_Hwi_Instance_finalize__E                                   
    1001c1fb  ti_sysbios_family_arm_m3_Hwi_doSwiRestore__I                              
    1001c203  ti_sysbios_family_arm_m3_Hwi_startup__E                                   
    1001c20b  ti_sysbios_knl_Idle_loop__E                                               
    1001c213  ti_sysbios_family_arm_m3_Hwi_doTaskRestore__I                             
    1001c219  ti_sysbios_family_arm_m3_Hwi_restoreFxn__E                                
    1001c21f  ti_sysbios_gates_GateHwi_leave__E                                         
    1001c22b  ti_sysbios_knl_Queue_Instance_init__E                                     
    1001c231  ti_sysbios_knl_Queue_elemClear__E                                         
    1001c237  ti_sysbios_knl_Swi_Module_startup__E                                      
    1001c23d  ti_sysbios_knl_Swi_startup__E                                             
    1001c243  ti_sysbios_knl_Task_enable__E                                             
    1001c249  ti_sysbios_BIOS_RtsGateProxy_enter__E                                     
    1001c24d  ti_sysbios_BIOS_RtsGateProxy_leave__E                                     
    1001c251  ti_sysbios_family_arm_cc26xx_Timer_getExpiredTicks__E                     
    1001c255  ti_sysbios_family_arm_cc26xx_Timer_getPeriod__E                           
    1001c259  ti_sysbios_family_arm_cc26xx_Timer_setPeriod__E                           
    1001c25d  ti_sysbios_family_arm_m3_Hwi_delete                                       
    1001c261  ti_sysbios_family_arm_m3_Hwi_destruct                                     
    1001c265  ti_sysbios_family_arm_m3_TaskSupport_Module__startupDone__S               
    1001c269  ti_sysbios_gates_GateHwi_query__E                                         
    1001c269  xdc_runtime_System_Module_GateProxy_query__E                              
    1001c26d  ti_sysbios_gates_GateMutex_delete                                         
    1001c271  ti_sysbios_gates_GateMutex_destruct                                       
    1001c275  ti_sysbios_BIOS_RtsGateProxy_query__E                                     
    1001c275  ti_sysbios_gates_GateMutex_query__E                                       
    1001c275  ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E                        
    1001c279  ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S                        
    1001c27d  ti_sysbios_hal_Hwi_HwiProxy_delete                                        
    1001c281  ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E                           
    1001c281  ti_sysbios_hal_Hwi_disableInterrupt__E                                    
    1001c285  ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E                            
    1001c285  ti_sysbios_hal_Hwi_enableInterrupt__E                                     
    1001c289  ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E                               
    1001c289  ti_sysbios_hal_Hwi_getStackInfo__E                                        
    1001c28d  ti_sysbios_hal_Hwi_HwiProxy_startup__E                                    
    1001c28d  ti_sysbios_hal_Hwi_startup__E                                             
    1001c291  ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E                        
    1001c295  ti_sysbios_hal_Hwi_delete                                                 
    1001c299  ti_sysbios_hal_Hwi_switchFromBootStack__E                                 
    1001c29d  ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E                        
    1001c2a1  ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E                        
    1001c2a5  ti_sysbios_heaps_HeapMem_isBlocking__E                                    
    1001c2a9  ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S                    
    1001c2ad  ti_sysbios_knl_Clock_TimerProxy_getExpiredTicks__E                        
    1001c2b1  ti_sysbios_knl_Clock_TimerProxy_getPeriod__E                              
    1001c2b5  ti_sysbios_knl_Clock_delete                                               
    1001c2b9  ti_sysbios_knl_Clock_destruct                                             
    1001c2bd  ti_sysbios_knl_Clock_removeI__E                                           
    1001c2c1  ti_sysbios_knl_Clock_setTimeout__E                                        
    1001c2c5  ti_sysbios_knl_Mailbox_delete                                             
    1001c2c9  ti_sysbios_knl_Mailbox_destruct                                           
    1001c2cd  ti_sysbios_knl_Queue_delete                                               
    1001c2d1  ti_sysbios_knl_Queue_destruct                                             
    1001c2d5  ti_sysbios_knl_Queue_head__E                                              
    1001c2d9  ti_sysbios_knl_Queue_next__E                                              
    1001c2dd  ti_sysbios_knl_Semaphore_delete                                           
    1001c2e1  ti_sysbios_knl_Semaphore_destruct                                         
    1001c2e5  ti_sysbios_knl_Swi_delete                                                 
    1001c2e9  ti_sysbios_knl_Swi_destruct                                               
    1001c2ed  ti_sysbios_knl_Swi_postInit__I                                            
    1001c2f1  ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S                   
    1001c2f5  ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E                     
    1001c2f9  ti_sysbios_knl_Task_SupportProxy_start__E                                 
    1001c2fd  ti_sysbios_knl_Task_SupportProxy_swap__E                                  
    1001c301  ti_sysbios_knl_Task_delete                                                
    1001c305  ti_sysbios_knl_Task_destruct                                              
    1001c309  ti_sysbios_knl_Task_startup__E                                            
    1001c30d  xdc_runtime_Startup_startMods__I                                          
    1001c405  xdc_runtime_Core_createObject__I                                          
    1001c487  xdc_runtime_Error_policySpin__E                                           
    1001c489  xdc_runtime_Memory_alloc__E                                               
    1001c4f9  xdc_runtime_Core_deleteObject__I                                          
    1001c559  xdc_runtime_Startup_exec__E                                               
    1001c5a9  xdc_runtime_Assert_raise__I                                               
    1001c5f1  xdc_runtime_Core_assignParams__I                                          
    1001c639  xdc_runtime_Core_constructObject__I                                       
    1001c681  xdc_runtime_System_atexit__E                                              
    1001c6b9  xdc_runtime_System_processAtExit__E                                       
    1001c6ed  xdc_runtime_Core_assignLabel__I                                           
    1001c71d  xdc_runtime_Text_cordText__E                                              
    1001c749  xdc_runtime_System_abort__E                                               
    1001c769  xdc_runtime_Error_raiseX__E                                               
    1001c785  xdc_runtime_Memory_valloc__E                                              
    1001c7a1  xdc_runtime_Core_destructObject__I                                        
    1001c7b9  xdc_runtime_Error_check__E                                                
    1001c7d1  xdc_runtime_System_exit__E                                                
    1001c7e9  xdc_runtime_Text_ropeText__E                                              
    1001c801  xdc_runtime_Memory_free__E                                                
    1001c811  xdc_runtime_SysCallback_abort__E                                          
    1001c821  xdc_runtime_SysCallback_exit__E                                           
    1001c831  xdc_runtime_Timestamp_SupportProxy_get32__E                               
    1001c831  xdc_runtime_Timestamp_get32__E                                            
    1001c841  xdc_runtime_Error_init__E                                                 
    1001c84d  xdc_runtime_Memory_calloc__E                                              
    1001c859  xdc_runtime_Memory_getMaxDefaultTypeAlign__E                              
    1001c879  xdc_runtime_Gate_leaveSystem__E                                           
    1001c87f  xdc_runtime_System_Module_startup__E                                      
    1001c885  xdc_runtime_Gate_enterSystem__E                                           
    1001c889  xdc_runtime_Memory_HeapProxy_alloc__E                                     
    1001c88d  xdc_runtime_Memory_HeapProxy_free__E                                      
    1001c891  xdc_runtime_System_Module_GateProxy_enter__E                              
    1001c895  xdc_runtime_System_Module_GateProxy_leave__E                              
    1001c899  xdc_runtime_System_abortSpin__E                                           
    1001c89b  xdc_runtime_System_exitSpin__E                                            
    1001c89d  ti_sysbios_family_arm_m3_Hwi_dispatch__I                                  
    1001c96d  ti_sysbios_family_arm_m3_TaskSupport_buildTaskStack                       
    1001c9b9  ti_sysbios_family_arm_m3_Hwi_initStacks__E                                
    1001ca01  ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I                             
    1001ca21  ti_sysbios_family_xxx_Hwi_switchAndRunFunc                                
    1001ca3f  ti_sysbios_family_arm_m3_Hwi_pendSV__I                                    
    1001ca57  ti_sysbios_family_arm_m3_Hwi_return                                       
    1001ca59  ti_sysbios_family_arm_m3_TaskSupport_glue                                 
    1001ca69  ti_sysbios_family_arm_m3_TaskSupport_swap__E                              
    1001ca71  ti_sysbios_knl_Task_swapReturn                                            
    1001ca9b  ti_sysbios_rom_cortexm_cc26xx_CC26xx_getRevision__E                       
    20000000  ti_sysbios_family_arm_m3_Hwi_ramVectors                                   
    20000100  ti_sysbios_knl_Task_Module__state__V                                      
    20000144  ti_sysbios_family_arm_m3_Hwi_Module__state__V                             
    20000178  ti_sysbios_knl_Clock_Module__state__V                                     
    200001a4  ti_sysbios_BIOS_Module__state__V                                          
    200001c8  ti_sysbios_knl_Swi_Module__state__V                                       
    200001e4  ti_sysbios_family_arm_cc26xx_Timer_Module__state__V                       
    200001ec  ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V           
    200001f0  xdc_runtime_Startup_Module__state__V                                      
    200001f8  xdc_runtime_System_Module__state__V                                       
    20000200  xdc_runtime_Memory_Module__state__V                                       
    20000208  uartLog_tail                                                              
    20000209  uartLog_head                                                              
    2000020a  uartLog_evBufIsEmpty                                                      
    2000020c  uartLog_evtNum                                                            
    20000214  uartLog_outBuf                                                            
    200002c0  uartLog_evBuf                                                             
    200007c0  gapProfileState                                                           
    200007c1  selfEntityMain                                                            
    200007c8  sem                                                                       
    200007cc  hGpioPin                                                                  
    200007e8  pinGpioState                                                              
    20000b74  linkDBNumConns                                                            
    20000c88  gapRoleTask                                                               
    20000cd8  gapRoleTaskStack                                                          
    20001ac0  PowerCC26XX_module                                                        
    20001bd0  ICall_dispatcher                                                          
    20001bd8  ICall_enterCriticalSection                                                
    20001bdc  ICall_leaveCriticalSection                                                
    20001bf4  HEAPMGR_SIZE                                                              
    20001cdc  ti_sysbios_family_arm_cc26xx_Timer_Module__root__V                        
    20001ce4  ti_sysbios_family_arm_m3_Hwi_Module__root__V                              
    20001cec  ti_sysbios_family_arm_m3_Hwi_Object__table__V                             
    20001d04  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A                  
    20001d08  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A                 
    20001d0c  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A                   
    20001d10  ti_sysbios_gates_GateHwi_Module__root__V                                  
    20001d18  ti_sysbios_gates_GateHwi_Object__table__V                                 
    20001d1c  ti_sysbios_gates_GateMutex_Module__root__V                                
    20001d24  ti_sysbios_hal_Hwi_Module__root__V                                        
    20001d2c  ti_sysbios_heaps_HeapMem_Module__root__V                                  
    20001d34  ti_sysbios_heaps_HeapMem_Object__table__V                                 
    20001d4c  ti_sysbios_knl_Clock_Module__root__V                                      
    20001d54  ti_sysbios_knl_Clock_Object__table__V                                     
    20001d74  ti_sysbios_knl_Event_Module__root__V                                      
    20001d7c  ti_sysbios_knl_Mailbox_Module__root__V                                    
    20001d84  ti_sysbios_knl_Queue_Module__root__V                                      
    20001d8c  ti_sysbios_knl_Semaphore_Module__root__V                                  
    20001d94  ti_sysbios_knl_Swi_Module__root__V                                        
    20001d9c  ti_sysbios_knl_Task_Module__root__V                                       
    20001da4  ti_sysbios_knl_Task_Module_State_0_idleTask__A                            
    20001da8  xdc_runtime_LoggerCallback_Module__root__V                                
    20001db0  xdc_runtime_LoggerCallback_Object__table__V                               
    20001dc0  __xdc__init__addr                                                         
    20002230  rfRegTbl                                                                  
    200022cc  ti_sysbios_knl_Task_Object__table__V                                      
    20002318  ti_sysbios_family_arm_cc26xx_Timer_Object__table__V                       
    20002360  ti_sysbios_gates_GateMutex_Object__table__V                               
    200023fc  ti_sysbios_knl_Swi_Module_State_0_readyQ__A                               
    2000242c  ti_sysbios_knl_Swi_Object__table__V                                       
    2000245c  ti_sysbios_knl_Task_Module_State_0_readyQ__A                              
    2000248c  user0Cfg                                                                  
    20002514  lastAppOpcodeSent                                                         
    20002518  pfnBMAlloc                                                                
    2000251c  pfnBMFree                                                                 
    20002528  _lock                                                                     
    2000252c  _unlock                                                                   
    20002530  __TI_cleanup_ptr                                                          
    20002534  __TI_dtors_ptr                                                            
    20002540  xdc_runtime_Registry_Module__state__V                                     
    2000254c  appAssertCback                                                            
    20002550  main_func_sp                                                              
    20002560  ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A                          
    20002be0  ti_sysbios_knl_Task_Instance_State_0_stack__A                             
    20002de0  uartCC26XXObjects                                                         
    20002ef4  PIN_NumPins                                                               
    20002f88  PIN_HandleTable                                                           
    20003004  i2cCC26xxObjects                                                          
    200030e4  ti_sysbios_family_arm_m3_Hwi_dispatchTable                                
    20003250  trngCC26XXObjects                                                         
    20003255  driverlib_release_0_46593                                                 
    2000325b  heapStart                                                                 
    20004028  __stack                                                                   
    20004028  heapEnd                                                                   
    20004428  __STACK_END                                                               
    20004428  __STACK_TOP                                                               
    20004f2c  A4_rw                                                                     
    20004f2c  COMMON_RAM_BASE_ADDR                                                      
    20004f40  P2_rw                                                                     
    20004f40  P2_s0                                                                     
    20004f40  eccRom_windowSize                                                         
    20004f44  eccRom_workzone                                                           
    20004f48  eccRom_param_p                                                            
    20004f4c  eccRom_param_r                                                            
    20004f50  eccRom_param_a                                                            
    20004f54  inScalar                                                                  
    20004f58  inPointX                                                                  
    20004f5c  inPointY                                                                  
    20004f60  outPointX                                                                 
    20004f64  outPointY                                                                 
    20004f68  SCAL                                                                      
    20004f6c  EXPX                                                                      
    20004f70  EXPY                                                                      
    20004f74  EXPZ                                                                      
    20004f78  EXPW                                                                      
    20004f7c  ACCX                                                                      
    20004f80  ACCY                                                                      
    20004f84  ACCZ                                                                      
    20004f88  TMP1                                                                      
    20004f8c  TMP2                                                                      
    20004f90  TMP3                                                                      
    20004f94  TMP4                                                                      
    20004f98  TMP5                                                                      
    20004f9c  TMP6                                                                      
    20004fa0  eccRom_param_Gx                                                           
    20004fa4  eccRom_param_Gy                                                           
    20004fa8  eccRom_param_b                                                            
    20004fac  P2_zi                                                                     
    20004fac  ratChanInfo                                                               
    20004fcc  fwInfoCmd                                                                 
    20004fd8  MSBMOD                                                                    
    20004fdc  aux64                                                                     
    20004fe4  MOD                                                                       
    20004fe8  LEN                                                                       
    20004ffc  pSspAesEncrypt_Sw                                                         
    e000e000  ti_sysbios_family_arm_m3_Hwi_nvic                                         
    ffffffff  __binit__                                                                 
    ffffffff  __c_args__                                                                
    ffffffff  binit                                                                     
    UNDEFED   HwiP_restore                                                              
    UNDEFED   SHT$$INIT_ARRAY$$Base                                                     
    UNDEFED   SHT$$INIT_ARRAY$$Limit                                                    
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_Handle__label__S__mangled__                  
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_Object__delete__S__mangled__                 
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_Params__init__S__mangled__                   
    UNDEFED   ti_sysbios_BIOS_RtsGateProxy_query__E__mangled__                          
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S__mangled__             
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_Object__delete__S__mangled__                  
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_Params__init__S__mangled__                    
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E__mangled__                
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E__mangled__                 
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E__mangled__                    
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_startup__E__mangled__                         
    UNDEFED   ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E__mangled__             
    UNDEFED   ti_sysbios_hal_Hwi_disableInterrupt__E                                    
    UNDEFED   ti_sysbios_hal_Hwi_enableInterrupt__E                                     
    UNDEFED   ti_sysbios_hal_Hwi_getStackInfo__E                                        
    UNDEFED   ti_sysbios_hal_Hwi_startup__E                                             
    UNDEFED   ti_sysbios_hal_Hwi_switchFromBootStack__E                                 
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S__mangled__     
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__delete__S__mangled__    
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_Params__init__S__mangled__      
    UNDEFED   ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E__mangled__             
    UNDEFED   ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S__mangled__         
    UNDEFED   ti_sysbios_knl_Clock_TimerProxy_startup__E__mangled__                     
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S__mangled__        
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E__mangled__          
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_start__E__mangled__                      
    UNDEFED   ti_sysbios_knl_Task_SupportProxy_swap__E__mangled__                       
    UNDEFED   xdc_runtime_Main_Module_GateProxy_Handle__label__S                        
    UNDEFED   xdc_runtime_Main_Module_GateProxy_Object__delete__S                       
    UNDEFED   xdc_runtime_Main_Module_GateProxy_query__E                                
    UNDEFED   xdc_runtime_Memory_HeapProxy_Handle__label__S__mangled__                  
    UNDEFED   xdc_runtime_Memory_HeapProxy_Object__delete__S__mangled__                 
    UNDEFED   xdc_runtime_System_Module_GateProxy_Handle__label__S__mangled__           
    UNDEFED   xdc_runtime_System_Module_GateProxy_Object__delete__S__mangled__          
    UNDEFED   xdc_runtime_System_Module_GateProxy_query__E__mangled__                   
    UNDEFED   xdc_runtime_System_SupportProxy_abort__E                                  
    UNDEFED   xdc_runtime_System_SupportProxy_exit__E                                   
    UNDEFED   xdc_runtime_Timestamp_SupportProxy_get64__E__mangled__                    
    UNDEFED   xdc_runtime_Timestamp_SupportProxy_getFreq__E__mangled__                  
    UNDEFED   xdc_runtime_Timestamp_get32__E                                            
    UNDEFED   xdc_runtime_Timestamp_get64__E                                            
    UNDEFED   xdc_runtime_Timestamp_getFreq__E                                          
    
    [1226 symbols]
    

  • Hello
    Sasha
    I can't write reply use rich formatting
    because this msg

    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
    If the administrator has configured this forum to support email notifications you will receive an email when your post is either approved or denied (if you have emails enabled in your profile).

    Return to the TI-RTOS Forum forum
  • Sasha ! map file

    ******************************************************************************
    TI ARM Linker PC v5.2.6
    ******************************************************************************
    >> Linked Mon Mar 06 19:55:55 2017

    OUTPUT FILE NAME: <arrhythmia_1ch_cc2650_smartpatch_app.out>
    ENTRY POINT SYMBOL: "ResetISR" address: 00009339


    MEMORY CONFIGURATION

    name origin length used unused attr fill
    ---------------------- -------- --------- -------- -------- ---- --------
    FLASH 00000000 00011000 0000ed4e 000022b2 R X
    FLASH_LAST_PAGE 0001f000 00001000 00000058 00000fa8 R X
    SRAM 20000000 00004428 0000361f 00000e09 RW X


    SEGMENT ALLOCATION MAP

    run origin load origin length init length attrs members
    ---------- ----------- ---------- ----------- ----- -------
    00000000 00000000 0000ed58 0000ed58 r-x
    00000000 00000000 0000003c 0000003c r-- .resetVecs
    0000003c 0000003c 000000c4 000000c4 r-x .text.1
    00000100 00000100 0000003c 0000003c r-- .const:ti_sysbios_knl_Task_Object__PARAMS__C
    0000013c 0000013c 00000034 00000034 r-- .const:ti_sysbios_knl_Mailbox_Object__PARAMS__C
    00000170 00000170 00000030 00000030 r-- .const:ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C
    000001a0 000001a0 0000002c 0000002c r-- .const:ti_sysbios_hal_Hwi_Object__PARAMS__C
    000001cc 000001cc 00000028 00000028 r-- .const:ti_sysbios_heaps_HeapMem_Module__FXNS__C
    000001f4 000001f4 00000028 00000028 r-- .const:ti_sysbios_knl_Swi_Object__PARAMS__C
    0000021c 0000021c 00000024 00000024 r-- .const:ti_sysbios_gates_GateHwi_Module__FXNS__C
    00000240 00000240 00000024 00000024 r-- .const:ti_sysbios_gates_GateMutex_Module__FXNS__C
    00000264 00000264 00000024 00000024 r-- .const:ti_sysbios_heaps_HeapMem_Object__PARAMS__C
    00000288 00000288 00000024 00000024 r-- .const:ti_sysbios_knl_Clock_Object__PARAMS__C
    000002ac 000002ac 00000024 00000024 r-- .const:ti_sysbios_knl_Semaphore_Object__PARAMS__C
    000002d0 000002d0 00000020 00000020 r-- .const:ti_sysbios_family_arm_m3_Hwi_Object__DESC__C
    000002f0 000002f0 00000020 00000020 r-- .const:ti_sysbios_gates_GateHwi_Object__DESC__C
    00000310 00000310 00000020 00000020 r-- .const:ti_sysbios_gates_GateMutex_Object__DESC__C
    00000330 00000330 00000020 00000020 r-- .const:ti_sysbios_hal_Hwi_Object__DESC__C
    00000350 00000350 00000020 00000020 r-- .const:ti_sysbios_heaps_HeapMem_Object__DESC__C
    00000370 00000370 00000020 00000020 r-- .const:ti_sysbios_knl_Clock_Object__DESC__C
    00000390 00000390 00000020 00000020 r-- .const:ti_sysbios_knl_Mailbox_Object__DESC__C
    000003b0 000003b0 00000020 00000020 r-- .const:ti_sysbios_knl_Queue_Object__DESC__C
    000003d0 000003d0 00000020 00000020 r-- .const:ti_sysbios_knl_Semaphore_Object__DESC__C
    000003f0 000003f0 00000020 00000020 r-- .const:ti_sysbios_knl_Swi_Object__DESC__C
    00000410 00000410 00000020 00000020 r-- .const:ti_sysbios_knl_Task_Object__DESC__C
    00000430 00000430 00000018 00000018 r-- .const:ti_sysbios_gates_GateHwi_Object__PARAMS__C
    00000448 00000448 00000018 00000018 r-- .const:ti_sysbios_gates_GateMutex_Object__PARAMS__C
    00000460 00000460 00000018 00000018 r-- .const:ti_sysbios_knl_Queue_Object__PARAMS__C
    00000478 00000478 00000008 00000008 r-- .const:ti_sysbios_knl_Idle_funcList__C
    00000480 00000480 00000004 00000004 r-x .text.2
    00000484 00000484 00000004 00000004 r-- .const:ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C
    00000488 00000488 00000004 00000004 r-- .const:ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C
    0000048c 0000048c 00000004 00000004 r-- .const:ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C
    00000490 00000490 00000004 00000004 r-- .const:ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C
    00000494 00000494 00000004 00000004 r-- .const:ti_sysbios_family_arm_m3_Hwi_Object__count__C
    00000498 00000498 00000004 00000004 r-- .const:ti_sysbios_family_arm_m3_Hwi_Object__table__C
    0000049c 0000049c 00000004 00000004 r-- .const:ti_sysbios_family_arm_m3_Hwi_ccr__C
    000004a0 000004a0 00000004 00000004 r-- .const:ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C
    000004a4 000004a4 00000004 00000004 r-- .const:ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C
    000004a8 000004a8 00000004 00000004 r-- .const:ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C
    000004ac 000004ac 00000004 00000004 r-- .const:ti_sysbios_family_arm_m3_Hwi_priGroup__C
    000004b0 000004b0 00000004 00000004 r-- .const:ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C
    000004b4 000004b4 00000004 00000004 r-- .const:ti_sysbios_heaps_HeapMem_E_memory__C
    000004b8 000004b8 00000004 00000004 r-- .const:ti_sysbios_heaps_HeapMem_Module__gateObj__C
    000004bc 000004bc 00000004 00000004 r-- .const:ti_sysbios_heaps_HeapMem_Object__count__C
    000004c0 000004c0 00000004 00000004 r-- .const:ti_sysbios_heaps_HeapMem_Object__table__C
    000004c4 000004c4 00000004 00000004 r-- .const:ti_sysbios_heaps_HeapMem_reqAlign__C
    000004c8 000004c8 00000004 00000004 r-- .const:ti_sysbios_knl_Clock_serviceMargin__C
    000004cc 000004cc 00000004 00000004 r-- .const:ti_sysbios_knl_Mailbox_Object__count__C
    000004d0 000004d0 00000004 00000004 r-- .const:ti_sysbios_knl_Mailbox_Object__table__C
    000004d4 000004d4 00000004 00000004 r-- .const:ti_sysbios_knl_Queue_Object__count__C
    000004d8 000004d8 00000004 00000004 r-- .const:ti_sysbios_knl_Queue_Object__table__C
    000004dc 000004dc 00000004 00000004 r-- .const:ti_sysbios_knl_Swi_Object__count__C
    000004e0 000004e0 00000004 00000004 r-- .const:ti_sysbios_knl_Swi_Object__table__C
    000004e4 000004e4 00000004 00000004 r-- .const:ti_sysbios_knl_Swi_numPriorities__C
    000004e8 000004e8 00000004 00000004 r-- .const:ti_sysbios_knl_Task_Object__count__C
    000004ec 000004ec 00000004 00000004 r-- .const:ti_sysbios_knl_Task_Object__table__C
    000004f0 000004f0 00000004 00000004 r-- .const:ti_sysbios_knl_Task_allBlockedFunc__C
    000004f4 000004f4 00000004 00000004 r-- .const:ti_sysbios_knl_Task_defaultStackHeap__C
    000004f8 000004f8 00000004 00000004 r-- .const:ti_sysbios_knl_Task_defaultStackSize__C
    000004fc 000004fc 00000004 00000004 r-- .const:ti_sysbios_knl_Task_numConstructedTasks__C
    00000500 00000500 00000002 00000002 r-x .text.3
    00000502 00000502 00000002 00000002 r-- .const:ti_sysbios_family_arm_cc26xx_Timer_Module__id__C
    00000504 00000504 00000002 00000002 r-- .const:ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C
    00000506 00000506 00000002 00000002 r-- .const:ti_sysbios_family_arm_m3_Hwi_Module__id__C
    00000508 00000508 00000002 00000002 r-- .const:ti_sysbios_gates_GateHwi_Module__id__C
    0000050a 0000050a 00000002 00000002 r-- .const:ti_sysbios_gates_GateMutex_Module__id__C
    0000050c 0000050c 00000002 00000002 r-- .const:ti_sysbios_heaps_HeapMem_Module__id__C
    0000050e 0000050e 00000002 00000002 r-- .const:ti_sysbios_knl_Task_initStackFlag__C
    00000510 00000510 00000001 00000001 r-- .const:ti_sysbios_knl_Clock_tickMode__C
    00000514 00000514 00000008 00000008 r-- .const:xdc_runtime_Startup_firstFxns__C
    0000051c 0000051c 00000008 00000008 r-- .const:xdc_runtime_Startup_lastFxns__C
    00000524 00000524 00000004 00000004 r-- .const:xdc_runtime_Assert_E_assertFailed__C
    00000528 00000528 00000004 00000004 r-- .const:xdc_runtime_Error_E_memory__C
    0000052c 0000052c 00000004 00000004 r-- .const:xdc_runtime_Error_policyFxn__C
    00000530 00000530 00000004 00000004 r-- .const:xdc_runtime_IGateProvider_Interface__BASE__C
    00000534 00000534 00000004 00000004 r-- .const:xdc_runtime_IHeap_Interface__BASE__C
    00000538 00000538 00000004 00000004 r-- .const:xdc_runtime_IModule_Interface__BASE__C
    0000053c 0000053c 00000004 00000004 r-- .const:xdc_runtime_Main_Module__diagsEnabled__C
    00000540 00000540 00000004 00000004 r-- .const:xdc_runtime_Main_Module__diagsIncluded__C
    00000544 00000544 00000004 00000004 r-- .const:xdc_runtime_Main_Module__diagsMask__C
    00000548 00000548 00000004 00000004 r-- .const:xdc_runtime_Memory_defaultHeapInstance__C
    0000054c 0000054c 00000004 00000004 r-- .const:xdc_runtime_Startup_execImpl__C
    00000550 00000550 00000004 00000004 r-- .const:xdc_runtime_Startup_maxPasses__C
    00000554 00000554 00000004 00000004 r-- .const:xdc_runtime_Startup_sfxnRts__C
    00000558 00000558 00000004 00000004 r-- .const:xdc_runtime_Startup_sfxnTab__C
    0000055c 0000055c 00000004 00000004 r-- .const:xdc_runtime_Startup_startModsFxn__C
    00000560 00000560 00000004 00000004 r-- .const:xdc_runtime_SysCallback_abortFxn__C
    00000564 00000564 00000004 00000004 r-- .const:xdc_runtime_SysCallback_exitFxn__C
    00000568 00000568 00000004 00000004 r-- .const:xdc_runtime_System_abortFxn__C
    0000056c 0000056c 00000004 00000004 r-- .const:xdc_runtime_System_exitFxn__C
    00000570 00000570 00000004 00000004 r-- .const:xdc_runtime_System_maxAtexitHandlers__C
    00000574 00000574 00000004 00000004 r-- .const:xdc_runtime_Text_charTab__C
    00000578 00000578 00000004 00000004 r-- .const:xdc_runtime_Text_nameEmpty__C
    0000057c 0000057c 00000004 00000004 r-- .const:xdc_runtime_Text_nameStatic__C
    00000580 00000580 00000004 00000004 r-- .const:xdc_runtime_Text_nameUnknown__C
    00000584 00000584 00000002 00000002 r-- .const:xdc_runtime_Main_Module__id__C
    00000586 00000586 00000002 00000002 r-- .const:xdc_runtime_Memory_Module__id__C
    00000588 00000588 00000002 00000002 r-- .const:xdc_runtime_Text_charCnt__C
    0000058a 0000058a 00000002 00000002 r-- .const:xdc_runtime_Text_isLoaded__C
    0000058c 0000058c 00000001 00000001 r-- .const:xdc_runtime_Error_policy__C
    00000590 00000590 00000004 00000004 r-- .const:ti_sysbios_rom_ROM_AONRTCChannelEnable
    00000594 00000594 00000004 00000004 r-- .const:ti_sysbios_rom_ROM_AONRTCCompareValueSet
    00000598 00000598 00000004 00000004 r-- .const:ti_sysbios_rom_ROM_AONRTCCurrentCompareValueGet
    0000059c 0000059c 00000004 00000004 r-- .const:ti_sysbios_rom_ROM_AONRTCEventClear
    000005a0 000005a0 00000004 00000004 r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E
    000005a4 000005a4 00000004 00000004 r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E
    000005a8 000005a8 00000004 00000004 r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E
    000005ac 000005ac 00000004 00000004 r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_initDevice__I
    000005b0 000005b0 00000004 00000004 r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E
    000005b4 000005b4 00000004 00000004 r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I
    000005b8 000005b8 00000004 00000004 r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_start__E
    000005bc 000005bc 00000004 00000004 r-- .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E
    000005c0 000005c0 00000004 00000004 r-- .const:ti_sysbios_rom_ROM_xdc_runtime_Startup_getState__I
    000005c4 000005c4 00000004 00000004 r-- .const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_abort__E
    000005c8 000005c8 00000004 00000004 r-- .const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_exit__E
    000005cc 000005cc 00000004 00000004 r-- .const:ti_sysbios_gates_GateMutex_Instance_State_sem__O
    000005d0 000005d0 00000004 00000004 r-- .const:ti_sysbios_knl_Clock_Module_State_clockQ__O
    000005d4 000005d4 00000004 00000004 r-- .const:ti_sysbios_knl_Mailbox_Instance_State_dataQue__O
    000005d8 000005d8 00000004 00000004 r-- .const:ti_sysbios_knl_Mailbox_Instance_State_dataSem__O
    000005dc 000005dc 00000004 00000004 r-- .const:ti_sysbios_knl_Mailbox_Instance_State_freeQue__O
    000005e0 000005e0 00000004 00000004 r-- .const:ti_sysbios_knl_Mailbox_Instance_State_freeSem__O
    000005e4 000005e4 00000004 00000004 r-- .const:ti_sysbios_knl_Semaphore_Instance_State_pendQ__O
    000005e8 000005e8 00000004 00000004 r-- .const:ti_sysbios_knl_Task_Module_State_inactiveQ__O
    000005ec 000005ec 0000bdb0 0000bdb0 r-x .text.4
    0000c39c 0000c39c 00001f30 00001f30 r-- .const
    0000e2d0 0000e2d0 00000a88 00000a88 r-- .cinit
    0001ffa8 0001ffa8 00000058 00000058 r--
    0001ffa8 0001ffa8 00000058 00000058 r-- .ccfg
    20000100 20000100 0000315b 00000000 rw-
    20000100 20000100 00000044 00000000 rw- .data:ti_sysbios_knl_Task_Module__state__V
    20000144 20000144 00000034 00000000 rw- .data:ti_sysbios_family_arm_m3_Hwi_Module__state__V
    20000178 20000178 0000002c 00000000 rw- .data:ti_sysbios_knl_Clock_Module__state__V
    200001a4 200001a4 00000024 00000000 rw- .data:ti_sysbios_BIOS_Module__state__V
    200001c8 200001c8 0000001c 00000000 rw- .data:ti_sysbios_knl_Swi_Module__state__V
    200001e4 200001e4 00000008 00000000 rw- .data:ti_sysbios_family_arm_cc26xx_Timer_Module__state__V
    200001ec 200001ec 00000004 00000000 rw- .data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V
    200001f0 200001f0 00000008 00000000 rw- .data:xdc_runtime_Startup_Module__state__V
    200001f8 200001f8 00000008 00000000 rw- .data:xdc_runtime_System_Module__state__V
    20000200 20000200 00000004 00000000 rw- .data:xdc_runtime_Memory_Module__state__V
    20000208 20000208 00002351 00000000 rw- .data
    20002560 20002560 00000cfb 00000000 rw- .bss
    20004028 20004028 00000400 00000000 rw-
    20004028 20004028 00000400 00000000 rw- .stack


    SECTION ALLOCATION MAP

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

    .text.1 0 0000003c 000000c4
    0000003c 000000c4 barometerservice.obj (.text:sensor_WriteAttrCB$40)

    .const:ti_sysbios_knl_Task_Object__PARAMS__C
    * 0 00000100 0000003c
    00000100 0000003c app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_Object__PARAMS__C)

    .const:ti_sysbios_knl_Mailbox_Object__PARAMS__C
    * 0 0000013c 00000034
    0000013c 00000034 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Object__PARAMS__C)

    .const:ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C
    * 0 00000170 00000030
    00000170 00000030 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C)

    .const:ti_sysbios_hal_Hwi_Object__PARAMS__C
    * 0 000001a0 0000002c
    000001a0 0000002c app_ble_pem3.oem3 (.const:ti_sysbios_hal_Hwi_Object__PARAMS__C)

    .const:ti_sysbios_heaps_HeapMem_Module__FXNS__C
    * 0 000001cc 00000028
    000001cc 00000028 app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Module__FXNS__C)

    .const:ti_sysbios_knl_Swi_Object__PARAMS__C
    * 0 000001f4 00000028
    000001f4 00000028 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Swi_Object__PARAMS__C)

    .const:ti_sysbios_gates_GateHwi_Module__FXNS__C
    * 0 0000021c 00000024
    0000021c 00000024 app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateHwi_Module__FXNS__C)

    .const:ti_sysbios_gates_GateMutex_Module__FXNS__C
    * 0 00000240 00000024
    00000240 00000024 app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Module__FXNS__C)

    .const:ti_sysbios_heaps_HeapMem_Object__PARAMS__C
    * 0 00000264 00000024
    00000264 00000024 app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Object__PARAMS__C)

    .const:ti_sysbios_knl_Clock_Object__PARAMS__C
    * 0 00000288 00000024
    00000288 00000024 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Clock_Object__PARAMS__C)

    .const:ti_sysbios_knl_Semaphore_Object__PARAMS__C
    * 0 000002ac 00000024
    000002ac 00000024 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Semaphore_Object__PARAMS__C)

    .const:ti_sysbios_family_arm_m3_Hwi_Object__DESC__C
    * 0 000002d0 00000020
    000002d0 00000020 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Object__DESC__C)

    .const:ti_sysbios_gates_GateHwi_Object__DESC__C
    * 0 000002f0 00000020
    000002f0 00000020 app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateHwi_Object__DESC__C)

    .const:ti_sysbios_gates_GateMutex_Object__DESC__C
    * 0 00000310 00000020
    00000310 00000020 app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Object__DESC__C)

    .const:ti_sysbios_hal_Hwi_Object__DESC__C
    * 0 00000330 00000020
    00000330 00000020 app_ble_pem3.oem3 (.const:ti_sysbios_hal_Hwi_Object__DESC__C)

    .const:ti_sysbios_heaps_HeapMem_Object__DESC__C
    * 0 00000350 00000020
    00000350 00000020 app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Object__DESC__C)

    .const:ti_sysbios_knl_Clock_Object__DESC__C
    * 0 00000370 00000020
    00000370 00000020 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Clock_Object__DESC__C)

    .const:ti_sysbios_knl_Mailbox_Object__DESC__C
    * 0 00000390 00000020
    00000390 00000020 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Object__DESC__C)

    .const:ti_sysbios_knl_Queue_Object__DESC__C
    * 0 000003b0 00000020
    000003b0 00000020 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Queue_Object__DESC__C)

    .const:ti_sysbios_knl_Semaphore_Object__DESC__C
    * 0 000003d0 00000020
    000003d0 00000020 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Semaphore_Object__DESC__C)

    .const:ti_sysbios_knl_Swi_Object__DESC__C
    * 0 000003f0 00000020
    000003f0 00000020 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Swi_Object__DESC__C)

    .const:ti_sysbios_knl_Task_Object__DESC__C
    * 0 00000410 00000020
    00000410 00000020 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_Object__DESC__C)

    .const:ti_sysbios_gates_GateHwi_Object__PARAMS__C
    * 0 00000430 00000018
    00000430 00000018 app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateHwi_Object__PARAMS__C)

    .const:ti_sysbios_gates_GateMutex_Object__PARAMS__C
    * 0 00000448 00000018
    00000448 00000018 app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Object__PARAMS__C)

    .const:ti_sysbios_knl_Queue_Object__PARAMS__C
    * 0 00000460 00000018
    00000460 00000018 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Queue_Object__PARAMS__C)

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

    .text.2 0 00000480 00000004
    00000480 00000004 icall_api.obj (.text:GATTServApp_AddService)

    .const:ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C
    * 0 00000484 00000004
    00000484 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C)

    .const:ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C
    * 0 00000488 00000004
    00000488 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C)

    .const:ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C
    * 0 0000048c 00000004
    0000048c 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C)

    .const:ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C
    * 0 00000490 00000004
    00000490 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C)

    .const:ti_sysbios_family_arm_m3_Hwi_Object__count__C
    * 0 00000494 00000004
    00000494 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Object__count__C)

    .const:ti_sysbios_family_arm_m3_Hwi_Object__table__C
    * 0 00000498 00000004
    00000498 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Object__table__C)

    .const:ti_sysbios_family_arm_m3_Hwi_ccr__C
    * 0 0000049c 00000004
    0000049c 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_ccr__C)

    .const:ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C
    * 0 000004a0 00000004
    000004a0 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C)

    .const:ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C
    * 0 000004a4 00000004
    000004a4 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C)

    .const:ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C
    * 0 000004a8 00000004
    000004a8 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C)

    .const:ti_sysbios_family_arm_m3_Hwi_priGroup__C
    * 0 000004ac 00000004
    000004ac 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_priGroup__C)

    .const:ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C
    * 0 000004b0 00000004
    000004b0 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C)

    .const:ti_sysbios_heaps_HeapMem_E_memory__C
    * 0 000004b4 00000004
    000004b4 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_E_memory__C)

    .const:ti_sysbios_heaps_HeapMem_Module__gateObj__C
    * 0 000004b8 00000004
    000004b8 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Module__gateObj__C)

    .const:ti_sysbios_heaps_HeapMem_Object__count__C
    * 0 000004bc 00000004
    000004bc 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Object__count__C)

    .const:ti_sysbios_heaps_HeapMem_Object__table__C
    * 0 000004c0 00000004
    000004c0 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Object__table__C)

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

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

    .const:ti_sysbios_knl_Mailbox_Object__count__C
    * 0 000004cc 00000004
    000004cc 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Object__count__C)

    .const:ti_sysbios_knl_Mailbox_Object__table__C
    * 0 000004d0 00000004
    000004d0 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Object__table__C)

    .const:ti_sysbios_knl_Queue_Object__count__C
    * 0 000004d4 00000004
    000004d4 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Queue_Object__count__C)

    .const:ti_sysbios_knl_Queue_Object__table__C
    * 0 000004d8 00000004
    000004d8 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Queue_Object__table__C)

    .const:ti_sysbios_knl_Swi_Object__count__C
    * 0 000004dc 00000004
    000004dc 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Swi_Object__count__C)

    .const:ti_sysbios_knl_Swi_Object__table__C
    * 0 000004e0 00000004
    000004e0 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Swi_Object__table__C)

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

    .const:ti_sysbios_knl_Task_Object__count__C
    * 0 000004e8 00000004
    000004e8 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_Object__count__C)

    .const:ti_sysbios_knl_Task_Object__table__C
    * 0 000004ec 00000004
    000004ec 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_Object__table__C)

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

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

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

    .const:ti_sysbios_knl_Task_numConstructedTasks__C
    * 0 000004fc 00000004
    000004fc 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_numConstructedTasks__C)

    .text.3 0 00000500 00000002
    00000500 00000002 ble_user_config.obj (.text:DefaultAssertCback)

    .const:ti_sysbios_family_arm_cc26xx_Timer_Module__id__C
    * 0 00000502 00000002
    00000502 00000002 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_cc26xx_Timer_Module__id__C)

    .const:ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C
    * 0 00000504 00000002
    00000504 00000002 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C)

    .const:ti_sysbios_family_arm_m3_Hwi_Module__id__C
    * 0 00000506 00000002
    00000506 00000002 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Module__id__C)

    .const:ti_sysbios_gates_GateHwi_Module__id__C
    * 0 00000508 00000002
    00000508 00000002 app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateHwi_Module__id__C)

    .const:ti_sysbios_gates_GateMutex_Module__id__C
    * 0 0000050a 00000002
    0000050a 00000002 app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Module__id__C)

    .const:ti_sysbios_heaps_HeapMem_Module__id__C
    * 0 0000050c 00000002
    0000050c 00000002 app_ble_pem3.oem3 (.const:ti_sysbios_heaps_HeapMem_Module__id__C)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .const:ti_sysbios_rom_ROM_AONRTCEventClear
    * 0 0000059c 00000004
    0000059c 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_AONRTCEventClear)

    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E
    * 0 000005a0 00000004
    000005a0 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E)

    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E
    * 0 000005a4 00000004
    000005a4 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E)

    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E
    * 0 000005a8 00000004
    000005a8 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E)

    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_initDevice__I
    * 0 000005ac 00000004
    000005ac 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_initDevice__I)

    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E
    * 0 000005b0 00000004
    000005b0 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E)

    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I
    * 0 000005b4 00000004
    000005b4 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I)

    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_start__E
    * 0 000005b8 00000004
    000005b8 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_start__E)

    .const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E
    * 0 000005bc 00000004
    000005bc 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E)

    .const:ti_sysbios_rom_ROM_xdc_runtime_Startup_getState__I
    * 0 000005c0 00000004
    000005c0 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_xdc_runtime_Startup_getState__I)

    .const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_abort__E
    * 0 000005c4 00000004
    000005c4 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_abort__E)

    .const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_exit__E
    * 0 000005c8 00000004
    000005c8 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_exit__E)

    .const:ti_sysbios_gates_GateMutex_Instance_State_sem__O
    * 0 000005cc 00000004
    000005cc 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Instance_State_sem__O)

    .const:ti_sysbios_knl_Clock_Module_State_clockQ__O
    * 0 000005d0 00000004
    000005d0 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Clock_Module_State_clockQ__O)

    .const:ti_sysbios_knl_Mailbox_Instance_State_dataQue__O
    * 0 000005d4 00000004
    000005d4 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Instance_State_dataQue__O)

    .const:ti_sysbios_knl_Mailbox_Instance_State_dataSem__O
    * 0 000005d8 00000004
    000005d8 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Instance_State_dataSem__O)

    .const:ti_sysbios_knl_Mailbox_Instance_State_freeQue__O
    * 0 000005dc 00000004
    000005dc 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Instance_State_freeQue__O)

    .const:ti_sysbios_knl_Mailbox_Instance_State_freeSem__O
    * 0 000005e0 00000004
    000005e0 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Mailbox_Instance_State_freeSem__O)

    .const:ti_sysbios_knl_Semaphore_Instance_State_pendQ__O
    * 0 000005e4 00000004
    000005e4 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Semaphore_Instance_State_pendQ__O)

    .const:ti_sysbios_knl_Task_Module_State_inactiveQ__O
    * 0 000005e8 00000004
    000005e8 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Task_Module_State_inactiveQ__O)

    .text.4 0 000005ec 0000bdb0
    000005ec 000006dc I2CCC26XX.obj (.text:I2CCC26XX_hwiFxn$17)
    00000cc8 00000340 I2CCC26XX.obj (.text:I2CCC26XX_primeTransfer$17)
    00001008 00000338 rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_System_doPrint__I)
    00001340 00000310 RFCC26XX_singleMode.obj (.text:fsmActiveState$19)
    00001650 000002ec peripheral.obj (.text:gapRole_processGAPMsg$53)
    0000193c 000002e8 UARTCC26XX.obj (.text:UARTCC26XX_open)
    00001c24 00000264 I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    00001e88 0000025c UARTCC26XX.obj (.text:UARTCC26XX_write)
    000020e4 0000023c peripheral.obj (.text:GAPRole_SetParameter)
    00002320 00000228 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
    00002548 00000210 SensorS5852A.obj (.text:SensorS5852A_read)
    00002758 00000204 driverlib.lib : sys_ctrl.obj (.text:NOROM_SysCtrlSetRechargeBeforePowerDown)
    0000295c 000001f4 I2CCC26XX.obj (.text:I2CCC26XX_open)
    00002b50 000001f4 rtsv7M3_T_le_eabi.lib : ull_div_t2.obj (.text)
    00002d44 000001d4 UARTCC26XX.obj (.text:UARTCC26XX_read)
    00002f18 000001d0 drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:calibrateRcoscHf1)
    000030e8 000001cc I2CCC26XX.obj (.text:I2CCC26XX_swiFxn$17)
    000032b4 000001b0 sensortag.obj (.text:SensorTag_init$0)
    00003464 000001a8 PINCC26XX.obj (.text:PIN_init)
    0000360c 000001a8 RFCC26XX_singleMode.obj (.text:abortCmd$19)
    000037b4 00000184 drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_doCalibrate)
    00003938 00000170 RFCC26XX_singleMode.obj (.text:RF_postCmd)
    00003aa8 00000164 peripheral.obj (.text:gapRole_init$53)
    00003c0c 0000015c UARTCC26XX.obj (.text:UARTCC26XX_hwiIntFxn)
    00003d68 00000158 uart_logs.obj (.text:uartLog_doPrint$60)
    00003ec0 00000130 driverlib.lib : setup.obj (.text:NOROM_SetupAfterColdResetWakeupFromShutDownCfg3)
    00003ff0 00000128 RFCC26XX_singleMode.obj (.text:fsmSetupState$19)
    00004118 00000120 peripheral.obj (.text:GAPRole_GetParameter)
    00004238 0000011c drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_init)
    00004354 00000110 UARTCC26XX.obj (.text:UARTCC26XX_writeCancel)
    00004464 00000110 RFCC26XX_singleMode.obj (.text:hwiFxnCpe0Active$19)
    00004574 000000fc peripheral.obj (.text:gapRole_taskFxn$53)
    00004670 000000fc rtsv7M3_T_le_eabi.lib : fd_mul_t2.obj (.text)
    0000476c 000000f8 app_ble_pem3.oem3 (.text:xdc_runtime_System_printfExtend__I)
    00004864 000000f4 UARTCC26XX.obj (.text:UARTCC26XX_readCancel)
    00004958 000000f4 humidityservice.obj (.text:sensor_ReadAttrCB$46)
    00004a4c 000000ec icall.obj (.text:ICall_primWaitMatch$26)
    00004b38 000000ec RFCC26XX_singleMode.obj (.text:rf_init$19)
    00004c24 000000ec registerservice.obj (.text:sensor_WriteAttrCB$54)
    00004d10 000000e4 driverlib.lib : setup.obj (.text:NOROM_SetupAfterColdResetWakeupFromShutDownCfg2)
    00004df4 000000e0 sensortag.obj (.text:SensorTag_processStateChangeEvt$0)
    00004ed4 000000dc UARTCC26XX.obj (.text:UARTCC26XX_close)
    00004fb0 000000d4 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_releaseDependency)
    00005084 000000d0 I2CCC26XX.obj (.text:I2CCC26XX_close)
    00005154 000000d0 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_setDependency)
    00005224 000000d0 UARTCC26XX.obj (.text:UARTCC26XX_swiIntFxn)
    000052f4 000000d0 UARTCC26XX.obj (.text:readData$24)
    000053c4 000000cc driverlib.lib : setup.obj (.text:TrimAfterColdResetWakeupFromShutDown)
    00005490 000000cc UARTCC26XX.obj (.text:writeData$24)
    0000555c 000000c8 sensortag_keys.obj (.text:SensorTagKeys_processKeyLeft)
    00005624 000000c8 sensortag_keys.obj (.text:SensorTagKeys_processKeyRight)
    000056ec 000000c8 RFCC26XX_singleMode.obj (.text:fsmPowerUpState$19)
    000057b4 000000c4 humidityservice.obj (.text:sensor_WriteAttrCB$46)
    00005878 000000c4 irtempservice.obj (.text:sensor_WriteAttrCB$48)
    0000593c 000000c4 movementservice.obj (.text:sensor_WriteAttrCB$49)
    00005a00 000000c4 opticservice.obj (.text:sensor_WriteAttrCB$52)
    00005ac4 000000c4 RFCC26XX_singleMode.obj (.text:swiFxnHw$19)
    00005b88 000000c0 RFCC26XX_singleMode.obj (.text:RF_open)
    00005c48 000000c0 sensortag_mov.obj (.text:SensorTagMov_processCharChangeEvt)
    00005d08 000000c0 ioservice.obj (.text:io_WriteAttrCB$47)
    00005dc8 000000bc power_cc26xx_tirtos.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
    00005e84 000000bc UARTCC26XX.obj (.text:UARTCC26XX_initHw$24)
    00005f40 000000b4 PINCC26XX.obj (.text:PINCC26XX_setIoCfg$18)
    00005ff4 000000b0 devinfoservice.obj (.text:devInfo_ReadAttrCB$43)
    000060a4 000000a8 sensortag_io.obj (.text:SensorTagIO_processCharChangeEvt)
    0000614c 000000a4 driverlib.lib : setup.obj (.text:NOROM_SetupTrimDevice)
    000061f0 000000a0 auto_init.aem3 : auto_init.oem3 (.text)
    00006290 000000a0 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Task_setPri__E)
    00006330 0000009c rtsv7M3_T_le_eabi.lib : memcpy_t2.obj (.text)
    000063cc 0000009a rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_putSite__E)
    00006466 00000002 driverlib.lib : rfc.obj (.text:NOROM_RFCAdi3VcoLdoVoltageMode)
    00006468 00000098 PINCC26XX.obj (.text:PIN_open)
    00006500 00000098 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
    00006598 00000094 gattservapp_util.obj (.text:GATTServApp_ProcessCharCfg)
    0000662c 00000094 sensortag_opt.obj (.text:SensorTagOpt_processCharChangeEvt)
    000066c0 00000094 sensortag.obj (.text:SensorTag_taskFxn$0)
    00006754 00000094 rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_putMod__E)
    000067e8 00000090 I2CCC26XX.obj (.text:I2CCC26XX_blockingCallback$17)
    00006878 00000090 UARTCC26XX.obj (.text:UARTCC26XX_initIO$24)
    00006908 00000090 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
    00006998 00000090 UARTCC26XX.obj (.text:writeFinishedDoCallback$24)
    00006a28 0000008c devinfoservice.obj (.text:DevInfo_SetParameter)
    00006ab4 0000008c driverlib.lib : osc.obj (.text:NOROM_OSCHF_GetStartupTime)
    00006b40 00000088 I2CCC26XX.obj (.text:I2CCC26XX_cancel)
    00006bc8 00000088 sensortag_bar.obj (.text:SensorTagBar_processCharChangeEvt)
    00006c50 00000088 sensortag_register.obj (.text:SensorTagRegister_processCharChangeEvt)
    00006cd8 00000088 UARTCC26XX.obj (.text:readSemCallback$24)
    00006d60 00000088 registerservice.obj (.text:sensor_ReadAttrCB$54)
    00006de8 00000084 icall.obj (.text:ICall_heapMalloc)
    00006e6c 00000084 icall.obj (.text:ICall_primSetTimer$26)
    00006ef0 00000084 TRNGCC26XX.obj (.text:TRNGCC26XX_getNumber)
    00006f74 00000084 sensortag_register.obj (.text:readRegister$12)
    00006ff8 00000080 RFCC26XX_singleMode.obj (.text:RF_pendCmd)
    00007078 00000080 sensortag_tmp.obj (.text:SensorTagTmp_processCharChangeEvt)
    000070f8 00000080 SensorMpu9250.obj (.text:sensorMagInit$34)
    00007178 00000080 uart_logs.obj (.text:uartLog_outputFxn)
    000071f8 0000007c icall.obj (.text:ICall_createRemoteTasks)
    00007274 0000007c sensortag_hum.obj (.text:SensorTagHum_processCharChangeEvt)
    000072f0 0000007c drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
    0000736c 0000007a rtsv7M3_T_le_eabi.lib : memset_t2.obj (.text)
    000073e6 00000002 driverlib.lib : rfc.obj (.text:NOROM_RFCRTrim)
    000073e8 00000078 : setup.obj (.text:NOROM_SetupAfterColdResetWakeupFromShutDownCfg1)
    00007460 00000074 icall_cc2650.obj (.text:ICallPlatform_pwrUpdActivityCounter)
    000074d4 00000074 icall.obj (.text:ICall_primSend$26)
    00007548 00000074 drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_auxISR)
    000075bc 00000074 : PowerCC26XX_calibrateRCOSC.oem3 (.text:calibrateRcoscHf2)
    00007630 00000074 peripheral.obj (.text:gapRole_startConnUpdate$53)
    000076a4 00000072 UARTCC26XX.obj (.text:writeTxFifoFlush$24)
    00007716 00000002 RFCC26XX_singleMode.obj (.text:defaultErrCb$19)
    00007718 00000070 driverlib.lib : chipinfo.obj (.text:NOROM_ChipInfo_GetHwRevision)
    00007788 00000070 SensorI2C.obj (.text:SensorI2C_select)
    000077f8 0000006d rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_System_formatNum__I)
    00007865 00000001 --HOLE-- [fill = 0]
    00007866 00000002 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:emptyClockFunc)
    00007868 0000006c icall.obj (.text:ICall_heapInit)
    000078d4 0000006c driverlib.lib : setup.obj (.text:NOROM_SetupGetTrimForAmpcompCtrl)
    00007940 0000006c drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
    000079ac 0000006c SensorMpu9250.obj (.text:SensorMpu9250_reset)
    00007a18 0000006c RFCC26XX_singleMode.obj (.text:fsmPowerDownState$19)
    00007a84 0000006c gattservapp_util.obj (.text:gattServApp_SendNotiInd$45)
    00007af0 0000006c movementservice.obj (.text:sensor_ReadAttrCB$49)
    00007b5c 0000006a rtsv7M3_T_le_eabi.lib : copy_decompress_rle.obj (.text)
    00007bc6 00000002 : i_div0.obj (.text)
    00007bc8 00000068 driverlib.lib : setup.obj (.text:NOROM_SetupGetTrimForAnabypassValue1)
    00007c30 00000068 : sys_ctrl.obj (.text:NOROM_SysCtrl_DCDC_VoltageConditionalControl)
    00007c98 00000068 uart_logs.obj (.text:uartLog_flush)
    00007d00 00000064 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_start__E)
    00007d64 00000062 barometerservice.obj (.text:sensor_ReadAttrCB$40)
    00007dc6 00000002 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E)
    00007dc8 00000060 I2CCC26XX.obj (.text:I2CCC26XX_initIO$17)
    00007e28 00000060 icall.obj (.text:ICall_primEnroll$26)
    00007e88 00000060 drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_RCOSC_clockFunc)
    00007ee8 00000060 RFCC26XX_singleMode.obj (.text:RF_getCurrentTime)
    00007f48 00000060 sensortag_mov.obj (.text:appStateSet$9)
    00007fa8 00000060 battservice.obj (.text:battReadAttrCB$41)
    00008008 00000060 drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:updateSubSecInc)
    00008068 0000005c icall.obj (.text:ICall_primThreadServes$26)
    000080c4 0000005c driverlib.lib : osc.obj (.text:NOROM_OSCHF_AttemptToSwitchToXosc)
    00008120 0000005c : sys_ctrl.obj (.text:NOROM_SysCtrlAdjustRechargeAfterPowerDown)
    0000817c 0000005c SensorMpu9250.obj (.text:SensorMpu9250_test)
    000081d8 0000005c RFCC26XX_singleMode.obj (.text:applyRfCorePatch$19)
    00008234 0000005c RFCC26XX_singleMode.obj (.text:decActiveClientCnt$19)
    00008290 0000005c SensorMpu9250.obj (.text:sensorMpu9250WakeUp$34)
    000082ec 0000005c app_ble_pem3.oem3 (.text:xdc_runtime_Startup_getState__I)
    00008348 0000005b rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_putLab__E)
    000083a3 00000001 --HOLE-- [fill = 0]
    000083a4 0000005a irtempservice.obj (.text:sensor_ReadAttrCB$48)
    000083fe 0000005a opticservice.obj (.text:sensor_ReadAttrCB$52)
    00008458 00000058 movementservice.obj (.text:Movement_setParameter)
    000084b0 00000058 PINCC26XX.obj (.text:PIN_remove)
    00008508 00000058 drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
    00008560 00000058 UARTCC26XX.obj (.text:UARTCC26XX_control)
    000085b8 00000054 barometerservice.obj (.text:Barometer_setParameter)
    0000860c 00000054 SensorI2C.obj (.text:SensorI2C_open)
    00008660 00000054 util.obj (.text:Util_rescheduleClock)
    000086b4 00000054 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:configureXOSCHF)
    00008708 00000054 RFCC26XX_singleMode.obj (.text:fsmXOSCState$19)
    0000875c 00000054 RFCC26XX_singleMode.obj (.text:hwiFxnHw$19)
    000087b0 00000054 RFCC26XX_singleMode.obj (.text:ratChanFree$19)
    00008804 00000052 icall.obj (.text:ICall_primWait$26)
    00008856 00000002 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_nullFunc__I)
    00008858 00000050 icall_api.obj (.text:GAP_DeviceInit)
    000088a8 00000050 icall_api.obj (.text:GAP_UpdateAdvertisingData)
    000088f8 00000050 humidityservice.obj (.text:Humidity_setParameter)
    00008948 00000050 icall.obj (.text:ICall_primRegisterApp$26)
    00008998 00000050 irtempservice.obj (.text:IRTemp_setParameter)
    000089e8 00000050 driverlib.lib : setup.obj (.text:NOROM_SetupSetCacheModeAccordingToCcfgSetting)
    00008a38 00000050 opticservice.obj (.text:Optic_setParameter)
    00008a88 00000050 RFCC26XX_singleMode.obj (.text:RF_getInfo)
    00008ad8 00000050 RFCC26XX_singleMode.obj (.text:syncCb$19)
    00008b28 0000004e SensorOpt3001.obj (.text:SensorOpt3001_test)
    00008b76 0000004e ioservice.obj (.text:io_ReadAttrCB$47)
    00008bc4 0000004c icall_cc2650.obj (.text:ICallPlatform_pwrRegisterNotify)
    00008c10 0000004c icall.obj (.text:ICall_newTask$26)
    00008c5c 0000004c icall.obj (.text:ICall_primGetEntityId$26)
    00008ca8 0000004c driverlib.lib : osc.obj (.text:NOROM_OSCClockSourceSet)
    00008cf4 0000004c sensortag.obj (.text:SensorTag_setDeviceInfo$0)
    00008d40 0000004c util.obj (.text:Util_constructClock)
    00008d8c 0000004c battservice.obj (.text:battWriteAttrCB$41)
    00008dd8 0000004c RFCC26XX_singleMode.obj (.text:dispatchOpWhen$19)
    00008e24 0000004c peripheral.obj (.text:gapRole_processStackMsg$53)
    00008e70 0000004c rtsv7M3_T_le_eabi.lib : cpy_tbl.obj (.text)
    00008ebc 0000004c UARTCC26XX.obj (.text:startTxFifoEmptyClk$24)
    00008f08 0000004c rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_visitRope2__I)
    00008f54 0000004a gattservapp_util.obj (.text:GATTServApp_ProcessCCCWriteReq)
    00008f9e 00000002 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_triggerFunc__I)
    00008fa0 00000048 I2CCC26XX.obj (.text:I2CCC26XX_initHw$17)
    00008fe8 00000048 driverlib.lib : chipinfo.obj (.text:NOROM_ChipInfo_GetChipFamily)
    00009030 00000048 : ddi.obj (.text:NOROM_DDI16BitfieldWrite)
    00009078 00000048 sensortag.obj (.text:SensorTag_processCharValueChangeEvt$0)
    000090c0 00000048 battservice.obj (.text:battNotify$41)
    00009108 00000048 icall_api.obj (.text:gattIndNoti$29)
    00009150 00000048 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:notify)
    00009198 00000048 rtsv7M3_T_le_eabi.lib : fd_toi_t2.obj (.text)
    000091e0 00000048 sensortag_register.obj (.text:writeRegister$12)
    00009228 00000044 icall_api.obj (.text:GAP_TerminateLinkReq)
    0000926c 00000044 PINCC26XX.obj (.text:PIN_swi$18)
    000092b0 00000044 SensorMpu9250.obj (.text:SensorMpu9250_accSetRange)
    000092f4 00000044 sensortag_io.obj (.text:SensorTagIO_blinkLed)
    00009338 00000044 boot.aem3 : boot.oem3 (.text)
    0000937c 00000044 icall_api.obj (.text:gapSendParamAndPtrCmd$29)
    000093c0 00000044 rtsv7M3_T_le_eabi.lib : exit.obj (.text)
    00009404 00000044 SensorMpu9250.obj (.text:sensorMpu9250SetBypass$34)
    00009448 00000044 rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_write8__E)
    0000948c 00000044 : rom_sysbios.obj (.text:xdc_runtime_Text_xprintf__I)
    000094d0 00000042 icall.obj (.text:ICall_primCreateTask$26)
    00009512 00000002 app_ble_pem3.oem3 (.text:ti_sysbios_rom_cortexm_cc26xx_CC26xx_badRomRevision__E)
    00009514 00000040 peripheral.obj (.text:GAPRole_SendUpdateParam)
    00009554 00000040 peripheral.obj (.text:GAPRole_createTask)
    00009594 00000040 driverlib.lib : ddi.obj (.text:NOROM_DDI16BitfieldRead)
    000095d4 00000040 RFCC26XX_singleMode.obj (.text:RF_getRssi)
    00009614 00000040 SensorTmp007.obj (.text:SensorTmp007_enable)
    00009654 00000040 rtsv7M3_T_le_eabi.lib : u_divt2.obj (.text)
    00009694 00000040 SensorMpu9250.obj (.text:sensorMagEnable$34)
    000096d4 00000040 SensorMpu9250.obj (.text:sensorMpuSleep$34)
    00009714 00000040 rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_Module_startup__E)
    00009754 0000003c icall_api.obj (.text:GAP_GetParamValue)
    00009790 0000003c icall_api.obj (.text:GATTServApp_RegisterService)
    000097cc 0000003c icall_cc2650.obj (.text:ICallPlatform_pwrConfigACAction)
    00009808 0000003c driverlib.lib : osc.obj (.text:NOROM_OSC_HPOSCRelativeFrequencyOffsetGet)
    00009844 0000003c : rfc.obj (.text:NOROM_RFCSynthPowerDown)
    00009880 0000003c RFCC26XX_singleMode.obj (.text:RF_runCmd)
    000098bc 0000003c registerservice.obj (.text:Register_setParameter)
    000098f8 0000003c SensorI2C.obj (.text:SensorI2C_writeRead)
    00009934 0000003c SensorMpu9250.obj (.text:SensorMpu9250_accReadRange)
    00009970 0000003c sensortag_buzzer.obj (.text:SensorTagBuzzer_open)
    000099ac 0000003c sensortag_buzzer.obj (.text:SensorTagBuzzer_setFrequency)
    000099e8 0000003c sensortag.obj (.text:SensorTag_createTask)
    00009a24 0000003c RFCC26XX_singleMode.obj (.text:postDirImmCmd$19)
    00009a60 0000003c icall_api.obj (.text:profileSetParameter$29)
    00009a9c 0000003c icall_api.obj (.text:sendWaitMatchCS$29)
    00009ad8 0000003c icall_api.obj (.text:sendWaitMatchValueCS$29)
    00009b14 00000038 icall_api.obj (.text:GAPBondMgr_LinkEst)
    00009b4c 00000038 I2C.obj (.text:I2C_init)
    00009b84 00000038 icall.obj (.text:ICall_primGetMaxMSecs$26)
    00009bbc 00000038 PINCC26XX.obj (.text:PIN_setOutputEnable)
    00009bf4 00000038 SensorI2C.obj (.text:SensorI2C_write)
    00009c2c 00000038 UART.obj (.text:UART_init)
    00009c64 00000038 util.obj (.text:Util_restartClock)
    00009c9c 00000038 battservice.obj (.text:battMeasure$41)
    00009cd4 00000038 battservice.obj (.text:battNotifyLevel$41)
    00009d0c 00000038 icall_api.obj (.text:linkDB_NumConns)
    00009d44 00000038 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E)
    00009d7c 00000036 RFCC26XX_singleMode.obj (.text:updateImplicitState$19)
    00009db2 00000002 rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_defaultAbort)
    00009db4 00000034 icall_api.obj (.text:GAPBondMgr_SetParameter)
    00009de8 00000034 icall_api.obj (.text:GAP_SetParamValue)
    00009e1c 00000034 icall.obj (.text:ICall_primEntityId2ServiceId$26)
    00009e50 00000034 icall.obj (.text:ICall_primFetchMsg$26)
    00009e84 00000034 icall.obj (.text:ICall_primRegisterISR$26)
    00009eb8 00000034 icall.obj (.text:ICall_primRegisterISR_Ext$26)
    00009eec 00000034 icall.obj (.text:ICall_searchServiceEntity)
    00009f20 00000034 ioservice.obj (.text:Io_setParameter)
    00009f54 00000034 driverlib.lib : osc.obj (.text:NOROM_OSCHF_SwitchToRcOscTurnOffXosc)
    00009f88 00000034 : trng.obj (.text:NOROM_TRNGConfigure)
    00009fbc 00000034 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
    00009ff0 00000034 RFCC26XX_singleMode.obj (.text:Q_push$19)
    0000a024 00000034 registerservice.obj (.text:Register_getParameter)
    0000a058 00000034 SensorMpu9250.obj (.text:SensorMpu9250_enable)
    0000a08c 00000034 sensortag_keys.obj (.text:SensorTagKeys_processRelay)
    0000a0c0 00000034 icall_api.obj (.text:osal_snv_read)
    0000a0f4 00000034 icall_api.obj (.text:osal_snv_write)
    0000a128 00000034 icall_api.obj (.text:profileAddService$29)
    0000a15c 00000034 rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_write4__E)
    0000a190 00000032 icall_api.obj (.text:gapSendParamsCmd$29)
    0000a1c2 00000032 icall_api.obj (.text:gapSendPtrParamsCmd$29)
    0000a1f4 00000032 main.obj (.text:main)
    0000a226 00000032 icall_api.obj (.text:matchGapSetGetParamCS$29)
    0000a258 00000032 icall_api.obj (.text:matchGattCmdStatus$29)
    0000a28a 00000032 icall_api.obj (.text:matchUtilNvCS$29)
    0000a2bc 00000032 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E)
    0000a2ee 00000030 icall_cc2650.obj (.text:ICallPlatform_pwrNotify$27)
    0000a31e 00000002 rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_defaultExit)
    0000a320 00000030 icall.obj (.text:ICall_msecs2Ticks$26)
    0000a350 00000030 icall.obj (.text:ICall_searchTask$26)
    0000a380 00000030 movementservice.obj (.text:Movement_getParameter)
    0000a3b0 00000030 driverlib.lib : setup.obj (.text:NOROM_SetupSetAonRtcSubSecInc)
    0000a3e0 00000030 PINCC26XX.obj (.text:PIN_setInterrupt)
    0000a410 00000030 PINCC26XX.obj (.text:PIN_setOutputValue)
    0000a440 00000030 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_releaseConstraint)
    0000a470 00000030 : PowerCC26XX.oem3 (.text:Power_setConstraint)
    0000a4a0 00000030 SensorMpu9250.obj (.text:SensorMpu9250_powerOn)
    0000a4d0 00000030 UART.obj (.text:UART_open)
    0000a500 00000030 SensorMpu9250.obj (.text:sensorMpu9250SelectAxes$34)
    0000a530 00000030 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
    0000a560 00000030 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    0000a590 00000030 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_initDevice__I)
    0000a5c0 00000030 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I)
    0000a5f0 00000030 app_ble_pem3.oem3 (.text:xdc_runtime_LoggerCallback_Object__create__S)
    0000a620 0000002f rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_printVisFxn__I)
    0000a64f 00000001 --HOLE-- [fill = 0]
    0000a650 0000002e icall_cc2650.obj (.text:ICallPlatform_pwrDispenseImpl$27)
    0000a67e 0000002e icall_cc2650.obj (.text:ICallPlatform_pwrRequireImpl$27)
    0000a6ac 0000002e sensortag.obj (.text:ICall_fetchServiceMsg$0)
    0000a6da 0000002e peripheral.obj (.text:ICall_fetchServiceMsg$53)
    0000a708 0000002e icall.obj (.text:ICall_msgDequeue$26)
    0000a736 0000002e SensorOpt3001.obj (.text:SensorOpt3001_enable)
    0000a764 0000002e icall_api.obj (.text:matchProfileAddServiceCS$29)
    0000a792 00000002 rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_defaultPutch)
    0000a794 0000002c icall_api.obj (.text:GAPBondMgr_Register)
    0000a7c0 0000002c icall.obj (.text:ICall_heapFree)
    0000a7ec 0000002c battservice.obj (.text:ICall_malloc$41)
    0000a818 0000002c icall.obj (.text:ICall_msgEnqueue$26)
    0000a844 0000002c icall.obj (.text:ICall_primAllocMsg$26)
    0000a870 0000002c icall.obj (.text:ICall_primFetchServiceMsg$26)
    0000a89c 0000002c icall_api.obj (.text:ICall_sendServiceMsg$29)
    0000a8c8 0000002c driverlib.lib : ddi.obj (.text:NOROM_DDI32RegWrite)
    0000a8f4 0000002c : setup.obj (.text:NOROM_SetupGetTrimForRadcExtCfg)
    0000a920 0000002c PINCC26XX.obj (.text:PINCC26XX_setMux)
    0000a94c 0000002c PINCC26XX.obj (.text:PIN_setConfig)
    0000a978 0000002c SensorI2C.obj (.text:SensorI2C_writeReg)
    0000a9a4 0000002c sensortag_batt.obj (.text:SensorTagBatt_init)
    0000a9d0 0000002c RFCC26XX_singleMode.obj (.text:getCmd$19)
    0000a9fc 0000002c rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_getTicksUntilInterrupt__E)
    0000aa28 0000002c st_util.obj (.text:utilExtractUuid16)
    0000aa54 0000002c rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_write2__E)
    0000aa80 0000002a icall_api.obj (.text:ICall_waitMatch$29)
    0000aaaa 0000002a TRNGCC26XX.obj (.text:TRNGCC26XX_isParamValid)
    0000aad4 0000002a util.obj (.text:Util_enqueueMsg)
    0000aafe 0000002a icall_api.obj (.text:matchProfileCS$29)
    0000ab28 0000002a rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_System_putchar__I)
    0000ab52 00000002 --HOLE-- [fill = 0]
    0000ab54 00000028 battservice.obj (.text:Batt_AddService)
    0000ab7c 00000028 gattservapp_util.obj (.text:GATTServApp_WriteCharCfg)
    0000aba4 00000028 icall.obj (.text:ICall_init)
    0000abcc 00000028 icall.obj (.text:ICall_msgPrepend$26)
    0000abf4 00000028 sensortag.obj (.text:ICall_registerApp$0)
    0000ac1c 00000028 peripheral.obj (.text:ICall_registerApp$53)
    0000ac44 00000028 driverlib.lib : aon_batmon.obj (.text:NOROM_AONBatMonTemperatureGetDegC)
    0000ac6c 00000028 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
    0000ac94 00000028 : PowerCC26XX.oem3 (.text:Power_registerNotify)
    0000acbc 00000028 driverlib.lib : adi.obj (.text:SafeHapiVoid)
    0000ace4 00000028 SensorBmp280.obj (.text:SensorBmp280_enable)
    0000ad0c 00000028 sensortag_buzzer.obj (.text:SensorTagBuzzer_close)
    0000ad34 00000028 sensortag.obj (.text:SensorTag_enqueueMsg$0)
    0000ad5c 00000028 TRNGCC26XX.obj (.text:TRNGCC26XX_init)
    0000ad84 00000028 RFCC26XX_singleMode.obj (.text:clkPowerUpFxn$19)
    0000adac 00000028 gattservapp_util.obj (.text:gattServApp_FindCharCfgItem$45)
    0000add4 00000028 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E)
    0000adfc 00000028 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_write0__E)
    0000ae24 00000028 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_write1__E)
    0000ae4c 00000026 drivers_cc26xxware.aem3 : List.oem3 (.text:List_put)
    0000ae72 00000002 --HOLE-- [fill = 0]
    0000ae74 00000024 barometerservice.obj (.text:Barometer_getParameter)
    0000ae98 00000024 icall_api.obj (.text:GAPBondMgr_LinkTerm)
    0000aebc 00000024 I2C.obj (.text:I2C_open)
    0000aee0 00000024 icall_api.obj (.text:ICall_getLocalMsgEntityId$29)
    0000af04 00000024 icall_api.obj (.text:ICall_threadServes$29)
    0000af28 00000024 PINCC26XX.obj (.text:PINCC26XX_getPinCount)
    0000af4c 00000024 SensorMpu9250.obj (.text:SensorMpu9250_powerOff)
    0000af70 00000024 sensortag_register.obj (.text:SensorTagRegister_update)
    0000af94 00000024 drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:getTdcSemaphore)
    0000afb8 00000024 RFCC26XX_singleMode.obj (.text:hwiFxnCpe0PowerFsm$19)
    0000afdc 00000024 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_registerRTSLock__I)
    0000b000 00000024 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_removeRTSLock__I)
    0000b024 00000022 icall.obj (.text:ICall_dispatch$26)
    0000b046 00000022 sensortag.obj (.text:ICall_malloc$0)
    0000b068 00000022 util.obj (.text:ICall_malloc$14)
    0000b08a 00000022 rtsv7M3_T_le_eabi.lib : memcmp.obj (.text)
    0000b0ac 00000020 gattservapp_util.obj (.text:GATTServApp_InitCharCfg)
    0000b0cc 00000020 humidityservice.obj (.text:Humidity_getParameter)
    0000b0ec 00000020 icall_api.obj (.text:ICall_allocMsg$29)
    0000b10c 00000020 icall_api.obj (.text:ICall_getEntityId$29)
    0000b12c 00000020 devinfoservice.obj (.text:ICall_malloc$43)
    0000b14c 00000020 icall.obj (.text:ICall_primService$26)
    0000b16c 00000020 icall.obj (.text:ICall_searchService$26)
    0000b18c 00000020 irtempservice.obj (.text:IRTemp_getParameter)
    0000b1ac 00000020 driverlib.lib : rfc.obj (.text:NOROM_RFCDoorbellSendTo)
    0000b1cc 00000020 : rfc.obj (.text:NOROM_RFCRfTrimRead)
    0000b1ec 00000020 : setup.obj (.text:NOROM_SetupGetTrimForXoscHfCtl)
    0000b20c 00000020 opticservice.obj (.text:Optic_getParameter)
    0000b22c 00000020 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_unregisterNotify)
    0000b24c 00000020 sensortag_batt.obj (.text:SensorTagBatt_reset)
    0000b26c 00000020 RFCC26XX_singleMode.obj (.text:allocCmd$19)
    0000b28c 00000020 sensortag_mov.obj (.text:initCharacteristicValue$9)
    0000b2ac 00000020 rtsv7M3_T_le_eabi.lib : u_tofd_t2.obj (.text)
    0000b2cc 00000020 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsLock__I)
    0000b2ec 00000020 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_stop__E)
    0000b30c 00000020 : rom_sysbios.obj (.text:xdc_runtime_Registry_findById__E)
    0000b32c 0000001e icall.obj (.text:ICall_primSendServiceMsg$26)
    0000b34a 0000001e PINCC26XX.obj (.text:PIN_close)
    0000b368 0000001e drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_getTransitionLatency)
    0000b386 0000001e icall_api.obj (.text:waitMatchCS$29)
    0000b3a4 0000001c battservice.obj (.text:Batt_MeasLevel)
    0000b3c0 0000001c peripheral.obj (.text:GAPRole_StartDevice)
    0000b3dc 0000001c icall_api.obj (.text:GATT_bm_alloc)
    0000b3f8 0000001c icall_api.obj (.text:GATT_bm_free)
    0000b414 0000001c icall.obj (.text:ICall_initPrim$26)
    0000b430 0000001c sensortag.obj (.text:ICall_wait$0)
    0000b44c 0000001c peripheral.obj (.text:ICall_wait$53)
    0000b468 0000001c driverlib.lib : osc.obj (.text:NOROM_OSCClockSourceGet)
    0000b484 0000001c : setup.obj (.text:NOROM_SetupGetTrimForAmpcompTh2)
    0000b4a0 0000001c : setup.obj (.text:NOROM_SetupGetTrimForRcOscLfRtuneCtuneTrim)
    0000b4bc 0000001c PINCC26XX.obj (.text:PINCC26XX_setIoCfgMux$18)
    0000b4d8 0000001c PINCC26XX.obj (.text:PIN_hwi$18)
    0000b4f4 0000001c RFCC26XX_singleMode.obj (.text:RF_runDirectCmd)
    0000b510 0000001c RFCC26XX_singleMode.obj (.text:RF_runImmediateCmd)
    0000b52c 0000001c sensortag_batt.obj (.text:SensorTagBatt_processCharChangeEvt)
    0000b548 0000001c sensortag.obj (.text:SensorTag_callback$0)
    0000b564 0000001c sensortag.obj (.text:SensorTag_processAppMsg$0)
    0000b580 0000001c TRNGCC26XX.obj (.text:TRNGCC26XX_open)
    0000b59c 0000001c peripheral.obj (.text:gapRole_HandleParamUpdateNoSuccess$53)
    0000b5b8 0000001c icall_api.obj (.text:getStatusValueFromErrNo$29)
    0000b5d4 0000001c TRNGCC26XX.obj (.text:openTRNG)
    0000b5f0 0000001c rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_dynamicStub__E)
    0000b60c 0000001c : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_Instance_init__E)
    0000b628 0000001a icall_api.obj (.text:GATT_Notification)
    0000b642 0000001a icall.obj (.text:ICall_enterCSImpl)
    0000b65c 0000001a icall.obj (.text:ICall_primSetTimerMSecs$26)
    0000b676 0000001a drivers_cc26xxware.aem3 : List.oem3 (.text:List_remove)
    0000b690 0000001a util.obj (.text:Util_dequeueMsg)
    0000b6aa 0000001a icall_api.obj (.text:matchGattIndNotiCS$29)
    0000b6c4 0000001a rom_sysbios.aem3 : rom_sysbios_config.obj (.text:xdc_runtime_System_snprintf__E)
    0000b6de 00000002 --HOLE-- [fill = 0]
    0000b6e0 00000018 battservice.obj (.text:Batt_SetParameter)
    0000b6f8 00000018 peripheral.obj (.text:GAPRole_TerminateConnection)
    0000b710 00000018 I2C.obj (.text:I2C_Params_init)
    0000b728 00000018 icall_cc2650.obj (.text:ICallPlatform_pwrDispense)
    0000b740 00000018 icall_cc2650.obj (.text:ICallPlatform_pwrRequire)
    0000b758 00000018 sensortag.obj (.text:ICall_free$0)
    0000b770 00000018 util.obj (.text:ICall_free$14)
    0000b788 00000018 devinfoservice.obj (.text:ICall_free$43)
    0000b7a0 00000018 sensortag.obj (.text:ICall_freeMsg$0)
    0000b7b8 00000018 icall.obj (.text:ICall_freeMsg$26)
    0000b7d0 00000018 icall_api.obj (.text:ICall_freeMsg$29)
    0000b7e8 00000018 peripheral.obj (.text:ICall_freeMsg$53)
    0000b800 00000018 icall.obj (.text:ICall_primMalloc$26)
    0000b818 00000018 driverlib.lib : aon_rtc.obj (.text:NOROM_AONRTCCurrentCompareValueGet)
    0000b830 00000018 : chipinfo.obj (.text:NOROM_ChipInfo_GetPackageType)
    0000b848 00000018 : osc.obj (.text:NOROM_OSCHF_TurnOnXosc)
    0000b860 00000018 : rfc.obj (.text:NOROM_RFCCpeIntGetAndClear)
    0000b878 00000018 : setup.obj (.text:NOROM_SetupGetTrimForAdcShModeEn)
    0000b890 00000018 : setup.obj (.text:NOROM_SetupGetTrimForAdcShVbufEn)
    0000b8a8 00000018 : setup.obj (.text:NOROM_SetupGetTrimForAmpcompTh1)
    0000b8c0 00000018 : setup.obj (.text:NOROM_SetupGetTrimForDblrLoopFilterResetVoltage)
    0000b8d8 00000018 : setup.obj (.text:NOROM_SetupGetTrimForRcOscLfIBiasTrim)
    0000b8f0 00000018 : setup.obj (.text:NOROM_SetupGetTrimForXoscLfRegulatorAndCmirrwrRatio)
    0000b908 00000018 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_idleFunc)
    0000b920 00000018 RFCC26XX_singleMode.obj (.text:Q_pop$19)
    0000b938 00000018 sensortag_batt.obj (.text:SensorTagBatt_clockHandler$2)
    0000b950 00000018 sensortag.obj (.text:SensorTag_clockHandler$0)
    0000b968 00000018 sensortag.obj (.text:SensorTag_updateAdvertisingData)
    0000b980 00000018 UARTCC26XX.obj (.text:UARTCC26XX_init)
    0000b998 00000018 util.obj (.text:Util_constructQueue)
    0000b9b0 00000018 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:configureRFCoreClocks)
    0000b9c8 00000018 peripheral.obj (.text:gapRole_setEvent$53)
    0000b9e0 00000018 sensortag_opt.obj (.text:initCharacteristicValue$11)
    0000b9f8 00000018 sensortag_tmp.obj (.text:initCharacteristicValue$13)
    0000ba10 00000018 sensortag_bar.obj (.text:initCharacteristicValue$1)
    0000ba28 00000018 sensortag_hum.obj (.text:initCharacteristicValue$6)
    0000ba40 00000018 rtsv7M3_T_le_eabi.lib : args_main.obj (.text)
    0000ba58 00000018 : ll_mul_t2.obj (.text)
    0000ba70 00000018 RFCC26XX_singleMode.obj (.text:swiFxnFsm$19)
    0000ba88 00000018 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsUnlock__I)
    0000baa0 00000018 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Swi_or__E)
    0000bab8 00000018 app_ble_pem3.oem3 (.text:ti_sysbios_rom_cortexm_cc26xx_CC26xx_checkRevision__E)
    0000bad0 00000016 main.obj (.text:AssertHandler)
    0000bae6 00000016 icall.obj (.text:ICall_abort$26)
    0000bafc 00000016 icall.obj (.text:ICall_leaveCSImpl)
    0000bb12 00000016 icall.obj (.text:ICall_primStopTimer$26)
    0000bb28 00000016 ble_user_config.obj (.text:driverTable_fnSpinlock)
    0000bb3e 00000016 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__I)
    0000bb54 00000014 battservice.obj (.text:Batt_Register)
    0000bb68 00000014 devinfoservice.obj (.text:DevInfo_AddService)
    0000bb7c 00000014 ioservice.obj (.text:Io_getParameter)
    0000bb90 00000014 driverlib.lib : aon_rtc.obj (.text:NOROM_AONRTCCurrent64BitValueGet)
    0000bba4 00000014 : chipinfo.obj (.text:NOROM_ThisCodeIsBuiltForCC26xxHwRev22AndLater_HaltIfViolated)
    0000bbb8 00000014 PINCC26XX.obj (.text:PINCC26XX_getInputValue$18)
    0000bbcc 00000014 PINCC26XX.obj (.text:PINCC26XX_getOutputValue$18)
    0000bbe0 00000014 RFCC26XX_singleMode.obj (.text:RF_Params_init)
    0000bbf4 00000014 SensorMpu9250.obj (.text:SensorMpu9250_powerIsOn)
    0000bc08 00000014 sensortag_batt.obj (.text:SensorTagBatt_processSensorEvent)
    0000bc1c 00000014 rtsv7M3_T_le_eabi.lib : _lock.obj (.text)
    0000bc30 00000014 : strlen.obj (.text)
    0000bc44 00000014 icall_api.obj (.text:setICallCmdEvtHdr$29)
    0000bc58 00000014 app_ble_pem3.oem3 (.text:ti_sysbios_knl_Clock_doTick__I)
    0000bc6c 00000012 gattservapp_util.obj (.text:GATTServApp_FindAttr)
    0000bc7e 00000012 RFCC26XX_singleMode.obj (.text:RF_getCmdOp)
    0000bc90 00000012 app_ble_pem3.oem3 (.text:xdc_runtime_Startup_exec__I)
    0000bca2 00000002 --HOLE-- [fill = 0]
    0000bca4 00000010 RFCC26XX_singleMode.obj (.text:FsmDispatch$19)
    0000bcb4 00000010 icall_api.obj (.text:GAP_EndDiscoverable)
    0000bcc4 00000010 gattservapp_util.obj (.text:GATTServApp_ReadCharCfg)
    0000bcd4 00000010 icall_cc2650.obj (.text:ICallPlatform_pwrGetXOSCStartupTime)
    0000bce4 00000010 icall.obj (.text:ICall_primGetTickPeriod$26)
    0000bcf4 00000010 icall.obj (.text:ICall_taskEntry$26)
    0000bd04 00000010 driverlib.lib : rfc.obj (.text:NOROM_RFCRfTrimSet)
    0000bd14 00000010 : setup.obj (.text:NOROM_SetupGetTrimForXoscHfFastStart)
    0000bd24 00000010 : setup.obj (.text:NOROM_SetupGetTrimForXoscHfIbiastherm)
    0000bd34 00000010 ble_user_config.obj (.text:RegisterAssertCback)
    0000bd44 00000010 util.obj (.text:Util_isActive)
    0000bd54 00000010 I2CCC26XX.obj (.text:i2cPostNotify$17)
    0000bd64 00000010 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_post__E)
    0000bd74 00000010 UARTCC26XX.obj (.text:uartPostNotify$24)
    0000bd84 00000010 app_ble_pem3.oem3 (.text:xdc_runtime_LoggerCallback_Object__get__S)
    0000bd94 00000010 rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_putch__E)
    0000bda4 00000010 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_ready__E)
    0000bdb4 00000010 : rom_sysbios.obj (.text:xdc_runtime_System_vsnprintf__E)
    0000bdc4 0000000e icall_api.obj (.text:GATT_Indication)
    0000bdd2 0000000e icall_cc2650.obj (.text:ICallPlatform_pwrGetTransitionState)
    0000bde0 0000000e icall_cc2650.obj (.text:ICallPlatform_pwrIsStableXOSCHF)
    0000bdee 0000000e icall.obj (.text:ICall_primDisableMInt$26)
    0000bdfc 0000000e icall.obj (.text:ICall_primEnableMInt$26)
    0000be0a 0000000e icall.obj (.text:ICall_primFreeMsg$26)
    0000be18 0000000e icall.obj (.text:ICall_primGetTicks$26)
    0000be26 0000000e driverlib.lib : setup.obj (.text:NOROM_SetupSignExtendVddrTrimValue)
    0000be34 0000000e : vims.obj (.text:NOROM_VIMSModeGet)
    0000be42 0000000e SensorI2C.obj (.text:SensorI2C_readReg)
    0000be50 0000000e rtsv7M3_T_le_eabi.lib : copy_decompress_none.obj (.text:decompress:none)
    0000be5e 0000000e icall_api.obj (.text:matchGSARegisterServiceCS$29)
    0000be6c 0000000e icall_api.obj (.text:matchGapLinkEstCS$29)
    0000be7a 0000000e icall_api.obj (.text:matchLinkDBNumConnsCS$29)
    0000be88 0000000e icall_api.obj (.text:setDispatchCmdEvtHdr$29)
    0000be96 0000000e rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E)
    0000bea4 0000000c RFCC26XX_singleMode.obj (.text:FsmNextState$19)
    0000beb0 0000000c icall_api.obj (.text:GAP_MakeDiscoverable)
    0000bebc 0000000c icall_api.obj (.text:GAP_TerminateAuth)
    0000bec8 0000000c icall_api.obj (.text:GAP_UpdateLinkParamReq)
    0000bed4 0000000c icall_api.obj (.text:GAP_UpdateLinkParamReqReply)
    0000bee0 0000000c icall_api.obj (.text:GGS_SetParameter)
    0000beec 0000000c icall.obj (.text:ICall_clockFunc$26)
    0000bef8 0000000c icall.obj (.text:ICall_primDisableInt$26)
    0000bf04 0000000c icall.obj (.text:ICall_primEnableInt$26)
    0000bf10 0000000c icall.obj (.text:ICall_primFree$26)
    0000bf1c 0000000c icall.obj (.text:ICall_primSignal$26)
    0000bf28 0000000c driverlib.lib : cpu.obj (.text:NOROM_CPUcpsid)
    0000bf34 0000000c : cpu.obj (.text:NOROM_CPUcpsie)
    0000bf40 0000000c drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_getConstraintMask)
    0000bf4c 0000000c : PowerCC26XX.oem3 (.text:Power_getDependencyCount)
    0000bf58 0000000c : PowerCC26XX.oem3 (.text:Power_getTransitionState)
    0000bf64 0000000c SensorI2C.obj (.text:SensorI2C_deselect)
    0000bf70 0000000c sensortag.obj (.text:SensorTag_processGATTMsg$0)
    0000bf7c 0000000c sensortag.obj (.text:SensorTag_processStackMsg$0)
    0000bf88 0000000c sensortag.obj (.text:SensorTag_testResult)
    0000bf94 0000000c uart_logs.obj (.text:UartLog_doInit)
    0000bfa0 0000000c rtsv7M3_T_le_eabi.lib : copy_zero_init.obj (.text:decompress:ZI)
    0000bfac 0000000c icall_api.obj (.text:matchProfileSetParamCS$29)
    0000bfb8 0000000c rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_BIOS_getThreadType__E)
    0000bfc4 0000000c : rom_sysbios_config.obj (.text:ti_sysbios_hal_Hwi_Params__init__S)
    0000bfd0 0000000c : rom_sysbios.obj (.text:ti_sysbios_knl_Swi_getTrigger__E)
    0000bfdc 0000000c app_ble_pem3.oem3 (.text:xdc_runtime_Startup_reset__I)
    0000bfe8 0000000c rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Startup_rtsDone__E)
    0000bff4 0000000a I2CCC26XX.obj (.text:I2CCC26XX_init)
    0000bffe 0000000a I2C.obj (.text:I2C_close)
    0000c008 0000000a I2C.obj (.text:I2C_transfer)
    0000c012 0000000a icall_cc2650.obj (.text:ICallPlatform_pwrSwitchXOSCHF)
    0000c01c 0000000a icall.obj (.text:ICall_primE2S$26)
    0000c026 0000000a drivers_cc26xxware.aem3 : List.oem3 (.text:List_empty)
    0000c030 0000000a sensortag.obj (.text:SensorTag_charValueChangeCB)
    0000c03a 0000000a sensortag.obj (.text:SensorTag_stateChangeCB$0)
    0000c044 0000000a UART.obj (.text:UART_write)
    0000c04e 0000000a rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_disable__E)
    0000c058 0000000a : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_enable__E)
    0000c062 0000000a app_ble_pem3.oem3 (.text:xdc_runtime_Text_visitRope__I)
    0000c06c 00000008 RFCC26XX_singleMode.obj (.text:RF_flushCmd)
    0000c074 00000008 sensortag_io.obj (.text:ioChangeCB$7)
    0000c07c 00000008 sensortag_register.obj (.text:registerChangeCB$12)
    0000c084 00000008 sensortag_mov.obj (.text:sensorChangeCB$9)
    0000c08c 00000008 sensortag_opt.obj (.text:sensorConfigChangeCB$11)
    0000c094 00000008 sensortag_tmp.obj (.text:sensorConfigChangeCB$13)
    0000c09c 00000008 sensortag_bar.obj (.text:sensorConfigChangeCB$1)
    0000c0a4 00000008 sensortag_batt.obj (.text:sensorConfigChangeCB$2)
    0000c0ac 00000008 sensortag_hum.obj (.text:sensorConfigChangeCB$6)
    0000c0b4 00000008 UARTCC26XX.obj (.text:writeSemCallback$24)
    0000c0bc 00000006 icall_api.obj (.text:GGS_AddService)
    0000c0c2 00000006 I2CCC26XX.obj (.text:I2CCC26XX_control)
    0000c0c8 00000006 icall.obj (.text:ICall_mallocImpl)
    0000c0ce 00000006 driverlib.lib : cpu.obj (.text:NOROM_CPUdelay)
    0000c0d4 00000006 PINCC26XX.obj (.text:PIN_registerIntCb)
    0000c0da 00000006 UARTCC26XX.obj (.text:UARTCC26XX_readPolling)
    0000c0e0 00000006 UARTCC26XX.obj (.text:UARTCC26XX_writePolling)
    0000c0e6 00000006 rom_sysbios.aem3 : rom_sysbios.obj (.text:__xdc__init)
    0000c0ec 00000006 RFCC26XX_singleMode.obj (.text:clkInactivityFxn$19)
    0000c0f2 00000006 rtsv7M3_T_le_eabi.lib : copy_decompress_rle.obj (.text:decompress:rle24)
    0000c0f8 00000006 icall_api.obj (.text:gattAddService$29)
    0000c0fe 00000006 icall_api.obj (.text:matchBondMgrSetParamCS$29)
    0000c104 00000006 icall_api.obj (.text:matchGGSSetParamCS$29)
    0000c10a 00000006 icall_api.obj (.text:matchGapConnParamUpdateReplyCS$29)
    0000c110 00000006 icall_api.obj (.text:matchGapDeviceInitCS$29)
    0000c116 00000006 icall_api.obj (.text:matchGapEndDiscoverableCS$29)
    0000c11c 00000006 icall_api.obj (.text:matchGapGetParamCS$29)
    0000c122 00000006 icall_api.obj (.text:matchGapMakeDiscoverableCS$29)
    0000c128 00000006 icall_api.obj (.text:matchGapSetParamCS$29)
    0000c12e 00000006 icall_api.obj (.text:matchGapTerminateAuthCS$29)
    0000c134 00000006 icall_api.obj (.text:matchGapTerminateLinkReqCS$29)
    0000c13a 00000006 icall_api.obj (.text:matchGapUpdateAdvDataCS$29)
    0000c140 00000006 icall_api.obj (.text:matchGapUpdateLinkParamReqCS$29)
    0000c146 00000006 icall_api.obj (.text:matchUtilNvReadCS$29)
    0000c14c 00000006 icall_api.obj (.text:matchUtilNvWriteCS$29)
    0000c152 00000006 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_m3_Hwi_setFunc__E)
    0000c158 00000004 tirtosport.aem3 : HwiP_tirtos.oem3 (.text:HwiP_disable)
    0000c15c 00000004 icall.obj (.text:ICall_primAbort$26)
    0000c160 00000004 drivers_cc26xxware.aem3 : List.oem3 (.text:List_head)
    0000c164 00000004 : List.oem3 (.text:List_next)
    0000c168 00000004 RFCC26XX_singleMode.obj (.text:Q_peek$19)
    0000c16c 00000004 sensortag.obj (.text:SensorTag_resetAllModules$0)
    0000c170 00000004 util.obj (.text:Util_startClock)
    0000c174 00000004 util.obj (.text:Util_stopClock)
    0000c178 00000004 peripheral.obj (.text:gapRole_SetupGAP$53)
    0000c17c 00000004 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:nopResourceHandler)
    0000c180 00000004 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_getCount64__E)
    0000c184 00000004 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_isActive__E)
    0000c188 00000004 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_setPeriod__E)
    0000c18c 00000004 : rom_sysbios.obj (.text:ti_sysbios_knl_Queue_insert__E)
    0000c190 00000004 : rom_sysbios.obj (.text:xdc_runtime_LoggerCallback_defaultCreate)
    0000c194 00000004 : rom_sysbios.obj (.text:xdc_runtime_SysCallback_defaultReady)
    0000c198 00000004 : rom_sysbios.obj (.text:xdc_runtime_System_snprintf_va__F)
    0000c19c 00000008 (.tramp.xdc_runtime_Core_assignParams__I.1)
    0000c1a4 00000008 (.tramp.ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E.1)
    0000c1ac 00000008 (.tramp.ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E.1)
    0000c1b4 00000008 (.tramp.ti_sysbios_knl_Task_enable__E.1)
    0000c1bc 00000008 (.tramp.ti_sysbios_family_arm_m3_Hwi_enableFxn__E.1)
    0000c1c4 00000008 (.tramp.xdc_runtime_Startup_startMods__I.1)
    0000c1cc 00000008 (.tramp.ti_sysbios_knl_Clock_logTick__E.1)
    0000c1d4 00000008 (.tramp.ti_sysbios_BIOS_RtsGateProxy_leave__E.1)
    0000c1dc 00000008 (.tramp.ti_sysbios_knl_Queue_construct.1)
    0000c1e4 00000008 (.tramp.ti_sysbios_knl_Queue_get__E.1)
    0000c1ec 00000008 (.tramp.ti_sysbios_BIOS_RtsGateProxy_enter__E.1)
    0000c1f4 00000008 (.tramp.ti_sysbios_knl_Queue_put__E.1)
    0000c1fc 00000008 (.tramp.xdc_runtime_Core_createObject__I.1)
    0000c204 00000008 (.tramp.ti_sysbios_knl_Task_startup__E.1)
    0000c20c 00000008 (.tramp.ti_sysbios_knl_Swi_startup__E.1)
    0000c214 00000008 (.tramp.ti_sysbios_hal_Hwi_HwiProxy_startup__E.1)
    0000c21c 00000008 (.tramp.ti_sysbios_family_arm_cc26xx_Timer_startup__E.1)
    0000c224 00000008 (.tramp.xdc_runtime_System_atexit__E.1)
    0000c22c 00000008 (.tramp.ti_sysbios_BIOS_setThreadType__E.1)
    0000c234 00000008 (.tramp.ti_sysbios_BIOS_start__E.1)
    0000c23c 00000008 (.tramp.ti_sysbios_hal_Hwi_create.1)
    0000c244 00000008 (.tramp.ti_sysbios_knl_Task_construct.1)
    0000c24c 00000008 (.tramp.xdc_runtime_System_exit__E.1)
    0000c254 00000008 (.tramp.ti_sysbios_knl_Semaphore_create.1)
    0000c25c 00000008 (.tramp.ti_sysbios_knl_Task_create.1)
    0000c264 00000008 (.tramp.ti_sysbios_knl_Task_Params__init__S.1)
    0000c26c 00000008 (.tramp.ti_sysbios_knl_Clock_create.1)
    0000c274 00000008 (.tramp.ti_sysbios_knl_Clock_scheduleNextTick__E.1)
    0000c27c 00000008 (.tramp.ti_sysbios_knl_Clock_walkQueueDynamic__E.1)
    0000c284 00000008 (.tramp.ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E.1)
    0000c28c 00000008 (.tramp.ti_sysbios_knl_Queue_enqueue__E.1)
    0000c294 00000008 (.tramp.ti_sysbios_knl_Queue_empty__E.1)
    0000c29c 00000008 (.tramp.ti_sysbios_knl_Queue_remove__E.1)
    0000c2a4 00000008 (.tramp.ti_sysbios_BIOS_getCpuFreq__E.1)
    0000c2ac 00000008 (.tramp.ti_sysbios_knl_Task_sleep__E.1)
    0000c2b4 00000008 (.tramp.ti_sysbios_knl_Clock_destruct.1)
    0000c2bc 00000008 (.tramp.ti_sysbios_knl_Semaphore_destruct.1)
    0000c2c4 00000008 (.tramp.ti_sysbios_knl_Swi_destruct.1)
    0000c2cc 00000008 (.tramp.ti_sysbios_family_arm_m3_Hwi_destruct.1)
    0000c2d4 00000008 (.tramp.ti_sysbios_knl_Clock_getTicks__E.1)
    0000c2dc 00000008 (.tramp.ti_sysbios_knl_Task_self__E.1)
    0000c2e4 00000008 (.tramp.xdc_runtime_Text_ropeText__E.1)
    0000c2ec 00000008 (.tramp.xdc_runtime_System_abortSpin__E.1)
    0000c2f4 00000008 (.tramp.ti_sysbios_knl_Task_restore__E.1)
    0000c2fc 00000008 (.tramp.ti_sysbios_knl_Swi_restore__E.1)
    0000c304 00000008 (.tramp.ti_sysbios_knl_Swi_disable__E.1)
    0000c30c 00000008 (.tramp.ti_sysbios_knl_Task_disable__E.1)
    0000c314 00000008 (.tramp.ti_sysbios_knl_Semaphore_post__E.1)
    0000c31c 00000008 (.tramp.ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E.1)
    0000c324 00000008 (.tramp.ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E.1)
    0000c32c 00000008 (.tramp.ti_sysbios_knl_Semaphore_pend__E.1)
    0000c334 00000008 (.tramp.ti_sysbios_knl_Clock_construct.1)
    0000c33c 00000008 (.tramp.ti_sysbios_knl_Clock_Params__init__S.1)
    0000c344 00000008 (.tramp.ti_sysbios_knl_Semaphore_construct.1)
    0000c34c 00000008 (.tramp.ti_sysbios_knl_Semaphore_Params__init__S.1)
    0000c354 00000008 (.tramp.ti_sysbios_knl_Swi_construct.1)
    0000c35c 00000008 (.tramp.ti_sysbios_knl_Swi_Params__init__S.1)
    0000c364 00000008 (.tramp.ti_sysbios_family_arm_m3_Hwi_construct.1)
    0000c36c 00000008 (.tramp.ti_sysbios_family_arm_m3_Hwi_Params__init__S.1)
    0000c374 00000008 (.tramp.ti_sysbios_knl_Clock_start__E.1)
    0000c37c 00000008 (.tramp.ti_sysbios_knl_Clock_setTimeout__E.1)
    0000c384 00000008 (.tramp.ti_sysbios_family_arm_m3_Hwi_restoreFxn__E.1)
    0000c38c 00000008 (.tramp.ti_sysbios_family_arm_m3_Hwi_disableFxn__E.1)
    0000c394 00000008 (.tramp.ti_sysbios_knl_Swi_post__E.1)

    .const 0 0000c39c 00001f30
    0000c39c 000017c0 app_ble_pem3.oem3 (.const:xdc_runtime_Text_charTab__A)
    0000db5c 000000cc icall.obj (.const)
    0000dc28 0000004c drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.const:resourceDB)
    0000dc74 0000004c ble_user_config.obj (.const:rfDriverTable)
    0000dcc0 00000048 app_ble_pem3.oem3 (.const:.string)
    0000dd08 00000040 barometerservice.obj (.const:.string)
    0000dd48 00000040 humidityservice.obj (.const:.string)
    0000dd88 00000040 irtempservice.obj (.const:.string)
    0000ddc8 00000040 movementservice.obj (.const:.string)
    0000de08 00000040 opticservice.obj (.const:.string)
    0000de48 00000040 registerservice.obj (.const:.string)
    0000de88 00000040 UARTCC26XX.obj (.const)
    0000dec8 0000003c sensortag.obj (.const)
    0000df04 00000034 app_ble_pem3.oem3 (.const:xdc_runtime_LoggerCallback_Module__FXNS__C)
    0000df38 00000030 ioservice.obj (.const:.string)
    0000df68 00000030 board.obj (.const:BoardGpioInitTable)
    0000df98 0000002c gatt_uuid.obj (.const)
    0000dfc4 00000028 UARTCC26XX.obj (.const:UARTCC26XX_fxnTable)
    0000dfec 00000028 app_ble_pem3.oem3 (.const:xdc_runtime_Startup_sfxnTab__A)
    0000e014 00000027 ble_user_config.obj (.const:txPowerTable)
    0000e03b 00000001 --HOLE-- [fill = 0]
    0000e03c 00000024 UART.obj (.const:UART_defaultParams)
    0000e060 00000020 I2CCC26XX.obj (.const)
    0000e080 00000020 app_ble_pem3.oem3 (.const:xdc_runtime_LoggerCallback_Object__DESC__C)
    0000e0a0 0000001c app_ble_pem3.oem3 (.const:xdc_runtime_LoggerCallback_Object__PARAMS__C)
    0000e0bc 00000018 board.obj (.const:I2C_config)
    0000e0d4 00000018 board.obj (.const:UART_config)
    0000e0ec 00000018 board.obj (.const:i2cCC26xxHWAttrs)
    0000e104 00000018 board.obj (.const:uartCC26XXHWAttrs)
    0000e11c 00000014 devinfoservice.obj (.const:.string)
    0000e130 00000014 RFCC26XX_singleMode.obj (.const)
    0000e144 00000014 barometerservice.obj (.const)
    0000e158 00000014 battservice.obj (.const)
    0000e16c 00000014 ble_user_config.obj (.const)
    0000e180 00000014 devinfoservice.obj (.const)
    0000e194 00000014 humidityservice.obj (.const)
    0000e1a8 00000014 ioservice.obj (.const)
    0000e1bc 00000014 irtempservice.obj (.const)
    0000e1d0 00000014 movementservice.obj (.const)
    0000e1e4 00000014 opticservice.obj (.const)
    0000e1f8 00000014 registerservice.obj (.const)
    0000e20c 00000014 app_ble_pem3.oem3 (.const:xdc_runtime_Startup_sfxnRts__A)
    0000e220 00000010 I2C.obj (.const)
    0000e230 00000010 board.obj (.const:PowerCC26XX_config)
    0000e240 00000010 board.obj (.const:TRNGCC26XX_config)
    0000e250 00000010 app_ble_pem3.oem3 (.const:xdc_runtime_Text_nodeTab__A)
    0000e260 0000000c app_ble_pem3.oem3 (.const:xdc_runtime_Startup_firstFxns__A)
    0000e26c 00000008 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Idle_funcList__A)
    0000e274 00000004 battservice.obj (.const:.string)
    0000e278 00000004 board.obj (.const:TRNGCC26XXHWAttrs)
    0000e27c 00000004 icall_cc2650.obj (.const)
    0000e280 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Clock_tickPeriod__C)
    0000e284 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_knl_Clock_triggerClock__C)
    0000e288 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_ILogger_Interface__BASE__C)
    0000e28c 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Log_L_info__C)
    0000e290 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Log_L_warning__C)
    0000e294 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_LoggerCallback_Object__count__C)
    0000e298 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_LoggerCallback_createInstFxn__C)
    0000e29c 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_LoggerCallback_outputFxn__C)
    0000e2a0 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerFxn2__C)
    0000e2a4 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerFxn4__C)
    0000e2a8 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerFxn8__C)
    0000e2ac 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerObj__C)
    0000e2b0 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_SysCallback_putchFxn__C)
    0000e2b4 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_SysCallback_readyFxn__C)
    0000e2b8 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_System_extendFxn__C)
    0000e2bc 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Text_nodeTab__C)
    0000e2c0 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Text_visitRopeFxn__C)
    0000e2c4 00000002 SensorI2C.obj (.const)
    0000e2c6 00000002 app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module__loggerDefined__C)
    0000e2c8 00000002 app_ble_pem3.oem3 (.const:xdc_runtime_Text_registryModsLastId__C)
    0000e2ca 00000002 app_ble_pem3.oem3 (.const:xdc_runtime_Text_unnamedModsLastId__C)

    .cinit 0 0000e2d0 00000a88
    0000e2d0 000008fb (.cinit..data.load) [load image, compression = rle]
    0000ebcb 00000005 --HOLE-- [fill = 0]
    0000ebd0 0000002d (.cinit..data:ti_sysbios_family_arm_m3_Hwi_Module__state__V.load) [load image, compression = rle]
    0000ebfd 00000003 --HOLE-- [fill = 0]
    0000ec00 0000002c (.cinit..data:ti_sysbios_knl_Task_Module__state__V.load) [load image, compression = rle]
    0000ec2c 00000004 --HOLE-- [fill = 0]
    0000ec30 00000021 (.cinit..data:ti_sysbios_knl_Clock_Module__state__V.load) [load image, compression = rle]
    0000ec51 00000007 --HOLE-- [fill = 0]
    0000ec58 0000001f (.cinit..data:ti_sysbios_BIOS_Module__state__V.load) [load image, compression = rle]
    0000ec77 00000001 --HOLE-- [fill = 0]
    0000ec78 00000011 (.cinit..data:ti_sysbios_knl_Swi_Module__state__V.load) [load image, compression = rle]
    0000ec89 00000007 --HOLE-- [fill = 0]
    0000ec90 0000000d (.cinit..data:ti_sysbios_family_arm_cc26xx_Timer_Module__state__V.load) [load image, compression = rle]
    0000ec9d 00000003 --HOLE-- [fill = 0]
    0000eca0 0000000c (__TI_handler_table)
    0000ecac 00000004 --HOLE-- [fill = 0]
    0000ecb0 0000000a (.cinit..data:xdc_runtime_Memory_Module__state__V.load) [load image, compression = rle]
    0000ecba 00000006 --HOLE-- [fill = 0]
    0000ecc0 00000009 (.cinit..data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V.load) [load image, compression = rle]
    0000ecc9 00000007 --HOLE-- [fill = 0]
    0000ecd0 00000009 (.cinit..data:xdc_runtime_Startup_Module__state__V.load) [load image, compression = rle]
    0000ecd9 00000007 --HOLE-- [fill = 0]
    0000ece0 00000009 (.cinit..data:xdc_runtime_System_Module__state__V.load) [load image, compression = rle]
    0000ece9 00000007 --HOLE-- [fill = 0]
    0000ecf0 00000008 (.cinit..bss.load) [load image, compression = zero_init]
    0000ecf8 00000060 (__TI_cinit_table)

    .init_array
    * 0 00000000 00000000 UNINITIALIZED

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

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

    .data:ti_sysbios_knl_Task_Module__state__V
    * 0 20000100 00000044 UNINITIALIZED
    20000100 00000044 app_ble_pem3.oem3 (.data:ti_sysbios_knl_Task_Module__state__V)

    .data:ti_sysbios_family_arm_m3_Hwi_Module__state__V
    * 0 20000144 00000034 UNINITIALIZED
    20000144 00000034 app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module__state__V)

    .data:ti_sysbios_knl_Clock_Module__state__V
    * 0 20000178 0000002c UNINITIALIZED
    20000178 0000002c app_ble_pem3.oem3 (.data:ti_sysbios_knl_Clock_Module__state__V)

    .data:ti_sysbios_BIOS_Module__state__V
    * 0 200001a4 00000024 UNINITIALIZED
    200001a4 00000024 app_ble_pem3.oem3 (.data:ti_sysbios_BIOS_Module__state__V)

    .data:ti_sysbios_knl_Swi_Module__state__V
    * 0 200001c8 0000001c UNINITIALIZED
    200001c8 0000001c app_ble_pem3.oem3 (.data:ti_sysbios_knl_Swi_Module__state__V)

    .data:ti_sysbios_family_arm_cc26xx_Timer_Module__state__V
    * 0 200001e4 00000008 UNINITIALIZED
    200001e4 00000008 app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_cc26xx_Timer_Module__state__V)

    .data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V
    * 0 200001ec 00000004 UNINITIALIZED
    200001ec 00000004 app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V)

    .data:xdc_runtime_Startup_Module__state__V
    * 0 200001f0 00000008 UNINITIALIZED
    200001f0 00000008 app_ble_pem3.oem3 (.data:xdc_runtime_Startup_Module__state__V)

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

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

    .data 0 20000208 00002351 UNINITIALIZED
    20000208 000005b8 uart_logs.obj (.data)
    200007c0 000003b4 sensortag.obj (.data)
    20000b74 0000031c peripheral.obj (.data)
    20000e90 000002b4 sensortag_bar.obj (.data)
    20001144 000002b4 sensortag_hum.obj (.data)
    200013f8 000002b4 sensortag_tmp.obj (.data)
    200016ac 00000004 I2C.obj (.data)
    200016b0 00000230 RFCC26XX_singleMode.obj (.data)
    200018e0 000001e0 devinfoservice.obj (.data)
    20001ac0 00000110 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.data:PowerCC26XX_module)
    20001bd0 0000010c icall.obj (.data)
    20001cdc 000000e8 app_ble_pem3.oem3 (.data)
    20001dc4 000000a4 movementservice.obj (.data)
    20001e68 00000098 barometerservice.obj (.data)
    20001f00 00000094 humidityservice.obj (.data)
    20001f94 00000094 irtempservice.obj (.data)
    20002028 00000094 registerservice.obj (.data)
    200020bc 00000090 opticservice.obj (.data)
    2000214c 00000084 battservice.obj (.data)
    200021d0 00000060 ioservice.obj (.data)
    20002230 00000050 ble_user_config.obj (.data:rfRegTbl)
    20002280 0000004c sensortag_mov.obj (.data)
    200022cc 0000004c app_ble_pem3.oem3 (.data:ti_sysbios_knl_Task_Object__table__V)
    20002318 00000048 app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_cc26xx_Timer_Object__table__V)
    20002360 00000038 app_ble_pem3.oem3 (.data:ti_sysbios_gates_GateMutex_Object__table__V)
    20002398 00000034 SensorMpu9250.obj (.data)
    200023cc 00000030 sensortag_register.obj (.data)
    200023fc 00000030 app_ble_pem3.oem3 (.data:ti_sysbios_knl_Swi_Module_State_0_readyQ__A)
    2000242c 00000030 app_ble_pem3.oem3 (.data:ti_sysbios_knl_Swi_Object__table__V)
    2000245c 00000030 app_ble_pem3.oem3 (.data:ti_sysbios_knl_Task_Module_State_0_readyQ__A)
    2000248c 00000030 main.obj (.data:user0Cfg)
    200024bc 0000002c sensortag_keys.obj (.data)
    200024e8 0000002c sensortag_opt.obj (.data)
    20002514 0000000c icall_api.obj (.data)
    20002520 00000008 icall_cc2650.obj (.data)
    20002528 00000008 rtsv7M3_T_le_eabi.lib : _lock.obj (.data)
    20002530 00000008 : exit.obj (.data)
    20002538 00000008 sensortag_io.obj (.data)
    20002540 00000008 app_ble_pem3.oem3 (.data:xdc_runtime_Registry_Module__state__V)
    20002548 00000004 UART.obj (.data)
    2000254c 00000004 ble_user_config.obj (.data)
    20002550 00000004 rtsv7M3_T_le_eabi.lib : stkdepth_vars.obj (.data)
    20002554 00000004 sensortag_buzzer.obj (.data)
    20002558 00000001 TRNGCC26XX.obj (.data)

    .bss 0 20002560 00000cfb UNINITIALIZED
    20002560 00000680 app_ble_pem3.oem3 (.bss:ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A)
    20002be0 00000200 app_ble_pem3.oem3 (.bss:taskStackSection)
    20002de0 00000114 board.obj (.bss:uartCC26XXObjects)
    20002ef4 00000110 PINCC26XX.obj (.bss)
    20003004 000000e0 board.obj (.bss:i2cCC26xxObjects)
    200030e4 000000c8 app_ble_pem3.oem3 (.bss:ti_sysbios_family_arm_m3_Hwi_dispatchTable)
    200031ac 00000050 SensorI2C.obj (.bss)
    200031fc 00000028 sensortag_batt.obj (.bss)
    20003224 00000014 driverlib.lib : osc.obj (.bss:oscHfGlobals)
    20003238 00000008 SensorTmp007.obj (.bss)
    20003240 00000008 driverlib.lib : sys_ctrl.obj (.bss:powerQualGlobals)
    20003248 00000004 (.common:buf$36)
    2000324c 00000004 (.common:dispatchInUs$19)
    20003250 00000004 (.common:trngCC26XXObjects)
    20003254 00000001 (.common:bRestart$19)
    20003255 00000001 (.common:driverlib_release_0_46593)
    20003256 00000001 (.common:interface$33)
    20003257 00000001 (.common:mpuDataRdy$9)
    20003258 00000001 (.common:slaveAddr$33)
    20003259 00000001 (.common:uartRxPowerConstraint$24)
    2000325a 00000001 (.common:uartTxPowerConstraint$24)

    .vtable 0 2000325b 00000000 UNINITIALIZED

    .vtable_ram
    * 0 2000325b 00000000 UNINITIALIZED

    vtable_ram
    * 0 2000325b 00000000 UNINITIALIZED

    .sysmem 0 2000325b 00000000 UNINITIALIZED

    .nonretenvar
    * 0 2000325b 00000000 UNINITIALIZED

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

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

    xdc.meta 0 00000000 0000011e COPY SECTION
    00000000 0000011e app_ble_pem3.oem3 (xdc.meta)


    LINKER GENERATED COPY TABLES

    __TI_cinit_table @ 0000ecf8 records: 12, size/record: 8, table size: 96
    .data: load addr=0000e2d0, load size=000008fb bytes, run addr=20000208, run size=00002351 bytes, compression=rle
    .data:ti_sysbios_family_arm_m3_Hwi_Module__state__V: load addr=0000ebd0, load size=0000002d bytes, run addr=20000144, run size=00000034 bytes, compression=rle
    .data:ti_sysbios_knl_Task_Module__state__V: load addr=0000ec00, load size=0000002c bytes, run addr=20000100, run size=00000044 bytes, compression=rle
    .data:ti_sysbios_knl_Clock_Module__state__V: load addr=0000ec30, load size=00000021 bytes, run addr=20000178, run size=0000002c bytes, compression=rle
    .data:ti_sysbios_BIOS_Module__state__V: load addr=0000ec58, load size=0000001f bytes, run addr=200001a4, run size=00000024 bytes, compression=rle
    .data:ti_sysbios_knl_Swi_Module__state__V: load addr=0000ec78, load size=00000011 bytes, run addr=200001c8, run size=0000001c bytes, compression=rle
    .data:ti_sysbios_family_arm_cc26xx_Timer_Module__state__V: load addr=0000ec90, load size=0000000d bytes, run addr=200001e4, run size=00000008 bytes, compression=rle
    .data:xdc_runtime_Memory_Module__state__V: load addr=0000ecb0, load size=0000000a bytes, run addr=20000200, run size=00000004 bytes, compression=rle
    .data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V: load addr=0000ecc0, load size=00000009 bytes, run addr=200001ec, run size=00000004 bytes, compression=rle
    .data:xdc_runtime_Startup_Module__state__V: load addr=0000ecd0, load size=00000009 bytes, run addr=200001f0, run size=00000008 bytes, compression=rle
    .data:xdc_runtime_System_Module__state__V: load addr=0000ece0, load size=00000009 bytes, run addr=200001f8, run size=00000008 bytes, compression=rle
    .bss: load addr=0000ecf0, load size=00000008 bytes, run addr=20002560, run size=00000cfb bytes, compression=zero_init


    LINKER GENERATED HANDLER TABLE

    __TI_handler_table @ 0000eca0 records: 3, size/record: 4, table size: 12
    index: 0, handler: __TI_decompress_rle24
    index: 1, handler: __TI_decompress_none
    index: 2, handler: __TI_zero_init


    FAR CALL TRAMPOLINES

    callee name trampoline name
    callee addr tramp addr call addr call info
    -------------- ----------- --------- ----------------
    xdc_runtime_Core_assignParams__I $Tramp$TT$L$PI$$xdc_runtime_Core_assignParams__I
    1001c5f1 0000c19c 0000bfc8 rom_sysbios.aem3 : rom_sysbios_config.obj (.text:ti_sysbios_hal_Hwi_Params__init__S)
    ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E $Tramp$TT$L$PI$$ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E
    1001c285 0000c1a4 0000bf08 icall.obj (.text:ICall_primEnableInt$26)
    ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E $Tramp$TT$L$PI$$ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E
    1001c281 0000c1ac 0000befc icall.obj (.text:ICall_primDisableInt$26)
    ti_sysbios_knl_Task_enable__E $Tramp$TT$L$PI$$ti_sysbios_knl_Task_enable__E
    1001c243 0000c1b4 0000be02 icall.obj (.text:ICall_primEnableMInt$26)
    ti_sysbios_family_arm_m3_Hwi_enableFxn__E $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_enableFxn__E
    1001c155 0000c1bc 0000bdfe icall.obj (.text:ICall_primEnableMInt$26)
    xdc_runtime_Startup_startMods__I $Tramp$TT$L$PI$$xdc_runtime_Startup_startMods__I
    1001c30d 0000c1c4 0000bc9a app_ble_pem3.oem3 (.text:xdc_runtime_Startup_exec__I)
    ti_sysbios_knl_Clock_logTick__E $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_logTick__E
    1001be67 0000c1cc 0000bc5a app_ble_pem3.oem3 (.text:ti_sysbios_knl_Clock_doTick__I)
    ti_sysbios_BIOS_RtsGateProxy_leave__E $Tramp$TT$L$PI$$ti_sysbios_BIOS_RtsGateProxy_leave__E
    1001c24d 0000c1d4 0000ba96 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsUnlock__I)
    ti_sysbios_knl_Queue_construct $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_construct
    1001b8f5 0000c1dc 0000b9a2 util.obj (.text:Util_constructQueue)
    ti_sysbios_knl_Queue_get__E $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_get__E
    1001bf11 0000c1e4 0000b694 util.obj (.text:Util_dequeueMsg)
    ti_sysbios_BIOS_RtsGateProxy_enter__E $Tramp$TT$L$PI$$ti_sysbios_BIOS_RtsGateProxy_enter__E
    1001c249 0000c1ec 0000b2d2 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsLock__I)
    ti_sysbios_knl_Queue_put__E $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_put__E
    1001bf2d 0000c1f4 0000aaf0 util.obj (.text:Util_enqueueMsg)
    xdc_runtime_Core_createObject__I $Tramp$TT$L$PI$$xdc_runtime_Core_createObject__I
    1001c405 0000c1fc 0000a604 app_ble_pem3.oem3 (.text:xdc_runtime_LoggerCallback_Object__create__S)
    ti_sysbios_knl_Task_startup__E $Tramp$TT$L$PI$$ti_sysbios_knl_Task_startup__E
    1001c309 0000c204 0000a584 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    ti_sysbios_knl_Swi_startup__E $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_startup__E
    1001c23d 0000c20c 0000a580 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    ti_sysbios_hal_Hwi_HwiProxy_startup__E $Tramp$TT$L$PI$$ti_sysbios_hal_Hwi_HwiProxy_startup__E
    1001c28d 0000c214 0000a57c app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    ti_sysbios_family_arm_cc26xx_Timer_startup__E $Tramp$TT$L$PI$$ti_sysbios_family_arm_cc26xx_Timer_startup__E
    1001b795 0000c21c 0000a578 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    xdc_runtime_System_atexit__E $Tramp$TT$L$PI$$xdc_runtime_System_atexit__E
    1001c681 0000c224 0000a570 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__I)
    ti_sysbios_BIOS_setThreadType__E $Tramp$TT$L$PI$$ti_sysbios_BIOS_setThreadType__E
    1001c045 0000c22c 0000a53c app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
    0000bb48 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__I)
    ti_sysbios_BIOS_start__E $Tramp$TT$L$PI$$ti_sysbios_BIOS_start__E
    1001c055 0000c234 0000a21e main.obj (.text:main)
    ti_sysbios_hal_Hwi_create $Tramp$TT$L$PI$$ti_sysbios_hal_Hwi_create
    1001ab79 0000c23c 00009ea4 icall.obj (.text:ICall_primRegisterISR$26)
    00009ed8 icall.obj (.text:ICall_primRegisterISR_Ext$26)
    ti_sysbios_knl_Task_construct $Tramp$TT$L$PI$$ti_sysbios_knl_Task_construct
    1001b125 0000c244 00009582 peripheral.obj (.text:GAPRole_createTask)
    00009a14 sensortag.obj (.text:SensorTag_createTask)
    xdc_runtime_System_exit__E $Tramp$TT$L$PI$$xdc_runtime_System_exit__E
    1001c7d1 0000c24c 00009364 boot.aem3 : boot.oem3 (.text)
    0000bb4e app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__I)
    ti_sysbios_knl_Semaphore_create $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_create
    1001b5ad 0000c254 00008c34 icall.obj (.text:ICall_newTask$26)
    ti_sysbios_knl_Task_create $Tramp$TT$L$PI$$ti_sysbios_knl_Task_create
    1001ae19 0000c25c 00007232 icall.obj (.text:ICall_createRemoteTasks)
    000094fa icall.obj (.text:ICall_primCreateTask$26)
    ti_sysbios_knl_Task_Params__init__S $Tramp$TT$L$PI$$ti_sysbios_knl_Task_Params__init__S
    1001c1d9 0000c264 00007216 icall.obj (.text:ICall_createRemoteTasks)
    000094e4 icall.obj (.text:ICall_primCreateTask$26)
    00009562 peripheral.obj (.text:GAPRole_createTask)
    000099f6 sensortag.obj (.text:SensorTag_createTask)
    ti_sysbios_knl_Clock_create $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_create
    1001b3ed 0000c26c 00006e9e icall.obj (.text:ICall_primSetTimer$26)
    ti_sysbios_knl_Clock_scheduleNextTick__E $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_scheduleNextTick__E
    1001bebd 0000c274 0000657e rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
    ti_sysbios_knl_Clock_walkQueueDynamic__E $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_walkQueueDynamic__E
    1001a80d 0000c27c 00006546 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
    00006562 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
    ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E
    1001c095 0000c284 00006514 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_workFuncDynamic__E)
    0000aa0e : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_getTicksUntilInterrupt__E)
    ti_sysbios_knl_Queue_enqueue__E $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_enqueue__E
    1001c1b5 0000c28c 000062f0 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Task_setPri__E)
    0000c18c : rom_sysbios.obj (.text:ti_sysbios_knl_Queue_insert__E)
    ti_sysbios_knl_Queue_empty__E $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_empty__E
    1001c113 0000c294 000062d8 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Task_setPri__E)
    0000671c sensortag.obj (.text:SensorTag_taskFxn$0)
    ti_sysbios_knl_Queue_remove__E $Tramp$TT$L$PI$$ti_sysbios_knl_Queue_remove__E
    1001c121 0000c29c 000062d2 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Task_setPri__E)
    ti_sysbios_BIOS_getCpuFreq__E $Tramp$TT$L$PI$$ti_sysbios_BIOS_getCpuFreq__E
    1001bff9 0000c2a4 00005eda UARTCC26XX.obj (.text:UARTCC26XX_initHw$24)
    00008fa8 I2CCC26XX.obj (.text:I2CCC26XX_initHw$17)
    ti_sysbios_knl_Task_sleep__E $Tramp$TT$L$PI$$ti_sysbios_knl_Task_sleep__E
    1001a96d 0000c2ac 00005c94 sensortag_mov.obj (.text:SensorTagMov_processCharChangeEvt)
    00007130 SensorMpu9250.obj (.text:sensorMagInit$34)
    000079ea SensorMpu9250.obj (.text:SensorMpu9250_reset)
    000081a4 SensorMpu9250.obj (.text:SensorMpu9250_test)
    00009314 sensortag_io.obj (.text:SensorTagIO_blinkLed)
    00009324 sensortag_io.obj (.text:SensorTagIO_blinkLed)
    00009434 SensorMpu9250.obj (.text:sensorMpu9250SetBypass$34)
    0000a4ba SensorMpu9250.obj (.text:SensorMpu9250_powerOn)
    ti_sysbios_knl_Clock_destruct $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_destruct
    1001c2b9 0000c2b4 00004f26 UARTCC26XX.obj (.text:UARTCC26XX_close)
    ti_sysbios_knl_Semaphore_destruct $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_destruct
    1001c2e1 0000c2bc 00004f12 UARTCC26XX.obj (.text:UARTCC26XX_close)
    00004f1e UARTCC26XX.obj (.text:UARTCC26XX_close)
    000050b8 I2CCC26XX.obj (.text:I2CCC26XX_close)
    000050c4 I2CCC26XX.obj (.text:I2CCC26XX_close)
    ti_sysbios_knl_Swi_destruct $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_destruct
    1001c2e9 0000c2c4 00004f06 UARTCC26XX.obj (.text:UARTCC26XX_close)
    000050b0 I2CCC26XX.obj (.text:I2CCC26XX_close)
    ti_sysbios_family_arm_m3_Hwi_destruct $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_destruct
    1001c261 0000c2cc 00004efe UARTCC26XX.obj (.text:UARTCC26XX_close)
    000050a8 I2CCC26XX.obj (.text:I2CCC26XX_close)
    ti_sysbios_knl_Clock_getTicks__E $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_getTicks__E
    1001b6d9 0000c2d4 00004aa0 icall.obj (.text:ICall_primWaitMatch$26)
    00004b0a icall.obj (.text:ICall_primWaitMatch$26)
    0000be1c icall.obj (.text:ICall_primGetTicks$26)
    ti_sysbios_knl_Task_self__E $Tramp$TT$L$PI$$ti_sysbios_knl_Task_self__E
    1001c1e5 0000c2dc 00004a56 icall.obj (.text:ICall_primWaitMatch$26)
    00007e2c icall.obj (.text:ICall_primEnroll$26)
    0000807c icall.obj (.text:ICall_primThreadServes$26)
    00008808 icall.obj (.text:ICall_primWait$26)
    0000894c icall.obj (.text:ICall_primRegisterApp$26)
    00008c60 icall.obj (.text:ICall_primGetEntityId$26)
    00009e54 icall.obj (.text:ICall_primFetchMsg$26)
    xdc_runtime_Text_ropeText__E $Tramp$TT$L$PI$$xdc_runtime_Text_ropeText__E
    1001c7e9 0000c2e4 00003de2 uart_logs.obj (.text:uartLog_doPrint$60)
    00008f24 rom_sysbios.aem3 : rom_sysbios.obj (.text:xdc_runtime_Text_visitRope2__I)
    00008f32 : rom_sysbios.obj (.text:xdc_runtime_Text_visitRope2__I)
    xdc_runtime_System_abortSpin__E $Tramp$TT$L$PI$$xdc_runtime_System_abortSpin__E
    1001c899 0000c2ec 00003892 drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_doCalibrate)
    00007eaa : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_RCOSC_clockFunc)
    ti_sysbios_knl_Task_restore__E $Tramp$TT$L$PI$$ti_sysbios_knl_Task_restore__E
    1001ba49 0000c2f4 00002508 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
    0000631e rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Task_setPri__E)
    00007256 icall.obj (.text:ICall_createRemoteTasks)
    0000bb0c icall.obj (.text:ICall_leaveCSImpl)
    ti_sysbios_knl_Swi_restore__E $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_restore__E
    1001b5e1 0000c2fc 000024fe drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
    0000376e RFCC26XX_singleMode.obj (.text:abortCmd$19)
    00007010 RFCC26XX_singleMode.obj (.text:RF_pendCmd)
    0000703c RFCC26XX_singleMode.obj (.text:RF_pendCmd)
    00007058 RFCC26XX_singleMode.obj (.text:RF_pendCmd)
    ti_sysbios_knl_Swi_disable__E $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_disable__E
    1001c0d5 0000c304 0000235a drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
    0000374c RFCC26XX_singleMode.obj (.text:abortCmd$19)
    00006ffe RFCC26XX_singleMode.obj (.text:RF_pendCmd)
    0000a532 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
    ti_sysbios_knl_Task_disable__E $Tramp$TT$L$PI$$ti_sysbios_knl_Task_disable__E
    1001c0f5 0000c30c 00002342 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_sleep)
    00006298 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Task_setPri__E)
    00007200 icall.obj (.text:ICall_createRemoteTasks)
    0000a536 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__I)
    0000b644 icall.obj (.text:ICall_enterCSImpl)
    0000bdf0 icall.obj (.text:ICall_primDisableMInt$26)
    ti_sysbios_knl_Semaphore_post__E $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_post__E
    1001ac41 0000c314 00001dcc I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    00004b28 icall.obj (.text:ICall_primWaitMatch$26)
    000055c0 sensortag_keys.obj (.text:SensorTagKeys_processKeyLeft)
    00005688 sensortag_keys.obj (.text:SensorTagKeys_processKeyRight)
    000064ee PINCC26XX.obj (.text:PIN_open)
    0000682a I2CCC26XX.obj (.text:I2CCC26XX_blockingCallback$17)
    00006d1a UARTCC26XX.obj (.text:readSemCallback$24)
    00007532 icall.obj (.text:ICall_primSend$26)
    00007a38 RFCC26XX_singleMode.obj (.text:fsmPowerDownState$19)
    00008b20 RFCC26XX_singleMode.obj (.text:syncCb$19)
    0000a0b0 sensortag_keys.obj (.text:SensorTagKeys_processRelay)
    0000aaf8 util.obj (.text:Util_enqueueMsg)
    0000b942 sensortag_batt.obj (.text:SensorTagBatt_clockHandler$2)
    0000b95e sensortag.obj (.text:SensorTag_clockHandler$0)
    0000b9d6 peripheral.obj (.text:gapRole_setEvent$53)
    0000bf20 icall.obj (.text:ICall_primSignal$26)
    0000bf68 SensorI2C.obj (.text:SensorI2C_deselect)
    0000c0b8 UARTCC26XX.obj (.text:writeSemCallback$24)
    ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E
    1001b2dd 0000c31c 00001c96 I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    0000578a RFCC26XX_singleMode.obj (.text:fsmPowerUpState$19)
    ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E
    1001b299 0000c324 00001c86 I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    ti_sysbios_knl_Semaphore_pend__E $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_pend__E
    1001a0cd 0000c32c 00001c80 I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    00001cfa I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    00001f14 UARTCC26XX.obj (.text:UARTCC26XX_write)
    00001f80 UARTCC26XX.obj (.text:UARTCC26XX_write)
    00002dbe UARTCC26XX.obj (.text:UARTCC26XX_read)
    00004ab4 icall.obj (.text:ICall_primWaitMatch$26)
    0000647c PINCC26XX.obj (.text:PIN_open)
    00007048 RFCC26XX_singleMode.obj (.text:RF_pendCmd)
    000076e8 UARTCC26XX.obj (.text:writeTxFifoFlush$24)
    000077a0 SensorI2C.obj (.text:SensorI2C_select)
    00008848 icall.obj (.text:ICall_primWait$26)
    ti_sysbios_knl_Clock_construct $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_construct
    1001b579 0000c334 00001adc UARTCC26XX.obj (.text:UARTCC26XX_open)
    0000427e drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_init)
    0000428c : PowerCC26XX.oem3 (.text:Power_init)
    0000429a : PowerCC26XX.oem3 (.text:Power_init)
    00004bdc RFCC26XX_singleMode.obj (.text:rf_init$19)
    00005c34 RFCC26XX_singleMode.obj (.text:RF_open)
    00007984 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
    00008d80 util.obj (.text:Util_constructClock)
    ti_sysbios_knl_Clock_Params__init__S $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_Params__init__S
    1001c185 0000c33c 00001ac4 UARTCC26XX.obj (.text:UARTCC26XX_open)
    00004266 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_init)
    00005c24 RFCC26XX_singleMode.obj (.text:RF_open)
    00006e8a icall.obj (.text:ICall_primSetTimer$26)
    0000796c drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
    00008d56 util.obj (.text:Util_constructClock)
    ti_sysbios_knl_Semaphore_construct $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_construct
    1001b709 0000c344 00001aa0 UARTCC26XX.obj (.text:UARTCC26XX_open)
    00001ab4 UARTCC26XX.obj (.text:UARTCC26XX_open)
    00002a0a I2CCC26XX.obj (.text:I2CCC26XX_open)
    00002a1a I2CCC26XX.obj (.text:I2CCC26XX_open)
    0000352c PINCC26XX.obj (.text:PIN_init)
    00005c18 RFCC26XX_singleMode.obj (.text:RF_open)
    0000862e SensorI2C.obj (.text:SensorI2C_open)
    ti_sysbios_knl_Semaphore_Params__init__S $Tramp$TT$L$PI$$ti_sysbios_knl_Semaphore_Params__init__S
    1001c1c1 0000c34c 00001a8a UARTCC26XX.obj (.text:UARTCC26XX_open)
    000029fa I2CCC26XX.obj (.text:I2CCC26XX_open)
    00003518 PINCC26XX.obj (.text:PIN_init)
    00005c08 RFCC26XX_singleMode.obj (.text:RF_open)
    0000861a SensorI2C.obj (.text:SensorI2C_open)
    ti_sysbios_knl_Swi_construct $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_construct
    1001b085 0000c354 00001a7e UARTCC26XX.obj (.text:UARTCC26XX_open)
    000029ee I2CCC26XX.obj (.text:I2CCC26XX_open)
    000035c2 PINCC26XX.obj (.text:PIN_init)
    00004b68 RFCC26XX_singleMode.obj (.text:rf_init$19)
    00004baa RFCC26XX_singleMode.obj (.text:rf_init$19)
    ti_sysbios_knl_Swi_Params__init__S $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_Params__init__S
    1001c1cd 0000c35c 00001a68 UARTCC26XX.obj (.text:UARTCC26XX_open)
    000029da I2CCC26XX.obj (.text:I2CCC26XX_open)
    000035b0 PINCC26XX.obj (.text:PIN_init)
    00004b54 RFCC26XX_singleMode.obj (.text:rf_init$19)
    00004b9a RFCC26XX_singleMode.obj (.text:rf_init$19)
    ti_sysbios_family_arm_m3_Hwi_construct $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_construct
    1001af29 0000c364 00001a5c UARTCC26XX.obj (.text:UARTCC26XX_open)
    000029ce I2CCC26XX.obj (.text:I2CCC26XX_open)
    000035a4 PINCC26XX.obj (.text:PIN_init)
    00004b8e RFCC26XX_singleMode.obj (.text:rf_init$19)
    00004bce RFCC26XX_singleMode.obj (.text:rf_init$19)
    00007994 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
    ti_sysbios_family_arm_m3_Hwi_Params__init__S $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_Params__init__S
    1001c13d 0000c36c 00001a44 UARTCC26XX.obj (.text:UARTCC26XX_open)
    000029b6 I2CCC26XX.obj (.text:I2CCC26XX_open)
    0000358e PINCC26XX.obj (.text:PIN_init)
    00004b74 RFCC26XX_singleMode.obj (.text:rf_init$19)
    00004bb6 RFCC26XX_singleMode.obj (.text:rf_init$19)
    ti_sysbios_knl_Clock_start__E $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_start__E
    1001bfe3 0000c374 00001598 RFCC26XX_singleMode.obj (.text:fsmActiveState$19)
    00003910 drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_doCalibrate)
    00003a40 RFCC26XX_singleMode.obj (.text:RF_postCmd)
    00004318 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_init)
    00005e0c power_cc26xx_tirtos.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
    0000695a drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
    00006a12 UARTCC26XX.obj (.text:writeFinishedDoCallback$24)
    00006ee2 icall.obj (.text:ICall_primSetTimer$26)
    00007328 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
    0000827a RFCC26XX_singleMode.obj (.text:decActiveClientCnt$19)
    000086a8 util.obj (.text:Util_rescheduleClock)
    000086f2 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:configureXOSCHF)
    00008738 RFCC26XX_singleMode.obj (.text:fsmXOSCState$19)
    00008efa UARTCC26XX.obj (.text:startTxFifoEmptyClk$24)
    00009c90 util.obj (.text:Util_restartClock)
    0000b2fe rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Clock_stop__E)
    0000c170 util.obj (.text:Util_startClock)
    ti_sysbios_knl_Clock_setTimeout__E $Tramp$TT$L$PI$$ti_sysbios_knl_Clock_setTimeout__E
    1001c2c1 0000c37c 00001590 RFCC26XX_singleMode.obj (.text:fsmActiveState$19)
    00003a38 RFCC26XX_singleMode.obj (.text:RF_postCmd)
    00004312 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_init)
    00005e06 power_cc26xx_tirtos.aem3 : PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
    00006954 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
    00006a0c UARTCC26XX.obj (.text:writeFinishedDoCallback$24)
    00006edc icall.obj (.text:ICall_primSetTimer$26)
    00007322 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
    00008274 RFCC26XX_singleMode.obj (.text:decActiveClientCnt$19)
    0000868e util.obj (.text:Util_rescheduleClock)
    000086ec drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:configureXOSCHF)
    00008732 RFCC26XX_singleMode.obj (.text:fsmXOSCState$19)
    00008ef4 UARTCC26XX.obj (.text:startTxFifoEmptyClk$24)
    00009c8a util.obj (.text:Util_restartClock)
    ti_sysbios_family_arm_m3_Hwi_restoreFxn__E $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_restoreFxn__E
    1001c219 0000c384 0000155a RFCC26XX_singleMode.obj (.text:fsmActiveState$19)
    000015ce RFCC26XX_singleMode.obj (.text:fsmActiveState$19)
    0000196c UARTCC26XX.obj (.text:UARTCC26XX_open)
    00001a34 UARTCC26XX.obj (.text:UARTCC26XX_open)
    00001b2a UARTCC26XX.obj (.text:UARTCC26XX_open)
    00001c5a I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    00001c6c I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    00001ec4 UARTCC26XX.obj (.text:UARTCC26XX_write)
    00001ee0 UARTCC26XX.obj (.text:UARTCC26XX_write)
    00001f3e UARTCC26XX.obj (.text:UARTCC26XX_write)
    00001fb4 UARTCC26XX.obj (.text:UARTCC26XX_write)
    00001ffc UARTCC26XX.obj (.text:UARTCC26XX_write)
    00002978 I2CCC26XX.obj (.text:I2CCC26XX_open)
    00002986 I2CCC26XX.obj (.text:I2CCC26XX_open)
    00002d78 UARTCC26XX.obj (.text:UARTCC26XX_read)
    00002d94 UARTCC26XX.obj (.text:UARTCC26XX_read)
    00002de8 UARTCC26XX.obj (.text:UARTCC26XX_read)
    00002e3a UARTCC26XX.obj (.text:UARTCC26XX_read)
    00003680 RFCC26XX_singleMode.obj (.text:abortCmd$19)
    000036a8 RFCC26XX_singleMode.obj (.text:abortCmd$19)
    000036dc RFCC26XX_singleMode.obj (.text:abortCmd$19)
    00003760 RFCC26XX_singleMode.obj (.text:abortCmd$19)
    00003790 RFCC26XX_singleMode.obj (.text:abortCmd$19)
    000039e8 RFCC26XX_singleMode.obj (.text:RF_postCmd)
    00003a1a RFCC26XX_singleMode.obj (.text:RF_postCmd)
    00003a86 RFCC26XX_singleMode.obj (.text:RF_postCmd)
    0000436e UARTCC26XX.obj (.text:UARTCC26XX_writeCancel)
    00004378 UARTCC26XX.obj (.text:UARTCC26XX_writeCancel)
    000043ba UARTCC26XX.obj (.text:UARTCC26XX_writeCancel)
    0000487e UARTCC26XX.obj (.text:UARTCC26XX_readCancel)
    000048ac UARTCC26XX.obj (.text:UARTCC26XX_readCancel)
    00004902 UARTCC26XX.obj (.text:UARTCC26XX_readCancel)
    00004f32 UARTCC26XX.obj (.text:UARTCC26XX_close)
    0000506a drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_releaseDependency)
    000050d8 I2CCC26XX.obj (.text:I2CCC26XX_close)
    0000520a drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_setDependency)
    00005248 UARTCC26XX.obj (.text:UARTCC26XX_swiIntFxn)
    00005b16 RFCC26XX_singleMode.obj (.text:swiFxnHw$19)
    00005b34 RFCC26XX_singleMode.obj (.text:swiFxnHw$19)
    00005bc0 RFCC26XX_singleMode.obj (.text:RF_open)
    00005bce RFCC26XX_singleMode.obj (.text:RF_open)
    00005fdc PINCC26XX.obj (.text:PINCC26XX_setIoCfg$18)
    00006982 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
    000069ce UARTCC26XX.obj (.text:writeFinishedDoCallback$24)
    00006bb8 I2CCC26XX.obj (.text:I2CCC26XX_cancel)
    00006f5a TRNGCC26XX.obj (.text:TRNGCC26XX_getNumber)
    000071ec uart_logs.obj (.text:uartLog_outputFxn)
    00007ce6 uart_logs.obj (.text:uartLog_flush)
    00007efa RFCC26XX_singleMode.obj (.text:RF_getCurrentTime)
    00007f02 RFCC26XX_singleMode.obj (.text:RF_getCurrentTime)
    00008280 RFCC26XX_singleMode.obj (.text:decActiveClientCnt$19)
    0000852e drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
    0000859a UARTCC26XX.obj (.text:UARTCC26XX_control)
    000087f6 RFCC26XX_singleMode.obj (.text:ratChanFree$19)
    00008aca RFCC26XX_singleMode.obj (.text:RF_getInfo)
    000095f4 RFCC26XX_singleMode.obj (.text:RF_getRssi)
    00009a40 RFCC26XX_singleMode.obj (.text:postDirImmCmd$19)
    00009a54 RFCC26XX_singleMode.obj (.text:postDirImmCmd$19)
    00009be6 PINCC26XX.obj (.text:PIN_setOutputEnable)
    00009fe0 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
    0000a01c RFCC26XX_singleMode.obj (.text:Q_push$19)
    0000a464 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_releaseConstraint)
    0000a494 : PowerCC26XX.oem3 (.text:Power_setConstraint)
    0000ac8a : PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
    0000ad76 TRNGCC26XX.obj (.text:TRNGCC26XX_init)
    0000ae6c drivers_cc26xxware.aem3 : List.oem3 (.text:List_put)
    0000b240 : PowerCC26XX.oem3 (.text:Power_unregisterNotify)
    0000b58e TRNGCC26XX.obj (.text:TRNGCC26XX_open)
    0000b930 RFCC26XX_singleMode.obj (.text:Q_pop$19)
    0000bb04 icall.obj (.text:ICall_leaveCSImpl)
    ti_sysbios_family_arm_m3_Hwi_disableFxn__E $Tramp$TT$L$PI$$ti_sysbios_family_arm_m3_Hwi_disableFxn__E
    1001c149 0000c38c 00001534 RFCC26XX_singleMode.obj (.text:fsmActiveState$19)
    000015ba RFCC26XX_singleMode.obj (.text:fsmActiveState$19)
    00001950 UARTCC26XX.obj (.text:UARTCC26XX_open)
    00001a2e UARTCC26XX.obj (.text:UARTCC26XX_open)
    00001c46 I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    00001e9c UARTCC26XX.obj (.text:UARTCC26XX_write)
    00001ec8 UARTCC26XX.obj (.text:UARTCC26XX_write)
    00001f2a UARTCC26XX.obj (.text:UARTCC26XX_write)
    00001fa0 UARTCC26XX.obj (.text:UARTCC26XX_write)
    0000296c I2CCC26XX.obj (.text:I2CCC26XX_open)
    00002d58 UARTCC26XX.obj (.text:UARTCC26XX_read)
    00002d7c UARTCC26XX.obj (.text:UARTCC26XX_read)
    00002dd4 UARTCC26XX.obj (.text:UARTCC26XX_read)
    00003620 RFCC26XX_singleMode.obj (.text:abortCmd$19)
    00003944 RFCC26XX_singleMode.obj (.text:RF_postCmd)
    000039fc RFCC26XX_singleMode.obj (.text:RF_postCmd)
    0000435e UARTCC26XX.obj (.text:UARTCC26XX_writeCancel)
    000043a4 UARTCC26XX.obj (.text:UARTCC26XX_writeCancel)
    0000486e UARTCC26XX.obj (.text:UARTCC26XX_readCancel)
    00004896 UARTCC26XX.obj (.text:UARTCC26XX_readCancel)
    00004f2a UARTCC26XX.obj (.text:UARTCC26XX_close)
    00004fb6 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_releaseDependency)
    000050d0 I2CCC26XX.obj (.text:I2CCC26XX_close)
    0000515a drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_setDependency)
    0000522e UARTCC26XX.obj (.text:UARTCC26XX_swiIntFxn)
    00005ac6 RFCC26XX_singleMode.obj (.text:swiFxnHw$19)
    00005bb8 RFCC26XX_singleMode.obj (.text:RF_open)
    00005fbc PINCC26XX.obj (.text:PINCC26XX_setIoCfg$18)
    0000690c drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
    000069b6 UARTCC26XX.obj (.text:writeFinishedDoCallback$24)
    00006b50 I2CCC26XX.obj (.text:I2CCC26XX_cancel)
    00006ef6 TRNGCC26XX.obj (.text:TRNGCC26XX_getNumber)
    0000717e uart_logs.obj (.text:uartLog_outputFxn)
    00007cae uart_logs.obj (.text:uartLog_flush)
    00007eea RFCC26XX_singleMode.obj (.text:RF_getCurrentTime)
    00008238 RFCC26XX_singleMode.obj (.text:decActiveClientCnt$19)
    0000851a drivers_cc26xxware.aem3 : PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
    0000857e UARTCC26XX.obj (.text:UARTCC26XX_control)
    000087b4 RFCC26XX_singleMode.obj (.text:ratChanFree$19)
    00008a8e RFCC26XX_singleMode.obj (.text:RF_getInfo)
    000095e4 RFCC26XX_singleMode.obj (.text:RF_getRssi)
    00009a28 RFCC26XX_singleMode.obj (.text:postDirImmCmd$19)
    00009bd4 PINCC26XX.obj (.text:PIN_setOutputEnable)
    00009fbe drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
    00009ffe RFCC26XX_singleMode.obj (.text:Q_push$19)
    0000a006 RFCC26XX_singleMode.obj (.text:Q_push$19)
    0000a444 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_releaseConstraint)
    0000a474 : PowerCC26XX.oem3 (.text:Power_setConstraint)
    0000ac6e : PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
    0000ad5e TRNGCC26XX.obj (.text:TRNGCC26XX_init)
    0000b230 drivers_cc26xxware.aem3 : PowerCC26XX.oem3 (.text:Power_unregisterNotify)
    0000b582 TRNGCC26XX.obj (.text:TRNGCC26XX_open)
    0000b64e icall.obj (.text:ICall_enterCSImpl)
    0000b924 RFCC26XX_singleMode.obj (.text:Q_pop$19)
    0000bdf4 icall.obj (.text:ICall_primDisableMInt$26)
    0000c158 tirtosport.aem3 : HwiP_tirtos.oem3 (.text:HwiP_disable)
    ti_sysbios_knl_Swi_post__E $Tramp$TT$L$PI$$ti_sysbios_knl_Swi_post__E
    1001b321 0000c394 00000638 I2CCC26XX.obj (.text:I2CCC26XX_hwiFxn$17)
    00000a02 I2CCC26XX.obj (.text:I2CCC26XX_hwiFxn$17)
    00001dc6 I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    000031b6 I2CCC26XX.obj (.text:I2CCC26XX_swiFxn$17)
    00003ca8 UARTCC26XX.obj (.text:UARTCC26XX_hwiIntFxn)
    0000bab4 rom_sysbios.aem3 : rom_sysbios.obj (.text:ti_sysbios_knl_Swi_or__E)
    0000bc62 app_ble_pem3.oem3 (.text:ti_sysbios_knl_Clock_doTick__I)

    [64 trampolines]
    [341 trampoline calls]


    GLOBAL SYMBOLS: SORTED ALPHABETICALLY BY Name

    address name
    ------- ----
    10014c00 A1_rw
    10019ffe A2_rw
    10019ffc A3_rw
    20004f2c A4_rw
    20004f7c ACCX
    20004f80 ACCY
    20004f84 ACCZ
    10015229 ATOMICPATTERN
    10016c29 AddRoundKeySubBytes_Sw
    10018a19 AesCcm_authEncrypt_Sw
    10018a35 AesCcm_decryptAuth_Sw
    10018b09 AesCcm_getNumBlocks_Sw
    10018ac5 Aes_decrypt_Sw
    10018a99 Aes_encrypt_Sw
    0000bad1 AssertHandler
    0000ae75 Barometer_getParameter
    000085b9 Barometer_setParameter
    0000ab55 Batt_AddService
    0000b3a5 Batt_MeasLevel
    0000bb55 Batt_Register
    0000b6e1 Batt_SetParameter
    0000df68 BoardGpioInitTable
    000093c1 C$$EXIT
    20004f2c COMMON_RAM_BASE_ADDR
    10014c01 COMMON_ROM_BASE_ADDR
    10015a6d COPY
    00000501 DefaultAssertCback
    0000bb69 DevInfo_AddService
    00006a29 DevInfo_SetParameter
    10017959 ECC_allocWorkzone
    10017961 ECC_setWin
    10017969 ECDSA_sign
    10017b01 ECDSA_verif
    10015a11 EXPORTOPERAND
    20004f78 EXPW
    20004f6c EXPX
    20004f70 EXPY
    20004f74 EXPZ
    10016f58 FFMult2
    10017058 FFMult3
    10016d05 FFMult_Sw
    10018d6c Fill1
    00009b15 GAPBondMgr_LinkEst
    0000ae99 GAPBondMgr_LinkTerm
    0000a795 GAPBondMgr_Register
    00009db5 GAPBondMgr_SetParameter
    00004119 GAPRole_GetParameter
    00009515 GAPRole_SendUpdateParam
    000020e5 GAPRole_SetParameter
    0000b3c1 GAPRole_StartDevice
    0000b6f9 GAPRole_TerminateConnection
    00009555 GAPRole_createTask
    00008859 GAP_DeviceInit
    0000bcb5 GAP_EndDiscoverable
    00009755 GAP_GetParamValue
    0000beb1 GAP_MakeDiscoverable
    00009de9 GAP_SetParamValue
    0000bebd GAP_TerminateAuth
    00009229 GAP_TerminateLinkReq
    000088a9 GAP_UpdateAdvertisingData
    0000bec9 GAP_UpdateLinkParamReq
    0000bed5 GAP_UpdateLinkParamReqReply
    00000481 GATTServApp_AddService
    0000bc6d GATTServApp_FindAttr
    0000b0ad GATTServApp_InitCharCfg
    00008f55 GATTServApp_ProcessCCCWriteReq
    00006599 GATTServApp_ProcessCharCfg
    0000bcc5 GATTServApp_ReadCharCfg
    00009791 GATTServApp_RegisterService
    0000ab7d GATTServApp_WriteCharCfg
    0000bdc5 GATT_Indication
    0000b629 GATT_Notification
    0000b3dd GATT_bm_alloc
    0000b3f9 GATT_bm_free
    10015141 GETBIT
    10015155 GETDIGIT
    100151a5 GETDIGITL2R
    0000c0bd GGS_AddService
    0000bee1 GGS_SetParameter
    20001bf4 HEAPMGR_SIZE
    0000b0cd Humidity_getParameter
    000088f9 Humidity_setParameter
    0000c159 HwiP_disable
    UNDEFED HwiP_restore
    00006b41 I2CCC26XX_cancel
    00005085 I2CCC26XX_close
    0000c0c3 I2CCC26XX_control
    0000e060 I2CCC26XX_fxnTable
    0000bff5 I2CCC26XX_init
    0000295d I2CCC26XX_open
    00001c25 I2CCC26XX_transfer
    0000b711 I2C_Params_init
    0000bfff I2C_close
    0000e0bc I2C_config
    0000e220 I2C_defaultParams
    00009b4d I2C_init
    0000aebd I2C_open
    0000c009 I2C_transfer
    000097cd ICallPlatform_pwrConfigACAction
    0000b729 ICallPlatform_pwrDispense
    0000bdd3 ICallPlatform_pwrGetTransitionState
    0000bcd5 ICallPlatform_pwrGetXOSCStartupTime
    0000bde1 ICallPlatform_pwrIsStableXOSCHF
    00008bc5 ICallPlatform_pwrRegisterNotify
    0000b741 ICallPlatform_pwrRequire
    0000c013 ICallPlatform_pwrSwitchXOSCHF
    00007461 ICallPlatform_pwrUpdActivityCounter
    000071f9 ICall_createRemoteTasks
    20001bd0 ICall_dispatcher
    0000b643 ICall_enterCSImpl
    20001bd8 ICall_enterCriticalSection
    0000a7c1 ICall_freeImpl
    0000a7c1 ICall_heapFree
    00007869 ICall_heapInit
    00006de9 ICall_heapMalloc
    0000aba5 ICall_init
    0000bafd ICall_leaveCSImpl
    20001bdc ICall_leaveCriticalSection
    0000c0c9 ICall_mallocImpl
    00009eed ICall_searchServiceEntity
    10015a35 IMPORTDATA
    100159a9 IMPORTLENGTH
    100159ad IMPORTMODULUS
    100159d1 IMPORTOPERAND
    1001568d INVERT
    0000b18d IRTemp_getParameter
    00008999 IRTemp_setParameter
    10016da1 InvAddRoundKey_Sw
    10016ed5 InvMixColumns_Sw
    10016dc9 InvRoundKey_Sw
    10017264 InvSbox
    10016ea1 InvShiftRows_Sw
    10016e8d InvSubBytes_Sw
    0000bb7d Io_getParameter
    00009f21 Io_setParameter
    100154f5 JACADD
    20004fe8 LEN
    100158ac LUTC
    100158dc LUTINCI
    100158f4 LUTJ
    1001588c LUTOPCODE
    10015894 LUTOPSIGN
    100158c4 LUTSE
    1001596c LUTSTATE
    0000c027 List_empty
    0000c161 List_head
    0000c165 List_next
    0000ae4d List_put
    0000b677 List_remove
    10018825 MB_ClearInts
    100187f5 MB_DisableInts
    10018835 MB_EnableHWInts
    10018799 MB_EnableInts
    10018945 MB_FwDebugDump
    10018755 MB_Init
    10018935 MB_ReadMailboxStatus
    1001893d MB_RegisterIsrCback
    10018865 MB_SendCommand
    100188a5 MB_SendCommandSynch
    20004fe4 MOD
    20004fd8 MSBMOD
    10016c79 MixColumns_Sw
    0000a381 Movement_getParameter
    00008459 Movement_setParameter
    10018b9c NIST_Curve_P256_Gx
    10018bc0 NIST_Curve_P256_Gy
    10018b54 NIST_Curve_P256_a
    10018b78 NIST_Curve_P256_b
    10018b0c NIST_Curve_P256_p
    10018b30 NIST_Curve_P256_r
    0000ac45 NOROM_AONBatMonTemperatureGetDegC
    0000bb91 NOROM_AONRTCCurrent64BitValueGet
    0000b819 NOROM_AONRTCCurrentCompareValueGet
    0000bf29 NOROM_CPUcpsid
    0000bf35 NOROM_CPUcpsie
    0000c0cf NOROM_CPUdelay
    00008fe9 NOROM_ChipInfo_GetChipFamily
    00007719 NOROM_ChipInfo_GetHwRevision
    0000b831 NOROM_ChipInfo_GetPackageType
    00009595 NOROM_DDI16BitfieldRead
    00009031 NOROM_DDI16BitfieldWrite
    0000a8c9 NOROM_DDI32RegWrite
    0000b469 NOROM_OSCClockSourceGet
    00008ca9 NOROM_OSCClockSourceSet
    000080c5 NOROM_OSCHF_AttemptToSwitchToXosc
    00006ab5 NOROM_OSCHF_GetStartupTime
    00009f55 NOROM_OSCHF_SwitchToRcOscTurnOffXosc
    0000b849 NOROM_OSCHF_TurnOnXosc
    00009809 NOROM_OSC_HPOSCRelativeFrequencyOffsetGet
    00006467 NOROM_RFCAdi3VcoLdoVoltageMode
    0000b861 NOROM_RFCCpeIntGetAndClear
    0000b1ad NOROM_RFCDoorbellSendTo
    000073e7 NOROM_RFCRTrim
    0000b1cd NOROM_RFCRfTrimRead
    0000bd05 NOROM_RFCRfTrimSet
    00009845 NOROM_RFCSynthPowerDown
    000073e9 NOROM_SetupAfterColdResetWakeupFromShutDownCfg1
    00004d11 NOROM_SetupAfterColdResetWakeupFromShutDownCfg2
    00003ec1 NOROM_SetupAfterColdResetWakeupFromShutDownCfg3
    0000b879 NOROM_SetupGetTrimForAdcShModeEn
    0000b891 NOROM_SetupGetTrimForAdcShVbufEn
    000078d5 NOROM_SetupGetTrimForAmpcompCtrl
    0000b8a9 NOROM_SetupGetTrimForAmpcompTh1
    0000b485 NOROM_SetupGetTrimForAmpcompTh2
    00007bc9 NOROM_SetupGetTrimForAnabypassValue1
    0000b8c1 NOROM_SetupGetTrimForDblrLoopFilterResetVoltage
    0000a8f5 NOROM_SetupGetTrimForRadcExtCfg
    0000b8d9 NOROM_SetupGetTrimForRcOscLfIBiasTrim
    0000b4a1 NOROM_SetupGetTrimForRcOscLfRtuneCtuneTrim
    0000b1ed NOROM_SetupGetTrimForXoscHfCtl
    0000bd15 NOROM_SetupGetTrimForXoscHfFastStart
    0000bd25 NOROM_SetupGetTrimForXoscHfIbiastherm
    0000b8f1 NOROM_SetupGetTrimForXoscLfRegulatorAndCmirrwrRatio
    0000a3b1 NOROM_SetupSetAonRtcSubSecInc
    000089e9 NOROM_SetupSetCacheModeAccordingToCcfgSetting
    0000be27 NOROM_SetupSignExtendVddrTrimValue
    0000614d NOROM_SetupTrimDevice
    00008121 NOROM_SysCtrlAdjustRechargeAfterPowerDown
    00002759 NOROM_SysCtrlSetRechargeBeforePowerDown
    00007c31 NOROM_SysCtrl_DCDC_VoltageConditionalControl
    00009f89 NOROM_TRNGConfigure
    0000bba5 NOROM_ThisCodeIsBuiltForCC26xxHwRev22AndLater_HaltIfViolated
    0000be35 NOROM_VIMSModeGet
    0000b20d Optic_getParameter
    00008a39 Optic_setParameter
    10014c04 P1_ro
    10019ffe P1_ro_2
    20004f40 P2_rw
    20004f40 P2_s0
    20004fac P2_zi
    0000af29 PINCC26XX_getPinCount
    0000a921 PINCC26XX_setMux
    20002f88 PIN_HandleTable
    20002ef4 PIN_NumPins
    0000b34b PIN_close
    0000bbb9 PIN_getInputValue
    0000bbcd PIN_getOutputValue
    00003465 PIN_init
    00006469 PIN_open
    0000c0d5 PIN_registerIntCb
    000084b1 PIN_remove
    0000a94d PIN_setConfig
    0000a3e1 PIN_setInterrupt
    00009bbd PIN_setOutputEnable
    0000a411 PIN_setOutputValue
    00007e89 PowerCC26XX_RCOSC_clockFunc
    00007549 PowerCC26XX_auxISR
    00007941 PowerCC26XX_calibrate
    0000e230 PowerCC26XX_config
    000037b5 PowerCC26XX_doCalibrate
    00006ab5 PowerCC26XX_getXoscStartupTime
    00008509 PowerCC26XX_initiateCalibration
    00009fbd PowerCC26XX_isStableXOSC_HF
    20001ac0 PowerCC26XX_module
    00005dc9 PowerCC26XX_standbyPolicy
    0000ac6d PowerCC26XX_switchXOSC_HF
    0000bf41 Power_getConstraintMask
    0000bf4d Power_getDependencyCount
    0000b369 Power_getTransitionLatency
    0000bf59 Power_getTransitionState
    0000b909 Power_idleFunc
    00004239 Power_init
    0000ac95 Power_registerNotify
    0000a441 Power_releaseConstraint
    00004fb1 Power_releaseDependency
    0000a471 Power_setConstraint
    00005155 Power_setDependency
    00002321 Power_sleep
    0000b22d Power_unregisterNotify
    10017158 RCon
    10018415 RFHAL_AddTxDataEntry
    100184f9 RFHAL_AllocDataEntry
    100184a9 RFHAL_AllocDataEntryQueue
    10018315 RFHAL_AllocRatChan
    100185e1 RFHAL_BuildDataEntryRingBuffer
    10018669 RFHAL_BuildLinkedBuffer
    10018551 RFHAL_BuildRingBuffer
    10018549 RFHAL_FreeDataEntry
    100184c5 RFHAL_FreeDataEntryQueue
    10018485 RFHAL_FreeNextTxDataEntry
    1001833d RFHAL_FreeRatChan
    100184cd RFHAL_GetNextDataEntry
    100184d1 RFHAL_GetTempDataEntry
    100183b9 RFHAL_InitDataQueue
    100182ad RFHAL_InitRfHal
    10018369 RFHAL_MapRatChansToInt
    100184d5 RFHAL_NextDataEntryDone
    100183c5 RFHAL_QueueRFDataEntries
    10018391 RFHAL_RegisterRatChanCallback
    0000bbe1 RF_Params_init
    0000360d RF_cancelCmd
    0000c06d RF_flushCmd
    0000bc7f RF_getCmdOp
    00007ee9 RF_getCurrentTime
    00008a89 RF_getInfo
    000095d5 RF_getRssi
    00005b89 RF_open
    00006ff9 RF_pendCmd
    00003939 RF_postCmd
    00009881 RF_runCmd
    0000b4f5 RF_runDirectCmd
    0000b511 RF_runImmediateCmd
    0000bd35 RegisterAssertCback
    0000a025 Register_getParameter
    000098bd Register_setParameter
    00009339 ResetISR
    10016b79 RoundKey_Sw
    10015101 SAVEPOINT
    20004f68 SCAL
    100150e5 SCALARMUL
    10014ced SCALARMUL_core
    10015019 SCALARMUL_final
    10014c05 SCALARMUL_init
    10015a51 SETOPERAND
    10015a91 SETWORD
    10018089 SHA256_final
    10018129 SHA256_full
    10017ffd SHA256_init
    10017ef1 SHA256_nextState
    10018019 SHA256_process
    10017e75 SHA256_round
    10017f49 SHA256_saveBuffer
    10017e39 SHA256_updateW
    UNDEFED SHT$$INIT_ARRAY$$Base
    UNDEFED SHT$$INIT_ARRAY$$Limit
    10015821 SQUAREMULTIPLYWORD
    10017895 SSP_CCM_Auth_Encrypt_Sw
    10017365 SSP_CCM_Auth_Sw
    1001767d SSP_CCM_Decrypt_Sw
    100174fd SSP_CCM_Encrypt_Sw
    100178f5 SSP_CCM_InvAuth_Decrypt_Sw
    10017839 SSP_CCM_InvAuth_Sw
    10017771 SSP_CTR_Decrypt_Sw
    100175ed SSP_CTR_Encrypt_Sw
    0000acbd SafeHapiVoid
    10017164 Sbox
    10015215 SelectReg
    0000ace5 SensorBmp280_enable
    0000bf65 SensorI2C_deselect
    0000860d SensorI2C_open
    0000be43 SensorI2C_readReg
    00007789 SensorI2C_select
    00009bf5 SensorI2C_write
    000098f9 SensorI2C_writeRead
    0000a979 SensorI2C_writeReg
    00009935 SensorMpu9250_accReadRange
    000092b1 SensorMpu9250_accSetRange
    0000a059 SensorMpu9250_enable
    0000bbf5 SensorMpu9250_powerIsOn
    0000af4d SensorMpu9250_powerOff
    0000a4a1 SensorMpu9250_powerOn
    000079ad SensorMpu9250_reset
    0000817d SensorMpu9250_test
    0000a737 SensorOpt3001_enable
    00008b29 SensorOpt3001_test
    00002549 SensorS5852A_read
    00006bc9 SensorTagBar_processCharChangeEvt
    0000a9a5 SensorTagBatt_init
    0000b52d SensorTagBatt_processCharChangeEvt
    0000bc09 SensorTagBatt_processSensorEvent
    0000b24d SensorTagBatt_reset
    0000ad0d SensorTagBuzzer_close
    00009971 SensorTagBuzzer_open
    000099ad SensorTagBuzzer_setFrequency
    00007275 SensorTagHum_processCharChangeEvt
    000092f5 SensorTagIO_blinkLed
    000060a5 SensorTagIO_processCharChangeEvt
    0000555d SensorTagKeys_processKeyLeft
    00005625 SensorTagKeys_processKeyRight
    0000a08d SensorTagKeys_processRelay
    00005c49 SensorTagMov_processCharChangeEvt
    0000662d SensorTagOpt_processCharChangeEvt
    00006c51 SensorTagRegister_processCharChangeEvt
    0000af71 SensorTagRegister_update
    00007079 SensorTagTmp_processCharChangeEvt
    0000c031 SensorTag_charValueChangeCB
    000099e9 SensorTag_createTask
    0000bf89 SensorTag_testResult
    0000b969 SensorTag_updateAdvertisingData
    00009615 SensorTmp007_enable
    10016c45 ShiftRows_Sw
    20004f88 TMP1
    20004f8c TMP2
    20004f90 TMP3
    20004f94 TMP4
    20004f98 TMP5
    20004f9c TMP6
    0000e278 TRNGCC26XXHWAttrs
    0000e240 TRNGCC26XX_config
    00006ef1 TRNGCC26XX_getNumber
    0000ad5d TRNGCC26XX_init
    0000aaab TRNGCC26XX_isParamValid
    0000b581 TRNGCC26XX_open
    00004ed5 UARTCC26XX_close
    00008561 UARTCC26XX_control
    0000dfc4 UARTCC26XX_fxnTable
    00003c0d UARTCC26XX_hwiIntFxn
    0000b981 UARTCC26XX_init
    0000193d UARTCC26XX_open
    00002d45 UARTCC26XX_read
    00004865 UARTCC26XX_readCancel
    0000c0db UARTCC26XX_readPolling
    00005225 UARTCC26XX_swiIntFxn
    00001e89 UARTCC26XX_write
    00004355 UARTCC26XX_writeCancel
    0000c0e1 UARTCC26XX_writePolling
    0000e0d4 UART_config
    0000e03c UART_defaultParams
    00009c2d UART_init
    0000a4d1 UART_open
    0000c045 UART_write
    0000bf95 UartLog_doInit
    00008d41 Util_constructClock
    0000b999 Util_constructQueue
    0000b691 Util_dequeueMsg
    0000aad5 Util_enqueueMsg
    0000bd45 Util_isActive
    00008661 Util_rescheduleClock
    00009c65 Util_restartClock
    0000c171 Util_startClock
    0000c175 Util_stopClock
    10015a85 ZERO
    00000000 __ASM__
    00000098 __ISA__
    000000aa __PLAT__
    20004428 __STACK_END
    00000400 __STACK_SIZE
    20004428 __STACK_TOP
    000000d1 __TARG__
    0000ecf8 __TI_CINIT_Base
    0000ed58 __TI_CINIT_Limit
    0000eca0 __TI_Handler_Table_Base
    0000ecac __TI_Handler_Table_Limit
    000061f1 __TI_auto_init
    20002530 __TI_cleanup_ptr
    0000be51 __TI_decompress_none
    0000c0f3 __TI_decompress_rle24
    20002534 __TI_dtors_ptr
    0000e2d0 __TI_static_base__
    0000bfa1 __TI_zero_init
    000000f6 __TRDR__
    00009199 __aeabi_d2iz
    00004671 __aeabi_dmul
    00007bc7 __aeabi_idiv0
    0000ba59 __aeabi_lmul
    0000736d __aeabi_memclr
    0000736d __aeabi_memclr4
    0000736d __aeabi_memclr8
    00006331 __aeabi_memcpy
    00006331 __aeabi_memcpy4
    00006331 __aeabi_memcpy8
    0000736f __aeabi_memset
    0000736f __aeabi_memset4
    0000736f __aeabi_memset8
    0000b2ad __aeabi_ui2d
    00009655 __aeabi_uidiv
    00009655 __aeabi_uidivmod
    00002b51 __aeabi_uldivmod
    ffffffff __binit__
    ffffffff __c_args__
    0001ffa8 __ccfg
    10019ffe __checksum_CommonROM
    10014c00 __checksum_begin_CommonROM
    10019ffd __checksum_end_CommonROM
    0000e0ea __checksum_value_CommonROM
    10018ced __exit
    20004028 __stack
    0000c0e7 __xdc__init
    20001dc0 __xdc__init__addr
    0000ba41 _args_main
    00009339 _c_int00
    20002528 _lock
    0000bc1d _nop
    0000bc25 _register_lock
    0000bc1f _register_unlock
    2000252c _unlock
    000093c5 abort
    2000254c appAssertCback
    0000dfb4 appearanceUUID
    20004fdc aux64
    0000e160 battCBs
    0000e276 battLevelUUID
    0000e274 battServUUID
    ffffffff binit
    0000dfb0 charAggFormatUUID
    0000dfaa charExtPropsUUID
    0000df9e charFormatUUID
    0000dfac charUserDescUUID
    0000df9a characterUUID
    0000df9c clientCharCfgUUID
    00008e71 copy_in
    0000e12c devInfo11073CertUUID
    0000e188 devInfoCBs
    0000e124 devInfoFirmwareRevUUID
    0000e126 devInfoHardwareRevUUID
    0000e12a devInfoMfrNameUUID
    0000e120 devInfoModelNumberUUID
    0000e12e devInfoPnpIdUUID
    0000e122 devInfoSerialNumberUUID
    0000e11c devInfoServUUID
    0000e128 devInfoSoftwareRevUUID
    0000e11e devInfoSystemIdUUID
    0000dfb2 deviceNameUUID
    0000bb29 driverTable_fnSpinlock
    20003255 driverlib_release_0_46593
    10017dbd eccRom_genKeys
    10017ded eccRom_genSharedSecret
    20004fa0 eccRom_param_Gx
    20004fa4 eccRom_param_Gy
    20004f50 eccRom_param_a
    20004fa8 eccRom_param_b
    20004f48 eccRom_param_p
    20004f4c eccRom_param_r
    20004f40 eccRom_windowSize
    20004f44 eccRom_workzone
    000093cd exit
    0000dfc0 extReportRefUUID
    20004fcc fwInfoCmd
    200007c0 gapProfileState
    20000c88 gapRoleTask
    20000cd8 gapRoleTaskStack
    0000b9c9 gapRole_clockHandler
    0000dfa2 gapServiceUUID
    0000dfa4 gattServiceUUID
    200007cc hGpioPin
    20004028 heapEnd
    2000325b heapStart
    0000e0ec i2cCC26xxHWAttrs
    20003004 i2cCC26xxObjects
    20004f58 inPointX
    20004f5c inPointY
    20004f54 inScalar
    0000dfa8 includeUUID
    0000e1b0 ioCBs
    0000df58 ioConfUUID
    0000df48 ioDataUUID
    0000df38 ioServUUID
    20002514 lastAppOpcodeSent
    20000b74 linkDBNumConns
    00009d0d linkDB_NumConns
    10016551 mADD
    10015bd5 mINVK
    10015f81 mMULT
    10016749 mOUT
    10015a9d mSET
    1001664d mSUB
    0000a1f5 main
    20002550 main_func_sp
    10018949 mbCmdAckIsr
    1001895d mbCpe0Isr
    10018985 mbCpe1Isr
    100189e5 mbHwIsr
    0000b08b memcmp
    00006331 memcpy
    00007375 memset
    0000b5d5 openTRNG
    0000a0c1 osal_snv_read
    0000a0f5 osal_snv_write
    20004f60 outPointX
    20004f64 outPointY
    20004ffc pSspAesEncrypt_Sw
    0000dfba periConnParamUUID
    0000dfb6 periPrivacyFlagUUID
    20002518 pfnBMAlloc
    2000251c pfnBMFree
    200007e8 pinGpioState
    0000df98 primaryServiceUUID
    20004fac ratChanInfo
    0000dfb8 reconnectAddrUUID
    0000dfa0 reportRefUUID
    0000dc28 resourceDB
    0000dc74 rfDriverTable
    20002230 rfRegTbl
    0000dfa6 secondaryServiceUUID
    200007c1 selfEntityMain
    200007c8 sem
    0000dfae servCharCfgUUID
    0000dfbc serviceChangedUUID
    10016d29 sspAesDecrypt_Sw
    10016af5 sspAesEncryptBasic_Sw
    10016a99 sspAesEncryptKeyExp_Sw
    10016979 sspAesEncrypt_Sw
    10016985 sspKeyExpansion_Sw
    10016975 ssp_KeyInit_Sw
    0000bc31 strlen
    200001a4 ti_sysbios_BIOS_Module__state__V
    1001bc29 ti_sysbios_BIOS_RtsGateProxy_Handle__label__S
    UNDEFED ti_sysbios_BIOS_RtsGateProxy_Handle__label__S__mangled__
    1001bab9 ti_sysbios_BIOS_RtsGateProxy_Object__delete__S
    UNDEFED ti_sysbios_BIOS_RtsGateProxy_Object__delete__S__mangled__
    1001c179 ti_sysbios_BIOS_RtsGateProxy_Params__init__S
    UNDEFED ti_sysbios_BIOS_RtsGateProxy_Params__init__S__mangled__
    1001c249 ti_sysbios_BIOS_RtsGateProxy_enter__E
    1001c24d ti_sysbios_BIOS_RtsGateProxy_leave__E
    1001c275 ti_sysbios_BIOS_RtsGateProxy_query__E
    UNDEFED ti_sysbios_BIOS_RtsGateProxy_query__E__mangled__
    0000a531 ti_sysbios_BIOS_atExitFunc__I
    0000bb3f ti_sysbios_BIOS_exitFunc__I
    1001c035 ti_sysbios_BIOS_exit__E
    1001bff9 ti_sysbios_BIOS_getCpuFreq__E
    0000bfb9 ti_sysbios_BIOS_getThreadType__E
    00007dc7 ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E
    00008857 ti_sysbios_BIOS_nullFunc__I
    0000afdd ti_sysbios_BIOS_registerRTSLock__I
    0000b001 ti_sysbios_BIOS_removeRTSLock__I
    0000b2cd ti_sysbios_BIOS_rtsLock__I
    0000ba89 ti_sysbios_BIOS_rtsUnlock__I
    1001c045 ti_sysbios_BIOS_setThreadType__E
    0000a561 ti_sysbios_BIOS_startFunc__I
    1001c055 ti_sysbios_BIOS_start__E
    0000614d ti_sysbios_family_arm_cc26xx_Boot_trimDevice
    00000502 ti_sysbios_family_arm_cc26xx_Timer_Module__id__C
    20001cdc ti_sysbios_family_arm_cc26xx_Timer_Module__root__V
    1001bb49 ti_sysbios_family_arm_cc26xx_Timer_Module__startupDone__S
    200001e4 ti_sysbios_family_arm_cc26xx_Timer_Module__state__V
    1001ba71 ti_sysbios_family_arm_cc26xx_Timer_Module_startup__E
    20002318 ti_sysbios_family_arm_cc26xx_Timer_Object__table__V
    0000b5f1 ti_sysbios_family_arm_cc26xx_Timer_dynamicStub__E
    0000c181 ti_sysbios_family_arm_cc26xx_Timer_getCount64__E
    00009d45 ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E
    1001c251 ti_sysbios_family_arm_cc26xx_Timer_getExpiredTicks__E
    0000add5 ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E
    1001c255 ti_sysbios_family_arm_cc26xx_Timer_getPeriod__E
    0000a591 ti_sysbios_family_arm_cc26xx_Timer_initDevice__I
    1001a469 ti_sysbios_family_arm_cc26xx_Timer_periodicStub__E
    1001b769 ti_sysbios_family_arm_cc26xx_Timer_postInit__I
    0000a2bd ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E
    1001c259 ti_sysbios_family_arm_cc26xx_Timer_setPeriod__E
    0000a5c1 ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I
    00007d01 ti_sysbios_family_arm_cc26xx_Timer_start__E
    00000484 ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C
    1001b795 ti_sysbios_family_arm_cc26xx_Timer_startup__E
    200001ec ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V
    1001bb69 ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_startup__E
    0000be97 ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E
    1001b9d1 ti_sysbios_family_arm_cc26xx_TimestampProvider_get64__E
    1001c12f ti_sysbios_family_arm_cc26xx_TimestampProvider_getFreq__E
    00000504 ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C
    00000488 ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C
    0000048c ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C
    1001aed1 ti_sysbios_family_arm_m3_Hwi_Instance_finalize__E
    1001a3c9 ti_sysbios_family_arm_m3_Hwi_Instance_init__E
    20001d04 ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A
    20001d08 ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A
    20001d0c ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A
    00000506 ti_sysbios_family_arm_m3_Hwi_Module__id__C
    20001ce4 ti_sysbios_family_arm_m3_Hwi_Module__root__V
    1001bb89 ti_sysbios_family_arm_m3_Hwi_Module__startupDone__S
    20000144 ti_sysbios_family_arm_m3_Hwi_Module__state__V
    1001b1c1 ti_sysbios_family_arm_m3_Hwi_Module_startup__E
    00000490 ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C
    000002d0 ti_sysbios_family_arm_m3_Hwi_Object__DESC__C
    00000170 ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C
    00000494 ti_sysbios_family_arm_m3_Hwi_Object__count__C
    1001aab1 ti_sysbios_family_arm_m3_Hwi_Object__create__S
    1001bba9 ti_sysbios_family_arm_m3_Hwi_Object__delete__S
    1001be69 ti_sysbios_family_arm_m3_Hwi_Object__destruct__S
    1001b7c1 ti_sysbios_family_arm_m3_Hwi_Object__get__S
    00000498 ti_sysbios_family_arm_m3_Hwi_Object__table__C
    20001cec ti_sysbios_family_arm_m3_Hwi_Object__table__V
    1001c13d ti_sysbios_family_arm_m3_Hwi_Params__init__S
    0000049c ti_sysbios_family_arm_m3_Hwi_ccr__C
    1001af29 ti_sysbios_family_arm_m3_Hwi_construct
    1001ab15 ti_sysbios_family_arm_m3_Hwi_create
    1001c25d ti_sysbios_family_arm_m3_Hwi_delete
    1001c261 ti_sysbios_family_arm_m3_Hwi_destruct
    1001c149 ti_sysbios_family_arm_m3_Hwi_disableFxn__E
    1001b299 ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E
    1001aa49 ti_sysbios_family_arm_m3_Hwi_dispatchC__I
    200030e4 ti_sysbios_family_arm_m3_Hwi_dispatchTable
    1001c89d ti_sysbios_family_arm_m3_Hwi_dispatch__I
    1001c1fb ti_sysbios_family_arm_m3_Hwi_doSwiRestore__I
    1001c213 ti_sysbios_family_arm_m3_Hwi_doTaskRestore__I
    1001c155 ti_sysbios_family_arm_m3_Hwi_enableFxn__E
    1001b2dd ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E
    1001ca01 ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I
    000004a0 ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C
    1001bbc9 ti_sysbios_family_arm_m3_Hwi_excHandler__I
    1001b465 ti_sysbios_family_arm_m3_Hwi_getStackInfo__E
    1001a699 ti_sysbios_family_arm_m3_Hwi_initNVIC__E
    1001c9b9 ti_sysbios_family_arm_m3_Hwi_initStacks__E
    000004a4 ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C
    000004a8 ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C
    e000e000 ti_sysbios_family_arm_m3_Hwi_nvic
    1001ca3f ti_sysbios_family_arm_m3_Hwi_pendSV__I
    1001c065 ti_sysbios_family_arm_m3_Hwi_plug__E
    1001a319 ti_sysbios_family_arm_m3_Hwi_postInit__I
    0000bd65 ti_sysbios_family_arm_m3_Hwi_post__E
    000004ac ti_sysbios_family_arm_m3_Hwi_priGroup__C
    20000000 ti_sysbios_family_arm_m3_Hwi_ramVectors
    00000000 ti_sysbios_family_arm_m3_Hwi_resetVectors
    1001c219 ti_sysbios_family_arm_m3_Hwi_restoreFxn__E
    1001ca57 ti_sysbios_family_arm_m3_Hwi_return
    0000c153 ti_sysbios_family_arm_m3_Hwi_setFunc__E
    1001be85 ti_sysbios_family_arm_m3_Hwi_setPriority__E
    1001c203 ti_sysbios_family_arm_m3_Hwi_startup__E
    1001c00d ti_sysbios_family_arm_m3_Hwi_switchFromBootStack__E
    1001c265 ti_sysbios_family_arm_m3_TaskSupport_Module__startupDone__S
    1001c96d ti_sysbios_family_arm_m3_TaskSupport_buildTaskStack
    1001c161 ti_sysbios_family_arm_m3_TaskSupport_getStackAlignment__E
    1001ca59 ti_sysbios_family_arm_m3_TaskSupport_glue
    000004b0 ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C
    1001b49d ti_sysbios_family_arm_m3_TaskSupport_start__E
    1001ca69 ti_sysbios_family_arm_m3_TaskSupport_swap__E
    1001ca21 ti_sysbios_family_xxx_Hwi_switchAndRunFunc
    1001bbe9 ti_sysbios_gates_GateHwi_Handle__label__S
    1001b463 ti_sysbios_gates_GateHwi_Instance_init__E
    0000021c ti_sysbios_gates_GateHwi_Module__FXNS__C
    00000508 ti_sysbios_gates_GateHwi_Module__id__C
    20001d10 ti_sysbios_gates_GateHwi_Module__root__V
    000002f0 ti_sysbios_gates_GateHwi_Object__DESC__C
    00000430 ti_sysbios_gates_GateHwi_Object__PARAMS__C
    1001ba95 ti_sysbios_gates_GateHwi_Object__create__S
    1001bc09 ti_sysbios_gates_GateHwi_Object__delete__S
    20001d18 ti_sysbios_gates_GateHwi_Object__table__V
    1001c16d ti_sysbios_gates_GateHwi_enter__E
    1001c21f ti_sysbios_gates_GateHwi_leave__E
    1001c269 ti_sysbios_gates_GateHwi_query__E
    1001bc29 ti_sysbios_gates_GateMutex_Handle__label__S
    000005cc ti_sysbios_gates_GateMutex_Instance_State_sem__O
    1001c075 ti_sysbios_gates_GateMutex_Instance_finalize__E
    1001bea1 ti_sysbios_gates_GateMutex_Instance_init__E
    00000240 ti_sysbios_gates_GateMutex_Module__FXNS__C
    0000050a ti_sysbios_gates_GateMutex_Module__id__C
    20001d1c ti_sysbios_gates_GateMutex_Module__root__V
    00000310 ti_sysbios_gates_GateMutex_Object__DESC__C
    00000448 ti_sysbios_gates_GateMutex_Object__PARAMS__C
    1001b649 ti_sysbios_gates_GateMutex_Object__create__S
    1001bab9 ti_sysbios_gates_GateMutex_Object__delete__S
    1001bc49 ti_sysbios_gates_GateMutex_Object__destruct__S
    20002360 ti_sysbios_gates_GateMutex_Object__table__V
    1001c179 ti_sysbios_gates_GateMutex_Params__init__S
    1001b7ed ti_sysbios_gates_GateMutex_construct
    1001b679 ti_sysbios_gates_GateMutex_create
    1001c26d ti_sysbios_gates_GateMutex_delete
    1001c271 ti_sysbios_gates_GateMutex_destruct
    1001b6a9 ti_sysbios_gates_GateMutex_enter__E
    1001bf9d ti_sysbios_gates_GateMutex_leave__E
    1001c275 ti_sysbios_gates_GateMutex_query__E
    1001c279 ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S
    UNDEFED ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S__mangled__
    1001c085 ti_sysbios_hal_Hwi_HwiProxy_Object__create__S
    1001bba9 ti_sysbios_hal_Hwi_HwiProxy_Object__delete__S
    UNDEFED ti_sysbios_hal_Hwi_HwiProxy_Object__delete__S__mangled__
    1001c13d ti_sysbios_hal_Hwi_HwiProxy_Params__init__S
    UNDEFED ti_sysbios_hal_Hwi_HwiProxy_Params__init__S__mangled__
    1001be49 ti_sysbios_hal_Hwi_HwiProxy_create
    1001c27d ti_sysbios_hal_Hwi_HwiProxy_delete
    1001c281 ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E
    UNDEFED ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E__mangled__
    1001c285 ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E
    UNDEFED ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E__mangled__
    1001c289 ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E
    UNDEFED ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E__mangled__
    0000bd65 ti_sysbios_hal_Hwi_HwiProxy_post__E
    1001c28d ti_sysbios_hal_Hwi_HwiProxy_startup__E
    UNDEFED ti_sysbios_hal_Hwi_HwiProxy_startup__E__mangled__
    1001c291 ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E
    UNDEFED ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E__mangled__
    1001c1f1 ti_sysbios_hal_Hwi_Instance_finalize__E
    1001b9f9 ti_sysbios_hal_Hwi_Instance_init__E
    20001d24 ti_sysbios_hal_Hwi_Module__root__V
    1001c021 ti_sysbios_hal_Hwi_Module_startup__E
    00000330 ti_sysbios_hal_Hwi_Object__DESC__C
    000001a0 ti_sysbios_hal_Hwi_Object__PARAMS__C
    1001bc69 ti_sysbios_hal_Hwi_Object__delete__S
    0000bfc5 ti_sysbios_hal_Hwi_Params__init__S
    1001ab79 ti_sysbios_hal_Hwi_create
    1001c295 ti_sysbios_hal_Hwi_delete
    1001c281 ti_sysbios_hal_Hwi_disableInterrupt__E
    UNDEFED ti_sysbios_hal_Hwi_disableInterrupt__E
    1001c285 ti_sysbios_hal_Hwi_enableInterrupt__E
    UNDEFED ti_sysbios_hal_Hwi_enableInterrupt__E
    1001c289 ti_sysbios_hal_Hwi_getStackInfo__E
    UNDEFED ti_sysbios_hal_Hwi_getStackInfo__E
    1001b819 ti_sysbios_hal_Hwi_initStack
    0000bd65 ti_sysbios_hal_Hwi_post__E
    1001c28d ti_sysbios_hal_Hwi_startup__E
    UNDEFED ti_sysbios_hal_Hwi_startup__E
    1001c299 ti_sysbios_hal_Hwi_switchFromBootStack__E
    UNDEFED ti_sysbios_hal_Hwi_switchFromBootStack__E
    000004b4 ti_sysbios_heaps_HeapMem_E_memory__C
    1001bc89 ti_sysbios_heaps_HeapMem_Handle__label__S
    20002560 ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A
    1001b4d5 ti_sysbios_heaps_HeapMem_Instance_init__E
    1001bc29 ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S
    UNDEFED ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S__mangled__
    1001bab9 ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__delete__S
    UNDEFED ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__delete__S__mangled__
    1001c179 ti_sysbios_heaps_HeapMem_Module_GateProxy_Params__init__S
    UNDEFED ti_sysbios_heaps_HeapMem_Module_GateProxy_Params__init__S__mangled__
    1001c29d ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E
    1001c2a1 ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E
    1001c275 ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E
    UNDEFED ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E__mangled__
    000001cc ti_sysbios_heaps_HeapMem_Module__FXNS__C
    000004b8 ti_sysbios_heaps_HeapMem_Module__gateObj__C
    0000050c ti_sysbios_heaps_HeapMem_Module__id__C
    20001d2c ti_sysbios_heaps_HeapMem_Module__root__V
    00000350 ti_sysbios_heaps_HeapMem_Object__DESC__C
    00000264 ti_sysbios_heaps_HeapMem_Object__PARAMS__C
    000004bc ti_sysbios_heaps_HeapMem_Object__count__C
    1001b845 ti_sysbios_heaps_HeapMem_Object__create__S
    1001bca9 ti_sysbios_heaps_HeapMem_Object__delete__S
    1001b871 ti_sysbios_heaps_HeapMem_Object__get__S
    000004c0 ti_sysbios_heaps_HeapMem_Object__table__C
    20001d34 ti_sysbios_heaps_HeapMem_Object__table__V
    1001a199 ti_sysbios_heaps_HeapMem_alloc__E
    1001a795 ti_sysbios_heaps_HeapMem_free__E
    1001b209 ti_sysbios_heaps_HeapMem_getStats__E
    1001b545 ti_sysbios_heaps_HeapMem_init__I
    1001c2a5 ti_sysbios_heaps_HeapMem_isBlocking__E
    000004c4 ti_sysbios_heaps_HeapMem_reqAlign__C
    1001c105 ti_sysbios_heaps_HeapMem_restore__E
    1001bfcd ti_sysbios_knl_Clock_Instance_finalize__E
    1001b50d ti_sysbios_knl_Clock_Instance_init__E
    000005d0 ti_sysbios_knl_Clock_Module_State_clockQ__O
    20001d4c ti_sysbios_knl_Clock_Module__root__V
    20000178 ti_sysbios_knl_Clock_Module__state__V
    1001bcc9 ti_sysbios_knl_Clock_Module_startup__E
    00000370 ti_sysbios_knl_Clock_Object__DESC__C
    00000288 ti_sysbios_knl_Clock_Object__PARAMS__C
    1001badd ti_sysbios_knl_Clock_Object__delete__S
    1001bce9 ti_sysbios_knl_Clock_Object__destruct__S
    20001d54 ti_sysbios_knl_Clock_Object__table__V
    1001c185 ti_sysbios_knl_Clock_Params__init__S
    1001c2a9 ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S
    UNDEFED ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S__mangled__
    1001c095 ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E
    1001c2ad ti_sysbios_knl_Clock_TimerProxy_getExpiredTicks__E
    1001c0a5 ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E
    1001c2b1 ti_sysbios_knl_Clock_TimerProxy_getPeriod__E
    1001c0b5 ti_sysbios_knl_Clock_TimerProxy_setNextTick__E
    1001b795 ti_sysbios_knl_Clock_TimerProxy_startup__E
    UNDEFED ti_sysbios_knl_Clock_TimerProxy_startup__E__mangled__
    1001ba21 ti_sysbios_knl_Clock_addI__E
    1001b579 ti_sysbios_knl_Clock_construct
    1001b3ed ti_sysbios_knl_Clock_create
    1001c2b5 ti_sysbios_knl_Clock_delete
    1001c2b9 ti_sysbios_knl_Clock_destruct
    0000bc59 ti_sysbios_knl_Clock_doTick__I
    0000a9fd ti_sysbios_knl_Clock_getTicksUntilInterrupt__E
    1001b6d9 ti_sysbios_knl_Clock_getTicks__E
    1001c191 ti_sysbios_knl_Clock_getTimerHandle__E
    0000c185 ti_sysbios_knl_Clock_isActive__E
    1001be67 ti_sysbios_knl_Clock_logTick__E
    1001c2bd ti_sysbios_knl_Clock_removeI__E
    1001bebd ti_sysbios_knl_Clock_scheduleNextTick__E
    000004c8 ti_sysbios_knl_Clock_serviceMargin__C
    0000c189 ti_sysbios_knl_Clock_setPeriod__E
    1001c2c1 ti_sysbios_knl_Clock_setTimeout__E
    1001a719 ti_sysbios_knl_Clock_startI__E
    1001bfe3 ti_sysbios_knl_Clock_start__E
    0000b2ed ti_sysbios_knl_Clock_stop__E
    00000510 ti_sysbios_knl_Clock_tickMode__C
    0000e280 ti_sysbios_knl_Clock_tickPeriod__C
    0000e284 ti_sysbios_knl_Clock_triggerClock__C
    00008f9f ti_sysbios_knl_Clock_triggerFunc__I
    1001a80d ti_sysbios_knl_Clock_walkQueueDynamic__E
    00006501 ti_sysbios_knl_Clock_workFuncDynamic__E
    1001a885 ti_sysbios_knl_Clock_workFunc__E
    20001d74 ti_sysbios_knl_Event_Module__root__V
    0000e26c ti_sysbios_knl_Idle_funcList__A
    00000478 ti_sysbios_knl_Idle_funcList__C
    1001c20b ti_sysbios_knl_Idle_loop__E
    1001bd09 ti_sysbios_knl_Idle_run__E
    000005d4 ti_sysbios_knl_Mailbox_Instance_State_dataQue__O
    000005d8 ti_sysbios_knl_Mailbox_Instance_State_dataSem__O
    000005dc ti_sysbios_knl_Mailbox_Instance_State_freeQue__O
    000005e0 ti_sysbios_knl_Mailbox_Instance_State_freeSem__O
    1001a9dd ti_sysbios_knl_Mailbox_Instance_finalize__E
    1001a001 ti_sysbios_knl_Mailbox_Instance_init__E
    20001d7c ti_sysbios_knl_Mailbox_Module__root__V
    1001b251 ti_sysbios_knl_Mailbox_Module_startup__E
    00000390 ti_sysbios_knl_Mailbox_Object__DESC__C
    0000013c ti_sysbios_knl_Mailbox_Object__PARAMS__C
    000004cc ti_sysbios_knl_Mailbox_Object__count__C
    1001bd29 ti_sysbios_knl_Mailbox_Object__delete__S
    1001bed9 ti_sysbios_knl_Mailbox_Object__destruct__S
    1001b89d ti_sysbios_knl_Mailbox_Object__get__S
    000004d0 ti_sysbios_knl_Mailbox_Object__table__C
    1001c19d ti_sysbios_knl_Mailbox_Params__init__S
    1001af81 ti_sysbios_knl_Mailbox_construct
    1001abdd ti_sysbios_knl_Mailbox_create
    1001c2c5 ti_sysbios_knl_Mailbox_delete
    1001c2c9 ti_sysbios_knl_Mailbox_destruct
    1001a8fd ti_sysbios_knl_Mailbox_pend__E
    1001b8c9 ti_sysbios_knl_Mailbox_postInit__I
    1001a591 ti_sysbios_knl_Mailbox_post__E
    1001c22b ti_sysbios_knl_Queue_Instance_init__E
    20001d84 ti_sysbios_knl_Queue_Module__root__V
    000003b0 ti_sysbios_knl_Queue_Object__DESC__C
    00000460 ti_sysbios_knl_Queue_Object__PARAMS__C
    000004d4 ti_sysbios_knl_Queue_Object__count__C
    1001bd49 ti_sysbios_knl_Queue_Object__delete__S
    1001bef5 ti_sysbios_knl_Queue_Object__destruct__S
    1001bd69 ti_sysbios_knl_Queue_Object__get__S
    000004d8 ti_sysbios_knl_Queue_Object__table__C
    1001b8f5 ti_sysbios_knl_Queue_construct
    1001b921 ti_sysbios_knl_Queue_create
    1001c2cd ti_sysbios_knl_Queue_delete
    1001c1a9 ti_sysbios_knl_Queue_dequeue__E
    1001c2d1 ti_sysbios_knl_Queue_destruct
    1001c231 ti_sysbios_knl_Queue_elemClear__E
    1001c113 ti_sysbios_knl_Queue_empty__E
    1001c1b5 ti_sysbios_knl_Queue_enqueue__E
    1001bf11 ti_sysbios_knl_Queue_get__E
    1001c2d5 ti_sysbios_knl_Queue_head__E
    0000c18d ti_sysbios_knl_Queue_insert__E
    1001c2d9 ti_sysbios_knl_Queue_next__E
    1001bf2d ti_sysbios_knl_Queue_put__E
    1001c121 ti_sysbios_knl_Queue_remove__E
    000005e4 ti_sysbios_knl_Semaphore_Instance_State_pendQ__O
    1001c0c5 ti_sysbios_knl_Semaphore_Instance_finalize__E
    1001bb01 ti_sysbios_knl_Semaphore_Instance_init__E
    20001d8c ti_sysbios_knl_Semaphore_Module__root__V
    000003d0 ti_sysbios_knl_Semaphore_Object__DESC__C
    000002ac ti_sysbios_knl_Semaphore_Object__PARAMS__C
    1001bb25 ti_sysbios_knl_Semaphore_Object__delete__S
    1001bd89 ti_sysbios_knl_Semaphore_Object__destruct__S
    1001c1c1 ti_sysbios_knl_Semaphore_Params__init__S
    1001b709 ti_sysbios_knl_Semaphore_construct
    1001b5ad ti_sysbios_knl_Semaphore_create
    1001c2dd ti_sysbios_knl_Semaphore_delete
    1001c2e1 ti_sysbios_knl_Semaphore_destruct
    1001b94d ti_sysbios_knl_Semaphore_pendTimeout__I
    1001a0cd ti_sysbios_knl_Semaphore_pend__E
    1001ac41 ti_sysbios_knl_Semaphore_post__E
    1001bf9b ti_sysbios_knl_Swi_Instance_finalize__E
    1001aca5 ti_sysbios_knl_Swi_Instance_init__E
    200023fc ti_sysbios_knl_Swi_Module_State_0_readyQ__A
    20001d94 ti_sysbios_knl_Swi_Module__root__V
    200001c8 ti_sysbios_knl_Swi_Module__state__V
    1001c237 ti_sysbios_knl_Swi_Module_startup__E
    000003f0 ti_sysbios_knl_Swi_Object__DESC__C
    000001f4 ti_sysbios_knl_Swi_Object__PARAMS__C
    000004dc ti_sysbios_knl_Swi_Object__count__C
    1001bda9 ti_sysbios_knl_Swi_Object__delete__S
    1001bf49 ti_sysbios_knl_Swi_Object__destruct__S
    1001b979 ti_sysbios_knl_Swi_Object__get__S
    000004e0 ti_sysbios_knl_Swi_Object__table__C
    2000242c ti_sysbios_knl_Swi_Object__table__V
    1001c1cd ti_sysbios_knl_Swi_Params__init__S
    1001b085 ti_sysbios_knl_Swi_construct
    1001ad05 ti_sysbios_knl_Swi_create
    1001c2e5 ti_sysbios_knl_Swi_delete
    1001c2e9 ti_sysbios_knl_Swi_destruct
    1001c0d5 ti_sysbios_knl_Swi_disable__E
    1001c0e5 ti_sysbios_knl_Swi_enabled__E
    0000bfd1 ti_sysbios_knl_Swi_getTrigger__E
    000004e4 ti_sysbios_knl_Swi_numPriorities__C
    0000baa1 ti_sysbios_knl_Swi_or__E
    1001c2ed ti_sysbios_knl_Swi_postInit__I
    1001b321 ti_sysbios_knl_Swi_post__E
    1001ad61 ti_sysbios_knl_Swi_restoreHwi__E
    1001b5e1 ti_sysbios_knl_Swi_restore__E
    1001b0d5 ti_sysbios_knl_Swi_runLoop__I
    1001afd9 ti_sysbios_knl_Swi_run__I
    1001b031 ti_sysbios_knl_Swi_schedule__I
    1001c23d ti_sysbios_knl_Swi_startup__E
    20002be0 ti_sysbios_knl_Task_Instance_State_0_stack__A
    1001a4fd ti_sysbios_knl_Task_Instance_finalize__E
    1001a25d ti_sysbios_knl_Task_Instance_init__E
    20001da4 ti_sysbios_knl_Task_Module_State_0_idleTask__A
    2000245c ti_sysbios_knl_Task_Module_State_0_readyQ__A
    000005e8 ti_sysbios_knl_Task_Module_State_inactiveQ__O
    20001d9c ti_sysbios_knl_Task_Module__root__V
    20000100 ti_sysbios_knl_Task_Module__state__V
    1001adbd ti_sysbios_knl_Task_Module_startup__E
    00000410 ti_sysbios_knl_Task_Object__DESC__C
    00000100 ti_sysbios_knl_Task_Object__PARAMS__C
    000004e8 ti_sysbios_knl_Task_Object__count__C
    1001bdc9 ti_sysbios_knl_Task_Object__delete__S
    1001bf65 ti_sysbios_knl_Task_Object__destruct__S
    1001bde9 ti_sysbios_knl_Task_Object__get__S
    000004ec ti_sysbios_knl_Task_Object__table__C
    200022cc ti_sysbios_knl_Task_Object__table__V
    1001c1d9 ti_sysbios_knl_Task_Params__init__S
    1001c2f1 ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S
    UNDEFED ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S__mangled__
    1001c2f5 ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E
    UNDEFED ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E__mangled__
    1001c2f9 ti_sysbios_knl_Task_SupportProxy_start__E
    UNDEFED ti_sysbios_knl_Task_SupportProxy_start__E__mangled__
    1001c2fd ti_sysbios_knl_Task_SupportProxy_swap__E
    UNDEFED ti_sysbios_knl_Task_SupportProxy_swap__E__mangled__
    000004f0 ti_sysbios_knl_Task_allBlockedFunc__C
    1001b365 ti_sysbios_knl_Task_allBlockedFunction__I
    1001b615 ti_sysbios_knl_Task_blockI__E
    1001b125 ti_sysbios_knl_Task_construct
    1001ae19 ti_sysbios_knl_Task_create
    000004f4 ti_sysbios_knl_Task_defaultStackHeap__C
    000004f8 ti_sysbios_knl_Task_defaultStackSize__C
    1001c301 ti_sysbios_knl_Task_delete
    1001c305 ti_sysbios_knl_Task_destruct
    1001c0f5 ti_sysbios_knl_Task_disable__E
    1001c243 ti_sysbios_knl_Task_enable__E
    1001be09 ti_sysbios_knl_Task_enter__I
    1001b429 ti_sysbios_knl_Task_exit__E
    0000050e ti_sysbios_knl_Task_initStackFlag__C
    000004fc ti_sysbios_knl_Task_numConstructedTasks__C
    1001a615 ti_sysbios_knl_Task_postInit__I
    1001b739 ti_sysbios_knl_Task_processVitalTaskFlag__I
    1001be29 ti_sysbios_knl_Task_restoreHwi__E
    1001ba49 ti_sysbios_knl_Task_restore__E
    1001b175 ti_sysbios_knl_Task_schedule__I
    1001c1e5 ti_sysbios_knl_Task_self__E
    00006291 ti_sysbios_knl_Task_setPri__E
    1001bf81 ti_sysbios_knl_Task_sleepTimeout__I
    1001a96d ti_sysbios_knl_Task_sleep__E
    1001ae75 ti_sysbios_knl_Task_startCore__E
    1001c309 ti_sysbios_knl_Task_startup__E
    1001ca71 ti_sysbios_knl_Task_swapReturn
    1001b9a5 ti_sysbios_knl_Task_unblockI__E
    1001bfb5 ti_sysbios_knl_Task_unblock__E
    1001b3a9 ti_sysbios_knl_Task_yield__E
    00000590 ti_sysbios_rom_ROM_AONRTCChannelEnable
    00000594 ti_sysbios_rom_ROM_AONRTCCompareValueSet
    00000598 ti_sysbios_rom_ROM_AONRTCCurrentCompareValueGet
    0000059c ti_sysbios_rom_ROM_AONRTCEventClear
    000005a0 ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E
    000005a4 ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E
    000005a8 ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E
    000005ac ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_initDevice__I
    000005b0 ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E
    000005b4 ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I
    000005b8 ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_start__E
    000005bc ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E
    000005c0 ti_sysbios_rom_ROM_xdc_runtime_Startup_getState__I
    000005c4 ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_abort__E
    000005c8 ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_exit__E
    00009513 ti_sysbios_rom_cortexm_cc26xx_CC26xx_badRomRevision__E
    0000bab9 ti_sysbios_rom_cortexm_cc26xx_CC26xx_checkRevision__E
    1001ca9b ti_sysbios_rom_cortexm_cc26xx_CC26xx_getRevision__E
    20003250 trngCC26XXObjects
    0000e174 trngDriverTable
    0000e014 txPowerTable
    0000e16c txPwrTbl
    0000e104 uartCC26XXHWAttrs
    20002de0 uartCC26XXObjects
    200002c0 uartLog_evBuf
    2000020a uartLog_evBufIsEmpty
    2000020c uartLog_evtNum
    00007c99 uartLog_flush
    20000209 uartLog_head
    20000214 uartLog_outBuf
    00007179 uartLog_outputFxn
    20000208 uartLog_tail
    2000248c user0Cfg
    0000aa29 utilExtractUuid16
    0000dfbe validRangeUUID
    00000524 xdc_runtime_Assert_E_assertFailed__C
    1001c5a9 xdc_runtime_Assert_raise__I
    1001c6ed xdc_runtime_Core_assignLabel__I
    1001c5f1 xdc_runtime_Core_assignParams__I
    1001c639 xdc_runtime_Core_constructObject__I
    1001c405 xdc_runtime_Core_createObject__I
    1001c4f9 xdc_runtime_Core_deleteObject__I
    1001c7a1 xdc_runtime_Core_destructObject__I
    00000528 xdc_runtime_Error_E_memory__C
    1001c7b9 xdc_runtime_Error_check__E
    1001c841 xdc_runtime_Error_init__E
    0000052c xdc_runtime_Error_policyFxn__C
    1001c487 xdc_runtime_Error_policySpin__E
    0000058c xdc_runtime_Error_policy__C
    1001c769 xdc_runtime_Error_raiseX__E
    1001c885 xdc_runtime_Gate_enterSystem__E
    1001c879 xdc_runtime_Gate_leaveSystem__E
    00000530 xdc_runtime_IGateProvider_Interface__BASE__C
    00000534 xdc_runtime_IHeap_Interface__BASE__C
    0000e288 xdc_runtime_ILogger_Interface__BASE__C
    00000538 xdc_runtime_IModule_Interface__BASE__C
    0000e28c xdc_runtime_Log_L_info__C
    0000e290 xdc_runtime_Log_L_warning__C
    0000b60d xdc_runtime_LoggerCallback_Instance_init__E
    0000df04 xdc_runtime_LoggerCallback_Module__FXNS__C
    20001da8 xdc_runtime_LoggerCallback_Module__root__V
    00009715 xdc_runtime_LoggerCallback_Module_startup__E
    0000e080 xdc_runtime_LoggerCallback_Object__DESC__C
    0000e0a0 xdc_runtime_LoggerCallback_Object__PARAMS__C
    0000e294 xdc_runtime_LoggerCallback_Object__count__C
    0000a5f1 xdc_runtime_LoggerCallback_Object__create__S
    0000bd85 xdc_runtime_LoggerCallback_Object__get__S
    20001db0 xdc_runtime_LoggerCallback_Object__table__V
    0000e298 xdc_runtime_LoggerCallback_createInstFxn__C
    0000c191 xdc_runtime_LoggerCallback_defaultCreate
    0000c04f xdc_runtime_LoggerCallback_disable__E
    0000c059 xdc_runtime_LoggerCallback_enable__E
    0000e29c xdc_runtime_LoggerCallback_outputFxn__C
    0000adfd xdc_runtime_LoggerCallback_write0__E
    0000ae25 xdc_runtime_LoggerCallback_write1__E
    0000aa55 xdc_runtime_LoggerCallback_write2__E
    0000a15d xdc_runtime_LoggerCallback_write4__E
    00009449 xdc_runtime_LoggerCallback_write8__E
    UNDEFED xdc_runtime_Main_Module_GateProxy_Handle__label__S
    UNDEFED xdc_runtime_Main_Module_GateProxy_Object__delete__S
    UNDEFED xdc_runtime_Main_Module_GateProxy_query__E
    0000053c xdc_runtime_Main_Module__diagsEnabled__C
    00000540 xdc_runtime_Main_Module__diagsIncluded__C
    00000544 xdc_runtime_Main_Module__diagsMask__C
    00000584 xdc_runtime_Main_Module__id__C
    0000e2c6 xdc_runtime_Main_Module__loggerDefined__C
    0000e2a0 xdc_runtime_Main_Module__loggerFxn2__C
    0000e2a4 xdc_runtime_Main_Module__loggerFxn4__C
    0000e2a8 xdc_runtime_Main_Module__loggerFxn8__C
    0000e2ac xdc_runtime_Main_Module__loggerObj__C
    1001bc89 xdc_runtime_Memory_HeapProxy_Handle__label__S
    UNDEFED xdc_runtime_Memory_HeapProxy_Handle__label__S__mangled__
    1001bca9 xdc_runtime_Memory_HeapProxy_Object__delete__S
    UNDEFED xdc_runtime_Memory_HeapProxy_Object__delete__S__mangled__
    1001c889 xdc_runtime_Memory_HeapProxy_alloc__E
    1001c88d xdc_runtime_Memory_HeapProxy_free__E
    00000586 xdc_runtime_Memory_Module__id__C
    20000200 xdc_runtime_Memory_Module__state__V
    1001c489 xdc_runtime_Memory_alloc__E
    1001c84d xdc_runtime_Memory_calloc__E
    00000548 xdc_runtime_Memory_defaultHeapInstance__C
    1001c801 xdc_runtime_Memory_free__E
    1001c859 xdc_runtime_Memory_getMaxDefaultTypeAlign__E
    1001c785 xdc_runtime_Memory_valloc__E
    20002540 xdc_runtime_Registry_Module__state__V
    0000b30d xdc_runtime_Registry_findById__E
    200001f0 xdc_runtime_Startup_Module__state__V
    00000001 xdc_runtime_Startup__EXECFXN__C
    00000001 xdc_runtime_Startup__RESETFXN__C
    0000054c xdc_runtime_Startup_execImpl__C
    1001c559 xdc_runtime_Startup_exec__E
    0000bc91 xdc_runtime_Startup_exec__I
    0000e260 xdc_runtime_Startup_firstFxns__A
    00000514 xdc_runtime_Startup_firstFxns__C
    000082ed xdc_runtime_Startup_getState__I
    0000051c xdc_runtime_Startup_lastFxns__C
    00000550 xdc_runtime_Startup_maxPasses__C
    0000bfdd xdc_runtime_Startup_reset__I
    0000bfe9 xdc_runtime_Startup_rtsDone__E
    0000e20c xdc_runtime_Startup_sfxnRts__A
    00000554 xdc_runtime_Startup_sfxnRts__C
    0000dfec xdc_runtime_Startup_sfxnTab__A
    00000558 xdc_runtime_Startup_sfxnTab__C
    0000055c xdc_runtime_Startup_startModsFxn__C
    1001c30d xdc_runtime_Startup_startMods__I
    00000560 xdc_runtime_SysCallback_abortFxn__C
    1001c811 xdc_runtime_SysCallback_abort__E
    00009db3 xdc_runtime_SysCallback_defaultAbort
    0000a31f xdc_runtime_SysCallback_defaultExit
    0000a793 xdc_runtime_SysCallback_defaultPutch
    0000c195 xdc_runtime_SysCallback_defaultReady
    00000564 xdc_runtime_SysCallback_exitFxn__C
    1001c821 xdc_runtime_SysCallback_exit__E
    0000e2b0 xdc_runtime_SysCallback_putchFxn__C
    0000bd95 xdc_runtime_SysCallback_putch__E
    0000e2b4 xdc_runtime_SysCallback_readyFxn__C
    0000bda5 xdc_runtime_SysCallback_ready__E
    1001bbe9 xdc_runtime_System_Module_GateProxy_Handle__label__S
    UNDEFED xdc_runtime_System_Module_GateProxy_Handle__label__S__mangled__
    1001bc09 xdc_runtime_System_Module_GateProxy_Object__delete__S
    UNDEFED xdc_runtime_System_Module_GateProxy_Object__delete__S__mangled__
    1001c891 xdc_runtime_System_Module_GateProxy_enter__E
    1001c895 xdc_runtime_System_Module_GateProxy_leave__E
    1001c269 xdc_runtime_System_Module_GateProxy_query__E
    UNDEFED xdc_runtime_System_Module_GateProxy_query__E__mangled__
    200001f8 xdc_runtime_System_Module__state__V
    1001c87f xdc_runtime_System_Module_startup__E
    UNDEFED xdc_runtime_System_SupportProxy_abort__E
    UNDEFED xdc_runtime_System_SupportProxy_exit__E
    0000bd95 xdc_runtime_System_SupportProxy_putch__E
    0000bda5 xdc_runtime_System_SupportProxy_ready__E
    00000568 xdc_runtime_System_abortFxn__C
    1001c899 xdc_runtime_System_abortSpin__E
    000093c5 xdc_runtime_System_abortStd__E
    1001c749 xdc_runtime_System_abort__E
    1001c681 xdc_runtime_System_atexit__E
    00001009 xdc_runtime_System_doPrint__I
    0000056c xdc_runtime_System_exitFxn__C
    1001c89b xdc_runtime_System_exitSpin__E
    000093cd xdc_runtime_System_exitStd__E
    1001c7d1 xdc_runtime_System_exit__E
    0000e2b8 xdc_runtime_System_extendFxn__C
    000077f9 xdc_runtime_System_formatNum__I
    00000570 xdc_runtime_System_maxAtexitHandlers__C
    0000476d xdc_runtime_System_printfExtend__I
    1001c6b9 xdc_runtime_System_processAtExit__E
    0000ab29 xdc_runtime_System_putchar__I
    0000b6c5 xdc_runtime_System_snprintf__E
    0000c199 xdc_runtime_System_snprintf_va__F
    0000bdb5 xdc_runtime_System_vsnprintf__E
    00000588 xdc_runtime_Text_charCnt__C
    0000c39c xdc_runtime_Text_charTab__A
    00000574 xdc_runtime_Text_charTab__C
    1001c71d xdc_runtime_Text_cordText__E
    0000058a xdc_runtime_Text_isLoaded__C
    00000578 xdc_runtime_Text_nameEmpty__C
    0000057c xdc_runtime_Text_nameStatic__C
    00000580 xdc_runtime_Text_nameUnknown__C
    0000e250 xdc_runtime_Text_nodeTab__A
    0000e2bc xdc_runtime_Text_nodeTab__C
    0000a621 xdc_runtime_Text_printVisFxn__I
    00008349 xdc_runtime_Text_putLab__E
    00006755 xdc_runtime_Text_putMod__E
    000063cd xdc_runtime_Text_putSite__E
    0000e2c8 xdc_runtime_Text_registryModsLastId__C
    1001c7e9 xdc_runtime_Text_ropeText__E
    0000e2ca xdc_runtime_Text_unnamedModsLastId__C
    00008f09 xdc_runtime_Text_visitRope2__I
    0000e2c0 xdc_runtime_Text_visitRopeFxn__C
    0000c063 xdc_runtime_Text_visitRope__I
    0000948d xdc_runtime_Text_xprintf__I
    1001c831 xdc_runtime_Timestamp_SupportProxy_get32__E
    0000be97 xdc_runtime_Timestamp_SupportProxy_get32__E__mangled__
    1001b9d1 xdc_runtime_Timestamp_SupportProxy_get64__E
    UNDEFED xdc_runtime_Timestamp_SupportProxy_get64__E__mangled__
    1001c12f xdc_runtime_Timestamp_SupportProxy_getFreq__E
    UNDEFED xdc_runtime_Timestamp_SupportProxy_getFreq__E__mangled__
    1001c831 xdc_runtime_Timestamp_get32__E
    UNDEFED xdc_runtime_Timestamp_get32__E
    1001b9d1 xdc_runtime_Timestamp_get64__E
    UNDEFED xdc_runtime_Timestamp_get64__E
    1001c12f xdc_runtime_Timestamp_getFreq__E
    UNDEFED xdc_runtime_Timestamp_getFreq__E
    10015d19 zADD
    10015eb5 zADD32
    10015de9 zMACC32
    10015f0d zMULT32
    10015bcd zSET
    10015d5d zSUB
    10015e69 zSUB32


    GLOBAL SYMBOLS: SORTED BY Symbol Address

    address name
    ------- ----
    00000000 __ASM__
    00000000 ti_sysbios_family_arm_m3_Hwi_resetVectors
    00000001 xdc_runtime_Startup__EXECFXN__C
    00000001 xdc_runtime_Startup__RESETFXN__C
    00000098 __ISA__
    000000aa __PLAT__
    000000d1 __TARG__
    000000f6 __TRDR__
    00000100 ti_sysbios_knl_Task_Object__PARAMS__C
    0000013c ti_sysbios_knl_Mailbox_Object__PARAMS__C
    00000170 ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C
    000001a0 ti_sysbios_hal_Hwi_Object__PARAMS__C
    000001cc ti_sysbios_heaps_HeapMem_Module__FXNS__C
    000001f4 ti_sysbios_knl_Swi_Object__PARAMS__C
    0000021c ti_sysbios_gates_GateHwi_Module__FXNS__C
    00000240 ti_sysbios_gates_GateMutex_Module__FXNS__C
    00000264 ti_sysbios_heaps_HeapMem_Object__PARAMS__C
    00000288 ti_sysbios_knl_Clock_Object__PARAMS__C
    000002ac ti_sysbios_knl_Semaphore_Object__PARAMS__C
    000002d0 ti_sysbios_family_arm_m3_Hwi_Object__DESC__C
    000002f0 ti_sysbios_gates_GateHwi_Object__DESC__C
    00000310 ti_sysbios_gates_GateMutex_Object__DESC__C
    00000330 ti_sysbios_hal_Hwi_Object__DESC__C
    00000350 ti_sysbios_heaps_HeapMem_Object__DESC__C
    00000370 ti_sysbios_knl_Clock_Object__DESC__C
    00000390 ti_sysbios_knl_Mailbox_Object__DESC__C
    000003b0 ti_sysbios_knl_Queue_Object__DESC__C
    000003d0 ti_sysbios_knl_Semaphore_Object__DESC__C
    000003f0 ti_sysbios_knl_Swi_Object__DESC__C
    00000400 __STACK_SIZE
    00000410 ti_sysbios_knl_Task_Object__DESC__C
    00000430 ti_sysbios_gates_GateHwi_Object__PARAMS__C
    00000448 ti_sysbios_gates_GateMutex_Object__PARAMS__C
    00000460 ti_sysbios_knl_Queue_Object__PARAMS__C
    00000478 ti_sysbios_knl_Idle_funcList__C
    00000481 GATTServApp_AddService
    00000484 ti_sysbios_family_arm_cc26xx_Timer_startupNeeded__C
    00000488 ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C
    0000048c ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C
    00000490 ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C
    00000494 ti_sysbios_family_arm_m3_Hwi_Object__count__C
    00000498 ti_sysbios_family_arm_m3_Hwi_Object__table__C
    0000049c ti_sysbios_family_arm_m3_Hwi_ccr__C
    000004a0 ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C
    000004a4 ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C
    000004a8 ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C
    000004ac ti_sysbios_family_arm_m3_Hwi_priGroup__C
    000004b0 ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C
    000004b4 ti_sysbios_heaps_HeapMem_E_memory__C
    000004b8 ti_sysbios_heaps_HeapMem_Module__gateObj__C
    000004bc ti_sysbios_heaps_HeapMem_Object__count__C
    000004c0 ti_sysbios_heaps_HeapMem_Object__table__C
    000004c4 ti_sysbios_heaps_HeapMem_reqAlign__C
    000004c8 ti_sysbios_knl_Clock_serviceMargin__C
    000004cc ti_sysbios_knl_Mailbox_Object__count__C
    000004d0 ti_sysbios_knl_Mailbox_Object__table__C
    000004d4 ti_sysbios_knl_Queue_Object__count__C
    000004d8 ti_sysbios_knl_Queue_Object__table__C
    000004dc ti_sysbios_knl_Swi_Object__count__C
    000004e0 ti_sysbios_knl_Swi_Object__table__C
    000004e4 ti_sysbios_knl_Swi_numPriorities__C
    000004e8 ti_sysbios_knl_Task_Object__count__C
    000004ec ti_sysbios_knl_Task_Object__table__C
    000004f0 ti_sysbios_knl_Task_allBlockedFunc__C
    000004f4 ti_sysbios_knl_Task_defaultStackHeap__C
    000004f8 ti_sysbios_knl_Task_defaultStackSize__C
    000004fc ti_sysbios_knl_Task_numConstructedTasks__C
    00000501 DefaultAssertCback
    00000502 ti_sysbios_family_arm_cc26xx_Timer_Module__id__C
    00000504 ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C
    00000506 ti_sysbios_family_arm_m3_Hwi_Module__id__C
    00000508 ti_sysbios_gates_GateHwi_Module__id__C
    0000050a ti_sysbios_gates_GateMutex_Module__id__C
    0000050c ti_sysbios_heaps_HeapMem_Module__id__C
    0000050e ti_sysbios_knl_Task_initStackFlag__C
    00000510 ti_sysbios_knl_Clock_tickMode__C
    00000514 xdc_runtime_Startup_firstFxns__C
    0000051c xdc_runtime_Startup_lastFxns__C
    00000524 xdc_runtime_Assert_E_assertFailed__C
    00000528 xdc_runtime_Error_E_memory__C
    0000052c xdc_runtime_Error_policyFxn__C
    00000530 xdc_runtime_IGateProvider_Interface__BASE__C
    00000534 xdc_runtime_IHeap_Interface__BASE__C
    00000538 xdc_runtime_IModule_Interface__BASE__C
    0000053c xdc_runtime_Main_Module__diagsEnabled__C
    00000540 xdc_runtime_Main_Module__diagsIncluded__C
    00000544 xdc_runtime_Main_Module__diagsMask__C
    00000548 xdc_runtime_Memory_defaultHeapInstance__C
    0000054c xdc_runtime_Startup_execImpl__C
    00000550 xdc_runtime_Startup_maxPasses__C
    00000554 xdc_runtime_Startup_sfxnRts__C
    00000558 xdc_runtime_Startup_sfxnTab__C
    0000055c xdc_runtime_Startup_startModsFxn__C
    00000560 xdc_runtime_SysCallback_abortFxn__C
    00000564 xdc_runtime_SysCallback_exitFxn__C
    00000568 xdc_runtime_System_abortFxn__C
    0000056c xdc_runtime_System_exitFxn__C
    00000570 xdc_runtime_System_maxAtexitHandlers__C
    00000574 xdc_runtime_Text_charTab__C
    00000578 xdc_runtime_Text_nameEmpty__C
    0000057c xdc_runtime_Text_nameStatic__C
    00000580 xdc_runtime_Text_nameUnknown__C
    00000584 xdc_runtime_Main_Module__id__C
    00000586 xdc_runtime_Memory_Module__id__C
    00000588 xdc_runtime_Text_charCnt__C
    0000058a xdc_runtime_Text_isLoaded__C
    0000058c xdc_runtime_Error_policy__C
    00000590 ti_sysbios_rom_ROM_AONRTCChannelEnable
    00000594 ti_sysbios_rom_ROM_AONRTCCompareValueSet
    00000598 ti_sysbios_rom_ROM_AONRTCCurrentCompareValueGet
    0000059c ti_sysbios_rom_ROM_AONRTCEventClear
    000005a0 ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E
    000005a4 ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E
    000005a8 ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E
    000005ac ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_initDevice__I
    000005b0 ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E
    000005b4 ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I
    000005b8 ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_Timer_start__E
    000005bc ti_sysbios_rom_ROM_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E
    000005c0 ti_sysbios_rom_ROM_xdc_runtime_Startup_getState__I
    000005c4 ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_abort__E
    000005c8 ti_sysbios_rom_ROM_xdc_runtime_System_SupportProxy_exit__E
    000005cc ti_sysbios_gates_GateMutex_Instance_State_sem__O
    000005d0 ti_sysbios_knl_Clock_Module_State_clockQ__O
    000005d4 ti_sysbios_knl_Mailbox_Instance_State_dataQue__O
    000005d8 ti_sysbios_knl_Mailbox_Instance_State_dataSem__O
    000005dc ti_sysbios_knl_Mailbox_Instance_State_freeQue__O
    000005e0 ti_sysbios_knl_Mailbox_Instance_State_freeSem__O
    000005e4 ti_sysbios_knl_Semaphore_Instance_State_pendQ__O
    000005e8 ti_sysbios_knl_Task_Module_State_inactiveQ__O
    00001009 xdc_runtime_System_doPrint__I
    0000193d UARTCC26XX_open
    00001c25 I2CCC26XX_transfer
    00001e89 UARTCC26XX_write
    000020e5 GAPRole_SetParameter
    00002321 Power_sleep
    00002549 SensorS5852A_read
    00002759 NOROM_SysCtrlSetRechargeBeforePowerDown
    0000295d I2CCC26XX_open
    00002b51 __aeabi_uldivmod
    00002d45 UARTCC26XX_read
    00003465 PIN_init
    0000360d RF_cancelCmd
    000037b5 PowerCC26XX_doCalibrate
    00003939 RF_postCmd
    00003c0d UARTCC26XX_hwiIntFxn
    00003ec1 NOROM_SetupAfterColdResetWakeupFromShutDownCfg3
    00004119 GAPRole_GetParameter
    00004239 Power_init
    00004355 UARTCC26XX_writeCancel
    00004671 __aeabi_dmul
    0000476d xdc_runtime_System_printfExtend__I
    00004865 UARTCC26XX_readCancel
    00004d11 NOROM_SetupAfterColdResetWakeupFromShutDownCfg2
    00004ed5 UARTCC26XX_close
    00004fb1 Power_releaseDependency
    00005085 I2CCC26XX_close
    00005155 Power_setDependency
    00005225 UARTCC26XX_swiIntFxn
    0000555d SensorTagKeys_processKeyLeft
    00005625 SensorTagKeys_processKeyRight
    00005b89 RF_open
    00005c49 SensorTagMov_processCharChangeEvt
    00005dc9 PowerCC26XX_standbyPolicy
    000060a5 SensorTagIO_processCharChangeEvt
    0000614d NOROM_SetupTrimDevice
    0000614d ti_sysbios_family_arm_cc26xx_Boot_trimDevice
    000061f1 __TI_auto_init
    00006291 ti_sysbios_knl_Task_setPri__E
    00006331 __aeabi_memcpy
    00006331 __aeabi_memcpy4
    00006331 __aeabi_memcpy8
    00006331 memcpy
    000063cd xdc_runtime_Text_putSite__E
    00006467 NOROM_RFCAdi3VcoLdoVoltageMode
    00006469 PIN_open
    00006501 ti_sysbios_knl_Clock_workFuncDynamic__E
    00006599 GATTServApp_ProcessCharCfg
    0000662d SensorTagOpt_processCharChangeEvt
    00006755 xdc_runtime_Text_putMod__E
    00006a29 DevInfo_SetParameter
    00006ab5 NOROM_OSCHF_GetStartupTime
    00006ab5 PowerCC26XX_getXoscStartupTime
    00006b41 I2CCC26XX_cancel
    00006bc9 SensorTagBar_processCharChangeEvt
    00006c51 SensorTagRegister_processCharChangeEvt
    00006de9 ICall_heapMalloc
    00006ef1 TRNGCC26XX_getNumber
    00006ff9 RF_pendCmd
    00007079 SensorTagTmp_processCharChangeEvt
    00007179 uartLog_outputFxn
    000071f9 ICall_createRemoteTasks
    00007275 SensorTagHum_processCharChangeEvt
    0000736d __aeabi_memclr
    0000736d __aeabi_memclr4
    0000736d __aeabi_memclr8
    0000736f __aeabi_memset
    0000736f __aeabi_memset4
    0000736f __aeabi_memset8
    00007375 memset
    000073e7 NOROM_RFCRTrim
    000073e9 NOROM_SetupAfterColdResetWakeupFromShutDownCfg1
    00007461 ICallPlatform_pwrUpdActivityCounter
    00007549 PowerCC26XX_auxISR
    00007719 NOROM_ChipInfo_GetHwRevision
    00007789 SensorI2C_select
    000077f9 xdc_runtime_System_formatNum__I
    00007869 ICall_heapInit
    000078d5 NOROM_SetupGetTrimForAmpcompCtrl
    00007941 PowerCC26XX_calibrate
    000079ad SensorMpu9250_reset
    00007bc7 __aeabi_idiv0
    00007bc9 NOROM_SetupGetTrimForAnabypassValue1
    00007c31 NOROM_SysCtrl_DCDC_VoltageConditionalControl
    00007c99 uartLog_flush
    00007d01 ti_sysbios_family_arm_cc26xx_Timer_start__E
    00007dc7 ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E
    00007e89 PowerCC26XX_RCOSC_clockFunc
    00007ee9 RF_getCurrentTime
    000080c5 NOROM_OSCHF_AttemptToSwitchToXosc
    00008121 NOROM_SysCtrlAdjustRechargeAfterPowerDown
    0000817d SensorMpu9250_test
    000082ed xdc_runtime_Startup_getState__I
    00008349 xdc_runtime_Text_putLab__E
    00008459 Movement_setParameter
    000084b1 PIN_remove
    00008509 PowerCC26XX_initiateCalibration
    00008561 UARTCC26XX_control
    000085b9 Barometer_setParameter
    0000860d SensorI2C_open
    00008661 Util_rescheduleClock
    00008857 ti_sysbios_BIOS_nullFunc__I
    00008859 GAP_DeviceInit
    000088a9 GAP_UpdateAdvertisingData
    000088f9 Humidity_setParameter
    00008999 IRTemp_setParameter
    000089e9 NOROM_SetupSetCacheModeAccordingToCcfgSetting
    00008a39 Optic_setParameter
    00008a89 RF_getInfo
    00008b29 SensorOpt3001_test
    00008bc5 ICallPlatform_pwrRegisterNotify
    00008ca9 NOROM_OSCClockSourceSet
    00008d41 Util_constructClock
    00008e71 copy_in
    00008f09 xdc_runtime_Text_visitRope2__I
    00008f55 GATTServApp_ProcessCCCWriteReq
    00008f9f ti_sysbios_knl_Clock_triggerFunc__I
    00008fe9 NOROM_ChipInfo_GetChipFamily
    00009031 NOROM_DDI16BitfieldWrite
    00009199 __aeabi_d2iz
    00009229 GAP_TerminateLinkReq
    000092b1 SensorMpu9250_accSetRange
    000092f5 SensorTagIO_blinkLed
    00009339 ResetISR
    00009339 _c_int00
    000093c1 C$$EXIT
    000093c5 abort
    000093c5 xdc_runtime_System_abortStd__E
    000093cd exit
    000093cd xdc_runtime_System_exitStd__E
    00009449 xdc_runtime_LoggerCallback_write8__E
    0000948d xdc_runtime_Text_xprintf__I
    00009513 ti_sysbios_rom_cortexm_cc26xx_CC26xx_badRomRevision__E
    00009515 GAPRole_SendUpdateParam
    00009555 GAPRole_createTask
    00009595 NOROM_DDI16BitfieldRead
    000095d5 RF_getRssi
    00009615 SensorTmp007_enable
    00009655 __aeabi_uidiv
    00009655 __aeabi_uidivmod
    00009715 xdc_runtime_LoggerCallback_Module_startup__E
    00009755 GAP_GetParamValue
    00009791 GATTServApp_RegisterService
    000097cd ICallPlatform_pwrConfigACAction
    00009809 NOROM_OSC_HPOSCRelativeFrequencyOffsetGet
    00009845 NOROM_RFCSynthPowerDown
    00009881 RF_runCmd
    000098bd Register_setParameter
    000098f9 SensorI2C_writeRead
    00009935 SensorMpu9250_accReadRange
    00009971 SensorTagBuzzer_open
    000099ad SensorTagBuzzer_setFrequency
    000099e9 SensorTag_createTask
    00009b15 GAPBondMgr_LinkEst
    00009b4d I2C_init
    00009bbd PIN_setOutputEnable
    00009bf5 SensorI2C_write
    00009c2d UART_init
    00009c65 Util_restartClock
    00009d0d linkDB_NumConns
    00009d45 ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E
    00009db3 xdc_runtime_SysCallback_defaultAbort
    00009db5 GAPBondMgr_SetParameter
    00009de9 GAP_SetParamValue
    00009eed ICall_searchServiceEntity
    00009f21 Io_setParameter
    00009f55 NOROM_OSCHF_SwitchToRcOscTurnOffXosc
    00009f89 NOROM_TRNGConfigure
    00009fbd PowerCC26XX_isStableXOSC_HF
    0000a025 Register_getParameter
    0000a059 SensorMpu9250_enable
    0000a08d SensorTagKeys_processRelay
    0000a0c1 osal_snv_read
    0000a0f5 osal_snv_write
    0000a15d xdc_runtime_LoggerCallback_write4__E
    0000a1f5 main
    0000a2bd ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E
    0000a31f xdc_runtime_SysCallback_defaultExit
    0000a381 Movement_getParameter
    0000a3b1 NOROM_SetupSetAonRtcSubSecInc
    0000a3e1 PIN_setInterrupt
    0000a411 PIN_setOutputValue
    0000a441 Power_releaseConstraint
    0000a471 Power_setConstraint
    0000a4a1 SensorMpu9250_powerOn
    0000a4d1 UART_open
    0000a531 ti_sysbios_BIOS_atExitFunc__I
    0000a561 ti_sysbios_BIOS_startFunc__I
    0000a591 ti_sysbios_family_arm_cc26xx_Timer_initDevice__I
    0000a5c1 ti_sysbios_family_arm_cc26xx_Timer_setThreshold__I
    0000a5f1 xdc_runtime_LoggerCallback_Object__create__S
    0000a621 xdc_runtime_Text_printVisFxn__I
    0000a737 SensorOpt3001_enable
    0000a793 xdc_runtime_SysCallback_defaultPutch
    0000a795 GAPBondMgr_Register
    0000a7c1 ICall_freeImpl
    0000a7c1 ICall_heapFree
    0000a8c9 NOROM_DDI32RegWrite
    0000a8f5 NOROM_SetupGetTrimForRadcExtCfg
    0000a921 PINCC26XX_setMux
    0000a94d PIN_setConfig
    0000a979 SensorI2C_writeReg
    0000a9a5 SensorTagBatt_init
    0000a9fd ti_sysbios_knl_Clock_getTicksUntilInterrupt__E
    0000aa29 utilExtractUuid16
    0000aa55 xdc_runtime_LoggerCallback_write2__E
    0000aaab TRNGCC26XX_isParamValid
    0000aad5 Util_enqueueMsg
    0000ab29 xdc_runtime_System_putchar__I
    0000ab55 Batt_AddService
    0000ab7d GATTServApp_WriteCharCfg
    0000aba5 ICall_init
    0000ac45 NOROM_AONBatMonTemperatureGetDegC
    0000ac6d PowerCC26XX_switchXOSC_HF
    0000ac95 Power_registerNotify
    0000acbd SafeHapiVoid
    0000ace5 SensorBmp280_enable
    0000ad0d SensorTagBuzzer_close
    0000ad5d TRNGCC26XX_init
    0000add5 ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E
    0000adfd xdc_runtime_LoggerCallback_write0__E
    0000ae25 xdc_runtime_LoggerCallback_write1__E
    0000ae4d List_put
    0000ae75 Barometer_getParameter
    0000ae99 GAPBondMgr_LinkTerm
    0000aebd I2C_open
    0000af29 PINCC26XX_getPinCount
    0000af4d SensorMpu9250_powerOff
    0000af71 SensorTagRegister_update
    0000afdd ti_sysbios_BIOS_registerRTSLock__I
    0000b001 ti_sysbios_BIOS_removeRTSLock__I
    0000b08b memcmp
    0000b0ad GATTServApp_InitCharCfg
    0000b0cd Humidity_getParameter
    0000b18d IRTemp_getParameter
    0000b1ad NOROM_RFCDoorbellSendTo
    0000b1cd NOROM_RFCRfTrimRead
    0000b1ed NOROM_SetupGetTrimForXoscHfCtl
    0000b20d Optic_getParameter
    0000b22d Power_unregisterNotify
    0000b24d SensorTagBatt_reset
    0000b2ad __aeabi_ui2d
    0000b2cd ti_sysbios_BIOS_rtsLock__I
    0000b2ed ti_sysbios_knl_Clock_stop__E
    0000b30d xdc_runtime_Registry_findById__E
    0000b34b PIN_close
    0000b369 Power_getTransitionLatency
    0000b3a5 Batt_MeasLevel
    0000b3c1 GAPRole_StartDevice
    0000b3dd GATT_bm_alloc
    0000b3f9 GATT_bm_free
    0000b469 NOROM_OSCClockSourceGet
    0000b485 NOROM_SetupGetTrimForAmpcompTh2
    0000b4a1 NOROM_SetupGetTrimForRcOscLfRtuneCtuneTrim
    0000b4f5 RF_runDirectCmd
    0000b511 RF_runImmediateCmd
    0000b52d SensorTagBatt_processCharChangeEvt
    0000b581 TRNGCC26XX_open
    0000b5d5 openTRNG
    0000b5f1 ti_sysbios_family_arm_cc26xx_Timer_dynamicStub__E
    0000b60d xdc_runtime_LoggerCallback_Instance_init__E
    0000b629 GATT_Notification
    0000b643 ICall_enterCSImpl
    0000b677 List_remove
    0000b691 Util_dequeueMsg
    0000b6c5 xdc_runtime_System_snprintf__E
    0000b6e1 Batt_SetParameter
    0000b6f9 GAPRole_TerminateConnection
    0000b711 I2C_Params_init
    0000b729 ICallPlatform_pwrDispense
    0000b741 ICallPlatform_pwrRequire
    0000b819 NOROM_AONRTCCurrentCompareValueGet
    0000b831 NOROM_ChipInfo_GetPackageType
    0000b849 NOROM_OSCHF_TurnOnXosc
    0000b861 NOROM_RFCCpeIntGetAndClear
    0000b879 NOROM_SetupGetTrimForAdcShModeEn
    0000b891 NOROM_SetupGetTrimForAdcShVbufEn
    0000b8a9 NOROM_SetupGetTrimForAmpcompTh1
    0000b8c1 NOROM_SetupGetTrimForDblrLoopFilterResetVoltage
    0000b8d9 NOROM_SetupGetTrimForRcOscLfIBiasTrim
    0000b8f1 NOROM_SetupGetTrimForXoscLfRegulatorAndCmirrwrRatio
    0000b909 Power_idleFunc
    0000b969 SensorTag_updateAdvertisingData
    0000b981 UARTCC26XX_init
    0000b999 Util_constructQueue
    0000b9c9 gapRole_clockHandler
    0000ba41 _args_main
    0000ba59 __aeabi_lmul
    0000ba89 ti_sysbios_BIOS_rtsUnlock__I
    0000baa1 ti_sysbios_knl_Swi_or__E
    0000bab9 ti_sysbios_rom_cortexm_cc26xx_CC26xx_checkRevision__E
    0000bad1 AssertHandler
    0000bafd ICall_leaveCSImpl
    0000bb29 driverTable_fnSpinlock
    0000bb3f ti_sysbios_BIOS_exitFunc__I
    0000bb55 Batt_Register
    0000bb69 DevInfo_AddService
    0000bb7d Io_getParameter
    0000bb91 NOROM_AONRTCCurrent64BitValueGet
    0000bba5 NOROM_ThisCodeIsBuiltForCC26xxHwRev22AndLater_HaltIfViolated
    0000bbb9 PIN_getInputValue
    0000bbcd PIN_getOutputValue
    0000bbe1 RF_Params_init
    0000bbf5 SensorMpu9250_powerIsOn
    0000bc09 SensorTagBatt_processSensorEvent
    0000bc1d _nop
    0000bc1f _register_unlock
    0000bc25 _register_lock
    0000bc31 strlen
    0000bc59 ti_sysbios_knl_Clock_doTick__I
    0000bc6d GATTServApp_FindAttr
    0000bc7f RF_getCmdOp
    0000bc91 xdc_runtime_Startup_exec__I
    0000bcb5 GAP_EndDiscoverable
    0000bcc5 GATTServApp_ReadCharCfg
    0000bcd5 ICallPlatform_pwrGetXOSCStartupTime
    0000bd05 NOROM_RFCRfTrimSet
    0000bd15 NOROM_SetupGetTrimForXoscHfFastStart
    0000bd25 NOROM_SetupGetTrimForXoscHfIbiastherm
    0000bd35 RegisterAssertCback
    0000bd45 Util_isActive
    0000bd65 ti_sysbios_family_arm_m3_Hwi_post__E
    0000bd65 ti_sysbios_hal_Hwi_HwiProxy_post__E
    0000bd65 ti_sysbios_hal_Hwi_post__E
    0000bd85 xdc_runtime_LoggerCallback_Object__get__S
    0000bd95 xdc_runtime_SysCallback_putch__E
    0000bd95 xdc_runtime_System_SupportProxy_putch__E
    0000bda5 xdc_runtime_SysCallback_ready__E
    0000bda5 xdc_runtime_System_SupportProxy_ready__E
    0000bdb5 xdc_runtime_System_vsnprintf__E
    0000bdc5 GATT_Indication
    0000bdd3 ICallPlatform_pwrGetTransitionState
    0000bde1 ICallPlatform_pwrIsStableXOSCHF
    0000be27 NOROM_SetupSignExtendVddrTrimValue
    0000be35 NOROM_VIMSModeGet
    0000be43 SensorI2C_readReg
    0000be51 __TI_decompress_none
    0000be97 ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E
    0000be97 xdc_runtime_Timestamp_SupportProxy_get32__E__mangled__
    0000beb1 GAP_MakeDiscoverable
    0000bebd GAP_TerminateAuth
    0000bec9 GAP_UpdateLinkParamReq
    0000bed5 GAP_UpdateLinkParamReqReply
    0000bee1 GGS_SetParameter
    0000bf29 NOROM_CPUcpsid
    0000bf35 NOROM_CPUcpsie
    0000bf41 Power_getConstraintMask
    0000bf4d Power_getDependencyCount
    0000bf59 Power_getTransitionState
    0000bf65 SensorI2C_deselect
    0000bf89 SensorTag_testResult
    0000bf95 UartLog_doInit
    0000bfa1 __TI_zero_init
    0000bfb9 ti_sysbios_BIOS_getThreadType__E
    0000bfc5 ti_sysbios_hal_Hwi_Params__init__S
    0000bfd1 ti_sysbios_knl_Swi_getTrigger__E
    0000bfdd xdc_runtime_Startup_reset__I
    0000bfe9 xdc_runtime_Startup_rtsDone__E
    0000bff5 I2CCC26XX_init
    0000bfff I2C_close
    0000c009 I2C_transfer
    0000c013 ICallPlatform_pwrSwitchXOSCHF
    0000c027 List_empty
    0000c031 SensorTag_charValueChangeCB
    0000c045 UART_write
    0000c04f xdc_runtime_LoggerCallback_disable__E
    0000c059 xdc_runtime_LoggerCallback_enable__E
    0000c063 xdc_runtime_Text_visitRope__I
    0000c06d RF_flushCmd
    0000c0bd GGS_AddService
    0000c0c3 I2CCC26XX_control
    0000c0c9 ICall_mallocImpl
    0000c0cf NOROM_CPUdelay
    0000c0d5 PIN_registerIntCb
    0000c0db UARTCC26XX_readPolling
    0000c0e1 UARTCC26XX_writePolling
    0000c0e7 __xdc__init
    0000c0f3 __TI_decompress_rle24
    0000c153 ti_sysbios_family_arm_m3_Hwi_setFunc__E
    0000c159 HwiP_disable
    0000c161 List_head
    0000c165 List_next
    0000c171 Util_startClock
    0000c175 Util_stopClock
    0000c181 ti_sysbios_family_arm_cc26xx_Timer_getCount64__E
    0000c185 ti_sysbios_knl_Clock_isActive__E
    0000c189 ti_sysbios_knl_Clock_setPeriod__E
    0000c18d ti_sysbios_knl_Queue_insert__E
    0000c191 xdc_runtime_LoggerCallback_defaultCreate
    0000c195 xdc_runtime_SysCallback_defaultReady
    0000c199 xdc_runtime_System_snprintf_va__F
    0000c39c xdc_runtime_Text_charTab__A
    0000dc28 resourceDB
    0000dc74 rfDriverTable
    0000df04 xdc_runtime_LoggerCallback_Module__FXNS__C
    0000df38 ioServUUID
    0000df48 ioDataUUID
    0000df58 ioConfUUID
    0000df68 BoardGpioInitTable
    0000df98 primaryServiceUUID
    0000df9a characterUUID
    0000df9c clientCharCfgUUID
    0000df9e charFormatUUID
    0000dfa0 reportRefUUID
    0000dfa2 gapServiceUUID
    0000dfa4 gattServiceUUID
    0000dfa6 secondaryServiceUUID
    0000dfa8 includeUUID
    0000dfaa charExtPropsUUID
    0000dfac charUserDescUUID
    0000dfae servCharCfgUUID
    0000dfb0 charAggFormatUUID
    0000dfb2 deviceNameUUID
    0000dfb4 appearanceUUID
    0000dfb6 periPrivacyFlagUUID
    0000dfb8 reconnectAddrUUID
    0000dfba periConnParamUUID
    0000dfbc serviceChangedUUID
    0000dfbe validRangeUUID
    0000dfc0 extReportRefUUID
    0000dfc4 UARTCC26XX_fxnTable
    0000dfec xdc_runtime_Startup_sfxnTab__A
    0000e014 txPowerTable
    0000e03c UART_defaultParams
    0000e060 I2CCC26XX_fxnTable
    0000e080 xdc_runtime_LoggerCallback_Object__DESC__C
    0000e0a0 xdc_runtime_LoggerCallback_Object__PARAMS__C
    0000e0bc I2C_config
    0000e0d4 UART_config
    0000e0ea __checksum_value_CommonROM
    0000e0ec i2cCC26xxHWAttrs
    0000e104 uartCC26XXHWAttrs
    0000e11c devInfoServUUID
    0000e11e devInfoSystemIdUUID
    0000e120 devInfoModelNumberUUID
    0000e122 devInfoSerialNumberUUID
    0000e124 devInfoFirmwareRevUUID
    0000e126 devInfoHardwareRevUUID
    0000e128 devInfoSoftwareRevUUID
    0000e12a devInfoMfrNameUUID
    0000e12c devInfo11073CertUUID
    0000e12e devInfoPnpIdUUID
    0000e160 battCBs
    0000e16c txPwrTbl
    0000e174 trngDriverTable
    0000e188 devInfoCBs
    0000e1b0 ioCBs
    0000e20c xdc_runtime_Startup_sfxnRts__A
    0000e220 I2C_defaultParams
    0000e230 PowerCC26XX_config
    0000e240 TRNGCC26XX_config
    0000e250 xdc_runtime_Text_nodeTab__A
    0000e260 xdc_runtime_Startup_firstFxns__A
    0000e26c ti_sysbios_knl_Idle_funcList__A
    0000e274 battServUUID
    0000e276 battLevelUUID
    0000e278 TRNGCC26XXHWAttrs
    0000e280 ti_sysbios_knl_Clock_tickPeriod__C
    0000e284 ti_sysbios_knl_Clock_triggerClock__C
    0000e288 xdc_runtime_ILogger_Interface__BASE__C
    0000e28c xdc_runtime_Log_L_info__C
    0000e290 xdc_runtime_Log_L_warning__C
    0000e294 xdc_runtime_LoggerCallback_Object__count__C
    0000e298 xdc_runtime_LoggerCallback_createInstFxn__C
    0000e29c xdc_runtime_LoggerCallback_outputFxn__C
    0000e2a0 xdc_runtime_Main_Module__loggerFxn2__C
    0000e2a4 xdc_runtime_Main_Module__loggerFxn4__C
    0000e2a8 xdc_runtime_Main_Module__loggerFxn8__C
    0000e2ac xdc_runtime_Main_Module__loggerObj__C
    0000e2b0 xdc_runtime_SysCallback_putchFxn__C
    0000e2b4 xdc_runtime_SysCallback_readyFxn__C
    0000e2b8 xdc_runtime_System_extendFxn__C
    0000e2bc xdc_runtime_Text_nodeTab__C
    0000e2c0 xdc_runtime_Text_visitRopeFxn__C
    0000e2c6 xdc_runtime_Main_Module__loggerDefined__C
    0000e2c8 xdc_runtime_Text_registryModsLastId__C
    0000e2ca xdc_runtime_Text_unnamedModsLastId__C
    0000e2d0 __TI_static_base__
    0000eca0 __TI_Handler_Table_Base
    0000ecac __TI_Handler_Table_Limit
    0000ecf8 __TI_CINIT_Base
    0000ed58 __TI_CINIT_Limit
    0001ffa8 __ccfg
    10014c00 A1_rw
    10014c00 __checksum_begin_CommonROM
    10014c01 COMMON_ROM_BASE_ADDR
    10014c04 P1_ro
    10014c05 SCALARMUL_init
    10014ced SCALARMUL_core
    10015019 SCALARMUL_final
    100150e5 SCALARMUL
    10015101 SAVEPOINT
    10015141 GETBIT
    10015155 GETDIGIT
    100151a5 GETDIGITL2R
    10015215 SelectReg
    10015229 ATOMICPATTERN
    100154f5 JACADD
    1001568d INVERT
    10015821 SQUAREMULTIPLYWORD
    1001588c LUTOPCODE
    10015894 LUTOPSIGN
    100158ac LUTC
    100158c4 LUTSE
    100158dc LUTINCI
    100158f4 LUTJ
    1001596c LUTSTATE
    100159a9 IMPORTLENGTH
    100159ad IMPORTMODULUS
    100159d1 IMPORTOPERAND
    10015a11 EXPORTOPERAND
    10015a35 IMPORTDATA
    10015a51 SETOPERAND
    10015a6d COPY
    10015a85 ZERO
    10015a91 SETWORD
    10015a9d mSET
    10015bcd zSET
    10015bd5 mINVK
    10015d19 zADD
    10015d5d zSUB
    10015de9 zMACC32
    10015e69 zSUB32
    10015eb5 zADD32
    10015f0d zMULT32
    10015f81 mMULT
    10016551 mADD
    1001664d mSUB
    10016749 mOUT
    10016975 ssp_KeyInit_Sw
    10016979 sspAesEncrypt_Sw
    10016985 sspKeyExpansion_Sw
    10016a99 sspAesEncryptKeyExp_Sw
    10016af5 sspAesEncryptBasic_Sw
    10016b79 RoundKey_Sw
    10016c29 AddRoundKeySubBytes_Sw
    10016c45 ShiftRows_Sw
    10016c79 MixColumns_Sw
    10016d05 FFMult_Sw
    10016d29 sspAesDecrypt_Sw
    10016da1 InvAddRoundKey_Sw
    10016dc9 InvRoundKey_Sw
    10016e8d InvSubBytes_Sw
    10016ea1 InvShiftRows_Sw
    10016ed5 InvMixColumns_Sw
    10016f58 FFMult2
    10017058 FFMult3
    10017158 RCon
    10017164 Sbox
    10017264 InvSbox
    10017365 SSP_CCM_Auth_Sw
    100174fd SSP_CCM_Encrypt_Sw
    100175ed SSP_CTR_Encrypt_Sw
    1001767d SSP_CCM_Decrypt_Sw
    10017771 SSP_CTR_Decrypt_Sw
    10017839 SSP_CCM_InvAuth_Sw
    10017895 SSP_CCM_Auth_Encrypt_Sw
    100178f5 SSP_CCM_InvAuth_Decrypt_Sw
    10017959 ECC_allocWorkzone
    10017961 ECC_setWin
    10017969 ECDSA_sign
    10017b01 ECDSA_verif
    10017dbd eccRom_genKeys
    10017ded eccRom_genSharedSecret
    10017e39 SHA256_updateW
    10017e75 SHA256_round
    10017ef1 SHA256_nextState
    10017f49 SHA256_saveBuffer
    10017ffd SHA256_init
    10018019 SHA256_process
    10018089 SHA256_final
    10018129 SHA256_full
    100182ad RFHAL_InitRfHal
    10018315 RFHAL_AllocRatChan
    1001833d RFHAL_FreeRatChan
    10018369 RFHAL_MapRatChansToInt
    10018391 RFHAL_RegisterRatChanCallback
    100183b9 RFHAL_InitDataQueue
    100183c5 RFHAL_QueueRFDataEntries
    10018415 RFHAL_AddTxDataEntry
    10018485 RFHAL_FreeNextTxDataEntry
    100184a9 RFHAL_AllocDataEntryQueue
    100184c5 RFHAL_FreeDataEntryQueue
    100184cd RFHAL_GetNextDataEntry
    100184d1 RFHAL_GetTempDataEntry
    100184d5 RFHAL_NextDataEntryDone
    100184f9 RFHAL_AllocDataEntry
    10018549 RFHAL_FreeDataEntry
    10018551 RFHAL_BuildRingBuffer
    100185e1 RFHAL_BuildDataEntryRingBuffer
    10018669 RFHAL_BuildLinkedBuffer
    10018755 MB_Init
    10018799 MB_EnableInts
    100187f5 MB_DisableInts
    10018825 MB_ClearInts
    10018835 MB_EnableHWInts
    10018865 MB_SendCommand
    100188a5 MB_SendCommandSynch
    10018935 MB_ReadMailboxStatus
    1001893d MB_RegisterIsrCback
    10018945 MB_FwDebugDump
    10018949 mbCmdAckIsr
    1001895d mbCpe0Isr
    10018985 mbCpe1Isr
    100189e5 mbHwIsr
    10018a19 AesCcm_authEncrypt_Sw
    10018a35 AesCcm_decryptAuth_Sw
    10018a99 Aes_encrypt_Sw
    10018ac5 Aes_decrypt_Sw
    10018b09 AesCcm_getNumBlocks_Sw
    10018b0c NIST_Curve_P256_p
    10018b30 NIST_Curve_P256_r
    10018b54 NIST_Curve_P256_a
    10018b78 NIST_Curve_P256_b
    10018b9c NIST_Curve_P256_Gx
    10018bc0 NIST_Curve_P256_Gy
    10018ced __exit
    10018d6c Fill1
    10019ffc A3_rw
    10019ffd __checksum_end_CommonROM
    10019ffe A2_rw
    10019ffe P1_ro_2
    10019ffe __checksum_CommonROM
    1001a001 ti_sysbios_knl_Mailbox_Instance_init__E
    1001a0cd ti_sysbios_knl_Semaphore_pend__E
    1001a199 ti_sysbios_heaps_HeapMem_alloc__E
    1001a25d ti_sysbios_knl_Task_Instance_init__E
    1001a319 ti_sysbios_family_arm_m3_Hwi_postInit__I
    1001a3c9 ti_sysbios_family_arm_m3_Hwi_Instance_init__E
    1001a469 ti_sysbios_family_arm_cc26xx_Timer_periodicStub__E
    1001a4fd ti_sysbios_knl_Task_Instance_finalize__E
    1001a591 ti_sysbios_knl_Mailbox_post__E
    1001a615 ti_sysbios_knl_Task_postInit__I
    1001a699 ti_sysbios_family_arm_m3_Hwi_initNVIC__E
    1001a719 ti_sysbios_knl_Clock_startI__E
    1001a795 ti_sysbios_heaps_HeapMem_free__E
    1001a80d ti_sysbios_knl_Clock_walkQueueDynamic__E
    1001a885 ti_sysbios_knl_Clock_workFunc__E
    1001a8fd ti_sysbios_knl_Mailbox_pend__E
    1001a96d ti_sysbios_knl_Task_sleep__E
    1001a9dd ti_sysbios_knl_Mailbox_Instance_finalize__E
    1001aa49 ti_sysbios_family_arm_m3_Hwi_dispatchC__I
    1001aab1 ti_sysbios_family_arm_m3_Hwi_Object__create__S
    1001ab15 ti_sysbios_family_arm_m3_Hwi_create
    1001ab79 ti_sysbios_hal_Hwi_create
    1001abdd ti_sysbios_knl_Mailbox_create
    1001ac41 ti_sysbios_knl_Semaphore_post__E
    1001aca5 ti_sysbios_knl_Swi_Instance_init__E
    1001ad05 ti_sysbios_knl_Swi_create
    1001ad61 ti_sysbios_knl_Swi_restoreHwi__E
    1001adbd ti_sysbios_knl_Task_Module_startup__E
    1001ae19 ti_sysbios_knl_Task_create
    1001ae75 ti_sysbios_knl_Task_startCore__E
    1001aed1 ti_sysbios_family_arm_m3_Hwi_Instance_finalize__E
    1001af29 ti_sysbios_family_arm_m3_Hwi_construct
    1001af81 ti_sysbios_knl_Mailbox_construct
    1001afd9 ti_sysbios_knl_Swi_run__I
    1001b031 ti_sysbios_knl_Swi_schedule__I
    1001b085 ti_sysbios_knl_Swi_construct
    1001b0d5 ti_sysbios_knl_Swi_runLoop__I
    1001b125 ti_sysbios_knl_Task_construct
    1001b175 ti_sysbios_knl_Task_schedule__I
    1001b1c1 ti_sysbios_family_arm_m3_Hwi_Module_startup__E
    1001b209 ti_sysbios_heaps_HeapMem_getStats__E
    1001b251 ti_sysbios_knl_Mailbox_Module_startup__E
    1001b299 ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E
    1001b2dd ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E
    1001b321 ti_sysbios_knl_Swi_post__E
    1001b365 ti_sysbios_knl_Task_allBlockedFunction__I
    1001b3a9 ti_sysbios_knl_Task_yield__E
    1001b3ed ti_sysbios_knl_Clock_create
    1001b429 ti_sysbios_knl_Task_exit__E
    1001b463 ti_sysbios_gates_GateHwi_Instance_init__E
    1001b465 ti_sysbios_family_arm_m3_Hwi_getStackInfo__E
    1001b49d ti_sysbios_family_arm_m3_TaskSupport_start__E
    1001b4d5 ti_sysbios_heaps_HeapMem_Instance_init__E
    1001b50d ti_sysbios_knl_Clock_Instance_init__E
    1001b545 ti_sysbios_heaps_HeapMem_init__I
    1001b579 ti_sysbios_knl_Clock_construct
    1001b5ad ti_sysbios_knl_Semaphore_create
    1001b5e1 ti_sysbios_knl_Swi_restore__E
    1001b615 ti_sysbios_knl_Task_blockI__E
    1001b649 ti_sysbios_gates_GateMutex_Object__create__S
    1001b679 ti_sysbios_gates_GateMutex_create
    1001b6a9 ti_sysbios_gates_GateMutex_enter__E
    1001b6d9 ti_sysbios_knl_Clock_getTicks__E
    1001b709 ti_sysbios_knl_Semaphore_construct
    1001b739 ti_sysbios_knl_Task_processVitalTaskFlag__I
    1001b769 ti_sysbios_family_arm_cc26xx_Timer_postInit__I
    1001b795 ti_sysbios_family_arm_cc26xx_Timer_startup__E
    1001b795 ti_sysbios_knl_Clock_TimerProxy_startup__E
    1001b7c1 ti_sysbios_family_arm_m3_Hwi_Object__get__S
    1001b7ed ti_sysbios_gates_GateMutex_construct
    1001b819 ti_sysbios_hal_Hwi_initStack
    1001b845 ti_sysbios_heaps_HeapMem_Object__create__S
    1001b871 ti_sysbios_heaps_HeapMem_Object__get__S
    1001b89d ti_sysbios_knl_Mailbox_Object__get__S
    1001b8c9 ti_sysbios_knl_Mailbox_postInit__I
    1001b8f5 ti_sysbios_knl_Queue_construct
    1001b921 ti_sysbios_knl_Queue_create
    1001b94d ti_sysbios_knl_Semaphore_pendTimeout__I
    1001b979 ti_sysbios_knl_Swi_Object__get__S
    1001b9a5 ti_sysbios_knl_Task_unblockI__E
    1001b9d1 ti_sysbios_family_arm_cc26xx_TimestampProvider_get64__E
    1001b9d1 xdc_runtime_Timestamp_SupportProxy_get64__E
    1001b9d1 xdc_runtime_Timestamp_get64__E
    1001b9f9 ti_sysbios_hal_Hwi_Instance_init__E
    1001ba21 ti_sysbios_knl_Clock_addI__E
    1001ba49 ti_sysbios_knl_Task_restore__E
    1001ba71 ti_sysbios_family_arm_cc26xx_Timer_Module_startup__E
    1001ba95 ti_sysbios_gates_GateHwi_Object__create__S
    1001bab9 ti_sysbios_BIOS_RtsGateProxy_Object__delete__S
    1001bab9 ti_sysbios_gates_GateMutex_Object__delete__S
    1001bab9 ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__delete__S
    1001badd ti_sysbios_knl_Clock_Object__delete__S
    1001bb01 ti_sysbios_knl_Semaphore_Instance_init__E
    1001bb25 ti_sysbios_knl_Semaphore_Object__delete__S
    1001bb49 ti_sysbios_family_arm_cc26xx_Timer_Module__startupDone__S
    1001bb69 ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_startup__E
    1001bb89 ti_sysbios_family_arm_m3_Hwi_Module__startupDone__S
    1001bba9 ti_sysbios_family_arm_m3_Hwi_Object__delete__S
    1001bba9 ti_sysbios_hal_Hwi_HwiProxy_Object__delete__S
    1001bbc9 ti_sysbios_family_arm_m3_Hwi_excHandler__I
    1001bbe9 ti_sysbios_gates_GateHwi_Handle__label__S
    1001bbe9 xdc_runtime_System_Module_GateProxy_Handle__label__S
    1001bc09 ti_sysbios_gates_GateHwi_Object__delete__S
    1001bc09 xdc_runtime_System_Module_GateProxy_Object__delete__S
    1001bc29 ti_sysbios_BIOS_RtsGateProxy_Handle__label__S
    1001bc29 ti_sysbios_gates_GateMutex_Handle__label__S
    1001bc29 ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S
    1001bc49 ti_sysbios_gates_GateMutex_Object__destruct__S
    1001bc69 ti_sysbios_hal_Hwi_Object__delete__S
    1001bc89 ti_sysbios_heaps_HeapMem_Handle__label__S
    1001bc89 xdc_runtime_Memory_HeapProxy_Handle__label__S
    1001bca9 ti_sysbios_heaps_HeapMem_Object__delete__S
    1001bca9 xdc_runtime_Memory_HeapProxy_Object__delete__S
    1001bcc9 ti_sysbios_knl_Clock_Module_startup__E
    1001bce9 ti_sysbios_knl_Clock_Object__destruct__S
    1001bd09 ti_sysbios_knl_Idle_run__E
    1001bd29 ti_sysbios_knl_Mailbox_Object__delete__S
    1001bd49 ti_sysbios_knl_Queue_Object__delete__S
    1001bd69 ti_sysbios_knl_Queue_Object__get__S
    1001bd89 ti_sysbios_knl_Semaphore_Object__destruct__S
    1001bda9 ti_sysbios_knl_Swi_Object__delete__S
    1001bdc9 ti_sysbios_knl_Task_Object__delete__S
    1001bde9 ti_sysbios_knl_Task_Object__get__S
    1001be09 ti_sysbios_knl_Task_enter__I
    1001be29 ti_sysbios_knl_Task_restoreHwi__E
    1001be49 ti_sysbios_hal_Hwi_HwiProxy_create
    1001be67 ti_sysbios_knl_Clock_logTick__E
    1001be69 ti_sysbios_family_arm_m3_Hwi_Object__destruct__S
    1001be85 ti_sysbios_family_arm_m3_Hwi_setPriority__E
    1001bea1 ti_sysbios_gates_GateMutex_Instance_init__E
    1001bebd ti_sysbios_knl_Clock_scheduleNextTick__E
    1001bed9 ti_sysbios_knl_Mailbox_Object__destruct__S
    1001bef5 ti_sysbios_knl_Queue_Object__destruct__S
    1001bf11 ti_sysbios_knl_Queue_get__E
    1001bf2d ti_sysbios_knl_Queue_put__E
    1001bf49 ti_sysbios_knl_Swi_Object__destruct__S
    1001bf65 ti_sysbios_knl_Task_Object__destruct__S
    1001bf81 ti_sysbios_knl_Task_sleepTimeout__I
    1001bf9b ti_sysbios_knl_Swi_Instance_finalize__E
    1001bf9d ti_sysbios_gates_GateMutex_leave__E
    1001bfb5 ti_sysbios_knl_Task_unblock__E
    1001bfcd ti_sysbios_knl_Clock_Instance_finalize__E
    1001bfe3 ti_sysbios_knl_Clock_start__E
    1001bff9 ti_sysbios_BIOS_getCpuFreq__E
    1001c00d ti_sysbios_family_arm_m3_Hwi_switchFromBootStack__E
    1001c021 ti_sysbios_hal_Hwi_Module_startup__E
    1001c035 ti_sysbios_BIOS_exit__E
    1001c045 ti_sysbios_BIOS_setThreadType__E
    1001c055 ti_sysbios_BIOS_start__E
    1001c065 ti_sysbios_family_arm_m3_Hwi_plug__E
    1001c075 ti_sysbios_gates_GateMutex_Instance_finalize__E
    1001c085 ti_sysbios_hal_Hwi_HwiProxy_Object__create__S
    1001c095 ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E
    1001c0a5 ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E
    1001c0b5 ti_sysbios_knl_Clock_TimerProxy_setNextTick__E
    1001c0c5 ti_sysbios_knl_Semaphore_Instance_finalize__E
    1001c0d5 ti_sysbios_knl_Swi_disable__E
    1001c0e5 ti_sysbios_knl_Swi_enabled__E
    1001c0f5 ti_sysbios_knl_Task_disable__E
    1001c105 ti_sysbios_heaps_HeapMem_restore__E
    1001c113 ti_sysbios_knl_Queue_empty__E
    1001c121 ti_sysbios_knl_Queue_remove__E
    1001c12f ti_sysbios_family_arm_cc26xx_TimestampProvider_getFreq__E
    1001c12f xdc_runtime_Timestamp_SupportProxy_getFreq__E
    1001c12f xdc_runtime_Timestamp_getFreq__E
    1001c13d ti_sysbios_family_arm_m3_Hwi_Params__init__S
    1001c13d ti_sysbios_hal_Hwi_HwiProxy_Params__init__S
    1001c149 ti_sysbios_family_arm_m3_Hwi_disableFxn__E
    1001c155 ti_sysbios_family_arm_m3_Hwi_enableFxn__E
    1001c161 ti_sysbios_family_arm_m3_TaskSupport_getStackAlignment__E
    1001c16d ti_sysbios_gates_GateHwi_enter__E
    1001c179 ti_sysbios_BIOS_RtsGateProxy_Params__init__S
    1001c179 ti_sysbios_gates_GateMutex_Params__init__S
    1001c179 ti_sysbios_heaps_HeapMem_Module_GateProxy_Params__init__S
    1001c185 ti_sysbios_knl_Clock_Params__init__S
    1001c191 ti_sysbios_knl_Clock_getTimerHandle__E
    1001c19d ti_sysbios_knl_Mailbox_Params__init__S
    1001c1a9 ti_sysbios_knl_Queue_dequeue__E
    1001c1b5 ti_sysbios_knl_Queue_enqueue__E
    1001c1c1 ti_sysbios_knl_Semaphore_Params__init__S
    1001c1cd ti_sysbios_knl_Swi_Params__init__S
    1001c1d9 ti_sysbios_knl_Task_Params__init__S
    1001c1e5 ti_sysbios_knl_Task_self__E
    1001c1f1 ti_sysbios_hal_Hwi_Instance_finalize__E
    1001c1fb ti_sysbios_family_arm_m3_Hwi_doSwiRestore__I
    1001c203 ti_sysbios_family_arm_m3_Hwi_startup__E
    1001c20b ti_sysbios_knl_Idle_loop__E
    1001c213 ti_sysbios_family_arm_m3_Hwi_doTaskRestore__I
    1001c219 ti_sysbios_family_arm_m3_Hwi_restoreFxn__E
    1001c21f ti_sysbios_gates_GateHwi_leave__E
    1001c22b ti_sysbios_knl_Queue_Instance_init__E
    1001c231 ti_sysbios_knl_Queue_elemClear__E
    1001c237 ti_sysbios_knl_Swi_Module_startup__E
    1001c23d ti_sysbios_knl_Swi_startup__E
    1001c243 ti_sysbios_knl_Task_enable__E
    1001c249 ti_sysbios_BIOS_RtsGateProxy_enter__E
    1001c24d ti_sysbios_BIOS_RtsGateProxy_leave__E
    1001c251 ti_sysbios_family_arm_cc26xx_Timer_getExpiredTicks__E
    1001c255 ti_sysbios_family_arm_cc26xx_Timer_getPeriod__E
    1001c259 ti_sysbios_family_arm_cc26xx_Timer_setPeriod__E
    1001c25d ti_sysbios_family_arm_m3_Hwi_delete
    1001c261 ti_sysbios_family_arm_m3_Hwi_destruct
    1001c265 ti_sysbios_family_arm_m3_TaskSupport_Module__startupDone__S
    1001c269 ti_sysbios_gates_GateHwi_query__E
    1001c269 xdc_runtime_System_Module_GateProxy_query__E
    1001c26d ti_sysbios_gates_GateMutex_delete
    1001c271 ti_sysbios_gates_GateMutex_destruct
    1001c275 ti_sysbios_BIOS_RtsGateProxy_query__E
    1001c275 ti_sysbios_gates_GateMutex_query__E
    1001c275 ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E
    1001c279 ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S
    1001c27d ti_sysbios_hal_Hwi_HwiProxy_delete
    1001c281 ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E
    1001c281 ti_sysbios_hal_Hwi_disableInterrupt__E
    1001c285 ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E
    1001c285 ti_sysbios_hal_Hwi_enableInterrupt__E
    1001c289 ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E
    1001c289 ti_sysbios_hal_Hwi_getStackInfo__E
    1001c28d ti_sysbios_hal_Hwi_HwiProxy_startup__E
    1001c28d ti_sysbios_hal_Hwi_startup__E
    1001c291 ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E
    1001c295 ti_sysbios_hal_Hwi_delete
    1001c299 ti_sysbios_hal_Hwi_switchFromBootStack__E
    1001c29d ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E
    1001c2a1 ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E
    1001c2a5 ti_sysbios_heaps_HeapMem_isBlocking__E
    1001c2a9 ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S
    1001c2ad ti_sysbios_knl_Clock_TimerProxy_getExpiredTicks__E
    1001c2b1 ti_sysbios_knl_Clock_TimerProxy_getPeriod__E
    1001c2b5 ti_sysbios_knl_Clock_delete
    1001c2b9 ti_sysbios_knl_Clock_destruct
    1001c2bd ti_sysbios_knl_Clock_removeI__E
    1001c2c1 ti_sysbios_knl_Clock_setTimeout__E
    1001c2c5 ti_sysbios_knl_Mailbox_delete
    1001c2c9 ti_sysbios_knl_Mailbox_destruct
    1001c2cd ti_sysbios_knl_Queue_delete
    1001c2d1 ti_sysbios_knl_Queue_destruct
    1001c2d5 ti_sysbios_knl_Queue_head__E
    1001c2d9 ti_sysbios_knl_Queue_next__E
    1001c2dd ti_sysbios_knl_Semaphore_delete
    1001c2e1 ti_sysbios_knl_Semaphore_destruct
    1001c2e5 ti_sysbios_knl_Swi_delete
    1001c2e9 ti_sysbios_knl_Swi_destruct
    1001c2ed ti_sysbios_knl_Swi_postInit__I
    1001c2f1 ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S
    1001c2f5 ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E
    1001c2f9 ti_sysbios_knl_Task_SupportProxy_start__E
    1001c2fd ti_sysbios_knl_Task_SupportProxy_swap__E
    1001c301 ti_sysbios_knl_Task_delete
    1001c305 ti_sysbios_knl_Task_destruct
    1001c309 ti_sysbios_knl_Task_startup__E
    1001c30d xdc_runtime_Startup_startMods__I
    1001c405 xdc_runtime_Core_createObject__I
    1001c487 xdc_runtime_Error_policySpin__E
    1001c489 xdc_runtime_Memory_alloc__E
    1001c4f9 xdc_runtime_Core_deleteObject__I
    1001c559 xdc_runtime_Startup_exec__E
    1001c5a9 xdc_runtime_Assert_raise__I
    1001c5f1 xdc_runtime_Core_assignParams__I
    1001c639 xdc_runtime_Core_constructObject__I
    1001c681 xdc_runtime_System_atexit__E
    1001c6b9 xdc_runtime_System_processAtExit__E
    1001c6ed xdc_runtime_Core_assignLabel__I
    1001c71d xdc_runtime_Text_cordText__E
    1001c749 xdc_runtime_System_abort__E
    1001c769 xdc_runtime_Error_raiseX__E
    1001c785 xdc_runtime_Memory_valloc__E
    1001c7a1 xdc_runtime_Core_destructObject__I
    1001c7b9 xdc_runtime_Error_check__E
    1001c7d1 xdc_runtime_System_exit__E
    1001c7e9 xdc_runtime_Text_ropeText__E
    1001c801 xdc_runtime_Memory_free__E
    1001c811 xdc_runtime_SysCallback_abort__E
    1001c821 xdc_runtime_SysCallback_exit__E
    1001c831 xdc_runtime_Timestamp_SupportProxy_get32__E
    1001c831 xdc_runtime_Timestamp_get32__E
    1001c841 xdc_runtime_Error_init__E
    1001c84d xdc_runtime_Memory_calloc__E
    1001c859 xdc_runtime_Memory_getMaxDefaultTypeAlign__E
    1001c879 xdc_runtime_Gate_leaveSystem__E
    1001c87f xdc_runtime_System_Module_startup__E
    1001c885 xdc_runtime_Gate_enterSystem__E
    1001c889 xdc_runtime_Memory_HeapProxy_alloc__E
    1001c88d xdc_runtime_Memory_HeapProxy_free__E
    1001c891 xdc_runtime_System_Module_GateProxy_enter__E
    1001c895 xdc_runtime_System_Module_GateProxy_leave__E
    1001c899 xdc_runtime_System_abortSpin__E
    1001c89b xdc_runtime_System_exitSpin__E
    1001c89d ti_sysbios_family_arm_m3_Hwi_dispatch__I
    1001c96d ti_sysbios_family_arm_m3_TaskSupport_buildTaskStack
    1001c9b9 ti_sysbios_family_arm_m3_Hwi_initStacks__E
    1001ca01 ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I
    1001ca21 ti_sysbios_family_xxx_Hwi_switchAndRunFunc
    1001ca3f ti_sysbios_family_arm_m3_Hwi_pendSV__I
    1001ca57 ti_sysbios_family_arm_m3_Hwi_return
    1001ca59 ti_sysbios_family_arm_m3_TaskSupport_glue
    1001ca69 ti_sysbios_family_arm_m3_TaskSupport_swap__E
    1001ca71 ti_sysbios_knl_Task_swapReturn
    1001ca9b ti_sysbios_rom_cortexm_cc26xx_CC26xx_getRevision__E
    20000000 ti_sysbios_family_arm_m3_Hwi_ramVectors
    20000100 ti_sysbios_knl_Task_Module__state__V
    20000144 ti_sysbios_family_arm_m3_Hwi_Module__state__V
    20000178 ti_sysbios_knl_Clock_Module__state__V
    200001a4 ti_sysbios_BIOS_Module__state__V
    200001c8 ti_sysbios_knl_Swi_Module__state__V
    200001e4 ti_sysbios_family_arm_cc26xx_Timer_Module__state__V
    200001ec ti_sysbios_family_arm_cc26xx_TimestampProvider_Module__state__V
    200001f0 xdc_runtime_Startup_Module__state__V
    200001f8 xdc_runtime_System_Module__state__V
    20000200 xdc_runtime_Memory_Module__state__V
    20000208 uartLog_tail
    20000209 uartLog_head
    2000020a uartLog_evBufIsEmpty
    2000020c uartLog_evtNum
    20000214 uartLog_outBuf
    200002c0 uartLog_evBuf
    200007c0 gapProfileState
    200007c1 selfEntityMain
    200007c8 sem
    200007cc hGpioPin
    200007e8 pinGpioState
    20000b74 linkDBNumConns
    20000c88 gapRoleTask
    20000cd8 gapRoleTaskStack
    20001ac0 PowerCC26XX_module
    20001bd0 ICall_dispatcher
    20001bd8 ICall_enterCriticalSection
    20001bdc ICall_leaveCriticalSection
    20001bf4 HEAPMGR_SIZE
    20001cdc ti_sysbios_family_arm_cc26xx_Timer_Module__root__V
    20001ce4 ti_sysbios_family_arm_m3_Hwi_Module__root__V
    20001cec ti_sysbios_family_arm_m3_Hwi_Object__table__V
    20001d04 ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A
    20001d08 ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A
    20001d0c ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A
    20001d10 ti_sysbios_gates_GateHwi_Module__root__V
    20001d18 ti_sysbios_gates_GateHwi_Object__table__V
    20001d1c ti_sysbios_gates_GateMutex_Module__root__V
    20001d24 ti_sysbios_hal_Hwi_Module__root__V
    20001d2c ti_sysbios_heaps_HeapMem_Module__root__V
    20001d34 ti_sysbios_heaps_HeapMem_Object__table__V
    20001d4c ti_sysbios_knl_Clock_Module__root__V
    20001d54 ti_sysbios_knl_Clock_Object__table__V
    20001d74 ti_sysbios_knl_Event_Module__root__V
    20001d7c ti_sysbios_knl_Mailbox_Module__root__V
    20001d84 ti_sysbios_knl_Queue_Module__root__V
    20001d8c ti_sysbios_knl_Semaphore_Module__root__V
    20001d94 ti_sysbios_knl_Swi_Module__root__V
    20001d9c ti_sysbios_knl_Task_Module__root__V
    20001da4 ti_sysbios_knl_Task_Module_State_0_idleTask__A
    20001da8 xdc_runtime_LoggerCallback_Module__root__V
    20001db0 xdc_runtime_LoggerCallback_Object__table__V
    20001dc0 __xdc__init__addr
    20002230 rfRegTbl
    200022cc ti_sysbios_knl_Task_Object__table__V
    20002318 ti_sysbios_family_arm_cc26xx_Timer_Object__table__V
    20002360 ti_sysbios_gates_GateMutex_Object__table__V
    200023fc ti_sysbios_knl_Swi_Module_State_0_readyQ__A
    2000242c ti_sysbios_knl_Swi_Object__table__V
    2000245c ti_sysbios_knl_Task_Module_State_0_readyQ__A
    2000248c user0Cfg
    20002514 lastAppOpcodeSent
    20002518 pfnBMAlloc
    2000251c pfnBMFree
    20002528 _lock
    2000252c _unlock
    20002530 __TI_cleanup_ptr
    20002534 __TI_dtors_ptr
    20002540 xdc_runtime_Registry_Module__state__V
    2000254c appAssertCback
    20002550 main_func_sp
    20002560 ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A
    20002be0 ti_sysbios_knl_Task_Instance_State_0_stack__A
    20002de0 uartCC26XXObjects
    20002ef4 PIN_NumPins
    20002f88 PIN_HandleTable
    20003004 i2cCC26xxObjects
    200030e4 ti_sysbios_family_arm_m3_Hwi_dispatchTable
    20003250 trngCC26XXObjects
    20003255 driverlib_release_0_46593
    2000325b heapStart
    20004028 __stack
    20004028 heapEnd
    20004428 __STACK_END
    20004428 __STACK_TOP
    20004f2c A4_rw
    20004f2c COMMON_RAM_BASE_ADDR
    20004f40 P2_rw
    20004f40 P2_s0
    20004f40 eccRom_windowSize
    20004f44 eccRom_workzone
    20004f48 eccRom_param_p
    20004f4c eccRom_param_r
    20004f50 eccRom_param_a
    20004f54 inScalar
    20004f58 inPointX
    20004f5c inPointY
    20004f60 outPointX
    20004f64 outPointY
    20004f68 SCAL
    20004f6c EXPX
    20004f70 EXPY
    20004f74 EXPZ
    20004f78 EXPW
    20004f7c ACCX
    20004f80 ACCY
    20004f84 ACCZ
    20004f88 TMP1
    20004f8c TMP2
    20004f90 TMP3
    20004f94 TMP4
    20004f98 TMP5
    20004f9c TMP6
    20004fa0 eccRom_param_Gx
    20004fa4 eccRom_param_Gy
    20004fa8 eccRom_param_b
    20004fac P2_zi
    20004fac ratChanInfo
    20004fcc fwInfoCmd
    20004fd8 MSBMOD
    20004fdc aux64
    20004fe4 MOD
    20004fe8 LEN
    20004ffc pSspAesEncrypt_Sw
    e000e000 ti_sysbios_family_arm_m3_Hwi_nvic
    ffffffff __binit__
    ffffffff __c_args__
    ffffffff binit
    UNDEFED HwiP_restore
    UNDEFED SHT$$INIT_ARRAY$$Base
    UNDEFED SHT$$INIT_ARRAY$$Limit
    UNDEFED ti_sysbios_BIOS_RtsGateProxy_Handle__label__S__mangled__
    UNDEFED ti_sysbios_BIOS_RtsGateProxy_Object__delete__S__mangled__
    UNDEFED ti_sysbios_BIOS_RtsGateProxy_Params__init__S__mangled__
    UNDEFED ti_sysbios_BIOS_RtsGateProxy_query__E__mangled__
    UNDEFED ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S__mangled__
    UNDEFED ti_sysbios_hal_Hwi_HwiProxy_Object__delete__S__mangled__
    UNDEFED ti_sysbios_hal_Hwi_HwiProxy_Params__init__S__mangled__
    UNDEFED ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E__mangled__
    UNDEFED ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E__mangled__
    UNDEFED ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E__mangled__
    UNDEFED ti_sysbios_hal_Hwi_HwiProxy_startup__E__mangled__
    UNDEFED ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E__mangled__
    UNDEFED ti_sysbios_hal_Hwi_disableInterrupt__E
    UNDEFED ti_sysbios_hal_Hwi_enableInterrupt__E
    UNDEFED ti_sysbios_hal_Hwi_getStackInfo__E
    UNDEFED ti_sysbios_hal_Hwi_startup__E
    UNDEFED ti_sysbios_hal_Hwi_switchFromBootStack__E
    UNDEFED ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S__mangled__
    UNDEFED ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__delete__S__mangled__
    UNDEFED ti_sysbios_heaps_HeapMem_Module_GateProxy_Params__init__S__mangled__
    UNDEFED ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E__mangled__
    UNDEFED ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S__mangled__
    UNDEFED ti_sysbios_knl_Clock_TimerProxy_startup__E__mangled__
    UNDEFED ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S__mangled__
    UNDEFED ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E__mangled__
    UNDEFED ti_sysbios_knl_Task_SupportProxy_start__E__mangled__
    UNDEFED ti_sysbios_knl_Task_SupportProxy_swap__E__mangled__
    UNDEFED xdc_runtime_Main_Module_GateProxy_Handle__label__S
    UNDEFED xdc_runtime_Main_Module_GateProxy_Object__delete__S
    UNDEFED xdc_runtime_Main_Module_GateProxy_query__E
    UNDEFED xdc_runtime_Memory_HeapProxy_Handle__label__S__mangled__
    UNDEFED xdc_runtime_Memory_HeapProxy_Object__delete__S__mangled__
    UNDEFED xdc_runtime_System_Module_GateProxy_Handle__label__S__mangled__
    UNDEFED xdc_runtime_System_Module_GateProxy_Object__delete__S__mangled__
    UNDEFED xdc_runtime_System_Module_GateProxy_query__E__mangled__
    UNDEFED xdc_runtime_System_SupportProxy_abort__E
    UNDEFED xdc_runtime_System_SupportProxy_exit__E
    UNDEFED xdc_runtime_Timestamp_SupportProxy_get64__E__mangled__
    UNDEFED xdc_runtime_Timestamp_SupportProxy_getFreq__E__mangled__
    UNDEFED xdc_runtime_Timestamp_get32__E
    UNDEFED xdc_runtime_Timestamp_get64__E
    UNDEFED xdc_runtime_Timestamp_getFreq__E

    [1226 symbols]
  • I can see that you are using ROM, but the function System_extendPrintf is not in ROM. I also noticed that the function Log_doPrint is not in your memory map, but you have uartLog_doPrint, which is probably invoked by your logger function uartLog_outputFxn. If you want the code that handles '%f' conversion to be invoked you need to either call Log_doPrint, or if you are replicating Log_doPrint in uartLog_doPrint, you have to call System_extendFxn. Are you doing any of these in uartLog_doPrint?
  • I'm closing this thread out due to no recent activity by the original poster.

    Todd