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:内存映射预防错误(使用 WIFI-thread)

Guru**** 2555630 points
Other Parts Discussed in Thread: CC3235SF

请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/tools/code-composer-studio-group/ccs/f/code-composer-studio-forum/955368/ccs-launchxl-cc3235sf-memory-map-prevention-error-using-wifi-thread

器件型号:LAUNCHXL-CC3235SF
主题中讨论的其他器件:CC3235SF

工具/软件:Code Composer Studio

您好!

我将 CC3235SF 开发板与 CCS930搭配使用。 我正在运行一个示例、其中有2个线程;一个用于连接到 AP 的 wifi 线程、另一个用于发送 UDP 数据包。

我用 udpecho 项目为例、但是、wifi 线程和 UDP 线程是与 main_tirtos 函数分开创建的。

在调试程序时、当调试器在 main 中停止时、我会看到以下错误(如图所示)。 但是、如果我继续执行、程序将正常运行(大多数情况下)。

您能帮我找出我遇到此映射错误的原因吗?

提前感谢。

最棒的

Artemis

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    Artemis、

    CCS 会给出内存映射消息、因为调试器的内存映射不会在该位置显示内存。  有一个 GEL 文件(.gel)用于定义存储器映射、它显示了从0x20000000开始、长度为0x00040000的 SRAM。  这些显示消息的变量不在该范围内、因此调试器不允许读取这些地址。  我将在 WiFi 团队中循环。  为调试器定义的映射是否错误?

    此致、

    John

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 John:

    感谢您的快速回复。

    我为 cc3235sf 准备的 GEL 文件如下:

    您在映射时参考的是此调试定义吗? 或者是否有其他选择?

    /* CC3235FS.GEL
    *
    修订版:
    * 2014年1月29日第一版
    *
    
    **/
    
    menuitem "startup"
    
    热菜单 startup ()
    {
    /*加载 CortexM3_util.gel 文件*/
    GEL_LoadGel ("$(GEL_file_dir)/CortexM3_util.gel");
    
    GEL_MapOff ();
    GEL_MapReset();
    GEL_MapOn();
    memorymap_init();
    }
    
    OnTargetConnect()
    {
    
    }
    
    OnPreFileLoaded()
    {
    GEL_Reset ();
    GEL_TextOut ("\n 目标重置\n");
    
    }
    
    memorymap_init ()
    {
    /*
    * GEL_MapAddStr 的语法。
    * GEL_MapAddStr (address、page、length、"attribute"、waitstate);
    
    基本属性类型 派生属性类型
    字符串 说明 字符串 说明
    R 主机 IRQ 无 无内存/受保护
    W 写入 RAM 读取和写入
    P 端口 ROM 只读
    示例 外部 WOM 只写
    Em 仿真器 INPORT 端口只读
    PR 可编程 OUTPORT 端口只写
    呃 可擦除 ioport 端口读取和写入
    da 双存取 Saram 单存取 RAM
    ASN 存取大小 DARAM 双存取 RAM
    SHnC 共享 闪存 闪存 ROM
    高速缓存 高速缓存 EXRAM 外部 RAM
    TX 文本 EXROM 外部 ROM
    Mn 检测器 EPROM 可擦写 EPROM
    SA 单次访问 检测器 监视器 ROM
    左前 闪存 PRAM 程序 RAM
    先生 存储器映射 PROM 编程 ROM
    null null null null
    
    *
    
    GEL_MapAddStr (0x00000000、0、0x00010000、"R"、0); /* ROM */
    GEL_MapAddStr (0x01000000、0、0x00100000、"R"、50); /*闪存*/
    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); /*计时器 A0 */
    GEL_MapAddStr (0x40031000、0、0x00001000、"R|W"、0); /*计时器 A1 */
    GEL_MapAddStr (0x40032000、0、0x00001000、"R|W"、0); /*计时器 A2 */
    GEL_MapAddStr (0x40033000、0、0x00001000、"R|W"、0); /*计时器 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); /*摄像头 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); /*闪存控制*/
    
    
    
    GEL_MapAddStr (0xE000E000、0、0x00001000、"R|W"、0); /* NVIC */
    
    GEL_TextOut ("\n 内存映射初始化完成\n");
    
    }
    
    

    如果我执行步骤、运行 main_tirtos.c、那么我获得一个有效地址、如下所示:

     期待您的回复!

    最棒的

    Artemis

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    Artemis、

    是的、这是我查看的文件。  第64行显示了 SRAM 的定义位置。  

    如果我查看 CC3235SF 的数据表、它与 GEL 文件的数据匹配、因此我认为它是正确的。

    GEL 文件设置为阻止 CCS 读取您第一次捕获中显示的地址0x20040034、44、30 40。

    我将询问其他人是否看到过这种情况。

    此致、

    John

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    您可以附加工程使用的链接器命令文件(.cmd)。

    谢谢、
    John

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 John:

    请查找粘贴的文件。

    /*
    版权所有(c) 2018-2019、德州仪器(TI)公司
    *保留所有权利。
    *
    *
    只要
    符合以下条件*、允许以源代码和二进制形式重新分发和使用:
    *
    *源代码的重新分发必须保留上述版权
    声明*、此条件列表和以下免责声明。
    *
    ***二进制形式的再发行必须在
    
    *随发行提供的文档和/或其他材料中复制上述版权声明、本条件列表和以下免责声明。
    *
    ***未经
    
    事先书面许可、不得使用德州仪器公司的名称或*其贡献者的名称认可或推广从本软件衍生的产品*。
    *
    *本软件由版权所有者和贡献者"按原样"提供
    *、
    
    不承担任何明示或暗示的保证、包括但不限于*适销性和特定用途适用性的暗示保证*。 在任何情况下、版权所有者或
    *贡献者都不对任何直接、间接、偶然、特殊、
    *模范、 或相应的损害(包括但不限于
    *采购替代产品或服务;丧失使用、数据或利润;
    *或业务中断)、但出于任何责任理论
    、*无论是在合同中、严格责任还是由于
    使用本软件而以任何方式产生的侵权行为(包括疏忽或*其他)
    、*即使已获悉可能会发生此类损坏。
    //
    
    /*
    === CC3235SF_LAUNCHXL.cmd ===
    */
    
    *
    *应用程序的起始地址。 通常、中断矢量
    *必须位于应用程序的开头。
    //
    #define SRAM_BASE 0x20000000
    #define FLASH_base 0x01000800
    
    --STACK_SIZE=1024 // C STACK 也用于 ISR 堆栈*/
    
    HEAPSIZE = 0x8000;// HeapMem 使用的堆缓冲区的大小*/
    
    MEMORY
    {
    /*引导加载程序在初始化期间使用 FLASH_HDR */
    Flash_HDR (RX):origin = 0x01000000,length = 0x7FF /* 2KB */
    闪存 (Rx):origin = 0x01000800,length = 0x0FF800 // 1022KB */
    SRAM (RWX):origin = 0x20000000,length = 0x00040000 // 256KB */
    }
    
    //内存中的段分配*/
    
    SECTIONS
    {
    dbghdr :> FLASH_HDR
    .text :>闪存
    .TI.ramfunc:{} load=flash,run=SRAM,table (BINIT)
    .const :>闪存
    rodata :>闪存
    .cinit :>闪存
    .pinit :>闪存
    init_array:> FLASH
    
    .data :> SRAM
    .bss :> SRAM
    sysmem :> SRAM
    
    /* HeapMem 使用的堆缓冲区*/
    .priheap:{
    _primary_heap_start__=.;
    。 += HEAPSIZE;
    __primary_heap_end__=.;
    } > SRAM 对齐8
    
    堆栈 :> SRAM (HIGH)
    }
    

    此外、以下代码段来自.map 文件、不知道它是否有用。

    秘书长的报告
    TI ARM 连接器 PC v18.12.6
    秘书长的报告
    >>链接 Tue 11月10日17:20:38 2020
    
    输出文件名: 
    入口点符号:"_c_int00"地址:0100e421
    
    
    内存配置
    
    名称 原点长度 已使用 未使用的属性填充
    --- ---- ------ ---- ---- --------
    FLASH_HDR 01000000 000007ff 00000000 000007ff R X
    闪存 01000800 000ff800 0001161a 000e1e6 R X
    SRAM 20000000 00040000 0000a7a5 0003585b RW X
    
    
    段分配映射
    
    运行原点加载原点长度初始化长度 attrs 成员
    --- ------ ------ ------ ---- ----
    01000800 01000800 00011620 00011620 r-x
    01000800 00003c 0000003c r-.resetVecs
    01000840 01000840 0001063a 0001063a r-x .text
    01010e7c 01010e7c 00000cdc 00000cdc r-.const
    01011b01058 000b58 000001000008 00000008 000cr 000008 00000008 000cr 000008 00000008 0000000cr 000008 0008 0003000008 000cr
    
    .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 0000rw
    
    
    - 2003fc00 00000400 00000000分配映射段00000000分配.rw
    
    属性/
    书帖页面来源 长度 输入段
    --- -------- ------ --------
    .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_AP)
    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:_SlDrvRegisterForSelect异 步)
    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_slepPolicy)
    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_socketHandleASYNC_StartTLS (.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:_SlDrvEventGenericHandler)
    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_final__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 添加)
    01008318 000000d8 drivers_cc32xx.aem4:SPICC32XXDMA.oem4 (.text:SPICC32XXDMA_close)
    010083f0 000000d8 simplelink.a:device.obj (.text:_SlDeviceHandleASYNC_InitComplete)
    010084c8 000000d8 :driver.obj (.text:_SlDrvWaitForInternalAppo0)
    010085a0 000000d8 :netapp.obj (.text:_SlNetAppHandleASYNC_NetAppReceive)
    01008678 000000d0 :driver.obj (.text:_SlDrvRemoveFromList)
    01008748 000000d0 SYSBIOS.aem4:BIOS.obj (.text:ti_SysBIOS_b堆_HeapMem_alloc__E)
    01008818 000000cc :M3_Hwi_asm_obj (.text:ti_sysbios_family_arm_m3/hwi_deign_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:restoredParkedPins)
    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 slnertifwifi.a:slnertifwifi.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:_SlDrvUnRegisterForSelect异 步)
    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 --[填充= 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:_SlDrvDriverIsApiAllded)
    0100b350 0000008c :driver.obj (.text:_SlDrvProtect.防护 对象示波器设置)
    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 --[填充= 0]
    0100b828 00000084 drivers_cc32xx.aem4:PowerCC32XX.oem4 (.text:Power_init)
    0100b8ac 00000084 slnertifwifi.a:slnertifwifi.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_b堆_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_abstem2ticks)
    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 --[填充= 0]
    0100b8 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_deid_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:_SlDrvCmd Send_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_堆_HeapMem_initPrimary__i)
    0100c4a8 0000006c slnetsock_release.a:slnetutils.oem4 (.text:slNetUtil_str2BinIpV4)
    0100c514 0000006c simplelink.a:device.obj (.text:_SlDeviceHandleResetRequestInterally)
    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 --[填充= 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 --[填充= 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 初始化)
    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 --[填充= 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 查询)
    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:NwpWaitForShutDownIndd)
    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_b堆_HeapMem_getStats__E)
    0100db4 00000004 release_pem4.oem4 (.text:ti_sysbios_family_arm_m3/hwi_delete)
    0100db8 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_堆_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_堆_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_赋 值 Params__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_b堆_HeapMem_instance_init__E)
    0100e9c8 0000003e slnetsock_release.a:slnetsock.oem4 (.text:slNetSock_close)
    0100ea06 0000003e simplelink.a:sl_socketBuildAddress (.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 --[填充= 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)
    0100ebb、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_finaling__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_lease__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 --[填充= 0]
    0100edb0 0000003c SYSBIOS.aem4:BIOS.obj (.text:usleep)
    0100e解码00000004 --hole --[填充= 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 --[填充= 0]
    0100f0d8 00000038 SYSBIOS.aem4:BIOS.obj (.text:ti_SysBIOS_KNL_Task_processorVitalTaskFlag__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 --[填充= 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_periodicStudio__I)
    0100f38c 00000034 release_pem4.oem4 (.text:ti_SysBIOS_KNL_Semaphore_create)
    0100f3c0 00000034 uartI2C.obj (.text:timerCallback1)
    0100f3f4 00000004 --hole --[填充= 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 --[填充= 0]
    0100f4bc 00000030 uartI2C.obj (.text:button_pressed)
    0100f4ec 00000004 --hole --[填充= 0]
    0100f4f0 00000030 SYSBIOS.aem4:BIOS.obj (.text:getTim$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_堆_HeapMem_Object_create_S)
    0100f670 00000030 release_pem4.oem4 (.text:ti_SysBIOS_KNL_Semaphore_con构)
    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 slnertifwifi.a:slnertifwifi.obj (.text:slNetIfWIFI_recv)
    0100f83c 0000002c :slnetifwifi.obj (.text:slNetIfWifi.send)
    0100f868 0000002c simplelink.a:driver.obj (.text:_SlDrvSyncObjWaitForever)
    0100f894 00000004 --hole --[填充= 0]
    0100f898 0000002c SYSBIOS.aem4:BIOS.obj (.text:_pthread_cleanupFxn)
    0100f8c4 00000004 --hole --[填充= 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_堆_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_con构)
    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:I2CFIFDataPutNonBlocking)
    0100fafa 00000002 --hole --[填充= 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:_SlDrvProtectObjLockWaitForever)
    0100fbc4 00000028 :driver.obj (.text:_SlDrvProtectionObjUnLock)
    0100fbec 00000028 :flowcont.obj (.text:_SlFlowContactSet)
    0100fc14 00000028 SYSBIOS.aem4:m3/Hwi_asm_obj (.text:ti_sysbios_family_arm_m3/hwi_exHandlerAsm__I)
    0100fc3c 00000004 --hole --[填充= 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:I2CFIFDataGetNonBlocking)
    0100fcb6 00000026 drivers_cc32xx.aem4:List.oem4 (.text:List_put)
    0100fcdc 00000026 :List.oem4 (.text:List_remove)
    0100fd02 00000002 --hole --[填充= 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 --[填充= 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 --[填充= 0]
    0100fe08 00000024 SYSBIOS.aem4:BIOS.obj (.text:ti_SysBIOS_family_ARM_m3/Timer_postInit__I)
    0100fe2c 00000004 --hole --[填充= 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 --[填充= 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 --[填充= 0]
    0100ff58 00000024 :BIOS.obj (.text:XDC_Runtime_Error_PolicyMin__E)
    0100ff7c 00000022 driverlib.a:i2c.obj (.text:I2CMasterSlaveAddrSet)
    0100ff9e 00000002 --hole --[填充= 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_堆_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_析 构)
    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_exter__i)
    010102dc 00000004 --hole --[填充= 0]
    010102e0 0000001c :BIOS.obj (.text:ti_sysbios_family_arm_m3/Timer_Module_startup_E)
    010102fc 00000004 --hole --[填充= 0]
    01010300 0000001c :BIOS.obj (.text:ti_sysbios_family_arm_m3/Timer_stop_E)
    0101031c 00000004 --hole --[填充= 0]
    01010320 0000001c :BIOS.obj (.text:ti_sysbios_gates_GateMutex_instance_init__E)
    0101033c 00000004 --hole --[填充= 0]
    01010340 0000001c :BIOS.obj (.text:ti_sysbios_KNL_Clock_instance_finaling__E)
    0101035c 0000001c release_pem4.oem4 (.text:ti_sysbios_KNL_Queue_析 构)
    01010378 0000001c SYSBIOS.aem4:BIOS.obj (.text:ti_SysBIOS_KNL_Queue_Put__E)
    01010394 00000004 --hole --[填充= 0]
    01010398 0000001c :BIOS.obj (.text:ti_sysbios_KNL_Task_enter__I)
    010103b4 00000004 --hole --[填充= 0]
    010103b8 0000001c :BIOS.obj (.text:ti_sysbios_rts_ti_ResentSupport_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:I2CMasterBusy)
    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 --[填充= 0]
    01010608 00000018 SYSBIOS.aem4:BIOS.obj (.text:ti_SysBIOS_gates_GateMutex_leave__E)
    01010620 00000018 :BIOS.obj (.text:ti_sysbios_KNL_Task_slepTimeout__i)
    01010638 00000018 release_pem4.oem4 (.text:ti_sysbios_rts_ti_ResentSupport_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 --[填充= 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 --[填充= 0]
    01010764 00000014 drivers_cc32xx.aem4:PowerCC32XX.oem4 (.text:Power_getDependencyCount)
    01010778 00000014 :spi.oem4 (.text:spi_Params_init)
    0101078c 00000004 --hole --[填充= 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 --[填充= 0]
    010107f8 00000014 SYSBIOS.aem4:BIOS.obj (.text:ti_SysBIOS_family_ARM_m3/Hwi_switchFromBootStack__E)
    0101080c 00000014 release_pem4.oem4 (.text:ti_sysbios_堆_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_constructation)
    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_runStudiob$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)
    0101094400000010. :driver.obj (.text:_SlDrvDispatchNetAppRequestEvents)
    01010954 00000010 :driver.obj (.text:_SlDrvIsSpawnOwnGlobalLock)
    01010964 00000010 TI_DRIVERS_CONFIG.obj (.text:dmaErrorFxn)
    01010974 00000004 --hole --[填充= 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_cUSue)
    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_finaling__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_finaling__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)
    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 --[填充= 0]
    01010ad0 0000000e SYSBIOS.aem4:BIOS.obj (.text:pthread_attr_setdetachstate)
    01010ade 00000002 --hole --[填充= 0]
    01010ae0 0000000e :BIOS.obj (.text:SEM_WAIT)
    01010aee 0000000e simplelink.a:cc_pal.obj (.text:spi_close)
    01010afc 00000004 --hole --[填充= 0]
    01010b00 0000000e SYSBIOS.aem4:BIOS.obj (.text:ti_SysBIOS_KNL_Idle_loop__E)
    01010b0e 00000002 --hole --[填充= 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 --[填充= 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:_SlDeviceResetRequestInitCompletCB)
    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:解压缩: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 --[填充= 0]
    01010c08 0000000c :BIOS.obj (.text:ti_sysbios_family_arm_m3/TaskSupport_getStackAlignment__E)
    01010c14 00000004 --hole --[填充= 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 --[填充= 0]
    01010c40 0000000c :BIOS.obj (.text:ti_sysbios_KNL_Clock_setTicks__E)
    01010c4c 00000004 --hole --[填充= 0]
    01010c50 0000000c :BIOS.obj (.text:ti_sysbios_KNL_Clock_tickStart__E)
    01010c5c 00000004 --hole --[填充= 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 --[填充= 0]
    01010ca0 0000000c :BIOS.obj (.text:ti_sysbios_rts_ti_ResentSupport_taskRegHook__I)
    01010cac 0000000c driverlib.a:udma.obj (.text:uDMAErrorStatusClear)
    01010cb8 0000000c. :udma.obj (.text:uDMAErrorStatusGet)
    01010cc4 00000004 --hole --[填充= 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 --[填充= 0]
    01010d48 0000000a SYSBIOS.aem4:BIOS.obj (.text:SEM_SAVERY)
    01010d52 00000006 --hole --[填充= 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 --[填充= 0]
    01010de0 00000006 :BIOS.obj (.text:ti_sysbios_family_arm_m3/hwi_restoreFxn_E)
    01010de6 00000002 --hole --[填充= 0]
    01010de8 00000006 :BIOS.obj (.text:ti_sysbios_gates_GateHwi_leave__E)
    01010dee 00000002 --hole --[填充= 0]
    01010df0 00000006 :bios.obj (.text:ti_sysbios_堆_HeapMem_isBlocking__E)
    01010df6 00000002 --hole --[填充= 0]
    01010df8 00000006 :BIOS.obj (.text:ti_sysbios_KNL_Clock_stop__E)
    01010dfe 00000002 --hole --[填充= 0]
    01010e00 00000006 :BIOS.obj (.text:ti_sysbios_KNL_Queue_instance_init__E)
    01010e06 00000002 --hole --[填充= 0]
    01010e08 00000006 :BIOS.obj (.text:ti_sysbios_KNL_Swi_startup__E)
    01010e0e 00000002 --hole --[填充= 0]
    01010e10 00000006 :BIOS.obj (.text:xdc_runtime_System_Module_startup__E)
    01010e16 00000002 --hole --[填充= 0]
    01010e18 00000004 :BIOS.obj (.text:__aeabi_errno_addr)
    01010e1c 00000004 --hole --[填充= 0]
    01010e20 00000004 :BIOS.obj (.text:ti_sysbios_family_arm_m3/Timer_getMaxTicks__E)
    01010e24 00000004 --hole --[填充= 0]
    01010e28 00000004 :BIOS.obj (.text:ti_sysbios_gates_GateHwi_query_E)
    01010e2c 00000004. --hole --[填充= 0]
    01010e30 00000004 :BIOS.obj (.text:ti_sysbios_gates_GateMutex_query_E)
    01010e34 00000004 --hole --[填充= 0]
    01010e38 00000004 :BIOS.obj (.text:ti_sysbios_KNL_Clock_setTimeout___E)
    01010e3c 00000004 --hole --[填充= 0]
    01010e40 00000004 :BIOS.obj (.text:ti_sysbios_KNL_Task_startup__E)
    01010e44 00000004 --hole --[填充= 0]
    01010e48 00000002 :BIOS.obj (.text:ti_sysBIOS_BIOS_linedWithIncorrectBootLibrary__E)
    01010e4a 00000006 --hole --[填充= 0]
    01010e50 00000002 :BIOS.obj (.text:ti_sysbios_gates_GateHwi_instance_init__E)
    01010e52 00000006 --hole --[填充= 0]
    01010e58 00000002 :BIOS.obj (.text:ti_sysbios_KNL_Clock_logTick__E)
    01010e5a 00000006 --hole --[填充= 0]
    01010e60 00000002 :BIOS.obj (.text:xdc_runtime_SysCallback_defaultAbort)
    01010e62 00000006 --hole --[填充= 0]
    01010e68 00000002 :BIOS.obj (.text:xdc_runtime_SysCallback_defaultExit)
    01010e6a 00000006 --hole --[填充= 0]
    01010e70 00000002 :BIOS.obj (.text:xdc_runtime_System_abortSpin__E)
    01010e72 00000006 --hole --[填充= 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_bpst_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_stp_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:uartCC32XXHWAttr1)
    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_stp_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 --[填充= 0]
    010117fa 00000002 release_pem4.oem4 (.const:ti_sysbios_stp_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)
    0101874 00000014 TI_DRIVERS_CONFIG.obj (.const:GPIOCC32XX_CONFIG)
    01011888 00000014 slnertifwifi.a:slnertifwifi.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:outPinStr强)
    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:_SlfsCloseCmd)
    01011a3e 00000004 :fs.obj (.const:_SlfsOpenCmdCtrl)
    01011a42 00000004 :fs.obj (.const:_SlfsWriteCmd)
    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:_SlRecvfocmcmdCtrl)
    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:_SlSockCloseCmd)
    01011a7a 00000004 :sl_socket.obj (.const:_SlSockSocketCmdCtrl)
    01011a7e 00000004 :device.obj (.const:_SlStopCmdCtrl)
    01011a82 00000004 :wlan.obj (.const:_slWlanCfgGetCmd)
    01011a86 00000004 :wlan.obj (.const:_slWlanGetNetworkListCtrl)
    01011a8a 00000004 :wlan.obj (.const:_slWlanSetModeCmd)
    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_exHandlerFunc__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_starpNeed__C)
    01011ac4 00000004 release_pem4.oem4 (.const:ti_sysbios_gates_GateMutex_instance_State_SEM_O)
    01011ac8 00000004 release_pem4.oem4 (.const:ti_sysbios_stp_HeapMem_E_memory__C)
    01011acc 00000004. release_pem4.oem4 (.const:ti_sysbios_bst_HeapMem_Module_gateObj__C)
    01011AD0 00000004 release_pem4.oem4 (.const:ti_sysbios_stp_HeapMem_Object_count_C)
    01011AD4 00000004 release_pem4.oem4 (.const:ti_sysbios_boost_HeapMem_primaryHeapBaseAddr__C)
    01011ad8 00000004 release_pem4.oem4 (.const:ti_sysbios_stp_HeapMem_primHeapEndAddr__C)
    01011Adc 00000004 release_pem4.oem4 (.const:ti_sysbios_bags_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_freeQu__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)[加载映像、压缩= lzss]
    01011dfb 00000001 --hole --[填充= 0]
    01011dfc 0000000c (__TI_handler_table)
    01011e08 00000008 (.cinit、.bss.load)[加载映像、压缩= zero_init]
    01011e10 00000010 (__TI_cinit_table)
    
    .init_array
    * 0 01000800 00000000 未初始化
    
    .bss 0 20008400 00001881 未初始化
    20008400 00000528 (.common:netEntry)
    20008928 00000200 release_pem4.oem4 (.bss:taskStackSection)
    20008b28 00000088 (.common:spiCC32XXDMAObjects)
    20008bb0 0000004c (.common:i2cCC32XX 对象)
    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_d调度 表)
    20009708 0000012c. (.common:PowerCC32XX_contextSave)
    20009834 00000100 (.common:buffer_read_UART1)
    20009934 00000084 (.common:uartCC32XX 对象0)
    200099b8 00000084 (.common:uartCC32XX 对象1)
    20009a3c 00000080 slnetsock_release.a:slnetsock.oem4 (.bss:VirtualSockets)
    20009abc 00000068 (.common:timerCC32XX 对象)
    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 未初始化
    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_堆_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_exACTIVE_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:gpioCallbackFuncions)
    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_堆_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:stkdept_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_excote_a)
    2000a488 00000004 release_pem4.oem4 (.data:ti_sysbios_family_arm_m3/hwi_Module_State_0_exstack_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_ResentSupport_Module_state__V)
    2000a498 00000004 release_pem4.oem4 (.data:xdc_runtime_Memory_Module_state___V)
    
    .priheap 0 20000310 00008000 未初始化
    20000310 00008000 --hole --
    
    .stack 0 2003fc00 00000400 未初始化
    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 部分
    20000000 0000030c. release_pem4.oem4 (.vecs)
    
    xdc.meta 0 00000000 00000105 复制部分
    00000000 00000105 release_pem4.oem4 (xdc.meta)
    
    xdc.noload
    * 0 00000000 00000000 复制段
    
    .binit 0 01000000 00000000
    
    模块总结
    
    模块 代码 ro 数据 RW 数据
    ---- ------ ----
    。
    uartI2C.obj 2984 160 1675
    platform.obj 1332 12. 53.
    main_tirtos.obj 188. 0 0
    +-++---------------- +--- +--- +--- +
    总计: 4504 172. 1728
    
    ..\syscfg\
    TI_DRIVERS_CONFIG.obj 34 444 1948年
    TI_net_config.obj 68 0 0
    +-++---------------- +--- +--- +--- +
    总计: 102. 444 1948年
    
    C:\Users\azografou\workspace_v9\tirtos_builds_CC3235SF_LAUNCHXL_release_ccs\Debug\configPkg\package\cfg\
    release_pem4.oem4 1732 1051. 3042
    +-++---------------- +--- +--- +--- +
    总计: 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
    +-++---------------- +--- +--- +--- +
    总计: 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
    引脚.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
    +-++---------------- +--- +--- +--- +
    总计: 2784 424 0
    
    C:/ti/simplelink_cc32xx_sdk_4_20_00_07/source/ti/display/lib/display.aem4
    Display.oem4. 42. 0 0
    +-++---------------- +--- +--- +--- +
    总计: 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 6664
    SPICC32XXDMA.oem4. 211868 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
    定时器.oem4 158. 12. 1
    PowerCC32XX_ASM.oem4 150 0 0
    list.oem4. 76. 0 0
    +-++---------------- +--- +--- +--- +
    总计: 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.
    sawn.obj 264 0 40
    netcfg.obj 192. 4. 0
    netutil.obj 180 0 0
    flowcont.obj 40 0 0
    +-++---------------- +--- +--- +--- +
    总计: 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
    +-++---------------- +--- +--- +--- +
    总计: 1458 36. 88
    
    C:/ti/simplelink_cc32xx_sdk_4_20_00_07/source/ti/net/lib/ccs/m4/slnetsock_release.a
    slnetsock.oem4. 78. 0 157.
    slnetutils.oem4. 538 0 0
    slnetif.oem4. 444 0 4.
    错误 util.oem4. 288 0 0
    插座.oem4 70 0 0
    +-++---------------- +--- +--- +--- +
    总计: 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
    +-++---------------- +--- +--- +--- +
    总计: 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
    UL_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.asc.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
    stkdepte_vars.c.obj 0 0 4.
    DIV0.ASM.obj 2. 0 0
    +-++---------------- +--- +--- +--- +
    总计: 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
    +-++---------------- +--- +--- +--- +
    总计: 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
    +-++---------------- +--- +--- +--- +
    总计: 68 0 0
    
    堆栈: 0 0 1024
    链接器生成: 0 711) 0
    +-++---------------- +--- +--- +--- +
    总计: 66880 4062 10149
    
    
    链接器生成的复制表
    
    __TI_cinit_table @
    
    
    
    
    
    
    @ 01011e10记录:2,大小/记录:8,表大小:16 .data:load addr=01011b58,load size=000002a3字节,run addr=20009c84,run size=00000818字节,compression=lzss .bss:load size=000002a3 bytes=01008, run addr=2000008bytes=01008, run_init handler s=0108bytes=0100008,run_size 处理程序大小=0108bytes=2000008bytes=0108, tinf 记录: 4、表大小:12
    索引:0、处理程序:__TI_decompress_lzss
    索引:1、处理程序:__TI_decompress_none
    索引:2、处理程序:__TI_zero_init
    
    
    全局符号:按名称名称字母顺序排序
    
    
    ---- ----
    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时钟 P_create
    01010b1f 时钟 P_DELETE
    01006be5时钟 P_getCpuFreq
    01010b2d 时钟 P_getSystemTickPeriod
    01010c31 ClockP_getSystemTicks
    01007275时钟 P_setTimeout
    01007f65时钟 P_START
    0100a8f5时钟 P_STOP
    01008a79连接
    0101193a CryptoCC32XX_COUNT
    20009c38设备 CB
    01011938 Display_count
    0100f9d1 Display_doPrintf
    01006885勘误表 Util_Set
    0100dca5 FlashDisable
    01011874 GPIOCC32XX_CONFIG
    0100d871 GPIO_enableInt
    0100b9 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 I2CFIFDataGetNonBlocking
    0100fad3 I2CFIFDataPutNonBlocking
    01010905 I2CFIFOStatus
    010106b1 I2CMasterBurstLengthSet
    0101043d I2CMasterBusy
    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消息
    0100f731 Mutex_create_handle
    01010b51 NwpMaskInterrupt
    01008cc5 nwpPowerOff
    0100f78d NwpPowerOn
    0100d4b1 NwpRegisterInterruptHandler
    01010b5d NwpUnMaskInterrupt
    0100d8bd NwpWaitForShutDownInd
    010111a0 OpcodeTranslateTable
    010015e5 PRCMCC3200MCUInit
    010106c7 PRCMHIBRegRead
    010106dd PRCMHIBRegWrite
    0100D 型 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_RAGE$$Base
    UNDEFED SHT$$INIT_ARRAGE$$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_TRANSFRAT
    01003a39扫描 AP
    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 添加
    0100fd29 SlNetif_getConnectionStatus
    0100fb75 SlNetif_getIfByID
    0100ce1d SlNetIf 初始化
    0100d501 SlNetIf
    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
    0100ea1 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定时器使能
    01010d91 TimerGetCurrentTimestamp
    01010891 TimerIntClear
    010104fd TimerIntDisable
    01010515 TimerIntEnable
    0100fa25 TimerLoadSet
    0100fa4f 定时器预分频集
    01010925 Timer_Params_init
    0101173c Timer_config
    01011944 Timer_count
    0100e399 Timer_init
    0100e785 Timer_open
    01010d25定时器_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 _SlDeviceHandleResetRequestInterally
    01010b99 _SlDeviceResetRequestInitCompletCB
    01007595 _SlDrvCmdOp
    0100c355 _SlDrvCmdSend_noLock
    0100d5F1 _SlDrvCmdSend_nowait
    01003169 _SlDrvDataReadOp
    01003821 _SlDrvDataWriteOp
    01010935_SlDrvDispatchHttpServerEvents
    01010945 _SlDrvDispatchNetAppRequestEvents
    01006059 _SlDrvDriverCBDeinit
    010035fd _SlDrvDriverCBInit
    0100b2c5 _SlDrvDriverIsApiAllded
    0100e885 _SlDrvGlobalObjUnLock
    01009879_SlDrvHandleFatalError
    0100fd4d _SlDrvIsApiInProgress
    01010955_SlDrvIsSpawnOwnGlobalLock
    0100a205 _SlDrvIsTimeoutExpired
    010106f3 _SlDrvMemZero
    01005a41 _SlDrvMsgReadSpawnCtx
    0100789d _SlDrvObjGlobalLockWaitForever
    010101d7 _SlDrvObjLockWaitForever
    010101f5 _SlDrvObjUnLock
    0100b351 _SlDrvProtect19回答设置
    0100fb9d _SlDrvProtectObjLockWaitForever
    0100fbc5 _SlDrvProtectObjUnLock
    0100477d _SlDrvReleaseAllActivePendingPoolObj
    010020ed _SlDrvReleasePoolObj
    01010aa5_SlDrvResetCmdExt
    0100d2b9 _SlDrvRxIrqHandler
    0100fd71 _SlDrvStartMeasureTimeout
    01010213 _SlDrvSyncObjSignal
    0100f869 _SlDrvSyncObjWaitForever
    0100de9d _SlDrvSyncObjWaitTimeout
    010084c9 _SlDrvWaitForInternalAppan3事件
    01002409 _SlDrvWaitForPoolObj
    0100e8c5 _slFindAndReleasePendingCmd
    0100fbed _SlFlowContactSet
    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 _SlNetAppSendTokenValueCmd
    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 __TAGR__
    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_PROD_DATA_START
    01011b58 __TI_STATUS_BASE__
    01010bd __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_absteme2ticks
    0100f899 _pthread_cleanupFxn
    0100a8f9 _pthread_removeThreadKeys
    01010ba5 _register_lock
    01010bb1_register_unlock
    2000a3ec _unlock
    0100cf3d 中止
    FFFFFFFF 二进制文件
    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计数
    2000a1a5国家1
    2000a190 counter_msec
    2000a188 COUNTER_timer0
    2000a18c counter_Timer1
    01006189 create_send_udp_packet
    20009c64显示屏
    2000a171 flag_button_pressed
    2000a170 flag_button_released
    2000a46c flag_connected
    2000a46d flag_first_connection
    2000a1b1 flag_uart_footer
    2000a1b0 flag_uart_header
    010103ef 免费
    2000a3c5 gGlobalLockCntReleased
    2000a3c4 gGlobalLockCntRequestined
    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 i2cCC32XX 对象
    01011a16 inPinType
    01010709 inet_pton
    2000a1ac input_size
    01009081 main
    01001d95 mainThread
    010033c5 mainThread1
    2000a478 main_func_sp
    0100f75f malloc
    01009d57 matchModeByRole
    0100a995 memcpy
    0100be45内存集
    20009c68模式
    20008400 netEntry
    2000a17c 数字 RxBytes
    20009c6c number_read_Bytes
    20009c70 number_read_bytes1
    01011a1c 优于 PinStranes
    010119d8 outPinTypes
    2000a3cc PingpCallBackFunc
    2000a1b2 packet_button
    20009df0 parkInfo
    0100da39打印错误
    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重新分配
    2000a174台
    01010d49 SEM_SAVERY
    01010db9 SEM_GetValue
    0100faa9 SEM_INIT
    01010d59 SEM_POST
    0100ea89 SEM_timedwait
    01010ae1 SEM_WAIT
    01009599 send_udp_packet
    01010409发送至
    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睡眠
    01010737插槽
    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号
    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_finaling__E
    0100709 ti_SYSBIOS_family_ARM_m3/Hwi_instance_init__E
    2000a3e6 ti_sysbios_family_arm_m3/Hwi_Module_State_0_exACTIVE_A
    2000a484 ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext _A
    2000a488 ti_sysbios_family_arm_m3/hwi_Module_State_0_exstack__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_starpDone__F
    010105d5 ti_SysBIOS_family_ARM_m3/Hwi_Module_starpDone__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_d调度 C__I
    200093fc ti_sysbios_family_arm_m3/hwi_d调度 表
    01008819 ti_sysbios_family_arm_m3/hwi_deign__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_exHandlerAsm__I
    01011aa4 ti_sysbios_family_arm_m3/hwi_exHandlerFunc__C
    010102c1 ti_sysbios_family_arm_m3/hwi_exter__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_cUS
    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_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_starpDone__F
    010105ed ti_SysBIOS_family_ARM_m3/Timer_Module_starpDone__S
    2000a3d0 ti_sysbios_family_arm_m3/Timer_Module_state__V
    010102e1 ti_SysBIOS_family_ARM_m3/Timer_Module_Starting__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_startupNeed__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_finaling__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_starpDone__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_堆_HeapMem_E_memory__C
    0100f94d ti_sysbios_堆_HeapMem_handle__label_S
    0100e989 ti_sysbios_b堆_HeapMem_instance_init__E
    0100f921 ti_sysbios_堆_HeapMem_Module_GateProxy_handle__label_S
    0100dc55 ti_sysbios_堆_HeapMem_Module_GateProxy_enter_E
    0100e005 ti_sysbios_堆_HeapMem_Module_GateProxy_leave__E
    01010e31 ti_sysbios_堆_HeapMem_Module_GateProxy_query_E
    01011334 ti_sysbios_堆_HeapMem_Module_Fxns__C
    01011acc ti_sysbios_堆_HeapMem_Module_gateObj__C
    010117fa ti_sysbios_堆_HeapMem_Module_id__C
    2000a420 ti_sysbios_堆_HeapMem_Module_root__V
    010115c8 ti_sysbios_堆_HeapMem_Object_DESC_C
    010113f0 ti_sysbios_堆_HeapMem_Object_Params__C
    01011ad0 ti_sysbios_堆_HeapMem_Object_count__C
    0100f641 ti_sysbios_堆_HeapMem_Object_create_S
    010100c1 ti_sysbios_堆_HeapMem_Object__delete __S
    0101080d ti_SysBIOS_堆_HeapMem_Object_get__S
    2000a398 ti_sysbios_堆_HeapMem_Object__table__V
    01008749 ti_sysbios_b堆_HeapMem_alloc__E
    0100bac1 ti_sysbios_b堆_HeapMem_free__E
    0100db69 ti_sysbios_b堆_HeapMem_getStats__E
    0100c439 ti_sysbios_堆_HeapMem_initPrimary__i
    01010dF1 ti_sysbios_堆_HeapMem_isBlocking__E
    01011ad4 ti_sysbios_堆_HeapMem_primaryHeapBaseAddr__C
    01011ad8 ti_sysbios_堆_HeapMem_primaryHeapEndAddr__C
    01011adc ti_SysBIOS_bages_HeapMem_reqAlign__C
    01010341 ti_SysBIOS_KNL_Clock_instance_finaling__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_E
    01011ae8 ti_sysbios_KNL_Mailbox_instance_State_freeQue_O
    0100e129 ti_SysBIOS_KNL_Mailbox_Module_Started_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_析 构
    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_finaling__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_析 构
    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
    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_finaling__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_E
    01011b08 ti_SysBIOS_KNL_Task_allBrokedFunc__C
    0100dc09 ti_SysBIOS_KNL_Task_allBrokedFunction__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_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_processorVitalTaskFlag__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
    0100ce1 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_ResentSupport_Module_state__V
    010103b9 ti_SysBIOS_rts_ti_ResentSupport_getReent__E
    010103b9 ti_SysBIOS_rts_ti_ResentSupport_getReent__F
    01010639 ti_SysBIOS_rts_ti_ResentSupport_getTlsAddr__I
    01010ca1 ti_sysbios_rts_ti_ResentSupport_taskRegHook__I
    01011668 timerCC32XXHWAttrs
    20009abc timerCC32XX 对象
    0100ed35 timerCallback
    0100f3c1 timerCallback1
    2000a184时间戳
    01010cad uDMAErrorStatusClear
    01010cb9 uDMAErrorStatusGet
    20009c78 UART
    20009c7c uart1.
    20009934 uartCC32XX 对象0
    200099b8 uartCC32XX 对象1.
    010119a0 udmaCC3220SHWAttrs
    20009c58 udmaCC3220SObject
    0100edb1 usleep
    00000001 XDC_ROV_RUNTIME_MON_CHECKSUM
    00000001 XDC_ROV_RUNTIME_MON__WRITE
    0100e171 XDC_runtime Core_赋 值 Params__i
    0100b7a1 XDC_runtime 核心构造 Object__I
    010091f9 XDC_runime_Core_CreateObject__I
    0100c271 XDC_runtime_Core_deleteObject__I
    01011b18 XDC_RAuntime_Error_E_MEMORY__C
    2000a344 XDC_RAuntime_Error_IgnoreBlock
    01010681 XDC_RAuntime_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 主模块 GateProxy_handle__label_S
    01010e29 XDC_RAuntime_Main_Module_GateProxy_query_E
    0100f94d XDC_runtime 内存_HeapProxy_handle__label_S
    01010d6d XDC_runtime 内存_HeapProxy_alloc__E
    01010d77 XDC_RAuntime_Memory_HeapProxy_free__E
    01011a8e XDC_runtime 内存模块_id__C
    2000a498 XDC_RAuntime_Memory_Module_state__V
    0100b469 XDC_RAuntime_Memory_alloc__E
    01011b2c xdc_runtime_Memory_defaultHeapInstance__C
    01010a59 XDC_RAuntime_Memory_free
    2000a448 XDC_RAuntime_Startup_Module_state__V
    00000001 XDC_RAuntime_Startup__EXECFXN__C
    00000001 XDC_Runtime_Startup__RESETFXN__C
    01011b30 XDC_runtime _启动_execImpl__C
    0100cf41 XDC_RAuntime_Startup_exec__E
    010108d3 XDC_runtime _启动_exec__i
    010119ac XDC_runtime 启动_firstFxns__A
    01011a00 XDC_runtime _启动_firstFxns__C
    01011a08 XDC_RAuntime_Startup_lastFxns__C
    01011b34 XDC_RAuntime_Startup_maxPasses__C
    0100ab5f XDC_RAuntime_Startup_reset__I
    01010cc9 XDC_Runtime_Startup_rtsDone__E
    01011948 XDC_Runtime_Startup_sfxnRts__A
    01011b38 XDC_Runtime_Startup_sfxnRts__C
    01011688 XDC_runtime 启动 sfxnTab__A
    01011b3c XDC_runtime 启动 sfxnTab__C
    01006be9 XDC_runime_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_lease__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_RAuntime_System_Module_state__V
    01010e11 XDC_RAuntime_System_Module_startup___E
    01010a69 XDC_RAUNTIME_System_SupportProxy_abort__E
    01010a79 XDC_RAuntime_System_SupportProxy_exit__E
    01011b4c XDC_runtime System_abortFxn__C
    01010e71 XDC_RAuntime_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_RAuntime_System_processAtExit___E
    
    
    全局符号:按符号地址
    
    名称排序
    ---- ----
    00000000 _ASM__
    00000001 XDC_ROV_RUNTIME_MON_CHECKSUM
    00000001 XDC_ROV_RUNTIME_MON__WRITE
    00000001 XDC_RAuntime_Startup__EXECFXN__C
    00000001 XDC_Runtime_Startup__RESETFXN__C
    00000083 __ISA__
    00000096 _PLAT__
    000000bd __TAGR__
    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扫描 AP
    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勘误表 Util_Set
    010069a5 UARTCC32XX_CLOSE
    01006be5时钟 P_getCpuFreq
    01006be9 XDC_runime_Startup_startMods__I
    01006d09 sl_Start
    01006e25 SimpleLinkNetAppEventHandler
    01006f3d _SlNetAppHandleASYNC_DnsGetHostByService
    01007055 I2CCC32XX_transfer
    01007165号
    01007275时钟 P_setTimeout
    01007279 ti_SysBIOS_KNL_Task_postInit___I
    01007491 _SlDeviceEventHandler
    01007595 _SlDrvCmdOp
    01007699 ti_SysBIOS_KNL_Task_instance_finaling__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时钟 P_START
    01007f69 pthread_create
    01008059 ti_SysBIOS_KNL_Task_instance_init__E
    01008149 clock_gettime
    01008235 SlNetIf 添加
    01008319 SPICC32XXDMA_CLOSE
    010083F1 _SlDeviceHandleASYNC_InitComplete
    010084c9 _SlDrvWaitForInternalAppan3事件
    010085a1_SlNetAppHandleASYNC_NetAppReceive.
    01008749 ti_sysbios_b堆_HeapMem_alloc__E
    01008819 ti_sysbios_family_arm_m3/hwi_deign__i
    010088c9 ti_sysbios_family_arm_m3/hwi_interruptsareDisabledButShouldNotBe
    010088e5 UARTCC32XX_write
    01008a77 TimerCC32XX_init
    01008a79连接
    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_runime_Core_CreateObject__I
    010092b5 UARTCC32XX_readPolling
    0100936f UARTCC32XX_init
    01009371 _SlNetAppHandleASYNC_DnsGetHostByName
    01009429 _SlNetAppHandleASYNC_PingResponse
    01009599 send_udp_packet
    01009651 SL_WlanGet
    0100709 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时钟 P_STOP
    0100a8f9 _pthread_removeThreadKeys
    0100a995 __aeabi_memcpy
    0100a995 __aeabi_memcpy4.
    0100a995 __aeabi_memcpy8.
    0100a995 memcpy
    0100aac9 __aeabi_uldivmod
    0100ab5f XDC_RAuntime_Startup_reset__I
    0100ab61 Semaphore_pend_handle
    0100abf5 SimpleLinkWlanEventHandler
    0100ad1d sl_WlanGetNetworkList
    0100adb1 ti_SysBIOS_KNL_Task_exit__e_E
    0100ae45 SlNetSock_create
    0100aff9 _SlDeviceHandleASYNC_Stop
    0100b089 _SlSocketHandleASYNC_ACCEPT
    0100b1a9 ti_sysbios_KNL_Task_Module_startup___E
    0100b2c5 _SlDrvDriverIsApiAllded
    0100b351 _SlDrvProtect19回答设置
    0100b3dd sl_Recv
    0100b469 XDC_RAuntime_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 核心构造 Object__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_b堆_HeapMem_free__E
    0100bb45 Power_setDependency
    0100bbc5 Hwip_disableInterrupt
    0100bbc9 ti_SysBIOS_KNL_Clock_workFunc__E
    0100bc49 UDMACC32XX_OPEN
    0100bcc5 Hwip_enableInterrupt
    0100bcc9 _pthread_absteme2ticks
    0100bdc1 sl_WlanPolicySet
    0100be3d __aeabi_memclr
    0100be3d __aeabi_memclr4.
    0100be3d __aeabi_memclr8.
    0100be3f __aeabi_memset
    0100be3f _aeabi_memset4
    0100be3f __aeabi_memset8.
    0100be45内存集
    0100b9 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_堆_HeapMem_initPrimary__i
    0100c515 _SlDeviceHandleResetRequestInterally
    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_d调度 C__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 初始化
    0100ce21 ti_sysbios_family_arm_m3/Timer_start_E
    0100ce7d SlNetUtil_init
    0100ce81 ti_sysbios_KNL_Swi_schedule__i
    0100cedd __abort_execution
    0100ce1 ti_SysBIOS_KNL_Task_startCore__E
    0100cf3d C$$$EXIT
    0100cf3d 中止
    0100cf3d XDC_runtime System_abortStd__E
    0100cf41 XDC_RAuntime_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
    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打印错误
    0100dad1 sl_WlanSetMode
    0100db1d ti_SysBIOS_family_ARM_m3/TaskSupport_buildTaskStack
    0100db69 ti_sysbios_b堆_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_allBrokedFunction__I
    0100dc55 ti_sysbios_堆_HeapMem_Module_GateProxy_enter_E
    0100dc59 ti_SysBIOS_KNL_Task_schedule__i
    0100dca5 FlashDisable
    0100D 型 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_堆_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_Started_E
    0100e171 XDC_runtime Core_赋 值 Params__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
    0100e57d ti_SysBIOS_KNL_Clock_TimerProxy_start__E
    0100e581 XDC_runtime System_atexit___E
    0100e5c5时钟 P_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_b堆_HeapMem_instance_init__E
    0100e9c9 SlNetSock_Close
    0100ea45重新分配
    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睡眠
    0100ebfd ti_SysBIOS_KNL_Task_delete
    0100ec01 ti_sysbios_family_arm_m3/hwi_instance_finaling__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_lease__E
    0100ecf9 ti_sysbios_KNL_Swi_restore__E
    0100ed35 timerCallback
    0100edb1 usleep
    0100edF1 XDC_RAuntime_System_processAtExit___E
    0100ee67 SlNetIfWifi_getIPAddr
    0100ea1 TimerCC32XX_Close
    0100ef15 GPIO_READ
    0100ef4d PRCMLPDSEnterKeepDebugIf
    0100ef85 SlNetIfWifi_Recvfrom
    0100efbd SlNetIfWifi_Sendto
    0100eff5 SlNetIfWifi_socket
    0100f0d9 ti_SysBIOS_KNL_Task_processorVitalTaskFlag__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_堆_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 主模块 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_堆_HeapMem_Module_GateProxy_handle__label_S
    0100f94d ti_sysbios_堆_HeapMem_handle__label_S
    0100f94d XDC_runtime 内存_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 定时器预分频集
    0100fa79 calloc
    0100faa3 SPICC32XXDMA_CONTROL
    0100faa9 SEM_INIT
    0100fad3 I2CFIFDataPutNonBlocking
    0100fafd PRCMPeripheralClkDisable
    0100fb25 PowerCC32XX_initPolicy
    0100fb4d Power_registerNotify
    0100fb75 SlNetif_getIfByID
    0100fb9d _SlDrvProtectObjLockWaitForever
    0100fbc5 _SlDrvProtectObjUnLock
    0100fbed _SlFlowContactSet
    0100fc15 ti_sysbios_family_arm_m3/hwi_exHandlerAsm__I
    0100fc41 ti_sysbios_KNL_Clock_addi__E
    0100fc69 ti_sysbios_KNL_Swi_Module_startup___E
    0100fc91 I2CFIFDataGetNonBlocking
    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_堆_HeapMem_Object__delete __S
    010100e1 ti_SysBIOS_KNL_Idle_run__e_E
    01010101 ti_SysBIOS_KNL_Semaphore_析 构
    01010121 ti_SysBIOS_KNL_Task_Object__delete_S
    01010141 I2CMasterIntStatusEx
    0101015f SlNetIfWifi_bind
    0101017d SlNetIfWifi_connect
    0101019b TimerDisable
    010101b9定时器使能
    010101d7 _SlDrvObjLockWaitForever
    010101f5 _SlDrvObjUnLock
    01010213 _SlDrvSyncObjSignal
    0101024f ti_SysBIOS_family_xxx_Hwi_switchAndRunFunc
    0101026d PinToPadGet
    010102a5 _SlInternalIsItSpawnThread
    010102c1 ti_sysbios_family_arm_m3/hwi_exter__i
    010102e1 ti_SysBIOS_family_ARM_m3/Timer_Module_Starting__E
    01010301 ti_sysbios_family_arm_m3/Timer_stop_E
    01010321 ti_SysBIOS_Gates_GateMutex_instance_init__E
    01010341 ti_SysBIOS_KNL_Clock_instance_finaling__E
    0101035d ti_SysBIOS_KNL_Queue_析 构
    01010379 ti_sysbios_KNL_Queue_Put__E
    01010399 ti_SysBIOS_KNL_Task_enter__I
    010103b9 ti_SysBIOS_rts_ti_ResentSupport_getReent__E
    010103b9 ti_SysBIOS_rts_ti_ResentSupport_getReent__F
    010103d5 SlNetIfWifi_Listen
    010103ef 免费
    01010409发送至
    01010423 ti_SYSBIOS_family_ARM_m3/Hwi_pendSV_I
    0101043b ti_SysBIOS_family_ARM_m3/Hwi_return
    0101043d I2CMasterBusy
    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_starpDone__F
    010105d5 ti_SysBIOS_family_ARM_m3/Hwi_Module_starpDone__S
    010105d5 ti_sysbios_hal_hwi_HwiProxy_Module_starpDone__S
    010105ed ti_SysBIOS_family_ARM_m3/Timer_Module_starpDone__F
    010105ed ti_SysBIOS_family_ARM_m3/Timer_Module_starpDone__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_ResentSupport_getTlsAddr__I
    01010681 XDC_RAuntime_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插槽
    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_堆_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 _启动_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_cUS
    010109e9 ti_SysBIOS_family_ARM_m3/TaskSupport_swap_e_E
    010109e9 ti_SysBIOS_KNL_Task_SupportProxy_swap_e_E
    010109F1 ti_SysBIOS_KNL_Task_swapReturn
    010109f9 ti_SysBIOS_Gates_GateMutex_instance_finaling__E
    01010a09 ti_SysBIOS_KNL_Mailbox_Object__get__S
    01010a19 ti_SysBIOS_KNL_Semaphore_instance_finaling__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_RAuntime_Memory_free
    01010a69 XDC_runtime SysCallback_abort__E
    01010a69 XDC_RAUNTIME_System_SupportProxy_abort__E
    01010a79 XDC_runtime SysCallback_exit___E
    01010a79 XDC_RAuntime_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 时钟 P_DELETE
    01010b2d 时钟 P_getSystemTickPeriod
    01010b39 Hwip_delete
    01010b51 NwpMaskInterrupt
    01010b5d NwpUnMaskInterrupt
    01010b69 Power_getConstraintMask
    01010b75 SemaphoreP_DELETE
    01010b81 SimpleLinkHttpServerEventHandler
    01010b8d SimpleLinkNetAppRequestEventHandler
    01010b99 _SlDeviceResetRequestInitCompletCB
    01010ba5 _register_lock
    01010bb1_register_unlock
    01010bd __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_ResentSupport_taskRegHook__I
    01010cad uDMAErrorStatusClear
    01010cb9 uDMAErrorStatusGet
    01010cc9 XDC_Runtime_Startup_rtsDone__E
    01010cd5 ClockP_Params_init
    01010cdf I2C_Close
    01010ce9 SPI_Close
    01010cf3 SPI_TRANSFRAT
    01010cfd SimpleLinkFatalErrorEventHandler
    01010d07 SimpleLinkGeneralEventHandler
    01010d11 SimpleLinkNetAppRequestMemFreeEventHandler
    01010d1b SimpleLinkSockEventHandler
    01010d25定时器_START
    01010d2f UART_READ
    01010d39 UART_WRITE
    01010d49 SEM_SAVERY
    01010d59 SEM_POST
    01010d63 sl_Task
    01010d6d XDC_runtime 内存_HeapProxy_alloc__E
    01010d77 XDC_RAuntime_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_堆_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_RAuntime_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_RAuntime_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_堆_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_RAuntime_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_堆_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_堆_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_堆_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 启动 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_堆_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 启动_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 _启动_firstFxns__C
    01011a08 XDC_RAuntime_Startup_lastFxns__C
    01011a16 inPinType
    01011a1c 优于 PinStranes
    01011a52 _SlNetAppSendResponseCmdCtrl
    01011a56 _SlNetAppSendTokenValueCmd
    01011a8e XDC_runtime 内存模块_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_exHandlerFunc__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_startupNeed__C
    01011ac4 ti_sysbios_gates_GateMutex_instance_State_SEM_O
    01011ac8 ti_sysbios_堆_HeapMem_E_memory__C
    01011acc ti_sysbios_堆_HeapMem_Module_gateObj__C
    01011ad0 ti_sysbios_堆_HeapMem_Object_count__C
    01011ad4 ti_sysbios_堆_HeapMem_primaryHeapBaseAddr__C
    01011ad8 ti_sysbios_堆_HeapMem_primaryHeapEndAddr__C
    01011adc ti_SysBIOS_bages_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_allBrokedFunc__C
    01011b0c ti_SysBIOS_KNL_Task_defaultStackHeap__C
    01011b10 ti_SysBIOS_KNL_Task_defaultStackSize__C
    01011b14 ti_SysBIOS_KNL_Task_numConstructedTasks__C
    01011b18 XDC_RAuntime_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 _启动_execImpl__C
    01011b34 XDC_RAuntime_Startup_maxPasses__C
    01011b38 XDC_Runtime_Startup_sfxnRts__C
    01011b3c XDC_runtime 启动 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_STATUS_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 netEntry
    20008928 ti_SysBIOS_KNL_Task_Instance_State_0_stack__A
    20008b28 spiCC32XXDMAObjects
    20008bb0 i2cCC32XX 对象
    20009000 g_CB
    200093fc ti_sysbios_family_arm_m3/hwi_d调度 表
    20009708 PowerCC32XX_contextSave
    20009834 buffer_read_UART1
    20009934 uartCC32XX 对象0
    200099b8 uartCC32XX 对象1.
    20009abc timerCC32XX 对象
    20009b24 GlobalLockObj
    20009b50 g_SlInternalSpawnCB
    20009c38设备 CB
    20009c44消息
    20009c50 spiCC32XXSDMAscratchBuf
    20009c58 udmaCC3220SObject
    20009c64显示屏
    20009c68模式
    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台
    2000a178 i
    2000a17c 数字 RxBytes
    2000a180 size_magic_header
    2000a184时间戳
    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计数
    2000a1a5国家1
    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_RAuntime_Error_IgnoreBlock
    2000a364 ti_sysbios_KNL_Swi_Module_state__V
    2000a380 ti_sysbios_family_arm_m3/Hwi_Object_Table__V
    2000a398 ti_sysbios_堆_HeapMem_Object__table__V
    2000a3b0 ti_sysbios_family_arm_cc32xx_seconds_Module_state___V
    2000a3c4 gGlobalLockCntRequestined
    2000a3c5 gGlobalLockCntReleased
    2000a3c6 g_SlDeviceStatus
    2000a3c8 g_pcb
    2000a3cc PingpCallBackFunc
    2000a3d0 ti_sysbios_family_arm_m3/Timer_Module_state__V
    2000a3e6 ti_sysbios_family_arm_m3/Hwi_Module_State_0_exACTIVE_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_堆_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_RAuntime_Startup_Module_state__V
    2000a450 xdc_runtime_System_Module_State_0_atexitHandlers__A
    2000a458 XDC_RAuntime_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_exstack__a
    2000a48c ti_sysbios_gates_GateHwi_Object__table__V
    2000a490 ti_sysbios_KNL_Task_Module_State_0_idleTask__A
    2000a494 ti_sysbios_rts_ti_ResentSupport_Module_state__V
    2000a498 XDC_RAuntime_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_PROD_DATA_START
    FFFFFFFF __binIT__
    FFFFFFFF __c_args__
    FFFFFFFF 二进制文件
    UNDEFED SHT$$INIT_RAGE$$Base
    UNDEFED SHT$$INIT_ARRAGE$$LIMIT
    
    [902个符号]
    

    谢谢!

    Artemis

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    Artemis、

    这会有所帮助。

    您能否再次启动调试器并获得第一次捕获中显示的消息。  然后转到"Registers"视图并显示堆栈指针(SP)的值。  这也可能超出范围。  它应列在"Core Registers"下:

    此致、

    John

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 John:

    是的、你是对的。

    SP 也在0x20040000地址处超出范围。 您对如何解决该问题有什么建议吗?

    谢谢!

    Artemis

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    内部对此进行了一些讨论。  callstack 显示您已在 main()处停止。  这是否正好位于 main()的开头?  如果是这样、如果您单步执行一次、它是否会清除消息并在变量视图中显示当前显示超出范围地址的变量的不同地址集?

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    Artemis、

    是否可以为工程压缩.out 文件并附加它?  我们需要检查这是否是为程序生成的符号的问题、或者可能是符号的解释问题。

    如果您不想将其放在公共论坛中、则可以单击我的姓名、然后向我发送包含附件的私人邮件。

    谢谢、

    John

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 John:

    是的、没错。 当我运行 STEP 时、变量会得到一个有效地址。 这是预期行为吗?

    我必须获得发送项目的批准、如果可以、我会向您发送一封私人邮件。

    谢谢、

    Artemis

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    Artemis、

    这使其听起来就像是应用程序是好的、这是符号信息或对符号信息进行解释的最终问题。  我们还尝试使用一些 SDK 示例进行重现。  如果我们能够做到这一点、我们就可以跳过您的项目。

    此致、

    John

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    是的、我们最终可以通过其中一个 SDK 示例来重现这一点。  这应该足以确定正在进行的操作。  但是、如果我们能够重现这种情况、这不是您的应用程序的问题。  CCS 应该知道堆栈帧尚未设置、并且未显示该消息。  因此、要么符号信息未告知 CCS、要么它未正确解释它。  因此您可以忽略该消息。

    此致、

    John

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 John:

    感谢您的回复。 因此、我想这不会影响程序的执行。 但是、是否有方法可以设置调试器设置、使其不会显示类似这样的错误消息?

    谢谢、

    Artemis  

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    Artemis、

    我有一个用于跟踪以下内容的错误文件: https://sir.ext.ti.com/jira/browse/EXT_EP-10101

    据我所知、没有调试器设置来避免这种情况。  开发团队一看、我们就会知道这是调试器中的问题还是编译器生成的符号信息。

    此致、

    John

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 John:

    感谢您的帮助!

    最棒的

    Artemis