This thread has been locked.

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

CCS/LAUNCHXL-CC3235SF: memory map prevention error (using wifi-thread)

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

Tool/software: Code Composer Studio

Hello,

I am using CC3235SF dev board with CCS930. I am running an example where I have 2 threads; one wifi thread for connecting to an AP and a second one for sending a UDP packet.

I used as an example the udpecho project, however, the wifi thread and the udp thread are created separately from the main_tirtos function.

When debugging my program I get the following error ( as it can be seen in the picture), when the debugger is halted in main. However, if I continue the execution the program runs (most of the times) properly.

Could you please help me find out why I am getting this mapping error?

Thanks in advance.

Best,

Artemis

  • Artemis,

    CCS is giving that memory map message as the memory map for the debugger does not show memory at that location.  There is a GEL file (.gel) that is used to define the memory map and it shows SRAM starting at 0x20000000 with a length of 0x00040000.  Those variables showing the messages fall outside of that range so the debugger won't allow those addresses to be read.  I am going to loop in the WiFi team.  Could be that the map defined for the debugger is wrong?

    Regards,

    John

  • Hi John,

    Thanks for the quick reply.

    The GEL file I have for cc3235sf is the following:

    Is this debug definition you were referring to for the mapping? or is there somewhere another option?

    /* CC3235FS.gel
     *
     * Revisions:
     *  Jan-29-2014 1st revision
     *
     *
     */
    
    menuitem "StartUp"
    
    hotmenu StartUp()
    {
        /* Load the CortexM3_util.gel file */
        GEL_LoadGel("$(GEL_file_dir)/CortexM3_util.gel");
    
        GEL_MapOff();
        GEL_MapReset();
        GEL_MapOn();
        memorymap_init();
    }
    
    OnTargetConnect()
    {
    
    }
    
    OnPreFileLoaded() 
    { 
        GEL_Reset();
        GEL_TextOut("\nTarget Reset\n");
    
    }
    
    memorymap_init()
    {
        /*
         * Syntax for GEL_MapAddStr.
         * GEL_MapAddStr(address, page, length, "attribute", waitstate);
    
        Basic Attribute Types           Derived Attribute Types
        String      Description         String      Description
        R           Read                NONE        No memory/protected
        W           Write               RAM         Read and write
        P           Port                ROM         Read only
        EX          External            WOM         Write only
        EM          Emulator            INPORT      Port read only
        PR          Programmable        OUTPORT     Port write only
        ER          Erasable            IOPORT      Port read and write
        DA          Dual access         SARAM       Single access RAM
        ASn         Access size         DARAM       Dual access RAM
        SHnC        Shared              FLASH       Flash ROM
        CACHE       Cache               EXRAM       External RAM
        TX          Text                EXROM       External ROM
        MN          Monitor             EPROM       Erasable write-able EPROM
        SA          Single access       MONITOR     Monitor ROM
        FL          Flash               PRAM        Program RAM
        MR          Memory mapped       PROM        Program ROM
        NULL        NULL                NULL        NULL
    
        */
    
        GEL_MapAddStr(0x00000000, 0, 0x00010000, "R", 0);  /* ROM */
    	GEL_MapAddStr(0x01000000, 0, 0x00100000, "R", 50);  /* FLASH */
        GEL_MapAddStr(0x20000000, 0, 0x00040000, "R|W", 0);  /* SRAM */
        GEL_MapAddStr(0x40000000, 0, 0x00001000, "R|W", 0);  /* WATCHDOG0 */
        GEL_MapAddStr(0x40004000, 0, 0x00001000, "R|W", 0);  /* GPIO A0 */
        GEL_MapAddStr(0x40005000, 0, 0x00001000, "R|W", 0);  /* GPIO A1 */
        GEL_MapAddStr(0x40006000, 0, 0x00001000, "R|W", 0);  /* GPIO A2 */
        GEL_MapAddStr(0x40007000, 0, 0x00001000, "R|W", 0);  /* GPIO A3 */
        GEL_MapAddStr(0x4000C000, 0, 0x00001000, "R|W", 0);  /* UART A0 */
        GEL_MapAddStr(0x4000D000, 0, 0x00001000, "R|W", 0);  /* UART A1 */
        GEL_MapAddStr(0x40020000, 0, 0x00001000, "R|W", 0);  /* I2C A0  */
        GEL_MapAddStr(0x40024000, 0, 0x00001000, "R|W", 0);  /* GPIO A4 */
        GEL_MapAddStr(0x40030000, 0, 0x00001000, "R|W", 0);  /* TIMER A0 */
        GEL_MapAddStr(0x40031000, 0, 0x00001000, "R|W", 0);  /* TIMER A1 */
        GEL_MapAddStr(0x40032000, 0, 0x00001000, "R|W", 0);  /* TIMER A2 */
        GEL_MapAddStr(0x40033000, 0, 0x00001000, "R|W", 0);  /* TIMER A3 */
        GEL_MapAddStr(0x400F7000, 0, 0x00001000, "R|W", 0);  /* COMMON_REG */ 
        GEL_MapAddStr(0x400FE000, 0, 0x00001000, "R|W", 0);  /* SYSTEM_CONTROL */ 
        GEL_MapAddStr(0x400FF000, 0, 0x00001000, "R|W", 0);  /* UDMA */
        GEL_MapAddStr(0x44010000, 0, 0x00001000, "R|W", 0);  /* SDHOST */
        GEL_MapAddStr(0x44018000, 0, 0x00001000, "R|W", 0);  /* CAMERA IF */
        GEL_MapAddStr(0x4401C000, 0, 0x00001000, "R|W", 0);  /* I2S */
        GEL_MapAddStr(0x44020000, 0, 0x00001000, "R|W", 0);  /* SSPI */
        GEL_MapAddStr(0x44021000, 0, 0x00001000, "R|W", 0);  /* GSPI */
        GEL_MapAddStr(0x44022000, 0, 0x00001000, "R|W", 0);  /* LSPI */
        GEL_MapAddStr(0x44025000, 0, 0x00001000, "R|W", 0);  /* ARCM */
        GEL_MapAddStr(0x44026000, 0, 0x00001000, "R|W", 0);  /* APPS_CONFIG */ 	
        GEL_MapAddStr(0x4402E800, 0, 0x00001000, "R|W", 0);  /* ADC */     
        GEL_MapAddStr(0x44030000, 0, 0x00001000, "R|W", 0);  /* DTHE */
        GEL_MapAddStr(0x44035000, 0, 0x00001000, "R|W", 0);  /* SHA */
        GEL_MapAddStr(0x44037000, 0, 0x00001000, "R|W", 0);  /* AES */
        GEL_MapAddStr(0x44039000, 0, 0x00001000, "R|W", 0);  /* DES */
        GEL_MapAddStr(0x400FD000, 0, 0x00001000, "R|W", 0);  /* FLASH CONTROL */
    
        
        
        GEL_MapAddStr(0xE000E000, 0, 0x00001000, "R|W", 0);  /* NVIC */
    
        GEL_TextOut("\nMemory Map Initialization Complete\n");
    
    }
    
    

    If I step run the main_tirtos.c I then get a valid address, shown below:

     Looking forward to your reply!

    Best,

    Artemis

  • Artemis,

    Yes that is the file that I was looking at.  Line 64 shows where SRAM is defined. 

    If I look at the datasheet for CC3235SF it matches what the GEL file has so I think it is correct.

    the GEL file is setup to prevent CCS from reading those addresses 0x20040034, 44, 30 40 that are shown in your first capture.

    I am going to ask some others if they have seen this.

    Regards,

    John

  • One thing could you attach the linker command file (.cmd) that is used by the project.

    Thanks,
    John

  • Hi John,

    Please find the file pasted.

    /*
     * Copyright (c) 2018-2019, 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.
     */
    
    /*
     *  ======== CC3235SF_LAUNCHXL.cmd ========
     */
    
    /*
     * The starting address of the application.  Normally the interrupt vectors
     * must be located at the beginning of the application.
     */
    #define SRAM_BASE   0x20000000
    #define FLASH_BASE  0x01000800
    
    --stack_size=1024   /* C stack is also used for ISR stack */
    
    HEAPSIZE = 0x8000;  /* Size of heap buffer used by HeapMem */
    
    MEMORY
    {
        /* Bootloader uses FLASH_HDR during initialization */
        FLASH_HDR (RX)  : origin = 0x01000000, length = 0x7FF      /* 2 KB */
        FLASH     (RX)  : origin = 0x01000800, length = 0x0FF800   /* 1022KB */
        SRAM      (RWX) : origin = 0x20000000, length = 0x00040000 /* 256KB */
    }
    
    /* Section allocation in memory */
    
    SECTIONS
    {
        .dbghdr     : > FLASH_HDR
        .text       : > FLASH
        .TI.ramfunc : {} load=FLASH, run=SRAM, table(BINIT)
        .const      : > FLASH
        .rodata     : > FLASH
        .cinit      : > FLASH
        .pinit      : > FLASH
        .init_array : > FLASH
    
        .data       : > SRAM
        .bss        : > SRAM
        .sysmem     : > SRAM
    
        /* Heap buffer used by HeapMem */
        .priheap   : {
            __primary_heap_start__ = .;
            . += HEAPSIZE;
            __primary_heap_end__ = .;
        } > SRAM align 8
    
        .stack      : > SRAM(HIGH)
    }
    

    Also, the following snippet is from the .map file, don't know if it will help.

    ******************************************************************************
                      TI ARM Linker PC v18.12.6                    
    ******************************************************************************
    >> Linked Tue Nov 10 17:20:38 2020
    
    OUTPUT FILE NAME:   <WiFiUdpUartI2C.out>
    ENTRY POINT SYMBOL: "_c_int00"  address: 0100e421
    
    
    MEMORY CONFIGURATION
    
             name            origin    length      used     unused   attr    fill
    ----------------------  --------  ---------  --------  --------  ----  --------
      FLASH_HDR             01000000   000007ff  00000000  000007ff  R  X
      FLASH                 01000800   000ff800  0001161a  000ee1e6  R  X
      SRAM                  20000000   00040000  0000a7a5  0003585b  RW X
    
    
    SEGMENT ALLOCATION MAP
    
    run origin  load origin   length   init length attrs members
    ----------  ----------- ---------- ----------- ----- -------
    01000800    01000800    00011620   00011620    r-x
      01000800    01000800    0000003c   0000003c    r-- .resetVecs
      01000840    01000840    0001063a   0001063a    r-x .text
      01010e7c    01010e7c    00000cdc   00000cdc    r-- .const
      01011b58    01011b58    000002c8   000002c8    r-- .cinit
    20000310    20000310    00008000   00000000    r--
      20000310    20000310    00008000   00000000    r-- .priheap
    20008400    20008400    0000209c   00000000    rw-
      20008400    20008400    00001881   00000000    rw- .bss
      20009c84    20009c84    00000818   00000000    rw- .data
    2003fc00    2003fc00    00000400   00000000    rw-
      2003fc00    2003fc00    00000400   00000000    rw- .stack
    
    
    SECTION ALLOCATION MAP
    
     output                                  attributes/
    section   page    origin      length       input sections
    --------  ----  ----------  ----------   ----------------
    .text      0    01000840    0001063a     
                      01000840    000008e8     simplelink.a : driver.obj (.text:_SlDrvMsgRead)
                      01001128    000004bc                  : sl_socket.obj (.text:_SlSocketHandleAsync_Select)
                      010015e4    0000042c     driverlib.a : prcm.obj (.text:PRCMCC3200MCUInit)
                      01001a10    00000384     simplelink.a : driver.obj (.text:_SlDrvMsgWrite)
                      01001d94    00000358     uartI2C.obj (.text:mainThread)
                      010020ec    0000031c     simplelink.a : driver.obj (.text:_SlDrvReleasePoolObj)
                      01002408    000002e0                  : driver.obj (.text:_SlDrvWaitForPoolObj)
                      010026e8    000002d8                  : driver.obj (.text:_SlDrvRxHdrRead)
                      010029c0    000002ac                  : sl_socket.obj (.text:sl_Select)
                      01002c6c    00000280     drivers_cc32xx.aem4 : UARTCC32XX.oem4 (.text:UARTCC32XX_open)
                      01002eec    0000027c     simplelink.a : wlan.obj (.text:sl_WlanConnect)
                      01003168    0000025c                  : driver.obj (.text:_SlDrvDataReadOp)
                      010033c4    00000238     platform.obj (.text:mainThread1)
                      010035fc    00000224     simplelink.a : driver.obj (.text:_SlDrvDriverCBInit)
                      01003820    00000218                  : driver.obj (.text:_SlDrvDataWriteOp)
                      01003a38    00000210     uartI2C.obj (.text:Scan_APs)
                      01003c48    000001f4     simplelink.a : driver.obj (.text:_SlDrvMsgReadCmdCtx)
                      01003e3c    000001f2                  : netapp.obj (.text:_SlNetAppEventHandler)
                      0100402e    00000002     ti_drivers_config.obj (.text:Board_initHook)
                      01004030    000001e4     drivers_cc32xx.aem4 : GPIOCC32XX.oem4 (.text:GPIO_setConfig)
                      01004214    000001e0     simplelink.a : device.obj (.text:sl_Stop)
                      010043f4    000001d0     drivers_cc32xx.aem4 : SPICC32XXDMA.oem4 (.text:SPICC32XXDMA_transfer)
                      010045c4    000001b8                         : SPICC32XXDMA.oem4 (.text:configDMA)
                      0100477c    000001b4     simplelink.a : driver.obj (.text:_SlDrvReleaseAllActivePendingPoolObj)
                      01004930    000001a8                  : sl_socket.obj (.text:sl_Accept)
                      01004ad8    0000019c     uartI2C.obj (.text:read_sensor)
                      01004c74    00000190     simplelink.a : sl_socket.obj (.text:_SlDrvRegisterForSelectAsync)
                      01004e04    00000184                  : driver.obj (.text:_SlDrvFindAndSetActiveObj)
                      01004f88    00000178                  : sl_socket.obj (.text:sl_Connect)
                      01005100    00000170                  : netapp.obj (.text:sl_NetAppDnsGetHostByName)
                      01005270    00000158     drivers_cc32xx.aem4 : SPICC32XXDMA.oem4 (.text:SPICC32XXDMA_open)
                      010053c8    00000154     simplelink.a : sl_socket.obj (.text:sl_RecvFrom)
                      0100551c    0000014c     dpl_cc32xx.aem4 : PowerCC32XX_tirtos.oem4 (.text:PowerCC32XX_sleepPolicy)
                      01005668    00000148     simplelink.a : sl_socket.obj (.text:_SlDrvGetNextTimeoutValue)
                      010057b0    00000148     drivers_cc32xx.aem4 : PowerCC32XX.oem4 (.text:parkPins)
                      010058f8    00000148     simplelink.a : sl_socket.obj (.text:sl_StartTLS)
                      01005a40    00000140                  : driver.obj (.text:_SlDrvMsgReadSpawnCtx)
                      01005b80    00000138     drivers_cc32xx.aem4 : PowerCC32XX.oem4 (.text:Power_sleep)
                      01005cb8    00000138     simplelink.a : driver.obj (.text:_SlSpawnMsgListInsert)
                      01005df0    00000134                  : sl_socket.obj (.text:_SlSocketHandleAsync_StartTLS)
                      01005f24    00000134     rtsv7M4_T_le_eabi.lib : vla_alloc.c.obj (.text:__vla_alloc)
                      01006058    00000130     simplelink.a : driver.obj (.text:_SlDrvDriverCBDeinit)
                      01006188    00000130     uartI2C.obj (.text:create_send_udp_packet)
                      010062b8    00000130     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Semaphore_pend__E)
                      010063e8    00000128     drivers_cc32xx.aem4 : TimerCC32XX.oem4 (.text:TimerCC32XX_open)
                      01006510    00000128     simplelink.a : driver.obj (.text:_SlDrvClassifyRxMsg)
                      01006638    00000126     drivers_cc32xx.aem4 : I2CCC32XX.oem4 (.text:I2CCC32XX_hwiFxn)
                      0100675e    00000002                         : I2CCC32XX.oem4 (.text:I2CCC32XX_init)
                      01006760    00000124     simplelink.a : fs.obj (.text:sl_FsOpen)
                      01006884    00000120     slnetsock_release.a : errnoutil.oem4 (.text:ErrnoUtil_set)
                      010069a4    00000120     drivers_cc32xx.aem4 : UARTCC32XX.oem4 (.text:UARTCC32XX_close)
                      01006ac4    00000120     simplelink.a : driver.obj (.text:_SlDrvAsyncEventGenericHandler)
                      01006be4    00000004     dpl_cc32xx.aem4 : ClockP_tirtos.oem4 (.text:ClockP_getCpuFreq)
                      01006be8    00000120     sysbios.aem4 : BIOS.obj (.text:xdc_runtime_Startup_startMods__I)
                      01006d08    0000011c     simplelink.a : device.obj (.text:sl_Start)
                      01006e24    00000118     platform.obj (.text:SimpleLinkNetAppEventHandler)
                      01006f3c    00000118     simplelink.a : netapp.obj (.text:_SlNetAppHandleAsync_DnsGetHostByService)
                      01007054    00000110     drivers_cc32xx.aem4 : I2CCC32XX.oem4 (.text:I2CCC32XX_transfer)
                      01007164    00000110     rtsv7M4_T_le_eabi.lib : strtoul.c.obj (.text:strtoul)
                      01007274    00000004     dpl_cc32xx.aem4 : ClockP_tirtos.oem4 (.text:ClockP_setTimeout)
                      01007278    00000110     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Task_postInit__I)
                      01007388    00000108     slnetsock_release.a : slnetutils.oem4 (.text:SlNetUtil_str2BinIpV6)
                      01007490    00000104     simplelink.a : device.obj (.text:_SlDeviceEventHandler)
                      01007594    00000104                  : driver.obj (.text:_SlDrvCmdOp)
                      01007698    00000104     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Task_Instance_finalize__E)
                      0100779c    00000100     drivers_cc32xx.aem4 : I2CCC32XX.oem4 (.text:I2CCC32XX_open)
                      0100789c    00000100     simplelink.a : driver.obj (.text:_SlDrvObjGlobalLockWaitForever)
                      0100799c    00000100                  : fs.obj (.text:sl_FsWrite)
                      01007a9c    000000f8     slnetifwifi.a : slnetifwifi.obj (.text:SlNetIfWifi_loadSecObj)
                      01007b94    000000f8     simplelink.a : sl_socket.obj (.text:sl_Close)
                      01007c8c    000000f4                  : sl_socket.obj (.text:sl_SendTo)
                      01007d80    000000f2     drivers_cc32xx.aem4 : SPICC32XXDMA.oem4 (.text:SPICC32XXDMA_transferCancel)
                      01007e72    000000f2                         : UARTCC32XX.oem4 (.text:UARTCC32XX_control)
                      01007f64    00000004     dpl_cc32xx.aem4 : ClockP_tirtos.oem4 (.text:ClockP_start)
                      01007f68    000000f0     sysbios.aem4 : BIOS.obj (.text:pthread_create)
                      01008058    000000f0                  : BIOS.obj (.text:ti_sysbios_knl_Task_Instance_init__E)
                      01008148    000000ec                  : BIOS.obj (.text:clock_gettime)
                      01008234    000000e4     slnetsock_release.a : slnetif.oem4 (.text:SlNetIf_add)
                      01008318    000000d8     drivers_cc32xx.aem4 : SPICC32XXDMA.oem4 (.text:SPICC32XXDMA_close)
                      010083f0    000000d8     simplelink.a : device.obj (.text:_SlDeviceHandleAsync_InitComplete)
                      010084c8    000000d8                  : driver.obj (.text:_SlDrvWaitForInternalAsyncEvent)
                      010085a0    000000d8                  : netapp.obj (.text:_SlNetAppHandleAsync_NetAppReceive)
                      01008678    000000d0                  : driver.obj (.text:_SlDrvRemoveFromList)
                      01008748    000000d0     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_alloc__E)
                      01008818    000000cc                  : m3_Hwi_asm.obj (.text:ti_sysbios_family_arm_m3_Hwi_dispatch__I)
                      010088e4    000000ca     drivers_cc32xx.aem4 : UARTCC32XX.oem4 (.text:UARTCC32XX_write)
                      010089ae    000000c8                         : SPICC32XXDMA.oem4 (.text:spiHwiFxn)
                      01008a76    00000002                         : TimerCC32XX.oem4 (.text:TimerCC32XX_init)
                      01008a78    000000c4     platform.obj (.text:Connect)
                      01008b3c    000000c4     drivers_cc32xx.aem4 : GPIOCC32XX.oem4 (.text:GPIO_init)
                      01008c00    000000c4     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Task_sleep__E)
                      01008cc4    000000c0     simplelink.a : cc_pal.obj (.text:NwpPowerOff)
                      01008d84    000000c0     uartI2C.obj (.text:check_button)
                      01008e44    000000c0     drivers_cc32xx.aem4 : PowerCC32XX.oem4 (.text:restoreParkedPins)
                      01008f04    000000c0     simplelink.a : netcfg.obj (.text:sl_NetCfgGet)
                      01008fc4    000000bc                  : netapp.obj (.text:_SlNetAppSendResponse)
                      01009080    000000bc     main_tirtos.obj (.text:main)
                      0100913c    000000bc     simplelink.a : sl_socket.obj (.text:sl_Send)
                      010091f8    000000bc     sysbios.aem4 : BIOS.obj (.text:xdc_runtime_Core_createObject__I)
                      010092b4    000000ba     drivers_cc32xx.aem4 : UARTCC32XX.oem4 (.text:UARTCC32XX_readPolling)
                      0100936e    00000002                         : UARTCC32XX.oem4 (.text:UARTCC32XX_init)
                      01009370    000000b8     simplelink.a : netapp.obj (.text:_SlNetAppHandleAsync_DnsGetHostByName)
                      01009428    000000b8                  : netapp.obj (.text:_SlNetAppHandleAsync_PingResponse)
                      010094e0    000000b8     drivers_cc32xx.aem4 : UARTCC32XX.oem4 (.text:initHw)
                      01009598    000000b8     uartI2C.obj (.text:send_udp_packet)
                      01009650    000000b8     simplelink.a : wlan.obj (.text:sl_WlanGet)
                      01009708    000000b8     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_Instance_init__E)
                      010097c0    000000b6     drivers_cc32xx.aem4 : UARTCC32XX.oem4 (.text:readTaskCallback)
                      01009876    00000002     rtsv7M4_T_le_eabi.lib : _lock.c.obj (.text:_nop)
                      01009878    000000b4     simplelink.a : driver.obj (.text:_SlDrvHandleFatalError)
                      0100992c    000000b4                  : netutil.obj (.text:_SlNetUtilHandleAsync_Cmd)
                      010099e0    000000b4     uartI2C.obj (.text:check_uart_data)
                      01009a94    000000b4     simplelink.a : sl_socket.obj (.text:sl_GetSockOpt)
                      01009b48    000000b0     slnetifwifi.a : slnetifwifi.obj (.text:SlNetIfWifi_getSockOpt)
                      01009bf8    000000b0     drivers_cc32xx.aem4 : UARTCC32XX.oem4 (.text:readTaskBlocking)
                      01009ca8    000000ae                         : I2CCC32XX.oem4 (.text:I2CCC32XX_completeTransfer)
                      01009d56    000000ae     slnetifwifi.a : slnetifwifi.obj (.text:matchModeByRole)
                      01009e04    000000ae     drivers_cc32xx.aem4 : UARTCC32XX.oem4 (.text:readIsrTextBlocking)
                      01009eb2    00000002     rtsv7M4_T_le_eabi.lib : div0.asm.obj (.text)
                      01009eb4    000000ac     simplelink.a : sl_socket.obj (.text:_SlSocketHandleAsync_Close)
                      01009f60    000000ac                  : sl_socket.obj (.text:_SlSocketHandleAsync_Connect)
                      0100a00c    000000a8     driverlib.a : prcm.obj (.text:PRCMPeripheralClockGet)
                      0100a0b4    000000a8     drivers_cc32xx.aem4 : PowerCC32XX.oem4 (.text:PowerCC32XX_configureWakeup)
                      0100a15c    000000a8     simplelink.a : fs.obj (.text:sl_FsClose)
                      0100a204    000000a6                  : driver.obj (.text:_SlDrvIsTimeoutExpired)
                      0100a2aa    00000002     release_pem4.oem4 (.text:ti_sysbios_BIOS_nullFunc__I)
                      0100a2ac    000000a4     simplelink.a : sl_socket.obj (.text:sl_Bind)
                      0100a350    000000a4     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Task_setPri__E)
                      0100a3f4    000000a2     drivers_cc32xx.aem4 : UARTCC32XX.oem4 (.text:readIsrTextCallback)
                      0100a496    000000a2                         : UARTCC32XX.oem4 (.text:writeData)
                      0100a538    000000a0     simplelink.a : fs.obj (.text:FsGetCreateFsMode)
                      0100a5d8    000000a0                  : sl_socket.obj (.text:_SlDrvUnRegisterForSelectAsync)
                      0100a678    000000a0                  : driver.obj (.text:_SlSpawnMsgListProcess)
                      0100a718    000000a0     auto_init.aem4 : auto_init.oem4 (.text)
                      0100a7b8    0000009e     simplelink.a : cc_pal.obj (.text:spi_Read)
                      0100a856    0000009e                  : cc_pal.obj (.text:spi_Write)
                      0100a8f4    00000004     dpl_cc32xx.aem4 : ClockP_tirtos.oem4 (.text:ClockP_stop)
                      0100a8f8    0000009c     sysbios.aem4 : BIOS.obj (.text:_pthread_removeThreadKeys)
                      0100a994    0000009c     rtsv7M4_T_le_eabi.lib : memcpy_t2.asm.obj (.text)
                      0100aa30    00000098     drivers_cc32xx.aem4 : GPIOCC32XX.oem4 (.text:powerNotifyFxn)
                      0100aac8    00000096     rtsv7M4_T_le_eabi.lib : ull_div_t2.asm.obj (.text)
                      0100ab5e    00000002     release_pem4.oem4 (.text:xdc_runtime_Startup_reset__I)
                      0100ab60    00000094     simplelink.a : cc_pal.obj (.text:Semaphore_pend_handle)
                      0100abf4    00000094     platform.obj (.text:SimpleLinkWlanEventHandler)
                      0100ac88    00000094     drivers_cc32xx.aem4 : SPICC32XXDMA.oem4 (.text:initHw)
                      0100ad1c    00000094     simplelink.a : wlan.obj (.text:sl_WlanGetNetworkList)
                      0100adb0    00000094     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Task_exit__E)
                      0100ae44    00000092     slnetsock_release.a : slnetsock.oem4 (.text:SlNetSock_create)
                      0100aed6    00000002     --HOLE-- [fill = 0]
                      0100aed8    00000090     drivers_cc32xx.aem4 : I2CCC32XX.oem4 (.text:I2CCC32XX_initHw)
                      0100af68    00000090     slnetsock_release.a : slnetsock.oem4 (.text:SlNetSock_getVirtualSdConf)
                      0100aff8    00000090     simplelink.a : device.obj (.text:_SlDeviceHandleAsync_Stop)
                      0100b088    00000090                  : sl_socket.obj (.text:_SlSocketHandleAsync_Accept)
                      0100b118    00000090     drivers_cc32xx.aem4 : PowerCC32XX.oem4 (.text:restoreNVICRegs)
                      0100b1a8    00000090     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Task_Module_startup__E)
                      0100b238    0000008c     drivers_cc32xx.aem4 : I2CCC32XX.oem4 (.text:I2CCC32XX_primeWriteBurst)
                      0100b2c4    0000008c     simplelink.a : driver.obj (.text:_SlDrvDriverIsApiAllowed)
                      0100b350    0000008c                  : driver.obj (.text:_SlDrvProtectAsyncRespSetting)
                      0100b3dc    0000008c                  : sl_socket.obj (.text:sl_Recv)
                      0100b468    0000008c     sysbios.aem4 : BIOS.obj (.text:xdc_runtime_Memory_alloc__E)
                      0100b4f4    00000088     drivers_cc32xx.aem4 : I2CCC32XX.oem4 (.text:I2CCC32XX_close)
                      0100b57c    00000088     driverlib.a : pin.obj (.text:PinConfigSet)
                      0100b604    00000088     drivers_cc32xx.aem4 : TimerCC32XX.oem4 (.text:TimerCC32XX_setPeriod)
                      0100b68c    00000088     simplelink.a : eventreg.obj (.text:sl_UnregisterLibsEventHandler)
                      0100b714    00000004     dpl_cc32xx.aem4 : HwiP_tirtos.oem4 (.text:HwiP_clearInterrupt)
                      0100b718    00000088     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_initNVIC__E)
                      0100b7a0    00000086                  : BIOS.obj (.text:xdc_runtime_Core_constructObject__I)
                      0100b826    00000002     --HOLE-- [fill = 0]
                      0100b828    00000084     drivers_cc32xx.aem4 : PowerCC32XX.oem4 (.text:Power_init)
                      0100b8ac    00000084     slnetifwifi.a : slnetifwifi.obj (.text:SlNetIfWifi_sockstartSec)
                      0100b930    00000084     drivers_cc32xx.aem4 : PowerCC32XX.oem4 (.text:saveNVICRegs)
                      0100b9b4    00000084     simplelink.a : sl_socket.obj (.text:sl_SetSockOpt)
                      0100ba38    00000084     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_postInit__I)
                      0100babc    00000004     dpl_cc32xx.aem4 : HwiP_tirtos.oem4 (.text:HwiP_disable)
                      0100bac0    00000084     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_free__E)
                      0100bb44    00000080     drivers_cc32xx.aem4 : PowerCC32XX.oem4 (.text:Power_setDependency)
                      0100bbc4    00000004     dpl_cc32xx.aem4 : HwiP_tirtos.oem4 (.text:HwiP_disableInterrupt)
                      0100bbc8    00000080     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Clock_workFunc__E)
                      0100bc48    0000007c     drivers_cc32xx.aem4 : UDMACC32XX.oem4 (.text:UDMACC32XX_open)
                      0100bcc4    00000004     dpl_cc32xx.aem4 : HwiP_tirtos.oem4 (.text:HwiP_enableInterrupt)
                      0100bcc8    0000007c     sysbios.aem4 : BIOS.obj (.text:_pthread_abstime2ticks)
                      0100bd44    0000007c     drivers_cc32xx.aem4 : UARTCC32XX.oem4 (.text:readIsrBinaryBlocking)
                      0100bdc0    0000007c     simplelink.a : wlan.obj (.text:sl_WlanPolicySet)
                      0100be3c    0000007a     rtsv7M4_T_le_eabi.lib : memset_t2.asm.obj (.text)
                      0100beb6    00000002     --HOLE-- [fill = 0]
                      0100beb8    00000078     drivers_cc32xx.aem4 : GPIOCC32XX.oem4 (.text:GPIO_hwiIntFxn)
                      0100bf30    00000078                         : TimerCC32XX.oem4 (.text:TimerCC32XX_start)
                      0100bfa8    00000078     rtsv7M4_T_le_eabi.lib : vla_alloc.c.obj (.text:_ZN33_INTERNAL_11_vla_alloc_c_be8bd49b21free_dead_allocationsEPv)
                      0100c020    00000078                           : vla_alloc.c.obj (.text:__vla_dealloc)
                      0100c098    00000078     drivers_cc32xx.aem4 : UARTCC32XX.oem4 (.text:readIsrBinaryCallback)
                      0100c110    00000078     simplelink.a : sl_socket.obj (.text:sl_Socket)
                      0100c188    00000074     slnetsock_release.a : slnetsock.oem4 (.text:SlNetSock_AllocVirtualSocket)
                      0100c1fc    00000074     drivers_cc32xx.aem4 : UARTCC32XX.oem4 (.text:UARTCC32XX_hwiIntFxn)
                      0100c270    00000074     sysbios.aem4 : BIOS.obj (.text:xdc_runtime_Core_deleteObject__I)
                      0100c2e4    00000070     drivers_cc32xx.aem4 : I2CCC32XX.oem4 (.text:I2CCC32XX_primeReadBurst)
                      0100c354    00000070     simplelink.a : driver.obj (.text:_SlDrvCmdSend_noLock)
                      0100c3c4    00000004     drivers_cc32xx.aem4 : SPICC32XXDMA.oem4 (.text:SPICC32XXDMA_init)
                      0100c3c8    00000070     sysbios.aem4 : BIOS.obj (.text:acquireMutexNone$45)
                      0100c438    00000070                  : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_initPrimary__I)
                      0100c4a8    0000006c     slnetsock_release.a : slnetutils.oem4 (.text:SlNetUtil_str2BinIpV4)
                      0100c514    0000006c     simplelink.a : device.obj (.text:_SlDeviceHandleResetRequestInternally)
                      0100c580    0000006c                  : sl_socket.obj (.text:_SlDrvOpenCtrlSocket)
                      0100c5ec    0000006c                  : netapp.obj (.text:_SlNetAppSendTokenValue)
                      0100c658    0000006c     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Swi_restoreHwi__E)
                      0100c6c4    00000068     simplelink.a : driver.obj (.text:_SlSpawnMsgListGetCount)
                      0100c72c    00000068     rtsv7M4_T_le_eabi.lib : copy_decompress_lzss.c.obj (.text:decompress:lzss:__TI_decompress_lzss)
                      0100c794    00000004     dpl_cc32xx.aem4 : SemaphoreP_tirtos.oem4 (.text:SemaphoreP_post)
                      0100c798    00000068     sysbios.aem4 : BIOS.obj (.text:pthread_exit)
                      0100c800    00000068     simplelink.a : cc_pal.obj (.text:spi_Open)
                      0100c868    00000068     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_family_arm_cc32xx_Seconds_getTime__E)
                      0100c8d0    00000066     drivers_cc32xx.aem4 : UARTCC32XX.oem4 (.text:UARTCC32XX_writeCancel)
                      0100c936    00000002     --HOLE-- [fill = 0]
                      0100c938    00000064                         : GPIOCC32XX.oem4 (.text:GPIO_toggle)
                      0100c99c    00000064                         : PowerCC32XX.oem4 (.text:PowerCC32XX_setParkState)
                      0100ca00    00000064     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_dispatchC__I)
                      0100ca64    00000062     drivers_cc32xx.aem4 : UARTCC32XX.oem4 (.text:UARTCC32XX_writePolling)
                      0100cac6    00000002     --HOLE-- [fill = 0]
                      0100cac8    00000060     driverlib.a : prcm.obj (.text:PRCMSysResetCauseGet)
                      0100cb28    00000060     slnetsock_release.a : slnetsock.oem4 (.text:SlNetSock_sendTo)
                      0100cb88    00000060     uartI2C.obj (.text:get_network_list)
                      0100cbe8    00000060     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Semaphore_post__E)
                      0100cc48    00000060                  : BIOS.obj (.text:ti_sysbios_knl_Swi_run__I)
                      0100cca8    0000005e     drivers_cc32xx.aem4 : I2CCC32XX.oem4 (.text:I2CCC32XX_primeTransfer)
                      0100cd06    0000005e     slnetifwifi.a : slnetifwifi.obj (.text:SlNetIfWifi_setSockOpt)
                      0100cd64    0000005c     drivers_cc32xx.aem4 : GPIOCC32XX.oem4 (.text:GPIO_setCallback)
                      0100cdc0    0000005c     simplelink.a : spawn.obj (.text:_SlInternalSpawn)
                      0100ce1c    00000004     slnetsock_release.a : slnetif.oem4 (.text:SlNetIf_init)
                      0100ce20    0000005c     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Timer_start__E)
                      0100ce7c    00000004     slnetsock_release.a : slnetutils.oem4 (.text:SlNetUtil_init)
                      0100ce80    0000005c     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Swi_schedule__I)
                      0100cedc    00000004     rtsv7M4_T_le_eabi.lib : error.c.obj (.text:__abort_execution)
                      0100cee0    0000005c     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Task_startCore__E)
                      0100cf3c    00000004     rtsv7M4_T_le_eabi.lib : exit.c.obj (.text:abort:abort)
                      0100cf40    0000005c     sysbios.aem4 : BIOS.obj (.text:xdc_runtime_Startup_exec__E)
                      0100cf9c    00000058     drivers_cc32xx.aem4 : GPIOCC32XX.oem4 (.text:GPIO_write)
                      0100cff4    00000058     driverlib.a : prcm.obj (.text:PRCMPeripheralReset)
                      0100d04c    00000058     drivers_cc32xx.aem4 : PowerCC32XX.oem4 (.text:Power_releaseDependency)
                      0100d0a4    00000058     simplelink.a : sl_socket.obj (.text:_SlDrvClearCtrlSocket)
                      0100d0fc    00000004     release_pem4.oem4 (.text:ti_sysbios_BIOS_RtsGateProxy_enter__E)
                      0100d100    00000058     sysbios.aem4 : BIOS.obj (.text:pthread_mutex_init)
                      0100d158    00000058     simplelink.a : sl_socket.obj (.text:sl_Listen)
                      0100d1b0    00000058                  : eventreg.obj (.text:sl_RegisterLibsEventHandler)
                      0100d208    00000058     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_family_arm_cc32xx_Seconds_getCount__I)
                      0100d260    00000056     drivers_cc32xx.aem4 : TimerCC32XX.oem4 (.text:TimerCC32XX_stop)
                      0100d2b6    00000002     --HOLE-- [fill = 0]
                      0100d2b8    00000054     simplelink.a : driver.obj (.text:_SlDrvRxIrqHandler)
                      0100d30c    00000054     drivers_cc32xx.aem4 : UARTCC32XX.oem4 (.text:ringBufGet)
                      0100d360    00000054     release_pem4.oem4 (.text:ti_sysbios_family_arm_m3_Hwi_create)
                      0100d3b4    00000004     release_pem4.oem4 (.text:ti_sysbios_BIOS_RtsGateProxy_leave__E)
                      0100d3b8    00000054     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Timer_setPeriod__E)
                      0100d40c    00000052     drivers_cc32xx.aem4 : PowerCC32XX_asm.oem4 (.text:PowerCC32XX_resumeLPDS)
                      0100d45e    00000052                         : TimerCC32XX.oem4 (.text:initHw)
                      0100d4b0    00000050     simplelink.a : cc_pal.obj (.text:NwpRegisterInterruptHandler)
                      0100d500    00000050     slnetsock_release.a : slnetif.oem4 (.text:SlNetIf_queryIf)
                      0100d550    00000050     drivers_cc32xx.aem4 : TimerCC32XX.oem4 (.text:TimerCC32XX_allocateTimerResource)
                      0100d5a0    00000050     simplelink.a : sl_socket.obj (.text:_SlDrvCloseCtrlSocket)
                      0100d5f0    00000050                  : driver.obj (.text:_SlDrvCmdSend_noWait)
                      0100d640    00000050                  : driver.obj (.text:_SlDrvUpdateApiInProgress)
                      0100d690    00000050                  : spawn.obj (.text:_SlInternalSpawnTaskEntry)
                      0100d6e0    00000050                  : eventreg.obj (.text:_SlNetAppHttpServerHdlr)
                      0100d730    00000050                  : eventreg.obj (.text:_SlNetAppRequestHdlr)
                      0100d780    00000050     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_Module_startup__E)
                      0100d7d0    00000050                  : BIOS.obj (.text:ti_sysbios_knl_Clock_Instance_init__E)
                      0100d820    00000050     release_pem4.oem4 (.text:ti_sysbios_knl_Task_create)
                      0100d870    0000004c     drivers_cc32xx.aem4 : GPIOCC32XX.oem4 (.text:GPIO_enableInt)
                      0100d8bc    0000004c     simplelink.a : cc_pal.obj (.text:NwpWaitForShutDownInd)
                      0100d908    0000004c     drivers_cc32xx.aem4 : PowerCC32XX.oem4 (.text:PowerCC32XX_parkPin)
                      0100d954    0000004c     slnetifwifi.a : slnetifwifi.obj (.text:SlNetIfWifi_getConnectionStatus)
                      0100d9a0    0000004c     slnetsock_release.a : slnetsock.oem4 (.text:SlNetSock_freeVirtualSocket)
                      0100d9ec    0000004c     rtsv7M4_T_le_eabi.lib : cpy_tbl.c.obj (.text:copy_in)
                      0100da38    0000004c     platform.obj (.text:printError)
                      0100da84    0000004c     drivers_cc32xx.aem4 : PowerCC32XX.oem4 (.text:restorePeriphClocks)
                      0100dad0    0000004c     simplelink.a : wlan.obj (.text:sl_WlanSetMode)
                      0100db1c    0000004c     sysbios.aem4 : m3_TaskSupport_asm.obj (.text:ti_sysbios_family_arm_m3_TaskSupport_buildTaskStack)
                      0100db68    0000004c                  : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_getStats__E)
                      0100dbb4    00000004     release_pem4.oem4 (.text:ti_sysbios_family_arm_m3_Hwi_delete)
                      0100dbb8    0000004c     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Swi_runLoop__I)
                      0100dc04    00000004     release_pem4.oem4 (.text:ti_sysbios_family_arm_m3_TaskSupport_Module__startupDone__S)
                      0100dc08    0000004c     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Task_allBlockedFunction__I)
                      0100dc54    00000004     release_pem4.oem4 (.text:ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E)
                      0100dc58    0000004c     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Task_schedule__I)
                      0100dca4    00000048     driverlib.a : flash.obj (.text:FlashDisable)
                      0100dcec    00000048                 : prcm.obj (.text:PRCMLPDSEnter)
                      0100dd34    00000048                 : prcm.obj (.text:PRCMPeripheralClkEnable)
                      0100dd7c    00000048     drivers_cc32xx.aem4 : PowerCC32XX.oem4 (.text:Power_releaseConstraint)
                      0100ddc4    00000048     slnetsock_release.a : slnetsock.oem4 (.text:SlNetSock_init)
                      0100de0c    00000048     simplelink.a : eventreg.obj (.text:_SlDeviceFatalErrorEvtHdlr)
                      0100de54    00000048                  : eventreg.obj (.text:_SlDeviceGeneralEvtHdlr)
                      0100de9c    00000048                  : driver.obj (.text:_SlDrvSyncObjWaitTimeout)
                      0100dee4    00000048                  : eventreg.obj (.text:_SlNetAppEvtHdlr)
                      0100df2c    00000048                  : eventreg.obj (.text:_SlNetAppRequestMemFree)
                      0100df74    00000048                  : eventreg.obj (.text:_SlSockEvtHdlr)
                      0100dfbc    00000048                  : eventreg.obj (.text:_SlWlanEvtHdlr)
                      0100e004    00000004     release_pem4.oem4 (.text:ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E)
                      0100e008    00000048     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E)
                      0100e050    00000048                  : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E)
                      0100e098    00000048                  : m3_Hwi_asm_switch.obj (.text:ti_sysbios_family_arm_m3_Hwi_initStacks__E)
                      0100e0e0    00000048                  : BIOS.obj (.text:ti_sysbios_family_arm_m3_Timer_initDevice__I)
                      0100e128    00000048                  : BIOS.obj (.text:ti_sysbios_knl_Mailbox_Module_startup__E)
                      0100e170    00000048                  : BIOS.obj (.text:xdc_runtime_Core_assignParams__I)
                      0100e1b8    00000046     drivers_cc32xx.aem4 : RingBuf.oem4 (.text:RingBuf_put)
                      0100e1fe    00000046                         : TimerCC32XX.oem4 (.text:getPrescaler)
                      0100e244    00000044                         : I2C.oem4 (.text:I2C_init)
                      0100e288    00000044     driverlib.a : prcm.obj (.text:PRCMLPDSRestoreInfoSet)
                      0100e2cc    00000044     drivers_cc32xx.aem4 : PowerCC32XX_asm.oem4 (.text:PowerCC32XX_enterLPDS)
                      0100e310    00000044                         : SPI.oem4 (.text:SPI_init)
                      0100e354    00000044     slnetsock_release.a : slnetutils.oem4 (.text:SlNetUtil_strTok)
                      0100e398    00000044     drivers_cc32xx.aem4 : Timer.oem4 (.text:Timer_init)
                      0100e3dc    00000044                         : UART.oem4 (.text:UART_init)
                      0100e420    00000044     boot.aem4 : boot.oem4 (.text)
                      0100e464    00000044     ti_net_config.obj (.text:ti_net_SlNet_initConfig)
                      0100e4a8    00000044     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_getStackInfo__E)
                      0100e4ec    00000004     release_pem4.oem4 (.text:ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E)
                      0100e4f0    00000044     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Mailbox_postInit__I)
                      0100e534    00000004     release_pem4.oem4 (.text:ti_sysbios_knl_Clock_TimerProxy_setPeriodMicroSecs__E)
                      0100e538    00000044     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Swi_post__E)
                      0100e57c    00000004     release_pem4.oem4 (.text:ti_sysbios_knl_Clock_TimerProxy_start__E)
                      0100e580    00000044     sysbios.aem4 : BIOS.obj (.text:xdc_runtime_System_atexit__E)
                      0100e5c4    00000040     dpl_cc32xx.aem4 : ClockP_tirtos.oem4 (.text:ClockP_create)
                      0100e604    00000040     simplelink.a : sl_socket.obj (.text:CountSetBits)
                      0100e644    00000040     dpl_cc32xx.aem4 : HwiP_tirtos.oem4 (.text:HwiP_create)
                      0100e684    00000040     drivers_cc32xx.aem4 : I2C.oem4 (.text:I2C_open)
                      0100e6c4    00000040     driverlib.a : pin.obj (.text:PinModeSet)
                      0100e704    00000040     drivers_cc32xx.aem4 : RingBuf.oem4 (.text:RingBuf_get)
                      0100e744    00000040                         : SPI.oem4 (.text:SPI_open)
                      0100e784    00000040                         : Timer.oem4 (.text:Timer_open)
                      0100e7c4    00000040                         : UARTCC32XX.oem4 (.text:UARTCC32XX_read)
                      0100e804    00000040                         : UART.oem4 (.text:UART_open)
                      0100e844    00000040                         : UDMACC32XX.oem4 (.text:UDMACC32XX_init)
                      0100e884    00000040     simplelink.a : driver.obj (.text:_SlDrvGlobalObjUnLock)
                      0100e8c4    00000040                  : driver.obj (.text:_SlFindAndReleasePendingCmd)
                      0100e904    00000040                  : spawn.obj (.text:_SlInternalSpawnWaitForEvent)
                      0100e944    00000040                  : eventreg.obj (.text:_SlIsEventRegistered)
                      0100e984    00000004     release_pem4.oem4 (.text:ti_sysbios_knl_Clock_TimerProxy_stop__E)
                      0100e988    00000040     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_Instance_init__E)
                      0100e9c8    0000003e     slnetsock_release.a : slnetsock.oem4 (.text:SlNetSock_close)
                      0100ea06    0000003e     simplelink.a : sl_socket.obj (.text:_SlSocketBuildAddress)
                      0100ea44    0000003e     release_pem4.oem4 (.text:realloc)
                      0100ea82    00000006     drivers_cc32xx.aem4 : I2CCC32XX.oem4 (.text:I2CCC32XX_control)
                      0100ea88    0000003e     sysbios.aem4 : BIOS.obj (.text:sem_timedwait)
                      0100eac6    00000002     --HOLE-- [fill = 0]
                      0100eac8    0000003c     drivers_cc32xx.aem4 : PowerCC32XX.oem4 (.text:Power_setConstraint)
                      0100eb04    0000003c     dpl_cc32xx.aem4 : SemaphoreP_tirtos.oem4 (.text:SemaphoreP_create)
                      0100eb40    0000003c     simplelink.a : netapp.obj (.text:_SlNetAppCopyPingResultsToReport)
                      0100eb7c    00000004     release_pem4.oem4 (.text:ti_sysbios_knl_Clock_delete)
                      0100eb80    0000003c     sysbios.aem4 : BIOS.obj (.text:pthread_mutex_unlock)
                      0100ebbc    00000004     release_pem4.oem4 (.text:ti_sysbios_knl_Semaphore_delete)
                      0100ebc0    0000003c     sysbios.aem4 : BIOS.obj (.text:sleep)
                      0100ebfc    00000004     release_pem4.oem4 (.text:ti_sysbios_knl_Task_delete)
                      0100ec00    0000003c     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_Instance_finalize__E)
                      0100ec3c    00000004     release_pem4.oem4 (.text:xdc_runtime_System_Module_GateProxy_enter__E)
                      0100ec40    0000003c     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Timer_setPeriodMicroSecs__E)
                      0100ec7c    0000003c     release_pem4.oem4 (.text:ti_sysbios_knl_Clock_create)
                      0100ecb8    0000003c     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Clock_walkQueuePeriodic__E)
                      0100ecf4    00000004     release_pem4.oem4 (.text:xdc_runtime_System_Module_GateProxy_leave__E)
                      0100ecf8    0000003c     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Swi_restore__E)
                      0100ed34    0000003c     uartI2C.obj (.text:timerCallback)
                      0100ed70    0000003c     simplelink.a : sl_socket.obj (.text:to_mSec)
                      0100edac    00000004     --HOLE-- [fill = 0]
                      0100edb0    0000003c     sysbios.aem4 : BIOS.obj (.text:usleep)
                      0100edec    00000004     --HOLE-- [fill = 0]
                      0100edf0    0000003c                  : BIOS.obj (.text:xdc_runtime_System_processAtExit__E)
                      0100ee2c    0000003a     drivers_cc32xx.aem4 : I2CCC32XX.oem4 (.text:I2CCC32XX_readRecieveFifo)
                      0100ee66    0000003a     slnetifwifi.a : slnetifwifi.obj (.text:SlNetIfWifi_getIPAddr)
                      0100eea0    0000003a     drivers_cc32xx.aem4 : TimerCC32XX.oem4 (.text:TimerCC32XX_close)
                      0100eeda    0000003a     dpl_cc32xx.aem4 : PowerCC32XX_tirtos.oem4 (.text:getCountsRTC)
                      0100ef14    00000038     drivers_cc32xx.aem4 : GPIOCC32XX.oem4 (.text:GPIO_read)
                      0100ef4c    00000038     driverlib.a : prcm.obj (.text:PRCMLPDSEnterKeepDebugIf)
                      0100ef84    00000038     slnetifwifi.a : slnetifwifi.obj (.text:SlNetIfWifi_recvFrom)
                      0100efbc    00000038                   : slnetifwifi.obj (.text:SlNetIfWifi_sendTo)
                      0100eff4    00000038                   : slnetifwifi.obj (.text:SlNetIfWifi_socket)
                      0100f02c    00000038     slnetsock_release.a : slnetif.oem4 (.text:SlNetIf_configCheck)
                      0100f064    00000038     drivers_cc32xx.aem4 : TimerCC32XX.oem4 (.text:TimerCC32XX_hwiIntFunction)
                      0100f09c    00000038                         : PowerCC32XX.oem4 (.text:notify)
                      0100f0d4    00000004     --HOLE-- [fill = 0]
                      0100f0d8    00000038     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Task_processVitalTaskFlag__I)
                      0100f110    00000036     slnetifwifi.a : slnetifwifi.obj (.text:SlNetIfWifi_getHostByName)
                      0100f146    00000036                   : slnetifwifi.obj (.text:SlNetIfWifi_select)
                      0100f17c    00000036     driverlib.a : timer.obj (.text:TimerControlStall)
                      0100f1b2    00000036     drivers_cc32xx.aem4 : UARTCC32XX.oem4 (.text:UARTCC32XX_readCancel)
                      0100f1e8    00000034     driverlib.a : pin.obj (.text:PinModeGet)
                      0100f21c    00000034     drivers_cc32xx.aem4 : PowerCC32XX.oem4 (.text:PowerCC32XX_restoreParkState)
                      0100f250    00000034     slnetsock_release.a : slnetutils.oem4 (.text:SlNetUtil_htons)
                      0100f284    00000034     drivers_cc32xx.aem4 : TimerCC32XX.oem4 (.text:TimerCC32XX_freeTimerResource)
                      0100f2b8    00000034                         : UDMACC32XX.oem4 (.text:UDMACC32XX_close)
                      0100f2ec    00000004     --HOLE-- [fill = 0]
                      0100f2f0    00000034     sysbios.aem4 : BIOS.obj (.text:_pthread_delete$41)
                      0100f324    00000034     drivers_cc32xx.aem4 : TimerCC32XX.oem4 (.text:getPowerMgrId)
                      0100f358    00000034     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Timer_periodicStub__I)
                      0100f38c    00000034     release_pem4.oem4 (.text:ti_sysbios_knl_Semaphore_create)
                      0100f3c0    00000034     uartI2C.obj (.text:timerCallback1)
                      0100f3f4    00000004     --HOLE-- [fill = 0]
                      0100f3f8    00000032     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_hal_Hwi_initStack)
                      0100f42a    00000030     drivers_cc32xx.aem4 : I2CCC32XX.oem4 (.text:I2CCC32XX_cancel)
                      0100f45a    00000030                         : PowerCC32XX.oem4 (.text:PowerCC32XX_restoreParkedPin)
                      0100f48a    00000030     simplelink.a : fs.obj (.text:_SlFsStrlen)
                      0100f4ba    00000002     --HOLE-- [fill = 0]
                      0100f4bc    00000030     uartI2C.obj (.text:button_pressed)
                      0100f4ec    00000004     --HOLE-- [fill = 0]
                      0100f4f0    00000030     sysbios.aem4 : BIOS.obj (.text:getTime$20)
                      0100f520    00000030     release_pem4.oem4 (.text:ti_sysbios_BIOS_atExitFunc__I)
                      0100f550    00000030     release_pem4.oem4 (.text:ti_sysbios_BIOS_startFunc__I)
                      0100f580    00000030     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_family_arm_m3_TaskSupport_start__E)
                      0100f5b0    00000030     release_pem4.oem4 (.text:ti_sysbios_gates_GateHwi_Object__create__S)
                      0100f5e0    00000030     release_pem4.oem4 (.text:ti_sysbios_gates_GateMutex_Object__create__S)
                      0100f610    00000030     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_gates_GateMutex_enter__E)
                      0100f640    00000030     release_pem4.oem4 (.text:ti_sysbios_heaps_HeapMem_Object__create__S)
                      0100f670    00000030     release_pem4.oem4 (.text:ti_sysbios_knl_Semaphore_construct)
                      0100f6a0    00000030     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Semaphore_pendTimeout__I)
                      0100f6d0    00000030                  : BIOS.obj (.text:ti_sysbios_knl_Task_restore__E)
                      0100f700    00000030                  : BIOS.obj (.text:ti_sysbios_knl_Task_unblockI__E)
                      0100f730    0000002e     simplelink.a : cc_pal.obj (.text:Mutex_create_handle)
                      0100f75e    0000002e     release_pem4.oem4 (.text:ti_sysbios_rts_MemAlloc_alloc)
                      0100f78c    0000002c     simplelink.a : cc_pal.obj (.text:NwpPowerOn)
                      0100f7b8    0000002c     drivers_cc32xx.aem4 : PowerCC32XX.oem4 (.text:PowerCC32XX_getParkState)
                      0100f7e4    0000002c     dpl_cc32xx.aem4 : SemaphoreP_tirtos.oem4 (.text:SemaphoreP_createBinary)
                      0100f810    0000002c     slnetifwifi.a : slnetifwifi.obj (.text:SlNetIfWifi_recv)
                      0100f83c    0000002c                   : slnetifwifi.obj (.text:SlNetIfWifi_send)
                      0100f868    0000002c     simplelink.a : driver.obj (.text:_SlDrvSyncObjWaitForever)
                      0100f894    00000004     --HOLE-- [fill = 0]
                      0100f898    0000002c     sysbios.aem4 : BIOS.obj (.text:_pthread_cleanupFxn)
                      0100f8c4    00000004     --HOLE-- [fill = 0]
                      0100f8c8    0000002c                  : BIOS.obj (.text:clockFxn$39)
                      0100f8f4    0000002c     release_pem4.oem4 (.text:ti_sysbios_gates_GateHwi_Handle__label__S)
                      0100f920    0000002c     release_pem4.oem4 (.text:ti_sysbios_gates_GateMutex_Handle__label__S)
                      0100f94c    0000002c     release_pem4.oem4 (.text:ti_sysbios_heaps_HeapMem_Handle__label__S)
                      0100f978    0000002c     release_pem4.oem4 (.text:ti_sysbios_knl_Clock_doTick__I)
                      0100f9a4    0000002c     release_pem4.oem4 (.text:ti_sysbios_knl_Queue_construct)
                      0100f9d0    0000002a     display.aem4 : Display.oem4 (.text:Display_doPrintf)
                      0100f9fa    0000002a     slnetsock_release.a : slnetutils.oem4 (.text:SlNetUtil_inetPton)
                      0100fa24    0000002a     driverlib.a : timer.obj (.text:TimerLoadSet)
                      0100fa4e    0000002a                 : timer.obj (.text:TimerPrescaleSet)
                      0100fa78    0000002a     release_pem4.oem4 (.text:calloc)
                      0100faa2    00000006     drivers_cc32xx.aem4 : SPICC32XXDMA.oem4 (.text:SPICC32XXDMA_control)
                      0100faa8    0000002a     sysbios.aem4 : BIOS.obj (.text:sem_init)
                      0100fad2    00000028     driverlib.a : i2c.obj (.text:I2CFIFODataPutNonBlocking)
                      0100fafa    00000002     --HOLE-- [fill = 0]
                      0100fafc    00000028                 : prcm.obj (.text:PRCMPeripheralClkDisable)
                      0100fb24    00000028     dpl_cc32xx.aem4 : PowerCC32XX_tirtos.oem4 (.text:PowerCC32XX_initPolicy)
                      0100fb4c    00000028     drivers_cc32xx.aem4 : PowerCC32XX.oem4 (.text:Power_registerNotify)
                      0100fb74    00000028     slnetsock_release.a : slnetif.oem4 (.text:SlNetIf_getIfByID)
                      0100fb9c    00000028     simplelink.a : driver.obj (.text:_SlDrvProtectionObjLockWaitForever)
                      0100fbc4    00000028                  : driver.obj (.text:_SlDrvProtectionObjUnLock)
                      0100fbec    00000028                  : flowcont.obj (.text:_SlFlowContSet)
                      0100fc14    00000028     sysbios.aem4 : m3_Hwi_asm.obj (.text:ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I)
                      0100fc3c    00000004     --HOLE-- [fill = 0]
                      0100fc40    00000028                  : BIOS.obj (.text:ti_sysbios_knl_Clock_addI__E)
                      0100fc68    00000028                  : BIOS.obj (.text:ti_sysbios_knl_Swi_Module_startup__E)
                      0100fc90    00000026     driverlib.a : i2c.obj (.text:I2CFIFODataGetNonBlocking)
                      0100fcb6    00000026     drivers_cc32xx.aem4 : List.oem4 (.text:List_put)
                      0100fcdc    00000026                         : List.oem4 (.text:List_remove)
                      0100fd02    00000002     --HOLE-- [fill = 0]
                      0100fd04    00000024                         : PowerCC32XX.oem4 (.text:PowerCC32XX_reset)
                      0100fd28    00000024     slnetsock_release.a : slnetif.oem4 (.text:SlNetIf_getConnectionStatus)
                      0100fd4c    00000024     simplelink.a : driver.obj (.text:_SlDrvIsApiInProgress)
                      0100fd70    00000024                  : driver.obj (.text:_SlDrvStartMeasureTimeout)
                      0100fd94    00000004     --HOLE-- [fill = 0]
                      0100fd98    00000024     sysbios.aem4 : BIOS.obj (.text:pthread_attr_init)
                      0100fdbc    00000024     release_pem4.oem4 (.text:ti_sysbios_BIOS_registerRTSLock__I)
                      0100fde0    00000024     release_pem4.oem4 (.text:ti_sysbios_BIOS_removeRTSLock__I)
                      0100fe04    00000004     --HOLE-- [fill = 0]
                      0100fe08    00000024     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Timer_postInit__I)
                      0100fe2c    00000004     --HOLE-- [fill = 0]
                      0100fe30    00000024                  : BIOS.obj (.text:ti_sysbios_family_arm_m3_Timer_startup__E)
                      0100fe54    00000024     release_pem4.oem4 (.text:ti_sysbios_gates_GateMutex_Object__delete__S)
                      0100fe78    00000024     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Clock_Module_startup__E)
                      0100fe9c    00000024     release_pem4.oem4 (.text:ti_sysbios_knl_Clock_Object__delete__S)
                      0100fec0    00000024     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Clock_start__E)
                      0100fee4    00000004     --HOLE-- [fill = 0]
                      0100fee8    00000024                  : BIOS.obj (.text:ti_sysbios_knl_Semaphore_Instance_init__E)
                      0100ff0c    00000024     release_pem4.oem4 (.text:ti_sysbios_knl_Semaphore_Object__delete__S)
                      0100ff30    00000024     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Task_restoreHwi__E)
                      0100ff54    00000004     --HOLE-- [fill = 0]
                      0100ff58    00000024                  : BIOS.obj (.text:xdc_runtime_Error_policyMin__E)
                      0100ff7c    00000022     driverlib.a : i2c.obj (.text:I2CMasterSlaveAddrSet)
                      0100ff9e    00000002     --HOLE-- [fill = 0]
                      0100ffa0    00000020     drivers_cc32xx.aem4 : PowerCC32XX.oem4 (.text:Power_unregisterNotify)
                      0100ffc0    00000020                         : RingBuf.oem4 (.text:RingBuf_peek)
                      0100ffe0    00000020     slnetifwifi.a : slnetifwifi.obj (.text:SlNetIfWifi_accept)
                      01010000    00000020     drivers_cc32xx.aem4 : SPICC32XXDMA.oem4 (.text:getPowerMgrId)
                      01010020    00000020                         : UARTCC32XX.oem4 (.text:getPowerMgrId)
                      01010040    00000020     release_pem4.oem4 (.text:ti_sysbios_BIOS_rtsLock__I)
                      01010060    00000020     release_pem4.oem4 (.text:ti_sysbios_family_arm_m3_Hwi_Object__delete__S)
                      01010080    00000020     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_clearInterrupt__E)
                      010100a0    00000020     release_pem4.oem4 (.text:ti_sysbios_gates_GateHwi_Object__delete__S)
                      010100c0    00000020     release_pem4.oem4 (.text:ti_sysbios_heaps_HeapMem_Object__delete__S)
                      010100e0    00000020     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Idle_run__E)
                      01010100    00000020     release_pem4.oem4 (.text:ti_sysbios_knl_Semaphore_destruct)
                      01010120    00000020     release_pem4.oem4 (.text:ti_sysbios_knl_Task_Object__delete__S)
                      01010140    0000001e     driverlib.a : i2c.obj (.text:I2CMasterIntStatusEx)
                      0101015e    0000001e     slnetifwifi.a : slnetifwifi.obj (.text:SlNetIfWifi_bind)
                      0101017c    0000001e                   : slnetifwifi.obj (.text:SlNetIfWifi_connect)
                      0101019a    0000001e     driverlib.a : timer.obj (.text:TimerDisable)
                      010101b8    0000001e                 : timer.obj (.text:TimerEnable)
                      010101d6    0000001e     simplelink.a : driver.obj (.text:_SlDrvObjLockWaitForever)
                      010101f4    0000001e                  : driver.obj (.text:_SlDrvObjUnLock)
                      01010212    0000001e                  : driver.obj (.text:_SlDrvSyncObjSignal)
                      01010230    0000001e     drivers_cc32xx.aem4 : UDMACC32XX.oem4 (.text:postNotifyFxn)
                      0101024e    0000001e     sysbios.aem4 : m3_Hwi_asm_switch.obj (.text:ti_sysbios_family_xxx_Hwi_switchAndRunFunc)
                      0101026c    0000001c     driverlib.a : pin.obj (.text:PinToPadGet)
                      01010288    0000001c     simplelink.a : device.obj (.text:_SlDeviceGetStartResponseConvert)
                      010102a4    0000001c                  : spawn.obj (.text:_SlInternalIsItSpawnThread)
                      010102c0    0000001c     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_excHandler__I)
                      010102dc    00000004     --HOLE-- [fill = 0]
                      010102e0    0000001c                  : BIOS.obj (.text:ti_sysbios_family_arm_m3_Timer_Module_startup__E)
                      010102fc    00000004     --HOLE-- [fill = 0]
                      01010300    0000001c                  : BIOS.obj (.text:ti_sysbios_family_arm_m3_Timer_stop__E)
                      0101031c    00000004     --HOLE-- [fill = 0]
                      01010320    0000001c                  : BIOS.obj (.text:ti_sysbios_gates_GateMutex_Instance_init__E)
                      0101033c    00000004     --HOLE-- [fill = 0]
                      01010340    0000001c                  : BIOS.obj (.text:ti_sysbios_knl_Clock_Instance_finalize__E)
                      0101035c    0000001c     release_pem4.oem4 (.text:ti_sysbios_knl_Queue_destruct)
                      01010378    0000001c     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Queue_put__E)
                      01010394    00000004     --HOLE-- [fill = 0]
                      01010398    0000001c                  : BIOS.obj (.text:ti_sysbios_knl_Task_enter__I)
                      010103b4    00000004     --HOLE-- [fill = 0]
                      010103b8    0000001c                  : BIOS.obj (.text:ti_sysbios_rts_ti_ReentSupport_getReent__F)
                      010103d4    0000001a     slnetifwifi.a : slnetifwifi.obj (.text:SlNetIfWifi_listen)
                      010103ee    0000001a     release_pem4.oem4 (.text:free)
                      01010408    0000001a     slnetsock_release.a : socket.oem4 (.text:sendto)
                      01010422    0000001a     sysbios.aem4 : m3_Hwi_asm.obj (.text:ti_sysbios_family_arm_m3_Hwi_pendSV__I)
                      0101043c    00000018     driverlib.a : i2c.obj (.text:I2CMasterBusBusy)
                      01010454    00000018                 : i2c.obj (.text:I2CMasterIntDisableEx)
                      0101046c    00000018                 : i2c.obj (.text:I2CMasterIntEnableEx)
                      01010484    00000018                 : i2c.obj (.text:I2CRxFIFOFlush)
                      0101049c    00000018                 : i2c.obj (.text:I2CTxFIFOFlush)
                      010104b4    00000018     drivers_cc32xx.aem4 : I2C.oem4 (.text:I2C_transfer)
                      010104cc    00000018                         : PowerCC32XX.oem4 (.text:Power_idleFunc)
                      010104e4    00000018                         : TimerCC32XX.oem4 (.text:TimerCC32XX_getCount)
                      010104fc    00000018     driverlib.a : timer.obj (.text:TimerIntDisable)
                      01010514    00000018                 : timer.obj (.text:TimerIntEnable)
                      0101052c    00000018                 : uart.obj (.text:UARTBusy)
                      01010544    00000018                 : uart.obj (.text:UARTIntEnable)
                      0101055c    00000018     drivers_cc32xx.aem4 : UART.oem4 (.text:UART_Params_init)
                      01010574    00000018     rtsv7M4_T_le_eabi.lib : args_main.c.obj (.text:_args_main)
                      0101058c    00000018     uartI2C.obj (.text:close)
                      010105a4    00000018     rtsv7M4_T_le_eabi.lib : ll_mul_t2.asm.obj (.text)
                      010105bc    00000018     release_pem4.oem4 (.text:ti_sysbios_BIOS_rtsUnlock__I)
                      010105d4    00000018     release_pem4.oem4 (.text:ti_sysbios_family_arm_m3_Hwi_Module__startupDone__F)
                      010105ec    00000018     release_pem4.oem4 (.text:ti_sysbios_family_arm_m3_Timer_Module__startupDone__F)
                      01010604    00000004     --HOLE-- [fill = 0]
                      01010608    00000018     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_gates_GateMutex_leave__E)
                      01010620    00000018                  : BIOS.obj (.text:ti_sysbios_knl_Task_sleepTimeout__I)
                      01010638    00000018     release_pem4.oem4 (.text:ti_sysbios_rts_ti_ReentSupport_getTlsAddr__I)
                      01010650    00000018     uartI2C.obj (.text:uart1_read_callback)
                      01010668    00000018     uartI2C.obj (.text:uart_read_callback)
                      01010680    00000018     sysbios.aem4 : BIOS.obj (.text:xdc_runtime_Error_init__E)
                      01010698    00000018                  : BIOS.obj (.text:xdc_runtime_System_exit__E)
                      010106b0    00000016     driverlib.a : i2c.obj (.text:I2CMasterBurstLengthSet)
                      010106c6    00000016                 : prcm.obj (.text:PRCMHIBRegRead)
                      010106dc    00000016                 : prcm.obj (.text:PRCMHIBRegWrite)
                      010106f2    00000016     simplelink.a : driver.obj (.text:_SlDrvMemZero)
                      01010708    00000016     slnetsock_release.a : socket.oem4 (.text:inet_pton)
                      0101071e    00000002     --HOLE-- [fill = 0]
                      01010720    00000016     sysbios.aem4 : BIOS.obj (.text:pthread_mutex_destroy)
                      01010736    00000016     slnetsock_release.a : socket.oem4 (.text:socket)
                      0101074c    00000016     release_pem4.oem4 (.text:ti_sysbios_BIOS_exitFunc__I)
                      01010762    00000002     --HOLE-- [fill = 0]
                      01010764    00000014     drivers_cc32xx.aem4 : PowerCC32XX.oem4 (.text:Power_getDependencyCount)
                      01010778    00000014                         : SPI.oem4 (.text:SPI_Params_init)
                      0101078c    00000004     --HOLE-- [fill = 0]
                      01010790    00000014     sysbios.aem4 : BIOS.obj (.text:pthread_attr_setschedparam)
                      010107a4    00000014     drivers_cc32xx.aem4 : UARTCC32XX.oem4 (.text:releasePowerConstraint)
                      010107b8    00000014     rtsv7M4_T_le_eabi.lib : strcpy.c.obj (.text:strcpy)
                      010107cc    00000014                           : strlen.c.obj (.text:strlen)
                      010107e0    00000014     release_pem4.oem4 (.text:ti_sysbios_family_arm_m3_Hwi_Object__get__S)
                      010107f4    00000004     --HOLE-- [fill = 0]
                      010107f8    00000014     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_switchFromBootStack__E)
                      0101080c    00000014     release_pem4.oem4 (.text:ti_sysbios_heaps_HeapMem_Object__get__S)
                      01010820    00000014     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Clock_tickReconfig__E)
                      01010834    00000014     release_pem4.oem4 (.text:ti_sysbios_knl_Swi_Object__get__S)
                      01010848    00000012     driverlib.a : i2c.obj (.text:I2CMasterIntClearEx)
                      0101085a    00000012     drivers_cc32xx.aem4 : RingBuf.oem4 (.text:RingBuf_construct)
                      0101086c    00000012     dpl_cc32xx.aem4 : SemaphoreP_tirtos.oem4 (.text:SemaphoreP_pend)
                      0101087e    00000012     slnetifwifi.a : slnetifwifi.obj (.text:SlNetIfWifi_close)
                      01010890    00000012     driverlib.a : timer.obj (.text:TimerIntClear)
                      010108a2    00000006     drivers_cc32xx.aem4 : TimerCC32XX.oem4 (.text:TimerCC32XX_control)
                      010108a8    00000012     sysbios.aem4 : BIOS.obj (.text:_pthread_runStub$41)
                      010108ba    00000006     driverlib.a : utils.obj (.text:UtilsDelay)
                      010108c0    00000012     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_hal_Hwi_Module_startup__E)
                      010108d2    00000012     release_pem4.oem4 (.text:xdc_runtime_Startup_exec__I)
                      010108e4    00000010     ti_drivers_config.obj (.text:Board_init)
                      010108f4    00000010     dpl_cc32xx.aem4 : HwiP_tirtos.oem4 (.text:HwiP_Params_init)
                      01010904    00000010     driverlib.a : i2c.obj (.text:I2CFIFOStatus)
                      01010914    00000010     drivers_cc32xx.aem4 : I2C.oem4 (.text:I2C_Params_init)
                      01010924    00000010                         : Timer.oem4 (.text:Timer_Params_init)
                      01010934    00000010     simplelink.a : driver.obj (.text:_SlDrvDispatchHttpServerEvents)
                      01010944    00000010                  : driver.obj (.text:_SlDrvDispatchNetAppRequestEvents)
                      01010954    00000010                  : driver.obj (.text:_SlDrvIsSpawnOwnGlobalLock)
                      01010964    00000010     ti_drivers_config.obj (.text:dmaErrorFxn)
                      01010974    00000004     --HOLE-- [fill = 0]
                      01010978    00000010     sysbios.aem4 : BIOS.obj (.text:pthread_mutexattr_init)
                      01010988    00000010                  : BIOS.obj (.text:pthread_mutexattr_settype)
                      01010998    00000010     drivers_cc32xx.aem4 : UARTCC32XX.oem4 (.text:readBlockingTimeout)
                      010109a8    00000010     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_BIOS_getCpuFreq__E)
                      010109b8    00000010                  : BIOS.obj (.text:ti_sysbios_BIOS_setThreadType__E)
                      010109c8    00000010                  : BIOS.obj (.text:ti_sysbios_BIOS_start__E)
                      010109d8    00000010                  : m3_TaskSupport_asm.obj (.text:ti_sysbios_family_arm_m3_TaskSupport_glue)
                      010109e8    00000010                  : m3_TaskSupport_asm.obj (.text:ti_sysbios_family_arm_m3_TaskSupport_swap__E)
                      010109f8    00000010                  : BIOS.obj (.text:ti_sysbios_gates_GateMutex_Instance_finalize__E)
                      01010a08    00000010     release_pem4.oem4 (.text:ti_sysbios_knl_Mailbox_Object__get__S)
                      01010a18    00000010     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Semaphore_Instance_finalize__E)
                      01010a28    00000010                  : BIOS.obj (.text:ti_sysbios_knl_Swi_disable__E)
                      01010a38    00000010     release_pem4.oem4 (.text:ti_sysbios_knl_Task_Object__get__S)
                      01010a48    00000010     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Task_disable__E)
                      01010a58    00000010                  : BIOS.obj (.text:xdc_runtime_Memory_free__E)
                      01010a68    00000010                  : BIOS.obj (.text:xdc_runtime_SysCallback_abort__E)
                      01010a78    00000010                  : BIOS.obj (.text:xdc_runtime_SysCallback_exit__E)
                      01010a88    0000000e     drivers_cc32xx.aem4 : I2CCC32XX.oem4 (.text:I2CCC32XX_updateReg)
                      01010a96    0000000e                         : RingBuf.oem4 (.text:RingBuf_isFull)
                      01010aa4    0000000e     simplelink.a : driver.obj (.text:_SlDrvResetCmdExt)
                      01010ab2    0000000e     rtsv7M4_T_le_eabi.lib : copy_decompress_none.c.obj (.text:decompress:none:__TI_decompress_none)
                      01010ac0    0000000e     drivers_cc32xx.aem4 : SPICC32XXDMA.oem4 (.text:postNotifyFxn)
                      01010ace    00000002     --HOLE-- [fill = 0]
                      01010ad0    0000000e     sysbios.aem4 : BIOS.obj (.text:pthread_attr_setdetachstate)
                      01010ade    00000002     --HOLE-- [fill = 0]
                      01010ae0    0000000e                  : BIOS.obj (.text:sem_wait)
                      01010aee    0000000e     simplelink.a : cc_pal.obj (.text:spi_Close)
                      01010afc    00000004     --HOLE-- [fill = 0]
                      01010b00    0000000e     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Idle_loop__E)
                      01010b0e    00000002     --HOLE-- [fill = 0]
                      01010b10    0000000e                  : BIOS.obj (.text:ti_sysbios_knl_Queue_empty__E)
                      01010b1e    0000000c     dpl_cc32xx.aem4 : ClockP_tirtos.oem4 (.text:ClockP_delete)
                      01010b2a    00000002     --HOLE-- [fill = 0]
                      01010b2c    0000000c                     : ClockP_tirtos.oem4 (.text:ClockP_getSystemTickPeriod)
                      01010b38    0000000c                     : HwiP_tirtos.oem4 (.text:HwiP_delete)
                      01010b44    0000000c     drivers_cc32xx.aem4 : I2CCC32XX.oem4 (.text:I2CCC32XX_postNotify)
                      01010b50    0000000c     simplelink.a : cc_pal.obj (.text:NwpMaskInterrupt)
                      01010b5c    0000000c                  : cc_pal.obj (.text:NwpUnMaskInterrupt)
                      01010b68    0000000c     drivers_cc32xx.aem4 : PowerCC32XX.oem4 (.text:Power_getConstraintMask)
                      01010b74    0000000c     dpl_cc32xx.aem4 : SemaphoreP_tirtos.oem4 (.text:SemaphoreP_delete)
                      01010b80    0000000c     platform.obj (.text:SimpleLinkHttpServerEventHandler)
                      01010b8c    0000000c     platform.obj (.text:SimpleLinkNetAppRequestEventHandler)
                      01010b98    0000000c     simplelink.a : device.obj (.text:_SlDeviceResetRequestInitCompletedCB)
                      01010ba4    0000000c     rtsv7M4_T_le_eabi.lib : _lock.c.obj (.text:_register_lock)
                      01010bb0    0000000c                           : _lock.c.obj (.text:_register_unlock)
                      01010bbc    0000000c                           : copy_zero_init.c.obj (.text:decompress:ZI:__TI_zero_init)
                      01010bc8    0000000c     drivers_cc32xx.aem4 : TimerCC32XX.oem4 (.text:postNotifyFxn)
                      01010bd4    0000000c                         : UARTCC32XX.oem4 (.text:postNotifyFxn)
                      01010be0    0000000c     sysbios.aem4 : BIOS.obj (.text:pthread_self)
                      01010bec    0000000c     release_pem4.oem4 (.text:ti_sysbios_family_arm_m3_Hwi_Params__init__S)
                      01010bf8    0000000c     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_disableFxn__E)
                      01010c04    00000004     --HOLE-- [fill = 0]
                      01010c08    0000000c                  : BIOS.obj (.text:ti_sysbios_family_arm_m3_TaskSupport_getStackAlignment__E)
                      01010c14    00000004     --HOLE-- [fill = 0]
                      01010c18    0000000c                  : BIOS.obj (.text:ti_sysbios_gates_GateHwi_enter__E)
                      01010c24    0000000c     release_pem4.oem4 (.text:ti_sysbios_knl_Clock_Params__init__S)
                      01010c30    0000000c     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Clock_getTicks__E)
                      01010c3c    00000004     --HOLE-- [fill = 0]
                      01010c40    0000000c                  : BIOS.obj (.text:ti_sysbios_knl_Clock_setTicks__E)
                      01010c4c    00000004     --HOLE-- [fill = 0]
                      01010c50    0000000c                  : BIOS.obj (.text:ti_sysbios_knl_Clock_tickStart__E)
                      01010c5c    00000004     --HOLE-- [fill = 0]
                      01010c60    0000000c                  : BIOS.obj (.text:ti_sysbios_knl_Clock_tickStop__E)
                      01010c6c    0000000c     release_pem4.oem4 (.text:ti_sysbios_knl_Queue_Object__get__S)
                      01010c78    0000000c     release_pem4.oem4 (.text:ti_sysbios_knl_Semaphore_Params__init__S)
                      01010c84    0000000c     release_pem4.oem4 (.text:ti_sysbios_knl_Task_Params__init__S)
                      01010c90    0000000c     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_knl_Task_self__E)
                      01010c9c    00000004     --HOLE-- [fill = 0]
                      01010ca0    0000000c                  : BIOS.obj (.text:ti_sysbios_rts_ti_ReentSupport_taskRegHook__I)
                      01010cac    0000000c     driverlib.a : udma.obj (.text:uDMAErrorStatusClear)
                      01010cb8    0000000c                 : udma.obj (.text:uDMAErrorStatusGet)
                      01010cc4    00000004     --HOLE-- [fill = 0]
                      01010cc8    0000000c     sysbios.aem4 : BIOS.obj (.text:xdc_runtime_Startup_rtsDone__E)
                      01010cd4    0000000a     dpl_cc32xx.aem4 : ClockP_tirtos.oem4 (.text:ClockP_Params_init)
                      01010cde    0000000a     drivers_cc32xx.aem4 : I2C.oem4 (.text:I2C_close)
                      01010ce8    0000000a                         : SPI.oem4 (.text:SPI_close)
                      01010cf2    0000000a                         : SPI.oem4 (.text:SPI_transfer)
                      01010cfc    0000000a     platform.obj (.text:SimpleLinkFatalErrorEventHandler)
                      01010d06    0000000a     platform.obj (.text:SimpleLinkGeneralEventHandler)
                      01010d10    0000000a     platform.obj (.text:SimpleLinkNetAppRequestMemFreeEventHandler)
                      01010d1a    0000000a     platform.obj (.text:SimpleLinkSockEventHandler)
                      01010d24    0000000a     drivers_cc32xx.aem4 : Timer.oem4 (.text:Timer_start)
                      01010d2e    0000000a                         : UART.oem4 (.text:UART_read)
                      01010d38    0000000a                         : UART.oem4 (.text:UART_write)
                      01010d42    00000006     --HOLE-- [fill = 0]
                      01010d48    0000000a     sysbios.aem4 : BIOS.obj (.text:sem_destroy)
                      01010d52    00000006     --HOLE-- [fill = 0]
                      01010d58    0000000a                  : BIOS.obj (.text:sem_post)
                      01010d62    0000000a     simplelink.a : device.obj (.text:sl_Task)
                      01010d6c    0000000a     release_pem4.oem4 (.text:xdc_runtime_IHeap_alloc)
                      01010d76    0000000a     release_pem4.oem4 (.text:xdc_runtime_IHeap_free)
                      01010d80    00000008     drivers_cc32xx.aem4 : I2CCC32XX.oem4 (.text:I2CCC32XX_blockingCallback)
                      01010d88    00000008     dpl_cc32xx.aem4 : SemaphoreP_tirtos.oem4 (.text:SemaphoreP_Params_init)
                      01010d90    00000008     simplelink.a : cc_pal.obj (.text:TimerGetCurrentTimestamp)
                      01010d98    00000008     drivers_cc32xx.aem4 : SPICC32XXDMA.oem4 (.text:blockingTransferCallback)
                      01010da0    00000008     sysbios.aem4 : BIOS.obj (.text:pthread_attr_setstacksize)
                      01010da8    00000008                  : BIOS.obj (.text:pthread_mutex_lock)
                      01010db0    00000008     drivers_cc32xx.aem4 : UARTCC32XX.oem4 (.text:readSemCallback)
                      01010db8    00000008     sysbios.aem4 : BIOS.obj (.text:sem_getvalue)
                      01010dc0    00000008                  : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_doSwiRestore__I)
                      01010dc8    00000008                  : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_startup__E)
                      01010dd0    00000008     drivers_cc32xx.aem4 : UARTCC32XX.oem4 (.text:writeSemCallback)
                      01010dd8    00000006     sysbios.aem4 : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_doTaskRestore__I)
                      01010dde    00000002     --HOLE-- [fill = 0]
                      01010de0    00000006                  : BIOS.obj (.text:ti_sysbios_family_arm_m3_Hwi_restoreFxn__E)
                      01010de6    00000002     --HOLE-- [fill = 0]
                      01010de8    00000006                  : BIOS.obj (.text:ti_sysbios_gates_GateHwi_leave__E)
                      01010dee    00000002     --HOLE-- [fill = 0]
                      01010df0    00000006                  : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_isBlocking__E)
                      01010df6    00000002     --HOLE-- [fill = 0]
                      01010df8    00000006                  : BIOS.obj (.text:ti_sysbios_knl_Clock_stop__E)
                      01010dfe    00000002     --HOLE-- [fill = 0]
                      01010e00    00000006                  : BIOS.obj (.text:ti_sysbios_knl_Queue_Instance_init__E)
                      01010e06    00000002     --HOLE-- [fill = 0]
                      01010e08    00000006                  : BIOS.obj (.text:ti_sysbios_knl_Swi_startup__E)
                      01010e0e    00000002     --HOLE-- [fill = 0]
                      01010e10    00000006                  : BIOS.obj (.text:xdc_runtime_System_Module_startup__E)
                      01010e16    00000002     --HOLE-- [fill = 0]
                      01010e18    00000004                  : BIOS.obj (.text:__aeabi_errno_addr)
                      01010e1c    00000004     --HOLE-- [fill = 0]
                      01010e20    00000004                  : BIOS.obj (.text:ti_sysbios_family_arm_m3_Timer_getMaxTicks__E)
                      01010e24    00000004     --HOLE-- [fill = 0]
                      01010e28    00000004                  : BIOS.obj (.text:ti_sysbios_gates_GateHwi_query__E)
                      01010e2c    00000004     --HOLE-- [fill = 0]
                      01010e30    00000004                  : BIOS.obj (.text:ti_sysbios_gates_GateMutex_query__E)
                      01010e34    00000004     --HOLE-- [fill = 0]
                      01010e38    00000004                  : BIOS.obj (.text:ti_sysbios_knl_Clock_setTimeout__E)
                      01010e3c    00000004     --HOLE-- [fill = 0]
                      01010e40    00000004                  : BIOS.obj (.text:ti_sysbios_knl_Task_startup__E)
                      01010e44    00000004     --HOLE-- [fill = 0]
                      01010e48    00000002                  : BIOS.obj (.text:ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E)
                      01010e4a    00000006     --HOLE-- [fill = 0]
                      01010e50    00000002                  : BIOS.obj (.text:ti_sysbios_gates_GateHwi_Instance_init__E)
                      01010e52    00000006     --HOLE-- [fill = 0]
                      01010e58    00000002                  : BIOS.obj (.text:ti_sysbios_knl_Clock_logTick__E)
                      01010e5a    00000006     --HOLE-- [fill = 0]
                      01010e60    00000002                  : BIOS.obj (.text:xdc_runtime_SysCallback_defaultAbort)
                      01010e62    00000006     --HOLE-- [fill = 0]
                      01010e68    00000002                  : BIOS.obj (.text:xdc_runtime_SysCallback_defaultExit)
                      01010e6a    00000006     --HOLE-- [fill = 0]
                      01010e70    00000002                  : BIOS.obj (.text:xdc_runtime_System_abortSpin__E)
                      01010e72    00000006     --HOLE-- [fill = 0]
                      01010e78    00000002                  : BIOS.obj (.text:xdc_runtime_System_exitSpin__E)
    
    .const     0    01010e7c    00000cdc     
                      01010e7c    00000101     rtsv7M4_T_le_eabi.lib : ctype.c.obj (.const:.string:_ctypes_)
                      01010f7d    00000001     release_pem4.oem4 (.const:ti_sysbios_knl_Clock_tickMode__C)
                      01010f7e    00000002     release_pem4.oem4 (.const:ti_sysbios_family_arm_m3_Hwi_Module__id__C)
                      01010f80    00000100     driverlib.a : pin.obj (.const:g_ulPinToPadMap)
                      01011080    000000a8                 : prcm.obj (.const:PRCM_PeriphRegsList)
                      01011128    00000078     ti_drivers_config.obj (.const:spiCC32XXDMAHWAttrs)
                      010111a0    00000070     simplelink.a : driver.obj (.const:OpcodeTranslateTable)
                      01011210    00000050                  : driver.obj (.const:_SlActionLookupTable)
                      01011260    00000040     ti_drivers_config.obj (.const:PowerCC32XX_config)
                      010112a0    0000003c     release_pem4.oem4 (.const:ti_sysbios_knl_Task_Object__PARAMS__C)
                      010112dc    00000030     release_pem4.oem4 (.const:ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C)
                      0101130c    00000028     drivers_cc32xx.aem4 : UARTCC32XX.oem4 (.const:UARTCC32XX_fxnTable)
                      01011334    00000028     release_pem4.oem4 (.const:ti_sysbios_heaps_HeapMem_Module__FXNS__C)
                      0101135c    00000027     uartI2C.obj (.const:.string:$P$T3$2)
                      01011383    00000001     release_pem4.oem4 (.const:ti_sysbios_knl_Clock_tickSource__C)
                      01011384    00000024     drivers_cc32xx.aem4 : UART.oem4 (.const:UART_defaultParams)
                      010113a8    00000024     release_pem4.oem4 (.const:ti_sysbios_gates_GateHwi_Module__FXNS__C)
                      010113cc    00000024     release_pem4.oem4 (.const:ti_sysbios_gates_GateMutex_Module__FXNS__C)
                      010113f0    00000024     release_pem4.oem4 (.const:ti_sysbios_heaps_HeapMem_Object__PARAMS__C)
                      01011414    00000024     release_pem4.oem4 (.const:ti_sysbios_knl_Clock_Object__PARAMS__C)
                      01011438    00000024     release_pem4.oem4 (.const:ti_sysbios_knl_Semaphore_Object__PARAMS__C)
                      0101145c    00000024     ti_drivers_config.obj (.const:uartCC32XXHWAttrs0)
                      01011480    00000024     ti_drivers_config.obj (.const:uartCC32XXHWAttrs1)
                      010114a4    00000021     drivers_cc32xx.aem4 : GPIOCC32XX.oem4 (.const:.string:pinTable)
                      010114c5    00000001     release_pem4.oem4 (.const:xdc_runtime_Error_policy__C)
                      010114c6    00000002     release_pem4.oem4 (.const:ti_sysbios_family_arm_m3_Timer_Module__id__C)
                      010114c8    00000020     simplelink.a : driver.obj (.const:RxMsgClassLUT)
                      010114e8    00000020     drivers_cc32xx.aem4 : SPI.oem4 (.const:SPI_defaultParams)
                      01011508    00000020     simplelink.a : device.obj (.const:StartResponseLUT)
                      01011528    00000020     drivers_cc32xx.aem4 : TimerCC32XX.oem4 (.const:TimerCC32XX_fxnTable)
                      01011548    00000020                         : UARTCC32XX.oem4 (.const:staticFxnTable)
                      01011568    00000020     release_pem4.oem4 (.const:ti_sysbios_family_arm_m3_Hwi_Object__DESC__C)
                      01011588    00000020     release_pem4.oem4 (.const:ti_sysbios_gates_GateHwi_Object__DESC__C)
                      010115a8    00000020     release_pem4.oem4 (.const:ti_sysbios_gates_GateMutex_Object__DESC__C)
                      010115c8    00000020     release_pem4.oem4 (.const:ti_sysbios_heaps_HeapMem_Object__DESC__C)
                      010115e8    00000020     release_pem4.oem4 (.const:ti_sysbios_knl_Clock_Object__DESC__C)
                      01011608    00000020     release_pem4.oem4 (.const:ti_sysbios_knl_Queue_Object__DESC__C)
                      01011628    00000020     release_pem4.oem4 (.const:ti_sysbios_knl_Semaphore_Object__DESC__C)
                      01011648    00000020     release_pem4.oem4 (.const:ti_sysbios_knl_Task_Object__DESC__C)
                      01011668    00000020     ti_drivers_config.obj (.const:timerCC32XXHWAttrs)
                      01011688    00000020     release_pem4.oem4 (.const:xdc_runtime_Startup_sfxnTab__A)
                      010116a8    0000001a     uartI2C.obj (.const:.string:$P$T7$6)
                      010116c2    00000019     uartI2C.obj (.const:.string:$P$T5$4)
                      010116db    00000019     uartI2C.obj (.const:.string:$P$T6$5)
                      010116f4    00000018     drivers_cc32xx.aem4 : I2CCC32XX.oem4 (.const:I2CCC32XX_fxnTable)
                      0101170c    00000018                         : SPICC32XXDMA.oem4 (.const:SPICC32XXDMA_fxnTable)
                      01011724    00000018     ti_drivers_config.obj (.const:SPI_config)
                      0101173c    00000018     ti_drivers_config.obj (.const:Timer_config)
                      01011754    00000018     ti_drivers_config.obj (.const:UART_config)
                      0101176c    00000018     release_pem4.oem4 (.const:ti_sysbios_gates_GateHwi_Object__PARAMS__C)
                      01011784    00000018     release_pem4.oem4 (.const:ti_sysbios_gates_GateMutex_Object__PARAMS__C)
                      0101179c    00000018     release_pem4.oem4 (.const:ti_sysbios_knl_Queue_Object__PARAMS__C)
                      010117b4    00000018     release_pem4.oem4 (.const:ti_sysbios_knl_Task_hooks__A)
                      010117cc    00000017     uartI2C.obj (.const:.string:$P$T4$3)
                      010117e3    00000016     uartI2C.obj (.const:.string:$P$T2$1)
                      010117f9    00000001     --HOLE-- [fill = 0]
                      010117fa    00000002     release_pem4.oem4 (.const:ti_sysbios_heaps_HeapMem_Module__id__C)
                      010117fc    00000014     simplelink.a : cc_pal.obj (.const:$P$T0$1)
                      01011810    00000014                  : device.obj (.const:$P$T0$1)
                      01011824    00000014                  : driver.obj (.const:$P$T0$1)
                      01011838    00000014                  : fs.obj (.const:$P$T0$1)
                      0101184c    00000014                  : cc_pal.obj (.const:$P$T1$2)
                      01011860    00000014                  : driver.obj (.const:$P$T2$3)
                      01011874    00000014     ti_drivers_config.obj (.const:GPIOCC32XX_config)
                      01011888    00000014     slnetifwifi.a : slnetifwifi.obj (.const:StartSecOptName)
                      0101189c    00000014     drivers_cc32xx.aem4 : GPIOCC32XX.oem4 (.const:gpioBaseAddresses)
                      010118b0    00000014                         : UARTCC32XX.oem4 (.const:parityType)
                      010118c4    00000014                         : GPIOCC32XX.oem4 (.const:powerResources)
                      010118d8    00000010                         : I2C.oem4 (.const:I2C_defaultParams)
                      010118e8    00000010     simplelink.a : sl_socket.obj (.const:_SlCtrlSockAddr)
                      010118f8    00000010                  : sl_socket.obj (.const:_SlCtrlSockRelease)
                      01011908    00000010     drivers_cc32xx.aem4 : UARTCC32XX.oem4 (.const:dataLength)
                      01011918    00000010     ti_drivers_config.obj (.const:i2cCC32XXHWAttrs)
                      01011928    00000010     slnetifwifi.a : slnetifwifi.obj (.const:socketType)
                      01011938    00000010     ti_drivers_config.obj (.const)
                      01011948    00000010     release_pem4.oem4 (.const:xdc_runtime_Startup_sfxnRts__A)
                      01011958    0000000c     platform.obj (.const:$P$T0$1)
                      01011964    0000000c     ti_drivers_config.obj (.const:I2C_config)
                      01011970    0000000c     drivers_cc32xx.aem4 : Timer.oem4 (.const:defaultParams)
                      0101197c    0000000c                         : SPICC32XXDMA.oem4 (.const:dmaNullConfig)
                      01011988    0000000c                         : SPICC32XXDMA.oem4 (.const:dmaRxConfig)
                      01011994    0000000c                         : SPICC32XXDMA.oem4 (.const:dmaTxConfig)
                      010119a0    0000000c     ti_drivers_config.obj (.const:udmaCC3220SHWAttrs)
                      010119ac    0000000c     release_pem4.oem4 (.const:xdc_runtime_Startup_firstFxns__A)
                      010119b8    00000008     ti_drivers_config.obj (.const:UDMACC32XX_config)
                      010119c0    00000008     simplelink.a : driver.obj (.const:g_H2NCnysPattern)
                      010119c8    00000008                  : driver.obj (.const:g_H2NSyncPattern)
                      010119d0    00000008     drivers_cc32xx.aem4 : SPICC32XXDMA.oem4 (.const:mode)
                      010119d8    00000008                         : GPIOCC32XX.oem4 (.const:outPinTypes)
                      010119e0    00000008                         : UARTCC32XX.oem4 (.const:stopBits)
                      010119e8    00000008     release_pem4.oem4 (.const:ti_sysbios_knl_Idle_funcList__A)
                      010119f0    00000008     release_pem4.oem4 (.const:ti_sysbios_knl_Idle_funcList__C)
                      010119f8    00000008     release_pem4.oem4 (.const:ti_sysbios_knl_Task_hooks__C)
                      01011a00    00000008     release_pem4.oem4 (.const:xdc_runtime_Startup_firstFxns__C)
                      01011a08    00000008     release_pem4.oem4 (.const:xdc_runtime_Startup_lastFxns__C)
                      01011a10    00000006     drivers_cc32xx.aem4 : GPIOCC32XX.oem4 (.const:.string:interruptType)
                      01011a16    00000006                         : GPIOCC32XX.oem4 (.const:inPinTypes)
                      01011a1c    00000006                         : GPIOCC32XX.oem4 (.const:outPinStrengths)
                      01011a22    00000004     simplelink.a : sl_socket.obj (.const:$P$T0$1)
                      01011a26    00000004                  : wlan.obj (.const:$P$T0$1)
                      01011a2a    00000004                  : sl_socket.obj (.const:$P$T1$2)
                      01011a2e    00000004                  : sl_socket.obj (.const:$P$T2$3)
                      01011a32    00000004     drivers_cc32xx.aem4 : GPIOCC32XX.oem4 (.const:.string:portInterruptIds)
                      01011a36    00000004     simplelink.a : sl_socket.obj (.const:_SlAcceptCmdCtrl)
                      01011a3a    00000004                  : fs.obj (.const:_SlFsCloseCmdCtrl)
                      01011a3e    00000004                  : fs.obj (.const:_SlFsOpenCmdCtrl)
                      01011a42    00000004                  : fs.obj (.const:_SlFsWriteCmdCtrl)
                      01011a46    00000004                  : netapp.obj (.const:_SlGetHostByNameCtrl)
                      01011a4a    00000004                  : sl_socket.obj (.const:_SlGetSockOptCmdCtrl)
                      01011a4e    00000004                  : sl_socket.obj (.const:_SlListenCmdCtrl)
                      01011a52    00000004                  : netapp.obj (.const:_SlNetAppSendResponseCmdCtrl)
                      01011a56    00000004                  : netapp.obj (.const:_SlNetAppSendTokenValueCmdCtrl)
                      01011a5a    00000004                  : netcfg.obj (.const:_SlNetCfgGetCmdCtrl)
                      01011a5e    00000004                  : wlan.obj (.const:_SlPolicySetCmdCtrl)
                      01011a62    00000004                  : sl_socket.obj (.const:_SlRecvCmdCtrl)
                      01011a66    00000004                  : sl_socket.obj (.const:_SlRecvfomCmdCtrl)
                      01011a6a    00000004                  : sl_socket.obj (.const:_SlSelectCmdCtrl)
                      01011a6e    00000004                  : sl_socket.obj (.const:_SlSendCmdCtrl)
                      01011a72    00000004                  : sl_socket.obj (.const:_SlSetSockOptCmdCtrl)
                      01011a76    00000004                  : sl_socket.obj (.const:_SlSockCloseCmdCtrl)
                      01011a7a    00000004                  : sl_socket.obj (.const:_SlSockSocketCmdCtrl)
                      01011a7e    00000004                  : device.obj (.const:_SlStopCmdCtrl)
                      01011a82    00000004                  : wlan.obj (.const:_SlWlanCfgGetCmdCtrl)
                      01011a86    00000004                  : wlan.obj (.const:_SlWlanGetNetworkListCtrl)
                      01011a8a    00000004                  : wlan.obj (.const:_SlWlanSetModeCmdCtrl)
                      01011a8e    00000002     release_pem4.oem4 (.const:xdc_runtime_Memory_Module__id__C)
                      01011a90    00000004     release_pem4.oem4 (.const:ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C)
                      01011a94    00000004     release_pem4.oem4 (.const:ti_sysbios_family_arm_m3_Hwi_E_badIntNum__C)
                      01011a98    00000004     release_pem4.oem4 (.const:ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C)
                      01011a9c    00000004     release_pem4.oem4 (.const:ti_sysbios_family_arm_m3_Hwi_Object__count__C)
                      01011aa0    00000004     release_pem4.oem4 (.const:ti_sysbios_family_arm_m3_Hwi_ccr__C)
                      01011aa4    00000004     release_pem4.oem4 (.const:ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C)
                      01011aa8    00000004     release_pem4.oem4 (.const:ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C)
                      01011aac    00000004     release_pem4.oem4 (.const:ti_sysbios_family_arm_m3_Hwi_priGroup__C)
                      01011ab0    00000004     release_pem4.oem4 (.const:ti_sysbios_family_arm_m3_Hwi_swiDisable__C)
                      01011ab4    00000004     release_pem4.oem4 (.const:ti_sysbios_family_arm_m3_Hwi_swiRestore__C)
                      01011ab8    00000004     release_pem4.oem4 (.const:ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C)
                      01011abc    00000004     release_pem4.oem4 (.const:ti_sysbios_family_arm_m3_Timer_E_cannotSupport__C)
                      01011ac0    00000004     release_pem4.oem4 (.const:ti_sysbios_family_arm_m3_Timer_startupNeeded__C)
                      01011ac4    00000004     release_pem4.oem4 (.const:ti_sysbios_gates_GateMutex_Instance_State_sem__O)
                      01011ac8    00000004     release_pem4.oem4 (.const:ti_sysbios_heaps_HeapMem_E_memory__C)
                      01011acc    00000004     release_pem4.oem4 (.const:ti_sysbios_heaps_HeapMem_Module__gateObj__C)
                      01011ad0    00000004     release_pem4.oem4 (.const:ti_sysbios_heaps_HeapMem_Object__count__C)
                      01011ad4    00000004     release_pem4.oem4 (.const:ti_sysbios_heaps_HeapMem_primaryHeapBaseAddr__C)
                      01011ad8    00000004     release_pem4.oem4 (.const:ti_sysbios_heaps_HeapMem_primaryHeapEndAddr__C)
                      01011adc    00000004     release_pem4.oem4 (.const:ti_sysbios_heaps_HeapMem_reqAlign__C)
                      01011ae0    00000004     release_pem4.oem4 (.const:ti_sysbios_knl_Clock_Module_State_clockQ__O)
                      01011ae4    00000004     release_pem4.oem4 (.const:ti_sysbios_knl_Clock_tickPeriod__C)
                      01011ae8    00000004     release_pem4.oem4 (.const:ti_sysbios_knl_Mailbox_Instance_State_freeQue__O)
                      01011aec    00000004     release_pem4.oem4 (.const:ti_sysbios_knl_Mailbox_Object__count__C)
                      01011af0    00000004     release_pem4.oem4 (.const:ti_sysbios_knl_Mailbox_maxTypeAlign__C)
                      01011af4    00000004     release_pem4.oem4 (.const:ti_sysbios_knl_Semaphore_Instance_State_pendQ__O)
                      01011af8    00000004     release_pem4.oem4 (.const:ti_sysbios_knl_Swi_Object__count__C)
                      01011afc    00000004     release_pem4.oem4 (.const:ti_sysbios_knl_Task_Module_State_inactiveQ__O)
                      01011b00    00000004     release_pem4.oem4 (.const:ti_sysbios_knl_Task_Object__count__C)
                      01011b04    00000004     release_pem4.oem4 (.const:ti_sysbios_knl_Task_Object__heap__C)
                      01011b08    00000004     release_pem4.oem4 (.const:ti_sysbios_knl_Task_allBlockedFunc__C)
                      01011b0c    00000004     release_pem4.oem4 (.const:ti_sysbios_knl_Task_defaultStackHeap__C)
                      01011b10    00000004     release_pem4.oem4 (.const:ti_sysbios_knl_Task_defaultStackSize__C)
                      01011b14    00000004     release_pem4.oem4 (.const:ti_sysbios_knl_Task_numConstructedTasks__C)
                      01011b18    00000004     release_pem4.oem4 (.const:xdc_runtime_Error_E_memory__C)
                      01011b1c    00000004     release_pem4.oem4 (.const:xdc_runtime_Error_policyFxn__C)
                      01011b20    00000004     release_pem4.oem4 (.const:xdc_runtime_IGateProvider_Interface__BASE__C)
                      01011b24    00000004     release_pem4.oem4 (.const:xdc_runtime_IHeap_Interface__BASE__C)
                      01011b28    00000004     release_pem4.oem4 (.const:xdc_runtime_IModule_Interface__BASE__C)
                      01011b2c    00000004     release_pem4.oem4 (.const:xdc_runtime_Memory_defaultHeapInstance__C)
                      01011b30    00000004     release_pem4.oem4 (.const:xdc_runtime_Startup_execImpl__C)
                      01011b34    00000004     release_pem4.oem4 (.const:xdc_runtime_Startup_maxPasses__C)
                      01011b38    00000004     release_pem4.oem4 (.const:xdc_runtime_Startup_sfxnRts__C)
                      01011b3c    00000004     release_pem4.oem4 (.const:xdc_runtime_Startup_sfxnTab__C)
                      01011b40    00000004     release_pem4.oem4 (.const:xdc_runtime_SysCallback_abortFxn__C)
                      01011b44    00000004     release_pem4.oem4 (.const:xdc_runtime_SysCallback_exitFxn__C)
                      01011b48    00000004     release_pem4.oem4 (.const:xdc_runtime_System_Module__gateObj__C)
                      01011b4c    00000004     release_pem4.oem4 (.const:xdc_runtime_System_abortFxn__C)
                      01011b50    00000004     release_pem4.oem4 (.const:xdc_runtime_System_exitFxn__C)
                      01011b54    00000004     release_pem4.oem4 (.const:xdc_runtime_System_maxAtexitHandlers__C)
    
    .cinit     0    01011b58    000002c8     
                      01011b58    000002a3     (.cinit..data.load) [load image, compression = lzss]
                      01011dfb    00000001     --HOLE-- [fill = 0]
                      01011dfc    0000000c     (__TI_handler_table)
                      01011e08    00000008     (.cinit..bss.load) [load image, compression = zero_init]
                      01011e10    00000010     (__TI_cinit_table)
    
    .init_array 
    *          0    01000800    00000000     UNINITIALIZED
    
    .bss       0    20008400    00001881     UNINITIALIZED
                      20008400    00000528     (.common:netEntries)
                      20008928    00000200     release_pem4.oem4 (.bss:taskStackSection)
                      20008b28    00000088     (.common:spiCC32XXDMAObjects)
                      20008bb0    0000004c     (.common:i2cCC32XXObjects)
                      20008bfc    00000004     drivers_cc32xx.aem4 : GPIOCC32XX.oem4 (.bss)
                      20008c00    00000400     ti_drivers_config.obj (.bss:dmaControlTable)
                      20009000    000003fc     (.common:g_CB)
                      200093fc    0000030c     (.common:ti_sysbios_family_arm_m3_Hwi_dispatchTable)
                      20009708    0000012c     (.common:PowerCC32XX_contextSave)
                      20009834    00000100     (.common:buffer_read_UART1)
                      20009934    00000084     (.common:uartCC32XXObjects0)
                      200099b8    00000084     (.common:uartCC32XXObjects1)
                      20009a3c    00000080     slnetsock_release.a : slnetsock.oem4 (.bss:VirtualSockets)
                      20009abc    00000068     (.common:timerCC32XXObjects)
                      20009b24    0000002c     (.common:GlobalLockObj)
                      20009b50    00000028     (.common:g_SlInternalSpawnCB)
                      20009b78    00000020     drivers_cc32xx.aem4 : GPIOCC32XX.oem4 (.bss:gpioCallbackInfo)
                      20009b98    00000020     ti_drivers_config.obj (.bss:uartCC32XXRingBuffer0)
                      20009bb8    00000020     ti_drivers_config.obj (.bss:uartCC32XXRingBuffer1)
                      20009bd8    0000001c     rtsv7M4_T_le_eabi.lib : vla_alloc.c.obj (.bss:$O1$$)
                      20009bf4    0000001c     slnetsock_release.a : slnetsock.oem4 (.bss:VirtualSocketSem)
                      20009c10    00000014     drivers_cc32xx.aem4 : UDMACC32XX.oem4 (.bss:postNotifyObj)
                      20009c24    00000014                         : GPIOCC32XX.oem4 (.bss:powerNotifyObj)
                      20009c38    0000000c     (.common:DeviceCB)
                      20009c44    0000000c     (.common:Msg)
                      20009c50    00000008     (.common:spiCC32XXSDMAscratchBuf)
                      20009c58    00000008     (.common:udmaCC3220SObject)
                      20009c60    00000004                         : TimerCC32XX.oem4 (.bss:timerState)
                      20009c64    00000004     (.common:display)
                      20009c68    00000004     (.common:mode)
                      20009c6c    00000004     (.common:number_read_bytes)
                      20009c70    00000004     (.common:number_read_bytes1)
                      20009c74    00000004     (.common:ti_sysbios_knl_Task_Instance_State_0_hookEnv__A)
                      20009c78    00000004     (.common:uart)
                      20009c7c    00000004     (.common:uart1)
                      20009c80    00000001     (.common:RxIrqCnt)
    
    .data      0    20009c84    00000818     UNINITIALIZED
                      20009c84    0000016c     drivers_cc32xx.aem4 : PowerCC32XX.oem4 (.data:PowerCC32XX_module)
                      20009df0    000000f8     ti_drivers_config.obj (.data:parkInfo)
                      20009ee8    00000088     sysbios.aem4 : BIOS.obj (.data:$O1$$)
                      20009f70    00000080     release_pem4.oem4 (.data:ti_sysbios_knl_Swi_Module_State_0_readyQ__A)
                      20009ff0    00000080     release_pem4.oem4 (.data:ti_sysbios_knl_Task_Module_State_0_readyQ__A)
                      2000a070    00000058     slnetifwifi.a : slnetifwifi.obj (.data:SlNetIfConfigWifi)
                      2000a0c8    00000054     release_pem4.oem4 (.data:ti_sysbios_gates_GateMutex_Object__table__V)
                      2000a11c    0000004c     release_pem4.oem4 (.data:ti_sysbios_knl_Task_Object__table__V)
                      2000a168    0000004a     uartI2C.obj (.data)
                      2000a1b2    00000002     uartI2C.obj (.data:packet_button)
                      2000a1b4    00000044     release_pem4.oem4 (.data:ti_sysbios_knl_Task_Module__state__V)
                      2000a1f8    00000034     release_pem4.oem4 (.data:ti_sysbios_family_arm_m3_Hwi_Module__state__V)
                      2000a22c    00000030     release_pem4.oem4 (.data:ti_sysbios_family_arm_m3_Timer_Object__table__V)
                      2000a25c    00000030     release_pem4.oem4 (.data:ti_sysbios_knl_Swi_Object__table__V)
                      2000a28c    0000002c     release_pem4.oem4 (.data:ti_sysbios_knl_Clock_Module__state__V)
                      2000a2b8    00000024     simplelink.a : eventreg.obj (.data:g_LibsEvents)
                      2000a2dc    00000024                  : eventreg.obj (.data:g_UserEvents)
                      2000a300    00000024     release_pem4.oem4 (.data:ti_sysbios_BIOS_Module__state__V)
                      2000a324    00000020     platform.obj (.data:ssid_connected)
                      2000a344    00000020     release_pem4.oem4 (.data:xdc_runtime_Error_IgnoreBlock)
                      2000a364    0000001c     release_pem4.oem4 (.data:ti_sysbios_knl_Swi_Module__state__V)
                      2000a380    00000018     release_pem4.oem4 (.data:ti_sysbios_family_arm_m3_Hwi_Object__table__V)
                      2000a398    00000018     release_pem4.oem4 (.data:ti_sysbios_heaps_HeapMem_Object__table__V)
                      2000a3b0    00000014     release_pem4.oem4 (.data:ti_sysbios_family_arm_cc32xx_Seconds_Module__state__V)
                      2000a3c4    0000000c     simplelink.a : driver.obj (.data)
                      2000a3d0    0000000c     release_pem4.oem4 (.data:ti_sysbios_family_arm_m3_Timer_Module__state__V)
                      2000a3dc    00000009     drivers_cc32xx.aem4 : GPIOCC32XX.oem4 (.data)
                      2000a3e5    00000001                         : I2C.oem4 (.data)
                      2000a3e6    00000002     release_pem4.oem4 (.data:ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A)
                      2000a3e8    00000008     rtsv7M4_T_le_eabi.lib : _lock.c.obj (.data:$O1$$)
                      2000a3f0    00000008     drivers_cc32xx.aem4 : UDMACC32XX.oem4 (.data)
                      2000a3f8    00000008     ti_drivers_config.obj (.data:gpioCallbackFunctions)
                      2000a400    00000008     ti_drivers_config.obj (.data:gpioPinConfigs)
                      2000a408    00000008     release_pem4.oem4 (.data:ti_sysbios_family_arm_m3_Hwi_Module__root__V)
                      2000a410    00000008     release_pem4.oem4 (.data:ti_sysbios_gates_GateHwi_Module__root__V)
                      2000a418    00000008     release_pem4.oem4 (.data:ti_sysbios_gates_GateMutex_Module__root__V)
                      2000a420    00000008     release_pem4.oem4 (.data:ti_sysbios_heaps_HeapMem_Module__root__V)
                      2000a428    00000008     release_pem4.oem4 (.data:ti_sysbios_knl_Clock_Module__root__V)
                      2000a430    00000008     release_pem4.oem4 (.data:ti_sysbios_knl_Queue_Module__root__V)
                      2000a438    00000008     release_pem4.oem4 (.data:ti_sysbios_knl_Semaphore_Module__root__V)
                      2000a440    00000008     release_pem4.oem4 (.data:ti_sysbios_knl_Task_Module__root__V)
                      2000a448    00000008     release_pem4.oem4 (.data:xdc_runtime_Startup_Module__state__V)
                      2000a450    00000008     release_pem4.oem4 (.data:xdc_runtime_System_Module_State_0_atexitHandlers__A)
                      2000a458    00000008     release_pem4.oem4 (.data:xdc_runtime_System_Module__state__V)
                      2000a460    00000007     uartI2C.obj (.data:MAGIC_HEADER)
                      2000a467    00000001     drivers_cc32xx.aem4 : SPI.oem4 (.data)
                      2000a468    00000007     platform.obj (.data)
                      2000a46f    00000006     platform.obj (.data:bssid_connected)
                      2000a475    00000001     drivers_cc32xx.aem4 : Timer.oem4 (.data)
                      2000a476    00000001                         : UART.oem4 (.data)
                      2000a477    00000001     slnetsock_release.a : slnetsock.oem4 (.data)
                      2000a478    00000004     rtsv7M4_T_le_eabi.lib : stkdepth_vars.c.obj (.data)
                      2000a47c    00000004     simplelink.a : cc_pal.obj (.data)
                      2000a480    00000004     slnetsock_release.a : slnetif.oem4 (.data)
                      2000a484    00000004     release_pem4.oem4 (.data:ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A)
                      2000a488    00000004     release_pem4.oem4 (.data:ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A)
                      2000a48c    00000004     release_pem4.oem4 (.data:ti_sysbios_gates_GateHwi_Object__table__V)
                      2000a490    00000004     release_pem4.oem4 (.data:ti_sysbios_knl_Task_Module_State_0_idleTask__A)
                      2000a494    00000004     release_pem4.oem4 (.data:ti_sysbios_rts_ti_ReentSupport_Module__state__V)
                      2000a498    00000004     release_pem4.oem4 (.data:xdc_runtime_Memory_Module__state__V)
    
    .priheap   0    20000310    00008000     UNINITIALIZED
                      20000310    00008000     --HOLE--
    
    .stack     0    2003fc00    00000400     UNINITIALIZED
                      2003fc00    00000400     --HOLE--
    
    .bootVecs 
    *          0    00000000    00000008     DSECT
                      00000000    00000008     boot.aem4 : boot.oem4 (.bootVecs)
    
    .resetVecs 
    *          0    01000800    0000003c     
                      01000800    0000003c     release_pem4.oem4 (.resetVecs)
    
    .vecs      0    20000000    0000030c     NOLOAD SECTION
                      20000000    0000030c     release_pem4.oem4 (.vecs)
    
    xdc.meta   0    00000000    00000105     COPY SECTION
                      00000000    00000105     release_pem4.oem4 (xdc.meta)
    
    xdc.noload 
    *          0    00000000    00000000     COPY SECTION
    
    .binit     0    01000000    00000000     
    
    MODULE SUMMARY
    
           Module                       code    ro data   rw data
           ------                       ----    -------   -------
        .\
           uartI2C.obj                  2984    160       1675   
           platform.obj                 1332    12        53     
           main_tirtos.obj              188     0         0      
        +--+----------------------------+-------+---------+---------+
           Total:                       4504    172       1728   
                                                                 
        .\syscfg\
           ti_drivers_config.obj        34      444       1948   
           ti_net_config.obj            68      0         0      
        +--+----------------------------+-------+---------+---------+
           Total:                       102     444       1948   
                                                                 
        C:\Users\azografou\workspace_v9\tirtos_builds_CC3235SF_LAUNCHXL_release_ccs\Debug\configPkg\package\cfg\
           release_pem4.oem4            1732    1051      3042   
        +--+----------------------------+-------+---------+---------+
           Total:                       1732    1051      3042   
                                                                 
        C:/ti/simplelink_cc32xx_sdk_4_20_00_07/kernel/tirtos/packages/ti/dpl/lib/dpl_cc32xx.aem4
           PowerCC32XX_tirtos.oem4      430     0         0      
           SemaphoreP_tirtos.oem4       146     0         0      
           ClockP_tirtos.oem4           114     0         0      
           HwiP_tirtos.oem4             108     0         0      
        +--+----------------------------+-------+---------+---------+
           Total:                       798     0         0      
                                                                 
        C:/ti/simplelink_cc32xx_sdk_4_20_00_07/source/ti/devices/cc32xx/driverlib/ccs/Release/driverlib.a
           prcm.obj                     1772    168       0      
           pin.obj                      280     256       0      
           i2c.obj                      318     0         0      
           timer.obj                    264     0         0      
           flash.obj                    72      0         0      
           uart.obj                     48      0         0      
           udma.obj                     24      0         0      
           utils.obj                    6       0         0      
        +--+----------------------------+-------+---------+---------+
           Total:                       2784    424       0      
                                                                 
        C:/ti/simplelink_cc32xx_sdk_4_20_00_07/source/ti/display/lib/display.aem4
           Display.oem4                 42      0         0      
        +--+----------------------------+-------+---------+---------+
           Total:                       42      0         0      
                                                                 
        C:/ti/simplelink_cc32xx_sdk_4_20_00_07/source/ti/drivers/lib/drivers_cc32xx.aem4
           UARTCC32XX.oem4              3458    116       0      
           PowerCC32XX.oem4             2372    0         664    
           SPICC32XXDMA.oem4            2118    68        0      
           I2CCC32XX.oem4               1770    24        0      
           GPIOCC32XX.oem4              1364    103       65     
           TimerCC32XX.oem4             1132    32        4      
           UDMACC32XX.oem4              270     0         28     
           UART.oem4                    176     36        1      
           SPI.oem4                     172     32        1      
           I2C.oem4                     182     16        1      
           RingBuf.oem4                 198     0         0      
           Timer.oem4                   158     12        1      
           PowerCC32XX_asm.oem4         150     0         0      
           List.oem4                    76      0         0      
        +--+----------------------------+-------+---------+---------+
           Total:                       13596   439       765    
                                                                 
        C:/ti/simplelink_cc32xx_sdk_4_20_00_07/source/ti/drivers/net/wifi/ccs/rtos/simplelink.a
           driver.obj                   12728   280       1077   
           sl_socket.obj                7014    84        12     
           netapp.obj                   2086    12        0      
           device.obj                   1542    56        12     
           wlan.obj                     1168    20        0      
           cc_pal.obj                   1052    40        4      
           fs.obj                       924     32        0      
           eventreg.obj                 880     0         72     
           spawn.obj                    264     0         40     
           netcfg.obj                   192     4         0      
           netutil.obj                  180     0         0      
           flowcont.obj                 40      0         0      
        +--+----------------------------+-------+---------+---------+
           Total:                       28070   528       1217   
                                                                 
        C:/ti/simplelink_cc32xx_sdk_4_20_00_07/source/ti/drivers/net/wifi/slnetif/ccs/Release/slnetifwifi.a
           slnetifwifi.obj              1458    36        88     
        +--+----------------------------+-------+---------+---------+
           Total:                       1458    36        88     
                                                                 
        C:/ti/simplelink_cc32xx_sdk_4_20_00_07/source/ti/net/lib/ccs/m4/slnetsock_release.a
           slnetsock.oem4               712     0         157    
           slnetutils.oem4              538     0         0      
           slnetif.oem4                 444     0         4      
           errnoutil.oem4               288     0         0      
           socket.oem4                  70      0         0      
        +--+----------------------------+-------+---------+---------+
           Total:                       2052    0         161    
                                                                 
        C:\Users\azografou\workspace_v9\tirtos_builds_CC3235SF_LAUNCHXL_release_ccs\src\sysbios\sysbios.aem4
           BIOS.obj                     9456    0         136    
           m3_Hwi_asm.obj               270     0         0      
           m3_TaskSupport_asm.obj       108     0         0      
           m3_Hwi_asm_switch.obj        102     0         0      
        +--+----------------------------+-------+---------+---------+
           Total:                       9936    0         136    
                                                                 
        C:\ti\ccs930\ccs\tools\compiler\ti-cgt-arm_18.12.6.LTS\lib\rtsv7M4_T_le_eabi.lib
           vla_alloc.c.obj              548     0         28     
           strtoul.c.obj                272     0         0      
           ctype.c.obj                  0       257       0      
           memcpy_t2.asm.obj            156     0         0      
           ull_div_t2.asm.obj           150     0         0      
           memset_t2.asm.obj            122     0         0      
           copy_decompress_lzss.c.obj   104     0         0      
           cpy_tbl.c.obj                76      0         0      
           _lock.c.obj                  26      0         8      
           args_main.c.obj              24      0         0      
           ll_mul_t2.asm.obj            24      0         0      
           strcpy.c.obj                 20      0         0      
           strlen.c.obj                 20      0         0      
           copy_decompress_none.c.obj   14      0         0      
           copy_zero_init.c.obj         12      0         0      
           error.c.obj                  4       0         0      
           exit.c.obj                   4       0         0      
           stkdepth_vars.c.obj          0       0         4      
           div0.asm.obj                 2       0         0      
        +--+----------------------------+-------+---------+---------+
           Total:                       1578    257       40     
                                                                 
        C:\ti\simplelink_cc32xx_sdk_4_20_00_07\kernel\tirtos\packages\ti\targets\arm\rtsarm\lib\auto_init.aem4
           auto_init.oem4               160     0         0      
        +--+----------------------------+-------+---------+---------+
           Total:                       160     0         0      
                                                                 
        C:\ti\simplelink_cc32xx_sdk_4_20_00_07\kernel\tirtos\packages\ti\targets\arm\rtsarm\lib\boot.aem4
           boot.oem4                    68      0         0      
        +--+----------------------------+-------+---------+---------+
           Total:                       68      0         0      
                                                                 
           Stack:                       0       0         1024   
           Linker Generated:            0       711       0      
        +--+----------------------------+-------+---------+---------+
           Grand Total:                 66880   4062      10149  
    
    
    LINKER GENERATED COPY TABLES
    
    __TI_cinit_table @ 01011e10 records: 2, size/record: 8, table size: 16
    	.data: load addr=01011b58, load size=000002a3 bytes, run addr=20009c84, run size=00000818 bytes, compression=lzss
    	.bss: load addr=01011e08, load size=00000008 bytes, run addr=20008400, run size=00001881 bytes, compression=zero_init
    
    
    LINKER GENERATED HANDLER TABLE
    
    __TI_handler_table @ 01011dfc records: 3, size/record: 4, table size: 12
    	index: 0, handler: __TI_decompress_lzss
    	index: 1, handler: __TI_decompress_none
    	index: 2, handler: __TI_zero_init
    
    
    GLOBAL SYMBOLS: SORTED ALPHABETICALLY BY Name 
    
    address   name                                                            
    -------   ----                                                            
    010108e5  Board_init                                                      
    0100402f  Board_initHook                                                  
    0100cf3d  C$$EXIT                                                         
    01011939  CONFIG_Crypto_0_CONST                                           
    0101193c  CONFIG_GPIO_0_CONST                                             
    0101193b  CONFIG_GPIO_LED_0_CONST                                         
    0101193d  CONFIG_I2C_0_CONST                                              
    01011940  CONFIG_NWP_SPI_CONST                                            
    0101193f  CONFIG_SPI_0_CONST                                              
    01011942  CONFIG_TIMER_0_CONST                                            
    01011943  CONFIG_TIMER_1_CONST                                            
    01011945  CONFIG_UART_0_CONST                                             
    01011946  CONFIG_UART_1_CONST                                             
    01010cd5  ClockP_Params_init                                              
    0100e5c5  ClockP_create                                                   
    01010b1f  ClockP_delete                                                   
    01006be5  ClockP_getCpuFreq                                               
    01010b2d  ClockP_getSystemTickPeriod                                      
    01010c31  ClockP_getSystemTicks                                           
    01007275  ClockP_setTimeout                                               
    01007f65  ClockP_start                                                    
    0100a8f5  ClockP_stop                                                     
    01008a79  Connect                                                         
    0101193a  CryptoCC32XX_count                                              
    20009c38  DeviceCB                                                        
    01011938  Display_count                                                   
    0100f9d1  Display_doPrintf                                                
    01006885  ErrnoUtil_set                                                   
    0100dca5  FlashDisable                                                    
    01011874  GPIOCC32XX_config                                               
    0100d871  GPIO_enableInt                                                  
    0100beb9  GPIO_hwiIntFxn                                                  
    01008b3d  GPIO_init                                                       
    0100ef15  GPIO_read                                                       
    0100cd65  GPIO_setCallback                                                
    01004031  GPIO_setConfig                                                  
    0100c939  GPIO_toggle                                                     
    0100cf9d  GPIO_write                                                      
    20009b24  GlobalLockObj                                                   
    00008000  HEAPSIZE                                                        
    010108f5  HwiP_Params_init                                                
    0100b715  HwiP_clearInterrupt                                             
    0100e645  HwiP_create                                                     
    01010b39  HwiP_delete                                                     
    0100babd  HwiP_disable                                                    
    0100bbc5  HwiP_disableInterrupt                                           
    0100bcc5  HwiP_enableInterrupt                                            
    01010de1  HwiP_restore                                                    
    0100f42b  I2CCC32XX_cancel                                                
    0100b4f5  I2CCC32XX_close                                                 
    0100ea83  I2CCC32XX_control                                               
    010116f4  I2CCC32XX_fxnTable                                              
    0100675f  I2CCC32XX_init                                                  
    0100779d  I2CCC32XX_open                                                  
    01007055  I2CCC32XX_transfer                                              
    0100fc91  I2CFIFODataGetNonBlocking                                       
    0100fad3  I2CFIFODataPutNonBlocking                                       
    01010905  I2CFIFOStatus                                                   
    010106b1  I2CMasterBurstLengthSet                                         
    0101043d  I2CMasterBusBusy                                                
    01010849  I2CMasterIntClearEx                                             
    01010455  I2CMasterIntDisableEx                                           
    0101046d  I2CMasterIntEnableEx                                            
    01010141  I2CMasterIntStatusEx                                            
    0100ff7d  I2CMasterSlaveAddrSet                                           
    01010485  I2CRxFIFOFlush                                                  
    0101049d  I2CTxFIFOFlush                                                  
    01010915  I2C_Params_init                                                 
    01010cdf  I2C_close                                                       
    01011964  I2C_config                                                      
    0101193e  I2C_count                                                       
    010118d8  I2C_defaultParams                                               
    0100e245  I2C_init                                                        
    0100e685  I2C_open                                                        
    010104b5  I2C_transfer                                                    
    0100fcb7  List_put                                                        
    0100fcdd  List_remove                                                     
    2000a460  MAGIC_HEADER                                                    
    2000a1a8  MAX_UART_DATA_SIZE                                              
    20009c44  Msg                                                             
    0100f731  Mutex_create_handle                                             
    01010b51  NwpMaskInterrupt                                                
    01008cc5  NwpPowerOff                                                     
    0100f78d  NwpPowerOn                                                      
    0100d4b1  NwpRegisterInterruptHandler                                     
    01010b5d  NwpUnMaskInterrupt                                              
    0100d8bd  NwpWaitForShutDownInd                                           
    010111a0  OpcodeTranslateTable                                            
    010015e5  PRCMCC3200MCUInit                                               
    010106c7  PRCMHIBRegRead                                                  
    010106dd  PRCMHIBRegWrite                                                 
    0100dced  PRCMLPDSEnter                                                   
    0100ef4d  PRCMLPDSEnterKeepDebugIf                                        
    0100e289  PRCMLPDSRestoreInfoSet                                          
    0100fafd  PRCMPeripheralClkDisable                                        
    0100dd35  PRCMPeripheralClkEnable                                         
    0100a00d  PRCMPeripheralClockGet                                          
    0100cff5  PRCMPeripheralReset                                             
    0100cac9  PRCMSysResetCauseGet                                            
    0100b57d  PinConfigSet                                                    
    0100f1e9  PinModeGet                                                      
    0100e6c5  PinModeSet                                                      
    0101026d  PinToPadGet                                                     
    01011260  PowerCC32XX_config                                              
    0100a0b5  PowerCC32XX_configureWakeup                                     
    20009708  PowerCC32XX_contextSave                                         
    0100e2cd  PowerCC32XX_enterLPDS                                           
    0100f7b9  PowerCC32XX_getParkState                                        
    0100fb25  PowerCC32XX_initPolicy                                          
    20009c84  PowerCC32XX_module                                              
    0100d909  PowerCC32XX_parkPin                                             
    0100fd05  PowerCC32XX_reset                                               
    0100f21d  PowerCC32XX_restoreParkState                                    
    0100f45b  PowerCC32XX_restoreParkedPin                                    
    0100d40d  PowerCC32XX_resumeLPDS                                          
    0100c99d  PowerCC32XX_setParkState                                        
    0100551d  PowerCC32XX_sleepPolicy                                         
    01010b69  Power_getConstraintMask                                         
    01010765  Power_getDependencyCount                                        
    010104cd  Power_idleFunc                                                  
    0100b829  Power_init                                                      
    0100fb4d  Power_registerNotify                                            
    0100dd7d  Power_releaseConstraint                                         
    0100d04d  Power_releaseDependency                                         
    0100eac9  Power_setConstraint                                             
    0100bb45  Power_setDependency                                             
    01005b81  Power_sleep                                                     
    0100ffa1  Power_unregisterNotify                                          
    0101085b  RingBuf_construct                                               
    0100e705  RingBuf_get                                                     
    01010a97  RingBuf_isFull                                                  
    0100ffc1  RingBuf_peek                                                    
    0100e1b9  RingBuf_put                                                     
    20009c80  RxIrqCnt                                                        
    UNDEFED   SHT$$INIT_ARRAY$$Base                                           
    UNDEFED   SHT$$INIT_ARRAY$$Limit                                          
    2000a180  SIZE_MAGIC_HEADER                                               
    01008319  SPICC32XXDMA_close                                              
    0100faa3  SPICC32XXDMA_control                                            
    0101170c  SPICC32XXDMA_fxnTable                                           
    0100c3c5  SPICC32XXDMA_init                                               
    01005271  SPICC32XXDMA_open                                               
    010043f5  SPICC32XXDMA_transfer                                           
    01007d81  SPICC32XXDMA_transferCancel                                     
    01010779  SPI_Params_init                                                 
    01010ce9  SPI_close                                                       
    01011724  SPI_config                                                      
    01011941  SPI_count                                                       
    010114e8  SPI_defaultParams                                               
    0100e311  SPI_init                                                        
    0100e745  SPI_open                                                        
    01010cf3  SPI_transfer                                                    
    01003a39  Scan_APs                                                        
    01010d89  SemaphoreP_Params_init                                          
    0100eb05  SemaphoreP_create                                               
    0100f7e5  SemaphoreP_createBinary                                         
    01010b75  SemaphoreP_delete                                               
    0101086d  SemaphoreP_pend                                                 
    0100c795  SemaphoreP_post                                                 
    0100ab61  Semaphore_pend_handle                                           
    01010cfd  SimpleLinkFatalErrorEventHandler                                
    01010d07  SimpleLinkGeneralEventHandler                                   
    01010b81  SimpleLinkHttpServerEventHandler                                
    01006e25  SimpleLinkNetAppEventHandler                                    
    01010b8d  SimpleLinkNetAppRequestEventHandler                             
    01010d11  SimpleLinkNetAppRequestMemFreeEventHandler                      
    01010d1b  SimpleLinkSockEventHandler                                      
    0100abf5  SimpleLinkWlanEventHandler                                      
    2000a070  SlNetIfConfigWifi                                               
    0100ffe1  SlNetIfWifi_accept                                              
    0101015f  SlNetIfWifi_bind                                                
    0101087f  SlNetIfWifi_close                                               
    0101017d  SlNetIfWifi_connect                                             
    0100d955  SlNetIfWifi_getConnectionStatus                                 
    0100f111  SlNetIfWifi_getHostByName                                       
    0100ee67  SlNetIfWifi_getIPAddr                                           
    01009b49  SlNetIfWifi_getSockOpt                                          
    010103d5  SlNetIfWifi_listen                                              
    01007a9d  SlNetIfWifi_loadSecObj                                          
    0100f811  SlNetIfWifi_recv                                                
    0100ef85  SlNetIfWifi_recvFrom                                            
    0100f147  SlNetIfWifi_select                                              
    0100f83d  SlNetIfWifi_send                                                
    0100efbd  SlNetIfWifi_sendTo                                              
    0100cd07  SlNetIfWifi_setSockOpt                                          
    0100eff5  SlNetIfWifi_socket                                              
    0100b8ad  SlNetIfWifi_sockstartSec                                        
    01008235  SlNetIf_add                                                     
    0100fd29  SlNetIf_getConnectionStatus                                     
    0100fb75  SlNetIf_getIfByID                                               
    0100ce1d  SlNetIf_init                                                    
    0100d501  SlNetIf_queryIf                                                 
    0100e9c9  SlNetSock_close                                                 
    0100ae45  SlNetSock_create                                                
    0100ddc5  SlNetSock_init                                                  
    0100cb29  SlNetSock_sendTo                                                
    0100f251  SlNetUtil_htons                                                 
    0100f9fb  SlNetUtil_inetPton                                              
    0100ce7d  SlNetUtil_init                                                  
    0100f251  SlNetUtil_ntohs                                                 
    0100d551  TimerCC32XX_allocateTimerResource                               
    0100eea1  TimerCC32XX_close                                               
    010108a3  TimerCC32XX_control                                             
    0100f285  TimerCC32XX_freeTimerResource                                   
    01011528  TimerCC32XX_fxnTable                                            
    010104e5  TimerCC32XX_getCount                                            
    01008a77  TimerCC32XX_init                                                
    010063e9  TimerCC32XX_open                                                
    0100b605  TimerCC32XX_setPeriod                                           
    0100bf31  TimerCC32XX_start                                               
    0100d261  TimerCC32XX_stop                                                
    0100f17d  TimerControlStall                                               
    0101019b  TimerDisable                                                    
    010101b9  TimerEnable                                                     
    01010d91  TimerGetCurrentTimestamp                                        
    01010891  TimerIntClear                                                   
    010104fd  TimerIntDisable                                                 
    01010515  TimerIntEnable                                                  
    0100fa25  TimerLoadSet                                                    
    0100fa4f  TimerPrescaleSet                                                
    01010925  Timer_Params_init                                               
    0101173c  Timer_config                                                    
    01011944  Timer_count                                                     
    0100e399  Timer_init                                                      
    0100e785  Timer_open                                                      
    01010d25  Timer_start                                                     
    0101052d  UARTBusy                                                        
    010069a5  UARTCC32XX_close                                                
    01007e73  UARTCC32XX_control                                              
    0101130c  UARTCC32XX_fxnTable                                             
    0100936f  UARTCC32XX_init                                                 
    01002c6d  UARTCC32XX_open                                                 
    0100e7c5  UARTCC32XX_read                                                 
    0100f1b3  UARTCC32XX_readCancel                                           
    010092b5  UARTCC32XX_readPolling                                          
    010088e5  UARTCC32XX_write                                                
    0100c8d1  UARTCC32XX_writeCancel                                          
    0100ca65  UARTCC32XX_writePolling                                         
    01010545  UARTIntEnable                                                   
    0101055d  UART_Params_init                                                
    01011754  UART_config                                                     
    01011947  UART_count                                                      
    01011384  UART_defaultParams                                              
    0100e3dd  UART_init                                                       
    0100e805  UART_open                                                       
    01010d2f  UART_read                                                       
    01010d39  UART_write                                                      
    0100f2b9  UDMACC32XX_close                                                
    010119b8  UDMACC32XX_config                                               
    0100e845  UDMACC32XX_init                                                 
    0100bc49  UDMACC32XX_open                                                 
    010108bb  UtilsDelay                                                      
    01011210  _SlActionLookupTable                                            
    01007491  _SlDeviceEventHandler                                           
    0100de0d  _SlDeviceFatalErrorEvtHdlr                                      
    0100de55  _SlDeviceGeneralEvtHdlr                                         
    010083f1  _SlDeviceHandleAsync_InitComplete                               
    0100aff9  _SlDeviceHandleAsync_Stop                                       
    0100c515  _SlDeviceHandleResetRequestInternally                           
    01010b99  _SlDeviceResetRequestInitCompletedCB                            
    01007595  _SlDrvCmdOp                                                     
    0100c355  _SlDrvCmdSend_noLock                                            
    0100d5f1  _SlDrvCmdSend_noWait                                            
    01003169  _SlDrvDataReadOp                                                
    01003821  _SlDrvDataWriteOp                                               
    01010935  _SlDrvDispatchHttpServerEvents                                  
    01010945  _SlDrvDispatchNetAppRequestEvents                               
    01006059  _SlDrvDriverCBDeinit                                            
    010035fd  _SlDrvDriverCBInit                                              
    0100b2c5  _SlDrvDriverIsApiAllowed                                        
    0100e885  _SlDrvGlobalObjUnLock                                           
    01009879  _SlDrvHandleFatalError                                          
    0100fd4d  _SlDrvIsApiInProgress                                           
    01010955  _SlDrvIsSpawnOwnGlobalLock                                      
    0100a205  _SlDrvIsTimeoutExpired                                          
    010106f3  _SlDrvMemZero                                                   
    01005a41  _SlDrvMsgReadSpawnCtx                                           
    0100789d  _SlDrvObjGlobalLockWaitForever                                  
    010101d7  _SlDrvObjLockWaitForever                                        
    010101f5  _SlDrvObjUnLock                                                 
    0100b351  _SlDrvProtectAsyncRespSetting                                   
    0100fb9d  _SlDrvProtectionObjLockWaitForever                              
    0100fbc5  _SlDrvProtectionObjUnLock                                       
    0100477d  _SlDrvReleaseAllActivePendingPoolObj                            
    010020ed  _SlDrvReleasePoolObj                                            
    01010aa5  _SlDrvResetCmdExt                                               
    0100d2b9  _SlDrvRxIrqHandler                                              
    0100fd71  _SlDrvStartMeasureTimeout                                       
    01010213  _SlDrvSyncObjSignal                                             
    0100f869  _SlDrvSyncObjWaitForever                                        
    0100de9d  _SlDrvSyncObjWaitTimeout                                        
    010084c9  _SlDrvWaitForInternalAsyncEvent                                 
    01002409  _SlDrvWaitForPoolObj                                            
    0100e8c5  _SlFindAndReleasePendingCmd                                     
    0100fbed  _SlFlowContSet                                                  
    010102a5  _SlInternalIsItSpawnThread                                      
    0100cdc1  _SlInternalSpawn                                                
    0100d691  _SlInternalSpawnTaskEntry                                       
    0100e905  _SlInternalSpawnWaitForEvent                                    
    0100e945  _SlIsEventRegistered                                            
    01003e3d  _SlNetAppEventHandler                                           
    0100dee5  _SlNetAppEvtHdlr                                                
    01009371  _SlNetAppHandleAsync_DnsGetHostByName                           
    01006f3d  _SlNetAppHandleAsync_DnsGetHostByService                        
    010085a1  _SlNetAppHandleAsync_NetAppReceive                              
    01009429  _SlNetAppHandleAsync_PingResponse                               
    0100d6e1  _SlNetAppHttpServerHdlr                                         
    0100d731  _SlNetAppRequestHdlr                                            
    0100df2d  _SlNetAppRequestMemFree                                         
    01008fc5  _SlNetAppSendResponse                                           
    01011a52  _SlNetAppSendResponseCmdCtrl                                    
    0100c5ed  _SlNetAppSendTokenValue                                         
    01011a56  _SlNetAppSendTokenValueCmdCtrl                                  
    0100992d  _SlNetUtilHandleAsync_Cmd                                       
    0100df75  _SlSockEvtHdlr                                                  
    0100b089  _SlSocketHandleAsync_Accept                                     
    01009eb5  _SlSocketHandleAsync_Close                                      
    01009f61  _SlSocketHandleAsync_Connect                                    
    01001129  _SlSocketHandleAsync_Select                                     
    01005df1  _SlSocketHandleAsync_StartTLS                                   
    0100c6c5  _SlSpawnMsgListGetCount                                         
    01005cb9  _SlSpawnMsgListInsert                                           
    0100a679  _SlSpawnMsgListProcess                                          
    0100dfbd  _SlWlanEvtHdlr                                                  
    00000000  __ASM__                                                         
    00000083  __ISA__                                                         
    00000096  __PLAT__                                                        
    20040000  __STACK_END                                                     
    00000400  __STACK_SIZE                                                    
    000000bd  __TARG__                                                        
    01011e10  __TI_CINIT_Base                                                 
    01011e20  __TI_CINIT_Limit                                                
    01011dfc  __TI_Handler_Table_Base                                         
    01011e08  __TI_Handler_Table_Limit                                        
    0100a719  __TI_auto_init                                                  
    0100c72d  __TI_decompress_lzss                                            
    01010ab3  __TI_decompress_none                                            
    ffffffff  __TI_pprof_out_hndl                                             
    ffffffff  __TI_prof_data_size                                             
    ffffffff  __TI_prof_data_start                                            
    01011b58  __TI_static_base__                                              
    01010bbd  __TI_zero_init                                                  
    000000e2  __TRDR__                                                        
    0100cedd  __abort_execution                                               
    01010e19  __aeabi_errno_addr                                              
    01009eb3  __aeabi_idiv0                                                   
    01009eb3  __aeabi_ldiv0                                                   
    010105a5  __aeabi_lmul                                                    
    0100be3d  __aeabi_memclr                                                  
    0100be3d  __aeabi_memclr4                                                 
    0100be3d  __aeabi_memclr8                                                 
    0100a995  __aeabi_memcpy                                                  
    0100a995  __aeabi_memcpy4                                                 
    0100a995  __aeabi_memcpy8                                                 
    0100be3f  __aeabi_memset                                                  
    0100be3f  __aeabi_memset4                                                 
    0100be3f  __aeabi_memset8                                                 
    0100aac9  __aeabi_uldivmod                                                
    ffffffff  __binit__                                                       
    ffffffff  __c_args__                                                      
    20008310  __primary_heap_end__                                            
    20000310  __primary_heap_start__                                          
    2003fc00  __stack                                                         
    01005f25  __vla_alloc                                                     
    0100c021  __vla_dealloc                                                   
    01010575  _args_main                                                      
    0100e421  _c_int00                                                        
    01010e7c  _ctypes_                                                        
    2000a3e8  _lock                                                           
    01009877  _nop                                                            
    0100bcc9  _pthread_abstime2ticks                                          
    0100f899  _pthread_cleanupFxn                                             
    0100a8f9  _pthread_removeThreadKeys                                       
    01010ba5  _register_lock                                                  
    01010bb1  _register_unlock                                                
    2000a3ec  _unlock                                                         
    0100cf3d  abort                                                           
    ffffffff  binit                                                           
    2000a46f  bssid_connected                                                 
    2000a19c  buffer_dataset0                                                 
    2000a1a0  buffer_dataset1                                                 
    20009834  buffer_read_UART1                                               
    0100f4bd  button_pressed                                                  
    0100fa79  calloc                                                          
    01008d85  check_button                                                    
    010099e1  check_uart_data                                                 
    01008149  clock_gettime                                                   
    0100d9ed  copy_in                                                         
    2000a1a4  count                                                           
    2000a1a5  count1                                                          
    2000a190  counter_msec                                                    
    2000a188  counter_timer0                                                  
    2000a18c  counter_timer1                                                  
    01006189  create_send_udp_packet                                          
    20009c64  display                                                         
    2000a171  flag_button_pressed                                             
    2000a170  flag_button_released                                            
    2000a46c  flag_connected                                                  
    2000a46d  flag_first_connection                                           
    2000a1b1  flag_uart_footer                                                
    2000a1b0  flag_uart_header                                                
    010103ef  free                                                            
    2000a3c5  gGlobalLockCntReleased                                          
    2000a3c4  gGlobalLockCntRequested                                         
    20009000  g_CB                                                            
    2000a2b8  g_LibsEvents                                                    
    2000a3c6  g_SlDeviceStatus                                                
    20009b50  g_SlInternalSpawnCB                                             
    2000a2dc  g_UserEvents                                                    
    2000a47c  g_intHandle                                                     
    2000a3c8  g_pCB                                                           
    0100cb89  get_network_list                                                
    2000a3f8  gpioCallbackFunctions                                           
    2000a400  gpioPinConfigs                                                  
    2000a178  i                                                               
    01011918  i2cCC32XXHWAttrs                                                
    20008bb0  i2cCC32XXObjects                                                
    01011a16  inPinTypes                                                      
    01010709  inet_pton                                                       
    2000a1ac  input_size                                                      
    01009081  main                                                            
    01001d95  mainThread                                                      
    010033c5  mainThread1                                                     
    2000a478  main_func_sp                                                    
    0100f75f  malloc                                                          
    01009d57  matchModeByRole                                                 
    0100a995  memcpy                                                          
    0100be45  memset                                                          
    20009c68  mode                                                            
    20008400  netEntries                                                      
    2000a17c  numberRxBytes                                                   
    20009c6c  number_read_bytes                                               
    20009c70  number_read_bytes1                                              
    01011a1c  outPinStrengths                                                 
    010119d8  outPinTypes                                                     
    2000a3cc  pPingCallBackFunc                                               
    2000a1b2  packet_button                                                   
    20009df0  parkInfo                                                        
    0100da39  printError                                                      
    0100fd99  pthread_attr_init                                               
    01010ad1  pthread_attr_setdetachstate                                     
    01010791  pthread_attr_setschedparam                                      
    01010da1  pthread_attr_setstacksize                                       
    01007f69  pthread_create                                                  
    0100c799  pthread_exit                                                    
    01010721  pthread_mutex_destroy                                           
    0100d101  pthread_mutex_init                                              
    01010da9  pthread_mutex_lock                                              
    0100eb81  pthread_mutex_unlock                                            
    01010979  pthread_mutexattr_init                                          
    01010989  pthread_mutexattr_settype                                       
    01010be1  pthread_self                                                    
    01004ad9  read_sensor                                                     
    0100ea45  realloc                                                         
    2000a174  ret                                                             
    01010d49  sem_destroy                                                     
    01010db9  sem_getvalue                                                    
    0100faa9  sem_init                                                        
    01010d59  sem_post                                                        
    0100ea89  sem_timedwait                                                   
    01010ae1  sem_wait                                                        
    01009599  send_udp_packet                                                 
    01010409  sendto                                                          
    2000a194  size_dataset0                                                   
    2000a195  size_dataset1                                                   
    2000a196  size_dataset2                                                   
    2000a197  size_dataset3                                                   
    2000a198  size_dataset4                                                   
    2000a199  size_dataset5                                                   
    2000a19a  size_dataset6                                                   
    2000a19b  size_dataset7                                                   
    01004931  sl_Accept                                                       
    0100a2ad  sl_Bind                                                         
    01007b95  sl_Close                                                        
    01004f89  sl_Connect                                                      
    0100a15d  sl_FsClose                                                      
    01006761  sl_FsOpen                                                       
    0100799d  sl_FsWrite                                                      
    01009a95  sl_GetSockOpt                                                   
    0100d159  sl_Listen                                                       
    01005101  sl_NetAppDnsGetHostByName                                       
    01008f05  sl_NetCfgGet                                                    
    0100b3dd  sl_Recv                                                         
    010053c9  sl_RecvFrom                                                     
    0100d1b1  sl_RegisterLibsEventHandler                                     
    010029c1  sl_Select                                                       
    0100913d  sl_Send                                                         
    01007c8d  sl_SendTo                                                       
    0100b9b5  sl_SetSockOpt                                                   
    0100c111  sl_Socket                                                       
    01006d09  sl_Start                                                        
    010058f9  sl_StartTLS                                                     
    01004215  sl_Stop                                                         
    01010d63  sl_Task                                                         
    0100b68d  sl_UnregisterLibsEventHandler                                   
    01002eed  sl_WlanConnect                                                  
    01009651  sl_WlanGet                                                      
    0100ad1d  sl_WlanGetNetworkList                                           
    0100bdc1  sl_WlanPolicySet                                                
    0100dad1  sl_WlanSetMode                                                  
    0100ebc1  sleep                                                           
    01010737  socket                                                          
    2000a468  spawn_thread                                                    
    01011128  spiCC32XXDMAHWAttrs                                             
    20008b28  spiCC32XXDMAObjects                                             
    20009c50  spiCC32XXSDMAscratchBuf                                         
    01010aef  spi_Close                                                       
    0100c801  spi_Open                                                        
    0100a7b9  spi_Read                                                        
    0100a857  spi_Write                                                       
    2000a324  ssid_connected                                                  
    2000a46e  ssid_len_connected                                              
    010107b9  strcpy                                                          
    010107cd  strlen                                                          
    01007165  strtoul                                                         
    0100e465  ti_net_SlNet_initConfig                                         
    2000a300  ti_sysbios_BIOS_Module__state__V                                
    0100f921  ti_sysbios_BIOS_RtsGateProxy_Handle__label__S                   
    0100d0fd  ti_sysbios_BIOS_RtsGateProxy_enter__E                           
    0100d3b5  ti_sysbios_BIOS_RtsGateProxy_leave__E                           
    01010e31  ti_sysbios_BIOS_RtsGateProxy_query__E                           
    0100f521  ti_sysbios_BIOS_atExitFunc__I                                   
    0101074d  ti_sysbios_BIOS_exitFunc__I                                     
    010109a9  ti_sysbios_BIOS_getCpuFreq__E                                   
    01010e49  ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E               
    0100a2ab  ti_sysbios_BIOS_nullFunc__I                                     
    0100fdbd  ti_sysbios_BIOS_registerRTSLock__I                              
    0100fde1  ti_sysbios_BIOS_removeRTSLock__I                                
    01010041  ti_sysbios_BIOS_rtsLock__I                                      
    010105bd  ti_sysbios_BIOS_rtsUnlock__I                                    
    010109b9  ti_sysbios_BIOS_setThreadType__E                                
    0100f551  ti_sysbios_BIOS_startFunc__I                                    
    010109c9  ti_sysbios_BIOS_start__E                                        
    2000a3b0  ti_sysbios_family_arm_cc32xx_Seconds_Module__state__V           
    0100d209  ti_sysbios_family_arm_cc32xx_Seconds_getCount__I                
    0100c869  ti_sysbios_family_arm_cc32xx_Seconds_getTime__E                 
    01011a90  ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C                
    01011a94  ti_sysbios_family_arm_m3_Hwi_E_badIntNum__C                     
    0100ec01  ti_sysbios_family_arm_m3_Hwi_Instance_finalize__E               
    01009709  ti_sysbios_family_arm_m3_Hwi_Instance_init__E                   
    2000a3e6  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A        
    2000a484  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A       
    2000a488  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A         
    01010f7e  ti_sysbios_family_arm_m3_Hwi_Module__id__C                      
    2000a408  ti_sysbios_family_arm_m3_Hwi_Module__root__V                    
    010105d5  ti_sysbios_family_arm_m3_Hwi_Module__startupDone__F             
    010105d5  ti_sysbios_family_arm_m3_Hwi_Module__startupDone__S             
    2000a1f8  ti_sysbios_family_arm_m3_Hwi_Module__state__V                   
    0100d781  ti_sysbios_family_arm_m3_Hwi_Module_startup__E                  
    01011a98  ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C                  
    01011568  ti_sysbios_family_arm_m3_Hwi_Object__DESC__C                    
    010112dc  ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C                  
    01011a9c  ti_sysbios_family_arm_m3_Hwi_Object__count__C                   
    01010061  ti_sysbios_family_arm_m3_Hwi_Object__delete__S                  
    010107e1  ti_sysbios_family_arm_m3_Hwi_Object__get__S                     
    2000a380  ti_sysbios_family_arm_m3_Hwi_Object__table__V                   
    01010bed  ti_sysbios_family_arm_m3_Hwi_Params__init__S                    
    01011aa0  ti_sysbios_family_arm_m3_Hwi_ccr__C                             
    01010081  ti_sysbios_family_arm_m3_Hwi_clearInterrupt__E                  
    0100d361  ti_sysbios_family_arm_m3_Hwi_create                             
    0100dbb5  ti_sysbios_family_arm_m3_Hwi_delete                             
    01010bf9  ti_sysbios_family_arm_m3_Hwi_disableFxn__E                      
    0100e009  ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E                
    0100ca01  ti_sysbios_family_arm_m3_Hwi_dispatchC__I                       
    200093fc  ti_sysbios_family_arm_m3_Hwi_dispatchTable                      
    01008819  ti_sysbios_family_arm_m3_Hwi_dispatch__I                        
    01010dc1  ti_sysbios_family_arm_m3_Hwi_doSwiRestore__I                    
    01010dd9  ti_sysbios_family_arm_m3_Hwi_doTaskRestore__I                   
    0100e051  ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E                 
    0100fc15  ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I                   
    01011aa4  ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C                  
    010102c1  ti_sysbios_family_arm_m3_Hwi_excHandler__I                      
    0100e4a9  ti_sysbios_family_arm_m3_Hwi_getStackInfo__E                    
    0100b719  ti_sysbios_family_arm_m3_Hwi_initNVIC__E                        
    0100e099  ti_sysbios_family_arm_m3_Hwi_initStacks__E                      
    010088c9  ti_sysbios_family_arm_m3_Hwi_interruptsAreDisabledButShouldNotBe
    01011aa8  ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C                     
    e000e000  ti_sysbios_family_arm_m3_Hwi_nvic                               
    01010423  ti_sysbios_family_arm_m3_Hwi_pendSV__I                          
    0100ba39  ti_sysbios_family_arm_m3_Hwi_postInit__I                        
    01011aac  ti_sysbios_family_arm_m3_Hwi_priGroup__C                        
    20000000  ti_sysbios_family_arm_m3_Hwi_ramVectors                         
    01000800  ti_sysbios_family_arm_m3_Hwi_resetVectors                       
    01010de1  ti_sysbios_family_arm_m3_Hwi_restoreFxn__E                      
    0101043b  ti_sysbios_family_arm_m3_Hwi_return                             
    01010dc9  ti_sysbios_family_arm_m3_Hwi_startup__E                         
    01011ab0  ti_sysbios_family_arm_m3_Hwi_swiDisable__C                      
    01011ab4  ti_sysbios_family_arm_m3_Hwi_swiRestore__C                      
    010107f9  ti_sysbios_family_arm_m3_Hwi_switchFromBootStack__E             
    0100dc05  ti_sysbios_family_arm_m3_TaskSupport_Module__startupDone__S     
    0100db1d  ti_sysbios_family_arm_m3_TaskSupport_buildTaskStack             
    01010c09  ti_sysbios_family_arm_m3_TaskSupport_getStackAlignment__E       
    010109d9  ti_sysbios_family_arm_m3_TaskSupport_glue                       
    01011ab8  ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C          
    0100f581  ti_sysbios_family_arm_m3_TaskSupport_start__E                   
    010109e9  ti_sysbios_family_arm_m3_TaskSupport_swap__E                    
    01011abc  ti_sysbios_family_arm_m3_Timer_E_cannotSupport__C               
    010114c6  ti_sysbios_family_arm_m3_Timer_Module__id__C                    
    010105ed  ti_sysbios_family_arm_m3_Timer_Module__startupDone__F           
    010105ed  ti_sysbios_family_arm_m3_Timer_Module__startupDone__S           
    2000a3d0  ti_sysbios_family_arm_m3_Timer_Module__state__V                 
    010102e1  ti_sysbios_family_arm_m3_Timer_Module_startup__E                
    2000a22c  ti_sysbios_family_arm_m3_Timer_Object__table__V                 
    01010e21  ti_sysbios_family_arm_m3_Timer_getMaxTicks__E                   
    0100e0e1  ti_sysbios_family_arm_m3_Timer_initDevice__I                    
    0100f359  ti_sysbios_family_arm_m3_Timer_periodicStub__I                  
    0100fe09  ti_sysbios_family_arm_m3_Timer_postInit__I                      
    0100ec41  ti_sysbios_family_arm_m3_Timer_setPeriodMicroSecs__E            
    0100d3b9  ti_sysbios_family_arm_m3_Timer_setPeriod__E                     
    0100ce21  ti_sysbios_family_arm_m3_Timer_start__E                         
    01011ac0  ti_sysbios_family_arm_m3_Timer_startupNeeded__C                 
    0100fe31  ti_sysbios_family_arm_m3_Timer_startup__E                       
    01010301  ti_sysbios_family_arm_m3_Timer_stop__E                          
    0101024f  ti_sysbios_family_xxx_Hwi_switchAndRunFunc                      
    0100f8f5  ti_sysbios_gates_GateHwi_Handle__label__S                       
    01010e51  ti_sysbios_gates_GateHwi_Instance_init__E                       
    010113a8  ti_sysbios_gates_GateHwi_Module__FXNS__C                        
    2000a410  ti_sysbios_gates_GateHwi_Module__root__V                        
    01011588  ti_sysbios_gates_GateHwi_Object__DESC__C                        
    0101176c  ti_sysbios_gates_GateHwi_Object__PARAMS__C                      
    0100f5b1  ti_sysbios_gates_GateHwi_Object__create__S                      
    010100a1  ti_sysbios_gates_GateHwi_Object__delete__S                      
    2000a48c  ti_sysbios_gates_GateHwi_Object__table__V                       
    01010c19  ti_sysbios_gates_GateHwi_enter__E                               
    01010de9  ti_sysbios_gates_GateHwi_leave__E                               
    01010e29  ti_sysbios_gates_GateHwi_query__E                               
    0100f921  ti_sysbios_gates_GateMutex_Handle__label__S                     
    01011ac4  ti_sysbios_gates_GateMutex_Instance_State_sem__O                
    010109f9  ti_sysbios_gates_GateMutex_Instance_finalize__E                 
    01010321  ti_sysbios_gates_GateMutex_Instance_init__E                     
    010113cc  ti_sysbios_gates_GateMutex_Module__FXNS__C                      
    2000a418  ti_sysbios_gates_GateMutex_Module__root__V                      
    010115a8  ti_sysbios_gates_GateMutex_Object__DESC__C                      
    01011784  ti_sysbios_gates_GateMutex_Object__PARAMS__C                    
    0100f5e1  ti_sysbios_gates_GateMutex_Object__create__S                    
    0100fe55  ti_sysbios_gates_GateMutex_Object__delete__S                    
    2000a0c8  ti_sysbios_gates_GateMutex_Object__table__V                     
    0100f611  ti_sysbios_gates_GateMutex_enter__E                             
    01010609  ti_sysbios_gates_GateMutex_leave__E                             
    01010e31  ti_sysbios_gates_GateMutex_query__E                             
    010105d5  ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S              
    01010bed  ti_sysbios_hal_Hwi_HwiProxy_Params__init__S                     
    01010081  ti_sysbios_hal_Hwi_HwiProxy_clearInterrupt__E                   
    0100e009  ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E                 
    01010bf9  ti_sysbios_hal_Hwi_HwiProxy_disable__E                          
    0100e051  ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E                  
    0100e4a9  ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E                     
    01010de1  ti_sysbios_hal_Hwi_HwiProxy_restore__E                          
    01010dc9  ti_sysbios_hal_Hwi_HwiProxy_startup__E                          
    010107f9  ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E              
    010108c1  ti_sysbios_hal_Hwi_Module_startup__E                            
    01010081  ti_sysbios_hal_Hwi_clearInterrupt__E                            
    0100e009  ti_sysbios_hal_Hwi_disableInterrupt__E                          
    0100e051  ti_sysbios_hal_Hwi_enableInterrupt__E                           
    0100e4a9  ti_sysbios_hal_Hwi_getStackInfo__E                              
    0100f3f9  ti_sysbios_hal_Hwi_initStack                                    
    01010dc9  ti_sysbios_hal_Hwi_startup__E                                   
    010107f9  ti_sysbios_hal_Hwi_switchFromBootStack__E                       
    0100c869  ti_sysbios_hal_Seconds_SecondsProxy_getTime__E                  
    0100c869  ti_sysbios_hal_Seconds_getTime__E                               
    01011ac8  ti_sysbios_heaps_HeapMem_E_memory__C                            
    0100f94d  ti_sysbios_heaps_HeapMem_Handle__label__S                       
    0100e989  ti_sysbios_heaps_HeapMem_Instance_init__E                       
    0100f921  ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S      
    0100dc55  ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E              
    0100e005  ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E              
    01010e31  ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E              
    01011334  ti_sysbios_heaps_HeapMem_Module__FXNS__C                        
    01011acc  ti_sysbios_heaps_HeapMem_Module__gateObj__C                     
    010117fa  ti_sysbios_heaps_HeapMem_Module__id__C                          
    2000a420  ti_sysbios_heaps_HeapMem_Module__root__V                        
    010115c8  ti_sysbios_heaps_HeapMem_Object__DESC__C                        
    010113f0  ti_sysbios_heaps_HeapMem_Object__PARAMS__C                      
    01011ad0  ti_sysbios_heaps_HeapMem_Object__count__C                       
    0100f641  ti_sysbios_heaps_HeapMem_Object__create__S                      
    010100c1  ti_sysbios_heaps_HeapMem_Object__delete__S                      
    0101080d  ti_sysbios_heaps_HeapMem_Object__get__S                         
    2000a398  ti_sysbios_heaps_HeapMem_Object__table__V                       
    01008749  ti_sysbios_heaps_HeapMem_alloc__E                               
    0100bac1  ti_sysbios_heaps_HeapMem_free__E                                
    0100db69  ti_sysbios_heaps_HeapMem_getStats__E                            
    0100c439  ti_sysbios_heaps_HeapMem_initPrimary__I                         
    01010df1  ti_sysbios_heaps_HeapMem_isBlocking__E                          
    01011ad4  ti_sysbios_heaps_HeapMem_primaryHeapBaseAddr__C                 
    01011ad8  ti_sysbios_heaps_HeapMem_primaryHeapEndAddr__C                  
    01011adc  ti_sysbios_heaps_HeapMem_reqAlign__C                            
    01010341  ti_sysbios_knl_Clock_Instance_finalize__E                       
    0100d7d1  ti_sysbios_knl_Clock_Instance_init__E                           
    01011ae0  ti_sysbios_knl_Clock_Module_State_clockQ__O                     
    2000a428  ti_sysbios_knl_Clock_Module__root__V                            
    2000a28c  ti_sysbios_knl_Clock_Module__state__V                           
    0100fe79  ti_sysbios_knl_Clock_Module_startup__E                          
    010115e8  ti_sysbios_knl_Clock_Object__DESC__C                            
    01011414  ti_sysbios_knl_Clock_Object__PARAMS__C                          
    0100fe9d  ti_sysbios_knl_Clock_Object__delete__S                          
    01010c25  ti_sysbios_knl_Clock_Params__init__S                            
    010105ed  ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S          
    0100e4ed  ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E                  
    0100e535  ti_sysbios_knl_Clock_TimerProxy_setPeriodMicroSecs__E           
    0100e57d  ti_sysbios_knl_Clock_TimerProxy_start__E                        
    0100fe31  ti_sysbios_knl_Clock_TimerProxy_startup__E                      
    0100e985  ti_sysbios_knl_Clock_TimerProxy_stop__E                         
    0100fc41  ti_sysbios_knl_Clock_addI__E                                    
    0100ec7d  ti_sysbios_knl_Clock_create                                     
    0100eb7d  ti_sysbios_knl_Clock_delete                                     
    0100f979  ti_sysbios_knl_Clock_doTick__I                                  
    0100ecb9  ti_sysbios_knl_Clock_getTicksUntilTimeout__E                    
    01010c31  ti_sysbios_knl_Clock_getTicks__E                                
    01010e59  ti_sysbios_knl_Clock_logTick__E                                 
    01010c41  ti_sysbios_knl_Clock_setTicks__E                                
    01010e39  ti_sysbios_knl_Clock_setTimeout__E                              
    0100fec1  ti_sysbios_knl_Clock_start__E                                   
    01010df9  ti_sysbios_knl_Clock_stop__E                                    
    01010f7d  ti_sysbios_knl_Clock_tickMode__C                                
    01011ae4  ti_sysbios_knl_Clock_tickPeriod__C                              
    01010821  ti_sysbios_knl_Clock_tickReconfig__E                            
    01011383  ti_sysbios_knl_Clock_tickSource__C                              
    01010c51  ti_sysbios_knl_Clock_tickStart__E                               
    01010c61  ti_sysbios_knl_Clock_tickStop__E                                
    0100ecb9  ti_sysbios_knl_Clock_walkQueuePeriodic__E                       
    0100bbc9  ti_sysbios_knl_Clock_workFunc__E                                
    010119e8  ti_sysbios_knl_Idle_funcList__A                                 
    010119f0  ti_sysbios_knl_Idle_funcList__C                                 
    01010b01  ti_sysbios_knl_Idle_loop__E                                     
    010100e1  ti_sysbios_knl_Idle_run__E                                      
    01011ae8  ti_sysbios_knl_Mailbox_Instance_State_freeQue__O                
    0100e129  ti_sysbios_knl_Mailbox_Module_startup__E                        
    01011aec  ti_sysbios_knl_Mailbox_Object__count__C                         
    01010a09  ti_sysbios_knl_Mailbox_Object__get__S                           
    01011af0  ti_sysbios_knl_Mailbox_maxTypeAlign__C                          
    0100e4f1  ti_sysbios_knl_Mailbox_postInit__I                              
    01010e01  ti_sysbios_knl_Queue_Instance_init__E                           
    2000a430  ti_sysbios_knl_Queue_Module__root__V                            
    01011608  ti_sysbios_knl_Queue_Object__DESC__C                            
    0101179c  ti_sysbios_knl_Queue_Object__PARAMS__C                          
    01010c6d  ti_sysbios_knl_Queue_Object__get__S                             
    0100f9a5  ti_sysbios_knl_Queue_construct                                  
    0101035d  ti_sysbios_knl_Queue_destruct                                   
    01010b11  ti_sysbios_knl_Queue_empty__E                                   
    01010379  ti_sysbios_knl_Queue_put__E                                     
    01011af4  ti_sysbios_knl_Semaphore_Instance_State_pendQ__O                
    01010a19  ti_sysbios_knl_Semaphore_Instance_finalize__E                   
    0100fee9  ti_sysbios_knl_Semaphore_Instance_init__E                       
    2000a438  ti_sysbios_knl_Semaphore_Module__root__V                        
    01011628  ti_sysbios_knl_Semaphore_Object__DESC__C                        
    01011438  ti_sysbios_knl_Semaphore_Object__PARAMS__C                      
    0100ff0d  ti_sysbios_knl_Semaphore_Object__delete__S                      
    01010c79  ti_sysbios_knl_Semaphore_Params__init__S                        
    0100f671  ti_sysbios_knl_Semaphore_construct                              
    0100f38d  ti_sysbios_knl_Semaphore_create                                 
    0100ebbd  ti_sysbios_knl_Semaphore_delete                                 
    01010101  ti_sysbios_knl_Semaphore_destruct                               
    0100f6a1  ti_sysbios_knl_Semaphore_pendTimeout__I                         
    010062b9  ti_sysbios_knl_Semaphore_pend__E                                
    0100cbe9  ti_sysbios_knl_Semaphore_post__E                                
    20009f70  ti_sysbios_knl_Swi_Module_State_0_readyQ__A                     
    2000a364  ti_sysbios_knl_Swi_Module__state__V                             
    0100fc69  ti_sysbios_knl_Swi_Module_startup__E                            
    01011af8  ti_sysbios_knl_Swi_Object__count__C                             
    01010835  ti_sysbios_knl_Swi_Object__get__S                               
    2000a25c  ti_sysbios_knl_Swi_Object__table__V                             
    01010a29  ti_sysbios_knl_Swi_disable__E                                   
    0100e539  ti_sysbios_knl_Swi_post__E                                      
    0100c659  ti_sysbios_knl_Swi_restoreHwi__E                                
    0100ecf9  ti_sysbios_knl_Swi_restore__E                                   
    0100dbb9  ti_sysbios_knl_Swi_runLoop__I                                   
    0100cc49  ti_sysbios_knl_Swi_run__I                                       
    0100ce81  ti_sysbios_knl_Swi_schedule__I                                  
    01010e09  ti_sysbios_knl_Swi_startup__E                                   
    20009c74  ti_sysbios_knl_Task_Instance_State_0_hookEnv__A                 
    20008928  ti_sysbios_knl_Task_Instance_State_0_stack__A                   
    01007699  ti_sysbios_knl_Task_Instance_finalize__E                        
    01008059  ti_sysbios_knl_Task_Instance_init__E                            
    2000a490  ti_sysbios_knl_Task_Module_State_0_idleTask__A                  
    20009ff0  ti_sysbios_knl_Task_Module_State_0_readyQ__A                    
    01011afc  ti_sysbios_knl_Task_Module_State_inactiveQ__O                   
    2000a440  ti_sysbios_knl_Task_Module__root__V                             
    2000a1b4  ti_sysbios_knl_Task_Module__state__V                            
    0100b1a9  ti_sysbios_knl_Task_Module_startup__E                           
    01011648  ti_sysbios_knl_Task_Object__DESC__C                             
    010112a0  ti_sysbios_knl_Task_Object__PARAMS__C                           
    01011b00  ti_sysbios_knl_Task_Object__count__C                            
    01010121  ti_sysbios_knl_Task_Object__delete__S                           
    01010a39  ti_sysbios_knl_Task_Object__get__S                              
    01011b04  ti_sysbios_knl_Task_Object__heap__C                             
    2000a11c  ti_sysbios_knl_Task_Object__table__V                            
    01010c85  ti_sysbios_knl_Task_Params__init__S                             
    0100dc05  ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S         
    01010c09  ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E           
    0100f581  ti_sysbios_knl_Task_SupportProxy_start__E                       
    010109e9  ti_sysbios_knl_Task_SupportProxy_swap__E                        
    01011b08  ti_sysbios_knl_Task_allBlockedFunc__C                           
    0100dc09  ti_sysbios_knl_Task_allBlockedFunction__I                       
    0100d821  ti_sysbios_knl_Task_create                                      
    01011b0c  ti_sysbios_knl_Task_defaultStackHeap__C                         
    01011b10  ti_sysbios_knl_Task_defaultStackSize__C                         
    0100ebfd  ti_sysbios_knl_Task_delete                                      
    01010a49  ti_sysbios_knl_Task_disable__E                                  
    01010399  ti_sysbios_knl_Task_enter__I                                    
    0100adb1  ti_sysbios_knl_Task_exit__E                                     
    010117b4  ti_sysbios_knl_Task_hooks__A                                    
    010119f8  ti_sysbios_knl_Task_hooks__C                                    
    01011b14  ti_sysbios_knl_Task_numConstructedTasks__C                      
    01007279  ti_sysbios_knl_Task_postInit__I                                 
    0100f0d9  ti_sysbios_knl_Task_processVitalTaskFlag__I                     
    0100ff31  ti_sysbios_knl_Task_restoreHwi__E                               
    0100f6d1  ti_sysbios_knl_Task_restore__E                                  
    0100dc59  ti_sysbios_knl_Task_schedule__I                                 
    01010c91  ti_sysbios_knl_Task_self__E                                     
    0100a351  ti_sysbios_knl_Task_setPri__E                                   
    01010621  ti_sysbios_knl_Task_sleepTimeout__I                             
    01008c01  ti_sysbios_knl_Task_sleep__E                                    
    0100cee1  ti_sysbios_knl_Task_startCore__E                                
    01010e41  ti_sysbios_knl_Task_startup__E                                  
    010109f1  ti_sysbios_knl_Task_swapReturn                                  
    0100f701  ti_sysbios_knl_Task_unblockI__E                                 
    2000a494  ti_sysbios_rts_ti_ReentSupport_Module__state__V                 
    010103b9  ti_sysbios_rts_ti_ReentSupport_getReent__E                      
    010103b9  ti_sysbios_rts_ti_ReentSupport_getReent__F                      
    01010639  ti_sysbios_rts_ti_ReentSupport_getTlsAddr__I                    
    01010ca1  ti_sysbios_rts_ti_ReentSupport_taskRegHook__I                   
    01011668  timerCC32XXHWAttrs                                              
    20009abc  timerCC32XXObjects                                              
    0100ed35  timerCallback                                                   
    0100f3c1  timerCallback1                                                  
    2000a184  timestamp                                                       
    01010cad  uDMAErrorStatusClear                                            
    01010cb9  uDMAErrorStatusGet                                              
    20009c78  uart                                                            
    20009c7c  uart1                                                           
    20009934  uartCC32XXObjects0                                              
    200099b8  uartCC32XXObjects1                                              
    010119a0  udmaCC3220SHWAttrs                                              
    20009c58  udmaCC3220SObject                                               
    0100edb1  usleep                                                          
    00000001  xdc_rov_runtime_Mon__checksum                                   
    00000001  xdc_rov_runtime_Mon__write                                      
    0100e171  xdc_runtime_Core_assignParams__I                                
    0100b7a1  xdc_runtime_Core_constructObject__I                             
    010091f9  xdc_runtime_Core_createObject__I                                
    0100c271  xdc_runtime_Core_deleteObject__I                                
    01011b18  xdc_runtime_Error_E_memory__C                                   
    2000a344  xdc_runtime_Error_IgnoreBlock                                   
    01010681  xdc_runtime_Error_init__E                                       
    01011b1c  xdc_runtime_Error_policyFxn__C                                  
    0100ff59  xdc_runtime_Error_policyMin__E                                  
    010114c5  xdc_runtime_Error_policy__C                                     
    01011b20  xdc_runtime_IGateProvider_Interface__BASE__C                    
    01011b24  xdc_runtime_IHeap_Interface__BASE__C                            
    01011b28  xdc_runtime_IModule_Interface__BASE__C                          
    0100f8f5  xdc_runtime_Main_Module_GateProxy_Handle__label__S              
    01010e29  xdc_runtime_Main_Module_GateProxy_query__E                      
    0100f94d  xdc_runtime_Memory_HeapProxy_Handle__label__S                   
    01010d6d  xdc_runtime_Memory_HeapProxy_alloc__E                           
    01010d77  xdc_runtime_Memory_HeapProxy_free__E                            
    01011a8e  xdc_runtime_Memory_Module__id__C                                
    2000a498  xdc_runtime_Memory_Module__state__V                             
    0100b469  xdc_runtime_Memory_alloc__E                                     
    01011b2c  xdc_runtime_Memory_defaultHeapInstance__C                       
    01010a59  xdc_runtime_Memory_free__E                                      
    2000a448  xdc_runtime_Startup_Module__state__V                            
    00000001  xdc_runtime_Startup__EXECFXN__C                                 
    00000001  xdc_runtime_Startup__RESETFXN__C                                
    01011b30  xdc_runtime_Startup_execImpl__C                                 
    0100cf41  xdc_runtime_Startup_exec__E                                     
    010108d3  xdc_runtime_Startup_exec__I                                     
    010119ac  xdc_runtime_Startup_firstFxns__A                                
    01011a00  xdc_runtime_Startup_firstFxns__C                                
    01011a08  xdc_runtime_Startup_lastFxns__C                                 
    01011b34  xdc_runtime_Startup_maxPasses__C                                
    0100ab5f  xdc_runtime_Startup_reset__I                                    
    01010cc9  xdc_runtime_Startup_rtsDone__E                                  
    01011948  xdc_runtime_Startup_sfxnRts__A                                  
    01011b38  xdc_runtime_Startup_sfxnRts__C                                  
    01011688  xdc_runtime_Startup_sfxnTab__A                                  
    01011b3c  xdc_runtime_Startup_sfxnTab__C                                  
    01006be9  xdc_runtime_Startup_startMods__I                                
    01011b40  xdc_runtime_SysCallback_abortFxn__C                             
    01010a69  xdc_runtime_SysCallback_abort__E                                
    01010e61  xdc_runtime_SysCallback_defaultAbort                            
    01010e69  xdc_runtime_SysCallback_defaultExit                             
    01011b44  xdc_runtime_SysCallback_exitFxn__C                              
    01010a79  xdc_runtime_SysCallback_exit__E                                 
    0100f8f5  xdc_runtime_System_Module_GateProxy_Handle__label__S            
    0100ec3d  xdc_runtime_System_Module_GateProxy_enter__E                    
    0100ecf5  xdc_runtime_System_Module_GateProxy_leave__E                    
    01010e29  xdc_runtime_System_Module_GateProxy_query__E                    
    2000a450  xdc_runtime_System_Module_State_0_atexitHandlers__A             
    01011b48  xdc_runtime_System_Module__gateObj__C                           
    2000a458  xdc_runtime_System_Module__state__V                             
    01010e11  xdc_runtime_System_Module_startup__E                            
    01010a69  xdc_runtime_System_SupportProxy_abort__E                        
    01010a79  xdc_runtime_System_SupportProxy_exit__E                         
    01011b4c  xdc_runtime_System_abortFxn__C                                  
    01010e71  xdc_runtime_System_abortSpin__E                                 
    0100cf3d  xdc_runtime_System_abortStd__E                                  
    0100e581  xdc_runtime_System_atexit__E                                    
    01011b50  xdc_runtime_System_exitFxn__C                                   
    01010e79  xdc_runtime_System_exitSpin__E                                  
    01010699  xdc_runtime_System_exit__E                                      
    01011b54  xdc_runtime_System_maxAtexitHandlers__C                         
    0100edf1  xdc_runtime_System_processAtExit__E                             
    
    
    GLOBAL SYMBOLS: SORTED BY Symbol Address 
    
    address   name                                                            
    -------   ----                                                            
    00000000  __ASM__                                                         
    00000001  xdc_rov_runtime_Mon__checksum                                   
    00000001  xdc_rov_runtime_Mon__write                                      
    00000001  xdc_runtime_Startup__EXECFXN__C                                 
    00000001  xdc_runtime_Startup__RESETFXN__C                                
    00000083  __ISA__                                                         
    00000096  __PLAT__                                                        
    000000bd  __TARG__                                                        
    000000e2  __TRDR__                                                        
    00000400  __STACK_SIZE                                                    
    00008000  HEAPSIZE                                                        
    01000800  ti_sysbios_family_arm_m3_Hwi_resetVectors                       
    01001129  _SlSocketHandleAsync_Select                                     
    010015e5  PRCMCC3200MCUInit                                               
    01001d95  mainThread                                                      
    010020ed  _SlDrvReleasePoolObj                                            
    01002409  _SlDrvWaitForPoolObj                                            
    010029c1  sl_Select                                                       
    01002c6d  UARTCC32XX_open                                                 
    01002eed  sl_WlanConnect                                                  
    01003169  _SlDrvDataReadOp                                                
    010033c5  mainThread1                                                     
    010035fd  _SlDrvDriverCBInit                                              
    01003821  _SlDrvDataWriteOp                                               
    01003a39  Scan_APs                                                        
    01003e3d  _SlNetAppEventHandler                                           
    0100402f  Board_initHook                                                  
    01004031  GPIO_setConfig                                                  
    01004215  sl_Stop                                                         
    010043f5  SPICC32XXDMA_transfer                                           
    0100477d  _SlDrvReleaseAllActivePendingPoolObj                            
    01004931  sl_Accept                                                       
    01004ad9  read_sensor                                                     
    01004f89  sl_Connect                                                      
    01005101  sl_NetAppDnsGetHostByName                                       
    01005271  SPICC32XXDMA_open                                               
    010053c9  sl_RecvFrom                                                     
    0100551d  PowerCC32XX_sleepPolicy                                         
    010058f9  sl_StartTLS                                                     
    01005a41  _SlDrvMsgReadSpawnCtx                                           
    01005b81  Power_sleep                                                     
    01005cb9  _SlSpawnMsgListInsert                                           
    01005df1  _SlSocketHandleAsync_StartTLS                                   
    01005f25  __vla_alloc                                                     
    01006059  _SlDrvDriverCBDeinit                                            
    01006189  create_send_udp_packet                                          
    010062b9  ti_sysbios_knl_Semaphore_pend__E                                
    010063e9  TimerCC32XX_open                                                
    0100675f  I2CCC32XX_init                                                  
    01006761  sl_FsOpen                                                       
    01006885  ErrnoUtil_set                                                   
    010069a5  UARTCC32XX_close                                                
    01006be5  ClockP_getCpuFreq                                               
    01006be9  xdc_runtime_Startup_startMods__I                                
    01006d09  sl_Start                                                        
    01006e25  SimpleLinkNetAppEventHandler                                    
    01006f3d  _SlNetAppHandleAsync_DnsGetHostByService                        
    01007055  I2CCC32XX_transfer                                              
    01007165  strtoul                                                         
    01007275  ClockP_setTimeout                                               
    01007279  ti_sysbios_knl_Task_postInit__I                                 
    01007491  _SlDeviceEventHandler                                           
    01007595  _SlDrvCmdOp                                                     
    01007699  ti_sysbios_knl_Task_Instance_finalize__E                        
    0100779d  I2CCC32XX_open                                                  
    0100789d  _SlDrvObjGlobalLockWaitForever                                  
    0100799d  sl_FsWrite                                                      
    01007a9d  SlNetIfWifi_loadSecObj                                          
    01007b95  sl_Close                                                        
    01007c8d  sl_SendTo                                                       
    01007d81  SPICC32XXDMA_transferCancel                                     
    01007e73  UARTCC32XX_control                                              
    01007f65  ClockP_start                                                    
    01007f69  pthread_create                                                  
    01008059  ti_sysbios_knl_Task_Instance_init__E                            
    01008149  clock_gettime                                                   
    01008235  SlNetIf_add                                                     
    01008319  SPICC32XXDMA_close                                              
    010083f1  _SlDeviceHandleAsync_InitComplete                               
    010084c9  _SlDrvWaitForInternalAsyncEvent                                 
    010085a1  _SlNetAppHandleAsync_NetAppReceive                              
    01008749  ti_sysbios_heaps_HeapMem_alloc__E                               
    01008819  ti_sysbios_family_arm_m3_Hwi_dispatch__I                        
    010088c9  ti_sysbios_family_arm_m3_Hwi_interruptsAreDisabledButShouldNotBe
    010088e5  UARTCC32XX_write                                                
    01008a77  TimerCC32XX_init                                                
    01008a79  Connect                                                         
    01008b3d  GPIO_init                                                       
    01008c01  ti_sysbios_knl_Task_sleep__E                                    
    01008cc5  NwpPowerOff                                                     
    01008d85  check_button                                                    
    01008f05  sl_NetCfgGet                                                    
    01008fc5  _SlNetAppSendResponse                                           
    01009081  main                                                            
    0100913d  sl_Send                                                         
    010091f9  xdc_runtime_Core_createObject__I                                
    010092b5  UARTCC32XX_readPolling                                          
    0100936f  UARTCC32XX_init                                                 
    01009371  _SlNetAppHandleAsync_DnsGetHostByName                           
    01009429  _SlNetAppHandleAsync_PingResponse                               
    01009599  send_udp_packet                                                 
    01009651  sl_WlanGet                                                      
    01009709  ti_sysbios_family_arm_m3_Hwi_Instance_init__E                   
    01009877  _nop                                                            
    01009879  _SlDrvHandleFatalError                                          
    0100992d  _SlNetUtilHandleAsync_Cmd                                       
    010099e1  check_uart_data                                                 
    01009a95  sl_GetSockOpt                                                   
    01009b49  SlNetIfWifi_getSockOpt                                          
    01009d57  matchModeByRole                                                 
    01009eb3  __aeabi_idiv0                                                   
    01009eb3  __aeabi_ldiv0                                                   
    01009eb5  _SlSocketHandleAsync_Close                                      
    01009f61  _SlSocketHandleAsync_Connect                                    
    0100a00d  PRCMPeripheralClockGet                                          
    0100a0b5  PowerCC32XX_configureWakeup                                     
    0100a15d  sl_FsClose                                                      
    0100a205  _SlDrvIsTimeoutExpired                                          
    0100a2ab  ti_sysbios_BIOS_nullFunc__I                                     
    0100a2ad  sl_Bind                                                         
    0100a351  ti_sysbios_knl_Task_setPri__E                                   
    0100a679  _SlSpawnMsgListProcess                                          
    0100a719  __TI_auto_init                                                  
    0100a7b9  spi_Read                                                        
    0100a857  spi_Write                                                       
    0100a8f5  ClockP_stop                                                     
    0100a8f9  _pthread_removeThreadKeys                                       
    0100a995  __aeabi_memcpy                                                  
    0100a995  __aeabi_memcpy4                                                 
    0100a995  __aeabi_memcpy8                                                 
    0100a995  memcpy                                                          
    0100aac9  __aeabi_uldivmod                                                
    0100ab5f  xdc_runtime_Startup_reset__I                                    
    0100ab61  Semaphore_pend_handle                                           
    0100abf5  SimpleLinkWlanEventHandler                                      
    0100ad1d  sl_WlanGetNetworkList                                           
    0100adb1  ti_sysbios_knl_Task_exit__E                                     
    0100ae45  SlNetSock_create                                                
    0100aff9  _SlDeviceHandleAsync_Stop                                       
    0100b089  _SlSocketHandleAsync_Accept                                     
    0100b1a9  ti_sysbios_knl_Task_Module_startup__E                           
    0100b2c5  _SlDrvDriverIsApiAllowed                                        
    0100b351  _SlDrvProtectAsyncRespSetting                                   
    0100b3dd  sl_Recv                                                         
    0100b469  xdc_runtime_Memory_alloc__E                                     
    0100b4f5  I2CCC32XX_close                                                 
    0100b57d  PinConfigSet                                                    
    0100b605  TimerCC32XX_setPeriod                                           
    0100b68d  sl_UnregisterLibsEventHandler                                   
    0100b715  HwiP_clearInterrupt                                             
    0100b719  ti_sysbios_family_arm_m3_Hwi_initNVIC__E                        
    0100b7a1  xdc_runtime_Core_constructObject__I                             
    0100b829  Power_init                                                      
    0100b8ad  SlNetIfWifi_sockstartSec                                        
    0100b9b5  sl_SetSockOpt                                                   
    0100ba39  ti_sysbios_family_arm_m3_Hwi_postInit__I                        
    0100babd  HwiP_disable                                                    
    0100bac1  ti_sysbios_heaps_HeapMem_free__E                                
    0100bb45  Power_setDependency                                             
    0100bbc5  HwiP_disableInterrupt                                           
    0100bbc9  ti_sysbios_knl_Clock_workFunc__E                                
    0100bc49  UDMACC32XX_open                                                 
    0100bcc5  HwiP_enableInterrupt                                            
    0100bcc9  _pthread_abstime2ticks                                          
    0100bdc1  sl_WlanPolicySet                                                
    0100be3d  __aeabi_memclr                                                  
    0100be3d  __aeabi_memclr4                                                 
    0100be3d  __aeabi_memclr8                                                 
    0100be3f  __aeabi_memset                                                  
    0100be3f  __aeabi_memset4                                                 
    0100be3f  __aeabi_memset8                                                 
    0100be45  memset                                                          
    0100beb9  GPIO_hwiIntFxn                                                  
    0100bf31  TimerCC32XX_start                                               
    0100c021  __vla_dealloc                                                   
    0100c111  sl_Socket                                                       
    0100c271  xdc_runtime_Core_deleteObject__I                                
    0100c355  _SlDrvCmdSend_noLock                                            
    0100c3c5  SPICC32XXDMA_init                                               
    0100c439  ti_sysbios_heaps_HeapMem_initPrimary__I                         
    0100c515  _SlDeviceHandleResetRequestInternally                           
    0100c5ed  _SlNetAppSendTokenValue                                         
    0100c659  ti_sysbios_knl_Swi_restoreHwi__E                                
    0100c6c5  _SlSpawnMsgListGetCount                                         
    0100c72d  __TI_decompress_lzss                                            
    0100c795  SemaphoreP_post                                                 
    0100c799  pthread_exit                                                    
    0100c801  spi_Open                                                        
    0100c869  ti_sysbios_family_arm_cc32xx_Seconds_getTime__E                 
    0100c869  ti_sysbios_hal_Seconds_SecondsProxy_getTime__E                  
    0100c869  ti_sysbios_hal_Seconds_getTime__E                               
    0100c8d1  UARTCC32XX_writeCancel                                          
    0100c939  GPIO_toggle                                                     
    0100c99d  PowerCC32XX_setParkState                                        
    0100ca01  ti_sysbios_family_arm_m3_Hwi_dispatchC__I                       
    0100ca65  UARTCC32XX_writePolling                                         
    0100cac9  PRCMSysResetCauseGet                                            
    0100cb29  SlNetSock_sendTo                                                
    0100cb89  get_network_list                                                
    0100cbe9  ti_sysbios_knl_Semaphore_post__E                                
    0100cc49  ti_sysbios_knl_Swi_run__I                                       
    0100cd07  SlNetIfWifi_setSockOpt                                          
    0100cd65  GPIO_setCallback                                                
    0100cdc1  _SlInternalSpawn                                                
    0100ce1d  SlNetIf_init                                                    
    0100ce21  ti_sysbios_family_arm_m3_Timer_start__E                         
    0100ce7d  SlNetUtil_init                                                  
    0100ce81  ti_sysbios_knl_Swi_schedule__I                                  
    0100cedd  __abort_execution                                               
    0100cee1  ti_sysbios_knl_Task_startCore__E                                
    0100cf3d  C$$EXIT                                                         
    0100cf3d  abort                                                           
    0100cf3d  xdc_runtime_System_abortStd__E                                  
    0100cf41  xdc_runtime_Startup_exec__E                                     
    0100cf9d  GPIO_write                                                      
    0100cff5  PRCMPeripheralReset                                             
    0100d04d  Power_releaseDependency                                         
    0100d0fd  ti_sysbios_BIOS_RtsGateProxy_enter__E                           
    0100d101  pthread_mutex_init                                              
    0100d159  sl_Listen                                                       
    0100d1b1  sl_RegisterLibsEventHandler                                     
    0100d209  ti_sysbios_family_arm_cc32xx_Seconds_getCount__I                
    0100d261  TimerCC32XX_stop                                                
    0100d2b9  _SlDrvRxIrqHandler                                              
    0100d361  ti_sysbios_family_arm_m3_Hwi_create                             
    0100d3b5  ti_sysbios_BIOS_RtsGateProxy_leave__E                           
    0100d3b9  ti_sysbios_family_arm_m3_Timer_setPeriod__E                     
    0100d40d  PowerCC32XX_resumeLPDS                                          
    0100d4b1  NwpRegisterInterruptHandler                                     
    0100d501  SlNetIf_queryIf                                                 
    0100d551  TimerCC32XX_allocateTimerResource                               
    0100d5f1  _SlDrvCmdSend_noWait                                            
    0100d691  _SlInternalSpawnTaskEntry                                       
    0100d6e1  _SlNetAppHttpServerHdlr                                         
    0100d731  _SlNetAppRequestHdlr                                            
    0100d781  ti_sysbios_family_arm_m3_Hwi_Module_startup__E                  
    0100d7d1  ti_sysbios_knl_Clock_Instance_init__E                           
    0100d821  ti_sysbios_knl_Task_create                                      
    0100d871  GPIO_enableInt                                                  
    0100d8bd  NwpWaitForShutDownInd                                           
    0100d909  PowerCC32XX_parkPin                                             
    0100d955  SlNetIfWifi_getConnectionStatus                                 
    0100d9ed  copy_in                                                         
    0100da39  printError                                                      
    0100dad1  sl_WlanSetMode                                                  
    0100db1d  ti_sysbios_family_arm_m3_TaskSupport_buildTaskStack             
    0100db69  ti_sysbios_heaps_HeapMem_getStats__E                            
    0100dbb5  ti_sysbios_family_arm_m3_Hwi_delete                             
    0100dbb9  ti_sysbios_knl_Swi_runLoop__I                                   
    0100dc05  ti_sysbios_family_arm_m3_TaskSupport_Module__startupDone__S     
    0100dc05  ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S         
    0100dc09  ti_sysbios_knl_Task_allBlockedFunction__I                       
    0100dc55  ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E              
    0100dc59  ti_sysbios_knl_Task_schedule__I                                 
    0100dca5  FlashDisable                                                    
    0100dced  PRCMLPDSEnter                                                   
    0100dd35  PRCMPeripheralClkEnable                                         
    0100dd7d  Power_releaseConstraint                                         
    0100ddc5  SlNetSock_init                                                  
    0100de0d  _SlDeviceFatalErrorEvtHdlr                                      
    0100de55  _SlDeviceGeneralEvtHdlr                                         
    0100de9d  _SlDrvSyncObjWaitTimeout                                        
    0100dee5  _SlNetAppEvtHdlr                                                
    0100df2d  _SlNetAppRequestMemFree                                         
    0100df75  _SlSockEvtHdlr                                                  
    0100dfbd  _SlWlanEvtHdlr                                                  
    0100e005  ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E              
    0100e009  ti_sysbios_family_arm_m3_Hwi_disableInterrupt__E                
    0100e009  ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E                 
    0100e009  ti_sysbios_hal_Hwi_disableInterrupt__E                          
    0100e051  ti_sysbios_family_arm_m3_Hwi_enableInterrupt__E                 
    0100e051  ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E                  
    0100e051  ti_sysbios_hal_Hwi_enableInterrupt__E                           
    0100e099  ti_sysbios_family_arm_m3_Hwi_initStacks__E                      
    0100e0e1  ti_sysbios_family_arm_m3_Timer_initDevice__I                    
    0100e129  ti_sysbios_knl_Mailbox_Module_startup__E                        
    0100e171  xdc_runtime_Core_assignParams__I                                
    0100e1b9  RingBuf_put                                                     
    0100e245  I2C_init                                                        
    0100e289  PRCMLPDSRestoreInfoSet                                          
    0100e2cd  PowerCC32XX_enterLPDS                                           
    0100e311  SPI_init                                                        
    0100e399  Timer_init                                                      
    0100e3dd  UART_init                                                       
    0100e421  _c_int00                                                        
    0100e465  ti_net_SlNet_initConfig                                         
    0100e4a9  ti_sysbios_family_arm_m3_Hwi_getStackInfo__E                    
    0100e4a9  ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E                     
    0100e4a9  ti_sysbios_hal_Hwi_getStackInfo__E                              
    0100e4ed  ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E                  
    0100e4f1  ti_sysbios_knl_Mailbox_postInit__I                              
    0100e535  ti_sysbios_knl_Clock_TimerProxy_setPeriodMicroSecs__E           
    0100e539  ti_sysbios_knl_Swi_post__E                                      
    0100e57d  ti_sysbios_knl_Clock_TimerProxy_start__E                        
    0100e581  xdc_runtime_System_atexit__E                                    
    0100e5c5  ClockP_create                                                   
    0100e645  HwiP_create                                                     
    0100e685  I2C_open                                                        
    0100e6c5  PinModeSet                                                      
    0100e705  RingBuf_get                                                     
    0100e745  SPI_open                                                        
    0100e785  Timer_open                                                      
    0100e7c5  UARTCC32XX_read                                                 
    0100e805  UART_open                                                       
    0100e845  UDMACC32XX_init                                                 
    0100e885  _SlDrvGlobalObjUnLock                                           
    0100e8c5  _SlFindAndReleasePendingCmd                                     
    0100e905  _SlInternalSpawnWaitForEvent                                    
    0100e945  _SlIsEventRegistered                                            
    0100e985  ti_sysbios_knl_Clock_TimerProxy_stop__E                         
    0100e989  ti_sysbios_heaps_HeapMem_Instance_init__E                       
    0100e9c9  SlNetSock_close                                                 
    0100ea45  realloc                                                         
    0100ea83  I2CCC32XX_control                                               
    0100ea89  sem_timedwait                                                   
    0100eac9  Power_setConstraint                                             
    0100eb05  SemaphoreP_create                                               
    0100eb7d  ti_sysbios_knl_Clock_delete                                     
    0100eb81  pthread_mutex_unlock                                            
    0100ebbd  ti_sysbios_knl_Semaphore_delete                                 
    0100ebc1  sleep                                                           
    0100ebfd  ti_sysbios_knl_Task_delete                                      
    0100ec01  ti_sysbios_family_arm_m3_Hwi_Instance_finalize__E               
    0100ec3d  xdc_runtime_System_Module_GateProxy_enter__E                    
    0100ec41  ti_sysbios_family_arm_m3_Timer_setPeriodMicroSecs__E            
    0100ec7d  ti_sysbios_knl_Clock_create                                     
    0100ecb9  ti_sysbios_knl_Clock_getTicksUntilTimeout__E                    
    0100ecb9  ti_sysbios_knl_Clock_walkQueuePeriodic__E                       
    0100ecf5  xdc_runtime_System_Module_GateProxy_leave__E                    
    0100ecf9  ti_sysbios_knl_Swi_restore__E                                   
    0100ed35  timerCallback                                                   
    0100edb1  usleep                                                          
    0100edf1  xdc_runtime_System_processAtExit__E                             
    0100ee67  SlNetIfWifi_getIPAddr                                           
    0100eea1  TimerCC32XX_close                                               
    0100ef15  GPIO_read                                                       
    0100ef4d  PRCMLPDSEnterKeepDebugIf                                        
    0100ef85  SlNetIfWifi_recvFrom                                            
    0100efbd  SlNetIfWifi_sendTo                                              
    0100eff5  SlNetIfWifi_socket                                              
    0100f0d9  ti_sysbios_knl_Task_processVitalTaskFlag__I                     
    0100f111  SlNetIfWifi_getHostByName                                       
    0100f147  SlNetIfWifi_select                                              
    0100f17d  TimerControlStall                                               
    0100f1b3  UARTCC32XX_readCancel                                           
    0100f1e9  PinModeGet                                                      
    0100f21d  PowerCC32XX_restoreParkState                                    
    0100f251  SlNetUtil_htons                                                 
    0100f251  SlNetUtil_ntohs                                                 
    0100f285  TimerCC32XX_freeTimerResource                                   
    0100f2b9  UDMACC32XX_close                                                
    0100f359  ti_sysbios_family_arm_m3_Timer_periodicStub__I                  
    0100f38d  ti_sysbios_knl_Semaphore_create                                 
    0100f3c1  timerCallback1                                                  
    0100f3f9  ti_sysbios_hal_Hwi_initStack                                    
    0100f42b  I2CCC32XX_cancel                                                
    0100f45b  PowerCC32XX_restoreParkedPin                                    
    0100f4bd  button_pressed                                                  
    0100f521  ti_sysbios_BIOS_atExitFunc__I                                   
    0100f551  ti_sysbios_BIOS_startFunc__I                                    
    0100f581  ti_sysbios_family_arm_m3_TaskSupport_start__E                   
    0100f581  ti_sysbios_knl_Task_SupportProxy_start__E                       
    0100f5b1  ti_sysbios_gates_GateHwi_Object__create__S                      
    0100f5e1  ti_sysbios_gates_GateMutex_Object__create__S                    
    0100f611  ti_sysbios_gates_GateMutex_enter__E                             
    0100f641  ti_sysbios_heaps_HeapMem_Object__create__S                      
    0100f671  ti_sysbios_knl_Semaphore_construct                              
    0100f6a1  ti_sysbios_knl_Semaphore_pendTimeout__I                         
    0100f6d1  ti_sysbios_knl_Task_restore__E                                  
    0100f701  ti_sysbios_knl_Task_unblockI__E                                 
    0100f731  Mutex_create_handle                                             
    0100f75f  malloc                                                          
    0100f78d  NwpPowerOn                                                      
    0100f7b9  PowerCC32XX_getParkState                                        
    0100f7e5  SemaphoreP_createBinary                                         
    0100f811  SlNetIfWifi_recv                                                
    0100f83d  SlNetIfWifi_send                                                
    0100f869  _SlDrvSyncObjWaitForever                                        
    0100f899  _pthread_cleanupFxn                                             
    0100f8f5  ti_sysbios_gates_GateHwi_Handle__label__S                       
    0100f8f5  xdc_runtime_Main_Module_GateProxy_Handle__label__S              
    0100f8f5  xdc_runtime_System_Module_GateProxy_Handle__label__S            
    0100f921  ti_sysbios_BIOS_RtsGateProxy_Handle__label__S                   
    0100f921  ti_sysbios_gates_GateMutex_Handle__label__S                     
    0100f921  ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S      
    0100f94d  ti_sysbios_heaps_HeapMem_Handle__label__S                       
    0100f94d  xdc_runtime_Memory_HeapProxy_Handle__label__S                   
    0100f979  ti_sysbios_knl_Clock_doTick__I                                  
    0100f9a5  ti_sysbios_knl_Queue_construct                                  
    0100f9d1  Display_doPrintf                                                
    0100f9fb  SlNetUtil_inetPton                                              
    0100fa25  TimerLoadSet                                                    
    0100fa4f  TimerPrescaleSet                                                
    0100fa79  calloc                                                          
    0100faa3  SPICC32XXDMA_control                                            
    0100faa9  sem_init                                                        
    0100fad3  I2CFIFODataPutNonBlocking                                       
    0100fafd  PRCMPeripheralClkDisable                                        
    0100fb25  PowerCC32XX_initPolicy                                          
    0100fb4d  Power_registerNotify                                            
    0100fb75  SlNetIf_getIfByID                                               
    0100fb9d  _SlDrvProtectionObjLockWaitForever                              
    0100fbc5  _SlDrvProtectionObjUnLock                                       
    0100fbed  _SlFlowContSet                                                  
    0100fc15  ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I                   
    0100fc41  ti_sysbios_knl_Clock_addI__E                                    
    0100fc69  ti_sysbios_knl_Swi_Module_startup__E                            
    0100fc91  I2CFIFODataGetNonBlocking                                       
    0100fcb7  List_put                                                        
    0100fcdd  List_remove                                                     
    0100fd05  PowerCC32XX_reset                                               
    0100fd29  SlNetIf_getConnectionStatus                                     
    0100fd4d  _SlDrvIsApiInProgress                                           
    0100fd71  _SlDrvStartMeasureTimeout                                       
    0100fd99  pthread_attr_init                                               
    0100fdbd  ti_sysbios_BIOS_registerRTSLock__I                              
    0100fde1  ti_sysbios_BIOS_removeRTSLock__I                                
    0100fe09  ti_sysbios_family_arm_m3_Timer_postInit__I                      
    0100fe31  ti_sysbios_family_arm_m3_Timer_startup__E                       
    0100fe31  ti_sysbios_knl_Clock_TimerProxy_startup__E                      
    0100fe55  ti_sysbios_gates_GateMutex_Object__delete__S                    
    0100fe79  ti_sysbios_knl_Clock_Module_startup__E                          
    0100fe9d  ti_sysbios_knl_Clock_Object__delete__S                          
    0100fec1  ti_sysbios_knl_Clock_start__E                                   
    0100fee9  ti_sysbios_knl_Semaphore_Instance_init__E                       
    0100ff0d  ti_sysbios_knl_Semaphore_Object__delete__S                      
    0100ff31  ti_sysbios_knl_Task_restoreHwi__E                               
    0100ff59  xdc_runtime_Error_policyMin__E                                  
    0100ff7d  I2CMasterSlaveAddrSet                                           
    0100ffa1  Power_unregisterNotify                                          
    0100ffc1  RingBuf_peek                                                    
    0100ffe1  SlNetIfWifi_accept                                              
    01010041  ti_sysbios_BIOS_rtsLock__I                                      
    01010061  ti_sysbios_family_arm_m3_Hwi_Object__delete__S                  
    01010081  ti_sysbios_family_arm_m3_Hwi_clearInterrupt__E                  
    01010081  ti_sysbios_hal_Hwi_HwiProxy_clearInterrupt__E                   
    01010081  ti_sysbios_hal_Hwi_clearInterrupt__E                            
    010100a1  ti_sysbios_gates_GateHwi_Object__delete__S                      
    010100c1  ti_sysbios_heaps_HeapMem_Object__delete__S                      
    010100e1  ti_sysbios_knl_Idle_run__E                                      
    01010101  ti_sysbios_knl_Semaphore_destruct                               
    01010121  ti_sysbios_knl_Task_Object__delete__S                           
    01010141  I2CMasterIntStatusEx                                            
    0101015f  SlNetIfWifi_bind                                                
    0101017d  SlNetIfWifi_connect                                             
    0101019b  TimerDisable                                                    
    010101b9  TimerEnable                                                     
    010101d7  _SlDrvObjLockWaitForever                                        
    010101f5  _SlDrvObjUnLock                                                 
    01010213  _SlDrvSyncObjSignal                                             
    0101024f  ti_sysbios_family_xxx_Hwi_switchAndRunFunc                      
    0101026d  PinToPadGet                                                     
    010102a5  _SlInternalIsItSpawnThread                                      
    010102c1  ti_sysbios_family_arm_m3_Hwi_excHandler__I                      
    010102e1  ti_sysbios_family_arm_m3_Timer_Module_startup__E                
    01010301  ti_sysbios_family_arm_m3_Timer_stop__E                          
    01010321  ti_sysbios_gates_GateMutex_Instance_init__E                     
    01010341  ti_sysbios_knl_Clock_Instance_finalize__E                       
    0101035d  ti_sysbios_knl_Queue_destruct                                   
    01010379  ti_sysbios_knl_Queue_put__E                                     
    01010399  ti_sysbios_knl_Task_enter__I                                    
    010103b9  ti_sysbios_rts_ti_ReentSupport_getReent__E                      
    010103b9  ti_sysbios_rts_ti_ReentSupport_getReent__F                      
    010103d5  SlNetIfWifi_listen                                              
    010103ef  free                                                            
    01010409  sendto                                                          
    01010423  ti_sysbios_family_arm_m3_Hwi_pendSV__I                          
    0101043b  ti_sysbios_family_arm_m3_Hwi_return                             
    0101043d  I2CMasterBusBusy                                                
    01010455  I2CMasterIntDisableEx                                           
    0101046d  I2CMasterIntEnableEx                                            
    01010485  I2CRxFIFOFlush                                                  
    0101049d  I2CTxFIFOFlush                                                  
    010104b5  I2C_transfer                                                    
    010104cd  Power_idleFunc                                                  
    010104e5  TimerCC32XX_getCount                                            
    010104fd  TimerIntDisable                                                 
    01010515  TimerIntEnable                                                  
    0101052d  UARTBusy                                                        
    01010545  UARTIntEnable                                                   
    0101055d  UART_Params_init                                                
    01010575  _args_main                                                      
    010105a5  __aeabi_lmul                                                    
    010105bd  ti_sysbios_BIOS_rtsUnlock__I                                    
    010105d5  ti_sysbios_family_arm_m3_Hwi_Module__startupDone__F             
    010105d5  ti_sysbios_family_arm_m3_Hwi_Module__startupDone__S             
    010105d5  ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S              
    010105ed  ti_sysbios_family_arm_m3_Timer_Module__startupDone__F           
    010105ed  ti_sysbios_family_arm_m3_Timer_Module__startupDone__S           
    010105ed  ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S          
    01010609  ti_sysbios_gates_GateMutex_leave__E                             
    01010621  ti_sysbios_knl_Task_sleepTimeout__I                             
    01010639  ti_sysbios_rts_ti_ReentSupport_getTlsAddr__I                    
    01010681  xdc_runtime_Error_init__E                                       
    01010699  xdc_runtime_System_exit__E                                      
    010106b1  I2CMasterBurstLengthSet                                         
    010106c7  PRCMHIBRegRead                                                  
    010106dd  PRCMHIBRegWrite                                                 
    010106f3  _SlDrvMemZero                                                   
    01010709  inet_pton                                                       
    01010721  pthread_mutex_destroy                                           
    01010737  socket                                                          
    0101074d  ti_sysbios_BIOS_exitFunc__I                                     
    01010765  Power_getDependencyCount                                        
    01010779  SPI_Params_init                                                 
    01010791  pthread_attr_setschedparam                                      
    010107b9  strcpy                                                          
    010107cd  strlen                                                          
    010107e1  ti_sysbios_family_arm_m3_Hwi_Object__get__S                     
    010107f9  ti_sysbios_family_arm_m3_Hwi_switchFromBootStack__E             
    010107f9  ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E              
    010107f9  ti_sysbios_hal_Hwi_switchFromBootStack__E                       
    0101080d  ti_sysbios_heaps_HeapMem_Object__get__S                         
    01010821  ti_sysbios_knl_Clock_tickReconfig__E                            
    01010835  ti_sysbios_knl_Swi_Object__get__S                               
    01010849  I2CMasterIntClearEx                                             
    0101085b  RingBuf_construct                                               
    0101086d  SemaphoreP_pend                                                 
    0101087f  SlNetIfWifi_close                                               
    01010891  TimerIntClear                                                   
    010108a3  TimerCC32XX_control                                             
    010108bb  UtilsDelay                                                      
    010108c1  ti_sysbios_hal_Hwi_Module_startup__E                            
    010108d3  xdc_runtime_Startup_exec__I                                     
    010108e5  Board_init                                                      
    010108f5  HwiP_Params_init                                                
    01010905  I2CFIFOStatus                                                   
    01010915  I2C_Params_init                                                 
    01010925  Timer_Params_init                                               
    01010935  _SlDrvDispatchHttpServerEvents                                  
    01010945  _SlDrvDispatchNetAppRequestEvents                               
    01010955  _SlDrvIsSpawnOwnGlobalLock                                      
    01010979  pthread_mutexattr_init                                          
    01010989  pthread_mutexattr_settype                                       
    010109a9  ti_sysbios_BIOS_getCpuFreq__E                                   
    010109b9  ti_sysbios_BIOS_setThreadType__E                                
    010109c9  ti_sysbios_BIOS_start__E                                        
    010109d9  ti_sysbios_family_arm_m3_TaskSupport_glue                       
    010109e9  ti_sysbios_family_arm_m3_TaskSupport_swap__E                    
    010109e9  ti_sysbios_knl_Task_SupportProxy_swap__E                        
    010109f1  ti_sysbios_knl_Task_swapReturn                                  
    010109f9  ti_sysbios_gates_GateMutex_Instance_finalize__E                 
    01010a09  ti_sysbios_knl_Mailbox_Object__get__S                           
    01010a19  ti_sysbios_knl_Semaphore_Instance_finalize__E                   
    01010a29  ti_sysbios_knl_Swi_disable__E                                   
    01010a39  ti_sysbios_knl_Task_Object__get__S                              
    01010a49  ti_sysbios_knl_Task_disable__E                                  
    01010a59  xdc_runtime_Memory_free__E                                      
    01010a69  xdc_runtime_SysCallback_abort__E                                
    01010a69  xdc_runtime_System_SupportProxy_abort__E                        
    01010a79  xdc_runtime_SysCallback_exit__E                                 
    01010a79  xdc_runtime_System_SupportProxy_exit__E                         
    01010a97  RingBuf_isFull                                                  
    01010aa5  _SlDrvResetCmdExt                                               
    01010ab3  __TI_decompress_none                                            
    01010ad1  pthread_attr_setdetachstate                                     
    01010ae1  sem_wait                                                        
    01010aef  spi_Close                                                       
    01010b01  ti_sysbios_knl_Idle_loop__E                                     
    01010b11  ti_sysbios_knl_Queue_empty__E                                   
    01010b1f  ClockP_delete                                                   
    01010b2d  ClockP_getSystemTickPeriod                                      
    01010b39  HwiP_delete                                                     
    01010b51  NwpMaskInterrupt                                                
    01010b5d  NwpUnMaskInterrupt                                              
    01010b69  Power_getConstraintMask                                         
    01010b75  SemaphoreP_delete                                               
    01010b81  SimpleLinkHttpServerEventHandler                                
    01010b8d  SimpleLinkNetAppRequestEventHandler                             
    01010b99  _SlDeviceResetRequestInitCompletedCB                            
    01010ba5  _register_lock                                                  
    01010bb1  _register_unlock                                                
    01010bbd  __TI_zero_init                                                  
    01010be1  pthread_self                                                    
    01010bed  ti_sysbios_family_arm_m3_Hwi_Params__init__S                    
    01010bed  ti_sysbios_hal_Hwi_HwiProxy_Params__init__S                     
    01010bf9  ti_sysbios_family_arm_m3_Hwi_disableFxn__E                      
    01010bf9  ti_sysbios_hal_Hwi_HwiProxy_disable__E                          
    01010c09  ti_sysbios_family_arm_m3_TaskSupport_getStackAlignment__E       
    01010c09  ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E           
    01010c19  ti_sysbios_gates_GateHwi_enter__E                               
    01010c25  ti_sysbios_knl_Clock_Params__init__S                            
    01010c31  ClockP_getSystemTicks                                           
    01010c31  ti_sysbios_knl_Clock_getTicks__E                                
    01010c41  ti_sysbios_knl_Clock_setTicks__E                                
    01010c51  ti_sysbios_knl_Clock_tickStart__E                               
    01010c61  ti_sysbios_knl_Clock_tickStop__E                                
    01010c6d  ti_sysbios_knl_Queue_Object__get__S                             
    01010c79  ti_sysbios_knl_Semaphore_Params__init__S                        
    01010c85  ti_sysbios_knl_Task_Params__init__S                             
    01010c91  ti_sysbios_knl_Task_self__E                                     
    01010ca1  ti_sysbios_rts_ti_ReentSupport_taskRegHook__I                   
    01010cad  uDMAErrorStatusClear                                            
    01010cb9  uDMAErrorStatusGet                                              
    01010cc9  xdc_runtime_Startup_rtsDone__E                                  
    01010cd5  ClockP_Params_init                                              
    01010cdf  I2C_close                                                       
    01010ce9  SPI_close                                                       
    01010cf3  SPI_transfer                                                    
    01010cfd  SimpleLinkFatalErrorEventHandler                                
    01010d07  SimpleLinkGeneralEventHandler                                   
    01010d11  SimpleLinkNetAppRequestMemFreeEventHandler                      
    01010d1b  SimpleLinkSockEventHandler                                      
    01010d25  Timer_start                                                     
    01010d2f  UART_read                                                       
    01010d39  UART_write                                                      
    01010d49  sem_destroy                                                     
    01010d59  sem_post                                                        
    01010d63  sl_Task                                                         
    01010d6d  xdc_runtime_Memory_HeapProxy_alloc__E                           
    01010d77  xdc_runtime_Memory_HeapProxy_free__E                            
    01010d89  SemaphoreP_Params_init                                          
    01010d91  TimerGetCurrentTimestamp                                        
    01010da1  pthread_attr_setstacksize                                       
    01010da9  pthread_mutex_lock                                              
    01010db9  sem_getvalue                                                    
    01010dc1  ti_sysbios_family_arm_m3_Hwi_doSwiRestore__I                    
    01010dc9  ti_sysbios_family_arm_m3_Hwi_startup__E                         
    01010dc9  ti_sysbios_hal_Hwi_HwiProxy_startup__E                          
    01010dc9  ti_sysbios_hal_Hwi_startup__E                                   
    01010dd9  ti_sysbios_family_arm_m3_Hwi_doTaskRestore__I                   
    01010de1  HwiP_restore                                                    
    01010de1  ti_sysbios_family_arm_m3_Hwi_restoreFxn__E                      
    01010de1  ti_sysbios_hal_Hwi_HwiProxy_restore__E                          
    01010de9  ti_sysbios_gates_GateHwi_leave__E                               
    01010df1  ti_sysbios_heaps_HeapMem_isBlocking__E                          
    01010df9  ti_sysbios_knl_Clock_stop__E                                    
    01010e01  ti_sysbios_knl_Queue_Instance_init__E                           
    01010e09  ti_sysbios_knl_Swi_startup__E                                   
    01010e11  xdc_runtime_System_Module_startup__E                            
    01010e19  __aeabi_errno_addr                                              
    01010e21  ti_sysbios_family_arm_m3_Timer_getMaxTicks__E                   
    01010e29  ti_sysbios_gates_GateHwi_query__E                               
    01010e29  xdc_runtime_Main_Module_GateProxy_query__E                      
    01010e29  xdc_runtime_System_Module_GateProxy_query__E                    
    01010e31  ti_sysbios_BIOS_RtsGateProxy_query__E                           
    01010e31  ti_sysbios_gates_GateMutex_query__E                             
    01010e31  ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E              
    01010e39  ti_sysbios_knl_Clock_setTimeout__E                              
    01010e41  ti_sysbios_knl_Task_startup__E                                  
    01010e49  ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E               
    01010e51  ti_sysbios_gates_GateHwi_Instance_init__E                       
    01010e59  ti_sysbios_knl_Clock_logTick__E                                 
    01010e61  xdc_runtime_SysCallback_defaultAbort                            
    01010e69  xdc_runtime_SysCallback_defaultExit                             
    01010e71  xdc_runtime_System_abortSpin__E                                 
    01010e79  xdc_runtime_System_exitSpin__E                                  
    01010e7c  _ctypes_                                                        
    01010f7d  ti_sysbios_knl_Clock_tickMode__C                                
    01010f7e  ti_sysbios_family_arm_m3_Hwi_Module__id__C                      
    01011128  spiCC32XXDMAHWAttrs                                             
    010111a0  OpcodeTranslateTable                                            
    01011210  _SlActionLookupTable                                            
    01011260  PowerCC32XX_config                                              
    010112a0  ti_sysbios_knl_Task_Object__PARAMS__C                           
    010112dc  ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C                  
    0101130c  UARTCC32XX_fxnTable                                             
    01011334  ti_sysbios_heaps_HeapMem_Module__FXNS__C                        
    01011383  ti_sysbios_knl_Clock_tickSource__C                              
    01011384  UART_defaultParams                                              
    010113a8  ti_sysbios_gates_GateHwi_Module__FXNS__C                        
    010113cc  ti_sysbios_gates_GateMutex_Module__FXNS__C                      
    010113f0  ti_sysbios_heaps_HeapMem_Object__PARAMS__C                      
    01011414  ti_sysbios_knl_Clock_Object__PARAMS__C                          
    01011438  ti_sysbios_knl_Semaphore_Object__PARAMS__C                      
    010114c5  xdc_runtime_Error_policy__C                                     
    010114c6  ti_sysbios_family_arm_m3_Timer_Module__id__C                    
    010114e8  SPI_defaultParams                                               
    01011528  TimerCC32XX_fxnTable                                            
    01011568  ti_sysbios_family_arm_m3_Hwi_Object__DESC__C                    
    01011588  ti_sysbios_gates_GateHwi_Object__DESC__C                        
    010115a8  ti_sysbios_gates_GateMutex_Object__DESC__C                      
    010115c8  ti_sysbios_heaps_HeapMem_Object__DESC__C                        
    010115e8  ti_sysbios_knl_Clock_Object__DESC__C                            
    01011608  ti_sysbios_knl_Queue_Object__DESC__C                            
    01011628  ti_sysbios_knl_Semaphore_Object__DESC__C                        
    01011648  ti_sysbios_knl_Task_Object__DESC__C                             
    01011668  timerCC32XXHWAttrs                                              
    01011688  xdc_runtime_Startup_sfxnTab__A                                  
    010116f4  I2CCC32XX_fxnTable                                              
    0101170c  SPICC32XXDMA_fxnTable                                           
    01011724  SPI_config                                                      
    0101173c  Timer_config                                                    
    01011754  UART_config                                                     
    0101176c  ti_sysbios_gates_GateHwi_Object__PARAMS__C                      
    01011784  ti_sysbios_gates_GateMutex_Object__PARAMS__C                    
    0101179c  ti_sysbios_knl_Queue_Object__PARAMS__C                          
    010117b4  ti_sysbios_knl_Task_hooks__A                                    
    010117fa  ti_sysbios_heaps_HeapMem_Module__id__C                          
    01011874  GPIOCC32XX_config                                               
    010118d8  I2C_defaultParams                                               
    01011918  i2cCC32XXHWAttrs                                                
    01011938  Display_count                                                   
    01011939  CONFIG_Crypto_0_CONST                                           
    0101193a  CryptoCC32XX_count                                              
    0101193b  CONFIG_GPIO_LED_0_CONST                                         
    0101193c  CONFIG_GPIO_0_CONST                                             
    0101193d  CONFIG_I2C_0_CONST                                              
    0101193e  I2C_count                                                       
    0101193f  CONFIG_SPI_0_CONST                                              
    01011940  CONFIG_NWP_SPI_CONST                                            
    01011941  SPI_count                                                       
    01011942  CONFIG_TIMER_0_CONST                                            
    01011943  CONFIG_TIMER_1_CONST                                            
    01011944  Timer_count                                                     
    01011945  CONFIG_UART_0_CONST                                             
    01011946  CONFIG_UART_1_CONST                                             
    01011947  UART_count                                                      
    01011948  xdc_runtime_Startup_sfxnRts__A                                  
    01011964  I2C_config                                                      
    010119a0  udmaCC3220SHWAttrs                                              
    010119ac  xdc_runtime_Startup_firstFxns__A                                
    010119b8  UDMACC32XX_config                                               
    010119d8  outPinTypes                                                     
    010119e8  ti_sysbios_knl_Idle_funcList__A                                 
    010119f0  ti_sysbios_knl_Idle_funcList__C                                 
    010119f8  ti_sysbios_knl_Task_hooks__C                                    
    01011a00  xdc_runtime_Startup_firstFxns__C                                
    01011a08  xdc_runtime_Startup_lastFxns__C                                 
    01011a16  inPinTypes                                                      
    01011a1c  outPinStrengths                                                 
    01011a52  _SlNetAppSendResponseCmdCtrl                                    
    01011a56  _SlNetAppSendTokenValueCmdCtrl                                  
    01011a8e  xdc_runtime_Memory_Module__id__C                                
    01011a90  ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C                
    01011a94  ti_sysbios_family_arm_m3_Hwi_E_badIntNum__C                     
    01011a98  ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C                  
    01011a9c  ti_sysbios_family_arm_m3_Hwi_Object__count__C                   
    01011aa0  ti_sysbios_family_arm_m3_Hwi_ccr__C                             
    01011aa4  ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C                  
    01011aa8  ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C                     
    01011aac  ti_sysbios_family_arm_m3_Hwi_priGroup__C                        
    01011ab0  ti_sysbios_family_arm_m3_Hwi_swiDisable__C                      
    01011ab4  ti_sysbios_family_arm_m3_Hwi_swiRestore__C                      
    01011ab8  ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C          
    01011abc  ti_sysbios_family_arm_m3_Timer_E_cannotSupport__C               
    01011ac0  ti_sysbios_family_arm_m3_Timer_startupNeeded__C                 
    01011ac4  ti_sysbios_gates_GateMutex_Instance_State_sem__O                
    01011ac8  ti_sysbios_heaps_HeapMem_E_memory__C                            
    01011acc  ti_sysbios_heaps_HeapMem_Module__gateObj__C                     
    01011ad0  ti_sysbios_heaps_HeapMem_Object__count__C                       
    01011ad4  ti_sysbios_heaps_HeapMem_primaryHeapBaseAddr__C                 
    01011ad8  ti_sysbios_heaps_HeapMem_primaryHeapEndAddr__C                  
    01011adc  ti_sysbios_heaps_HeapMem_reqAlign__C                            
    01011ae0  ti_sysbios_knl_Clock_Module_State_clockQ__O                     
    01011ae4  ti_sysbios_knl_Clock_tickPeriod__C                              
    01011ae8  ti_sysbios_knl_Mailbox_Instance_State_freeQue__O                
    01011aec  ti_sysbios_knl_Mailbox_Object__count__C                         
    01011af0  ti_sysbios_knl_Mailbox_maxTypeAlign__C                          
    01011af4  ti_sysbios_knl_Semaphore_Instance_State_pendQ__O                
    01011af8  ti_sysbios_knl_Swi_Object__count__C                             
    01011afc  ti_sysbios_knl_Task_Module_State_inactiveQ__O                   
    01011b00  ti_sysbios_knl_Task_Object__count__C                            
    01011b04  ti_sysbios_knl_Task_Object__heap__C                             
    01011b08  ti_sysbios_knl_Task_allBlockedFunc__C                           
    01011b0c  ti_sysbios_knl_Task_defaultStackHeap__C                         
    01011b10  ti_sysbios_knl_Task_defaultStackSize__C                         
    01011b14  ti_sysbios_knl_Task_numConstructedTasks__C                      
    01011b18  xdc_runtime_Error_E_memory__C                                   
    01011b1c  xdc_runtime_Error_policyFxn__C                                  
    01011b20  xdc_runtime_IGateProvider_Interface__BASE__C                    
    01011b24  xdc_runtime_IHeap_Interface__BASE__C                            
    01011b28  xdc_runtime_IModule_Interface__BASE__C                          
    01011b2c  xdc_runtime_Memory_defaultHeapInstance__C                       
    01011b30  xdc_runtime_Startup_execImpl__C                                 
    01011b34  xdc_runtime_Startup_maxPasses__C                                
    01011b38  xdc_runtime_Startup_sfxnRts__C                                  
    01011b3c  xdc_runtime_Startup_sfxnTab__C                                  
    01011b40  xdc_runtime_SysCallback_abortFxn__C                             
    01011b44  xdc_runtime_SysCallback_exitFxn__C                              
    01011b48  xdc_runtime_System_Module__gateObj__C                           
    01011b4c  xdc_runtime_System_abortFxn__C                                  
    01011b50  xdc_runtime_System_exitFxn__C                                   
    01011b54  xdc_runtime_System_maxAtexitHandlers__C                         
    01011b58  __TI_static_base__                                              
    01011dfc  __TI_Handler_Table_Base                                         
    01011e08  __TI_Handler_Table_Limit                                        
    01011e10  __TI_CINIT_Base                                                 
    01011e20  __TI_CINIT_Limit                                                
    20000000  ti_sysbios_family_arm_m3_Hwi_ramVectors                         
    20000310  __primary_heap_start__                                          
    20008310  __primary_heap_end__                                            
    20008400  netEntries                                                      
    20008928  ti_sysbios_knl_Task_Instance_State_0_stack__A                   
    20008b28  spiCC32XXDMAObjects                                             
    20008bb0  i2cCC32XXObjects                                                
    20009000  g_CB                                                            
    200093fc  ti_sysbios_family_arm_m3_Hwi_dispatchTable                      
    20009708  PowerCC32XX_contextSave                                         
    20009834  buffer_read_UART1                                               
    20009934  uartCC32XXObjects0                                              
    200099b8  uartCC32XXObjects1                                              
    20009abc  timerCC32XXObjects                                              
    20009b24  GlobalLockObj                                                   
    20009b50  g_SlInternalSpawnCB                                             
    20009c38  DeviceCB                                                        
    20009c44  Msg                                                             
    20009c50  spiCC32XXSDMAscratchBuf                                         
    20009c58  udmaCC3220SObject                                               
    20009c64  display                                                         
    20009c68  mode                                                            
    20009c6c  number_read_bytes                                               
    20009c70  number_read_bytes1                                              
    20009c74  ti_sysbios_knl_Task_Instance_State_0_hookEnv__A                 
    20009c78  uart                                                            
    20009c7c  uart1                                                           
    20009c80  RxIrqCnt                                                        
    20009c84  PowerCC32XX_module                                              
    20009df0  parkInfo                                                        
    20009f70  ti_sysbios_knl_Swi_Module_State_0_readyQ__A                     
    20009ff0  ti_sysbios_knl_Task_Module_State_0_readyQ__A                    
    2000a070  SlNetIfConfigWifi                                               
    2000a0c8  ti_sysbios_gates_GateMutex_Object__table__V                     
    2000a11c  ti_sysbios_knl_Task_Object__table__V                            
    2000a170  flag_button_released                                            
    2000a171  flag_button_pressed                                             
    2000a174  ret                                                             
    2000a178  i                                                               
    2000a17c  numberRxBytes                                                   
    2000a180  SIZE_MAGIC_HEADER                                               
    2000a184  timestamp                                                       
    2000a188  counter_timer0                                                  
    2000a18c  counter_timer1                                                  
    2000a190  counter_msec                                                    
    2000a194  size_dataset0                                                   
    2000a195  size_dataset1                                                   
    2000a196  size_dataset2                                                   
    2000a197  size_dataset3                                                   
    2000a198  size_dataset4                                                   
    2000a199  size_dataset5                                                   
    2000a19a  size_dataset6                                                   
    2000a19b  size_dataset7                                                   
    2000a19c  buffer_dataset0                                                 
    2000a1a0  buffer_dataset1                                                 
    2000a1a4  count                                                           
    2000a1a5  count1                                                          
    2000a1a8  MAX_UART_DATA_SIZE                                              
    2000a1ac  input_size                                                      
    2000a1b0  flag_uart_header                                                
    2000a1b1  flag_uart_footer                                                
    2000a1b2  packet_button                                                   
    2000a1b4  ti_sysbios_knl_Task_Module__state__V                            
    2000a1f8  ti_sysbios_family_arm_m3_Hwi_Module__state__V                   
    2000a22c  ti_sysbios_family_arm_m3_Timer_Object__table__V                 
    2000a25c  ti_sysbios_knl_Swi_Object__table__V                             
    2000a28c  ti_sysbios_knl_Clock_Module__state__V                           
    2000a2b8  g_LibsEvents                                                    
    2000a2dc  g_UserEvents                                                    
    2000a300  ti_sysbios_BIOS_Module__state__V                                
    2000a324  ssid_connected                                                  
    2000a344  xdc_runtime_Error_IgnoreBlock                                   
    2000a364  ti_sysbios_knl_Swi_Module__state__V                             
    2000a380  ti_sysbios_family_arm_m3_Hwi_Object__table__V                   
    2000a398  ti_sysbios_heaps_HeapMem_Object__table__V                       
    2000a3b0  ti_sysbios_family_arm_cc32xx_Seconds_Module__state__V           
    2000a3c4  gGlobalLockCntRequested                                         
    2000a3c5  gGlobalLockCntReleased                                          
    2000a3c6  g_SlDeviceStatus                                                
    2000a3c8  g_pCB                                                           
    2000a3cc  pPingCallBackFunc                                               
    2000a3d0  ti_sysbios_family_arm_m3_Timer_Module__state__V                 
    2000a3e6  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A        
    2000a3e8  _lock                                                           
    2000a3ec  _unlock                                                         
    2000a3f8  gpioCallbackFunctions                                           
    2000a400  gpioPinConfigs                                                  
    2000a408  ti_sysbios_family_arm_m3_Hwi_Module__root__V                    
    2000a410  ti_sysbios_gates_GateHwi_Module__root__V                        
    2000a418  ti_sysbios_gates_GateMutex_Module__root__V                      
    2000a420  ti_sysbios_heaps_HeapMem_Module__root__V                        
    2000a428  ti_sysbios_knl_Clock_Module__root__V                            
    2000a430  ti_sysbios_knl_Queue_Module__root__V                            
    2000a438  ti_sysbios_knl_Semaphore_Module__root__V                        
    2000a440  ti_sysbios_knl_Task_Module__root__V                             
    2000a448  xdc_runtime_Startup_Module__state__V                            
    2000a450  xdc_runtime_System_Module_State_0_atexitHandlers__A             
    2000a458  xdc_runtime_System_Module__state__V                             
    2000a460  MAGIC_HEADER                                                    
    2000a468  spawn_thread                                                    
    2000a46c  flag_connected                                                  
    2000a46d  flag_first_connection                                           
    2000a46e  ssid_len_connected                                              
    2000a46f  bssid_connected                                                 
    2000a478  main_func_sp                                                    
    2000a47c  g_intHandle                                                     
    2000a484  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A       
    2000a488  ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A         
    2000a48c  ti_sysbios_gates_GateHwi_Object__table__V                       
    2000a490  ti_sysbios_knl_Task_Module_State_0_idleTask__A                  
    2000a494  ti_sysbios_rts_ti_ReentSupport_Module__state__V                 
    2000a498  xdc_runtime_Memory_Module__state__V                             
    2003fc00  __stack                                                         
    20040000  __STACK_END                                                     
    e000e000  ti_sysbios_family_arm_m3_Hwi_nvic                               
    ffffffff  __TI_pprof_out_hndl                                             
    ffffffff  __TI_prof_data_size                                             
    ffffffff  __TI_prof_data_start                                            
    ffffffff  __binit__                                                       
    ffffffff  __c_args__                                                      
    ffffffff  binit                                                           
    UNDEFED   SHT$$INIT_ARRAY$$Base                                           
    UNDEFED   SHT$$INIT_ARRAY$$Limit                                          
    
    [902 symbols]
    

    Thanks!

    Artemis

  • Artemis,

    This does help.

    Can you launch the debugger again and get the messages shown in your first capture.  Then go to the registers view and show the value of the stack pointer (SP).  This is likely going to be out of range as well.  It should be listed under Core Registers:

    Regards,

    John

  • Hi John,

    Yes you are right.

    The SP is also out of range at the address of 0x20040000. Do you have any advise on how to fix that?

    Thanks!

    Artemis

  • Having some discussion on this internally.  The callstack is showing that you are halted at main().  Is this right at the beginning of main()?  If so if you step once does it clear up the messages and show a different set of addresses in the variables view for the variables that currently show out of range addresses?

  • Artemis,

    Would it be possible zip up the .out file for the project and attach it?  We want to check if this is an issue with the symbols generated for the program or perhaps the interpretation of the symbols.

    If you dont want to put it in a public forum it is possible to click on my name and then send me a private message with the attachment.

    Thanks,

    John

  • Hi John,

    Yes that is right. When I run step the variables get a valid address. Is this expected behaviour?

    I will have to get approval for sending the project, and sent you a private message if thats okay.

    Thanks,

    Artemis

  • Artemis,

    That makes it sound like the application is fine and it is an issue on our end with either the symbol info or interpretting the symbol info.  We are also trying to reproduce with some of the SDK examples.  If we manage to do that then we can skip getting your project.

    Regards,

    John

  • Yup looks like we can reproduce this on our end with one of the SDK examples.  That should be enough to determine what is going on.  But given we can reproduce this is not an issue with your application.  CCS should know that the stack frame is not yet setup and not show that message.  So either the symbol info isn't telling CCS that or it is not interpretting it correctly.  So you can ignore the message.

    Regards,

    John

  • Hi John,

    Thanks for the reply. So, I guess this is not effecting the execution of the program. However, is there a way to set the debugger settings so that it does not show incorrect messages like that?

    Thanks,

    Artemis 

  • Artemis,

    I have file a bug to track this: https://sir.ext.ti.com/jira/browse/EXT_EP-10101

    As far as I know there is no debugger setting to avoid this.  Once the development team takes a look we will know if it is an issue in the debugger or the symbol information generated by the compiler.

    Regards,

    John

  • Hi John,

    Thanks for the help!

    Best,

    Artemis