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.

[参考译文] BLE CC2640 -UART 和闪存访问

Guru**** 2468460 points
Other Parts Discussed in Thread: CC2650, SYSBIOS, CC2650STK

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

https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/620662/ble-cc2640--uart-and-flash-memory-access

Thread 中讨论的其他器件:CC2650SYSBIOSCC2650STK

在当前的 BLE 项目中,我首先初始化 UART 功能,然后初始化闪存。在这种情况下,UART 功能不工作。如果我禁用闪存功能,UART 工作正常。所以我无法在 time.it 上访问这两个都与内存问题有关??  有人能澄清我吗?

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

    很难判断正在发生什么、闪存和 UART 可能位于相同的 GPIO 引脚上、如果另一个引脚已初始化、则导致其中一个引脚无法初始化。 至少这就是它的样子!

    当您尝试打开句柄时、返回值是多少?

    您能否提供板级配置文件以及初始化代码?

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

    大家好、

    能不能有人能帮我解决同样的问题。

    如果我在代码中初始化 UART 无法正常工作的两个文件、我希望在项目中同时使用 UART 和 NVS 闪存(片上)。

    我正在使用片上闪存、因此无需使用 GPIO 引脚初始化闪存、只有 GPIO 用于 UART 初始化。

    /* UART 初始化:*/

    void Board_openUART (void)

      UART_Params uartParams;

      UART_PARAMS_INIT (uartParams);

      uartParams.baudrate = 115200;

     UART_Handle hUart = UART_OPEN (Board_UART、uartParams);

    /* NVS 闪存初始化*/

    void File_System_Int (void)

    NVS_init();

    NvsHandle = NVS_OPEN (CC2650_LAUNCHXL_NVS1F000、空);

    /*+ 1以确保写入'\0'字符*/

    strsize = strlen ("bar1")+ 1;

    /*确保缓冲区大小是4的倍数*/

    strsize =(strsize + 4)& 0xFFFFFFFFC;

    e2e.ti.com/.../4278.Board.h

    提前感谢。

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

    正如 Maniswa 所说的、我们只将 GPIO 引脚用于 UART 初始化。我的主板具有128KB 的片上闪存、因此我们不想通过 GPIO 引脚初始化我的存储器

    我在这里附上了我的代码

    /* UART 初始化:*/

    void Board_openUART (void)



    UART_Params uartParams;

    UART_PARAMS_INIT (uartParams);

    uartParams.baudrate = 115200;

    UART_Handle hUart = UART_OPEN (Board_UART、uartParams);



    /* NVS 闪存初始化*/

    void File_System_Int (void)



    NVS_init();

    NvsHandle = NVS_OPEN (CC2650_LAUNCHXL_NVS1F000、空);

    /*+ 1以确保写入'\0'字符*/

    strsize = strlen ("bar1")+ 1;

    /*确保缓冲区大小是4的倍数*/

    strsize =(strsize + 4)& 0xFFFFFFFFC;




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

    NVS 代码本身是否正常工作(即不打开 UART)?

    您将 NVS 区域放置在哪里? 它是否意外与应用程序代码/数据重叠?

    您可以共享您的 CCS 项目吗?

    如果没有、您能否仅共享 NVS HWAttrs 板文件内容?

    您使用的是 TI 工具还是 GCC 工具?

    Alan

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

    尊敬的 Alan:

    感谢你的答复。

    NVS 闪存和 UART 均可单独正常工作。 如果我同时使用这两种方法、则我不会在串行端口上获取任何数据、并且代码未运行。

    在这里、NVS 和 UART 都是我在正常函数中使用的、而不是在任何任务函数中使用的。 如果我像这样使用、是否存在任何问题? 或者我必须在任务函数中同时使用这两者。

    我仅使用 TI 工具 i.e;仅使用 CCS v6

    您能告诉我在哪里可以找到此 NVS HWAttrs 板级配置文件吗?

    提前感谢。

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。
    包含 NVS 驱动程序配置内容的板级配置文件的名称应类似于"CC2650_LAUNCHXL.c"。 还有一个名为"CC2650_LAUNCHXL.cmd"的相应链接器命令文件。 您还可以在项目的"Debug"或"release"目录中共享生成的.map 文件吗?

    我怀疑正在使用的 NVS 闪存区域与应用程序代码或数据重叠、从而导致应用程序在写入闪存时自行损坏。

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

    尊敬的 Alan:

    我将在这里附加文件。

    CC2650_LAUNCHXL.cmd文件内容、如下所示

    /*
     *版权所有(c) 2015-2016、德州仪器(TI)公司
     *保留所有权利。
     *
     *以源代码和二进制形式重新分发和使用、有无
     *如果满足以下条件、则允许进行修改
     符合*:
     *
     ** 源代码的重新分发必须保留上述版权
     *  注意、此条件列表和以下免责声明。
     *
     * *二进制形式的再发行必须复制上述版权
     *  请注意、中的此条件列表和以下免责声明
     *  随分发提供的文档和/或其他材料。
     *
     * *德州仪器公司的名称和名称均不相同
     *  其贡献者可用于认可或推广衍生产品
     *  未经特定的事先书面许可。
     *
     *本软件由版权所有者和贡献者"按原样"提供
     *以及任何明示或暗示的保证、包括但不限于:
     *特定适销性和适用性的隐含保证
     *不承认目的。 在任何情况下、版权所有者不得或
     *派遣国应对任何直接、间接、偶然、特殊、
     *典型或必然的损害(包括但不限于
     *采购替代货物或服务;丧失使用、数据或利润;
     *或业务中断)、无论原因是什么以及任何责任理论、
     *无论是合同、严格责任还是侵权行为(包括疏忽或)
     *否则)因使用本软件而以任何方式产生、
     *即使被告知可能会发生此类损坏。
     *
    /*
     * ==== CC2650_LAUNCHXL.cmd ===
     * Code Composer Studio 的 CC26x0F128 PG2链接器配置文件
     *
    /*覆盖默认入口点。                       *
    --entry_point ResetISR
    /*允许 main()获取 args                         *
    -args 0x8
    /*禁止警告和错误:                       *
    /*- 10063:有关入口点不是_c_int00的警告           *
    /*- 16011、16012:8字节对齐错误。 在对象 中进行链接时观察到*
    使用 Keil (ARM 编译器)编译的/*文件                 *
    --diag_suppress=10063、16011、16012
    /*应用程序的起始地址。  通常是中断矢量 */
    /*必须位于应用程序的开头。            *
    #define FLASH_base        0x0
    #define FLASH_SIZE        0x20000
    #define RAM_base         0x20000000
    #define RAM_SIZE         0x5000
    /*系统内存映射*/
    存储器
      /*存储在内部闪存中并从内部闪存执行的应用程序*/
      闪存(RX):origin = flash_BASE,length = flash_size
      /*应用程序使用内部 RAM 进行数据*/
      SRAM (rwx):origin = RAM_base,length = RAM_SIZE
    /*内存中的段分配*/
    部分
      .text      : >闪存
      .const      : >闪存
      .constdata   : > FLASH
      rodata     : >闪存
      .cinit      : >闪存
      .pinit      : >闪存
      init_array  : > FLASH
      .EMB_text   : > FLASH
      .ccfg      : >闪光灯(高电平)
    #ifdef __TI_Compiler_version__
    #if __TI_Compiler_version__>=15009000
      .TI.ramfunc  :{} load=flash,run=SRAM,table (BINIT)
    #endif
    #endif
      .data      : > SRAM
      .bss       : > SRAM
      sysmem     : > SRAM
      堆栈      : > SRAM (高)
      .nonretenvar  : > SRAM
    应用程序映射文件:
    秘书长的报告
             TI ARM 连接器 PC v15.12.3           
    秘书长的报告
    >> 2017年9月17日10:34:23日链接
    输出文件名:  
    入口点符号:"ResetISR" 地址:00008ff5
    存储器配置
         名称       使用       的原始长度未使用 属性  填充
    ------------  ----  ------  ----  ----  --------  
     闪存         00000000 00011000 0000cf8d 00004073 R X
     FLASH_LAST_PAGE   0001f000 00001000 00000058 00000fa8 R X
     SRAM          20000000 00004428 0000435f 000000c9 RW X
    段分配映射
    运行 origin load origin length init length atts members
    ------  ------ ------ ------ ---- ----
    00000000  00000000  0000cf94 0000cf94  r-x
     00000000  00000000  0000003c 0000003c  r-.Vecresets
     0000003c  0000003c  000000c4 000000c4  r-x .text.1
     00000100  00000100  0000003c 0000003c  r-.const:ti_SysBIOS_KNL_Task_Object_Params__C
     0000013c  0000013c  00000034 00000034  r-.const:ti_SysBIOS_KNL_Mailbox_Object_Params__C
     00000170  00000170  00000030 00000030  r-.const:ti_sysbios_family_arm_m3/Hwi_Object_Params__C
     000001a0  000001a0  0000002c 0000002c  r-.const:ti_sysbios_hal_hwi_Object_Params__C
     000001cc  000001cc  00000028 00000028  r-.const:ti_sysbios_b堆_HeapMem_Module_Fxns__C
     000001f4  000001f4  00000028 00000028  r-.const:ti_SysBIOS_KNL_Swi_Object_Params__C
     0000021c  0000021c  00000024 00000024  r-.const:ti_sysbios_gates_GateHwi_Module_Fxns__C
     00000240  00000240  00000024 00000024  r-.const:ti_sysbios_gates_GateMutex_Module_Fxns__C
     00000264  00000264  00000024 00000024  r-.const:ti_sysbios_b堆_HeapMem_Object_Params__C
     00000288  00000288  00000024 00000024  r-.const:ti_SysBIOS_KNL_Clock_Object_Params__C
     000002ac  000002ac  00000024 00000024  r-.const:ti_SysBIOS_KNL_Semaphore_Object_Params__C
     000002d0  000002d0  00000020 00000020  r-.const:ti_sysbios_family_arm_m3/Hwi_Object_Desc_C
     000002f0  000002f0  00000020 00000020  r-.const:ti_sysbios_gates_GateHwi_Object__Desc_C
     00000310  00000310  00000020 00000020  r-.const:ti_sysbios_gates_GateMutex_Object_Desc_C
     00000330  00000330  00000020 00000020  r-.const:ti_sysbios_hal_hwi_Object_Desc__C
     00000350  00000350  00000020 00000020  r-.const:ti_sysbios_bst_HeapMem_Object_Desc__C
     00000370  00000370  00000020 00000020  r-.const:ti_SysBIOS_KNL_Clock_Object_Desc__C
     00000390  00000390  00000020 00000020  r-.const:ti_sysbios_KNL_Mailbox_Object_DESC_C
     000003b0  000003b0  00000020 00000020  r-.const:ti_sysbios_KNL_Queue_Object__Desc_C
     000003d0  000003d0  00000020 00000020  r-.const:ti_SysBIOS_KNL_Semaphore_Object_DESC_C
     000003f0  000003f0  00000020 00000020  r-.const:ti_SysBIOS_KNL_Swi_Object_DESC_C
     00000410  00000410  00000020 00000020  r-.const:ti_SysBIOS_KNL_Task_Object_Desc__C
     00000430  00000430  00000018 00000018  r-.const:ti_sysbios_gates_GateHwi_Object_Params__C
     00000448  00000448  00000018 00000018  r-.const:ti_sysbios_gates_GateMutex_Object_Params__C
     00000460  00000460  00000018 00000018  r-.const:ti_SysBIOS_KNL_Queue_Object_Params__C
     00000478  00000478  00000008 00000008  r-.const:ti_SysBIOS_KNL_Idle_funclist___C
     00000480  00000480  00000004 00000004  r-x .text.2
     00000484  00000484  00000004 00000004  r-.const:ti_sysbios_family_arm_cc26xx_Timer_startupNeed__C
     00000488  00000488  00000004 00000004  r-.const:ti_SysBIOS_family_ARM_m3/Hwi_E_alreadyDefined___C
     0000048c  0000048c  00000004 00000004  r-.const:ti_sysbios_family_arm_m3/hwi_E_hwiLimitExceled__C
     00000490  00000490  00000004 00000004  r-.const:ti_sysbios_family_arm_m3/Hwi_NUM_interrupts__C
     00000494  00000494  00000004 00000004  r-.const:ti_sysbios_family_arm_m3/Hwi_Object_count_C
     00000498  00000498  00000004 00000004  r-.const:ti_sysbios_family_arm_m3/Hwi_Object__table_C
     0000049c  0000049c  00000004 00000004  r-.const:ti_sysbios_family_arm_m3/Hwi_CCR_C
     000004a0  000004a0  00000004 00000004  r-.const:ti_sysbios_family_arm_m3/hwi_exHandlerFunc__C
     000004a4  000004a4  00000004 00000004  r-.const:ti_sysbios_family_arm_m3/hwi_nullIsrFunc__C
     000004a8  000004a8  00000004 00000004  r-.const:ti_sysbios_family_arm_m3/hwi_numSparseInterrupts___C
     000004ac  000004ac  00000004 00000004  r-.const:ti_sysbios_family_arm_m3/hwi_priGroup__C
     000004b0  000004b0  00000004 00000004  r-.const:ti_SysBIOS_family_ARM_m3/TaskSupport_stackAlignment___C
     000004b4  000004b4  00000004 00000004  r-.const:ti_SysBIOS_b堆_HeapMem_E_MEMORY__C
     000004b8  000004b8  00000004 00000004  r-.const:ti_SysBIOS_b堆_HeapMem_Module_gateObj__C
     000004bc  000004bc  00000004 00000004  r-.const:ti_sysbios_b堆_HeapMem_Object_count__C
     000004c0  000004c0  00000004 00000004  r-.const:ti_sysbios_b堆_HeapMem_Object__table__C
     000004c4  000004c4  00000004 00000004  r-.const:ti_SysBIOS_bages_HeapMem_reqAlign__C
     000004c8  000004c8  00000004 00000004  r-.const:ti_SysBIOS_KNL_Clock_serviceMargin__C
     000004cc  000004cc  00000004 00000004  r-.const:ti_SysBIOS_KNL_Mailbox_Object_count__C
     000004d0  000004d0  00000004 00000004  r-.const:ti_SysBIOS_KNL_Mailbox_Object__table_C
     000004d4  000004d4  00000004 00000004  r-.const:ti_SysBIOS_KNL_Queue_Object_count__C
     000004d8  000004d8  00000004 00000004  r-.const:ti_SysBIOS_KNL_Queue_Object__table__C
     000004dc  000004dc  00000004 00000004  r-.const:ti_sysbios_KNL_Swi_Object_count__C
     000004e0  000004e0  00000004 00000004  r-.const:ti_SysBIOS_KNL_Swi_Object__table_C
     000004e4  000004e4  00000004 00000004  r-.const:ti_SysBIOS_KNL_Swi_numPriorities __C
     000004e8  000004e8  00000004 00000004  r-.const:ti_SysBIOS_KNL_Task_Object_count__C
     000004ec  000004ec  00000004 00000004  r-.const:ti_sysbios_KNL_Task_Object__table_C
     000004f0  000004f0  00000004 00000004  r-.const:ti_SysBIOS_KNL_Task_allBrokedFunc__C
     000004f4  000004f4  00000004 00000004  r-.const:ti_SysBIOS_KNL_Task_defaultStackHeap___C
     000004f8  000004f8  00000004 00000004  r-.const:ti_SysBIOS_KNL_Task_defaultStackSize___C
     000004fc  000004fc  00000004 00000004  r-.const:ti_SysBIOS_KNL_Task_numConstructedTasks__C
     00000500  00000500  00000002 00000002  r-x .text.3
     00000502  00000502  00000002 00000002  r-.const:ti_sysbios_family_arm_cc26xx_Timer_Module_id__C
     00000504  00000504  00000002 00000002  r-.const:ti_SysBIOS_family_ARM_cc26xx_TimestampProvider_useClockTimer__C
     00000506  00000506  00000002 00000002  r-.const:ti_sysbios_family_arm_m3/Hwi_Module_id__C
     00000508  00000508  00000002 00000002  r-.const:ti_sysbios_gates_GateHwi_Module_id__C
     0000050a  0000050a  00000002 00000002  r-.const:ti_sysbios_gates_GateMutex_Module_id__C
     0000050c  0000050c  00000002 00000002  r-.const:ti_sysbios_堆_HeapMem_Module_id__C
     0000050e  0000050e  00000002 00000002  r-.const:ti_SysBIOS_KNL_Task_initStackFlag___C
     00000510  00000510  00000001 00000001  r-.const:ti_SysBIOS_KNL_Clock_tickMode__C
     00000514  00000514  00000008 00000008  r-.const:XDC_Runtime_Startup_firstFxns__C
     0000051c  0000051c  00000008 00000008  r-.const:XDC_Runtime_Startup_lastFxns__C
     00000524  00000524  00000004 00000004  r-.const:XDC_Runtime_assertFail__C
     00000528  00000528  00000004 00000004  r-.const:XDC_Runtime_Error_E_MEMORY__C
     0000052c  0000052c  00000004 00000004  r-.const:XDC_Runtime_Error_PolicyFxn_C
     00000530  00000530  00000004 00000004  r-.const:XDC_Runtime_IGateProvider_Interface_base__C
     00000534  00000534  00000004 00000004  r-.const:XDC_Runtime_IHeap_Interface_base__C
     00000538  00000538  00000004 00000004  r-.const:XDC_Runtime_IModule_Interface_base__C
     0000053c  0000053c  00000004 00000004  r-.const:XDC_Runtime_Main_Module_diagsEnabled__C
     00000540  00000540  00000004 00000004  r-.const:XDC_Runtime_Main_Module_diagsIncluded__C
     00000544  00000544  00000004 00000004  r-.const:XDC_Runtime_Main_Module_diagsMask__C
     00000548  00000548  00000004 00000004  r-.const:XDC_Runtime_Memory_defaultHeapInstance___C
     0000054c  0000054c  00000004 00000004  r-.const:XDC_Runtime_Startup_execImpl__C
     00000550  00000550  00000004 00000004  r-.const:XDC_Runtime_Startup_maxPasses__C
     00000554  00000554  00000004 00000004  r-.const:XDC_Runtime_Startup_sfxnRts__C
     00000558  00000558  00000004 00000004  r-.const:XDC_Runtime_Startup_sfxnTab__C
     0000055c  0000055c  00000004 00000004  r-.const:XDC_Runtime_Startup_startModsFxn__C
     00000560  00000560  00000004 00000004  r-.const:XDC_Runtime_SysCallback_abortFxn__C
     00000564  00000564  00000004 00000004  r-.const:XDC_Runtime_SysCallback_exitFxn__C
     00000568  00000568  00000004 00000004  r-.const:XDC_Runtime_System_abortFxn__C
     0000056c  0000056c  00000004 00000004  r-.const:XDC_Runtime_System_exitFxn__C
     00000570  00000570  00000004 00000004  r-.const:XDC_Runtime_System_maxAtexitHandlers__C
     00000574  00000574  00000004 00000004  r-.const:XDC_Runtime_text_charTab__C
     00000578  00000578  00000004 00000004  r-.const:XDC_Runtime_text_nameEmpty__C
     0000057c  0000057c  00000004 00000004  r-.const:XDC_Runtime_text_name Static___C
     00000580  00000580  00000004 00000004  r-.const:XDC_Runtime_TEXT_nameUnknown
     00000584  00000584  00000002 00000002  r-.const:XDC_Runtime_Main_Module_id__C
     00000586  00000586  00000002 00000002  r-.const:XDC_Runtime_Memory_Module_id__C
     00000588  00000588  00000002 00000002  r-.const:XDC_Runtime_text_charCnt___C
     0000058a  0000058a  00000002 00000002  r-.const:XDC_Runtime_text_isLoaded__C
     0000058c  0000058c  00000001 00000001  r-.const:XDC_Runtime_Error_policy__C
     00000590  00000590  00000004 00000004  r-.const:ti_sysbios_rom_rom_AONRTCChannelEnable
     00000594  00000594  00000004 00000004  r-.const:ti_SysBIOS_ROM_ROM_AONRTCCompareValueSet
     00000598  00000598  00000004 00000004  r-.const:ti_SysBIOS_ROM_ROM_AONRTCCurrentCompareValueGet
     0000059c  0000059c  00000004 00000004  r-.const:ti_SysBIOS_ROM_ROM_AONRTCE文 丘卡
     000005a0  000005a0  00000004 00000004  r-.const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_getCount64_E_E
     000005a4  000005a4  00000004 00000004  r-.const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick_E
     000005a8  000005a8  00000004 00000004  r-.const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E
     000005ac  000005ac  00000004 00000004  r-.const:ti_sysbios_rom_rom_ti_sysbios_family_arm_cc26xx_Timer_initDevice__i
     000005b0  000005b0  00000004 00000004  r-.const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E
     000005b4  000005b4  00000004 00000004  r-.const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__i
     000005b8  000005b8  00000004 00000004  r-.const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_start_E
     000005bc  000005bc  00000004 00000004  r-.const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32_E_E
     000005c0  000005c0  00000004 00000004  r-.const:ti_sysbios_rom_rom_xdc_runtime_Startup_getState__I
     000005c4  000005c4  00000004 00000004  r-.const:ti_sysbios_rom_rom_xdc_runtime_System_SupportProxy_abort_e_E
     000005c8  000005c8  00000004 00000004  r-.const:ti_sysbios_rom_rom_xdc_runtime_System_SupportProxy_exit_e_E
     000005cc  000005cc  00000004 00000004  r-.const:ti_sysbios_gates_GateMutex_instance_State_SEM_O
     000005d0  000005d0  00000004 00000004  r-.const:ti_SysBIOS_KNL_Clock_Module_State_clockQ_O
     000005d4  000005d4  00000004 00000004  r-.const:ti_SysBIOS_KNL_Mailbox_Instance_State_dataQu__O
     000005d8  000005d8  00000004 00000004  r-.const:ti_SysBIOS_KNL_Mailbox_Instance_State_dataSem__O
     000005dc  000005dc  00000004 00000004  r-.const:ti_sysbios_KNL_Mailbox_instance_State_freeQu__O
     000005e0  000005e0  00000004 00000004  r-.const:ti_SysBIOS_KNL_Mailbox_Instance_State_freeSem_O
     000005e4  000005e4  00000004 00000004  r-.const:ti_SysBIOS_KNL_Semaphore_instance_State_pendQ_O
     000005e8  000005e8  00000004 00000004  r-.const:ti_SysBIOS_KNL_Task_Module_State_InactiveQ_O
     000005ec  000005ec  0000ba48 0000ba48  r-x .text.4
     0000c034  0000c034  00000673 00000673  r-.const
     0000c6a8  0000c6a8  000008ec 000008ec  r-.cinit
    0001ffa8  0001ffa8  00000058 00000058  r--
     0001ffa8  0001ffa8  00000058 00000058  r-.ccfg
    20000100  20000100  00003e9b 00000000  rw-
     20000100  20000100  00000044 00000000  rw-.data:ti_sysbios_KNL_Task_Module_state__V
     20000144  20000144  00000034 00000000  rw-.data:ti_sysbios_family_arm_m3/Hwi_Module_state__V
     20000178  20000178  0000002c 00000000  rw-.data:ti_sysbios_KNL_Clock_Module_state___v
     200001a4  200001a4  00000024 00000000  rw-.data:ti_sysBIOS_BIOS_Module_state__V
     200001c8  200001c8  0000001c 00000000  rw-.data:ti_sysbios_KNL_Swi_Module_state__V
     200001e4  200001e4  00000008 00000000  rw-.data:ti_sysbios_family_arm_cc26xx_Timer_Module_state__V
     200001ec  200001ec  00000004 00000000  rw-.data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_state__V
     200001f0  200001f0  00000008 00000000  rw-.data:XDC_Runtime_Startup_Module_state__V
     200001f8  200001f8  00000008 00000000  rw-.data:XDC_Runtime_System_Module_state__V
     20000200  20000200  00000004 00000000  rw-.data:XDC_Runtime_Memory_Module_state___V
     20000208  20000208  00001a82 00000000  rw-.data
     20001c90  20001c90  0000230b 00000000  rw-.bss
    20004028  20004028  00000400 00000000  Rw-
     20004028  20004028  00000400 00000000  rw-.stack
    部分分配映射
     输出                  属性/
    段 页  原点   长度   输入段
    ----  --------   ------  --------
    .resetVecs  
    *      0  00000000  0000003c    
             00000000  0000003c  app_ble_pem3.oem3 (.resetVecs)
    text.1  0  0000003c  000000c4    
             0000003c  000000c0  ioservice.obj (.text:io_WriteAttrCB$32)
             000000fc  00000004  iCall_API.obj (.text:GATTServApp_AddService)
    .const:ti_sysbios_KNL_Task_Object_Params__C  
    *      0  00000100  0000003c    
             00000100  0000003c  app_ble_pem3.oem3 (.const:ti_sysbios_KNL_Task_Object_Params__C)
    .const:ti_sysbios_KNL_Mailbox_Object_Params__C  
    *      0  0000013c  00000034    
             0000013c  00000034  app_ble_pem3.oem3 (.const:ti_sysbios_KNL_Mailbox_Object_Params__C)
    .const:ti_sysbios_family_arm_m3/Hwi_Object_Params__C  
    *      0  00000170  00000030    
             00000170  00000030  app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3/Hwi_Object_Params__C)
    .const:ti_sysbios_hal_hwi_Object_Params__C  
    *      0  000001a0  0000002c    
             000001a0  0000002c  app_ble_pem3.oem3 (.const:ti_sysbios_hal_hwi_Object_Params__C)
    .const:ti_sysbios_堆_HeapMem_Module_Fxns__C  
    *      0  000001cc  00000028    
             000001cc  00000028  app_ble_pem3.oem3 (.const:ti_sysbios_bix_HeapMem_Module_Fxns__C)
    .const:ti_sysbios_KNL_Swi_Object_Params__C  
    *      0  000001f4  00000028    
             000001f4  00000028  app_ble_pem3.oem3 (.const:ti_sysbios_KNL_Swi_Object_Params__C)
    .const:ti_sysbios_gates_GateHwi_Module_Fxns__C  
    *      0  0000021c  00000024    
             0000021c  00000024  app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateHwi_Module_Fxns__C)
    .const:ti_sysbios_gates_GateMutex_Module_Fxns__C  
    *      0  00000240  00000024    
             00000240  00000024  app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Module_Fxns__C)
    .const:ti_sysbios_堆_HeapMem_Object_Params__C  
    *      0  00000264  00000024    
             00000264  00000024  app_ble_pem3.oem3 (.const:ti_sysbios_bpst_HeapMem_Object_Params__C)
    .const:ti_SysBIOS_KNL_Clock_Object_Params__C  
    *      0  00000288  00000024    
             00000288  00000024  app_ble_pem3.oem3 (.const:ti_sysbios_KNL_Clock_Object_Params__C)
    .const:ti_SysBIOS_KNL_Semaphore_Object_Params__C  
    *      0  000002ac  00000024    
             000002ac  00000024  app_ble_pem3.oem3 (.const:ti_sysbios_KNL_semaphore_Object_Params__C)
    const:ti_sysbios_family_arm_m3/Hwi_Object_DESC_C  
    *      0  000002d0  00000020    
             000002d0  00000020  app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Object_DESC_C)
    .const:ti_sysbios_gates_GateHwi_Object_DESC_C  
    *      0  000002f0  00000020    
             000002f0  00000020  app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateHwi_Object_DESC_C)
    .const:ti_sysbios_gates_GateMutex_Object_DESC_C  
    *      0  00000310  00000020    
             00000310  00000020  app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Object__Desc_C)
    .const:ti_sysbios_hal_hwi_Object_DESC_C  
    *      0  00000330  00000020    
             00000330  00000020  app_ble_pem3.oem3 (.const:ti_sysbios_hal_hwi_Object_DESC_C)
    .const:ti_sysbios_堆_HeapMem_Object_DESC_C  
    *      0  00000350  00000020    
             00000350  00000020  app_ble_pem3.oem3 (.const:ti_sysbios_bpst_HeapMem_Object_DESC_C)
    .const:ti_SysBIOS_KNL_Clock_Object_DESC_C  
    *      0  00000370  00000020    
             00000370  00000020  app_ble_pem3.oem3 (.const:ti_SysBIOS_KNL_Clock_Object_DESC_C)
    .const:ti_SysBIOS_KNL_Mailbox_Object_DESC_C  
    *      0  00000390  00000020    
             00000390  00000020  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Mailbox_Object_DESC_C)
    .const:ti_SysBIOS_KNL_Queue_Object_DESC_C  
    *      0  000003b0  00000020    
             000003b0  00000020  app_ble_pem3.oem3 (.const:ti_sysbios_KNL_Queue_Object__Desc_C)
    .const:ti_SysBIOS_KNL_Semaphore_Object_DESC_C  
    *      0  000003d0  00000020    
             000003d0  00000020  app_ble_pem3.oem3 (.const:ti_sysbios_KNL_semaphore_Object_DESC_C)
    .const:ti_SysBIOS_KNL_Swi_Object_DESC_C  
    *      0  000003f0  00000020    
             000003f0  00000020  app_ble_pem3.oem3 (.const:ti_sysbios_KNL_Swi_Object_DESC_C)
    .const:ti_SysBIOS_KNL_Task_Object_DESC_C  
    *      0  00000410  00000020    
             00000410  00000020  app_ble_pem3.oem3 (.const:ti_SysBIOS_KNL_Task_Object_DESC_C)
    .const:ti_sysbios_gates_GateHwi_Object_Params__C  
    *      0  00000430  00000018    
             00000430  00000018  app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateHwi_Object_Params__C)
    .const:ti_sysbios_gates_GateMutex_Object_Params__C  
    *      0  00000448  00000018    
             00000448  00000018  app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Object_Params__C)
    .const:ti_SysBIOS_KNL_Queue_Object_Params__C  
    *      0  00000460  00000018    
             00000460  00000018  app_ble_pem3.oem3 (.const:ti_sysbios_KNL_Queue_Object_Params__C)
    .const:ti_sysbios_KNL_Idle_funclist__C  
    *      0  00000478  00000008    
             00000478  00000008  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Idle_funclist___C)
    text.2  0  00000480  00000004    
             00000480  00000004  iCall.obj (.text:iCall_primAbort$21)
    const:ti_sysbios_family_arm_cc26xx_Timer_startupNeed__C  
    *      0  00000484  00000004    
             00000484  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_cc26xx_Timer_starpNeed__C)
    const:ti_sysbios_family_arm_m3/hwi_E_alreadyDefined___C  
    *      0  00000488  00000004    
             00000488  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_family_ARM_m3/Hwi_E_alreadyDefined___C)
    const:ti_sysbios_family_arm_m3/hwi_E_hwiLimitExceleed___C  
    *      0  0000048c  00000004    
             0000048c  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_hwi_E_hwiLimited__C)
    .const:ti_sysbios_family_arm_m3/Hwi_NUM_Interrupts__C  
    *      0  00000490  00000004    
             00000490  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_family_ARM_m3/Hwi_NUM_Interrupts__C)
    const:ti_sysbios_family_arm_m3/Hwi_Object_count_C  
    *      0  00000494  00000004    
             00000494  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_family_ARM_m3/Hwi_Object_count_C)
    const:ti_sysbios_family_arm_m3/Hwi_Object_Table__C  
    *      0  00000498  00000004    
             00000498  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_family_ARM_m3/Hwi_Object__table_C)
    .const:ti_sysbios_family_arm_m3_Hwi_CCR__C  
    *      0  0000049c  00000004    
             0000049c  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_CCR__C)
    .const:ti_sysbios_family_arm_m3/hwi_excHandlerFunc__C  
    *      0  000004a0  00000004    
             000004a0  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_family_ARM_m3/Hwi_exHandlerFunc__C)
    const:ti_sysbios_family_arm_m3/hwi_nullIsrFunc_C  
    *      0  000004a4  00000004    
             000004a4  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_family_ARM_m3/Hwi_nullIsrFunc__C)
    .const:ti_sysbios_family_arm_m3/hwi_numSparseInterrupts___C  
    *      0  000004a8  00000004    
             000004a8  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_family_ARM_m3/Hwi_numSparseInterrupts__C)
    const:ti_sysbios_family_arm_m3/hwi_priGroup_C  
    *      0  000004ac  00000004    
             000004ac  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3/hwi_priGroup_C)
    .const:ti_sysbios_family_arm_m3/taskSupport_stackAlignment__C  
    *      0  000004b0  00000004    
             000004b0  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3/TaskSupport_stackAlignment__C)
    const:ti_sysbios_b堆_HeapMem_E_memory__C  
    *      0  000004b4  00000004    
             000004b4  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_bpst_HeapMem_E_memory__C)
    .const:ti_sysbios_堆_HeapMem_Module_gateObj__C  
    *      0  000004b8  00000004    
             000004b8  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_bpst_HeapMem_Module_gateObj__C)
    .const:ti_sysbios_堆_HeapMem_Object_count__C  
    *      0  000004bc  00000004    
             000004bc  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_bpst_HeapMem_Object_count__C)
    .const:ti_sysbios_堆_HeapMem_Object__table__C  
    *      0  000004c0  00000004    
             000004c0  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_bpst_HeapMem_Object__table_C)
    .const:ti_sysbios_堆_HeapMem_reqAlign__C  
    *      0  000004c4  00000004    
             000004c4  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_bages_HeapMem_reqAlign__C)
    .const:ti_SysBIOS_KNL_Clock_serviceMargin__C  
    *      0  000004c8  00000004    
             000004c8  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Clock_serviceMargin__C)
    .const:ti_sysbios_KNL_Mailbox_Object_count__C  
    *      0  000004cc  00000004    
             000004cc  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Mailbox_Object__count_C)
    .const:ti_sysbios_KNL_Mailbox_Object_Table__C  
    *      0  000004d0  00000004    
             000004d0  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Mailbox_Object__table_C)
    .const:ti_SysBIOS_KNL_Queue_Object_count__C  
    *      0  000004d4  00000004    
             000004d4  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Queue_Object_count__C)
    .const:ti_sysbios_KNL_Queue_Object_Table__C  
    *      0  000004d8  00000004    
             000004d8  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Queue_Object__table_C)
    .const:ti_sysbios_KNL_Swi_Object_count__C  
    *      0  000004dc  00000004    
             000004dc  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_KNL_Swi_Object_count_C)
    .const:ti_sysbios_KNL_Swi_Object__table__C  
    *      0  000004e0  00000004    
             000004e0  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Swi_Object__table_C)
    const:ti_sysbios_KNL_Swi_numPriorities __C  
    *      0  000004e4  00000004    
             000004e4  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Swi_numPriorities __C)
    .const:ti_SysBIOS_KNL_Task_Object_count__C  
    *      0  000004e8  00000004    
             000004e8  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Task_Object__count_C)
    .const:ti_SysBIOS_KNL_Task_Object_Table__C  
    *      0  000004ec  00000004    
             000004ec  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_KNL_Task_Object__table_C)
    .const:ti_SysBIOS_KNL_Task_allBrokedFunc__C  
    *      0  000004f0  00000004    
             000004f0  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Task_allBlockedFunc__C)
    .const:ti_sysbios_KNL_Task_defaultStackHeap__C  
    *      0  000004f4  00000004    
             000004f4  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Task_defaultStackHeap___C)
    .const:ti_sysbios_KNL_Task_defaultStackSize__C  
    *      0  000004f8  00000004    
             000004f8  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Task_defaultStackSize__C)
    .const:ti_SysBIOS_KNL_Task_numConstructedTasks__C  
    *      0  000004fc  00000004    
             000004fc  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Task_numConstructedTasks__C)
    text.3  0  00000500  00000002    
             00000500  00000002  BLE_USER_CONFIG.obj (.text:DefaultAssertCback)
    const:ti_sysbios_family_arm_cc26xx_Timer_Module_id__C  
    *      0  00000502  00000002    
             00000502  00000002  app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_cc26xx_Timer_Module_id__C)
    const:ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C  
    *      0  00000504  00000002    
             00000504  00000002  app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C)
    const:ti_sysbios_family_arm_m3/Hwi_Module_id__C  
    *      0  00000506  00000002    
             00000506  00000002  app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Module_id__C)
    .const:ti_sysbios_gates_GateHwi_Module_id__C  
    *      0  00000508  00000002    
             00000508  00000002  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_Gates_GateHwi_Module_id__C)
    .const:ti_sysbios_gates_GateMutex_Module_id__C  
    *      0  0000050A  00000002    
             0000050a  00000002  app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Module_id__C)
    .const:ti_sysbios_堆_HeapMem_Module_id__C  
    *      0  0000050c  00000002    
             0000050c  00000002  app_ble_pem3.oem3 (.const:ti_sysbios_bpst_HeapMem_Module_id__C)
    .const:ti_SysBIOS_KNL_Task_initStackFlag__C  
    *      0  0000050e  00000002    
             0000050e  00000002  app_ble_pem3.oem3 (.const:ti_sysbios_KNL_Task_initStackFlag___C)
    .const:ti_sysbios_KNL_Clock_tickMode___C  
    *      0  00000510  00000001    
             00000510  00000001  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Clock_tickMode__C)
    .const:XDC_runtime _启动_firstFxns__C  
    *      0  00000514  00000008    
             00000514  00000008  app_ble_pem3.oem3 (.const:XDC_runtime_Startup_firstFxns__C)
    .const:XDC_runtime _Startup_lastFxns__C  
    *      0  0000051c  00000008    
             0000051c  00000008  APP_ble_pem3.oem3 (.const:XDC_runtime_Startup_lastFxns__C)
    .const:XDC_runtime _ assert_E_assertFlail__C  
    *      0  00000524  00000004    
             00000524  00000004  app_ble_pem3.oem3 (.const:xdc_runtime_assertFlail__C)
    .const:XDC_RAuntime_Error_E_MEMORY__C  
    *      0  00000528  00000004    
             00000528  00000004  APP_BLE_Pem3.oem3 (.const:XDC_RAuntime_Error_E_MEMORY__C)
    .const:XDC_runtime Error_policyFxn__C  
    *      0  0000052c  00000004    
             0000052c  00000004  app_ble_pem3.oem3 (.const:XDC_runtime_Error_policyFxn__C)
    .const:xdc_runtime_IGateProvider_Interface_base__C  
    *      0  00000530  00000004    
             00000530  00000004  app_ble_pem3.oem3 (.const:XDC_runtime_IGateProvider_Interface_base__C)
    .const:XDC_runtime IHeap_Interface_base__C  
    *      0  00000534  00000004    
             00000534  00000004  app_ble_pem3.oem3 (.const:XDC_runtime_IHeap_Interface_base__C)
    .const:XDC_runtime IModule_Interface_base__C  
    *      0  00000538  00000004    
             00000538  00000004  app_ble_pem3.oem3 (.const:XDC_runtime_IModule_Interface_base__C)
    .const:XDC_runtime 主模块_diagsEnabled__C  
    *      0  0000053c  00000004    
             0000053c  00000004  app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module_diagsEnabled__C)
    .const:XDC_runtime 主模块_diagsIncluded_C  
    *      0  00000540  00000004    
             00000540  00000004  app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module_diagsIncluded_C)
    .const:XDC_runtime 主模块_diagsMask__C  
    *      0  00000544  00000004    
             00000544  00000004  app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module_diagsMask__C)
    .const:xdc_runtime_Memory_defaultHeapInstance__C  
    *      0  00000548  00000004    
             00000548  00000004  app_ble_pem3.oem3 (.const:XDC_runtime_Memory_defaultHeapInstance___C)
    .const:XDC_runtime _启动_execImpl__C  
    *      0  0000054c  00000004    
             0000054c  00000004  app_ble_pem3.oem3 (.const:XDC_runtime _Startup_execiml__C)
    .const:XDC_RAuntime_Startup_maxPasses__C  
    *      0  00000550  00000004    
             00000550  00000004  app_ble_pem3.oem3 (.const:XDC_runtime_Startup_maxPasses__C)
    .const:XDC_Runtime_Startup_sfxnRts__C  
    *      0  00000554  00000004    
             00000554  00000004  APP_BLE_Pem3.oem3 (.const:XDC_Runtime_Startup_sfxnRts__C)
    .const:xdc_runtime_Startup_sfxnTab__C  
    *      0  00000558  00000004    
             00000558  00000004  app_ble_pem3.oem3 (.const:xdc_runtime_Startup_sfxnTab__C)
    .const:xdc_runtime_Startup_startModsFxn_C  
    *      0  0000055c  00000004    
             0000055c  00000004  app_ble_pem3.oem3 (.const:XDC_runtime_Startup_startModsFxn__C)
    .const:XDC_runtime SysCallback_abortFxn__C  
    *      0  00000560  00000004    
             00000560  00000004  app_ble_pem3.oem3 (.const:xdc_runtime_SysCallback_abortFxn__C)
    const:xdc_runtime_SysCallback_exitFxn__C  
    *      0  00000564  00000004    
             00000564  00000004  app_ble_pem3.oem3 (.const:XDC_runtime_SysCallback_exitFxn__C)
    .const:XDC_runtime System_abortFxn__C  
    *      0  00000568  00000004    
             00000568  00000004  app_ble_pem3.oem3 (.const:XDC_runtime_System_abortFxn__C)
    .const:XDC_runtime_System_exitFxn__C  
    *      0  0000056c  00000004    
             0000056c  00000004  app_ble_pem3.oem3 (.const:XDC_runtime_System_exitFxn__C)
    .const:XDC_RAuntime_System_maxAtexitHandlers__C  
    *      0  00000570  00000004    
             00000570  00000004  app_ble_pem3.oem3 (.const:xdc_runtime_System_maxAtexitHandlers___C)
    .const:XDC_runtime _text_charTab__C  
    *      0  00000574  00000004    
             00000574  00000004  app_ble_pem3.oem3 (.const:xdc_runtime_text_charTab__C)
    .const:XDC_runtime _text_nameEmpty__C  
    *      0  00000578  00000004    
             00000578  00000004  app_ble_pem3.oem3 (.const:xdc_runtime_text_name Empty__C)
    .const:XDC_runtime 文本名称 Static__C  
    *      0  0000057c  00000004    
             0000057c  00000004  app_ble_pem3.oem3 (.const:XDC_runtime_text_name Static_C)
    .const:XDC_runtime 文本名称 Unknown__C  
    *      0  00000580  00000004    
             00000580  00000004  app_ble_pem3.oem3 (.const:XDC_runtime_text_name 未知______ C)
    .const:XDC_RAuntime_Main_Module_id__C  
    *      0  00000584  00000002    
             00000584  00000002  app_ble_pem3.oem3 (.const:XDC_runtime_Main_Module_id__C)
    .const:XDC_RAuntime_Memory_Module_id__C  
    *      0  00000586  00000002    
             00000586  00000002  app_ble_pem3.oem3 (.const:XDC_runtime_Memory_Module_id___C)
    .const:xdc_runtime_text_charCnt___C  
    *      0  00000588  00000002    
             00000588  00000002  app_ble_pem3.oem3 (.const:XDC_Runtime_text_charCnt___C)
    .const:XDC_runtime _text_isLoaded__C  
    *      0  0000058A  00000002    
             0000058a  00000002  app_ble_pem3.oem3 (.const:XDC_runtime_text_isLoaded__C)
    .const:XDC_runtime Error_policy__C  
    *      0  0000058c  00000001    
             0000058c  00000001  app_ble_pem3.oem3 (.const:XDC_runtime_Error_policy_C)
    .const:ti_sysbios_rom_rom_AONRTCChannelEnable  
    *      0  00000590  00000004    
             00000590  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_ROM_ROM_AONRTCChannelEnable)
    .const:ti_sysBIOS_rom_rom_AONRTCCompareValueSet  
    *      0  00000594  00000004    
             00000594  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_ROM_ROM_AONRTCCompareValueSet)
    const:ti_sysBIOS_rom_rom_AONRTCCurrentCompareValueGet  
    *      0  00000598  00000004    
             00000598  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_ROM_ROM_AONRTCCurrentCompareValueGet)
    .const:ti_sysbios_rom_rom_AONRTCEventClear  
    *      0  0000059c  00000004    
             0000059c  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_rom_rom_AONRTCE文 丘)
    .const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E  
    *      0  000005a0  00000004    
             000005a0  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_getCount64_E)
    .const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E  
    *      0  000005a4  00000004    
             000005a4  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_ROM_ti_SysBIOS_family_ARM_cc26xx_Timer_getCurrentTick__E)
    const:ti_sysbios_rom_rom_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E  
    *      0  000005a8  00000004    
             000005a8  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E)
    .const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_initDevice__i  
    *      0  000005ac  00000004    
             000005ac  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_rom_rom_ti_sysbios_family_arm_cc26xx_Timer_initDevice_i)
    .const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E  
    *      0  000005b0  00000004    
             000005b0  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E)
    .const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_setThreshold___i  
    *      0  000005b4  00000004    
             000005b4  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__i)
    .const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_start__E  
    *      0  000005b8  00000004    
             000005b8  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_start_E)
    .const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E  
    *      0  000005bc  00000004    
             000005bc  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32_E)
    .const:ti_sysbios_rom_rom_xdc_runtime_Startup_getState__i  
    *      0  000005c0  00000004    
             000005c0  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_rom_rom_xdc_runtime_Startup_getState_i)
    .const:ti_sysbios_rom_rom_xdc_runtime_System_SupportProxy_abort__e_E  
    *      0  000005c4  00000004    
             000005c4  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_rom_rom_xdc_runtime_System_SupportProxy_abort_e_E)
    const:ti_sysbios_rom_rom_xdc_runtime_System_SupportProxy_exit__e_E  
    *      0  000005c8  00000004    
             000005c8  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_rom_rom_xdc_runtime_System_SupportProxy_exit_e_E)
    .const:ti_sysbios_gates_GateMutex_instance_State_SEM_O  
    *      0  000005cc  00000004    
             000005cc  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_instance_State_SEM_O)
    .const:ti_SysBIOS_KNL_Clock_Module_State_clockQ_O  
    *      0  000005d0  00000004    
             000005d0  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Clock_Module_State_clockQ_O)
    .const:ti_sysbios_KNL_Mailbox_instance_State_dataQue_O  
    *      0  000005d4  00000004    
             000005d4  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Mailbox_Instance_State_dataQu_O)
    .const:ti_sysbios_KNL_Mailbox_instance_State_dataSem__O  
    *      0  000005d8  00000004    
             000005d8  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Mailbox_Instance_State_dataSem__O)
    .const:ti_sysbios_KNL_Mailbox_instance_State_freeQue_O  
    *      0  000005dc  00000004    
             000005dc  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_KNL_Mailbox_instance_State_freeQu__O)
    .const:ti_sysbios_KNL_Mailbox_instance_State_freeSem_O  
    *      0  000005e0  00000004    
             000005e0  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Mailbox_Instance_State_freeSem_O)
    .const:ti_sysbios_KNL_Semaphore_instance_State_pendQ_O  
    *      0  000005e4  00000004    
             000005e4  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Semaphore_instance_State_pendQ_O)
    .const:ti_sysbios_KNL_Task_Module_State_inactiveQ_O  
    *      0  000005e8  00000004    
             000005e8  00000004  APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Task_Module_State_inactiveQ_O)
    text.4  000005ec    0000ba48    
             000005ec  000006dc  I2CCC26XX.obj (.text:I2CCC26XX_hwiFxn$14)
             00000cc8  000004a8  sensortag.obj (.text:SensorTag_init1)
             00001170  00000340  I2CCC26XX.obj (.text:I2CCC26XX_primeTransfer 14美元)
             000014b0  00000314  RFCC26XX_singlemode.obj (.text:fsmActiveState_16美元)
             000017c4  000002ec  peripheral.obj (.text:gapRole_processGAPMsg$36)
             00001ab0  00000284  sensortag_bar.obj (.text:VL53L0xDefaultSettings)
             00001d34  00000264  I2CCC26XX.obj (.text:I2CCC26XX_transfer)
             00001f98  00000248  WEST_cap容 性.obj (.text:flash_local_clear_wsh_water 数据)
             000021e0  0000023c  peripheral.obj (.text:GAPRole_SetParameter)
             0000241c  00000228  drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_sleep)
             00002644  00000204  driverlib.lib:sys_ctrl.obj (.text:NOROM_SysCtrlSetRechargeBeforePowerDown)
             00002848  000001f4  I2CCC26XX.obj (.text:I2CCC26XX_open)
             00002a3c  000001f4  rtsv7M3_T_le_eabi.lib:ul_div_t2.obj (.text)
             00002c30  000001d0  drivers_cc26xxware.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:calibrateRcoscHF1)
             00002e00  000001cc  I2CCC26XX.obj (.text:I2CCC26XX_swifxn$14)
             00002fcc  000001a8  PINCC26XX.obj (.text:PIN_init)
             00003174  000001a8  RFCC26XX_singlemode.obj (.text:abortCmd$16)
             0000331c  000001a0  drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_write)
             000034bc  00000190               :UARTCC26XX.oem3 (.text:UARTCC26XX_open)
             0000364c  00000184               :PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_doCalibrate)
             000037d0  00000170  RFCC26XX_singlemode.obj (.text:rf_postCmd)
             00003940  00000150  sensor_publish.obj (.text:RestDeviceCount_ClockHandler)
             00003a90  00000138  sensortag.obj (.text:SensorTag_taskFxn-1)
             00003bc8  00000136  rtsv7M3_T_le_eabi.lib:fd_div_t2.obj (.text)
             00003cfe  00000002  drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_Close)
             00003d00  00000130  driverlib.lib:setup.obj (.text:NOROM_SetupAfterColdResetWakeupFromShutDownCfg3)
             00003e30  00000128  sensortag_bar.obj (.text:VL53L0X_init)
             00003f58  0000011c  drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_init)
             00004074  00000118  sensortag_bar.obj (.text:Range_Sensor_Read)
             0000418c  00000114  RFCC26XX_singlemode.obj (.text:fsmSetupState_16美元)
             000042a0  00000110  sensortag_bar.obj (.text:ValidateSensorRead)
             000043b0  00000110  RFCC26XX_singlemode.obj (.text:hwiFxnCpe0Activat$16)
             000044c0  0000010c  sensortag_bar.obj (.text:VL53L0X_getSpadInfo)
             000045cc  0000010c  sensortag_bar.obj (.text:sensorTaskFxn$2)
             000046d8  00000108  Water 容性.obj (.text:Init_Peripherals)
             000047e0  00000100  sensortag_hum.obj (.text:Validate_SensorRead)
             000048e0  000000fc  Water 容性.obj (.text:Init_clocksystem)
             000049dc  000000fc  drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_write)
             00004ad8  000000fc  peripheral.obj (.text:gapRole_taskFxn$36)
             00004bd4  000000fa  rtsv7M3_T_le_eabi.lib:fs_add_t2.obj (.text)
             00004cce  00000002  drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_exit)
             00004cd0  000000f8  sensortag_hum.obj (.text:sensorTaskFxn$4)
             00004dc8  000000ec  iCall.obj (.text:iCall_primWaitMatch 21美元)
             00004eb4  000000ec  drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_hwiIntFxn)
             00004fa0  000000ec  sensortag_bar.obj (.text:VL53L0X_readRangeSingleMillembars)
             0000508c  000000ec  RFCC26XX_singlemode.obj (.text:rf_init$16)
             00005178  000000e8  sensortag.obj (.text:SensorTag_processStateChangeEvt1美元)
             00005260  000000e8  registerservice.obj (.text:sensor_WriteAttrCB$37)
             00005348  000000d4  driverlib.lib:setup.obj (.text:NOROM_SetupAfterColdResetWakeupFromShutDownCfg2)
             0000541c  000000d4  drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_releaseDependency)
             000054f0  000000d0  I2CCC26XX.obj (.text:I2CCC26XX_Close)
             000055c0  000000d0  drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_setDependency)
             00005690  000000cc  driverlib.lib:setup.obj (.text:TrimAfterColdResetWakeupFromShutDown 65美元)
             0000575c  000000c8  drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_initHw)
             00005824  000000c8  RFCC26XX_singlemode.obj (.text:fsmPowerUpState$16)
             000058ec  000000c4  sensortag_hum.obj (.text:pression_sensor_reading)
             000059b0  000000c4  RFCC26XX_singlemode.obj (.text:swifxnHw$16)
             00005a74  000000c0  RFCC26XX_singlemode.obj (.text:rf_open)
             00005b34  000000bc  power_cc26xx_tirtos.aem3:PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
             00005bf0  000000bc  drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_read)
             00005cac  000000b4  PINCC26XX.obj (.text:PINCC26XX_setIoCfg15美元)
             00005d60  000000b0  devinfoservice.obj (.text:DevInfo_ReadAttrCB$28)
             00005e10  000000b0  peripheral.obj (.text:gapRole_init$36)
             00005ec0  000000a4  driverlib.lib:setup.obj (.text:NOROM_SetupTrimDevice)
             00005f64  000000a0  auto_init.aem3:auto_init.oem3 (.text)
             00006004  000000a0  rom_SysBIOS.aem3:rom_SysBIOS.obj (.text:ti_SysBIOS_KNL_Task_setPri__E)
             000060a4  0000009c  driverlib.lib:aux_adc.obj (.text:NOROM_AUXADCDisable)
             00006140  0000009c  rtsv7M3_T_le_eabi.lib:memcpy_t2.obj (.text)
             000061dc  00000098  driverlib.lib:aux_adc.obj (.text:NOROM_AUXADCableSync)
             00006274  00000098  PINCC26XX.obj (.text:PIN_OPEN)
             0000630c  00000098  sensortag_io.obj (.text:SensorTagIO_processCharChangeEvt)
             000063a4  00000098  ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_workFuncDynamic__E)
             0000643c  00000094  gattservapp_util.obj (.text:GATTServApp_ProcessCharCfg)
             000064d0  00000094  drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_open)
             00006564  00000094               :UARTCC26XX.oem3 (.text:writeFinishedDoCallback)
             000065f8  00000092  rtsv7M3_T_le_eabi.lib:fs_div_t2.obj (.text)
             0000668a  00000002  sensortag.obj (.text:SensorTag_callback 1)
             0000668c  00000090  I2CCC26XX.obj (.text:I2CCC26XX_blockingCallback$14)
             0000671c  00000090  drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
             000067ac  0000008c  devinfoservice.obj (.text:DevInfo_SetParameter)
             00006838  0000008c  drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_initiio)
             000068c4  0000008c               :UARTCC26XX.oem3 (.text:UARTCC26XX_writeCancel)
             00006950  00000088  I2CCC26XX.obj (.text:I2CCC26XX_cancel)
             000069d8  00000088  driverlib.lib:osc.obj (.text:NOROM_OSCHF_GetStartupTime)
             00006a60  00000088  sensortag_register.obj (.text:SensorTagRegister_processCharChangeEvt)
             00006ae8  00000088  registerservice.obj (.text:sensor_ReadAttrCB$37)
             00006b70  00000086  rtsv7M3_T_le_eabi.lib:fd_cmc_t2.obj (.text:__aeabi_cdrcmple)
             00006bf6  00000002  drivers_cc26xxware.aem3:watchdogCC26XX.oem3 (.text:watchdogCC26XX_close)
             00006bf8  00000084  iCall.obj (.text:iCall_heapMalloc)
             00006c7c  00000084  iCall.obj (.text:iCall_primSetTimer$21)
             00006d00  00000084  TRNGCC26XX.obj (.text:TRNGCC26XX_getNumber)
             00006d84  00000080  RFCC26XX_singlemode.obj (.text:rf_pendCmd)
             00006e04  00000080  sensortag_bar.obj (.text:SensorTagBar_processCharChangeEvt)
             00006e84  00000080  sensortag_hum.obj (.text:SensorTagHum_processChangeCharEvt)
             00006f04  0000007c  drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
             00006f80  0000007a  rtsv7M3_T_le_eabi.lib:fs_mul_t2.obj (.text)
             00006ffa  0000007a              :memset_t2.obj (.text)
             00007074  00000078  driverlib.lib:setup.obj (.text:NOROM_SetupAfterColdResetWakeupFromShutDownCfg1)
             000070ec  00000078  drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_Close)
             00007164  00000074  iCall_cc260.obj (.text:ICallPlatform_pwrUpdActivityCounter)
             000071d8  00000074  iCall.obj (.text:iCall_primSend$21)
             0000724c  00000074  drivers_cc26xxware.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_auxISR)
             000072c0  00000074  sensortag_register.obj (.text:SensorTagRegister_reset)
             00007334  00000074  drivers_cc26xxware.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:calibrateRcoscHf2)
             000073a8  00000074  peripheral.obj (.text:gapRole_startConnUpdate$36)
             0000741c  00000074  drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:writeTxFifoFlush)
             00007490  00000070  driverlib.lib:chipinfo.obj (.text:NOROM_ChipInfo_GetHwRevision)
             00007500  00000070  drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_readCancel)
             00007570  0000006c  sensortag.obj (.text:Board_writeString)
             000075dc  0000006c  sensortag.obj (.text:Board_writeStringValue)
             00007648  0000006c  iCall.obj (.text:iCall_createRemoteTasks)
             000076b4  0000006c  iCall.obj (.text:iCall_heapInit)
             00007720  0000006c  driverlib.lib:setup.obj (.text:NOROM_SetupGetTrimForAmpcompCtrl)
             0000778c  0000006c  drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
             000077f8  0000006c  sensor_publish.obj (.text:PublishCount_ClockHandler)
             00007864  0000006c  sensortag_tmp.obj (.text:SensorTagTmp_processChangeEvt)
             000078d0  0000006c  gattservapp_util.obj (.text:gattServApp_SendNotitId$30)
             0000793c  0000006a  rtsv7M3_T_le_eabi.lib:copy_decompress_rle.obj (.text)
             000079a6  00000002  RFCC26XX_singlemode.obj (.text:defaultErrCb$16)
             000079a8  00000068  driverlib.lib:setup.obj (.text:NOROM_SetupGetTrimForAnabypassValue1)
             00007a10  00000068          :sys_ctrl.obj (.text:NOROM_SYSCTRL_DCDC_VoltageConditionalControl)
             00007a78  00000068  drivers_cc26xxware.aem3:watchdogCC26XX.oem3 (.text:watchdogCC26XX_initHw)
             00007ae0  00000068  RFCC26XX_singlemode.obj (.text:fsmPowerDownState$16)
             00007b48  00000064  irtempservice.obj (.text:IRTemp_SetParameter)
             00007bac  00000064  Water 容性.obj (.text:PeopleCount_ClockHandler$10)
             00007c10  00000064  rom_SysBIOS.aem3:rom_SysBIOS.obj (.text:ti_SysBIOS_family_arm_cc26xx_Timer_start__E)
             00007c74  00000062  barometerservice.obj (.text:sensor_ReadAttrCB$26)
             00007cd6  00000002  drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:emtyClockFunc)
             00007cd8  00000060  I2CCC26XX.obj (.text:I2CCC26XX_initiio$14)
             00007d38  00000060  iCall.obj (.text:iCall_primEnroll$21)
             00007d98  00000060  drivers_cc26xxware.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_RCOSC_clockFunc)
             00007df8  00000060  RFCC26XX_singlemode.obj (.text:rf_getCurrentTime)
             00007e58  00000060  sensortag_bar.obj (.text:VL53L0XI2cInit)
             00007eb8  00000060  rtsv7M3_T_le_eabi.lib:fs_cmp_t2.obj (.text:__aeabi_cfcmple)
             00007f18  00000060  drivers_cc26xxware.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:updateSubSecInc)
             00007f78  0000005e               :WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_open)
             00007fd6  00000002  ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_BIOS_linkedWithIncorrectBootLibrary__E)
             00007fd8  0000005c  iCall.obj (.text:iCall_primThreadServes 21美元)
             00008034  0000005c  driverlib.lib:osc.obj (.text:NOROM_OSCHF_AttempToSwitchToXosc)
             00008090  0000005c          :sys_ctrl.obj (.text:NOROM_SysCtrlAdjustargeRechAfterPowerDown)
             000080ec  0000005c  RFCC26XX_singlemode.obj (.text:applyRfCorePatch$16)
             00008148  0000005c  RFCC26XX_singlemode.obj (.text:decActiveClientCnt$16)
             000081a4  0000005c  app_ble_pem3.oem3 (.text:xdc_runtime_Startup_getState__i)
             00008200  0000005a  humidityservice.obj (.text:sensor_ReadAttrCB$31)
             0000825a  0000005a  irtempservice.obj (.text:sensor_ReadAttrCB$33)
             000082b4  00000058  PINCC26XX.obj (.text:PIN_REMOVE)
             0000830c  00000058  drivers_cc26xxware.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
             00008364  00000058               :UARTCC26XX.oem3 (.text:UARTCC26XX_control)
             000083bc  00000054  barometerservice.obj (.text:Barometer_SetParameter)
             00008410  00000054  drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:configureXOSCHF)
             00008464  00000054  RFCC26XX_singlemode.obj (.text:fsmXOSCState_16)
             000084b8  00000054  RFCC26XX_singlemode.obj (.text:hwiFxnHw$16)
             0000850c  00000054  RFCC26XX_singlemode.obj (.text:ratChanFre$16)
             00008560  00000054  rtsv7M3_T_le_eabi.lib:exit.obj (.text)
             000085b4  00000052  iCall.obj (.text:iCall_primWait$21)
             00008606  00000002  APP_BLE_Pem3.oem3 (.text:ti_SysBIOS_BIOS_nullFunc__i)
             00008608  00000050  iCall_API.obj (.text:GAP_DeviceInit)
             00008658  00000050  iCall_API.obj (.text:GAP_UpdateAddertisingData)
             000086a8  00000050  humidityservice.obj (.text:Humid_SetParameter)
             000086f8  00000050  iCall.obj (.text:iCall_primRegisterApp$21)
             00008748  00000050  driverlib.lib:setup.obj (.text:NOROM_SetupSetCacheModeAccordingToCcfgSetting)
             00008798  00000050  RFCC26XX_singlemode.obj (.text:rf_getinfo)
             000087e8  00000050  sensortag.obj (.text:SensorTag_setDeviceInfo-1)
             00008838  00000050  RFCC26XX_singlemode.obj (.text:synctb$16)
             00008888  0000004e  ioservice.obj (.text:io_ReadAttrCB$32)
             000088d6  00000002  ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_triggerFunc__I)
             000088d8  0000004c  iCall.obj (.text:iCall_newtask$21)
             00008924  0000004c  iCall.obj (.text:iCall_primGetEntityId$21)
             00008970  0000004c  driverlib.lib:osc.obj (.text:NOROM_OSCClockSourceSet)
             000089bc  0000004c  sensortag.obj (.text:SensorTag_processCharValueChangeEvt-1)
             00008a08  0000004c  drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_swiIntFxn)
             00008a54  0000004c  util.obj (.text:Util_constructClock)
             00008aa0  0000004c  RFCC26XX_singlemode.obj (.text:dispatchOpWhen$16)
             00008aec  0000004c  peripheral.obj (.text:gapRole_processStackMsg$36)
             00008b38  0000004c  rtsv7M3_T_le_eabi.lib:cpy_tbl.obj (.text)
             00008b84  0000004c  drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:startTxFifoEmptyClk)
             00008bd0  0000004a  gattservapp_util.obj (.text:GATTServApp_ProcessCCCWriteReq)
             00008c1a  00000002  app_ble_pem3.oem3 (.text:ti_sysbios_rom_cortexm_cc26xx_CC26xx_badRomRevision__E)
             00008c1c  00000048  I2CCC26XX.obj (.text:I2CCC26XX_initHw$14)
             00008c64  00000048  water _capacitive.obj (.text:Init_Capacitivesensor _系统)
             00008cac  00000048  driverlib.lib:chipinfo.obj (.text:NOROM_ChipInfo_GetChipFamily)
             00008cf4  00000048          :dDI.obj (.text:NOROM_DDI16BitfieldWrite)
             00008d3c  00000048  sensortag_bar.obj (.text:VL53L0X_readMulti)
             00008d84  00000048  sensortag_bar.obj (.text:VL53L0X_setSignalRateLimit)
             00008dcc  00000048  iCall_API.obj (.text:gattIndoti 24美元)
             00008e14  00000048  drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:notify)
             00008e5c  00000044  iCall_API.obj (.text:GAP_TerminateLinkReq)
             00008ea0  00000044  drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_control)
             00008e4  00000044               :NVSCC26XX.oem3 (.text:NVSCC26XX_Read)
             00008f28  00000044  PINCC26XX.obj (.text:PIN_setOutputEnable)
             00008f6c  00000044  PINCC26XX.obj (.text:PIN_swi$15)
             00008fb0  00000044  sensortag_io.obj (.text:SensorTagIO_BLinkLed)
             00008ff4  00000044  boot.aem3:boot.oem3 (.text)
             00009038  00000044  iCall_API.obj (.text:gapSendParamAndPtrCmd 24美元)
             0000907c  00000044  rtsv7M3_T_le_eabi.lib:fd_to_t2.obj (.text)
             000090c0  00000042  iCall.obj (.text:iCall_primCreateTask$21)
             00009102  00000002  ROM_SYSBIOS.aem3:ROM_SYSBIOS.obj (.text:XDC_RAuntime_SysCallback_defaultAbort)
             00009104  00000040  peripheral.obj (.text:GAPRole_SendUpdateParam)
             00009144  00000040  peripheral.obj (.text:GAPRole_createTask)
             00009184  00000040  driverlib.lib:dDI.obj (.text:NOROM_DDI16BitfieldRead)
             000091c4  00000040  RFCC26XX_singlemode.obj (.text:rf_getRssi)
             00009204  00000040  sensortag_io.obj (.text:SensorTagIO_RESET)
             00009244  00000040  sensortag_register.obj (.text:readRegister6)
             00009284  0000003c  iCall_API.obj (.text:GAP_GetParamValue)
             000092c0  0000003c  iCall_API.obj (.text:GATTServApp_RegisterService)
             000092fc  0000003c  iCall_cc265.obj (.text:ICallPlatform_pwrConfigACAction)
             00009338  0000003c  driverlib.lib:osc.obj (.text:NOROM_OSC_HPOSCRelativeFREquencyOffsetGet)
             00009374  0000003c          :rfc.obj (.text:NOROM_RFCSynthPowerDown)
             000093b0  0000003c  RFCC26XX_singlemode.obj (.text:rf_runCmd)
             000093ec  0000003c  registerservice.obj (.text:Register_SetParameter)
             00009428  0000003c  sensortag_bar.obj (.text:SensorTagBar_createTask)
             00009464  0000003c  sensortag_hm.obj (.text:SensorTagHum_createTask)
             000094a0  0000003c  sensortag.obj (.text:SensorTag_createTask)
             000094dc  0000003c  sensortag_bar.obj (.text:VL53L0XI2cWriteRead)
             00009518  0000003c  sensortag.obj (.text:WDTInitFxn)
             00009554  0000003c  zhan_config.obj (.text:ZanInit)
             00009590  0000003c  RFCC26XX_singlemode.obj (.text:postDirImmCmd $16)
             000095cc  0000003c  iCall_API.obj (.text:profileSetParameter 24美元)
             00009608  0000003c  iCall_API.obj (.text:sendWaitMatchCS$24)
             00009644  0000003c  iCall_API.obj (.text:sendWaitMatchValueCS$24)
             00009680  00000038  iCall_API.obj (.text:GAPBondMgr_LinkEst)
             000096b8  00000038  I2C.obj (.text:I2C_init)
             000096f0  00000038  iCall.obj (.text:iCall_primGetMaxMSecs$21)
             00009728  00000038  drivers_cc26xxware.aem3:NVS.oem3 (.text:NVS_init)
             00009760  00000038  PINCC26XX.obj (.text:PIN_setOutputValue)
             00009798  00000038  drivers_cc26xxware.aem3:uart.oem3 (.text:uart_init)
             000097d0  00000038  util.obj (.text:Util_restartClock)
             00009808  00000038  sensortag_bar.obj (.text:VL53L0XI2cWrite)
             00009840  00000038  drivers_cc26xxware.aem3:watchdog.oem3 (.text:watchdog_init)
             00009878  00000038  iCall_API.obj (.text:linkDB_NumConns)
             000098b0  00000038  drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:ReadData)
             000098e8  00000038  rtsv7M3_T_le_eabi.lib:fs_to_t2.obj (.text)
             00009920  00000038  ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_ARM_cc26xx_Timer_getCurrentTick__E)
             00009958  00000038  drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:writeData)
             00009990  00000036  RFCC26XX_singlemode.obj (.text:updateImplicitState$16)
             000099c6  00000002  ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:XDC_runtime_SysCallback_defaultExit)
             000099c8  00000034  iCall_API.obj (.text:GAPBondMgr_SetParameter)
             000099fc  00000034  iCall_API.obj (.text:GAP_SetParamValue)
             00009a30  00000034  iCall.obj (.text:iCall_primEntityId2ServiceId$21)
             00009a64  00000034  iCall.obj (.text:iCall_primFetchMsg$21)
             00009a98  00000034  iCall.obj (.text:iCall_primRegisterISR$21)
             00009acc  00000034  iCall.obj (.text:iCall_primRegisterISR_Ext$21)
             00009b00  00000034  iCall.obj (.text:iCall_searchServiceEntity)
             00009b34  00000034  iosservice.obj (.text:io_SetParameter)
             00009b68  00000034  driverlib.lib:dDI.obj (.text:NOROM_DDI32RegWrite)
             00009b9c  00000034          :osc.obj (.text:NOROM_OSCHF_SwitchToRcOscTurnOffXosc)
             00009bd0  00000034  drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
             00009c04  00000034  RFCC26XX_singlemode.obj (.text:Q_push$16)
             00009c38  00000034  registerservice.obj (.text:Register_getParameter)
             00009c6c  00000034  sensortag_bar.obj (.text:VL53L0XI2cRead)
             00009cA0  00000034  drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:disableFlashCache)
             00009cd4  00000034  iCall_API.obj (.text:osal_SNV_read)
             00009d08  00000034  iCall_API.obj (.text:osal_SNV_write)
             00009d3c  00000034  iCall_API.obj (.text:profileAddService$24)
             00009d70  00000034  rtsv7M3_T_le_eabi.lib:fs_to_t2.obj (.text)
             00009da4  00000032  iCall_API.obj (.text:gapSendParamsCmd$24)
             00009dd6  00000032  iCall_API.obj (.text:gapSendPtrParamsCmd$24)
             00009e08  00000032  iCall_API.obj (.text:matchGapSetGetParamCS$24)
             00009e3a  00000032  iCall_API.obj (.text:matchGattCmdlStatus$24)
             00009e6c  00000032  iCall_API.obj (.text:matchUtilNvCS$24)
             00009e9e  00000032  rom_SysBIOS.aem3:rom_SysBIOS.obj (.text:ti_SysBIOS_family_arm_cc26xx_Timer_setNextTick__E)
             00009ed0  00000030  iCall_cc260.obj (.text:ICallPlatform_pwrNotify 22美元)
             00009f00  00000030  iCall_cc260.obj (.text:ICallPlatform_pwrRegisterNotify)
             00009f30  00000030  iCall.obj (.text:iCall_msecs2Ticks 21美元)
             00009f60  00000030  iCall.obj (.text:iCall_searchTask$21)
             00009f90  00000030  driverlib.lib:setup.obj (.text:NOROM_SetupSetAonRtcSubSecInc)
             00009fc0  00000030          :Trng.obj (.text:NOROM_TRNGConfigure)
             00009ff0  00000030  drivers_cc26xxware.aem3:NVS.oem3 (.text:NVS_open)
             0000a020  00000030               :PowerCC26XX.oem3 (.text:Power_releaseConstraint)
             0000a050  00000030               :PowerCC26XX.oem3 (.text:Power_setConstraint)
             0000a080  00000030  water_capature.obj (.text:Read_Watercap_Sensor$10)
             0000a0b0  00000030  sensortag.obj (.text:SensorTag_resetAllModules 1)
             0000a0e0  00000030  drivers_cc26xxware.aem3:uart.oem3 (.text:uart_open)
             0000a110  00000030               :WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_setReload)
             0000a140  00000030               :Watchdog.oem3 (.text:Watchdog_open)
             0000a170  00000030  app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__i)
             0000a1a0  00000030  app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__i)
             0000a1d0  00000030  rom_SysBIOS.aem3:rom_SysBIOS.obj (.text:ti_SysBIOS_family_arm_cc26xx_Timer_initDevice__I)
             0000a200  00000030            :rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_setThreshold__i)
             0000a230  0000002e  iCall_cc260.obj (.text:ICallPlatform_pwrDiscontseImpl$22)
             0000a25e  0000002e  iCall_cc260.obj (.text:ICallPlatform_pwrRequireImpl$22)
             0000a28c  0000002e  sensortag.obj (.text:iCall_fetchServiceMsg$ 1)
             0000a2ba  0000002e  peripheral.obj (.text:iCall_fetchServiceMsg$36)
             0000a2e8  0000002e  iCall.obj (.text:iCall_msgDequeue$21)
             0000a316  0000002e  iCall_API.obj (.text:matchProfileAddServiceCS$24)
             0000a344  0000002e  rtsv7M3_T_le_eabi.lib:I_tofd_t2.obj (.text)
             0000a372  00000002  --hole --[填充= 0]
             0000a374  0000002c  sensortag.obj (.text:Board_openUART)
             0000a3a0  0000002c  iCall.obj (.text:iCall_heapFree)
             0000a3cc  0000002c  ioservice.obj (.text:iCall_malloc$32)
             0000a3f8  0000002c  iCall.obj (.text:iCall_msgEnqueue$21)
             0000a424  0000002c  iCall.obj (.text:iCall_primAllocMsg$21)
             0000a450  0000002c  iCall.obj (.text:iCall_primFetchServiceMsg$21)
             0000a47c  0000002c  iCall_API.obj (.text:iCall_sendServiceMsg$24)
             0000a4a8  0000002c  driverlib.lib:setup.obj (.text:NOROM_SetupGetTrimForRadcExtCfg)
             0000a4d4  0000002c  PINCC26XX.obj (.text:PINCC26XX_setMux)
             0000a500  0000002c  PINCC26XX.obj (.text:PIN_setConfig)
             0000a52c  0000002c  driverlib.lib:Adi.obj (.text:SafeHapiAuxAdiSelect)
             0000a558  0000002c  RFCC26XX_singlemode.obj (.text:getCmd$16)
             0000a584  0000002c  rom_SysBIOS.aem3:rom_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_getTicksUntilInterrupt__E)
             0000a5b0  0000002c  st_util.obj (.text:utilExtUuid16)
             0000a5dc  0000002a  iCall_API.obj (.text:iCall_waitMatch 24美元)
             0000a606  0000002a  TRNGCC26XX.obj (.text:TRNGCC26XX_isParamValid)
             0000a630  0000002a  util.obj (.text:Util_enqueueMsg)
             0000a65a  0000002a  iCall_API.obj (.text:matchProfileCS$24)
             0000a684  00000028  iCall_API.obj (.text:GAPBondMgr_Register)
             0000a6ac  00000028  gattservapp_util.obj (.text:GATTServApp_WriteCharCfg)
             0000a6d4  00000028  Water 容性.obj (.text:get_Data_Find_Flash)
             0000a6fc  00000028  iCall.obj (.text:iCall_init)
             0000a724  00000028  iCall.obj (.text:iCall_msgPrepend$21)
             0000a74c  00000028  sensortag.obj (.text:iCall_registerApp-1)
             0000a774  00000028  sensortag_bar.obj (.text:iCall_registerApp-2)
             0000a79c  00000028  peripheral.obj (.text:iCall_registerApp$36)
             0000a7c4  00000028  sensortag_hum.obj (.text:iCall_registerApp$ 4)
             0000a7ec  00000028  iosservice.obj (.text:io_addService)
             0000a814  00000028  driverlib.lib:aon_batmon.obj (.text:NOROM_AONBatMonTemperatureGetDegC)
             0000a83c  00000028  PINCC26XX.obj (.text:PINCC26XX_getPinCount)
             0000a864  00000028  drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
             0000a88c  00000028               :PowerCC26XX.oem3 (.text:Power_registerNotify)
             0000a8b4  00000028  driverlib.lib:Adi.obj (.text:SafeHapiVoid)
             0000a8dc  00000028  sensortag_bar.obj (.text:SensorTagBar_reset)
             0000a904  00000028  sensortag_hum.obj (.text:SensorTagHum_reset)
             0000a92c  00000028  sensortag.obj (.text:SensorTag_enqueueMsg$ 1)
             0000a954  00000028  TRNGCC26XX.obj (.text:TRNGCC26XX_init)
             0000a97c  00000028  sensortag_bar.obj (.text:VL53L0XI2cwriteReg)
             0000a9a4  00000028  drivers_cc26xxware.aem3:watchdogCC26XX.oem3 (.text:watchdogCC26XX_convertMsToTicks)
             0000a9cc  00000028  Water 容性.obj (.text:Write_Data_TO_Flash)
             0000a9f4  00000028  RFCC26XX_singlemode.obj (.text:clkPowerUpFxn$16)
             00001a00000028    gattservapp_util.obj (.text:gattServApp_FindCharCfgItems$30)
             0000aa44  00000028  main.obj (.text:main)
             0000aa6c  00000028  ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_ARM_cc26xx_Timer_getMaxTicks__E)
             0000aa94  00000026  drivers_cc26xxware.aem3:List.oem3 (.text:List_Put)
             0000aaba  00000002  --hole --[填充= 0]
             0000aabc  00000024  barometerservice.obj (.text:Barometer_getParameter)
             0000aae0  00000024  iCall_API.obj (.text:GAPBondMgr_LinkTerm)
             0000ab04  00000024  I2C.obj (.text:I2C_open)
             0000ab28  00000024  iCall_API.obj (.text:iCall_getLocalMsgEntityId$24)
             0000ab4c  00000024  iCall_API.obj (.text:iCall_threadServes 24美元)
             0000ab70  00000024  sensortag_register.obj (.text:SensorTagRegister_update)
             0000ab94  00000024  drivers_cc26xxware.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:getTdcSemaphore)
             0000abb8  00000024  RFCC26XX_singlemode.obj (.text:hwiFxnCpe0PowerFsm$16)
             0000abdc  00000024  rtsv7M3_T_le_eabi.lib:u_tofs_t2.obj (.text)
             0000ac00  00000024  app_ble_pem3.oem3 (.text:ti_SysBIOS_BIOS_registerRTSLock__i)
             0000ac24  00000024  app_ble_pem3.oem3 (.text:ti_SysBIOS_BIOS_removeRTSLock__i)
             0000ac48  00000022  iCall.obj (.text:iCall_Dispatch 21美元)
             0000ac6a  00000022  sensortag.obj (.text:iCall_malloc$ 1)
             0000ac8c  00000022  util.obj (.text:iCall_malloc$9)
             0000acae  00000022  rtsv7M3_T_le_eabi.lib:memcmp.obj (.text)
             0000acd0  00000020  sensortag_hum.obj (.text:adc_Init)
             0000acf0  00000020  Water 容性.obj (.text:File_System_Int$10)
             0000ad10  00000020  gattservapp_util.obj (.text:GATTServApp_InitCharCfg)
             0000ad30  00000020  humidityservice.obj (.text:湿度_ getParameter)
             0000ad50  00000020  iCall_API.obj (.text:iCall_allocMsg$24)
             0000ad70  00000020  iCall_API.obj (.text:iCall_getEntityId$24)
             0000ad90  00000020  devinfoservice.obj (.text:iCall_malloc$28)
             0000adb0  00000020  iCall.obj (.text:iCall_primService21)
             0000add0  00000020  iCall.obj (.text:iCall_searchService$21)
             0000adf0  00000020  irtempservice.obj (.text:IRTemp_getParameter)
             0000ae10  00000020  driverlib.lib:rfc.obj (.text:NOROM_RFCDoorSendbellTo)
             0000ae30  00000020          :rfc.obj (.text:NOROM_RFCRfTrimRead)
             0000ae50  00000020          :setup.obj (.text:NOROM_SetupGetTrimForXoscHfCtl)
             0000ae70  00000020  drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_unregisterNotify)
             0000ae90  00000020  sensortag_tmp.obj (.text:SensorTagTmp_reset)
             0000aeb0  00000020  sensortag_hum.obj (.text:adcIsr)
             0000aed0  00000020  RFCC26XX_singlemode.obj (.text:allocCmd $16)
             0000aef0  00000020  rtsv7M3_T_le_eabi.lib:u_tofd_t2.obj (.text)
             0000af10  00000020  app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsLock__i)
             0000af30  00000020  rom_SysBIOS.aem3:rom_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_stop__E)
             0000af50  0000001e  iCall.obj (.text:iCall_primSendServiceMsg$21)
             0000af6e  0000001e  PINCC26XX.obj (.text:PIN_CLOSE)
             0000af8c  0000001e  drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_getTransitionLatency)
             0000afaa  0000001e  iCall_API.obj (.text:waitMatchCS$24)
             0000afc8  0000001c  peripheral.obj (.text:GAPRole_StartDevice)
             0000afe4  0000001c  iCall_API.obj (.text:GATT_BM_alloc)
             0000b000  0000001c  iCall_API.obj (.text:GATT_BM_FREE)
             0000b01c  0000001c  iCall.obj (.text:iCall_initPrim$21)
             0000b038  0000001c  sensortag.obj (.text:iCall_Wait1)
             0000b054  0000001c  peripheral.obj (.text:iCall_Wait$36)
             0000b070  0000001c  driverlib.lib:flash.obj (.text:NOROM_FlashProgram)
             0000b08c  0000001c          :flash.obj (.text:NOROM_FlashSectorErase)
             0000b0a8  0000001c          :osc.obj (.text:NOROM_OSCClockSourceGet)
             0000b0c4  0000001c          :setup.obj (.text:NOROM_SetupGetTrimForAmpcompTh2)
             0000b0e0  0000001c          :setup.obj (.text:NOROM_SetupGetTrimForRcOscLfRtuneCTuneTrim)
             0000b0fc  0000001c  drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_getAttrs)
             0000b118  0000001c  PINCC26XX.obj (.text:PINCC26XX_setIoCfgMux 15美元)
             0000b134  0000001c  PINCC26XX.obj (.text:PIN_hwi15)
             0000b150  0000001c  RFCC26XX_singlemode.obj (.text:rf_runDirectCmd)
             0000b16c  0000001c  RFCC26XX_singlemode.obj (.text:rf_runImmediateCmd)
             0000b188  0000001c  sensortag_io.obj (.text:SensorTagIO_init)
             0000b1a4  0000001c  sensortag.obj (.text:SensorTag_processAppMsg-1)
             0000b1c0  0000001c  TRNGCC26XX.obj (.text:TRNGCC26XX_open)
             0000b1dc  0000001c  Water 容性.obj (.text:three:Clock_stop)
             0000b1f8  0000001c  drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:enableFlashCache)
             0000b214  0000001c  peripheral.obj (.text:gapRole_HandleParamUpdateNoSuccesss$36)
             0000b230  0000001c  iCall_API.obj (.text:getStatusValueFromErrNo$24)
             0000b24c  0000001c  TRNGCC26XX.obj (.text:openTRNG)
             0000b268  0000001c  rom_SysBIOS.aem3:rom_SysBIOS.obj (.text:ti_SysBIOS_family_arm_cc26xx_Timer_DynamicStub_E)
             0000b284  0000001c  sensortag_register.obj (.text:writeRegister6)
             0000b2a0  0000001a  iCall_API.obj (.text:GATT_Notification)
             0000b2ba  0000001a  iCall.obj (.text:iCall_enterCSImpl)
             0000b2d4  0000001a  iCall.obj (.text:iCall_primSetTimerMSecs$21)
             0000b2ee  0000001a  drivers_cc26xxware.aem3:List.oem3 (.text:List_remove)
             0000b308  0000001a  util.obj (.text:Util_dequeueMsg)
             0000b322  0000001a  iCall_API.obj (.text:matchGattIndNottiCS$24)
             0000b33c  00000018  peripheral.obj (.text:GAPRole_TerminateConnection)
             0000b354  00000018  I2C.obj (.text:I2C_Params_init)
             0000b36c  00000018  iCall_cc260.obj (.text:ICallPlatform_pwrDispense)
             0000b384  00000018  iCall_cc260.obj (.text:ICallPlatform_pwrRequire)
             0000b39c  00000018  sensortag.obj (.text:iCall_free1)
             0000b3b4  00000018  devinfoservice.obj (.text:iCall_free$28)
             0000b3cc  00000018  util.obj (.text:iCall_free$9)
             0000b3e4  00000018  sensortag.obj (.text:iCall_freeMsg-1)
             0000b3fc  00000018  iCall.obj (.text:iCall_freeMsg$21)
             0000b414  00000018  iCall_API.obj (.text:iCall_freeMsg 24美元)
             0000b42c  00000018  peripheral.obj (.text:iCall_freeMsg$36)
             0000b444  00000018  iCall.obj (.text:iCall_primMalloc$21)
             0000b45c  00000018  driverlib.lib:aon_rtc.obj (.text:NOROM_AONRTCCurrentCompareValueGet)
             0000b474  00000018          :chipinfo.obj (.text:NOROM_ChipInfo_GetPackageType)
             0000b48c  00000018          :osc.obj (.text:NOROM_OSCHF_TurnOnXosc)
             0000b4a4  00000018          :rfc.obj (.text:NOROM_RFCCpeIntGetAndClear)
             0000b4bc  00000018          :setup.obj (.text:NOROM_SetupGetTrimForAdcShModeEn)
             0000b4d4  00000018          :setup.obj (.text:NOROM_SetupGetTrimForAdcShVbufEn)
             0000b4ec  00000018          :setup.obj (.text:NOROM_SetupGetTrimForAmpcompTh1)
             0000b504  00000018          :setup.obj (.text:NOROM_SetupGetTrimForDblrLoopFilterResetVoltage)
             0000b51c  00000018          :setup.obj (.text:NOROM_SetupGetTrimForRcOscLfIBiasTrim)
             0000b534  00000018          :setup.obj (.text:NOROM_SetupGetTrimForXoscLfRegulatorAndCwrmirrorRatio)
             0000b54c  00000018          :sys_ctrl.obj (.text:NOROM_SysCtrlResetSourceGet)
             0000b564  00000018  drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_idleFunc)
             0000b57c  00000018  RFCC26XX_singlemode.obj (.text:Q_pop$16)
             0000b594  00000018  registerservice.obj (.text:Register_registerAppCBs)
             0000b5ac  00000018  drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_init)
             0000b5c4  00000018               :uart.oem3 (.text:uart_Params_init)
             0000b5dc  00000018  util.obj (.text:Util_constructQueue)
             0000b5f4  00000018  drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:configureRFCoreClocks)
             0000b60c  00000018  peripheral.obj (.text:gapRole_setEvent$36)
             0000b624  00000018  sensortag_bar.obj (.text:initCharacteristic Value2美元)
             0000b63c  00000018  sensortag_hum.obj (.text:initCharacteristic Value$4)
             0000b654  00000018  sensortag_tmp.obj (.text:initCharacteristic Value7美元)
             0000b66c  00000018  rtsv7M3_T_le_eabi.lib:args_main.obj (.text)
             0000b684  00000018              :LL_mul_t2.obj (.text)
             0000b69c  00000018  RFCC26XX_singlemode.obj (.text:swifxnFsm$16)
             0000b6b4  00000018  app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsUnlock__i)
             0000b6cc  00000018  ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_KNL_Swi_or_E)
             0000b6e4  00000018  app_ble_pem3.oem3 (.text:ti_sysbios_rom_cortexm_cc26xx_CC26xx_checkRevision___E)
             0000b6fc  00000016  main.obj (.text:AssertHandler)
             0000b712  00000016  iCall.obj (.text:iCall_ABORT$21)
             0000b728  00000016  iCall.obj (.text:iCall_leaveCSImpl)
             0000b73e  00000016  iCall.obj (.text:iCall_primStopTimer21)
             0000b754  00000016  ble_user_config.obj (.text:driverTable_fnSpinlock)
             0000b76a  00000016  app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__i)
             0000b780  00000014  devinfoservice.obj (.text:DevInfo_AddService)
             0000b794  00000014  iosservice.obj (.text:io_getParameter)
             0000b7a8  00000014  ioservice.obj (.text:io_registerAppCBs)
             0000b7bc  00000014  driverlib.lib:aon_rtc.obj (.text:NOROM_AONRTCCurrent64BitValueGet)
             0000b7d0  00000014          :chipinfo.obj (.text:NOROM_ThisCodeIsBuiltForCC26xxHwRev22AndLater_HaltIfViolated)
             0000b7e4  00000014  RFCC26XX_singlemode.obj (.text:rf_params_init)
             0000b7f8  00000014  registerservice.obj (.text:Register_addService)
             0000b80c  00000014  sensortag.obj (.text:SensorTag_clockHandler 1)
             0000b820  00000014  sensortag.obj (.text:SensorTag_updateAddertisingData)
             0000b834  00000014  sensortag.obj (.text:SysCtrlSystemReset1)
             0000b848  00000014  sensortag_bar.obj (.text:SysCtrlSystemReset2)
             0000b85c  00000014  sensortag_hum.obj (.text:SysCtrlSystemReset$4)
             0000b870  00000014  sensortag_io.obj (.text:SysCtrlSystemReset5美元)
             0000b884  00000014  rtsv7M3_T_le_eabi.lib:_lock.obj (.text)
             0000b898  00000014              :strlen.obj (.text)
             0000b8ac  00000014  iCall_API.obj (.text:setICallCmdEvtHdr$24)
             0000b8c0  00000014  app_ble_pem3.oem3 (.text:ti_sysbios_KNL_Clock_doTick__i)
             0000b8d4  00000014  sensortag.obj (.text:wdtCallback)
             0000b8e8  00000012  gattservapp_util.obj (.text:GATTServApp_FindAttr)
             0000b8fa  00000012  RFCC26XX_singlemode.obj (.text:rf_getCmdOp)
             0000b90c  00000012  app_ble_pem3.oem3 (.text:xdc_runtime_Startup_exec__i)
             0000b91e  00000002  --hole --[填充= 0]
             0000b920  00000010  RFCC26XX_singlemode.obj (.text:FsmDispatch 16美元)
             0000b930  00000010  peripheral.obj (.text:GAPRole_GetParameter)
             0000b940  00000010  iCall_API.obj (.text:GAP_EndDiscoverable)
             0000b950  00000010  gattservapp_util.obj (.text:GATTServApp_ReadCharCfg)
             0000b960  00000010  iCall_cc265.obj (.text:ICallPlatform_pwrGetXOSCStartupTime)
             0000b970  00000010  iCall.obj (.text:iCall_primGetTickPeriod 21美元)
             0000b980  00000010  iCall.obj (.text:iCall_taskEntry$21)
             0000b990  00000010  driverlib.lib:aux_adc.obj (.text:NOROM_AUXADCReadFifo)
             0000b9a0  00000010          :rfc.obj (.text:NOROM_RFCRfTrimSet)
             0000b9b0  00000010          :setup.obj (.text:NOROM_SetupGetTrimForXoscHfFastStart)
             0000b9c0  00000010          :setup.obj (.text:NOROM_SetupGetTrimForXoscHfIbiastherm)
             0000b9d0  00000010  drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_init)
             0000b9e0  00000010  ble_user_config.obj (.text:RegisterAssertBack)
             0000b9f0  00000010  sensortag_register.obj (.text:SensorTagRegister_init)
             0000ba00  00000010  util.obj (.text:Util_isActive)
             0000ba10  00000010  sensortag.obj (.text:WDTClose)
             0000ba20  00000010  drivers_cc26xxware.aem3:watchdogCC26XX.oem3 (.text:watchdogCC26XX_clear)
             0000ba30  00000010               :Watchdog.oem3 (.text:Watchdog_Params_init)
             0000ba40  00000010  I2CCC26XX.obj (.text:i2cPostNotify 14美元)
             0000ba50  00000010  ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_ARM_m3/Hwi_post _ E)
             0000ba60  00000010  drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:uartPostNotify)
             0000ba70  00000010  sensortag_bar.obj (.text:writeReg)
             0000ba80  0000000e  iCall_API.obj (.text:GATT_Indication)
             0000ba8e  0000000e  iCall_cc260.obj (.text:ICallPlatform_pwrGetTransitionState)
             0000ba9c  0000000e  iCall_cc260.obj (.text:ICallPlatform_pwrIsStableXOSCHF)
             0000baaa  0000000e  iCall.obj (.text:iCall_primDisableMInt$21)
             0000Bab8  0000000e  iCall.obj (.text:iCall_primEnableMInt$21)
             0000bac6  0000000e  iCall.obj (.text:iCall_primFreeMsg$21)
             0000bad4  0000000e  iCall.obj (.text:iCall_primGetTicks$21)
             0000ba2  0000000e  driverlib.lib:setup.obj (.text:NOROM_SetupSignExtendVddrTrimValue)
             0000baf0  0000000e          :VIMS.obj (.text:NOROM_VIMSModeGet)
             0000bafe  0000000e  drivers_cc26xxware.aem3:NVS.oem3 (.text:NVS_write)
             0000bb0c  0000000e  sensortag_bar.obj (.text:VL53L0XI2creadReg)
             0000bb1a  0000000e  rtsv7M3_T_le_eabi.lib:copy_decompress_none.obj (.text:decompress:none)
             0000bb28  0000000e  sensortag_bar.obj (.text:makeuint16)
             0000bb36  0000000e  iCall_API.obj (.text:matchGSARegisterServiceCS$24)
             0000bb44  0000000e  iCall_API.obj (.text:matchGapLinkEstCS$24)
             0000bb52  0000000e  iCall_API.obj (.text:matchLinkDBNumConnsCS$24)
             0000bb60  0000000e  iCall_API.obj (.text:setDispatchCmdEvtHdr$24)
             0000bb6e  0000000e  ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_arm_cc26xx_TimestampProvider_get32__E)
             0000bb7c  0000000c  RFCC26XX_singlemode.obj (.text:FsmNextState_16)
             0000bb88  0000000c  iCall_API.obj (.text:GAP_MakeDiscoverable)
             0000bb94  0000000c  iCall_API.obj (.text:GAP_TerminateAuth)
             0000bba0  0000000c  iCall_API.obj (.text:GAP_UpdateLinkParamReq)
             0000bbac  0000000c  iCall_API.obj (.text:GAP_UpdateLinkParamReqReply)
             0000bbb8  0000000c  iCall_API.obj (.text:GGS_SetParameter)
             0000bbc4  0000000c  iCall.obj (.text:iCall_clockFunc$21)
             0000bbd0  0000000c  iCall.obj (.text:iCall_primDisableInt$21)
             0000bbdc  0000000c  iCall.obj (.text:iCall_primEnableInt$21)
             0000bbe8  0000000c  iCall.obj (.text:iCall_primFre$21)
             0000bbf4  0000000c  iCall.obj (.text:iCall_primSignal$21)
             0000bc00  0000000c  driverlib.lib:cpu.obj (.text:NOROM_CPUCPsid)
             0000bc0c  0000000c          :cpu.obj (.text:NOROM_CPUcpsie)
             0000bc18  0000000c  drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_getConstraintMask)
             0000bc24  0000000c               :PowerCC26XX.oem3 (.text:Power_getDependencyCount)
             0000bc30  0000000c               :PowerCC26XX.oem3 (.text:Power_getTransitionState)
             0000bc3c  0000000c  sensortag.obj (.text:SensorTag_processGATTMsg-1)
             0000bc48  0000000c  sensortag.obj (.text:SensorTag_processStackMsg-1)
             0000bc54  0000000c  sensortag.obj (.text:SensorTag_testResult)
             0000bc60  0000000c  UART_LOS.obj (.text:UartLog_init)
             0000bc6c  0000000c  util.obj (.text:Util_startClock)
             0000bc78  0000000c  sensortag_bar.obj (.text:VL53L0XI2cDeselect)
             0000bc84  0000000c  iCall_API.obj (.text:matchProfileSetParamCS$24)
             0000bc90  0000000c  rom_SysBIOS.aem3:rom_SysBIOS.obj (.text:ti_SysBIOS_BIOS_getThreadType__E)
             0000bc9c  0000000c            :rom_sysbios_config.obj (.text:ti_sysbios_hal_hwi_params__init__S)
             0000bca8  0000000c            :rom_SysBIOS.obj (.text:ti_SysBIOS_KNL_Swi_getTrigger__E)
             0000bcb4  0000000c  app_ble_pem3.oem3 (.text:xdc_runtime_Startup_reset__i)
             0000bcc0  0000000c  rom_SysBIOS.aem3:rom_SysBIOS.obj (.text:xdc_runtime_Startup_rtsDone__E)
             0000bccc  0000000a  I2CCC26XX.obj (.text:I2CCC26XX_init)
             0000bcd6  0000000a  I2C.obj (.text:I2C_transfer)
             0000bce0  0000000a  iCall_cc260.obj (.text:ICallPlatform_pwrSwitchXOSCHF)
             0000bcea  0000000a  iCall.obj (.text:iCall_primE2S$21)
             0000bcf4  0000000a  drivers_cc26xxware.aem3:List.oem3 (.text:List_empty)
             0000bcfe  0000000a               :NVS.oem3 (.text:NVS_READ)
             0000bd08  0000000a  sensortag.obj (.text:SensorTag_charValueChangeCB)
             0000bd12  0000000a  sensortag.obj (.text:SensorTag_stateChangeCB-1)
             0000bd1c  0000000a  drivers_cc26xxware.aem3:uart.oem3 (.text:uart_write)
             0000bd26  0000000a               :Watchdog.oem3 (.text:Watchdog_clear)
             0000bd30  0000000a               :Watchdog.oem3 (.text:Watchdog_Close)
             0000bd3a  0000000a               :Watchdog.oem3 (.text:Watchdog_setReload)
             0000bd44  00000008  RFCC26XX_singlemode.obj (.text:rf_flushCmd)
             0000bd4c  00000008  drivers_cc26xxware.aem3:watchdogCC26XX.oem3 (.text:watchdogCC26XX_init)
             0000bd54  00000008  sensortag_io.obj (.text:ioChangeCB$5)
             0000bd5c  00000008  drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:readSemCallback)
             0000bd64  00000008  sensortag_register.obj (.text:registerChangeCB$6)
             0000bd6c  00000008  sensortag_tmp.obj (.text:sensorConfigChangeCB$7)
             0000bd74  00000008  drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:writeSemCallback)
             0000bd7c  00000006  iCall_API.obj (.text:GGS_AddService)
             0000bd82  00000006  I2CCC26XX.obj (.text:I2CCC26XX_control)
             0000bd88  00000006  iCall.obj (.text:iCall_mallocImpl)
             0000bd8e  00000006  driverlib.lib:cpu.obj (.text:NOROM_CPUdelay)
             0000bd94  00000006  PINCC26XX.obj (.text:PIN_registerIntCb)
             0000bd9a  00000006  drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_readPolling)
             0000bda0  00000006               :UARTCC26XX.oem3 (.text:UARTCC26XX_writePolling)
             0000bda6  00000006               :WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_control)
             0000bdac  00000006  RFCC26XX_singlemode.obj (.text:clkInactivityFxn$16)
             0000bdb2  00000006  rtsv7M3_T_le_eabi.lib:copy_decompress_rle.obj (.text:decompress:rle24)
             0000bdb8  00000006  iCall_API.obj (.text:gattAddService$24)
             0000bdbe  00000006  iCall_API.obj (.text:matchBondMgrSetParamCS$24)
             0000bdc4  00000006  iCall_API.obj (.text:matchGGSSetParamCS$24)
             0000bdca  00000006  iCall_API.obj (.text:matchGapConnParamUpdateReplyCS$24)
             0000bdd0  00000006  iCall_API.obj (.text:matchGapDeviceInitCS$24)
             0000bdd6  00000006  iCall_API.obj (.text:matchGapEndDiscoverableCS$24)
             0000bddc  00000006  iCall_API.obj (.text:matchGapGetParamCS$24)
             0000bde2  00000006  iCall_API.obj (.text:matchGapMakeDiscoverableCS$24)
             0000bde8  00000006  iCall_API.obj (.text:matchGapSetParamCS$24)
             0000bdee  00000006  iCall_API.obj (.text:matchGapTerminateAuthCS$24)
             0000bdf4  00000006  iCall_API.obj (.text:matchGapTerminateLinkReqCS$24)
             0000bdfa  00000006  iCall_API.obj (.text:matchGapUpdateAdvDataCS$24)
             0000be00  00000006  iCall_API.obj (.text:matchGapUpdateLinkParamReqCS$24)
             0000be06  00000006  iCall_API.obj (.text:matchUtilNvReadCS$24)
             0000be0c  00000006  iCall_API.obj (.text:matchUtilNvWriteCS$24)
             0000be12  00000006  ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_ARM_m3/Hwi_setFunc__E)
             0000be18  00000004  tirtosport.aem3:hwip_tirtos.oem3 (.text:Hwip_disable)
             0000be1c  00000004  drivers_cc26xxware.aem3:List.oem3 (.text:List_head)
             0000be20  00000004               :List.oem3 (.text:List_next)
             0000be24  00000004  RFCC26XX_singlemode.obj (.text:Q_peek$16)
             0000be28  00000004  util.obj (.text:Util_stopClock)
             0000be2c  00000004  zhan_config.obj (.text:ZanConfig_read)
             0000be30  00000004  peripheral.obj (.text:gapRole_SetupGAP 36美元)
             0000be34  00000004  drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:nopResourceHandler)
             0000be38  00000004  ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_ARM_cc26xx_Timer_getCount64_E)
             0000be3c  00000004            :rom_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_isActive__E)
             0000be40  00000004            :rom_SysBIOS.obj (.text:ti_SysBIOS_KNL_Queue_insert__E)
             0000be44  00000008  (.tramp.XDC_Runtime_Core_赋 值 Params__i.1)
             0000be4c  00000008  (.tramp.ti_sysbios_hal_hwi_enableInterrupt_e_e.1)
             0000be54  00000008  (.tramp.ti_sysbios_hal_hwi_disableInterrupt__e.1)
             0000be5c  00000008  (.tramp.ti_SysBIOS_KNL_Task_enable_e.1)
             0000be64  00000008  (.tramp.ti_sysbios_family_arm_m3/hwi_enableFxn_e.1)
             0000be6c  00000008  (.tramp.XDC_Runtime_Startup_startMods__i.1)
             0000be74  00000008  (.tramp.ti_SysBIOS_KNL_Clock_logTick__e.1)
             0000be7c  00000008  (.tramp.ti_SysBIOS_BIOS_rtsGateProxy_leave_e.1)
             0000be84  00000008  (.tramp.ti_SysBIOS_KNL_Queue_construct.1)
             0000be8c  00000008  (.tramp.ti_SysBIOS_KNL_Queue_get_e.1)
             0000be94  00000008  (.tramp.ti_SysBIOS_BIOS_rtsGateProxy_enter_e.1)
             0000be9c  00000008  (.tramp.ti_SysBIOS_BIOS_start__e.1)
             0000bea4  00000008  (.tramp.ti_SysBIOS_KNL_Queue_Put)
             0000beac  00000008  (.tramp.ti_sysbios_KNL_Task_startup_e.1)
             0000beb4  00000008  (.tramp.ti_SysBIOS_KNL_Swi_startup_e_e.1)
             0000bc  00000008  (.tramp.ti_sysbios_hal_hwi_startup_e.1)
             0000bec4  00000008  (.tramp.ti_sysbios_family_arm_cc26xx_Timer_startup_e_e.1)
             0000becc  00000008  (.tramp.XDC_Runtime_System_atexit__e.1)
             0000bed4  00000008  (.tramp.ti_SysBIOS_BIOS_setThreadType__e.1)
             0000bedc  00000008  (.tramp.ti_sysbios_hal_hwi_create.1)
             0000bee4  00000008  (.tramp.ti_SysBIOS_KNL_Task_construct.1)
             0000beec  00000008  (.tramp.XDC_Runtime_System_exit_e.1)
             0000bef4  00000008  (.tramp.ti_SysBIOS_KNL_Semaphore_create.1)
             0000befc  00000008  (.tramp.ti_SysBIOS_KNL_Task_create.1)
             0000bf04  00000008  (.tramp.ti_SysBIOS_KNL_Task_Params__init_S.1)
             0000bf0c  00000008  (.tramp.ti_SysBIOS_KNL_Clock_析 构函数1)
             0000bf14  00000008  (.tramp.ti_SysBIOS_KNL_Clock_create.1)
             0000bf1c  00000008  (.tramp.ti_SysBIOS_KNL_Clock_scheduleNextTick__e.1)
             0000bf24  00000008  (.tramp.ti_SysBIOS_KNL_Clock_robQueueDynamic__E.1)
             0000bf2c  00000008  (.tramp.ti_SysBIOS_KNL_Clock_TimerProxy_getCurrentTick__e.1)
             0000bf34  00000008  (.tramp.ti_SysBIOS_KNL_Queue_enqueue_e_e.1)
             0000bf3c  00000008  (.tramp.ti_SysBIOS_KNL_Queue_remove_e.1)
             0000bf44  00000008  (.tramp.ti_SysBIOS_BIOS_getCpuFreq__e.1)
             0000bf4c  00000008  (.tramp.ti_SysBIOS_KNL_Semaphore_析 构函数1)
             0000bf54  00000008  (.tramp.ti_SysBIOS_KNL_Swi_析 构函数1)
             0000bf5c  00000008  (.tramp.ti_sysbios_family_arm_m3/hwi_析 构1)
             0000bf64  00000008  (.tramp.ti_SysBIOS_KNL_Task_self_e.1)
             0000bf6c  00000008  (.tramp.ti_SysBIOS_KNL_Clock_getTicks__E.1)
             0000bf74  00000008  (.tramp.ti_SysBIOS_KNL_Queue_empty_e.1)
             0000bf7c  00000008  (.tramp.XDC_Runtime_System_ABortSpin__e.1)
             0000bf84  00000008  (.tramp.ti_SysBIOS_KNL_Clock_construct.1)
             0000bf8c  00000008  (.tramp.ti_SysBIOS_KNL_Clock_Params__init_S.1)
             0000bf94  00000008  (.tramp.ti_SysBIOS_KNL_Semaphore_construct.1)
             0000bf9c  00000008  (.tramp.ti_SysBIOS_KNL_Semaphore_Params__init_S.1)
             0000bfa4  00000008  (.tramp.ti_SysBIOS_KNL_Swi_construct.1)
             0000bf200008    (.tramp.ti_SysBIOS_KNL_Swi_Params__init_S.1)
             0000bfb4  00000008  (.tramp.ti_sysbios_family_arm_m3/hwi_construct.1)
             0000bfbc  00000008  (.tramp.ti_sysbios_family_arm_m3/Hwi_Params__init_S.1)
             0000bfc4  00000008  (.tramp.ti_sysbios_KNL_Task_restore__e.1)
             0000bfcc  00000008  (.tramp.ti_sysbios_KNL_Swi_restore_e_e.1)
             0000bfd4  00000008  (.tramp.ti_SysBIOS_KNL_Swi_disable_e_e.1)
             0000bfdc  00000008  (.tramp.ti_SysBIOS_KNL_Task_disable_e.1)
             0000bfe4  00000008  (.tramp.ti_SysBIOS_KNL_Semaphore_post__e.1)
             0000bfec  00000008  (.tramp.ti_sysbios_family_arm_m3/hwi_enableInterrupt_e_e.1)
             0000bff4  00000008  (.tramp.ti_sysbios_family_arm_m3_Hwi_disableInterrupt_e.1)
             0000bffc  00000008  (.tramp.ti_SysBIOS_KNL_Semaphore_pend_e_e.1)
             0000c004  00000008  (.tramp.ti_SysBIOS_KNL_Clock_start_e.1)
             0000c00c  00000008  (.tramp.ti_SysBIOS_KNL_Clock_setTimeout__e.1)
             0000c014  00000008  (.tramp.ti_sysbios_family_arm_m3_Hwi_restoreFxn_e.1)
             0000c01c  00000008  (.tramp.ti_sysbios_family_arm_m3/hwi_ddisableFxn_e.1)
             0000c024  00000008  (.tramp.ti_SysBIOS_KNL_Task_sleep_e.1)
             0000c02c  00000008  (.tramp.ti_SysBIOS_KNL_Swi_post)
    .const  0  0000c034  00000673    
             0000c034  000000cc  iCall.obj (.const:$O15$$)
             0000c100  00000050  sensortag.obj (.const:$O2$)
             0000c150  0000004c  drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.const:resourceDB)
             0000c19c  0000004c  ble_user_config.obj (.const:rfDriverTable)
             0000c1e8  00000048  app_ble_pem3.oem3 (.const:.string)
             0000c230  00000040  drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.const)
             0000c270  0000002c  gatt_uuuid.obj (.const:$O22$$)
             0000c29c  00000028  drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.const:UARTCC26XX_fxn 表)
             0000c2c4  00000027  ble_user_config.obj (.const:txPowerTable)
             0000c2eb  00000001  drivers_cc26xxware.aem3:NVS.oem3 (.const)
             0000c2ec  00000024               :uart.oem3 (.const:uart_defaultParams)
             0000c310  00000024  app_ble_pem3.oem3 (.const:xdc_runtime_Startup_sfxnTab__A)
             0000c334  00000020  drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.const)
             0000c354  0000001c  CC2650STK.obj (.const:BoardGpioInitTable)
             0000c370  0000001c  drivers_cc26xxware.aem3:watchdogCC26XX.oem3 (.const)
             0000c38c  00000018  I2CCC26XX.obj (.const:I2CCC26XX_fxnTable)
             0000c3a4  00000018  CC2650STK.obj (.const:I2C_CONFIG)
             0000c3bc  00000018  CC2650STK.obj (.const:NVS_CONFIG)
             0000c3d4  00000018  CC2650STK.obj (.const:UART_CONFIG)
             0000c3ec  00000018  CC2650STK.obj (.const:Watchdog_config)
             0000c404  00000018  CC2650STK.obj (.const:i2cCC26xxHWAttrs)
             0000c41c  00000018  CC2650STK.obj (.const:uartCC26XXHWAttrs)
             0000c434  00000014  RFCC26XX_singlemode.obj (.const:rf_defaultParams 16美元)
             0000c448  00000012  app_ble_pem3.oem3 (.const:xdc_runtime_Startup_sfxnRts__A)
             0000c45a  00000010  ioservice.obj (.const:.string:ioConfUUID)
             0000c46a  00000010  ioservice.obj (.const:.string:ioDataUUID)
             0000c47a  00000010  ioservice.obj (.const:.string:ioServUUID)
             0000c48a  00000010  registerservice.obj (.const:.string:registerAddressUUUID$37)
             0000c49a  00000010  registerservice.obj (.const:.string:registerDataUUUID$37)
             0000c4aa  00000010  registerservice.obj (.const:.string:registerDeviceIDUUUID$37)
             0000c4ba  00000010  barometerservice.obj (.const:.string:sensorCfgUUUUID$26)
             0000c4ca  00000010  humidityservice.obj (.const:.string:sensorCfgUUUUUID$31)
             0000c4da  00000010  irtempservice.obj (.const:.string:sensorCfgUUUUID$33)
             0000c4ea  00000010  barometerservice.obj (.const:.string:sensorDataUUID 26美元)
             0000c4fa  00000010  humidityservice.obj (.const:.string:sensorDataUUID 31美元)
             0000c50a  00000010  irtempservice.obj (.const:.string:sensorDataUUID 33美元)
             0000c51a  00000010  barometerservice.obj (.const:.string:sensorPeriodUUID 26美元)
             0000c52a  00000010  humidityservice.obj (.const:.string:sensorPeriodUUUUID$31)
             0000c53a  00000010  irtempservice.obj (.const:.string:sensorPeriodUUUUID$33)
             0000c54a  00000010  barometerservice.obj (.const:.string:sensorServiceUUID 26美元)
             0000c55a  00000010  humidityservice.obj (.const:.string:sensorServiceUUUID$31)
             0000c56a  00000010  irtempservice.obj (.const:.string:sensorServiceUUID 33美元)
             0000c57a  00000010  registerservice.obj (.const:.string:sensorServiceUUID 37美元)
             0000c58a  00000002  devinfoservice.obj (.const:.string:devInfo11073CertUUID)
             0000c58c  00000010  I2C.obj (.const:I2C_defaultParams)
             0000c59c  00000010  CC2650STK.obj (.const:PowerCC26XX_CONFIG)
             0000c5ac  00000010  CC2650STK.obj (.const:TRNGCC26XX_CONFIG)
             0000c5bc  00000010  CC2650STK.obj (.const:nvsCC26xxHWAttrs)
             0000c5cc  0000000e  zan_config.obj (.const:zanConfig_default)
             0000c5da  00000002  devinfoservice.obj (.const:.string:devInfoFirmRevUUID)
             0000c5dc  0000000c  devinfoservice.obj (.const:devInfoCBs)
             0000c5e8  0000000c  drivers_cc26xxware.aem3:watchdog.oem3 (.const)
             0000c5f4  0000000c  ioservice.obj (.const:ioCBs)
             0000c600  0000000c  registerservice.obj (.const:sensorcbs$37)
             0000c60c  0000000c  ble_user_config.obj (.const:trngDriverTable)
             0000c618  0000000c  CC2650STK.obj (.const:watchdogCC26XHwAttrs)
             0000c624  0000000c  app_ble_pem3.oem3 (.const:XDC_runtime_Startup_firstFxns__A)
             0000c630  00000008  I2CCC26XX.obj (.const:bitrate 14美元)
             0000c638  00000008  devinfoservice.obj (.const:devInfoService28美元)
             0000c640  00000008  ioservice.obj (.const:ioService$32)
             0000c648  00000008  barometerservice.obj (.const:sensorService26美元)
             0000c650  00000008  humidityservice.obj (.const:sensorService31美元)
             0000c658  00000008  irtempservice.obj (.const:sensorService33美元)
             0000c660  00000008  registerservice.obj (.const:sensorService37美元)
             0000c668  00000006  ble_user_config.obj (.const:txPwrTbl)
             0000c66e  00000002  devinfoservice.obj (.const:.string:devInfoHardwareRevUUID)
             0000c670  00000004  CC2650STK.obj (.const:TRNGCC26XXHWAttrs)
             0000c674  00000004  iCall_cc260.obj (.const:Events$1-22)
             0000c678  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_knkl_Clock_tickPeriod__C)
             0000c67c  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_KNL_Clock_triggerClock___C)
             0000c680  00000004  app_ble_pem3.oem3 (.const:ti_sysbios_KNL_idle_funclist__a)
             0000c684  00000004  app_ble_pem3.oem3 (.const:XDC_runtime_Log_L_info__C)
             0000c688  00000004  app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module_loggerFxn2__C)
             0000c68c  00000004  app_ble_pem3.oem3 (.const:XDC_runtime_Main_Module_loggerFxn4__C)
             0000c690  00000004  app_ble_pem3.oem3 (.const:XDC_runtime_Main_Module_loggerObj__C)
             0000c694  00000002  devinfoservice.obj (.const:.string:devInfoMfrNameUUID)
             0000c696  00000002  devinfoservice.obj (.const:.string:devInfoModelNumberUUID)
             0000c698  00000002  devinfoservice.obj (.const:.string:devInfoPnpIdUUID)
             0000c69a  00000002  devinfoservice.obj (.const:.string:devInfoSerialNumberUUID)
             0000c69c  00000002  devinfoservice.obj (.const:.string:devInfoServUUID)
             0000c69e  00000002  devinfoservice.obj (.const:.string:devInfoSoftwareRevUUID)
             0000c6a0  00000002  devinfoservice.obj (.const:.string:devInfoSystemIdUUID)
             0000c6a2  00000002  sensortag_bar.obj (.const:pinCfg1美元2)
             0000c6a4  00000002  app_ble_pem3.oem3 (.const:XDC_runtime_Main_Module_Logger Defined__C)
             0000c6a6  00000001  app_ble_pem3.oem3 (.const:xdc_runtime_text_charTab__a)
    .cinit  0  0000c6a8  000008ec    
             0000c6a8  00000768  (.cinit.data.load)[加载映像、压缩= rle]
             0000ce10  0000002d  (.cinit。.data:ti_sysbios_family_arm_m3/Hwi_Module_state__V.load)[加载映像、压缩= rle]
             0000ce3d  00000003  --hole --[填充= 0]
             0000ce40  0000002c  (.cinit、.data:ti_sysbios_knl_Task_Module_state__V.load)[加载映像、压缩= rle]
             0000ce6c  00000004  --hole --[填充= 0]
             0000ce70  00000021  (.cinit、.data:ti_sysbios_knl_Clock_Module_state__V.load)[加载映像、压缩= rle]
             0000ce91  00000007  --hole --[填充= 0]
             0000ce98  0000001f  (.cinit.data:ti_sysbios_BIOS_Module_state___V.load)[加载映像、压缩= rle]
             0000ceb7  00000001  --hole --[填充= 0]
             0000ceb8  00000011  (.cinit、.data:ti_sysbios_knl_swi_Module_state__V.load)[加载映像、压缩= rle]
             0000cec9  00000007  --hole --[填充= 0]
             0000ced0  0000000d  (.cinit.data:ti_sysbios_family_arm_cc26xx_Timer_Module_state_V.load)[加载映像、压缩= rle]
             0000cedd  00000003  --hole --[填充= 0]
             0000cee0  0000000b  (.cinit、.bss.load)[加载映像、压缩= RLE]
             0000ceeb  00000005  --hole --[填充= 0]
             0000cef0  0000000a  (.cinit、.data:xdc_runtime_Memory_Module_state__V.load)[加载映像、压缩= rle]
             0000cefa  00000006  --hole --[填充= 0]
             0000cf00  00000009  (.cinit.data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_state_V.load)[加载映像、压缩= rle]
             0000cf09  00000007  --hole --[填充= 0]
             00001000000009    (.cinit、.data:xdc_runtime_Startup_Module_state__V.load)[加载映像、压缩= rle]
             0000cf19  00000007  --hole --[填充= 0]
             0000cf20  00000009  (.cinit.data:xdc_runtime_System_Module_state___V.load)[加载映像、压缩= rle]
             0000cf29  00000003  --hole --[填充= 0]
             0000cf2c  00000008  (_TI_handler_table)
             0000cf34  00000060  (_TI_cinit_table)
    init_array  
    *      0  00000000  00000000  未初始化
    ccfg   0  0001ffa8  00000058    
             0001ffa8  00000058  ccfg_app_ble.obj (.ccfg:retain)
    vecs   0  20000000  000000c8  NoLoad 段
             20000000  000000c8  app_ble_pem3.oem3 (.vecs)
    .data:ti_sysbios_KNL_Task_Module_state__V  
    *      0  20000100  00000044  未初始化
             20000100  00000044  app_ble_pem3.oem3 (.data:ti_sysbios_KNL_Task_Module_state___V)
    .data:ti_sysbios_family_arm_m3/Hwi_Module_state__V  
    *      0  20000144  00000034  未初始化
             20000144  00000034  app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3/Hwi_Module_state__V)
    .data:ti_SysBIOS_KNL_Clock_Module_state__V  
    *      0  20000178  0000002c  未初始化
             20000178  0000002c  app_ble_pem3.oem3 (.data:ti_sysbios_KNL_Clock_Module_state___V)
    .data:ti_SysBIOS_BIOS_Module_state___V  
    *      0  200001a4  00000024  未初始化
             200001a4  00000024  app_ble_pem3.oem3 (.data:ti_sysbios_BIOS_Module_state__V)
    .data:ti_sysbios_KNL_Swi_Module_state__V  
    *      0  200001c8  0000001c  未初始化
             200001c8  0000001c  app_ble_pem3.oem3 (.data:ti_sysbios_KNL_Swi_Module_state__V)
    .data:ti_SysBIOS_family_ARM_cc26xx_Timer_Module_state___V  
    *      0  200001e4  00000008  未初始化
             200001e4  00000008  app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_cc26xx_Timer_Module_state__V)
    .data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_state___v  
    *      0  200001ec  00000004  未初始化
             200001ec  00000004  app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_state__V)
    .data:XDC_RAuntime_Startup_Module_state__V  
    *      0  200001f0  00000008  未初始化
             200001f0  00000008  APP_ble_pem3.oem3 (.data:xdc_runtime_Startup_Module_state___V)
    .data:XDC_RAuntime_System_Module_state__V  
    *      0  200001f8  00000008  未初始化
             200001f8  00000008  APP_ble_pem3.oem3 (.data:xdc_runtime_System_Module_state___V)
    .data:XDC_RAuntime_Memory_Module_state__V  
    *      0  20000200  00000004  未初始化
             20000200  00000004  app_ble_pem3.oem3 (.data:xdc_runtime_Memory_Module_state___V)
    .data   0  20000208  00001a82  未初始化
             20000208  00000454  sensortag.obj (.data:$O1$$)
             2000065c  00000338  UART_LOS.obj (.data:$O8$$)
             20000994  0000031c  peripheral.obj (.data:$O28$$)
             20000cb0  000002d8  sensortag_tmp.obj (.data:$O7$$)
             20000f88  00000230  RFCC26XX_singlemode.obj (.data:$O12$$)
             200011b8  000001d4  devinfoservice.obj (.data:$O21$$)
             2000138c  00000120  Water 容性.obj (.data:$O9$$)
             200014ac  00000110  drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.data:PowerCC26XX_MODULE)
             200015bc  0000010c  iCall.obj (.data:$O14$$)
             200016c8  00000094  barometerservice.obj (.data:$O20$$)
             2000175c  00000090  humidityservice.obj (.data:$O23$$)
             200017ec  00000090  irtempservice.obj (.data:$O25$$)
             2000187c  00000090  registerservice.obj (.data:$O29$)
             2000190c  0000005c  ioservice.obj (.data:$O24$$)
             20001968  00000050  ble_user_config.obj (.data:rfRegTbl)
             200019b8  0000004c  app_ble_pem3.oem3 (.data:ti_sysbios_KNL_Task_Object__table__V)
             20001a04  00000004  I2C.obj (.data)
             20001a08  00000048  app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_cc26xx_Timer_Object__table_V)
             20001a50  00000038  app_ble_pem3.oem3 (.data:ti_sysbios_gates_GateMutex_Object__table__V)
             20001a88  00000030  sensortag_register.obj (.data:$O6$$)
             20001ab8  00000030  app_ble_pem3.oem3 (.data:ti_sysbios_KNL_Swi_Module_State_0_readyQ__A)
             20001ae8  00000030  app_ble_pem3.oem3 (.data:ti_sysbios_KNL_Swi_Object__table__V)
             20001b18  00000030  app_ble_pem3.oem3 (.data:ti_sysbios_KNL_Task_Module_State_0_readyQ__A)
             20001b48  00000030  main.obj (.data:user0Cfg)
             20001b78  00000020  app_ble_pem3.oem3 (.data:ti_sysbios_KNL_Clock_Object__table_V)
             20001b98  00000018  app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Object__table__V)
             20001bb0  00000018  app_ble_pem3.oem3 (.data:ti_sysbios_ch堆_HeapMem_Object__table__V)
             20001bc8  0000000c  rtsv7M3_T_le_eabi.lib:exit.obj (.data:$O1$$)
             20001bd4  0000000c  iCall_API.obj (.data:$O17$$)
             20001be0  00000009  devinfoservice.obj (.data)
             20001be9  00000003  barometerservice.obj (.data)
             20001bec  00000008  iCall_cc260.obj (.data:$O16$$)
             20001bf4  00000008  rtsv7M3_T_le_eabi.lib:_lock.obj (.data:$O30$$)
             20001bfc  00000008  sensortag_io.obj (.data:$O5$$)
             20001c04  00000008  app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module_root__V)
             20001c0c  00000008  app_ble_pem3.oem3 (.data:ti_sysbios_gates_GateHwi_Module_root__V)
             20001c14  00000008  app_ble_pem3.oem3 (.data:ti_sysbios_gates_GateMutex_Module_root__V)
             20001c1c  00000008  app_ble_pem3.oem3 (.data:ti_sysbios_hal_hwi_Module_root__V)
             20001c24  00000008  app_ble_pem3.oem3 (.data:ti_sysbios_ch堆_HeapMem_Module_root__V)
             20001c2c  00000008  app_ble_pem3.oem3 (.data:ti_sysbios_KNL_Clock_Module_root__V)
             20001c34  00000008  app_ble_pem3.oem3 (.data:ti_sysbios_KNL_Mailbox_Module_root__V)
             20001c3c  00000008  app_ble_pem3.oem3 (.data:ti_sysbios_KNL_Queue_Module_root__V)
             20001c44  00000008  app_ble_pem3.oem3 (.data:ti_sysbios_KNL_semaphore_Module_root__V)
             20001c4c  00000008  app_ble_pem3.oem3 (.data:ti_sysbios_KNL_Swi_Module_root__V)
             20001c54  00000008  app_ble_pem3.oem3 (.data:ti_sysbios_KNL_Task_Module_root__V)
             20001c5c  00000004  ble_user_config.obj (.data)
             20001c60  00000004  drivers_cc26xxware.aem3:NVS.oem3 (.data)
             20001c64  00000004               :uart.oem3 (.data)
             20001c68  00000004               :Watchdog.oem3 (.data)
             20001c6c  00000004  rtsv7M3_T_le_eabi.lib:stkdepte_vars.obj (.data)
             20001c70  00000004  app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext)
             20001c74  00000004  app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module_State_0_exstack_A)
             20001c78  00000004  app_ble_pem3.oem3 (.data:ti_SysBIOS_KNL_Task_Module_State_0_idleTask_A)
             20001c7c  00000003  humidityservice.obj (.data)
             20001c7f  00000003  irtempservice.obj (.data)
             20001c82  00000003  registerservice.obj (.data)
             20001c85  00000002  iosservice.obj (.data)
             20001c87  00000001  TRNGCC26XX.obj (.data)
             20001c88  00000002  app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module_State_0_exACTIVE_A)
    .bss   0  20001c90  0000230b  未初始化
             20001c90  00001000  (.common:myCopyBlock)
             20002c90  00000680  (.common:ti_sysbios_堆_HeapMem_instance_State_0_buf__a)
             20003310  00000320  sensortag_bar.obj (.bss:$O3$$)
             20003630  000002f8  sensortag_hum.obj (.bss:$O4$$)
             20003928  00000200  app_ble_pem3.oem3 (.bss:taskStackSection)
             20003b28  00000114  (.common:uartCC26XX 对象)
             20003c3c  00000110  PINCC26XX.obj (.bss:$O11$)
             20003d4c  000000e0  (.common:i2cCC26xx 对象)
             20003e2c  000000c8  (.common:ti_sysbios_family_arm_m3/hwi_de调度 表)
             20003ef4  00000028  (.common:watchdogCC26XX 对象)
             200031c  00000024  sensor_publish.obj (.bss:publishClock0)
             20003f40  0000001c  (.common:writeSem)
             20003f5c  00000014  driverlib.lib:osc.obj (.bss:oscHfGlobals 63美元)
             20003f70  0000000e  (.common:zanConfig_active)
             20003f7e  00000002  sensortag_bar.obj (.bss)
             20003f80  00000008  RFCC26XX_singlemode.obj (.bss)
             20003f88  00000008  driverlib.lib:sys_ctrl.obj (.bss:powerGlobQualals 66美元)
             20003f90  00000004  (.common:nvsCC26xx 对象)
             20003f94  00000004  (.common:trngCC26XX 对象)
             20003f98  00000001  (.common:driverlib_release_0_46593)
             20003f99  00000001  (.common:uartRxPowerConstraint)
             20003f9a  00000001  (.common:uartTxPowerConstraint)
    .vtable  0  20003f9b  00000000  未初始化
    .vtable_ram  
    *      0  20003f9b  00000000  未初始化
    VTABLE RAM  
    *      0  20003f9b  00000000  未初始化
    .sysmem  0  20003f9b  00000000  未初始化
    .nonretenvar  
    *      0  20003f9b  00000000  未初始化
    .stack  0  20004028  00000400  未初始化
             20004028  00000400  --孔--
    引导矢量  
    *      0  00000000  00000008  DSECT
             00000000  00000008  boot.aem3:boot.oem3 (.bootVecs)
    xdc.meta 0  00000000  00000104  复制段
             00000000  00000104  APP_BLE_Pem3.oem3 (XDC.meta)
    xdc.noload  
    *      0  00000000  00000000  复制段
    模块总结
        模块               代码  ro 数据 RW 数据
        ----               ------    ----
      应用程序\
        sensortag.obj           2738  80    1108   
        sensortag_bar.obj         3080  2.     802.   
        sensortag_hum.obj         1076  0     760   
        Water 容性.obj        1460 0       288   
        sensortag_tmp.obj         172 0       728.   
        UART_logs.obj           12 0        824)   
        sensor_publish.obj         444 0       36.    
        sensortag_register.obj       404  0     48    
        sensortag_io.obj          340 0       8.    
        Util.obj              314 0       0    
        ZAN_CONFIG.obj           64   14    0    
      +-++---------------- +--- +--- +--- +
        总计:               10104 96    4602   
                                      
      ..\Drivers\I2C_
        I2CCC26XX.obj           4848  32    0    
        I2C.obj              126  16    4.    
      +-++---------------- +--- +--- +--- +
        总计:               4974  48    4.    
                                      
      ..\Drivers\PIN\
        PINCC26XX.obj           1256  0     272.   
      +-++---------------- +--- +--- +--- +
        总计:               1256  0     272.   
                                      
      ..\Drivers\RF\
        RFCC26XX_singlemode.obj      4584  20    568   
      +-++---------------- +--- +--- +--- +
        总计:               4584  20    568   
                                      
      ..\Drivers\TRNG\
        TRNGCC26XX.obj           270 0       1    
      +-++---------------- +--- +--- +--- +
        总计:               270 0       1    
                                      
      ..\ICallBLE\
        iCall_API.obj           2144  0     12.    
        BLE_USER_CONFIG.obj        40   133   84.    
      +-++---------------- +--- +--- +--- +
        总计:               2184  133   96    
                                      
      .\iCall\
        iCall.obj             2604  204   268   
        iCall_cc265.obj          4664.       8.    
      +-++---------------- +--- +--- +--- +
        总计:               3070  208   276   
                                      
      配置文件\
        peripheral.obj           2330  0     796   
        devinfoservice.obj         392  40    477   
        registerservice.obj        524  84    147   
        ioservice.obj           446 68      94.    
        gattservapp_util.obj        476 0       0    
        barometerservice.obj        218 72      151.   
        irtempservice.obj         222  72    147.   
        humidityservice.obj        202  72    147.   
        GATT_uid.obj           0   44    0    
        ST_util.obj            44 0        0    
      +-++---------------- +--- +--- +--- +
        总计:               4854  4521959      
                                      
      ..\Startup\
        CC2650STK.obj           0   236 0       
        main.obj              62 0        48    
        ccfg_app_ble.obj          0   88    0    
      +-++---------------- +--- +--- +--- +
        总计:               62   324   48.    
                                      
      C:\Users\LEN\AppData\Local\Temp\
        069682               0   0 0     4659.   
      +-++---------------- +--- +--- +--- +
        总计:               0   0 0     4659.   
                                      
      C:\Users\LEN\Desktop\BLE_Firmware_Latest - NewWashcount_Cap\bleV2_app\FlashROM\configPkg\package\ccfg\
        app_ble_pem3.oem3.         416  1477   3366   
      +-++---------------- +--- +--- +--- +
        总计:               416  1477   3366   
                                      
      C:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/driverlib/bin/ccs/driverlib.lib
        setup.obj             1666  0     0    
        SYS_CTRL.obj            736 0       8.    
        OSC.obj              468 0       20.    
        AUX_ADC.obj            324 0       0    
        chipinfo.obj            228 0       0    
        DDI.obj              188 0       0    
        RFC.obj              164 0       0    
        AdI.obj              84 0        0    
        flash.obj             56 0        0    
        Trng.obj              48   0     0    
        AON_RTC.obj            44 0        0    
        Aon_batmon.obj           40 0        0    
        cpu.obj              30 0        0    
        VIMS.obj              14 0        0    
      +-++---------------- +--- +--- +--- +
        总计:               4090  0     28.    
                                      
      C:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/tidrivers_cc13xx_cc26xx_2_20_01_10/packages/ti/drivers/lib/drivers_cc26xxware.aem3
        UARTCC26XX.oem3.          2472  104   2.    
        PowerCC26XX.oem3.          2168  76    272.   
        PowerCC26XX_calibrateRCOSC.oem3 1400  0     0    
        NVSCC26XX.oem3.           828  32    28.    
        WatchdogCC26XX.oem3.        318  28    0    
        UART.oem3             138  36    4.    
        安全装置.oem3           150  12    4.    
        NVS.oem3.              128 1.       4.    
        list.oem3.             82 0        0    
      +-++---------------- +--- +--- +--- +
        总计:               7684  289   314   
                                      
      C:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/tidrivers_cc13xx_cc26xx_2_20_01_10/packages/ti/drivers/lib/power_cc26xx_tirtos.aem3
        PowerCC26XX_tirtos.oem3.      188 0       0    
      +-++---------------- +--- +--- +--- +
        总计:               188 0       0    
                                      
      C:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/tidrivers_cc13xx_cc26xx_2_20_01_10/packages/ti/drivers/ports/lib/tirtosport.aem3
        Hwip_tirtos.oem3.          4 0        0    
      +-++---------------- +--- +--- +--- +
        总计:               4 0        0    
                                      
      C:\ti\ccsv6\tools\compiler\arm_15.12.3.LTS \lib\rtsv7M3_T_le_eabi.lib
        UL_div_t2.obj           500 0       0    
        fd_div_t2.obj           310 0       0    
        FS_ADD_T2.obj           250 0       0    
        memcpy_t2.obj           156 0       0    
        fs_div_t2.obj           146 0       0    
        FD_CMP_T2.obj           134 0       0    
        fs_mul_t2.obj           122 0       0    
        memset_t2.obj           122 0       0    
        copy_decompress_rle.obj      112 0       0    
        exit.obj              84 0        12.    
        FS_CMP_T2.obj           96 0        0    
        cpy_tbl.obj            76 0        0    
        FD_TO_T2.obj           68   0     0    
        fs_toi_t2.obj           56 0        0    
        FS_TO_T2.obj           52 0        0    
        I_tofd_t2.obj           46 0        0    
        U_tofs_t2.obj           36 0        0    
        memcmp.obj             34 0        0    
        U_tofd_t2.obj           32 0        0    
        _lock.obj             20 0        8.    
        args_main.obj           24 0        0    
        LL_mul_t2.obj           24 0        0    
        strlen.obj             20 0        0    
        copy_decompress_none.obj      14 0        0    
        stkdept_vars.obj         0   0 0     4.    
      +-++---------------- +--- +--- +--- +
        总计:               2534  0     24    
                                      
      C:\ti\simplelink\ble_sdk_2_02_01_18\examples\cc2650stk\sensortag\ccs\config\src\SysBIOS\rom_SysBIOS.aem3
        ROM_SYSBIOS.obj          874 0       0    
        ROM_SYSBIOS_CONFIG.obj       12 0        0    
      +-++---------------- +--- +--- +--- +
        总计:               886  0     0    
                                      
      C:\ti_tirtos_cc13xx_cc26xx_2_20_01_08\products\BIOS_6_46_01_38\packages/ti\targets\arm\rtsarm\lib\auto_init.aem3
        AUTO_INIT.oem3           160 0       0    
      +-++---------------- +--- +--- +--- +
        总计:               160 0       0    
                                      
      C:\ti_tirtos_cc13xx_cc26xx_2_20_01_08\products\BIOS_6_46_01_38\packages/ti\targets\arm\rtsarm\lib\boot.aem3
        boot.oem3.             68   0     0    
      +-++---------------- +--- +--- +--- +
        总计:               68   0     0    
                                      
        堆栈:               0   0 0     1024   
        链接器生成:         496  2231   0    
      +-++---------------- +--- +--- +--- +
        总计:            47884 5278   17241  
    链接器生成的复制表
    _TI_cinit_table @ 0000cf34记录:12、大小/记录:8、表大小:96
    .data:load addr=0000c6a8、load size=00000768字节、run addr=20000208、run size=00001a82字节、compression=rle
    .data:ti_sysbios_family_arm_m3/Hwi_Module_state__V:load addr=0000ce10、load size=0000002d 字节、run addr=20000144、run size=00000034字节、compression=rle
    .data:ti_SysBIOS_KNL_Task_Module_state___V:load addr=0000ce40、load size=0000002c 字节、run addr=20000100、run size=00000044字节、compression=rle
    .data:ti_SysBIOS_KNL_Clock_Module_state__V:load addr=0000ce70、load size=00000021字节、run addr=20000178、run size=0000002c 字节、compression=rle
    .data:ti_sysbios_BIOS_Module_state__V:load addr=0000ce98、load size=0000001f 字节、run addr=200001a4、run size=00000024字节、compression=rle
    .data:ti_SYSBIOS_KNL_Swi_Module_State__V:load addr=0000ceb8、load size=00000011字节、run addr=200001c8、run size=0000001c 字节、compression=rle
    .data:ti_sysbios_family_arm_cc26xx_Timer_Module_state__V:load addr=0000ced0、load size=0000000d 字节、run addr=200001e4、run size=00000008字节、compression=rle
    .bss:load addr=0000ce0、load size=0000000b 字节、run addr=20001c90、run size=0000230b 字节、compression=rle
    .data:xdc_runtime_Memory_Module_state___V:load addr=0000cef0、load size=0000000a 字节、run addr=20000200、run size=00000004字节、compression=rle
    .data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_state____V:load addr=0000cf00、load size=00000009字节、run addr=200001ec、run size=00000004字节、compression=rle
    .data:xdc_runtime_Startup_Module_state___V:load addr=000010、load size=00000009字节、run addr=200001f0、run size=00000008字节、compression=rle
    .data:xdc_runtime_System_Module_state___V:load addr=0000cf20、load size=00000009字节、run addr=200001f8、run size=00000008字节、compression=rle
    链接器生成的处理程序表
    _TI_handler_table @ 0000cf2c 记录:2、大小/记录:4、表大小:8
    索引:0、处理程序:_TI_decompress_rle24
    索引:1、处理程序:_TI_decompress_none
    far 调用 trampoline
    被调用方名称        trampoline 名称
      被叫方 addr tramp addr 调用 addr 调用信息
    --------  ------  ------  --------
    xdc_runtime_Core_assignParams__i $Tramp$TT$L$PI$XDC_runtime Core_assignParams__i
      1001c5F1  0000be44  0000bcA0 rom_SysBIOS.aem3:rom_SysBIOS_config.obj (.text:ti_SysBIOS_hal_Hwi_Params__init__S)
    TI_SYSBIOS_hal_Hwi_enableInterrupt__E $Tramp$TT$L$PI$ti_SYSBIOS_hal_Hwi_enableInterrupt__E
      1001c285  0000be4c  0000bbe0 iCall.obj (.text:iCall_primEnableInt$21)
    TI_SYSBIOS_hal_Hwi_disableInterrupt__E $Tramp$TT$L$PI$ti_SYSBIOS_hal_Hwi_disableInterrupt__E
      1001c281  0000be54  0000bbd4 iCall.obj (.text:iCall_primDisableInt$21)
    TI_SYSBIOS_KNL_Task_ENABLE_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Task_ENABLE_E
      1001c243  0000be5c  0000babe iCall.obj (.text:iCall_primEnableMInt$21)
    TI_SYSBIOS_family_ARM_m3/Hwi_enableFxn_E $Tramp$TT$L$PI$ti_SYSBIOS_family_ARM_m3/Hwi_enableFxn_E
      1001c155  0000be64  0000baba iCall.obj (.text:iCall_primEnableMInt$21)
    xdc_runtime_Startup_startMods__i $Tramp$TT$L$PI$XDC_runtime 启动_startMods__i
      1001c30d  0000be6c  0000b916 app_ble_pem3.oem3 (.text:xdc_runtime_Startup_exec__i)
    TI_SYSBIOS_KNL_Clock_logTick__E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Clock_logTick__E
      1001be67  0000be74  0000b8c2 app_ble_pem3.oem3 (.text:ti_sysbios_KNL_Clock_dotick__i)
    TI_SYSBIOS_BIOS_rtsGateProxy_leave_E $Tramp$TT$L$PI$ti_SYSBIOS_BIOS_rtsGateProxy_leave_E
      1001c24d  0000be7c  0000b6c2 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsUnlock___i)
    TI_SYSBIOS_KNL_Queue_construct$Tramp$TT$L$PI$ti_SYSBIOS_KNL_Queue_construct  
      1001b8f5  0000be84  0000b5e6 util.obj (.text:Util_constructQueue)
    TI_SYSBIOS_KNL_Queue_get_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Queue_get_E
      1001bf11  0000be8c  0000b30c util.obj (.text:Util_dequeueMsg)
    TI_SYSBIOS_BIOS_rtsGateProxy_enter_E $Tramp$TT$L$PI$ti_SYSBIOS_BIOS_rtsGateProxy_enter_E
      1001c249  0000be94  0000af16 app_ble_pem3.oem3 (.text:ti_SysBIOS_BIOS_rtsLock___i)
    TI_SYSBIOS_BIOS_start__E $Tramp$TT$L$PI$ti_SYSBIOS_BIOS_Start_E
      1001c055  0000be9c  0000aa64 main.obj (.text:main)
    TI_SYSBIOS_KNL_Queue_Put_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Queue_Put _ E
      1001bf2d  0000bea4  0000a64c util.obj (.text:Util_enqueueMsg)
    TI_SYSBIOS_KNL_Task_STARTUP_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Task_START__E
      1001c309  0000beac  0000a1c4 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__i)
    TI_SYSBIOS_KNL_Swi_STARTUP_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Swi_START__E
      1001c23d  0000beb4  0000a1c0 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__i)
    TI_SYSBIOS_hal_Hwi_STARTUP_E $Tramp$TT$L$PI$ti_SYSBIOS_hal_Hwi_START__E
      1001c28d  0000bebc  0000a1bc app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__i)
    TI_SYSBIOS_family_ARM_cc26xx_Timer_STARTUP_E $Tramp$TT$L$PI$ti_SYSBIOS_family_ARM_cc26xx_Timer_START__E
      1001b795  0000bec4  0000a1b8 app_ble_pem3.oem3 (.text:ti_SYSBIOS_BIOS_startFunc__I)
    xdc_runtime_System_atexit__E $Tramp$TT$L$PI$XDC_runtime_System_atexit__E
      1001c681  0000becc  0000a1b0 app_ble_pem3.oem3 (.text:ti_SysBIOS_BIOS_startFunc__i)
    TI_SYSBIOS_BIOS_setThreadType__E $Tramp$TT$L$PI$ti_SYSBIOS_BIOS_setThreadType__E
      1001c045  0000bed4  0000a17c app_ble_pem3.oem3 (.text:ti_SysBIOS_BIOS_atExitFunc__i)
                   0000b774 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__i)
    TI_SYSBIOS_hal_Hwi_create $Tramp$TT$L$PI$ti_SYSBIOS_hal_Hwi_create
      1001ab79  0000bedc  00009ab8 iCall.obj (.text:iCall_primRegisterISR$21)
                   00009aec iCall.obj (.text:iCall_primRegisterISR_Ext$21)
    TI_SYSBIOS_KNL_Task_con构 $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Task_con构
      1001b125  0000bee4  00009172 peripheral.obj (.text:GAPRole_createTask)
                   00009454 sensortag_bar.obj (.text:SensorTagBar_createTask)
                   00009490 sensortag_hm.obj (.text:SensorTagHum_createTask)
                   000094cc sensortag.obj (.text:SensorTag_createTask)
    xdc_runtime_System_exit_E $Tramp$TT$L$PI$XDC_runtime System_exit__E
      1001c7d1  0000beec  00009020 boot.aem3:boot.oem3 (.text)
                   0000b77a app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__i)
    TI_SYSBIOS_KNL_Semaphore_create $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Semaphore_create
      1001b5ad  0000bef4  000088fc iCall.obj (.text:iCall_newtask$21)
    TI_SYSBIOS_KNL_Task_create $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Task_create
      1001ae19  0000befc  0000767c iCall.obj (.text:iCall_createRemoteTasks)
                   000090ea iCall.obj (.text:iCall_primCreateTask$21)
    TI_SYSBIOS_KNL_Task_Params__init_S $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Task_Params__init_S
      1001c1d9  0000bf04  0000765c iCall.obj (.text:iCall_createRemoteTasks)
                   000090d4 iCall.obj (.text:iCall_primCreateTask$21)
                   00009152 peripheral.obj (.text:GAPRole_createTask)
                   00009436 sensortag_bar.obj (.text:SensorTagBar_createTask)
                   00009472 sensortag_hm.obj (.text:SensorTagHum_createTask)
                   000094ae sensortag.obj (.text:SensorTag_createTask)
    TI_SYSBIOS_KNL_Clock_析 构 $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Clock_析 构
      1001c2b9  0000bf0c  00007140 drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_Close)
    TI_SYSBIOS_KNL_Clock_create $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Clock_create
      1001b3ed  0000bf14  00006cae iCall.obj (.text:iCall_primSetTimer$21)
    TI_SYSBIOS_KNL_Clock_scheduleNextTick__E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Clock_scheduleNextTick__E
      1001bebd  0000bf1c  00006422 rom_SysBIOS.aem3:rom_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_workFuncDynamic__E)
    TI_SYSBIOS_KNL_Clock_WalkQueueDynamic__E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Clock_WalkQueueDynamic__E
      1001a80d  0000bf24  000063ea ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_workFuncDynamic__E)
                   00006406           :rom_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_workFuncDynamic__E)
    TI_SYSBIOS_KNL_Clock_TimerProxy_getCurrentTick__E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_TimerProx_getCurrentTick__E
      1001c095  0000bf2c  000063b8 rom_SysBIOS.aem3:rom_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_workFuncDynamic__E)
                   0000a596           :rom_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_getTicksUntilInterrupt__E)
    TI_SYSBIOS_KNL_Queue_enqueue__E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Queue_enqueue_E
      1001c1b5  0000bf34  00006064 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_KNL_Task_setPri__E)
                   0000be40           :rom_SysBIOS.obj (.text:ti_SysBIOS_KNL_Queue_insert__E)
    TI_SYSBIOS_KNL_Queue_remove__E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Queue_remove__E
      1001c121  0000bf3c  00006046 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_KNL_Task_setPri__E)
    TI_SYSBIOS_getCpuFreq_E $Tramp$TT$L$PI$ti_SYSBIOS_BIOS_getCpuFreq__E
      1001bff9  0000bf44  000057ac drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_initHw)
                   00008c24 I2CCC26XX.obj (.text:I2CCC26XX_initHw$14)
                   0000a9aa drivers_cc26xxware.aem3:WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_convertMsToTicks)
    TI_SYSBIOS_KNL_Semaphore_析 构 $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Semaphore_析 构
      1001c2e1  0000bf4c  00005524 I2CCC26XX.obj (.text:I2CCC26XX_Close)
                   00005530 I2CCC26XX.obj (.text:I2CCC26XX_Close)
                   0000712c drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_Close)
                   00007138              :UARTCC26XX.oem3 (.text:UARTCC26XX_Close)
    TI_SYSBIOS_KNL_Swi_析 构 $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Swi_析 构
      1001c2e9  0000bf54  0000551c I2CCC26XX.obj (.text:I2CCC26XX_Close)
                   00007120 drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_Close)
    TI_SYSBIOS_family_ARM_m3/Hwi_析 构 $Tramp$TT$L$PI$ti_SYSBIOS_family_ARM_m3/Hwi_析 构
      1001c261  0000bf5c  00005514 I2CCC26XX.obj (.text:I2CCC26XX_Close)
                   00007118 drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_Close)
    TI_SYSBIOS_KNL_Task_self_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Task_self_E
      1001c1e5  0000bf64  00004dd2 iCall.obj (.text:iCall_primWaitMatch 21美元)
                   00007d3c iCall.obj (.text:iCall_primEnroll$21)
                   00007fec iCall.obj (.text:iCall_primThreadServes 21美元)
                   000085b8 iCall.obj (.text:iCall_primWait$21)
                   000086fc iCall.obj (.text:iCall_primRegisterApp$21)
                   00008928 iCall.obj (.text:iCall_primGetEntityId$21)
                   00009a68 iCall.obj (.text:iCall_primFetchMsg$21)
    TI_SYSBIOS_KNL_Clock_getTicks__E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Clock_getTicks__E
      1001b6d9  0000bf6c  00004530 sensortag_bar.obj (.text:VL53L0X_getSpadInfo)
                   00004e1c iCall.obj (.text:iCall_primWaitMatch 21美元)
                   00004e86 iCall.obj (.text:iCall_primWaitMatch 21美元)
                   0000bad8 iCall.obj (.text:iCall_primGetTicks$21)
    TI_SYSBIOS_KNL_Queue_empty_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Queue_e_E
      1001c113  0000bf74  00003b50 sensortag.obj (.text:SensorTag_taskFxn-1)
                   0000604c rom_SysBIOS.aem3:rom_SysBIOS.obj (.text:ti_SysBIOS_KNL_Task_setPri__E)
    XDC_RAuntime_System_ABortSpin_E $Tramp$TT$L$PI$XDC_RAuntime_System_ABortSpin_E
      1001c899  0000bf7c  0000372a drivers_cc26xxware.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_doCalibrate)
                   00007dba              :PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_RCOSC_clockFunc)
    TI_SYSBIOS_KNL_Clock_con构 $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Clock_con构
      1001b579  0000bf84  00003616 drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                   00003f9e              :PowerCC26XX.oem3 (.text:Power_init)
                   00003接口              :PowerCC26XX.oem3 (.text:Power_init)
                   00003fba              :PowerCC26XX.oem3 (.text:Power_init)
                   00005130 RFCC26XX_singlemode.obj (.text:rf_init$16)
                   00005b20 RFCC26XX_singlemode.obj (.text:rf_open)
                   000077d0 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
                   00008a92 util.obj (.text:Util_constructClock)
    TI_SYSBIOS_KNL_Clock_Params__init_S $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Clock_Params__init_S
      1001c185  0000bf8c  000035fe drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                   00003f86              :PowerCC26XX.oem3 (.text:Power_init)
                   00005b10 RFCC26XX_singlemode.obj (.text:rf_open)
                   00006c9a iCall.obj (.text:iCall_primSetTimer$21)
                   000077b8 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
                   00008a6a util.obj (.text:Util_constructClock)
    TI_SYSBIOS_KNL_Semaphore_con构 $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Semaphore_con构
      1001b709  0000bf94  000028f6 I2CCC26XX.obj (.text:I2CCC26XX_open)
                   00002906 I2CCC26XX.obj (.text:I2CCC26XX_open)
                   00003094 PINCC26XX.obj (.text:PIN_init)
                   000035da drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                   000035              :UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                   00005912 sensortag_hm.obj (.text:pression_sensor_reading)
                   00005b04 RFCC26XX_singlemode.obj (.text:rf_open)
                   00007e7c sensortag_bar.obj (.text:VL53L0XI2cInit)
                   0000b9d6 drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_init)
    TI_SYSBIOS_KNL_Semaphore_Params__init_S $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Semaphore_Params__init_S
      1001c1c1  0000bf9c  000028e6 I2CCC26XX.obj (.text:I2CCC26XX_open)
                   00003080 PINCC26XX.obj (.text:PIN_init)
                   000035c6 drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                   000058fc sensortag_hm.obj (.text:pression_sensor_reading)
                   00005af4 RFCC26XX_singlemode.obj (.text:rf_open)
                   00007e66 sensortag_bar.obj (.text:VL53L0XI2cInit)
    TI_SYSBIOS_KNL_Swi_con构 $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Swi_con构
      1001b085  0000bfa4  000028da I2CCC26XX.obj (.text:I2CCC26XX_open)
                   0000312a PINCC26XX.obj (.text:PIN_init)
                   000035ba drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                   000050bc RFCC26XX_singlemode.obj (.text:rf_init$16)
                   000050fe RFCC26XX_singlemode.obj (.text:rf_init$16)
    TI_SYSBIOS_KNL_Swi_Params__init_S $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Swi_Params__init_S
      1001c1cd  0000bfansc.000028c6   I2CCC26XX.obj (.text:I2CCC26XX_open)
                   00003118 PINCC26XX.obj (.text:PIN_init)
                   000035a4 drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                   000050a8 RFCC26XX_singlemode.obj (.text:rf_init$16)
                   000050ee RFCC26XX_singlemode.obj (.text:rf_init$16)
    TI_SYSBIOS_family_ARM_m3/Hwi_con构 $Tramp$TT$L$PI$ti_SYSBIOS_family_ARM_m3/Hwi_con构
      1001af29  0000bfbfb4  000028ba I2CCC26XX.obj (.text:I2CCC26XX_open)
                   0000310c PINCC26XX.obj (.text:PIN_init)
                   00003598 drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                   000050e2 RFCC26XX_singlemode.obj (.text:rf_init$16)
                   00005122 RFCC26XX_singlemode.obj (.text:rf_init$16)
                   00005936 sensortag_hm.obj (.text:pression_sensor_reading)
                   000077e0 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
                   00007fc6              :WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_open)
    TI_SYSBIOS_family_ARM_m3/Hwi_Params__init_S $Tramp$TT$L$PI$ti_SYSBIOS_family_ARM_m3/Hwi_Params__init_S
      1001c13d  0000bfbc  000028a2 I2CCC26XX.obj (.text:I2CCC26XX_open)
                   000030f6 PINCC26XX.obj (.text:PIN_init)
                   00003580 drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                   000050c8 RFCC26XX_singlemode.obj (.text:rf_init$16)
                   0000510a RFCC26XX_singlemode.obj (.text:rf_init$16)
                   00005920 sensortag_hm.obj (.text:pression_sensor_reading)
                   00007fb0 drivers_cc26xxware.aem3:WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_open)
    TI_SYSBIOS_KNL_Task_RESTORE_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Task_RESTORE_E
      1001ba49  0000bfc4  00002604 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_sleep)
                   00006092 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_KNL_Task_setPri__E)
                   0000769a iCall.obj (.text:iCall_createRemoteTasks)
                   0000b738 iCall.obj (.text:iCall_leaveCSImpl)
    TI_SYSBIOS_KNL_Swi_RESTORE_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Swi_RESTORE_E
      1001b5e1  0000bfcc  000025fa drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_sleep)
                   000032d6 RFCC26XX_singlemode.obj (.text:abortCmd$16)
                   00006d9c RFCC26XX_singlemode.obj (.text:rf_pendCmd)
                   00006dc8 RFCC26XX_singlemode.obj (.text:rf_pendCmd)
                   00006de4 RFCC26XX_singlemode.obj (.text:rf_pendCmd)
    TI_SYSBIOS_KNL_Swi_disable_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Swi_disable_E
      1001c0d5  0000bfd4  00002456 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_sleep)
                   000032b4 RFCC26XX_singlemode.obj (.text:abortCmd$16)
                   00006d8a RFCC26XX_singlemode.obj (.text:rf_pendCmd)
                   0000a172 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__i)
    TI_SYSBIOS_KNL_Task_disable_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Task_disable_E
      1001c0f5  0000bfdc  0000243e drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_sleep)
                   0000600c rom_SysBIOS.aem3:rom_SysBIOS.obj (.text:ti_SysBIOS_KNL_Task_setPri__E)
                   0000764e iCall.obj (.text:iCall_createRemoteTasks)
                   0000a176 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__i)
                   0000b2bc iCall.obj (.text:iCall_enterCSImpl)
                   0000baac iCall.obj (.text:iCall_primDisableMInt$21)
    TI_SYSBIOS_KNL_Semaphore_post__E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Semaphore_post__E
      1001ac41  0000bfe4  00001edc I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                   0000337A drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_write)
                   000034ac              :NVSCC26XX.oem3 (.text:NVSCC26XX_WRITE)
                   00004ea4 iCall.obj (.text:iCall_primWaitMatch 21美元)
                   000062fa PINCC26XX.obj (.text:PIN_OPEN)
                   00006550 drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_open)
                   000066ce I2CCC26XX.obj (.text:I2CCC26XX_blockingCallback$14)
                   00007236 iCall.obj (.text:iCall_primSend$21)
                   00007b00 RFCC26XX_singlemode.obj (.text:fsmPowerDownState_16)
                   00008880 RFCC26XX_singlemode.obj (.text:syncd$16)
                   00008f1a drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_read)
                   0000a654 util.obj (.text:Util_enqueueMsg)
                   0000aec2 sensortag_hum.obj (.text:adcIsr)
                   0000b61a peripheral.obj (.text:gapRole_setEvent$36)
                   0000b818 sensortag.obj (.text:SensorTag_clockHandler-1)
                   0000bbf8 iCall.obj (.text:iCall_primSignal$21)
                   0000bc7a sensortag_bar.obj (.text:VL53L0XI2cDeselect)
                   0000bd60 drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:readSemCallback)
                   0000bd78              :UARTCC26XX.oem3 (.text:writeSemCallback)
    TI_SYSBIOS_family_ARM_m3/Hwi_enableInterrupt_E $Tramp$TT$L$PI$ti_SYSBIOS_family_ARM_m3/Hwi_enableInterrupt_E
      1001b2dd  0000bfec  00001da6 I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                   000058c2 RFCC26XX_singlemode.obj (.text:fsmPowerUpState_16美元)
    TI_SYSBIOS_family_ARM_m3/Hwi_DisableInterrupt_E $Tramp$TT$L$PI$ti_SYSBIOS_family_ARM_m3/Hwi_DisableInterrupt_E
      1001b299  0000bff4  00001d96 I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    TI_SYSBIOS_KNL_Semaphore_Pend__E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Semaphore_Pend__E
      1001a0cd  0000bffc  00001d90 I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                   00001e0a I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                   0000335A drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_write)
                   00004a52.              :UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                   00004a8e              :UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                   00004d1e sensortag_hum.obj (.text:sensorTaskFxn$4)
                   00004e30 iCall.obj (.text:iCall_primWaitMatch 21美元)
                   0000595a sensortag_hm.obj (.text:pression_sensor_reading)
                   00005c68 drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                   00006288 PINCC26XX.obj (.text:PIN_OPEN)
                   000064e6 drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_open)
                   00006dd4 RFCC26XX_singlemode.obj (.text:rf_pendCmd)
                   00007462 drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:writeTxFifoFlush)
                   000085f8 iCall.obj (.text:iCall_primWait$21)
                   00008f08 drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_read)
    TI_SYSBIOS_KNL_Clock_start_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Clock_start_E
      1001bfe3  0000c004  0000170c RFCC26XX_singlemode.obj (.text:fsmActiveState_16美元)
                   000037a8 drivers_cc26xxware.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_doCalibrate)
                   000038d8 RFCC26XX_singlemode.obj (.text:rf_postCmd)
                   00004038 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_init)
                   00005b78 power_cc26xx_tirtos.aem3:PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
                   000065e2 drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:writeFinishedDoCallback)
                   0000676e              :PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                   00006cf2 iCall.obj (.text:iCall_primSetTimer$21)
                   00006f3c drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
                   00007bd0 Water 容性.obj (.text:PeopleCount_ClockHandler$10)
                   0000818e RFCC26XX_singlemode.obj (.text:decActiveClientCnt$16)
                   0000844e drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:configureXOSCHF)
                   00008494 RFCC26XX_singlemode.obj (.text:fsmXOSCState_16)
                   00008bc0 drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:startTxFifoEmptyClk)
                   000097fc util.obj (.text:Util_restartClock)
                   0000a0a2 water_capature.obj (.text:read_Watercap_Sensor$10)
                   0000af42 rom_SysBIOS.aem3:rom_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_stop__E)
                   0000bc70 util.obj (.text:Util_startClock)
    TI_SYSBIOS_KNL_Clock_setTimeout__E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Clock_setTimeout__E
      1001c2c1  0000c00c  00001704 RFCC26XX_singlemode.obj (.text:fsmActiveState_16美元)
                   000038d0 RFCC26XX_singlemode.obj (.text:rf_postCmd)
                   00004032 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_init)
                   00005b72 power_cc26xx_tirtos.aem3:PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
                   000065dc drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:writeFinishedDoCallback)
                   00006768              :PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                   00006cec iCall.obj (.text:iCall_primSetTimer$21)
                   00006f36 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
                   00008188 RFCC26XX_singlemode.obj (.text:decActiveClientCnt$16)
                   00008448 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:configureXOSCHF)
                   0000848e RFCC26XX_singlemode.obj (.text:fsmXOSCState_16)
                   00008bba drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:startTxFifoEmptyClk)
                   000097f6 util.obj (.text:Util_restartClock)
    TI_SYSBIOS_family_ARM_m3/Hwi_restoreFxn_E $Tramp$TT$L$PI$ti_SYSBIOS_family_ARM_m3/Hwi_restoreFxn_E
      1001c219  0000c014  000016ce RFCC26XX_singlemode.obj (.text:fsmActiveState$16)
                   00001742 RFCC26XX_singlemode.obj (.text:fsmActiveState$16)
                   00001d6a I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                   00001d7c I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                   00002864 I2CCC26XX.obj (.text:I2CCC26XX_open)
                   00002872 I2CCC26XX.obj (.text:I2CCC26XX_open)
                   000031e8 RFCC26XX_singlemode.obj (.text:abortCmd$16)
                   00003210 RFCC26XX_singlemode.obj (.text:abortCmd$16)
                   00003244 RFCC26XX_singlemode.obj (.text:abortCmd$16)
                   000032c8 RFCC26XX_singlemode.obj (.text:abortCmd$16)
                   000032f8 RFCC26XX_singlemode.obj (.text:abortCmd$16)
                   000034da drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                   000034 ea              :UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                   00003570              :UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                   00003880 RFCC26XX_singlemode.obj (.text:rf_postCmd)
                   000038b2 RFCC26XX_singlemode.obj (.text:rf_postCmd)
                   0000391e RFCC26XX_singlemode.obj (.text:rf_postCmd)
                   00004a0a drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                   00004a26              :UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                   00004ac4              :UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                   000054d6              :PowerCC26XX.oem3 (.text:Power_releaseDependency)
                   00005544 I2CCC26XX.obj (.text:I2CCC26XX_Close)
                   00005676 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_setDependency)
                   00005a02 RFCC26XX_singlemode.obj (.text:swifxnHw$16)
                   00005a20 RFCC26XX_singlemode.obj (.text:swifxnHw$16)
                   00005aac RFCC26XX_singlemode.obj (.text:rf_open)
                   00005aba RFCC26XX_singlemode.obj (.text:rf_open)
                   00005c0c drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                   00005c24              :UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                   00005c40              :UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                   00005c8e              :UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                   00005d48 PINCC26XX.obj (.text:PINCC26XX_setIoCfg$15)
                   0000659a drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:writeFinishedDoCallback)
                   00006796              :PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                   000068de              :UARTCC26XX.oem3 (.text:UARTCC26XX_writeCancel)
                   000068 ea              :UARTCC26XX.oem3 (.text:UARTCC26XX_writeCancel)
                   0000692c              :UARTCC26XX.oem3 (.text:UARTCC26XX_writeCancel)
                   000069c8 I2CCC26XX.obj (.text:I2CCC26XX_cancel)
                   00006d6a TRNGCC26XX.obj (.text:TRNGCC26XX_getNumber)
                   0000714c drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_Close)
                   00007516              :UARTCC26XX.oem3 (.text:UARTCC26XX_readCancel)
                   00007544              :UARTCC26XX.oem3 (.text:UARTCC26XX_readCancel)
                   00007560              :UARTCC26XX.oem3 (.text:UARTCC26XX_readCancel)
                   00007aca              :WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_initHw)
                   00007e0a RFCC26XX_singlemode.obj (.text:rf_getCurrentTime)
                   00007e12 RFCC26XX_singlemode.obj (.text:rf_getCurrentTime)
                   00007f90 drivers_cc26xxware.aem3:WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_open)
                   00007f9c              :WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_open)
                   00008194 RFCC26XX_singlemode.obj (.text:decActiveClientCnt$16)
                   00008332 drivers_cc26xxware.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
                   000083a0              :UARTCC26XX.oem3 (.text:UARTCC26XX_control)
                   00008552 RFCC26XX_singlemode.obj (.text:ratChanFre$16)
                   000087da RFCC26XX_singlemode.obj (.text:rf_getinfo)
                   00008a2a drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_swiIntFxn)
                   00008f5a PINCC26XX.obj (.text:PIN_setOutputEnable)
                   000091e4 RFCC26XX_Singlemode.obj (.text:rf_getRssi)
                   000095ac RFCC26XX_singlemode.obj (.text:postDirImmCmCmd $16)
                   000095c0 RFCC26XX_singlemode.obj (.text:postDirImmCmd$16)
                   00009bf4 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
                   00009c30 RFCC26XX_singlemode.obj (.text:Q_push$16)
                   0000a044 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_releaseConstraint)
                   0000a074              :PowerCC26XX.oem3 (.text:Power_setConstraint)
                   0000a12c              :WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_setReload)
                   0000a882              :PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
                   0000a96e TRNGCC26XX.obj (.text:TRNGCC26XX_init)
                   0000aab4 drivers_cc26xxware.aem3:List.oem3 (.text:List_Put)
                   0000ae84              :PowerCC26XX.oem3 (.text:Power_unregisterNotify)
                   0000b1ce TRNGCC26XX.obj (.text:TRNGCC26XX_open)
                   0000b58c RFCC26XX_singlemode.obj (.text:Q_pop$16)
                   0000b730 iCall.obj (.text:iCall_leaveCSImpl)
    TI_SYSBIOS_family_ARM_m3/Hwi_disableFxn_E $Tramp$TT$L$PI$ti_SYSBIOS_family_ARM_m3/Hwi_disableFxn_E
      1001c149  0000c01c  000016a8 RFCC26XX_singlemode.obj (.text:fsmActiveState_16美元)
                   0000172e RFCC26XX_singlemode.obj (.text:fsmActiveState$16)
                   00001d56 I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                   00002858 I2CCC26XX.obj (.text:I2CCC26XX_open)
                   00003188 RFCC26XX_singlemode.obj (.text:abortCmd$16)
                   000034d0 drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                   0000356A              :UARTCC26XX.oem3 (.text:UARTCC26XX_open)
                   000037dc RFCC26XX_singlemode.obj (.text:rf_postCmd)
                   00003894 RFCC26XX_singlemode.obj (.text:rf_postCmd)
                   000049ec drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                   00004a0e              :UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                   00004a66              :UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                   00004ab0              :UARTCC26XX.oem3 (.text:UARTCC26XX_write)
                   00005422              :PowerCC26XX.oem3 (.text:Power_releaseDependency)
                   0000553c I2CCC26XX.obj (.text:I2CCC26XX_Close)
                   000055c6 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_setDependency)
                   000059b2 RFCC26XX_singlemode.obj (.text:swifxnHw$16)
                   00005aa4 RFCC26XX_singlemode.obj (.text:rf_open)
                   00005bfc drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                   00005c28              :UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                   00005c7a              :UARTCC26XX.oem3 (.text:UARTCC26XX_read)
                   00005d28 PINCC26XX.obj (.text:PINCC26XX_setIoCfg$15)
                   00006582 drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:writeFinishedDoCallback)
                   00006720              :PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
                   000068ce              :UARTCC26XX.oem3 (.text:UARTCC26XX_writeCancel)
                   00006916              :UARTCC26XX.oem3 (.text:UARTCC26XX_writeCancel)
                   00006960 I2CCC26XX.obj (.text:I2CCC26XX_cancel)
                   00006d06 TRNGCC26XX.obj (.text:TRNGCC26XX_getNumber)
                   00007144 drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_Close)
                   0000750a              :UARTCC26XX.oem3 (.text:UARTCC26XX_readCancel)
                   0000752e              :UARTCC26XX.oem3 (.text:UARTCC26XX_readCancel)
                   00007a86              :WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_initHw)
                   00007dfa RFCC26XX_singlemode.obj (.text:rf_getCurrentTime)
                   00007f86 drivers_cc26xxware.aem3:WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_open)
                   0000814c RFCC26XX_singlemode.obj (.text:decActiveClientCnt$16)
                   0000831e drivers_cc26xxware.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
                   00008382              :UARTCC26XX.oem3 (.text:UARTCC26XX_control)
                   00008510 RFCC26XX_singlemode.obj (.text:ratChanFre$16)
                   0000879e RFCC26XX_singlemode.obj (.text:rf_getinfo)
                   00008a12 drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_swiIntFxn)
                   00008f46 PINCC26XX.obj (.text:PIN_setOutputEnable)
                   000091d4 RFCC26XX_Singlemode.obj (.text:rf_getRssi)
                   00009594 RFCC26XX_singlemode.obj (.text:postDirImmCmCmd 16)
                   00009bd2 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
                   00009c12 RFCC26XX_singlemode.obj (.text:Q_push$16)
                   00009c1a RFCC26XX_singlemode.obj (.text:Q_push$16)
                   0000a024 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_releaseConstraint)
                   0000a054              :PowerCC26XX.oem3 (.text:Power_setConstraint)
                   0000a114              :WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_setReload)
                   0000a866              :PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
                   0000a956 TRNGCC26XX.obj (.text:TRNGCC26XX_init)
                   0000ae74 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_unregisterNotify)
                   0000b1c2 TRNGCC26XX.obj (.text:TRNGCC26XX_open)
                   0000b2c6 iCall.obj (.text:iCall_enterCSImpl)
                   0000b580 RFCC26XX_singlemode.obj (.text:Q_pop$16)
                   0000Bab0 iCall.obj (.text:iCall_primDisableMInt$21)
                   0000be18 tirtosport.aem3:hwip_tirtos.oem3 (.text:Hwip_disable)
    TI_SYSBIOS_KNL_Task_sleep_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Task_sleep_E
      1001a96d  0000c024  00000cee sensortag.obj (.text:SensorTag_init1)
                   0000409c sensortag_bar.obj (.text:Range_Sensor_Read)
                   000045fe sensortag_bar.obj (.text:sensorTaskFxn$2)
                   00004630 sensortag_bar.obj (.text:sensorTaskFxn$2)
                   000046a8 sensortag_bar.obj (.text:sensorTaskFxn$2)
                   00004d04 sensortag_hum.obj (.text:sensorTaskFxn$4)
                   00004da6 sensortag_hum.obj (.text:sensorTaskFxn$4)
                   00004ff2 sensortag_bar.obj (.text:VL53L0X_readRangeSingleMillinglemis)
                   00008fd0 sensortag_io.obj (.text:SensorTagIO_blinkLed)
                   00008fe0 sensortag_io.obj (.text:SensorTagIO_BlinkLed)
    TI_SYSBIOS_KNL_Swi_POST_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Swi_POST_E
      1001b321  0000c02c  00000638 I2CCC26XX.obj (.text:I2CCC26XX_hwiFxn$14)
                   00000a02 I2CCC26XX.obj (.text:I2CCC26XX_hwiFxn$14)
                   00001ed6 I2CCC26XX.obj (.text:I2CCC26XX_transfer)
                   00002ece I2CCC26XX.obj (.text:I2CCC26XX_swifxn$14)
                   00004f16 drivers_cc26xxware.aem3:UARTCC26XX.oem3 (.text:UARTCC26XX_hwiIntFxn)
                   0000b6e0 rom_SysBIOS.aem3:rom_SysBIOS.obj (.text:ti_SysBIOS_KNL_Swi_or__E)
                   0000b8ca app_ble_pem3.oem3 (.text:ti_sysbios_KNL_Clock_doTick__i)
    [62个蹦床]
    [358个 trampoline 调用]
    全局符号:按名称按字母顺序排序  
    地址名称                                     
    ----  ----                                    
    10014c00 a1_rw                                    
    10019ffe A2_RW                                    
    10019ffc A3_RW                                    
    20004f2c A4_rw                                    
    20004f7c ACCX                                    
    20004f80 ACCY                                    
    20004f84 ACCZ                                    
    10015229 ATOMICPATTERNS                                
    0000acd1 ADC_Init                                  
    10016c29 AddRoundKeySubBytes_SW                           
    10018a19 AesCM_authEncrypt 软件                            
    10018a35 Aescm_decrittAuth 软件                            
    10018b09 AesCM_getNumBlocks_SW                           
    10018ac5 AES_Decrype_SW                               
    10018a99 AES_encrypt_SW                               
    0000b6fd AssertHandler                                
    0000aabd Barometer_getParameter                           
    000083bd Barometer_SetParameter                           
    0000c354 BoardGpioInitTable                             
    0000a375 Board_openUART                               
    00007571 Board_writeString                              
    000075dd Board_writeStringValue                           
    200013a0 Buffer_size                                 
    00008561 C$$EXIT                                   
    20004f2c common_RAM_base_ADDR                            
    10014c01 common_rom_base_ADDR                            
    10015a6d 副本                                    
    00000501 DefaultAssertBack                             
    0000b781 DevInfo_AddService                             
    000067ad DevInfo_SetParameter                            
    10017959 ecc_allocworkzone                              
    10017961 ECC_setWin                                 
    10017969 ECDSA_SIGN                                 
    10017b01 ECDSA_verif                                 
    10015a11 EXPORTOPERAND                                
    20004f78 EXPW                                    
    20004f6c EXPX                                    
    20004f70 Expy                                    
    20004f74 EXPZ                                    
    10016f58 FFMult2.                                   
    10017058 FFMult3.                                   
    10016d05 FFMULT_SW                                  
    10018d6c Fill1.                                    
    20001396 Flash_variables_Count                            
    00009681 GAPBondMgr_LinkEst                             
    0000aae1 GAPBondMgr_LinkTerm                             
    0000a685 GAPBondMgr_Register                             
    000099c9 GAPBondMgr_SetParameter                           
    0000b931 GAPRole_GetParameter                            
    00009105 GAPRole_SendUpdateParam                           
    000021e1 GAPRole_SetParameter                            
    0000afc9 GAPRole_StartDevice                             
    0000b33d GAPRole_TerminateConnection                         
    00009145 GAPRole_createTask                             
    00008609 GAP_DeviceInit                               
    0000b941 GAP_EndDiscoverable                             
    00009285 GAP_GetParamValue                              
    0000bb89 GAP_MakeDiscoverable                            
    000099fd GAP_SetParamValue                              
    0000bb95 GAP_TerminateAuth                              
    00008e5d GAP_TerminateLinkReq                            
    00008659 GAP_UpdateAddisingData                          
    0000bba1 GAP_UpdateLinkParamReq                           
    0000b 错误 GAP_UpdateLinkParamReqReply                         
    000000fd GATTServApp_AddService                           
    0000b8e9 GATTServApp_FindAttr                            
    0000ad11 GATTServApp_InitCharCfg                           
    00008bd1 GATTServApp_ProcessCCCWriteReq                       
    0000643d GATTServApp_ProcessCharCfg                         
    0000b951 GATTServApp_ReadCharCfg                           
    000092c1 GATTServApp_RegisterService                         
    0000a6ad GATTServApp_WriteCharCfg                          
    0000ba81 GATT_Indication                               
    0000b2a1 GATT_Notification                              
    0000afe5 GATT_BM_alloc                                
    0000b001 GATT_BM_FREE                                
    10015141 GETBIT                                   
    10015155 GETDIGIT                                  
    100151a5 GETDIGITL2R                                 
    0000bd7d GGS_AddService                               
    0000bbb9 GGS_SetParameter                              
    0000a6d5 Get_Data_FAR_Flash                             
    200015e0 HEAPMGR_SIZE                                
    0000ad31 湿度_ getParameter                            
    000086a9 湿度_设置参数表                            
    0000be19 Hwip_disable                                
    UNDEFED Hwip_restore                                
    00006951 I2CCC26XX_CANCEL                              
    000054F1 I2CCC26XX_CLOSE                               
    0000bd83 I2CCC26XX_CONTROL                              
    0000c38c I2CCC26XX_fxnTable                             
    0000bccd I2CCC26XX_init                               
    00002849 I2CCC26XX_OPEN                               
    00001d35 I2CCC26XX_transfer                             
    0000b355 I2C_Params_init                               
    0000c3a4 I2C_CONFIG                                 
    0000c58c I2C_defaultParams                              
    000096b9 I2C_init                                  
    0000ab05 I2C_open                                  
    0000bcd7 I2C_transfer                                
    000092fd ICallPlatform_pwrConfigACAction                       
    0000b36d ICallPlatform_pwrDispense                          
    0000ba8f ICallPlatform_pwrGetTransitionState                     
    0000b961 ICallPlatform_pwrGetXOSCStartupTime                     
    0000ba9d ICallPlatform_pwrIsStableXOSCHF                       
    00009f01 ICallPlatform_pwrRegisterNotify                       
    0000b385 ICallPlatform_pwrRequire                          
    0000bce1 ICallPlatform_pwrSwitchXOSCHF                        
    00007165 ICallPlatform_pwrUpdActivityCounter                     
    00007649 iCall_createRemoteTasks                           
    200015bc iCall_dischemedis                              
    0000b2bb iCall_enterCSImpl                              
    200015c4 iCall_enterCriticalSection                         
    0000a3a1 iCall_freeImpl                               
    0000a3a1 iCall_heapFree                               
    000076b5 iCall_heapInit                               
    00006bf9 iCall_heapMalloc                              
    0000a6fd iCall_init                                 
    0000b729 iCall_leaveCSImpl                              
    200015c8 iCall_leaveCriticalSection                         
    0000bd89 iCall_mallocImpl                              
    00009b01 iCall_searchServiceEntity                          
    10015a35 IMPORTDATA                                 
    100159a9 IMPORTLENGTH                                
    100159ad IMPORTMODULUS                                
    100159d1 IMPORTOPERAND                                
    1001568d 反转                                   
    0000adF1 IRTemp_getParameter                             
    00007b49 IRTemp_SetParameter                             
    00008c65 Init_Capacitivesensor 系统                        
    20001394 Init_Clock_Count                              
    000046d9 Init_Peripherals                              
    000048e1 Init_clocksystem                              
    10016da1 InvAddRoundKey_SW                              
    10016ed5 InvMixColumns_SW                              
    10016dc9 InvRoundKey_SW                               
    10017264 InvSbox                                   
    10016ea1 InvShiftRows_SW                               
    10016e8d InvSubBytes_SW                               
    0000a7ed IO_addService                                
    0000b795 IO_getParameter                               
    0000b7a9 IO_registerAppCB                              
    00009b35 IO_SetParameter                               
    100154f5 JACADD                                   
    20004fe8 LEN                                     
    100158ac LUTC                                    
    100158DC LUTINCI                                   
    100158f4 LUTJ                                    
    1001588c LUTOPCODE                                  
    10015894 LUTOPSIN                                  
    100158c4 LUTSE                                    
    1001596c LUTSTATE                                  
    0000bcf5 List_empty                                 
    0000be1d List_head                                  
    0000be21 List_next                                  
    0000aa95 List_Put                                  
    0000b2ef List_remove                                 
    10018825 MB_ClearInts                                
    100187f5 MB_DisableInts                               
    10018835 MB_EnableHWInts                               
    10018799 MB_EnableInts                                
    10018945 MB_FwDebugDump                               
    10018755 MB_Init                                   
    10018935 MB_ReadMailboxStatus                            
    1001893d MB_RegisterIsrBack                             
    10018865 MB_SendCommand                               
    100188a5 MB_SendCommandSynch                             
    20004fe4 MOD                                     
    20004fd8 MSBMOD                                   
    10016c79 MixColumns_SW                                
    10018b9c NIST_Curve_P256_GX                             
    10018bc0 NIST_Curve_P256_Gy                             
    10018b54 NIST_Curve_P256_A                              
    10018b78 NIST_Curve_P256_b                              
    10018b0c NIST_Curve_P256_p                              
    10018b30 NIST_Curve_P256_r                              
    0000a815 NOROM_AONBatMonTemperatureGetDegC                      
    0000b7bd NOROM_AONRTCCurrent64BitValueGet                      
    0000b45d NOROM_AONRTCCurrentCompareValueGet                     
    000060a5 NOROM_AUXADCDisable                             
    000061dd NOROM_AUXADCableSync                           
    0000b991 NOROM_AUXADCReadFifo                            
    0000bc01 NOROM_CPUcpsid                               
    0000bc0d NOROM_CPUcpsie                               
    0000bd8f NOROM_CPUDELAY                               
    00008cad NOROM_ChipInfo_GetChipFamily                        
    00007491 NOROM_ChipInfo_GetHwRevision                        
    0000b475 NOROM_ChipInfo_GetPackageType                        
    00009185 NOROM_DDI16BitfieldRead                           
    00008cf5 NOROM_DDI16BitfieldWrite                          
    00009b69 NOROM_DDI32RegWrite                             
    0000b071 NOROM_FlashProgram                             
    0000b08d NOROM_FlashSecorErase                           
    0000b0a9 NOROM_OSCClockSourceGet                           
    00008971 NOROM_OSCClockSourceSet                           
    00008035 NOROM_OSCHF_AttempToSwitchToXosc                      
    000069d9 NOROM_OSCHF_GetStartupTime                         
    00009b9d NOROM_OSCHF_SwitchToRcOscTurnOffXosc                    
    0000b48d NOROM_OSCHF_TurnOnXosc                           
    00009339 NOROM_OSC_HPOSCRelativeOffsetGet                  
    0000b4a5 NOROM_RFCCpeIntGetAndClear                         
    0000ae11 NOROM_RFCDoorbellSendto                           
    0000ae31 NOROM_RFCRfTrimRead                             
    0000b9a1 NOROM_RFCRfTrimSet                             
    00009375 NOROM_RFCSynthPowerDown                           
    00007075 NOROM_SetupAfterColdResetWakeupFromShutdownCfg1               
    00005349 NOROM_SetupAfterColdResetWakeupFromShutDownCfg2               
    00003d01 NOROM_SetupAfterColdResetWakeupFromShutDownCfg3.               
    0000b4bd NOROM_SetupGetTrimForAdcShModeEn                      
    0000b4d5 NOROM_SetupGetTrimForAdcShVbufEn                      
    00007721 NOROM_SetupGetTrimForAmpcompCtrl                      
    0000b4ed NOROM_SetupGetTrimForAmpcompTh1.                       
    0000b0c5 NOROM_SetupGetTrimForAmpcompTh2.                       
    000079a9 NOROM_SetupGetTrimForAnabypassValue1                    
    0000b505 NOROM_SetupGetTrimForDblrLoopFilterResetVoltage               
    0000a4a9 NOROM_SetupGetTrimForRadcExtCfg                       
    0000b51d NOROM_SetupGetTrimForRcOscLfIBiasTrim                    
    0000b0e1 NOROM_SetupGetTrimForRcOscLfRtuneCTuneTrim                 
    0000ae51 NOROM_SetupGetTrimForXoscHfCtl                       
    0000b9b1 NOROM_SetupGetTrimForXoscHfFastStart                    
    0000b9c1 NOROM_SetupGetTrimForXoscHfIbiastherm                    
    0000b535 NOROM_SetupGetTrimForXoscLfRegulatorAndCmirrorwrRatio             
    00009f91 NOROM_SetupSetAonRtcSubSecInc                        
    00008749 NOROM_SetupSetCacheModeAccordingToCcfgSeting                
    0000bae3 NOROM_SetupSignExtendVddrTrimValue                     
    00005ec1 NOROM_SetupTrimDevice                            
    00008091 NOROM_SysCtrlAdjustRechargeAfterPowerDown                  
    0000b54d NOROM_SysCtrlResetSourceGet                         
    00002645 NOROM_SysCtrlSetRechargeBeforePowerDown                   
    00007a11 NOROM_SYSCTRL_DCDC_VoltageConditionalControl                
    00009fc1 NOROM_TRNGConfigure                             
    0000b7d1 NOROM_ThisCodeIsBuiltForCC26xxHwRev22AndLater_HaltIf 紫色        
    0000baf1 NOROM_VIMSModeGet                              
    00003cff NVSCC26XX_CLOSE                               
    00008ea1 NVSCC26XX_CONTROL                              
    00004ccf NVSCC26XX_EXIT                               
    0000c334 NVSCC26XX_fxnTable                             
    0000b0fd NVSCC26XX_getAttrs                             
    0000b9d1 NVSCC26XX_INIT                               
    000064d1 NVSCC26XX_OPEN                               
    00008e5 NVSCC26XX_READ                               
    0000331d NVSCC26XX_WRITE                               
    0000c3bc NVS_CONFIG                                 
    0000c2eb NVS_defaultParams                              
    00009729 NVS_INIT                                  
    00009ff1 NVS_OPEN                                  
    0000bcff NVS_READ                                  
    0000baff NVS_WRITE                                  
    10014c04 p1_ro                                    
    10019ffe P1_RO_2                                   
    20004f40 P2_RW                                    
    20004f40 P2_s0                                    
    20004f2 P2_zi                                    
    0000a83d PINCC26XX_getPinCount                            
    0000a4d5 PINCC26XX_setMux                              
    20003cd0 PIN_HandleTable                               
    20003c3c PIN_NumPins                                 
    0000af6f PIN_CLOSE                                  
    00002fcd PIN_INIT                                  
    00006275 PIN_OPEN                                  
    0000bd95 PIN_registerIntCb                              
    000082b5 PIN_REMOVE                                 
    0000a501 PIN_setConfig                                
    00008f29 PIN_setOutputEnable                             
    00009761 PIN_setOutputValue                             
    2000138c 人员计数                                
    00007d99 PowerCC26XX_RCOSC_clockFunc                         
    0000724d PowerCC26XX_auxISR                             
    0000778d PowerCC26XX_CALIBRATE                            
    0000c59c PowerCC26XX_CONFIG                             
    0000364d PowerCC26XX_doCalibrate                           
    000069d9 PowerCC26XX_getXoscStartupTime                       
    0000830d PowerCC26XX_initiateCalibration                       
    00009bd1 PowerCC26XX_isStableXOSC_HF                         
    200014ac PowerCC26XX_MODULE                             
    00005b35 PowerCC26XX_standbyPolicy                          
    0000a865 PowerCC26XX_switchXOSC_HF                          
    0000bc19 Power_getConstraintMask                           
    0000bc25 Power_getDependencyCount                          
    0000af8d Power_getTransitionLatency                         
    0000bc31 Power_getTransitionState                          
    0000b565 Power_idleFunc                               
    00003f59 Power_init                                 
    0000a88d Power_registerNotify                            
    0000a021 Power_releaseConstraint                           
    0000541d Power_releaseDependency                           
    0000a051 Power_setConstraint                             
    000055c1 Power_setDependency                             
    0000241d Power_sleep                                 
    0000ae71 Power_unregisterNotify                           
    000077f9 PublishCount_ClockHandler                          
    20001392 脉冲计数                                 
    10017158 RCon                                    
    10018415 RFHAL_AddTxDataEntry                            
    100184f9 RFHAL_AllocDataEntry                            
    100184a9 RFHAL_AllocDataEntryQueue                          
    10018315 RFHAL_AllocRatChan                             
    100185e1 RFHAL_BuildDataEntryRingBuffer                       
    10018669 RFHAL_BuildLinkedIn 缓冲器                           
    10018551 RFHAL_BuildRingBuffer                            
    10018549 RFHAL_FreeDataEntry                             
    100184c5 RFHAL_FreeDataEntryQueue                          
    10018485 RFHAL_FreeNextTxDataEntry                          
    1001833d RFHAL_FreeRatChan                              
    100184cd RFHAL_GetNextDataEntry                           
    100184d1 RFHAL_GetTempDataEntry                           
    100183b9 RFHAL_InitDataQueue                             
    100182ad RFHAL_InitRfHal                               
    10018369 RFHAL_MapRatChansToInt                           
    100184d5 RFHAL_NextDataEntryDone                           
    100183c5 RFHAL_QueueRFDataEntry                          
    10018391 RFHAL_RegisterRatChanCallback                        
    0000b7e5 RF_PARAMS_INIT                               
    00003175 RF_CancelCmd                                
    0000bd45 rf_flushCmd                                 
    0000b8fb rf_getCmdOp                                 
    00007df9 RF_getCurrentTime                              
    00008799 RF_getinfo                                 
    000091c5 rf_getRssi                                 
    00005a75 RF_OPEN                                   
    00006d85 RF_PendCmd                                 
    000037d1 RF_postCmd                                 
    000093b1 RF_runCmd                                  
    0000b151 RF_runDirectCmd                               
    0000b16d RF_runImmediateCmd                             
    00004075 Range_Sensor_Read                              
    0000b9e1 RegisterAssertBack                             
    0000b7f9 Register_addService                             
    00009c39 Register_getParameter                            
    0000b595 Register_registerAppCBs                           
    000093ed Register_SetParameter                            
    00008ff5 ResetISR                                  
    00003941 RestDeviceCount_ClockHandler                        
    10016b79 RoundKey_SW                                 
    10015101 SAVEPOINT                                  
    20004f68 SCAL                                    
    100150e5 SCALARMUL                                  
    10014层 SCALARMUL_CORE                               
    10015019 SCALARMUL_FINAL                               
    10014c05 SCALARMUL_INIT                               
    10015a51 SETOPERAND                                 
    10015a91 SETWORD                                   
    10018089 SHA256_final                                
    10018129 SHA256_FULL                                 
    10017ffd SHA256_init                                 
    10017ef1 SHA256_nextState                              
    10018019 SHA256_Process                               
    10017e75 SHA256_ROUND                                
    10017f49 SHA256_saveBuffer                              
    10017e39 SHA256_updateW                               
    UNDEFED SHT$$INIT_RAGE$$Base                            
    UNDEFED SHT$$INIT_ARRAGE$$LIMIT                           
    10015821 SQUAREMULTIPLYWORD                             
    10017895 SSP_CCM_Auth 加密软件                           
    10017365 SSP_CCM_Auth 软件                               
    1001767d SSP_CCM_Decrype_SW                             
    100174fd SSP_CCM_Encrypt_SW                             
    100178f5 SSP_CCM_InvAuth 解密_SW                         
    10017839 SSP_CCM_InvAuth 软件                             
    10017771 SSP_CTR_Decrype_SW                             
    100175ed SSP_CTR_Encrypt_SW                             
    0000a52d SafeHapiAuxAdiSelect                            
    0000a8b5 SafeHapiVoid                                
    10017164 SBOX                                    
    10015215 可选稳压器                                  
    00009429 SensorTagBar_createTask                           
    00006e05 SensorTagBar_processCharChangeEvt                      
    0000a8dd SensorTagBar_reset                             
    00009465 SensorTagHum_createTask                           
    00006e85 SensorTagHum_processCharChangeEvt                      
    0000a905 SensorTagHum_reset                             
    00008fb1 SensorTagIO_BLinkLed                            
    0000b189 SensorTagIO_init                              
    0000630d SensorTagIO_processCharChangeEvt                      
    00009205 SensorTagIO_RESET                              
    0000b9F1 SensorTagRegister_init                           
    00006a61 SensorTagRegister_processCharChangeEvt                   
    000072c1 SensorTagRegister_reset                           
    0000ab71 SensorTagRegister_update                          
    00007865 SensorTagTmp_processCharChangeEvt                      
    0000ae91 SensorTagTmp_reset                             
    0000bd09 SensorTag_charValueChangeCB                         
    000094a1 SensorTag_createTask                            
    0000bc55 SensorTag_testResult                            
    0000b821 SensorTag_updateAddisingData                       
    10016c45 ShiftRows_SW                                
    20004f88 TMP1                                    
    20004f8c TMP2                                    
    20004f90 TMP3                                    
    20004f94 TMP4                                    
    20004f98 TMP5                                    
    20004f9c TMP6                                    
    0000c670 TRNGCC26XHWAttrs                              
    0000c5ac TRNGCC26XX_CONFIG                              
    00006d01 TRNGCC26XX_getNumber                            
    0000a955 TRNGCC26XX_INIT                               
    0000a607 TRNGCC26XX_isParamValid                           
    0000b1c1 TRNGCC26XX_OPEN                               
    0000b1dd th3_Clock_stop                              
    000070ed UARTCC26XX_CLOSE                              
    00008365 UARTCC26XX_CONTROL                             
    0000c29c UARTCC26XX_fxnTable                             
    00004eb5 UARTCC26XX_hwiIntFxn                            
    0000b5ad UARTCC26XX_init                               
    000034BD UARTCC26XX_OPEN                               
    00005bF1 UARTCC26XX_READ                               
    00007501 UARTCC26XX_readCancel                            
    0000bd9b UARTCC26XX_readPolling                           
    00008a09 UARTCC26XX_swiIntFxn                            
    000049dd UARTCC26XX_WRITE                              
    000068c5 UARTCC26XX_writeCancel                           
    0000bda1 UARTCC26XX_writePolling                           
    0000b5c5 UART_Params_init                              
    0000c3d4 UART_CONFIG                                 
    0000c2ec UART_defaultParams                             
    00009799 UART_INIT                                  
    0000a0e1 UART_open                                  
    0000bd1d UART_WRITE                                 
    0000bc61 UartLog_init                                
    00008a55 Util_constructClock                             
    0000b5dd Util_constructQueue                             
    0000b309 Util_dequeueMsg                               
    0000a631 Util_enqueueMsg                               
    0000ba01 Util_isActive                                
    000097d1 Util_restartClock                              
    0000bc6d Util_startClock                               
    0000be29 Util_stopClock                               
    0000bc79 VL53L0XI2cDeselect                             
    00007e59 VL53L0XI2cInit                               
    00009c6d VL53L0XI2cRead                               
    00009809 VL53L0XI2cWrite                               
    000094dd VL53L0XI2cWriteRead                             
    0000bb0d VL53L0XI2creadReg                              
    0000a97d VL53L0XI2cwriteReg                             
    00003e31 VL53L0X_INIT                                
    00001ab1 VL53L0xDefaultSettings                           
    000044c1 VL53L0X_getSpadInfo                             
    00008d3d VL53L0X_readMulti                              
    00004fa1 VL53L0X_readRangeSingleMillbill                     
    00008d85 VL53L0X_setSignalRateLimit                         
    000042a1 ValidateSensorRead                             
    000047e1 Validate_SensorRead                             
    0000ba11 WDTClose                                  
    00009519 WDTInitFxn                                 
    0000ba21 看门狗 CC26XX_CLEAR                            
    00006bf7 看门狗 CC26XX_Close                            
    0000bda7 看门狗 CC26XX_CONTROL                           
    0000a9a5 看门狗 CC26XX_convertMsToTicks                       
    0000c370 看门狗 CC26XX_fxnTable                           
    0000bd4d 看门狗 CC26XX_init                             
    00007f79 看门狗 CC26XX_OPEN                             
    0000a111 看门狗 CC26XX_setReload                          
    0000ba31 Watchdog_Params_init                            
    0000bd27 安全装置清零                               
    0000bd31 安全装置_close                               
    0000c3ec Watchdog_config                               
    0000c5e8 Watchdog_defaultParams                           
    00009841 Watchdog_init                                
    0000a141 安全装置_打开                                
    0000bd3b Watchdog_setReload                             
    2000138e Water 的使用                                 
    20001390 Water 用户1                                
    200013ac Water capPinTable                              
    0000a9cd Write_Data_TO_Flash                             
    10015a85 零                                    
    0000be2d ZanConfig_Read                               
    00009555 ZanInit                                   
    00000000 _ASM__                                   
    0000007e __ISA__                                   
    00000090 __PLAT__                                  
    20004428 __STACK_END                                 
    00000400 __STACK_SIZE                                
    20004428 __STACK_TOP                                 
    000000b7 __TAGR__                                  
    0000cf34 __TI_CINIT_Base                               
    0000cf94 __TI_CINIT_LIMIT                              
    0000cf2c __TI_Handler_Table_Base                           
    0000cf34 __TI_Handler_Table_Limit                          
    00005f65 __TI_auto_init                               
    20001bc8 _TI_clean_ptr                              
    0000bb1b __TI_decompress_none                            
    0000bdb3 __TI_decompress_rle24                            
    20001bcc _TI_dptors _ptr                               
    20001bd0 __TI_ENABLE_EXIT_PROFILE_OUTPUT                       
    FFFFFFFF __TI_pprof_out_hndl                             
    FFFFFFFF __TI_PRof _DATA_SIZE                             
    FFFFFFFF _TI_PROD_DATA_START                            
    0000c6a8 __TI_static_BASE__                             
    000000dc __TRDR__                                  
    00006b71 __aeabi_cdrcmple                              
    00007eb9 __aeabi_cfcmpeq                               
    00007eb9 __aeabi_cfcmple                               
    0000907d __aeabi_d2uiz                                
    00003bc9 __aeabi_ddiv                                
    000098e9 __aeabi_f2iz                                
    00009d71 __aeabi_f2uiz                                
    00004bd9 __aeabi_fadd                                
    000065f9 __aeabi_fdiv                                
    00006f81 __aeabi_fmul                                
    00004bd5 _aeabi_fsub                                
    0000a345 __aeabi_i2d                                 
    0000b685 __aeabi_lmul                                
    00006ffb __aeabi_memclr                               
    00006ffb __aeabi_memclr4.                               
    00006ffb __aeabi_memclr8.                               
    00006141 __aeabi_memcpy                               
    00006141 __aeabi_memcpy4.                               
    00006141 __aeabi_memcpy8.                               
    00006ffd __aeabi_memset                               
    00006ffd __aeabi_memset4.                               
    00006ffd __aeabi_memset8.                               
    0000aef1 __aeabi_ui2d                                
    0000abdd __aeabi_ui2f                                
    00002a3d __aeabi_uldivmod                              
    FFFFFFFF __binIT__                                  
    FFFFFFFF __c_args__                                 
    0001ffa8 _ccfg                                   
    10019ffe __CHECKSUM_CommonROM                            
    10014c00 __CHECKSUM_BEGIN_CommonROM                         
    10019ffd __CHECKSUM_END_CommonROM                          
    0000e0ea __CHECKSUM_VALUE CommonROM                         
    10018ced __exit                                   
    20004028 __stack                                   
    0000b66d _args_main                                 
    00008ff5 _c_int00                                  
    20001bf4 _lock                                    
    0000b885 _nop                                    
    0000b88d _register_lock                               
    0000b887 _register_unlock                              
    20001bf8 _unlock                                   
    00008565 中止                                    
    0000aeb1 adcIsr                                   
    20001c5c appAssertBack                               
    0000c28a appearanceUUID                               
    20004fdc aux64                                    
    FFFFFFFF 二进制文件                                    
    2000142c 缓冲器                                   
    0000c286 聚合格式 UUID                              
    0000c27e charExtPropsUUID                              
    0000c284 charFormatUUID                               
    0000c280 charUserDescUUID                              
    0000ccharacter272 UUID                                
    0000c274 clientCharCfgUUID                              
    00008b39 copy_in                                   
    0000c58a devInfo11073CertUUID                            
    0000c5dc 设备信息中心                                 
    0000c5da devInfoFirmwareRevUUID                           
    0000c66e devInfoHardwareRevUUID                           
    0000c694 devInfoMfrNameUUID                             
    0000c696 devInfoModelNumberUUID                           
    0000c698 devInfoPnpIdUUID                              
    0000c69a devInfoSerialNumberUUID                           
    0000c69c devInfoServUUID                               
    0000c69e devInfoSoftwareRevUUID                           
    0000c6a0 devInfoSystemIdUUID                             
    0000c288 deviceNameUUID                               
    0000b755 driverTable_fnSpinlock                           
    20003f98 driverlib_release_0_46593                          
    10017dbd eccRom_genKeys                               
    10017分 式 eccRom_genSharedSecret                           
    20004fa0 eccRom_param_gx                               
    20004fa4 eccRom_param_Gy                               
    20004f50 eccRom_param_a                               
    20004fa8 eccRom_param_b                               
    20004f48 eccRom_param_p                               
    20004f4c eccRom_param_r                               
    20004f40 eccRom_windowSize                              
    20004f44 eccRom_Workzone                               
    0000856d 退出                                    
    0000c296 extReportRefUUID                              
    00001f99 flash_local_clear_wsh_wify_data_data                      
    20004fcc fwInfoCmd                                  
    20003324 g_SensorValue                                
    20000208 gapProfileState                               
    20000aa8 gapRoleTask                                 
    20000af8 gapRoleTaskStack                              
    0000b60d gapRole_clockHandler                            
    0000c276 gapServiceUUID                               
    0000c278 gattServiceUUID                               
    20003634 gl_SensorValue                               
    20000214 hGpioPin                                  
    20003638 hSem                                    
    20000220 hWDT                                    
    20000218 HandleUart                                 
    20004028 heapEnd                                   
    20003f9b heapStart                                  
    20003664 Hwi                                     
    0000c404 i2cCC26xxHWAttrs                              
    20003d4c i2cCC26xx 对象                              
    20004f58 inPointX                                  
    20004f5c inPointY                                  
    20004f54 解剖刀                                  
    0000c27c includeUUID                                 
    0000c5f4 iCBs                                    
    0000c45a ioConfUUID                                 
    0000c46a ioDataUUID                                 
    0000c47a ioServUUID                                 
    20003316 IO_TIMEOUT                                 
    20003648 内存                                    
    20001bd4 lastAppOptodeSent                              
    20000994 linkDBNumConns                               
    00009879 linkDB_NumConns                               
    10016551 madd                                    
    10015bd5 mINVK                                    
    10015f81 MMULT                                    
    10016749 输出电流                                    
    10015a9d mSET                                    
    1001664d mSUB                                    
    0000aa45 main                                    
    20001c6c main_func_sp                                
    0000bb29 makeuint16.                                 
    10018949 mbCmdAckIsr.                                 
    1001895d mbCpe0Isr.                                  
    10018985 mbCpe1等                                  
    100189e5 高速高速                                   
    2000331c measuring_timing_budget                        
    0000acaf memcmp                                   
    00006141 memcpy                                   
    00007003 内存集                                   
    undefED 毫克                                   
    20001c90 myCopyBlock                                 
    0000c5bc nvsCC26xxHWAttrs                              
    20003f90 nvsCC26xx 对象                              
    0000b24d openTRNG                                  
    00009cd5 osal_SNV_read                                
    00009d09 osal_SNV_WRITE                               
    20004f60 outPointX                                  
    20004f64 outPointY                                  
    20004ffc pSspAesEncrypt_SW                              
    0000c290 ConnperiParamUUID                              
    0000c28c periPrivacyFLAG1 UUID                             
    20001bd8 pfnBMAllloc                                 
    20001bdc pfnBMFree                                  
    20000250 pinGpioState                                
    20003640 引脚手柄                                  
    000058ed 压力传感器读数                           
    0000c270 primaryServiceUUID                             
    20004fanratchanInfo                                  
    0000c28e reconnectAddrUUID                              
    0000c298 reportRefUUID                                
    0000c150 resourceDB                                 
    0000c19c rfDriverTable                                
    20001968 rfRegTbl                                  
    0000c27a secondaryServiceUUID                            
    20000209 self EntityMain                               
    2000021c SEM                                     
    2000333c sensor_data                                 
    0000c282 servCharCfgUUID                               
    0000c292 serviceChangedUUID                             
    2000363c 单样品                                
    10016d29 sspAesDecrypt_SW                              
    10016af5 sspAesEncryptBasic_SW                            
    10016a99 sspAesEncryptKeyExp_SW                           
    10016979 sspAesEncrype_SW                              
    10016985 sspKeyExpansion 软件                             
    10016975 SSP_KeyInit_SW                               
    200013a8 状态                                   
    20000cb0 status1                                   
    20003310 STOP_variable                                
    200013a4 strsize                                   
    0000b899 strlen                                   
    200001a4 ti_sysbios_BIOS_Module_state__V                      
    1001bc29 ti_sysbios_BIOS_rtsGateProxy_handle__label_S                
    UNDEFED ti_SYSBIOS_BIOS_rtsGateProxy_handle__label_S__man翻转_          
    1001bab9 ti_sysbios_BIOS_rtsGateProxy_Object__delete_S               
    UNDEFED ti_SysBIOS_BIOS_rtsGateProxy_Object__delete __S__man翻转__          
    1001c179 ti_sysbios_BIOS_rtsGateProxy_Params__init__S                
    UNDEFED ti_SYSBIOS_BIOS_rtsGateProxy_Params__init_S__s_man翻转_           
    1001c249 ti_SYSBIOS_BIOS_rtsGateProxy_enter__E                    
    1001c24d ti_SYSBIOS_BIOS_rtsGateProxy_leave__E                    
    1001c275 ti_sysbios_BIOS_rtsGateProxy_query_E                    
    UNDEFED ti_SYSBIOS_BIOS_rtsGateProxy_query_E__man翻转 了__              
    0000a171 ti_SysBIOS_BIOS_atExitFunc__I                        
    0000b76b ti_SysBIOS_BIOS_exitFunc__I                         
    1001c035 ti_SysBIOS_BIOS_exit__E                           
    1001bff9 ti_SysBIOS_BIOS_getCpuFreq__E                        
    0000bc91 ti_SysBIOS_BIOS_getThreadType__E                      
    00007fd7 ti_SysBIOS_BIOS_linkedWithIncorrectBootLibrary__E              
    00008607 ti_SysBIOS_BIOS_nullFunc__I                         
    0000ac01 ti_SysBIOS_BIOS_registerRTSLock__I                     
    0000ac25 ti_SysBIOS_BIOS_removeRTSLock__i                      
    0000af11 ti_SysBIOS_BIOS_rtsLock__I                         
    0000b6b5 ti_SysBIOS_BIOS_rtsUnlock___i                        
    1001c045 ti_SysBIOS_BIOS_setThreadType__E                      
    0000a1a1 ti_SysBIOS_BIOS_startFunc__I                        
    1001c055 ti_SysBIOS_BIOS_start__E                          
    0000b54d ti_SYSBIOS_family_ARM_cc26xx_Boot_getBootReasOn__E             
    00005ec1 ti_sysbios_family_arm_cc26xx_Boot_trimDevice                
    00000502 ti_sysbios_family_arm_cc26xx_Timer_Module_id__C              
    1001bb49 ti_sysbios_family_arm_cc26xx_Timer_Module_starpDone__S          
    200001e4 ti_sysbios_family_arm_cc26xx_Timer_Module_state__V             
    1001ba71 ti_sysbios_family_arm_cc26xx_Timer_Module_startup__E            
    20001a08 ti_sysbios_family_arm_cc26xx_Timer_Object__table__V             
    0000b269 ti_SysBIOS_family_ARM_cc26xx_Timer_DynamicStudiob__E              
    0000be39 ti_SYSBIOS_family_ARM_cc26xx_Timer_getCount64__E              
    00009921 ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E            
    1001c251 ti_sysbios_family_arm_cc26xx_Timer_getExpiredTicks__E            
    0000aa6d ti_SysBIOS_family_ARM_cc26xx_Timer_getMaxTicks__E              
    1001c255 ti_SYSBIOS_family_ARM_cc26xx_Timer_getPeriod__E               
    0000a1d1 ti_sysbios_family_arm_cc26xx_Timer_initDevice__I              
    1001a469 ti_SysBIOS_family_ARM_cc26xx_Timer_periodicStudiob__E             
    1001b769 ti_SysBIOS_family_ARM_cc26xx_Timer_postInit___I               
    00009e9f ti_SysBIOS_family_ARM_cc26xx_Timer_setNextTick___E              
    1001c259 ti_sysbios_family_arm_cc26xx_Timer_setPeriod___E               
    0000a201 ti_sysbios_family_arm_cc26xx_Timer_setThreshold___i             
    00007c11 ti_sysbios_family_arm_cc26xx_Timer_start__E                 
    00000484 ti_sysbios_family_arm_cc26xx_Timer_startupNeed__C             
    1001b795 ti_sysbios_family_arm_cc26xx_Timer_startup___E                
    200001ec ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_state___v       
    1001bb69 ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_startup__E      
    0000bb6f ti_SYSBIOS_family_ARM_cc26xx_TimestampProvider_get32__E           
    1001b9d1 ti_sysbios_family_arm_cc26xx_TimestampProvider_get64__E           
    1001c12f ti_sysbios_family_arm_cc26xx_TimestampProvider_getFreq__E          
    00000504 ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C       
    00000488 ti_sysbios_family_arm_m3/hwi_E_alreadyDefined___C              
    0000048c ti_sysbios_family_arm_m3/hwi_E_hwiLimitExceleed___C             
    1001aed1 ti_sysbios_family_arm_m3/hwi_instance_finaling__E              
    1001a3c9 ti_sysbios_family_arm_m3_Hwi_instance_init__E                
    20001c88 ti_sysbios_family_arm_m3/Hwi_Module_State_0_exACTIVE__A          
    20001c70 ti_SYSBIOS_family_ARM_m3/Hwi_Module_State_0_excContext__A          
    20001c74 ti_sysbios_family_arm_m3/Hwi_Module_State_0_exstack__a           
    00000506 ti_sysbios_family_arm_m3/hwi_Module_id__C                 
    20001c04 ti_sysbios_family_arm_m3/Hwi_Module_root_V                
    1001bb89 ti_sysbios_family_arm_m3/hwi_Module_starpDone__S             
    20000144 ti_SysBIOS_family_ARM_m3/Hwi_Module_state__V                
    1001b1c1 ti_sysbios_family_arm_m3/hwi_Module_startup__E               
    00000490 ti_sysbios_family_arm_m3/hwi_NUM_interrupts__C               
    000002d0 ti_SysBIOS_family_ARM_m3/Hwi_Object_DESC_C                
    00000170 ti_sysbios_family_arm_m3/Hwi_Object_Params__C               
    00000494 ti_sysbios_family_arm_m3/Hwi_Object_count_C                
    1001aab1 ti_sysbios_family_arm_m3/Hwi_Object__create__S               
    1001bba9 ti_sysbios_family_arm_m3/Hwi_Object__delete_S               
    1001be69 ti_sysbios_family_arm_m3/Hwi_Object_析 构 T__S              
    1001b7c1 ti_sysbios_family_arm_m3/Hwi_Object_GET_S                 
    00000498 ti_sysbios_family_arm_m3/Hwi_Object_Table__C                
    20001b98 ti_sysbios_family_arm_m3/Hwi_Object_Table__V                
    1001c13d ti_sysbios_family_arm_m3/Hwi_Params__init__S                
    0000049c ti_SysBIOS_family_ARM_m3/Hwi_CCR__C                     
    1001af29 ti_sysbios_family_arm_m3/hwi_construct                   
    1001ab15 ti_sysbios_family_arm_m3/hwi_create                     
    1001c25d ti_sysbios_family_arm_m3/hwi_delete                     
    1001c261 ti_sysbios_family_arm_m3/hwi_析 构                    
    1001c149 ti_sysbios_family_arm_m3/hwi_disableFxn_E                 
    1001b299 ti_SysBIOS_family_ARM_m3/Hwi_disableInterrupt__E              
    1001aa49 ti_sysbios_family_arm_m3/hwi_d调度 C__I                  
    20003e2c ti_sysbios_family_arm_m3/hwi_d调度 表                 
    1001c89d ti_sysbios_family_arm_m3/hwi_deign__i                  
    1001c1fb ti_sysbios_family_arm_m3/hwi_doSwiRestore__I                
    1001c213 ti_SYSBIOS_family_ARM_m3/Hwi_doTaskRestore__I                
    1001c155 ti_sysbios_family_arm_m3/hwi_enableFxn_E                  
    1001b2dd ti_sysbios_family_arm_m3/hwi_enableInterrupt__E               
    1001ca01 ti_sysbios_family_arm_m3/hwi_exHandlerAsm__I                
    000004a0 ti_sysbios_family_arm_m3/hwi_exHandlerFunc__C               
    1001bbc9 ti_sysbios_family_arm_m3/hwi_examplter_i                 
    1001b465 ti_sysbios_family_arm_m3/hwi_getStackInfo__E                
    1001a699 ti_sysbios_family_arm_m3/hwi_initNVIC__E                  
    1001c9b9 ti_sysbios_family_arm_m3/hwi_initStacks__E                 
    000004a4 ti_sysbios_family_arm_m3/hwi_nullIsrFunc__C                 
    000004a8 ti_sysbios_family_arm_m3/hwi_numSparseInterrupts__C             
    e000e000 ti_SysBIOS_family_ARM_m3/Hwi_NVIC                      
    1001ca3f ti_sysbios_family_arm_m3/hwi_pendSV__I                   
    1001c065 ti_SysBIOS_family_ARM_m3/Hwi_plug__E                    
    1001a319 ti_sysbios_family_arm_m3/hwi_postInit__i                  
    0000ba51 ti_sysbios_family_arm_m3/hwi_post                    
    000004ac ti_sysbios_family_arm_m3/hwi_priGroup__C                  
    20000000 ti_SysBIOS_family_ARM_m3/Hwi_ramVectors                   
    00000000 ti_SYSBIOS_family_ARM_m3/Hwi_resetVectors                  
    1001c219 ti_SYSBIOS_family_ARM_m3/Hwi_restoreFxn_E                 
    1001ca57 ti_sysbios_family_arm_m3/hwi_return                     
    0000be13 ti_SYSBIOS_family_ARM_m3/Hwi_setFunc__E                   
    1001be85 ti_sysbios_family_arm_m3/hwi_setPriority __E                 
    1001c203 ti_sysbios_family_arm_m3/hwi_startup___E                   
    1001c00d ti_sysbios_family_arm_m3/hwi_switchFromBootStack__E             
    1001c265 ti_sysbios_family_arm_m3/TaskSupport_Module_starpDone__S         
    1001c96d ti_sysbios_family_arm_m3/TaskSupport_buildTaskStack             
    1001c161 ti_sysbios_family_arm_m3/TaskSupport_getStackAlignment__E          
    1001ca59 ti_sysbios_family_arm_m3_TaskSupport_cUS                  
    000004b0 ti_sysbios_family_arm_m3/taskSupport_stackAlignment__C           
    1001b49d ti_sysbios_family_arm_m3/taskSupport_start__E                
    1001ca69 ti_sysbios_family_arm_m3/TaskSupport_swap_e_e                
    1001ca21 ti_sysbios_family_xxx_Hwi_switchAndRunFunc                 
    1001bbe9 ti_sysbios_gates_GateHwi_handle_label_S                  
    1001b463 ti_sysbios_gates_GateHwi_instance_init__E                  
    0000021c ti_sysbios_gates_GateHwi_Module_Fxns__C                  
    00000508 ti_sysbios_gates_GateHwi_Module_id__C                   
    20001c0c ti_SysBIOS_gates_GateHwi_Module_root__V                  
    000002f0 ti_SysBIOS_Gates_GateHwi_Object_DESC_C                  
    00000430 ti_sysbios_gates_GateHwi_Object_Params__C                 
    1001ba95 ti_sysbios_gates_GateHwi_Object__create__S                 
    1001bc09 ti_sysbios_gates_GateHwi_Object__delete_S                 
    1001c16d ti_sysbios_gates_GateHwi_enter__E                      
    1001c21f ti_sysbios_gates_GateHwi_leave__E                      
    1001c269 ti_sysbios_gates_GateHwi_query__E                      
    1001bc29 ti_sysbios_gates_GateMutex_handle__label_S                 
    000005cc ti_sysbios_gates_GateMutex_instance_State_SEM_O              
    1001c075 ti_SysBIOS_gates_GateMutex_instance_finaling__E               
    1001bea1 ti_sysbios_gates_GateMutex_instance_init__E                 
    00000240 ti_sysbios_gates_GateMutex_Module_Fxns__C                 
    0000050a ti_sysbios_gates_GateMutex_Module_id__C                  
    20001c14 ti_sysbios_gates_GateMutex_Module_root__V                 
    00000310 ti_SysBIOS_Gates_GateMutex_Object_DESC_C                 
    00000448 ti_sysbios_gates_GateMutex_Object_Params__C                
    1001b649 ti_sysbios_gates_GateMutex_Object__create__S                
    1001bab9 ti_sysbios_gates_GateMutex_Object__delete_S                
    1001bc49 ti_sysbios_gates_GateMutex_Object_析 构 T__S               
    20001a50 ti_sysbios_gates_GateMutex_Object__table__V                 
    1001c179 ti_sysbios_gates_GateMutex_Params__init__S                 
    1001b7ed ti_sysbios_gates_GateMutex_construct                    
    1001b679 ti_sysbios_gates_GateMutex_create                      
    1001c26d ti_sysbios_gates_GateMutex_delete                      
    1001c271 ti_sysbios_gates_GateMutex_析 构                     
    1001b6a9 ti_sysbios_gates_GateMutex_enter__E                     
    1001bf9d ti_sysbios_gates_GateMutex_leave__E                     
    1001c275 ti_sysbios_gates_GateMutex_query__E                     
    1001c279 ti_sysbios_hal_hwi_HwiProxy_Module_startupDone__S             
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_Module_startupDone__S__man翻转__        
    1001c085 ti_sysbios_hal_hwi_hwiProxy_Object__create__S                
    1001bba9 ti_sysbios_hal_hwi_hwiProxy_Object__delete_s                
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_Object__delete _S__man翻转_          
    1001c13d ti_sysbios_hal_hwi_HwiProxy_Params__init__S                 
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_Params__init__S__man翻转__           
    1001be49 ti_sysbios_hal_hwi_hwiProxy_create                     
    1001c27d ti_sysbios_hal_hwi_hwiProxy_delete                     
    1001c281 ti_sysbios_hal_hwi_hwiProxy_disableInterrupt__E               
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_disableInterrupt__E__man翻转__         
    1001c285 ti_sysbios_hal_hwi_hwiProxy_enableInterrupt__E               
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_enableInterrupt_E__man翻转_          
    1001c289 ti_sysbios_hal_hwi_HwiProxy_getStackInfo__E                 
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_getStackInfo_E__man翻转_           
    0000ba51 ti_SYSBIOS_hal_Hwi_HwiProxy_post__E                     
    1001c28d ti_sysbios_hal_hwi_hwiProxy_startup___E                   
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_startup_E__man翻转_              
    1001c291 ti_SysBIOS_hal_Hwi_HwiProxy_switchFromBootStack__E             
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_switchFromBootStack_E___manifed__        
    1001c1F1 ti_sysbios_hal_hwi_instance_final__E                   
    1001b9f9 ti_sysbios_hal_hwi_instance_init__E                     
    20001c1c ti_sysbios_hal_hwi_Module_root__V                     
    1001c021 ti_sysbios_hal_hwi_Module_startup___E                    
    00000330 ti_sysbios_hal_hwi_Object_DESC_C                     
    000001a0 ti_sysbios_hal_hwi_Object_Params__C                    
    1001bc69 ti_sysbios_hal_hwi_Object__delete_s                    
    0000bc9d ti_sysbios_hal_hwi_params__init__S                     
    1001ab79 ti_sysbios_hal_hwi_create                          
    1001c295 ti_sysbios_hal_hwi_delete                          
    1001c281 ti_sysbios_hal_hwi_disableInterrupt__E                   
    UNDEFED ti_SYSBIOS_hal_Hwi_disableInterrupt__E                   
    1001c285 ti_sysbios_hal_hwi_enableInterrupt__E                    
    UNDEFED ti_SYSBIOS_hal_Hwi_enableInterrupt__E                    
    1001c289 ti_sysbios_hal_hwi_getStackInfo__E                     
    UNDEFED ti_SYSBIOS_hal_Hwi_getStackInfo__E                     
    1001b819 ti_sysbios_hal_hwi_initStack                        
    0000ba51 ti_sysbios_hal_hwi_post _E                         
    1001c28d ti_sysbios_hal_hwi_startup___E                        
    UNDEFED ti_SYSBIOS_hal_Hwi_startup___E                        
    1001c299 ti_sysbios_hal_hwi_switchFromBootStack__E                  
    UNDEFED ti_SYSBIOS_hal_Hwi_switchFromBootStack__E                  
    000004b4 ti_sysbios_b堆_HeapMem_E_memory__C                    
    1001bc89 ti_sysbios_b堆_HeapMem_handle__label_S                  
    20002c90 ti_sysbios_堆_HeapMem_instance_State_0_Buf__a              
    1001b4d5 ti_sysbios_b堆_HeapMem_instance_init__E                  
    1001bc29 ti_sysbios_堆_HeapMem_Module_GateProxe_handle__label_S         
    UNDEFED ti_SYSBIOS_b堆_HeapMem_Module_GateProxe_Handle__label_S__man翻转_    
    1001bab9 ti_sysbios_堆_HeapMem_Module_GateProxy_Object__delete_S         
    UNDEFED ti_SYSBIOS_b堆_HeapMem_Module_GateProxy_Object__delete _S__man翻转_   
    1001c179 ti_sysbios_堆_HeapMem_Module_GateProxy_Params__init__S          
    UNDEFED ti_SYSBIOS_b堆_HeapMem_Module_GateProxy_Params__init_S__s__man翻转_    
    1001c29d ti_sysbios_堆_HeapMem_Module_GateProxy_enter_E             
    1001c2a1 ti_sysbios_堆_HeapMem_Module_GateProxy_leave__E             
    1001c275 ti_sysbios_堆_HeapMem_Module_GateProxy_query_E             
    UNDEFED ti_SYSBIOS_b堆_HeapMem_Module_GateProxy_query_E__man翻转_        
    000001cc ti_sysbios_堆_HeapMem_Module_Fxns__C                  
    000004b8 ti_sysbios_b堆_HeapMem_Module_gateObj__C                 
    0000050c ti_sysbios_堆_HeapMem_Module_id__C                   
    20001c24 ti_sysbios_堆_HeapMem_Module_root__V                  
    00000350 ti_sysbios_堆_HeapMem_Object_DESC_C                  
    00000264 ti_sysbios_堆_HeapMem_Object_Params__C                 
    000004bc ti_sysbios_堆_HeapMem_Object_count__C                  
    1001b845 ti_sysbios_b堆_HeapMem_Object__create__S                 
    1001bca9 ti_sysbios_堆_HeapMem_Object__delete_S                 
    1001b871 ti_sysbios_b堆_HeapMem_Object_get__S                   
    000004c0 ti_sysbios_堆_HeapMem_Object__table__C                  
    20001bb0 ti_sysbios_堆_HeapMem_Object__table__V                  
    1001a199 ti_sysbios_b堆_HeapMem_alloc__E                      
    1001a795 ti_sysbios_堆_HeapMem_free__E                      
    1001b209 ti_sysbios_b堆_HeapMem_getStats__E                    
    1001b545 ti_sysbios_b堆_HeapMem_init__i                      
    1001c2a5 ti_sysbios_堆_HeapMem_isBlocking__E                   
    000004c4 ti_sysbios_堆_HeapMem_reqAlign___C                    
    1001c105 ti_sysbios_b堆_HeapMem_restore__E                     
    1001bfcd ti_SysBIOS_KNL_Clock_instance_finaling__E                  
    1001b50d ti_sysbios_KNL_Clock_instance_init__E                    
    000005d0 ti_SysBIOS_KNL_Clock_Module_State_clockQ_O                 
    20001c2c ti_SysBIOS_KNL_Clock_Module_root__V                    
    20000178 ti_SysBIOS_KNL_Clock_Module_state__V                    
    1001bcc9 ti_sysbios_KNL_Clock_Module_startup___E                   
    00000370 ti_SysBIOS_KNL_Clock_Object__Desc_C                    
    00000288 ti_SysBIOS_KNL_Clock_Object_Params__C                   
    1001b 添加 ti_SysBIOS_KNL_Clock_Object__delete_S                   
    1001bce9 ti_SysBIOS_KNL_Clock_Object_析 构函数__S                  
    20001b78 ti_SysBIOS_KNL_Clock_Object_Table___V                    
    1001c185 ti_SysBIOS_KNL_Clock_Params__init__S                    
    1001c2a9 ti_sysbios_KNL_Clock_TimerProxy_Module_starpDone__S           
    UNDEFED ti_SysBIOS_KNL_Clock_TimerProxy_Module_startupDone__S__man翻转__      
    1001c095 ti_SysBIOS_KNL_Clock_TimerProxy_getCurrentTick__E              
    1001c2ad ti_SysBIOS_KNL_Clock_TimerProxy_getExpiredTicks__E             
    1001c0a5 ti_SysBIOS_KNL_Clock_TimerProxy_getMaxTicks__E               
    1001c2b1 ti_sysbios_KNL_Clock_TimerProxy_getPeriod___E                
    1001c0b5 ti_sysbios_KNL_Clock_TimerProxy_setNextTick__E               
    1001b795 ti_sysbios_KNL_Clock_TimerProxy_startup___E                 
    UNDEFED ti_SYSBIOS_KNL_Clock_TimerProxy_startup_E__man翻转_            
    1001ba21 ti_SysBIOS_KNL_Clock_addi__E                        
    1001b579 ti_SysBIOS_KNL_Clock_con构                       
    1001b3ed ti_SysBIOS_KNL_Clock_create                         
    1001c2b5 ti_SysBIOS_KNL_Clock_delete                         
    1001c2b9 ti_SysBIOS_KNL_Clock_析 构                        
    0000b8c1 ti_sysbios_KNL_Clock_dotick__i                       
    0000a585 ti_SysBIOS_KNL_Clock_getTicksUntilInterrupt__E               
    1001b6d9 ti_SysBIOS_KNL_Clock_getTicks__E                      
    1001c191 ti_SysBIOS_KNL_Clock_getTimerHandle__E                   
    0000be3d ti_SysBIOS_KNL_Clock_isActive__E                      
    1001be67 ti_SysBIOS_KNL_Clock_logTick__E                       
    1001c2bd ti_SysBIOS_KNL_Clock_removeI_E                       
    1001bd ti_sysbios_KNL_Clock_scheduleNextTick__E                  
    000004c8 ti_SysBIOS_KNL_Clock_serviceMargin__C                    
    1001c2c1 ti_SysBIOS_KNL_Clock_setTimeout___E                     
    1001a719 ti_SysBIOS_KNL_Clock_starti__E                       
    1001bfe3 ti_SysBIOS_KNL_Clock_start__E                        
    0000af31 ti_SysBIOS_KNL_Clock_stop__E                        
    00000510 ti_SysBIOS_KNL_Clock_tickMode___C                      
    0000c678 ti_SysBIOS_KNL_Clock_tickPeriod___C                     
    0000c67c ti_SysBIOS_KNL_Clock_triggerClock__C                    
    000088d7 ti_SysBIOS_KNL_Clock_triggerFunc__i                     
    1001a80d ti_SysBIOS_KNL_Clock_WalkQueueDynamic__E                  
    000063a5 ti_SysBIOS_KNL_Clock_workFuncDynamic__E                   
    1001a885 ti_SysBIOS_KNL_Clock_workFunc__E                      
    0000c680 ti_SysBIOS_KNL_Idle_funclist__A                       
    00000478 ti_SysBIOS_KNL_Idle_funclist___C                       
    1001c20b ti_SysBIOS_KNL_Idle_loop__E                         
    1001bd09 ti_sysbios_KNL_Idle_run___E                         
    000005d4 ti_sysbios_KNL_Mailbox_instance_State_dataQue_O              
    000005d8 ti_sysbios_KNL_Mailbox_instance_State_dataSem__O              
    000005dc ti_sysbios_KNL_Mailbox_instance_State_freeQue_O              
    000005e0 ti_sysbios_KNL_Mailbox_instance_State_freeSem_O              
    1001a9dd ti_sysbios_KNL_Mailbox_instance_finaling__E                 
    1001a001 ti_sysbios_KNL_Mailbox_instance_init__E                   
    20001c34 ti_sysbios_KNL_Mailbox_Module_root__V                   
    1001b251 ti_sysbios_KNL_Mailbox_Module_Started__E                  
    00000390 ti_SysBIOS_KNL_Mailbox_Object__Desc_C                   
    0000013c ti_sysbios_KNL_Mailbox_Object_Params__C                  
    000004cc ti_SysBIOS_KNL_Mailbox_Object_count__C                   
    1001bd29 ti_sysbios_KNL_Mailbox_Object__delete_S                  
    1001bed9 ti_sysbios_KNL_Mailbox_Object__析 构函数__S                 
    1001b89d ti_SysBIOS_KNL_Mailbox_Object__get__S                    
    000004d0 ti_sysbios_KNL_Mailbox_Object__table__C                   
    1001c19d ti_SysBIOS_KNL_Mailbox_Params__init__S                   
    1001af81 ti_sysbios_KNL_Mailbox_construct                      
    1001abdd ti_SysBIOS_KNL_Mailbox_create                        
    1001c2c5 ti_sysbios_KNL_Mailbox_delete                        
    1001c2c9 ti_sysbios_KNL_Mailbox_析 构                       
    1001a8fd ti_sysbios_KNL_Mailbox_pend__E                       
    1001b8c9 ti_sysbios_KNL_Mailbox_postInit___i                     
    1001a591 ti_sysbios_KNL_Mailbox_post__E                       
    1001c22b ti_sysbios_KNL_Queue_instance_init__E                    
    20001c3c ti_SysBIOS_KNL_Queue_Module_root__V                    
    000003b0 ti_SysBIOS_KNL_Queue_Object_DESC_C                    
    00000460 ti_SysBIOS_KNL_Queue_Object_Params__C                   
    000004d4 ti_SysBIOS_KNL_Queue_Object_count__C                    
    1001bd49 ti_SysBIOS_KNL_Queue_Object__delete_S                   
    1001bef5 ti_SysBIOS_KNL_Queue_Object_析 构 T__S                  
    1001bd69 ti_sysbios_KNL_Queue_Object__get__S                     
    000004d8 ti_sysbios_KNL_Queue_Object_Table__C                    
    1001b8f5 ti_SysBIOS_KNL_Queue_construct                       
    1001b921 ti_SysBIOS_KNL_Queue_create                         
    1001c2cd ti_sysbios_KNL_Queue_delete                         
    1001c1a9 ti_SysBIOS_KNL_Queue_dequeue___E                       
    1001c2d1 ti_SysBIOS_KNL_Queue_析 构                        
    1001c231 ti_SysBIOS_KNL_Queue_elemClear __E                      
    1001c113 ti_SysBIOS_KNL_Queue_empty_E                        
    1001c1b5 ti_SysBIOS_KNL_Queue_enqueue___E                       
    1001bf11 ti_SysBIOS_KNL_Queue_get__E                         
    1001c2d5 ti_sysbios_KNL_Queue_head_E                        
    0000be41 ti_SysBIOS_KNL_Queue_insert__E                       
    1001c2d9 ti_sysbios_KNL_Queue_next __E                        
    1001bf2d ti_sysbios_KNL_Queue_put __E                         
    1001c121 ti_sysbios_KNL_Queue_remove__e_e                       
    000005e4 ti_SysBIOS_KNL_Semaphore_Instance_State_PendQ_O              
    1001c0c5 ti_SysBIOS_KNL_Semaphore_instance_finaling__E                
    1001bb01 ti_SysBIOS_KNL_Semaphore_instance_init__E                  
    20001c44 ti_SysBIOS_KNL_Semaphore_Module_root__V                  
    000003d0 ti_SysBIOS_KNL_Semaphore_Object_DESC_C                  
    000002ac ti_SYSBIOS_KNL_Semaphore_Object_PARAMS__C                 
    1001bb25 ti_SysBIOS_KNL_Semaphore_Object__delete_S                 
    1001bd89 ti_SysBIOS_KNL_Semaphore_Object_析 构函数__S                
    1001c1c1 ti_SysBIOS_KNL_Semaphore_Params__init__S                  
    1001b709 ti_SysBIOS_KNL_Semaphore_construct                     
    1001b5ad ti_SysBIOS_KNL_Semaphore_create                       
    1001c2dd ti_SysBIOS_KNL_Semaphore_delete                       
    1001c2e1 ti_SysBIOS_KNL_Semaphore_析 构                      
    1001b94d ti_SysBIOS_KNL_Semaphore_pendTimeout__I                   
    1001a0cd ti_SysBIOS_KNL_Semaphore_pend__E                      
    1001ac41 ti_SysBIOS_KNL_Semaphore_post__E                      
    1001bf9b ti_SYSBIOS_KNL_Swi_instance_finaling__E                   
    1001aca5 ti_SysBIOS_KNL_Swi_instance_init__E                     
    20001ab8 ti_SysBIOS_KNL_Swi_Module_State_0_readyQ__A                 
    20001c4c ti_sysbios_KNL_Swi_Module_root__V                     
    200001c8 ti_sysbios_KNL_Swi_Module_state__V                     
    1001c237 ti_sysbios_KNL_Swi_Module_startup___E                    
    000003f0 ti_SysBIOS_KNL_Swi_Object_DESC_C                     
    000001f4 ti_sysbios_KNL_Swi_Object_Params__C                    
    000004dc ti_sysbios_KNL_Swi_Object_count__C                     
    1001bda9 ti_sysbios_KNL_Swi_Object__delete_S                    
    1001bf49 ti_SysBIOS_KNL_Swi_Object_析 构函数__S                   
    1001b979 ti_sysbios_KNL_Swi_Object__get__S                      
    000004e0 ti_SysBIOS_KNL_Swi_Object__table__C                     
    20001ae8 ti_sysbios_KNL_Swi_Object__table__V                     
    1001c1cd ti_sysbios_KNL_Swi_Params__init__S                     
    1001b085 ti_SysBIOS_KNL_Swi_construct                        
    1001ad05 ti_SysBIOS_KNL_Swi_create                          
    1001c2e5 ti_sysbios_KNL_Swi_delete                          
    1001c2e9 ti_SysBIOS_KNL_Swi_析 构                         
    1001c0d5 ti_SysBIOS_KNL_Swi_disable___E                        
    1001c0e5 ti_SysBIOS_KNL_Swi_enabled__E                        
    0000bca9 ti_SysBIOS_KNL_Swi_getTrigger__E                      
    000004e4 ti_SysBIOS_KNL_Swi_numPriorities __C                     
    0000b6cd ti_sysbios_KNL_Swi_or_e_e                          
    1001c2ed ti_SysBIOS_KNL_Swi_postInit___I                       
    1001b321 ti_sysbios_KNL_Swi_post _E                         
    1001ad61 ti_SysBIOS_KNL_Swi_restoreHwi__E                      
    1001b5e1 ti_sysbios_KNL_Swi_restore__E                        
    1001b0d5 ti_SysBIOS_KNL_Swi_runLoop __I                        
    1001afd9 ti_sysbios_KNL_Swi_run__i                          
    1001b031 ti_sysbios_KNL_Swi_schedule__i                       
    1001c23d ti_sysbios_KNL_Swi_startup___E                        
    20003928 ti_sysbios_KNL_Task_instance_State_0_stack__A                
    1001a4fd ti_sysbios_KNL_Task_instance_finaling__E                  
    1001a25d ti_sysbios_KNL_Task_instance_init__E                    
    20001c78 ti_SysBIOS_KNL_Task_Module_State_0_idleTask__A               
    20001b18 ti_sysbios_KNL_Task_Module_State_0_readyQ__A                
    000005e8 ti_SysBIOS_KNL_Task_Module_State_InactiveQ_O                
    20001c54 ti_sysbios_KNL_Task_Module_root__V                     
    20000100 ti_SysBIOS_KNL_Task_Module_state__V                    
    1001adbd ti_sysbios_KNL_Task_Module_startup___E                    
    00000410 ti_SysBIOS_KNL_Task_Object_DESC_C                     
    00000100 ti_SysBIOS_KNL_Task_Object_Params__C                    
    000004e8 ti_SysBIOS_KNL_Task_Object_count__C                    
    1001bdc9 ti_sysbios_KNL_Task_Object__delete_S                    
    1001bf65 ti_SysBIOS_KNL_Task_Object_析 构函数__S                   
    1001bde9 ti_sysbios_KNL_Task_Object__get__S                     
    000004ec ti_sysbios_KNL_Task_Object_Table__C                    
    200019b8 ti_SysBIOS_KNL_Task_Object_Table___V                    
    1001c1d9 ti_sysbios_KNL_Task_Params__init__S                     
    1001c2F1 ti_sysbios_KNL_Task_SupportProxy_Module_starpDone__S           
    UNDEFED ti_SysBIOS_KNL_Task_SupportProxy_Module_startupDone__S____man翻转__     
    1001c2f5 ti_sysbios_KNL_Task_SupportProxy_getStackAlignment__E            
    UNDEFED ti_SYSBIOS_KNL_Task_SupportProxy_getStackAlignment__E__man翻转__      
    1001c2f9 ti_sysbios_KNL_Task_SupportProxy_start__E                  
    UNDEFED ti_SYSBIOS_KNL_Task_SupportProxy_start_E__man翻转__            
    1001c2fd ti_sysbios_KNL_Task_SupportProxy_swap_e_E                  
    UNDEFED ti_SYSBIOS_KNL_Task_SupportProxy_swap_E__man翻转__             
    000004f0 ti_SysBIOS_KNL_Task_allBrokedFunc__C                    
    1001b365 ti_SysBIOS_KNL_Task_allBrokedFunction__I                  
    1001b615 ti_SysBIOS_KNL_Task_blockI_E                        
    1001b125 ti_SysBIOS_KNL_Task_construct                        
    1001ae19 ti_SysBIOS_KNL_Task_create                         
    000004f4 ti_SysBIOS_KNL_Task_defaultStackHeap___C                   
    000004f8 ti_sysbios_KNL_Task_defaultStackSize__C                   
    1001c301 ti_SysBIOS_KNL_Task_delete                         
    1001c305 ti_SysBIOS_KNL_Task_析 构                        
    1001c0f5 ti_SysBIOS_KNL_Task_disable__E                       
    1001c243 ti_SysBIOS_KNL_Task_enable__E                        
    1001be09 ti_sysbios_KNL_Task_enter_i                        
    1001b429 ti_SysBIOS_KNL_Task_exit___E                         
    0000050e ti_SysBIOS_KNL_Task_initStackFlag___C                    
    000004fc ti_SysBIOS_KNL_Task_numConstructedTasks__C                 
    1001a615 ti_SysBIOS_KNL_Task_postInit___I                       
    1001b739 ti_SysBIOS_KNL_Task_processorVitalTaskFlag__I                 
    1001be29 ti_sysbios_KNL_Task_restoreHwi__E                      
    1001ba49 ti_sysbios_KNL_Task_restore__E                       
    1001b175 ti_SysBIOS_KNL_Task_schedule__i                       
    1001c1e5 ti_sysbios_KNL_Task_self_E                         
    00006005 ti_SysBIOS_KNL_Task_setPri__E                        
    1001bf81 ti_sysbios_KNL_Task_sleepTimeout__i                     
    1001a96d ti_SysBIOS_KNL_Task_sleep_E                        
    1001ae75 ti_sysbios_KNL_Task_startCore__E                      
    1001c309 ti_SysBIOS_KNL_Task_startup___E                       
    1001ca71 ti_sysbios_KNL_Task_swapReturn                       
    1001b9a5 ti_sysbios_KNL_Task_unblocki__E                       
    1001bfb5 ti_sysbios_KNL_Task_unb阻断__E                       
    1001b3a9 ti_sysbios_KNL_Task_yield __E                        
    00000590 ti_SYSBIOS_ROM_ROM_AONRTCChannelEnable                   
    00000594 ti_SysBIOS_ROM_ROM_AONRTCCompareValueSet                  
    00000598 ti_SYSBIOS_ROM_ROM_AONRTCCurrentCompareValueGet               
    0000059c ti_sysbios_rom_rom_AONRTCEventClear                     
    000005a0 ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E     
    000005a4 ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E   
    000005a8 ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E    
    000005ac ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_initDevice__i     
    000005b0 ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E    
    000005b4 ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_setThreshold___i    
    000005b8 ti_sysbios_rom_rom_ti_sysbios_family_arm_cc26xx_Timer_start__E       
    000005bc ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E
    000005c0 ti_sysbios_rom_rom_xdc_runtime_Startup_getState__i             
    000005c4 ti_sysbios_rom_rom_xdc_runtime_System_SupportProxy_abort__e_E         
    000005c8 ti_sysbios_rom_rom_xdc_runtime_System_SupportProxy_exit___e_E         
    00008c1b ti_SYSBIOS_ROM_cortexm_cc26xx_CC26xx_BadRomRevision__E           
    0000b6e5 ti_SYSBIOS_ROM_cortexm_cc26xx_CC26xx_checkRevision___E            
    1001ca9b ti_sysbios_rom_cortexm_cc26xx_CC26xx_getRevision___E             
    20003314 timeout_start_ms                              
    20003f94 trngCC26XX 对象                              
    0000c60c trngDriverTable                               
    0000c2c4 txPowerTable                                
    0000c668 txPwrTbl                                  
    0000c41c uartCC26XXHWAttrs                              
    20003b28 uartCC26XX 对象                              
    20001b48 用户0Cfg                                  
    0000a5b1 utilExtUuid16                              
    0000c294 validRangeUUID                               
    0000c618 watchdogCC26XHwAttrs                            
    20003ef4 安全 dogCC26XX 对象                            
    0000b8d5 wdtCallback                                 
    0000ba71 写入注册                                  
    20003630 WRITE_VALUE                                 
    00000524 XDC_runtime assert_E_assertFlail__C                    
    1001c5a9 XDC_runtime_assert_arc__I                         
    1001c6ed XDC_runtime_Core_assignLabel__I                       
    1001c5F1 xdc_runtime_Core_赋 值 Params__I                      
    1001c639 XDC_runtime_Core_constructObject__I                     
    1001c405 XDC_runtime_Core_CreateObject__I                      
    1001c4f9 xdc_runtime_Core_deleteObject__I                      
    1001c7a1 XDC_runtime_Core_析 构对象__I                     
    00000528 XDC_RAuntime_Error_E_MEMORY__C                        
    1001c7b9 XDC_runtime_Error_check__E                         
    1001c841 XDC_runtime_Error_init__E                          
    0000052c XDC_runtime Error_policyFxn__C                       
    1001c487 XDC_runtime_Error_PolicySpin__E                       
    0000058c XDC_RAuntime_Error_policy___C                         
    1001c769 XDC_runtime_Error_raiseX__E                         
    1001c885 XDC_runtime_Gate_enterSystem__E                       
    1001c879 XDC_runtime_Gate_leaveSystem__E                       
    00000530 XDC_runtime _IGateProvider_Interface_base__C                
    00000534 XDC_runtime IHeap_Interface_base__C                    
    00000538 XDC_runtime IModule_Interface_base__C                   
    0000c684 XDC_runtime_Log_L_info__C                          
    UNDEFED XDC_RAUNTIME_Main_Module_GateProxy_Handle__label_S             
    UNDEFED XDC_RAUNTIME_Main_Module_GateProxy_Object_Delete_S             
    UNDEFED XDC_RAUNTIME_Main_Module_GateProxy_query_E                 
    0000053c XDC_RAuntime_Main_Module_diagsEnabled___C                  
    00000540 XDC_RAuntime_Main_Module_diagsIncluded__C                  
    00000544 XDC_RAuntime_Main_Module_diagsMask__C                    
    00000584 XDC_runtime Main 模块_id__C                       
    0000c6a4 XDC_runtime_Main_Module_logger Defined___C                  
    0000c688 XDC_runtime_Main_Module_loggerFxn2__C                   
    0000c68c XDC_runtime_Main_Module_loggerFxn4__C                   
    0000c690 XDC_runtime_Main_Module_loggerObj__C                    
    1001bc89 XDC_runtime_Memory_HeapProxy_handle__label_S                
    UNDEFED XDC_RAUNTIME_Memory_HeapProxy_Handle__label_S__man翻转_          
    1001bca9 XDC_runtime 内存_HeapProxy_Object__delime_S               
    UNDEFED XDC_RAUNTIME_Memory_HeapProxy_Object__delete _S__man翻转_          
    1001c889 XDC_runtime_Memory_HeapProxy_alloc__E                    
    1001c88d XDC_runtime_Memory_HeapProxy_free__E                    
    00000586 XDC_RAuntime_Memory_Module_id__C                      
    20000200 XDC_RAuntime_Memory_Module_state__V                     
    1001c489 XDC_runtime_Memory_alloc__E                         
    1001c84d XDC_runtime_Memory_calloc__E                        
    00000548 XDC_RAuntime_Memory_defaultHeapInstance___C                  
    1001c801 XDC_runtime_Memory_free_e_E                         
    1001c859 XDC_runtime_Memory_getMaxDefaultTypeAlign__E                
    1001c785 XDC_runtime_Memory_valloc__E                        
    200001f0 XDC_RAuntime_Startup_Module_state__V                    
    00000001 XDC_RAuntime_Startup__EXECFXN__C                       
    00000001 XDC_Runtime_Startup__RESETFXN__C                      
    0000054c XDC_RAuntime_Startup_execImpl__C                       
    1001c559 XDC_runtime_Startup_exec__E                         
    0000b90d XDC_runtime_Startup_exec__I                         
    0000c624 XDC_runtime_Startup_firstFxns__A                      
    00000514 XDC_RAuntime_Startup_firstFxns__C                      
    000081a5 XDC_RAuntime_Startup_getState__I                       
    0000051c XDC_RAuntime_Startup_lastFxns__C                       
    00000550 XDC_RAuntime_Startup_maxPasses__C                      
    0000bcb5 XDC_runtime_Startup_reset__i                        
    0000bcc1 XDC_Runtime_Startup_rtsDone__E                       
    0000c448 XDC_Runtime_Startup_sfxnRts__A                       
    00000554 XDC_Runtime_Startup_sfxnRts__C                       
    0000c310 xdc_runtime_Startup_sfxnTab__A                       
    00000558 XDC_runtime 启动 sfxnTab__C                       
    0000055c XDC_runtime 启动_startModsFxn__C                     
    1001c30d XDC_runtime_Startup_startMods__I                      
    00000560 XDC_runtime SysCallback_abortFxn__C                     
    1001c811 XDC_Runtime_SysCallback_abort__E                      
    00009103 XDC_runtime SysCallback_defaultAbort                    
    000099c7 XDC_runtime_SysCallback_defaultExit                     
    00000564 XDC_runtime SysCallback_exitFxn__C                     
    1001c821 XDC_runtime_SysCallback_exit___E                       
    1001bbe9 xdc_runtime_System_Module_GateProxe_Handle__label__S            
    UNDEFED XDC_RAUNTIME_System_Module_GateProxe_Handle__label_S__man翻转_       
    1001bc09 XDC_runtime_System_Module_GateProxy_Object__delete_S            
    UNDEFED XDC_RAUNTIME_System_Module_GateProxy_Object__delete _S__man翻转_      
    1001c891 XDC_runtime_System_Module_GateProxy_ENTER_E                
    1001c895 xdc_runtime_System_Module_GateProxy_leave __E                
    1001c269 XDC_runtime_System_Module_GateProxy_query_E                
    UNDEFED XDC_RAUNTIME_System_Module_GateProxy_query_E__man翻转_           
    200001f8 XDC_RAuntime_System_Module_state__V                     
    1001c87f XDC_runtime_System_Module_startup___E                    
    UNDEFED XDC_RAUNTIME_System_SupportProxy_abort__E                  
    UNDEFED XDC_RAUNTIME_System_SupportProxy_exit__E                   
    00000568 XDC_runtime System_abortFxn__C                       
    1001c899 XDC_runtime_System_abortSpin__E                       
    00008565 XDC_runtime System_abortStd__E                       
    1001c749 XDC_runtime_System_abort__E                         
    1001c681 XDC_runtime_System_atexit__E                        
    0000056c XDC_runtime System_exitFxn__C                        
    1001c89b XDC_runtime_System_exitSpin__E                       
    0000856d XDC_runtime System_exitStd__E                        
    1001c7d1 XDC_runtime_System_exit__E                         
    00000570 XDC_runtime System_maxAtexitHandlers__C                   
    1001c6b9 xdc_runtime_System_processAtExit___E                     
    00000588 XDC_Runtime_text_charCnt___C                         
    0000c6a6 XDC_runtime_text_charTab__A                         
    00000574 XDC_runtime text_charTab___C                         
    1001c71d XDC_runtime_text_ordinate_e                        
    0000058a XDC_runtime text_isLoaded___C                        
    00000578 XDC_runtime 文本名称 Empty__C                        
    0000057c XDC_runtime 文本名称 Static__C                       
    00000580 XDC_runtime 文本名称未知__C                       
    1001c7e9 xdc_runtime_text_ropeText__E                        
    1001c831 xdc_runtime_Timestamp_SupportProxy_get32__E                 
    0000bb6f XDC_runtimestamp_SupportProxy_get32_E__manifed__           
    1001b9d1 XDC_runtimestamp_SupportProxy_get64__E                 
    UNDEFED XDC_RAUNTIME_Timestamp_SupportProxy_get64_E__man翻转_           
    1001c12f XDC_runtimestamp_SupportProxy_getFreq__E                
    UNDEFED XDC_RAUNTIME_Timestamp_SupportProxy_getFreq_E__man翻转_          
    1001c831 XDC_runtimestamp_get32__E                       
    UNDEFED XDC_RAUNTIME_Timestamp_get32__E                       
    1001b9d1 XDC_runtimestamp_get64__E                       
    UNDEFED XDC_RAUNTIME_Timestamp_get64__E                       
    1001c12f XDC_runtimestamp_getFreq__E                      
    UNDEFED XDC_RAUNTIME_Timestamp_getFreq__E                      
    10015d19 zADD                                    
    10015eb5 zADD32                                   
    10015de9 zMACC32                                   
    10015f0d zMULT32                                   
    10015bcd zSET                                    
    10015d5d zSUB                                    
    10015e69 zSUB32                                   
    20003f70 zanConfig_active                              
    0000c5cc zanConfig_default                              
    全局符号:按符号地址排序  
    地址名称                                     
    ----  ----                                    
    00000000 _ASM__                                   
    00000000 ti_SYSBIOS_family_ARM_m3/Hwi_resetVectors                  
    00000001 XDC_RAuntime_Startup__EXECFXN__C                       
    00000001 XDC_Runtime_Startup__RESETFXN__C                      
    0000007e __ISA__                                   
    00000090 __PLAT__                                  
    000000b7 __TAGR__                                  
    000000dc __TRDR__                                  
    000000fd GATTServApp_AddService                           
    00000100 ti_SysBIOS_KNL_Task_Object_Params__C                    
    0000013c ti_sysbios_KNL_Mailbox_Object_Params__C                  
    00000170 ti_sysbios_family_arm_m3/Hwi_Object_Params__C               
    000001a0 ti_sysbios_hal_hwi_Object_Params__C                    
    000001cc ti_sysbios_堆_HeapMem_Module_Fxns__C                  
    000001f4 ti_sysbios_KNL_Swi_Object_Params__C                    
    0000021c ti_sysbios_gates_GateHwi_Module_Fxns__C                  
    00000240 ti_sysbios_gates_GateMutex_Module_Fxns__C                 
    00000264 ti_sysbios_堆_HeapMem_Object_Params__C                 
    00000288 ti_SysBIOS_KNL_Clock_Object_Params__C                   
    000002ac ti_SYSBIOS_KNL_Semaphore_Object_PARAMS__C                 
    000002d0 ti_SysBIOS_family_ARM_m3/Hwi_Object_DESC_C                
    000002f0 ti_SysBIOS_Gates_GateHwi_Object_DESC_C                  
    00000310 ti_SysBIOS_Gates_GateMutex_Object_DESC_C                 
    00000330 ti_sysbios_hal_hwi_Object_DESC_C                     
    00000350 ti_sysbios_堆_HeapMem_Object_DESC_C                  
    00000370 ti_SysBIOS_KNL_Clock_Object__Desc_C                    
    00000390 ti_SysBIOS_KNL_Mailbox_Object__Desc_C                   
    000003b0 ti_SysBIOS_KNL_Queue_Object_DESC_C                    
    000003d0 ti_SysBIOS_KNL_Semaphore_Object_DESC_C                  
    000003f0 ti_SysBIOS_KNL_Swi_Object_DESC_C                     
    00000400 __STACK_SIZE                                
    00000410 ti_SysBIOS_KNL_Task_Object_DESC_C                     
    00000430 ti_sysbios_gates_GateHwi_Object_Params__C                 
    00000448 ti_sysbios_gates_GateMutex_Object_Params__C                
    00000460 ti_SysBIOS_KNL_Queue_Object_Params__C                   
    00000478 ti_SysBIOS_KNL_Idle_funclist___C                       
    00000484 ti_sysbios_family_arm_cc26xx_Timer_startupNeed__C             
    00000488 ti_sysbios_family_arm_m3/hwi_E_alreadyDefined___C              
    0000048c ti_sysbios_family_arm_m3/hwi_E_hwiLimitExceleed___C             
    00000490 ti_sysbios_family_arm_m3/hwi_NUM_interrupts__C               
    00000494 ti_sysbios_family_arm_m3/Hwi_Object_count_C                
    00000498 ti_sysbios_family_arm_m3/Hwi_Object_Table__C                
    0000049c ti_SysBIOS_family_ARM_m3/Hwi_CCR__C                     
    000004a0 ti_sysbios_family_arm_m3/hwi_exHandlerFunc__C               
    000004a4 ti_sysbios_family_arm_m3/hwi_nullIsrFunc__C                 
    000004a8 ti_sysbios_family_arm_m3/hwi_numSparseInterrupts__C             
    000004ac ti_sysbios_family_arm_m3/hwi_priGroup__C                  
    000004b0 ti_sysbios_family_arm_m3/taskSupport_stackAlignment__C           
    000004b4 ti_sysbios_b堆_HeapMem_E_memory__C                    
    000004b8 ti_sysbios_b堆_HeapMem_Module_gateObj__C                 
    000004bc ti_sysbios_堆_HeapMem_Object_count__C                  
    000004c0 ti_sysbios_堆_HeapMem_Object__table__C                  
    000004c4 ti_sysbios_堆_HeapMem_reqAlign___C                    
    000004c8 ti_SysBIOS_KNL_Clock_serviceMargin__C                    
    000004cc ti_SysBIOS_KNL_Mailbox_Object_count__C                   
    000004d0 ti_sysbios_KNL_Mailbox_Object__table__C                   
    000004d4 ti_SysBIOS_KNL_Queue_Object_count__C                    
    000004d8 ti_sysbios_KNL_Queue_Object_Table__C                    
    000004dc ti_sysbios_KNL_Swi_Object_count__C                     
    000004e0 ti_SysBIOS_KNL_Swi_Object__table__C                     
    000004e4 ti_SysBIOS_KNL_Swi_numPriorities __C                     
    000004e8 ti_SysBIOS_KNL_Task_Object_count__C                    
    000004ec ti_sysbios_KNL_Task_Object_Table__C                    
    000004f0 ti_SysBIOS_KNL_Task_allBrokedFunc__C                    
    000004f4 ti_SysBIOS_KNL_Task_defaultStackHeap___C                   
    000004f8 ti_sysbios_KNL_Task_defaultStackSize__C                   
    000004fc ti_SysBIOS_KNL_Task_numConstructedTasks__C                 
    00000501 DefaultAssertBack                             
    00000502 ti_sysbios_family_arm_cc26xx_Timer_Module_id__C              
    00000504 ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C       
    00000506 ti_sysbios_family_arm_m3/hwi_Module_id__C                 
    00000508 ti_sysbios_gates_GateHwi_Module_id__C                   
    0000050a ti_sysbios_gates_GateMutex_Module_id__C                  
    0000050c ti_sysbios_堆_HeapMem_Module_id__C                   
    0000050e ti_SysBIOS_KNL_Task_initStackFlag___C                    
    00000510 ti_SysBIOS_KNL_Clock_tickMode___C                      
    00000514 XDC_RAuntime_Startup_firstFxns__C                      
    0000051c XDC_RAuntime_Startup_lastFxns__C                       
    00000524 XDC_runtime assert_E_assertFlail__C                    
    00000528 XDC_RAuntime_Error_E_MEMORY__C                        
    0000052c XDC_runtime Error_policyFxn__C                       
    00000530 XDC_runtime _IGateProvider_Interface_base__C                
    00000534 XDC_runtime IHeap_Interface_base__C                    
    00000538 XDC_runtime IModule_Interface_base__C                   
    0000053c XDC_RAuntime_Main_Module_diagsEnabled___C                  
    00000540 XDC_RAuntime_Main_Module_diagsIncluded__C                  
    00000544 XDC_RAuntime_Main_Module_diagsMask__C                    
    00000548 XDC_RAuntime_Memory_defaultHeapInstance___C                  
    0000054c XDC_RAuntime_Startup_execImpl__C                       
    00000550 XDC_RAuntime_Startup_maxPasses__C                      
    00000554 XDC_Runtime_Startup_sfxnRts__C                       
    00000558 XDC_runtime 启动 sfxnTab__C                       
    0000055c XDC_runtime 启动_startModsFxn__C                     
    00000560 XDC_runtime SysCallback_abortFxn__C                     
    00000564 XDC_runtime SysCallback_exitFxn__C                     
    00000568 XDC_runtime System_abortFxn__C                       
    0000056c XDC_runtime System_exitFxn__C                        
    00000570 XDC_runtime System_maxAtexitHandlers__C                   
    00000574 XDC_runtime text_charTab___C                         
    00000578 XDC_runtime 文本名称 Empty__C                        
    0000057c XDC_runtime 文本名称 Static__C                       
    00000580 XDC_runtime 文本名称未知__C                       
    00000584 XDC_runtime Main 模块_id__C                       
    00000586 XDC_RAuntime_Memory_Module_id__C                      
    00000588 XDC_Runtime_text_charCnt___C                         
    0000058a XDC_runtime text_isLoaded___C                        
    0000058c XDC_RAuntime_Error_policy___C                         
    00000590 ti_SYSBIOS_ROM_ROM_AONRTCChannelEnable                   
    00000594 ti_SysBIOS_ROM_ROM_AONRTCCompareValueSet                  
    00000598 ti_SYSBIOS_ROM_ROM_AONRTCCurrentCompareValueGet               
    0000059c ti_sysbios_rom_rom_AONRTCEventClear                     
    000005a0 ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E     
    000005a4 ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E   
    000005a8 ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E    
    000005ac ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_initDevice__i     
    000005b0 ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E    
    000005b4 ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_setThreshold___i    
    000005b8 ti_sysbios_rom_rom_ti_sysbios_family_arm_cc26xx_Timer_start__E       
    000005bc ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E
    000005c0 ti_sysbios_rom_rom_xdc_runtime_Startup_getState__i             
    000005c4 ti_sysbios_rom_rom_xdc_runtime_System_SupportProxy_abort__e_E         
    000005c8 ti_sysbios_rom_rom_xdc_runtime_System_SupportProxy_exit___e_E         
    000005cc ti_sysbios_gates_GateMutex_instance_State_SEM_O              
    000005d0 ti_SysBIOS_KNL_Clock_Module_State_clockQ_O                 
    000005d4 ti_sysbios_KNL_Mailbox_instance_State_dataQue_O              
    000005d8 ti_sysbios_KNL_Mailbox_instance_State_dataSem__O              
    000005dc ti_sysbios_KNL_Mailbox_instance_State_freeQue_O              
    000005e0 ti_sysbios_KNL_Mailbox_instance_State_freeSem_O              
    000005e4 ti_SysBIOS_KNL_Semaphore_Instance_State_PendQ_O              
    000005e8 ti_SysBIOS_KNL_Task_Module_State_InactiveQ_O                
    00001ab1 VL53L0xDefaultSettings                           
    00001d35 I2CCC26XX_transfer                             
    00001f99 flash_local_clear_wsh_wify_data_data                      
    000021e1 GAPRole_SetParameter                            
    0000241d Power_sleep                                 
    00002645 NOROM_SysCtrlSetRechargeBeforePowerDown                   
    00002849 I2CCC26XX_OPEN                               
    00002a3d __aeabi_uldivmod                              
    00002fcd PIN_INIT                                  
    00003175 RF_CancelCmd                                
    0000331d NVSCC26XX_WRITE                               
    000034BD UARTCC26XX_OPEN                               
    0000364d PowerCC26XX_doCalibrate                           
    000037d1 RF_postCmd                                 
    00003941 RestDeviceCount_ClockHandler                        
    00003bc9 __aeabi_ddiv                                
    00003cff NVSCC26XX_CLOSE                               
    00003d01 NOROM_SetupAfterColdResetWakeupFromShutDownCfg3.               
    00003e31 VL53L0X_INIT                                
    00003f59 Power_init                                 
    00004075 Range_Sensor_Read                              
    000042a1 ValidateSensorRead                             
    000044c1 VL53L0X_getSpadInfo                             
    000046d9 Init_Peripherals                              
    000047e1 Validate_SensorRead                             
    000048e1 Init_clocksystem                              
    000049dd UARTCC26XX_WRITE                              
    00004bd5 _aeabi_fsub                                
    00004bd9 __aeabi_fadd                                
    00004ccf NVSCC26XX_EXIT                               
    00004eb5 UARTCC26XX_hwiIntFxn                            
    00004fa1 VL53L0X_readRangeSingleMillbill                     
    00005349 NOROM_SetupAfterColdResetWakeupFromShutDownCfg2               
    0000541d Power_releaseDependency                           
    000054F1 I2CCC26XX_CLOSE                               
    000055c1 Power_setDependency                             
    000058ed 压力传感器读数                           
    00005a75 RF_OPEN                                   
    00005b35 PowerCC26XX_standbyPolicy                          
    00005bF1 UARTCC26XX_READ                               
    00005ec1 NOROM_SetupTrimDevice                            
    00005ec1 ti_sysbios_family_arm_cc26xx_Boot_trimDevice                
    00005f65 __TI_auto_init                               
    00006005 ti_SysBIOS_KNL_Task_setPri__E                        
    000060a5 NOROM_AUXADCDisable                             
    00006141 __aeabi_memcpy                               
    00006141 __aeabi_memcpy4.                               
    00006141 __aeabi_memcpy8.                               
    00006141 memcpy                                   
    000061dd NOROM_AUXADCableSync                           
    00006275 PIN_OPEN                                  
    0000630d SensorTagIO_processCharChangeEvt                      
    000063a5 ti_SysBIOS_KNL_Clock_workFuncDynamic__E                   
    0000643d GATTServApp_ProcessCharCfg                         
    000064d1 NVSCC26XX_OPEN                               
    000065f9 __aeabi_fdiv                                
    000067ad DevInfo_SetParameter                            
    000068c5 UARTCC26XX_writeCancel                           
    00006951 I2CCC26XX_CANCEL                              
    000069d9 NOROM_OSCHF_GetStartupTime                         
    000069d9 PowerCC26XX_getXoscStartupTime                       
    00006a61 SensorTagRegister_processCharChangeEvt                   
    00006b71 __aeabi_cdrcmple                              
    00006bf7 看门狗 CC26XX_Close                            
    00006bf9 iCall_heapMalloc                              
    00006d01 TRNGCC26XX_getNumber                            
    00006d85 RF_PendCmd                                 
    00006e05 SensorTagBar_processCharChangeEvt                      
    00006e85 SensorTagHum_processCharChangeEvt                      
    00006f81 __aeabi_fmul                                
    00006ffb __aeabi_memclr                               
    00006ffb __aeabi_memclr4.                               
    00006ffb __aeabi_memclr8.                               
    00006ffd __aeabi_memset                               
    00006ffd __aeabi_memset4.                               
    00006ffd __aeabi_memset8.                               
    00007003 内存集                                   
    00007075 NOROM_SetupAfterColdResetWakeupFromShutdownCfg1               
    000070ed UARTCC26XX_CLOSE                              
    00007165 ICallPlatform_pwrUpdActivityCounter                     
    0000724d PowerCC26XX_auxISR                             
    000072c1 SensorTagRegister_reset                           
    00007491 NOROM_ChipInfo_GetHwRevision                        
    00007501 UARTCC26XX_readCancel                            
    00007571 Board_writeString                              
    000075dd Board_writeStringValue                           
    00007649 iCall_createRemoteTasks                           
    000076b5 iCall_heapInit                               
    00007721 NOROM_SetupGetTrimForAmpcompCtrl                      
    0000778d PowerCC26XX_CALIBRATE                            
    000077f9 PublishCount_ClockHandler                          
    00007865 SensorTagTmp_processCharChangeEvt                      
    000079a9 NOROM_SetupGetTrimForAnabypassValue1                    
    00007a11 NOROM_SYSCTRL_DCDC_VoltageConditionalControl                
    00007b49 IRTemp_SetParameter                             
    00007c11 ti_sysbios_family_arm_cc26xx_Timer_start__E                 
    00007d99 PowerCC26XX_RCOSC_clockFunc                         
    00007df9 RF_getCurrentTime                              
    00007e59 VL53L0XI2cInit                               
    00007eb9 __aeabi_cfcmpeq                               
    00007eb9 __aeabi_cfcmple                               
    00007f79 看门狗 CC26XX_OPEN                             
    00007fd7 ti_SysBIOS_BIOS_linkedWithIncorrectBootLibrary__E              
    00008035 NOROM_OSCHF_AttempToSwitchToXosc                      
    00008091 NOROM_SysCtrlAdjustRechargeAfterPowerDown                  
    000081a5 XDC_RAuntime_Startup_getState__I                       
    000082b5 PIN_REMOVE                                 
    0000830d PowerCC26XX_initiateCalibration                       
    00008365 UARTCC26XX_CONTROL                             
    000083bd Barometer_SetParameter                           
    00008561 C$$EXIT                                   
    00008565 中止                                    
    00008565 XDC_runtime System_abortStd__E                       
    0000856d 退出                                    
    0000856d XDC_runtime System_exitStd__E                        
    00008607 ti_SysBIOS_BIOS_nullFunc__I                         
    00008609 GAP_DeviceInit                               
    00008659 GAP_UpdateAddisingData                          
    000086a9 湿度_设置参数表                            
    00008749 NOROM_SetupSetCacheModeAccordingToCcfgSeting                
    00008799 RF_getinfo                                 
    000088d7 ti_SysBIOS_KNL_Clock_triggerFunc__i                     
    00008971 NOROM_OSCClockSourceSet                           
    00008a09 UARTCC26XX_swiIntFxn                            
    00008a55 Util_constructClock                             
    00008b39 copy_in                                   
    00008bd1 GATTServApp_ProcessCCCWriteReq                       
    00008c1b ti_SYSBIOS_ROM_cortexm_cc26xx_CC26xx_BadRomRevision__E           
    00008c65 Init_Capacitivesensor 系统                        
    00008cad NOROM_ChipInfo_GetChipFamily                        
    00008cf5 NOROM_DDI16BitfieldWrite                          
    00008d3d VL53L0X_readMulti                              
    00008d85 VL53L0X_setSignalRateLimit                         
    00008e5d GAP_TerminateLinkReq                            
    00008ea1 NVSCC26XX_CONTROL                              
    00008e5 NVSCC26XX_READ                               
    00008f29 PIN_setOutputEnable                             
    00008fb1 SensorTagIO_BLinkLed                            
    00008ff5 ResetISR                                  
    00008ff5 _c_int00                                  
    0000907d __aeabi_d2uiz                                
    00009103 XDC_runtime SysCallback_defaultAbort                    
    00009105 GAPRole_SendUpdateParam                           
    00009145 GAPRole_createTask                             
    00009185 NOROM_DDI16BitfieldRead                           
    000091c5 rf_getRssi                                 
    00009205 SensorTagIO_RESET                              
    00009285 GAP_GetParamValue                              
    000092c1 GATTServApp_RegisterService                         
    000092fd ICallPlatform_pwrConfigACAction                       
    00009339 NOROM_OSC_HPOSCRelativeOffsetGet                  
    00009375 NOROM_RFCSynthPowerDown                           
    000093b1 RF_runCmd                                  
    000093ed Register_SetParameter                            
    00009429 SensorTagBar_createTask                           
    00009465 SensorTagHum_createTask                           
    000094a1 SensorTag_createTask                            
    000094dd VL53L0XI2cWriteRead                             
    00009519 WDTInitFxn                                 
    00009555 ZanInit                                   
    00009681 GAPBondMgr_LinkEst                             
    000096b9 I2C_init                                  
    00009729 NVS_INIT                                  
    00009761 PIN_setOutputValue                             
    00009799 UART_INIT                                  
    000097d1 Util_restartClock                              
    00009809 VL53L0XI2cWrite                               
    00009841 Watchdog_init                                
    00009879 linkDB_NumConns                               
    000098e9 __aeabi_f2iz                                
    00009921 ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E            
    000099c7 XDC_runtime_SysCallback_defaultExit                     
    000099c9 GAPBondMgr_SetParameter                           
    000099fd GAP_SetParamValue                              
    00009b01 iCall_searchServiceEntity                          
    00009b35 IO_SetParameter                               
    00009b69 NOROM_DDI32RegWrite                             
    00009b9d NOROM_OSCHF_SwitchToRcOscTurnOffXosc                    
    00009bd1 PowerCC26XX_isStableXOSC_HF                         
    00009c39 Register_getParameter                            
    00009c6d VL53L0XI2cRead                               
    00009cd5 osal_SNV_read                                
    00009d09 osal_SNV_WRITE                               
    00009d71 __aeabi_f2uiz                                
    00009e9f ti_SysBIOS_family_ARM_cc26xx_Timer_setNextTick___E              
    00009f01 ICallPlatform_pwrRegisterNotify                       
    00009f91 NOROM_SetupSetAonRtcSubSecInc                        
    00009fc1 NOROM_TRNGConfigure                             
    00009ff1 NVS_OPEN                                  
    0000a021 Power_releaseConstraint                           
    0000a051 Power_setConstraint                             
    0000a0e1 UART_open                                  
    0000a111 看门狗 CC26XX_setReload                          
    0000a141 安全装置_打开                                
    0000a171 ti_SysBIOS_BIOS_atExitFunc__I                        
    0000a1a1 ti_SysBIOS_BIOS_startFunc__I                        
    0000a1d1 ti_sysbios_family_arm_cc26xx_Timer_initDevice__I              
    0000a201 ti_sysbios_family_arm_cc26xx_Timer_setThreshold___i             
    0000a345 __aeabi_i2d                                 
    0000a375 Board_openUART                               
    0000a3a1 iCall_freeImpl                               
    0000a3a1 iCall_heapFree                               
    0000a4a9 NOROM_SetupGetTrimForRadcExtCfg                       
    0000a4d5 PINCC26XX_setMux                              
    0000a501 PIN_setConfig                                
    0000a52d SafeHapiAuxAdiSelect                            
    0000a585 ti_SysBIOS_KNL_Clock_getTicksUntilInterrupt__E               
    0000a5b1 utilExtUuid16                              
    0000a607 TRNGCC26XX_isParamValid                           
    0000a631 Util_enqueueMsg                               
    0000a685 GAPBondMgr_Register                             
    0000a6ad GATTServApp_WriteCharCfg                          
    0000a6d5 Get_Data_FAR_Flash                             
    0000a6fd iCall_init                                 
    0000a7ed IO_addService                                
    0000a815 NOROM_AONBatMonTemperatureGetDegC                      
    0000a83d PINCC26XX_getPinCount                            
    0000a865 PowerCC26XX_switchXOSC_HF                          
    0000a88d Power_registerNotify                            
    0000a8b5 SafeHapiVoid                                
    0000a8dd SensorTagBar_reset                             
    0000a905 SensorTagHum_reset                             
    0000a955 TRNGCC26XX_INIT                               
    0000a97d VL53L0XI2cwriteReg                             
    0000a9a5 看门狗 CC26XX_convertMsToTicks                       
    0000a9cd Write_Data_TO_Flash                             
    0000aa45 main                                    
    0000aa6d ti_SysBIOS_family_ARM_cc26xx_Timer_getMaxTicks__E              
    0000aa95 List_Put                                  
    0000aabd Barometer_getParameter                           
    0000aae1 GAPBondMgr_LinkTerm                             
    0000ab05 I2C_open                                  
    0000ab71 SensorTagRegister_update                          
    0000abdd __aeabi_ui2f                                
    0000ac01 ti_SysBIOS_BIOS_registerRTSLock__I                     
    0000ac25 ti_SysBIOS_BIOS_removeRTSLock__i                      
    0000acaf memcmp                                   
    0000acd1 ADC_Init                                  
    0000ad11 GATTServApp_InitCharCfg                           
    0000ad31 湿度_ getParameter                            
    0000adF1 IRTemp_getParameter                             
    0000ae11 NOROM_RFCDoorbellSendto                           
    0000ae31 NOROM_RFCRfTrimRead                             
    0000ae51 NOROM_SetupGetTrimForXoscHfCtl                       
    0000ae71 Power_unregisterNotify                           
    0000ae91 SensorTagTmp_reset                             
    0000aeb1 adcIsr                                   
    0000aef1 __aeabi_ui2d                                
    0000af11 ti_SysBIOS_BIOS_rtsLock__I                         
    0000af31 ti_SysBIOS_KNL_Clock_stop__E                        
    0000af6f PIN_CLOSE                                  
    0000af8d Power_getTransitionLatency                         
    0000afc9 GAPRole_StartDevice                             
    0000afe5 GATT_BM_alloc                                
    0000b001 GATT_BM_FREE                                
    0000b071 NOROM_FlashProgram                             
    0000b08d NOROM_FlashSecorErase                           
    0000b0a9 NOROM_OSCClockSourceGet                           
    0000b0c5 NOROM_SetupGetTrimForAmpcompTh2.                       
    0000b0e1 NOROM_SetupGetTrimForRcOscLfRtuneCTuneTrim                 
    0000b0fd NVSCC26XX_getAttrs                             
    0000b151 RF_runDirectCmd                               
    0000b16d RF_runImmediateCmd                             
    0000b189 SensorTagIO_init                              
    0000b1c1 TRNGCC26XX_OPEN                               
    0000b1dd th3_Clock_stop                              
    0000b24d openTRNG                                  
    0000b269 ti_SysBIOS_family_ARM_cc26xx_Timer_DynamicStudiob__E              
    0000b2a1 GATT_Notification                              
    0000b2bb iCall_enterCSImpl                              
    0000b2ef List_remove                                 
    0000b309 Util_dequeueMsg                               
    0000b33d GAPRole_TerminateConnection                         
    0000b355 I2C_Params_init                               
    0000b36d ICallPlatform_pwrDispense                          
    0000b385 ICallPlatform_pwrRequire                          
    0000b45d NOROM_AONRTCCurrentCompareValueGet                     
    0000b475 NOROM_ChipInfo_GetPackageType                        
    0000b48d NOROM_OSCHF_TurnOnXosc                           
    0000b4a5 NOROM_RFCCpeIntGetAndClear                         
    0000b4bd NOROM_SetupGetTrimForAdcShModeEn                      
    0000b4d5 NOROM_SetupGetTrimForAdcShVbufEn                      
    0000b4ed NOROM_SetupGetTrimForAmpcompTh1.                       
    0000b505 NOROM_SetupGetTrimForDblrLoopFilterResetVoltage               
    0000b51d NOROM_SetupGetTrimForRcOscLfIBiasTrim                    
    0000b535 NOROM_SetupGetTrimForXoscLfRegulatorAndCmirrorwrRatio             
    0000b54d NOROM_SysCtrlResetSourceGet                         
    0000b54d ti_SYSBIOS_family_ARM_cc26xx_Boot_getBootReasOn__E             
    0000b565 Power_idleFunc                               
    0000b595 Register_registerAppCBs                           
    0000b5ad UARTCC26XX_init                               
    0000b5c5 UART_Params_init                              
    0000b5dd Util_constructQueue                             
    0000b60d gapRole_clockHandler                            
    0000b66d _args_main                                 
    0000b685 __aeabi_lmul                                
    0000b6b5 ti_SysBIOS_BIOS_rtsUnlock___i                        
    0000b6cd ti_sysbios_KNL_Swi_or_e_e                          
    0000b6e5 ti_SYSBIOS_ROM_cortexm_cc26xx_CC26xx_checkRevision___E            
    0000b6fd AssertHandler                                
    0000b729 iCall_leaveCSImpl                              
    0000b755 driverTable_fnSpinlock                           
    0000b76b ti_SysBIOS_BIOS_exitFunc__I                         
    0000b781 DevInfo_AddService                             
    0000b795 IO_getParameter                               
    0000b7a9 IO_registerAppCB                              
    0000b7bd NOROM_AONRTCCurrent64BitValueGet                      
    0000b7d1 NOROM_ThisCodeIsBuiltForCC26xxHwRev22AndLater_HaltIf 紫色        
    0000b7e5 RF_PARAMS_INIT                               
    0000b7f9 Register_addService                             
    0000b821 SensorTag_updateAddisingData                       
    0000b885 _nop                                    
    0000b887 _register_unlock                              
    0000b88d _register_lock                               
    0000b899 strlen                                   
    0000b8c1 ti_sysbios_KNL_Clock_dotick__i                       
    0000b8d5 wdtCallback                                 
    0000b8e9 GATTServApp_FindAttr                            
    0000b8fb rf_getCmdOp                                 
    0000b90d XDC_runtime_Startup_exec__I                         
    0000b931 GAPRole_GetParameter                            
    0000b941 GAP_EndDiscoverable                             
    0000b951 GATTServApp_ReadCharCfg                           
    0000b961 ICallPlatform_pwrGetXOSCStartupTime                     
    0000b991 NOROM_AUXADCReadFifo                            
    0000b9a1 NOROM_RFCRfTrimSet                             
    0000b9b1 NOROM_SetupGetTrimForXoscHfFastStart                    
    0000b9c1 NOROM_SetupGetTrimForXoscHfIbiastherm                    
    0000b9d1 NVSCC26XX_INIT                               
    0000b9e1 RegisterAssertBack                             
    0000b9F1 SensorTagRegister_init                           
    0000ba01 Util_isActive                                
    0000ba11 WDTClose                                  
    0000ba21 看门狗 CC26XX_CLEAR                            
    0000ba31 Watchdog_Params_init                            
    0000ba51 ti_sysbios_family_arm_m3/hwi_post                    
    0000ba51 ti_SYSBIOS_hal_Hwi_HwiProxy_post__E                     
    0000ba51 ti_sysbios_hal_hwi_post _E                         
    0000ba71 写入注册                                  
    0000ba81 GATT_Indication                               
    0000ba8f ICallPlatform_pwrGetTransitionState                     
    0000ba9d ICallPlatform_pwrIsStableXOSCHF                       
    0000bae3 NOROM_SetupSignExtendVddrTrimValue                     
    0000baf1 NOROM_VIMSModeGet                              
    0000baff NVS_WRITE                                  
    0000bb0d VL53L0XI2creadReg                              
    0000bb1b __TI_decompress_none                            
    0000bb29 makeuint16.                                 
    0000bb6f ti_SYSBIOS_family_ARM_cc26xx_TimestampProvider_get32__E           
    0000bb6f XDC_runtimestamp_SupportProxy_get32_E__manifed__           
    0000bb89 GAP_MakeDiscoverable                            
    0000bb95 GAP_TerminateAuth                              
    0000bba1 GAP_UpdateLinkParamReq                           
    0000b 错误 GAP_UpdateLinkParamReqReply                         
    0000bbb9 GGS_SetParameter                              
    0000bc01 NOROM_CPUcpsid                               
    0000bc0d NOROM_CPUcpsie                               
    0000bc19 Power_getConstraintMask                           
    0000bc25 Power_getDependencyCount                          
    0000bc31 Power_getTransitionState                          
    0000bc55 SensorTag_testResult                            
    0000bc61 UartLog_init                                
    0000bc6d Util_startClock                               
    0000bc79 VL53L0XI2cDeselect                             
    0000bc91 ti_SysBIOS_BIOS_getThreadType__E                      
    0000bc9d ti_sysbios_hal_hwi_params__init__S                     
    0000bca9 ti_SysBIOS_KNL_Swi_getTrigger__E                      
    0000bcb5 XDC_runtime_Startup_reset__i                        
    0000bcc1 XDC_Runtime_Startup_rtsDone__E                       
    0000bccd I2CCC26XX_init                               
    0000bcd7 I2C_transfer                                
    0000bce1 ICallPlatform_pwrSwitchXOSCHF                        
    0000bcf5 List_empty                                 
    0000bcff NVS_READ                                  
    0000bd09 SensorTag_charValueChangeCB                         
    0000bd1d UART_WRITE                                 
    0000bd27 安全装置清零                               
    0000bd31 安全装置_close                               
    0000bd3b Watchdog_setReload                             
    0000bd45 rf_flushCmd                                 
    0000bd4d 看门狗 CC26XX_init                             
    0000bd7d GGS_AddService                               
    0000bd83 I2CCC26XX_CONTROL                              
    0000bd89 iCall_mallocImpl                              
    0000bd8f NOROM_CPUDELAY                               
    0000bd95 PIN_registerIntCb                              
    0000bd9b UARTCC26XX_readPolling                           
    0000bda1 UARTCC26XX_writePolling                           
    0000bda7 看门狗 CC26XX_CONTROL                           
    0000bdb3 __TI_decompress_rle24                            
    0000be13 ti_SYSBIOS_family_ARM_m3/Hwi_setFunc__E                   
    0000be19 Hwip_disable                                
    0000be1d List_head                                  
    0000be21 List_next                                  
    0000be29 Util_stopClock                               
    0000be2d ZanConfig_Read                               
    0000be39 ti_SYSBIOS_family_ARM_cc26xx_Timer_getCount64__E              
    0000be3d ti_SysBIOS_KNL_Clock_isActive__E                      
    0000be41 ti_SysBIOS_KNL_Queue_insert__E                       
    0000c150 resourceDB                                 
    0000c19c rfDriverTable                                
    0000c270 primaryServiceUUID                             
    0000ccharacter272 UUID                                
    0000c274 clientCharCfgUUID                              
    0000c276 gapServiceUUID                               
    0000c278 gattServiceUUID                               
    0000c27a secondaryServiceUUID                            
    0000c27c includeUUID                                 
    0000c27e charExtPropsUUID                              
    0000c280 charUserDescUUID                              
    0000c282 servCharCfgUUID                               
    0000c284 charFormatUUID                               
    0000c286 聚合格式 UUID                              
    0000c288 deviceNameUUID                               
    0000c28a appearanceUUID                               
    0000c28c periPrivacyFLAG1 UUID                             
    0000c28e reconnectAddrUUID                              
    0000c290 ConnperiParamUUID                              
    0000c292 serviceChangedUUID                             
    0000c294 validRangeUUID                               
    0000c296 extReportRefUUID                              
    0000c298 reportRefUUID                                
    0000c29c UARTCC26XX_fxnTable                             
    0000c2c4 txPowerTable                                
    0000c2eb NVS_defaultParams                              
    0000c2ec UART_defaultParams                             
    0000c310 xdc_runtime_Startup_sfxnTab__A                       
    0000c334 NVSCC26XX_fxnTable                             
    0000c354 BoardGpioInitTable                             
    0000c370 看门狗 CC26XX_fxnTable                           
    0000c38c I2CCC26XX_fxnTable                             
    0000c3a4 I2C_CONFIG                                 
    0000c3bc NVS_CONFIG                                 
    0000c3d4 UART_CONFIG                                 
    0000c3ec Watchdog_config                               
    0000c404 i2cCC26xxHWAttrs                              
    0000c41c uartCC26XXHWAttrs                              
    0000c448 XDC_Runtime_Startup_sfxnRts__A                       
    0000c45a ioConfUUID                                 
    0000c46a ioDataUUID                                 
    0000c47a ioServUUID                                 
    0000c58a devInfo11073CertUUID                            
    0000c58c I2C_defaultParams                              
    0000c59c PowerCC26XX_CONFIG                             
    0000c5ac TRNGCC26XX_CONFIG                              
    0000c5bc nvsCC26xxHWAttrs                              
    0000c5cc zanConfig_default                              
    0000c5da devInfoFirmwareRevUUID                           
    0000c5dc 设备信息中心                                 
    0000c5e8 Watchdog_defaultParams                           
    0000c5f4 iCBs                                    
    0000c60c trngDriverTable                               
    0000c618 watchdogCC26XHwAttrs                            
    0000c624 XDC_runtime_Startup_firstFxns__A                      
    0000c668 txPwrTbl                                  
    0000c66e devInfoHardwareRevUUID                           
    0000c670 TRNGCC26XHWAttrs                              
    0000c678 ti_SysBIOS_KNL_Clock_tickPeriod___C                     
    0000c67c ti_SysBIOS_KNL_Clock_triggerClock__C                    
    0000c680 ti_SysBIOS_KNL_Idle_funclist__A                       
    0000c684 XDC_runtime_Log_L_info__C                          
    0000c688 XDC_runtime_Main_Module_loggerFxn2__C                   
    0000c68c XDC_runtime_Main_Module_loggerFxn4__C                   
    0000c690 XDC_runtime_Main_Module_loggerObj__C                    
    0000c694 devInfoMfrNameUUID                             
    0000c696 devInfoModelNumberUUID                           
    0000c698 devInfoPnpIdUUID                              
    0000c69a devInfoSerialNumberUUID                           
    0000c69c devInfoServUUID                               
    0000c69e devInfoSoftwareRevUUID                           
    0000c6a0 devInfoSystemIdUUID                             
    0000c6a4 XDC_runtime_Main_Module_logger Defined___C                  
    0000c6a6 XDC_runtime_text_charTab__A                         
    0000c6a8 __TI_static_BASE__                             
    0000cf2c __TI_Handler_Table_Base                           
    0000cf34 __TI_CINIT_Base                               
    0000cf34 __TI_Handler_Table_Limit                          
    0000cf94 __TI_CINIT_LIMIT                              
    0000e0ea __CHECKSUM_VALUE CommonROM                         
    0001ffa8 _ccfg                                   
    10014c00 a1_rw                                    
    10014c00 __CHECKSUM_BEGIN_CommonROM                         
    10014c01 common_rom_base_ADDR                            
    10014c04 p1_ro                                    
    10014c05 SCALARMUL_INIT                               
    10014层 SCALARMUL_CORE                               
    10015019 SCALARMUL_FINAL                               
    100150e5 SCALARMUL                                  
    10015101 SAVEPOINT                                  
    10015141 GETBIT                                   
    10015155 GETDIGIT                                  
    100151a5 GETDIGITL2R                                 
    10015215 可选稳压器                                  
    10015229 ATOMICPATTERNS                                
    100154f5 JACADD                                   
    1001568d 反转                                   
    10015821 SQUAREMULTIPLYWORD                             
    1001588c LUTOPCODE                                  
    10015894 LUTOPSIN                                  
    100158ac LUTC                                    
    100158c4 LUTSE                                    
    100158DC LUTINCI                                   
    100158f4 LUTJ                                    
    1001596c LUTSTATE                                  
    100159a9 IMPORTLENGTH                                
    100159ad IMPORTMODULUS                                
    100159d1 IMPORTOPERAND                                
    10015a11 EXPORTOPERAND                                
    10015a35 IMPORTDATA                                 
    10015a51 SETOPERAND                                 
    10015a6d 副本                                    
    10015a85 零                                    
    10015a91 SETWORD                                   
    10015a9d mSET                                    
    10015bcd zSET                                    
    10015bd5 mINVK                                    
    10015d19 zADD                                    
    10015d5d zSUB                                    
    10015de9 zMACC32                                   
    10015e69 zSUB32                                   
    10015eb5 zADD32                                   
    10015f0d zMULT32                                   
    10015f81 MMULT                                    
    10016551 madd                                    
    1001664d mSUB                                    
    10016749 输出电流                                    
    10016975 SSP_KeyInit_SW                               
    10016979 sspAesEncrype_SW                              
    10016985 sspKeyExpansion 软件                             
    10016a99 sspAesEncryptKeyExp_SW                           
    10016af5 sspAesEncryptBasic_SW                            
    10016b79 RoundKey_SW                                 
    10016c29 AddRoundKeySubBytes_SW                           
    10016c45 ShiftRows_SW                                
    10016c79 MixColumns_SW                                
    10016d05 FFMULT_SW                                  
    10016d29 sspAesDecrypt_SW                              
    10016da1 InvAddRoundKey_SW                              
    10016dc9 InvRoundKey_SW                               
    10016e8d InvSubBytes_SW                               
    10016ea1 InvShiftRows_SW                               
    10016ed5 InvMixColumns_SW                              
    10016f58 FFMult2.                                   
    10017058 FFMult3.                                   
    10017158 RCon                                    
    10017164 SBOX                                    
    10017264 InvSbox                                   
    10017365 SSP_CCM_Auth 软件                               
    100174fd SSP_CCM_Encrypt_SW                             
    100175ed SSP_CTR_Encrypt_SW                             
    1001767d SSP_CCM_Decrype_SW                             
    10017771 SSP_CTR_Decrype_SW                             
    10017839 SSP_CCM_InvAuth 软件                             
    10017895 SSP_CCM_Auth 加密软件                           
    100178f5 SSP_CCM_InvAuth 解密_SW                         
    10017959 ecc_allocworkzone                              
    10017961 ECC_setWin                                 
    10017969 ECDSA_SIGN                                 
    10017b01 ECDSA_verif                                 
    10017dbd eccRom_genKeys                               
    10017分 式 eccRom_genSharedSecret                           
    10017e39 SHA256_updateW                               
    10017e75 SHA256_ROUND                                
    10017ef1 SHA256_nextState                              
    10017f49 SHA256_saveBuffer                              
    10017ffd SHA256_init                                 
    10018019 SHA256_Process                               
    10018089 SHA256_final                                
    10018129 SHA256_FULL                                 
    100182ad RFHAL_InitRfHal                               
    10018315 RFHAL_AllocRatChan                             
    1001833d RFHAL_FreeRatChan                              
    10018369 RFHAL_MapRatChansToInt                           
    10018391 RFHAL_RegisterRatChanCallback                        
    100183b9 RFHAL_InitDataQueue                             
    100183c5 RFHAL_QueueRFDataEntry                          
    10018415 RFHAL_AddTxDataEntry                            
    10018485 RFHAL_FreeNextTxDataEntry                          
    100184a9 RFHAL_AllocDataEntryQueue                          
    100184c5 RFHAL_FreeDataEntryQueue                          
    100184cd RFHAL_GetNextDataEntry                           
    100184d1 RFHAL_GetTempDataEntry                           
    100184d5 RFHAL_NextDataEntryDone                           
    100184f9 RFHAL_AllocDataEntry                            
    10018549 RFHAL_FreeDataEntry                             
    10018551 RFHAL_BuildRingBuffer                            
    100185e1 RFHAL_BuildDataEntryRingBuffer                       
    10018669 RFHAL_BuildLinkedIn 缓冲器                           
    10018755 MB_Init                                   
    10018799 MB_EnableInts                                
    100187f5 MB_DisableInts                               
    10018825 MB_ClearInts                                
    10018835 MB_EnableHWInts                               
    10018865 MB_SendCommand                               
    100188a5 MB_SendCommandSynch                             
    10018935 MB_ReadMailboxStatus                            
    1001893d MB_RegisterIsrBack                             
    10018945 MB_FwDebugDump                               
    10018949 mbCmdAckIsr.                                 
    1001895d mbCpe0Isr.                                  
    10018985 mbCpe1等                                  
    100189e5 高速高速                                   
    10018a19 AesCM_authEncrypt 软件                            
    10018a35 Aescm_decrittAuth 软件                            
    10018a99 AES_encrypt_SW                               
    10018ac5 AES_Decrype_SW                               
    10018b09 AesCM_getNumBlocks_SW                           
    10018b0c NIST_Curve_P256_p                              
    10018b30 NIST_Curve_P256_r                              
    10018b54 NIST_Curve_P256_A                              
    10018b78 NIST_Curve_P256_b                              
    10018b9c NIST_Curve_P256_GX                             
    10018bc0 NIST_Curve_P256_Gy                             
    10018ced __exit                                   
    10018d6c Fill1.                                    
    10019ffc A3_RW                                    
    10019ffd __CHECKSUM_END_CommonROM                          
    10019ffe A2_RW                                    
    10019ffe P1_RO_2                                   
    10019ffe __CHECKSUM_CommonROM                            
    1001a001 ti_sysbios_KNL_Mailbox_instance_init__E                   
    1001a0cd ti_SysBIOS_KNL_Semaphore_pend__E                      
    1001a199 ti_sysbios_b堆_HeapMem_alloc__E                      
    1001a25d ti_sysbios_KNL_Task_instance_init__E                    
    1001a319 ti_sysbios_family_arm_m3/hwi_postInit__i                  
    1001a3c9 ti_sysbios_family_arm_m3_Hwi_instance_init__E                
    1001a469 ti_SysBIOS_family_ARM_cc26xx_Timer_periodicStudiob__E             
    1001a4fd ti_sysbios_KNL_Task_instance_finaling__E                  
    1001a591 ti_sysbios_KNL_Mailbox_post__E                       
    1001a615 ti_SysBIOS_KNL_Task_postInit___I                       
    1001a699 ti_sysbios_family_arm_m3/hwi_initNVIC__E                  
    1001a719 ti_SysBIOS_KNL_Clock_starti__E                       
    1001a795 ti_sysbios_堆_HeapMem_free__E                      
    1001a80d ti_SysBIOS_KNL_Clock_WalkQueueDynamic__E                  
    1001a885 ti_SysBIOS_KNL_Clock_workFunc__E                      
    1001a8fd ti_sysbios_KNL_Mailbox_pend__E                       
    1001a96d ti_SysBIOS_KNL_Task_sleep_E                        
    1001a9dd ti_sysbios_KNL_Mailbox_instance_finaling__E                 
    1001aa49 ti_sysbios_family_arm_m3/hwi_d调度 C__I                  
    1001aab1 ti_sysbios_family_arm_m3/Hwi_Object__create__S               
    1001ab15 ti_sysbios_family_arm_m3/hwi_create                     
    1001ab79 ti_sysbios_hal_hwi_create                          
    1001abdd ti_SysBIOS_KNL_Mailbox_create                        
    1001ac41 ti_SysBIOS_KNL_Semaphore_post__E                      
    1001aca5 ti_SysBIOS_KNL_Swi_instance_init__E                     
    1001ad05 ti_SysBIOS_KNL_Swi_create                          
    1001ad61 ti_SysBIOS_KNL_Swi_restoreHwi__E                      
    1001adbd ti_sysbios_KNL_Task_Module_startup___E                    
    1001ae19 ti_SysBIOS_KNL_Task_create                         
    1001ae75 ti_sysbios_KNL_Task_startCore__E                      
    1001aed1 ti_sysbios_family_arm_m3/hwi_instance_finaling__E              
    1001af29 ti_sysbios_family_arm_m3/hwi_construct                   
    1001af81 ti_sysbios_KNL_Mailbox_construct                      
    1001afd9 ti_sysbios_KNL_Swi_run__i                          
    1001b031 ti_sysbios_KNL_Swi_schedule__i                       
    1001b085 ti_SysBIOS_KNL_Swi_construct                        
    1001b0d5 ti_SysBIOS_KNL_Swi_runLoop __I                        
    1001b125 ti_SysBIOS_KNL_Task_construct                        
    1001b175 ti_SysBIOS_KNL_Task_schedule__i                       
    1001b1c1 ti_sysbios_family_arm_m3/hwi_Module_startup__E               
    1001b209 ti_sysbios_b堆_HeapMem_getStats__E                    
    1001b251 ti_sysbios_KNL_Mailbox_Module_Started__E                  
    1001b299 ti_SysBIOS_family_ARM_m3/Hwi_disableInterrupt__E              
    1001b2dd ti_sysbios_family_arm_m3/hwi_enableInterrupt__E               
    1001b321 ti_sysbios_KNL_Swi_post _E                         
    1001b365 ti_SysBIOS_KNL_Task_allBrokedFunction__I                  
    1001b3a9 ti_sysbios_KNL_Task_yield __E                        
    1001b3ed ti_SysBIOS_KNL_Clock_create                         
    1001b429 ti_SysBIOS_KNL_Task_exit___E                         
    1001b463 ti_sysbios_gates_GateHwi_instance_init__E                  
    1001b465 ti_sysbios_family_arm_m3/hwi_getStackInfo__E                
    1001b49d ti_sysbios_family_arm_m3/taskSupport_start__E                
    1001b4d5 ti_sysbios_b堆_HeapMem_instance_init__E                  
    1001b50d ti_sysbios_KNL_Clock_instance_init__E                    
    1001b545 ti_sysbios_b堆_HeapMem_init__i                      
    1001b579 ti_SysBIOS_KNL_Clock_con构                       
    1001b5ad ti_SysBIOS_KNL_Semaphore_create                       
    1001b5e1 ti_sysbios_KNL_Swi_restore__E                        
    1001b615 ti_SysBIOS_KNL_Task_blockI_E                        
    1001b649 ti_sysbios_gates_GateMutex_Object__create__S                
    1001b679 ti_sysbios_gates_GateMutex_create                      
    1001b6a9 ti_sysbios_gates_GateMutex_enter__E                     
    1001b6d9 ti_SysBIOS_KNL_Clock_getTicks__E                      
    1001b709 ti_SysBIOS_KNL_Semaphore_construct                     
    1001b739 ti_SysBIOS_KNL_Task_processorVitalTaskFlag__I                 
    1001b769 ti_SysBIOS_family_ARM_cc26xx_Timer_postInit___I               
    1001b795 ti_sysbios_family_arm_cc26xx_Timer_startup___E                
    1001b795 ti_sysbios_KNL_Clock_TimerProxy_startup___E                 
    1001b7c1 ti_sysbios_family_arm_m3/Hwi_Object_GET_S                 
    1001b7ed ti_sysbios_gates_GateMutex_construct                    
    1001b819 ti_sysbios_hal_hwi_initStack                        
    1001b845 ti_sysbios_b堆_HeapMem_Object__create__S                 
    1001b871 ti_sysbios_b堆_HeapMem_Object_get__S                   
    1001b89d ti_SysBIOS_KNL_Mailbox_Object__get__S                    
    1001b8c9 ti_sysbios_KNL_Mailbox_postInit___i                     
    1001b8f5 ti_SysBIOS_KNL_Queue_construct                       
    1001b921 ti_SysBIOS_KNL_Queue_create                         
    1001b94d ti_SysBIOS_KNL_Semaphore_pendTimeout__I                   
    1001b979 ti_sysbios_KNL_Swi_Object__get__S                      
    1001b9a5 ti_sysbios_KNL_Task_unblocki__E                       
    1001b9d1 ti_sysbios_family_arm_cc26xx_TimestampProvider_get64__E           
    1001b9d1 XDC_runtimestamp_SupportProxy_get64__E                 
    1001b9d1 XDC_runtimestamp_get64__E                       
    1001b9f9 ti_sysbios_hal_hwi_instance_init__E                     
    1001ba21 ti_SysBIOS_KNL_Clock_addi__E                        
    1001ba49 ti_sysbios_KNL_Task_restore__E                       
    1001ba71 ti_sysbios_family_arm_cc26xx_Timer_Module_startup__E            
    1001ba95 ti_sysbios_gates_GateHwi_Object__create__S                 
    1001bab9 ti_sysbios_BIOS_rtsGateProxy_Object__delete_S               
    1001bab9 ti_sysbios_gates_GateMutex_Object__delete_S                
    1001bab9 ti_sysbios_堆_HeapMem_Module_GateProxy_Object__delete_S         
    1001b 添加 ti_SysBIOS_KNL_Clock_Object__delete_S                   
    1001bb01 ti_SysBIOS_KNL_Semaphore_instance_init__E                  
    1001bb25 ti_SysBIOS_KNL_Semaphore_Object__delete_S                 
    1001bb49 ti_sysbios_family_arm_cc26xx_Timer_Module_starpDone__S          
    1001bb69 ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_startup__E      
    1001bb89 ti_sysbios_family_arm_m3/hwi_Module_starpDone__S             
    1001bba9 ti_sysbios_family_arm_m3/Hwi_Object__delete_S               
    1001bba9 ti_sysbios_hal_hwi_hwiProxy_Object__delete_s                
    1001bbc9 ti_sysbios_family_arm_m3/hwi_examplter_i                 
    1001bbe9 ti_sysbios_gates_GateHwi_handle_label_S                  
    1001bbe9 xdc_runtime_System_Module_GateProxe_Handle__label__S            
    1001bc09 ti_sysbios_gates_GateHwi_Object__delete_S                 
    1001bc09 XDC_runtime_System_Module_GateProxy_Object__delete_S            
    1001bc29 ti_sysbios_BIOS_rtsGateProxy_handle__label_S                
    1001bc29 ti_sysbios_gates_GateMutex_handle__label_S                 
    1001bc29 ti_sysbios_堆_HeapMem_Module_GateProxe_handle__label_S         
    1001bc49 ti_sysbios_gates_GateMutex_Object_析 构 T__S               
    1001bc69 ti_sysbios_hal_hwi_Object__delete_s                    
    1001bc89 ti_sysbios_b堆_HeapMem_handle__label_S                  
    1001bc89 XDC_runtime_Memory_HeapProxy_handle__label_S                
    1001bca9 ti_sysbios_堆_HeapMem_Object__delete_S                 
    1001bca9 XDC_runtime 内存_HeapProxy_Object__delime_S               
    1001bcc9 ti_sysbios_KNL_Clock_Module_startup___E                   
    1001bce9 ti_SysBIOS_KNL_Clock_Object_析 构函数__S                  
    1001bd09 ti_sysbios_KNL_Idle_run___E                         
    1001bd29 ti_sysbios_KNL_Mailbox_Object__delete_S                  
    1001bd49 ti_SysBIOS_KNL_Queue_Object__delete_S                   
    1001bd69 ti_sysbios_KNL_Queue_Object__get__S                     
    1001bd89 ti_SysBIOS_KNL_Semaphore_Object_析 构函数__S                
    1001bda9 ti_sysbios_KNL_Swi_Object__delete_S                    
    1001bdc9 ti_sysbios_KNL_Task_Object__delete_S                    
    1001bde9 ti_sysbios_KNL_Task_Object__get__S                     
    1001be09 ti_sysbios_KNL_Task_enter_i                        
    1001be29 ti_sysbios_KNL_Task_restoreHwi__E                      
    1001be49 ti_sysbios_hal_hwi_hwiProxy_create                     
    1001be67 ti_SysBIOS_KNL_Clock_logTick__E                       
    1001be69 ti_sysbios_family_arm_m3/Hwi_Object_析 构 T__S              
    1001be85 ti_sysbios_family_arm_m3/hwi_setPriority __E                 
    1001bea1 ti_sysbios_gates_GateMutex_instance_init__E                 
    1001bd ti_sysbios_KNL_Clock_scheduleNextTick__E                  
    1001bed9 ti_sysbios_KNL_Mailbox_Object__析 构函数__S                 
    1001bef5 ti_SysBIOS_KNL_Queue_Object_析 构 T__S                  
    1001bf11 ti_SysBIOS_KNL_Queue_get__E                         
    1001bf2d ti_sysbios_KNL_Queue_put __E                         
    1001bf49 ti_SysBIOS_KNL_Swi_Object_析 构函数__S                   
    1001bf65 ti_SysBIOS_KNL_Task_Object_析 构函数__S                   
    1001bf81 ti_sysbios_KNL_Task_sleepTimeout__i                     
    1001bf9b ti_SYSBIOS_KNL_Swi_instance_finaling__E                   
    1001bf9d ti_sysbios_gates_GateMutex_leave__E                     
    1001bfb5 ti_sysbios_KNL_Task_unb阻断__E                       
    1001bfcd ti_SysBIOS_KNL_Clock_instance_finaling__E                  
    1001bfe3 ti_SysBIOS_KNL_Clock_start__E                        
    1001bff9 ti_SysBIOS_BIOS_getCpuFreq__E                        
    1001c00d ti_sysbios_family_arm_m3/hwi_switchFromBootStack__E             
    1001c021 ti_sysbios_hal_hwi_Module_startup___E                    
    1001c035 ti_SysBIOS_BIOS_exit__E                           
    1001c045 ti_SysBIOS_BIOS_setThreadType__E                      
    1001c055 ti_SysBIOS_BIOS_start__E                          
    1001c065 ti_SysBIOS_family_ARM_m3/Hwi_plug__E                    
    1001c075 ti_SysBIOS_gates_GateMutex_instance_finaling__E               
    1001c085 ti_sysbios_hal_hwi_hwiProxy_Object__create__S                
    1001c095 ti_SysBIOS_KNL_Clock_TimerProxy_getCurrentTick__E              
    1001c0a5 ti_SysBIOS_KNL_Clock_TimerProxy_getMaxTicks__E               
    1001c0b5 ti_sysbios_KNL_Clock_TimerProxy_setNextTick__E               
    1001c0c5 ti_SysBIOS_KNL_Semaphore_instance_finaling__E                
    1001c0d5 ti_SysBIOS_KNL_Swi_disable___E                        
    1001c0e5 ti_SysBIOS_KNL_Swi_enabled__E                        
    1001c0f5 ti_SysBIOS_KNL_Task_disable__E                       
    1001c105 ti_sysbios_b堆_HeapMem_restore__E                     
    1001c113 ti_SysBIOS_KNL_Queue_empty_E                        
    1001c121 ti_sysbios_KNL_Queue_remove__e_e                       
    1001c12f ti_sysbios_family_arm_cc26xx_TimestampProvider_getFreq__E          
    1001c12f XDC_runtimestamp_SupportProxy_getFreq__E                
    1001c12f XDC_runtimestamp_getFreq__E                      
    1001c13d ti_sysbios_family_arm_m3/Hwi_Params__init__S                
    1001c13d ti_sysbios_hal_hwi_HwiProxy_Params__init__S                 
    1001c149 ti_sysbios_family_arm_m3/hwi_disableFxn_E                 
    1001c155 ti_sysbios_family_arm_m3/hwi_enableFxn_E                  
    1001c161 ti_sysbios_family_arm_m3/TaskSupport_getStackAlignment__E          
    1001c16d ti_sysbios_gates_GateHwi_enter__E                      
    1001c179 ti_sysbios_BIOS_rtsGateProxy_Params__init__S                
    1001c179 ti_sysbios_gates_GateMutex_Params__init__S                 
    1001c179 ti_sysbios_堆_HeapMem_Module_GateProxy_Params__init__S          
    1001c185 ti_SysBIOS_KNL_Clock_Params__init__S                    
    1001c191 ti_SysBIOS_KNL_Clock_getTimerHandle__E                   
    1001c19d ti_SysBIOS_KNL_Mailbox_Params__init__S                   
    1001c1a9 ti_SysBIOS_KNL_Queue_dequeue___E                       
    1001c1b5 ti_SysBIOS_KNL_Queue_enqueue___E                       
    1001c1c1 ti_SysBIOS_KNL_Semaphore_Params__init__S                  
    1001c1cd ti_sysbios_KNL_Swi_Params__init__S                     
    1001c1d9 ti_sysbios_KNL_Task_Params__init__S                     
    1001c1e5 ti_sysbios_KNL_Task_self_E                         
    1001c1F1 ti_sysbios_hal_hwi_instance_final__E                   
    1001c1fb ti_sysbios_family_arm_m3/hwi_doSwiRestore__I                
    1001c203 ti_sysbios_family_arm_m3/hwi_startup___E                   
    1001c20b ti_SysBIOS_KNL_Idle_loop__E                         
    1001c213 ti_SYSBIOS_family_ARM_m3/Hwi_doTaskRestore__I                
    1001c219 ti_SYSBIOS_family_ARM_m3/Hwi_restoreFxn_E                 
    1001c21f ti_sysbios_gates_GateHwi_leave__E                      
    1001c22b ti_sysbios_KNL_Queue_instance_init__E                    
    1001c231 ti_SysBIOS_KNL_Queue_elemClear __E                      
    1001c237 ti_sysbios_KNL_Swi_Module_startup___E                    
    1001c23d ti_sysbios_KNL_Swi_startup___E                        
    1001c243 ti_SysBIOS_KNL_Task_enable__E                        
    1001c249 ti_SYSBIOS_BIOS_rtsGateProxy_enter__E                    
    1001c24d ti_SYSBIOS_BIOS_rtsGateProxy_leave__E                    
    1001c251 ti_sysbios_family_arm_cc26xx_Timer_getExpiredTicks__E            
    1001c255 ti_SYSBIOS_family_ARM_cc26xx_Timer_getPeriod__E               
    1001c259 ti_sysbios_family_arm_cc26xx_Timer_setPeriod___E               
    1001c25d ti_sysbios_family_arm_m3/hwi_delete                     
    1001c261 ti_sysbios_family_arm_m3/hwi_析 构                    
    1001c265 ti_sysbios_family_arm_m3/TaskSupport_Module_starpDone__S         
    1001c269 ti_sysbios_gates_GateHwi_query__E                      
    1001c269 XDC_runtime_System_Module_GateProxy_query_E                
    1001c26d ti_sysbios_gates_GateMutex_delete                      
    1001c271 ti_sysbios_gates_GateMutex_析 构                     
    1001c275 ti_sysbios_BIOS_rtsGateProxy_query_E                    
    1001c275 ti_sysbios_gates_GateMutex_query__E                     
    1001c275 ti_sysbios_堆_HeapMem_Module_GateProxy_query_E             
    1001c279 ti_sysbios_hal_hwi_HwiProxy_Module_startupDone__S             
    1001c27d ti_sysbios_hal_hwi_hwiProxy_delete                     
    1001c281 ti_sysbios_hal_hwi_hwiProxy_disableInterrupt__E               
    1001c281 ti_sysbios_hal_hwi_disableInterrupt__E                   
    1001c285 ti_sysbios_hal_hwi_hwiProxy_enableInterrupt__E               
    1001c285 ti_sysbios_hal_hwi_enableInterrupt__E                    
    1001c289 ti_sysbios_hal_hwi_HwiProxy_getStackInfo__E                 
    1001c289 ti_sysbios_hal_hwi_getStackInfo__E                     
    1001c28d ti_sysbios_hal_hwi_hwiProxy_startup___E                   
    1001c28d ti_sysbios_hal_hwi_startup___E                        
    1001c291 ti_SysBIOS_hal_Hwi_HwiProxy_switchFromBootStack__E             
    1001c295 ti_sysbios_hal_hwi_delete                          
    1001c299 ti_sysbios_hal_hwi_switchFromBootStack__E                  
    1001c29d ti_sysbios_堆_HeapMem_Module_GateProxy_enter_E             
    1001c2a1 ti_sysbios_堆_HeapMem_Module_GateProxy_leave__E             
    1001c2a5 ti_sysbios_堆_HeapMem_isBlocking__E                   
    1001c2a9 ti_sysbios_KNL_Clock_TimerProxy_Module_starpDone__S           
    1001c2ad ti_SysBIOS_KNL_Clock_TimerProxy_getExpiredTicks__E             
    1001c2b1 ti_sysbios_KNL_Clock_TimerProxy_getPeriod___E                
    1001c2b5 ti_SysBIOS_KNL_Clock_delete                         
    1001c2b9 ti_SysBIOS_KNL_Clock_析 构                        
    1001c2bd ti_SysBIOS_KNL_Clock_removeI_E                       
    1001c2c1 ti_SysBIOS_KNL_Clock_setTimeout___E                     
    1001c2c5 ti_sysbios_KNL_Mailbox_delete                        
    1001c2c9 ti_sysbios_KNL_Mailbox_析 构                       
    1001c2cd ti_sysbios_KNL_Queue_delete                         
    1001c2d1 ti_SysBIOS_KNL_Queue_析 构                        
    1001c2d5 ti_sysbios_KNL_Queue_head_E                        
    1001c2d9 ti_sysbios_KNL_Queue_next __E                        
    1001c2dd ti_SysBIOS_KNL_Semaphore_delete                       
    1001c2e1 ti_SysBIOS_KNL_Semaphore_析 构                      
    1001c2e5 ti_sysbios_KNL_Swi_delete                          
    1001c2e9 ti_SysBIOS_KNL_Swi_析 构                         
    1001c2ed ti_SysBIOS_KNL_Swi_postInit___I                       
    1001c2F1 ti_sysbios_KNL_Task_SupportProxy_Module_starpDone__S           
    1001c2f5 ti_sysbios_KNL_Task_SupportProxy_getStackAlignment__E            
    1001c2f9 ti_sysbios_KNL_Task_SupportProxy_start__E                  
    1001c2fd ti_sysbios_KNL_Task_SupportProxy_swap_e_E                  
    1001c301 ti_SysBIOS_KNL_Task_delete                         
    1001c305 ti_SysBIOS_KNL_Task_析 构                        
    1001c309 ti_SysBIOS_KNL_Task_startup___E                       
    1001c30d XDC_runtime_Startup_startMods__I                      
    1001c405 XDC_runtime_Core_CreateObject__I                      
    1001c487 XDC_runtime_Error_PolicySpin__E                       
    1001c489 XDC_runtime_Memory_alloc__E                         
    1001c4f9 xdc_runtime_Core_deleteObject__I                      
    1001c559 XDC_runtime_Startup_exec__E                         
    1001c5a9 XDC_runtime_assert_arc__I                         
    1001c5F1 xdc_runtime_Core_赋 值 Params__I                      
    1001c639 XDC_runtime_Core_constructObject__I                     
    1001c681 XDC_runtime_System_atexit__E                        
    1001c6b9 xdc_runtime_System_processAtExit___E                     
    1001c6ed XDC_runtime_Core_assignLabel__I                       
    1001c71d XDC_runtime_text_ordinate_e                        
    1001c749 XDC_runtime_System_abort__E                         
    1001c769 XDC_runtime_Error_raiseX__E                         
    1001c785 XDC_runtime_Memory_valloc__E                        
    1001c7a1 XDC_runtime_Core_析 构对象__I                     
    1001c7b9 XDC_runtime_Error_check__E                         
    1001c7d1 XDC_runtime_System_exit__E                         
    1001c7e9 xdc_runtime_text_ropeText__E                        
    1001c801 XDC_runtime_Memory_free_e_E                         
    1001c811 XDC_Runtime_SysCallback_abort__E                      
    1001c821 XDC_runtime_SysCallback_exit___E                       
    1001c831 xdc_runtime_Timestamp_SupportProxy_get32__E                 
    1001c831 XDC_runtimestamp_get32__E                       
    1001c841 XDC_runtime_Error_init__E                          
    1001c84d XDC_runtime_Memory_calloc__E                        
    1001c859 XDC_runtime_Memory_getMaxDefaultTypeAlign__E                
    1001c879 XDC_runtime_Gate_leaveSystem__E                       
    1001c87f XDC_runtime_System_Module_startup___E                    
    1001c885 XDC_runtime_Gate_enterSystem__E                       
    1001c889 XDC_runtime_Memory_HeapProxy_alloc__E                    
    1001c88d XDC_runtime_Memory_HeapProxy_free__E                    
    1001c891 XDC_runtime_System_Module_GateProxy_ENTER_E                
    1001c895 xdc_runtime_System_Module_GateProxy_leave __E                
    1001c899 XDC_runtime_System_abortSpin__E                       
    1001c89b XDC_runtime_System_exitSpin__E                       
    1001c89d ti_sysbios_family_arm_m3/hwi_deign__i                  
    1001c96d ti_sysbios_family_arm_m3/TaskSupport_buildTaskStack             
    1001c9b9 ti_sysbios_family_arm_m3/hwi_initStacks__E                 
    1001ca01 ti_sysbios_family_arm_m3/hwi_exHandlerAsm__I                
    1001ca21 ti_sysbios_family_xxx_Hwi_switchAndRunFunc                 
    1001ca3f ti_sysbios_family_arm_m3/hwi_pendSV__I                   
    1001ca57 ti_sysbios_family_arm_m3/hwi_return                     
    1001ca59 ti_sysbios_family_arm_m3_TaskSupport_cUS                  
    1001ca69 ti_sysbios_family_arm_m3/TaskSupport_swap_e_e                
    1001ca71 ti_sysbios_KNL_Task_swapReturn                       
    1001ca9b ti_sysbios_rom_cortexm_cc26xx_CC26xx_getRevision___E             
    20000000 ti_SysBIOS_family_ARM_m3/Hwi_ramVectors                   
    20000100 ti_SysBIOS_KNL_Task_Module_state__V                    
    20000144 ti_SysBIOS_family_ARM_m3/Hwi_Module_state__V                
    20000178 ti_SysBIOS_KNL_Clock_Module_state__V                    
    200001a4 ti_sysbios_BIOS_Module_state__V                      
    200001c8 ti_sysbios_KNL_Swi_Module_state__V                     
    200001e4 ti_sysbios_family_arm_cc26xx_Timer_Module_state__V             
    200001ec ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_state___v       
    200001f0 XDC_RAuntime_Startup_Module_state__V                    
    200001f8 XDC_RAuntime_System_Module_state__V                     
    20000200 XDC_RAuntime_Memory_Module_state__V                     
    20000208 gapProfileState                               
    20000209 self EntityMain                               
    20000214 hGpioPin                                  
    20000218 HandleUart                                 
    2000021c SEM                                     
    20000220 hWDT                                    
    20000250 pinGpioState                                
    20000994 linkDBNumConns                               
    20000aa8 gapRoleTask                                 
    20000af8 gapRoleTaskStack                              
    20000cb0 status1                                   
    2000138c 人员计数                                
    2000138e Water 的使用                                 
    20001390 Water 用户1                                
    20001392 脉冲计数                                 
    20001394 Init_Clock_Count                              
    20001396 Flash_variables_Count                            
    200013a0 Buffer_size                                 
    200013a4 strsize                                   
    200013a8 状态                                   
    200013ac Water capPinTable                              
    2000142c 缓冲器                                   
    200014ac PowerCC26XX_MODULE                             
    200015bc iCall_dischemedis                              
    200015c4 iCall_enterCriticalSection                         
    200015c8 iCall_leaveCriticalSection                         
    200015e0 HEAPMGR_SIZE                                
    20001968 rfRegTbl                                  
    200019b8 ti_SysBIOS_KNL_Task_Object_Table___V                    
    20001a08 ti_sysbios_family_arm_cc26xx_Timer_Object__table__V             
    20001a50 ti_sysbios_gates_GateMutex_Object__table__V                 
    20001ab8 ti_SysBIOS_KNL_Swi_Module_State_0_readyQ__A                 
    20001ae8 ti_sysbios_KNL_Swi_Object__table__V                     
    20001b18 ti_sysbios_KNL_Task_Module_State_0_readyQ__A                
    20001b48 用户0Cfg                                  
    20001b78 ti_SysBIOS_KNL_Clock_Object_Table___V                    
    20001b98 ti_sysbios_family_arm_m3/Hwi_Object_Table__V                
    20001bb0 ti_sysbios_堆_HeapMem_Object__table__V                  
    20001bc8 _TI_clean_ptr                              
    20001bcc _TI_dptors _ptr                               
    20001bd0 __TI_ENABLE_EXIT_PROFILE_OUTPUT                       
    20001bd4 lastAppOptodeSent                              
    20001bd8 pfnBMAllloc                                 
    20001bdc pfnBMFree                                  
    20001bf4 _lock                                    
    20001bf8 _unlock                                   
    20001c04 ti_sysbios_family_arm_m3/Hwi_Module_root_V                
    20001c0c ti_SysBIOS_gates_GateHwi_Module_root__V                  
    20001c14 ti_sysbios_gates_GateMutex_Module_root__V                 
    20001c1c ti_sysbios_hal_hwi_Module_root__V                     
    20001c24 ti_sysbios_堆_HeapMem_Module_root__V                  
    20001c2c ti_SysBIOS_KNL_Clock_Module_root__V                    
    20001c34 ti_sysbios_KNL_Mailbox_Module_root__V                   
    20001c3c ti_SysBIOS_KNL_Queue_Module_root__V                    
    20001c44 ti_SysBIOS_KNL_Semaphore_Module_root__V                  
    20001c4c ti_sysbios_KNL_Swi_Module_root__V                     
    20001c54 ti_sysbios_KNL_Task_Module_root__V                     
    20001c5c appAssertBack                               
    20001c6c main_func_sp                                
    20001c70 ti_SYSBIOS_family_ARM_m3/Hwi_Module_State_0_excContext__A          
    20001c74 ti_sysbios_family_arm_m3/Hwi_Module_State_0_exstack__a           
    20001c78 ti_SysBIOS_KNL_Task_Module_State_0_idleTask__A               
    20001c88 ti_sysbios_family_arm_m3/Hwi_Module_State_0_exACTIVE__A          
    20001c90 myCopyBlock                                 
    20002c90 ti_sysbios_堆_HeapMem_instance_State_0_Buf__a              
    20003310 STOP_variable                                
    20003314 timeout_start_ms                              
    20003316 IO_TIMEOUT                                 
    2000331c measuring_timing_budget                        
    20003324 g_SensorValue                                
    2000333c sensor_data                                 
    20003630 WRITE_VALUE                                 
    20003634 gl_SensorValue                               
    20003638 hSem                                    
    2000363c 单样品                                
    20003640 引脚手柄                                  
    20003648 内存                                    
    20003664 Hwi                                     
    20003928 ti_sysbios_KNL_Task_instance_State_0_stack__A                
    20003b28 uartCC26XX 对象                              
    20003c3c PIN_NumPins                                 
    20003cd0 PIN_HandleTable                               
    20003d4c i2cCC26xx 对象                              
    20003e2c ti_sysbios_family_arm_m3/hwi_d调度 表                 
    20003ef4 安全 dogCC26XX 对象                            
    20003f70 zanConfig_active                              
    20003f90 nvsCC26xx 对象                              
    20003f94 trngCC26XX 对象                              
    20003f98 driverlib_release_0_46593                          
    20003f9b heapStart                                  
    20004028 __stack                                   
    20004028 heapEnd                                   
    20004428 __STACK_END                                 
    20004428 __STACK_TOP                                 
    20004f2c A4_rw                                    
    20004f2c common_RAM_base_ADDR                            
    20004f40 P2_RW                                    
    20004f40 P2_s0                                    
    20004f40 eccRom_windowSize                              
    20004f44 eccRom_Workzone                               
    20004f48 eccRom_param_p                               
    20004f4c eccRom_param_r                               
    20004f50 eccRom_param_a                               
    20004f54 解剖刀                                  
    20004f58 inPointX                                  
    20004f5c inPointY                                  
    20004f60 outPointX                                  
    20004f64 outPointY                                  
    20004f68 SCAL                                    
    20004f6c EXPX                                    
    20004f70 Expy                                    
    20004f74 EXPZ                                    
    20004f78 EXPW                                    
    20004f7c ACCX                                    
    20004f80 ACCY                                    
    20004f84 ACCZ                                    
    20004f88 TMP1                                    
    20004f8c TMP2                                    
    20004f90 TMP3                                    
    20004f94 TMP4                                    
    20004f98 TMP5                                    
    20004f9c TMP6                                    
    20004fa0 eccRom_param_gx                               
    20004fa4 eccRom_param_Gy                               
    20004fa8 eccRom_param_b                               
    20004f2 P2_zi                                    
    20004fanratchanInfo                                  
    20004fcc fwInfoCmd                                  
    20004fd8 MSBMOD                                   
    20004fdc aux64                                    
    20004fe4 MOD                                     
    20004fe8 LEN                                     
    20004ffc pSspAesEncrypt_SW                              
    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 Hwip_restore                                
    UNDEFED SHT$$INIT_RAGE$$Base                            
    UNDEFED SHT$$INIT_ARRAGE$$LIMIT                           
    undefED 毫克                                   
    UNDEFED ti_SYSBIOS_BIOS_rtsGateProxy_handle__label_S__man翻转_          
    UNDEFED ti_SysBIOS_BIOS_rtsGateProxy_Object__delete __S__man翻转__          
    UNDEFED ti_SYSBIOS_BIOS_rtsGateProxy_Params__init_S__s_man翻转_           
    UNDEFED ti_SYSBIOS_BIOS_rtsGateProxy_query_E__man翻转 了__              
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_Module_startupDone__S__man翻转__        
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_Object__delete _S__man翻转_          
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_Params__init__S__man翻转__           
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_disableInterrupt__E__man翻转__         
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_enableInterrupt_E__man翻转_          
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_getStackInfo_E__man翻转_           
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_startup_E__man翻转_              
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_switchFromBootStack_E___manifed__        
    UNDEFED ti_SYSBIOS_hal_Hwi_disableInterrupt__E                   
    UNDEFED ti_SYSBIOS_hal_Hwi_enableInterrupt__E                    
    UNDEFED ti_SYSBIOS_hal_Hwi_getStackInfo__E                     
    UNDEFED ti_SYSBIOS_hal_Hwi_startup___E                        
    UNDEFED ti_SYSBIOS_hal_Hwi_switchFromBootStack__E                  
    UNDEFED ti_SYSBIOS_b堆_HeapMem_Module_GateProxe_Handle__label_S__man翻转_    
    UNDEFED ti_SYSBIOS_b堆_HeapMem_Module_GateProxy_Object__delete _S__man翻转_   
    UNDEFED ti_SYSBIOS_b堆_HeapMem_Module_GateProxy_Params__init_S__s__man翻转_    
    UNDEFED ti_SYSBIOS_b堆_HeapMem_Module_GateProxy_query_E__man翻转_        
    UNDEFED ti_SysBIOS_KNL_Clock_TimerProxy_Module_startupDone__S__man翻转__      
    UNDEFED ti_SYSBIOS_KNL_Clock_TimerProxy_startup_E__man翻转_            
    UNDEFED ti_SysBIOS_KNL_Task_SupportProxy_Module_startupDone__S____man翻转__     
    UNDEFED ti_SYSBIOS_KNL_Task_SupportProxy_getStackAlignment__E__man翻转__      
    UNDEFED ti_SYSBIOS_KNL_Task_SupportProxy_start_E__man翻转__            
    UNDEFED ti_SYSBIOS_KNL_Task_SupportProxy_swap_E__man翻转__             
    UNDEFED XDC_RAUNTIME_Main_Module_GateProxy_Handle__label_S             
    UNDEFED XDC_RAUNTIME_Main_Module_GateProxy_Object_Delete_S             
    UNDEFED XDC_RAUNTIME_Main_Module_GateProxy_query_E                 
    UNDEFED XDC_RAUNTIME_Memory_HeapProxy_Handle__label_S__man翻转_          
    UNDEFED XDC_RAUNTIME_Memory_HeapProxy_Object__delete _S__man翻转_          
    UNDEFED XDC_RAUNTIME_System_Module_GateProxe_Handle__label_S__man翻转_       
    UNDEFED XDC_RAUNTIME_System_Module_GateProxy_Object__delete _S__man翻转_      
    UNDEFED XDC_RAUNTIME_System_Module_GateProxy_query_E__man翻转_           
    UNDEFED XDC_RAUNTIME_System_SupportProxy_abort__E                  
    UNDEFED XDC_RAUNTIME_System_SupportProxy_exit__E                   
    UNDEFED XDC_RAUNTIME_Timestamp_SupportProxy_get64_E__man翻转_           
    UNDEFED XDC_RAUNTIME_Timestamp_SupportProxy_getFreq_E__man翻转_          
    UNDEFED XDC_RAUNTIME_Timestamp_get32__E                       
    UNDEFED XDC_RAUNTIME_Timestamp_get64__E                       
    UNDEFED XDC_RAUNTIME_Timestamp_getFreq__E                      
    [1246符号]

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

    尊敬的 Alan:

       NVS 和 UART 均可单独工作。

    当我们同时使用这两个模块时、会遇到一些问题。如果我隐藏 NVS 的代码、UART 工作正常。

    在此、我附上了 NVS INIT 和 NVS HWAttrs、

    1) NVS 初始化  

    void File_System_Int (void)

    NVS_init();
    nvsHandle = NVS_open (CC2650_LAUNCHXL_NVS1F000、NULL);

    /*+ 1以确保写入'\0'字符*/
    strsize = strlen ("bar1")+ 1;
    /*确保缓冲区大小是4的倍数*/
    strsize =(strsize + 4)& 0xFFFFFFFFC;



    2) NVS HWAttrs

    typedef 枚举 CC2650_LAUNCHXL_NVSBufName{
    CC2650_LAUNCHXL_NVS1F000 = 0、
    CC2650_LAUNCHXL_NVSCOUNT
    }CC2650_LAUNCHXL_NVSBufName;


    谢谢、


  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。
    秘书长的报告
    TI ARM 连接器 PC v15.12.3
    秘书长的报告
    >> 2017年9月18日星期一17:52:44链接

    输出文件名:
    入口点符号:"ResetISR"地址:00008b95


    存储器配置

    名称 原点长度 已使用 未使用的属性填充
    ------------ ---- ------ ---- ---- --------
    闪存 00000000 00011000 0000e036 00002fca R X
    FLASH_LAST_PAGE 0001f000 00001000 00000058 00000fa8 R X
    SRAM 20000000 00004428 00004029 000003ff RW X


    段分配映射

    运行 origin load origin length init length atts members
    ------ ------ ------ ------ ---- ----
    00000000 00000000 0000e03c 0000e03c r-x
    00000000 00000000 0000003c 0000003c r-.Vecresets
    0000003c 0000003c 000000c4 000000c4 r-x .text.1
    00000100 00000100 0000003c 0000003c r-.const:ti_SysBIOS_KNL_Task_Object_Params__C
    0000013c 0000013c 00000034 00000034 r-.const:ti_SysBIOS_KNL_Mailbox_Object_Params__C
    00000170 00000170 00000030 00000030 r-.const:ti_sysbios_family_arm_m3/Hwi_Object_Params__C
    000001a0 000001a0 0000002c 0000002c r-.const:ti_sysbios_hal_hwi_Object_Params__C
    000001cc 000001cc 00000028 00000028 r-.const:ti_sysbios_b堆_HeapMem_Module_Fxns__C
    000001f4 000001f4 00000028 00000028 r-.const:ti_SysBIOS_KNL_Swi_Object_Params__C
    0000021c 0000021c 00000024 00000024 r-.const:ti_sysbios_gates_GateHwi_Module_Fxns__C
    00000240 00000240 00000024 00000024 r-.const:ti_sysbios_gates_GateMutex_Module_Fxns__C
    00000264 00000264 00000024 00000024 r-.const:ti_sysbios_b堆_HeapMem_Object_Params__C
    00000288 00000288 00000024 00000024 r-.const:ti_SysBIOS_KNL_Clock_Object_Params__C
    000002ac 000002ac 00000024 00000024 r-.const:ti_SysBIOS_KNL_Semaphore_Object_Params__C
    000002d0 000002d0 00000020 00000020 r-.const:ti_sysbios_family_arm_m3/Hwi_Object_Desc_C
    000002f0 000002f0 00000020 00000020 r-.const:ti_sysbios_gates_GateHwi_Object__Desc_C
    00000310 00000310 00000020 00000020 r-.const:ti_sysbios_gates_GateMutex_Object_Desc_C
    00000330 00000330 00000020 00000020 r-.const:ti_sysbios_hal_hwi_Object_Desc__C
    00000350 00000350 00000020 00000020 r-.const:ti_sysbios_bst_HeapMem_Object_Desc__C
    00000370 00000370 00000020 00000020 r-.const:ti_SysBIOS_KNL_Clock_Object_Desc__C
    00000390 00000390 00000020 00000020 r-.const:ti_sysbios_KNL_Mailbox_Object_DESC_C
    000003b0 000003b0 00000020 00000020 r-.const:ti_sysbios_KNL_Queue_Object__Desc_C
    000003d0 000003d0 00000020 00000020 r-.const:ti_SysBIOS_KNL_Semaphore_Object_DESC_C
    000003f0 000003f0 00000020 00000020 r-.const:ti_SysBIOS_KNL_Swi_Object_DESC_C
    00000410 00000410 00000020 00000020 r-.const:ti_SysBIOS_KNL_Task_Object_Desc__C
    00000430 00000430 00000018 00000018 r-.const:ti_sysbios_gates_GateHwi_Object_Params__C
    00000448 00000448 00000018 00000018 r-.const:ti_sysbios_gates_GateMutex_Object_Params__C
    00000460 00000460 00000018 00000018 r-.const:ti_SysBIOS_KNL_Queue_Object_Params__C
    00000478 00000478 00000008 00000008 r-.const:ti_SysBIOS_KNL_Idle_funclist___C
    00000480 00000480 00000004 00000004 r-x .text.2
    00000484 00000484 00000004 00000004 r-.const:ti_sysbios_family_arm_cc26xx_Timer_startupNeed__C
    00000488 00000488 00000004 00000004 r-.const:ti_SysBIOS_family_ARM_m3/Hwi_E_alreadyDefined___C
    0000048c 0000048c 00000004 00000004 r-.const:ti_sysbios_family_arm_m3/hwi_E_hwiLimitExceled__C
    00000490 00000490 00000004 00000004 r-.const:ti_sysbios_family_arm_m3/Hwi_NUM_interrupts__C
    00000494 00000494 00000004 00000004 r-.const:ti_sysbios_family_arm_m3/Hwi_Object_count_C
    00000498 00000498 00000004 00000004 r-.const:ti_sysbios_family_arm_m3/Hwi_Object__table_C
    0000049c 0000049c 00000004 00000004 r-.const:ti_sysbios_family_arm_m3/Hwi_CCR_C
    000004a0 000004a0 00000004 00000004 r-.const:ti_sysbios_family_arm_m3/hwi_exHandlerFunc__C
    000004a4 000004a4 00000004 00000004 r-.const:ti_sysbios_family_arm_m3/hwi_nullIsrFunc__C
    000004a8 000004a8 00000004 00000004 r-.const:ti_sysbios_family_arm_m3/hwi_numSparseInterrupts___C
    000004ac 000004ac 00000004 00000004 r-.const:ti_sysbios_family_arm_m3/hwi_priGroup__C
    000004b0 000004b0 00000004 00000004 r-.const:ti_SysBIOS_family_ARM_m3/TaskSupport_stackAlignment___C
    000004b4 000004b4 00000004 00000004 r-.const:ti_SysBIOS_b堆_HeapMem_E_MEMORY__C
    000004b8 000004b8 00000004 00000004 r-.const:ti_SysBIOS_b堆_HeapMem_Module_gateObj__C
    000004bc 000004bc 00000004 00000004 r-.const:ti_sysbios_b堆_HeapMem_Object_count__C
    000004c0 000004c0 00000004 00000004 r-.const:ti_sysbios_b堆_HeapMem_Object__table__C
    000004c4 000004c4 00000004 00000004 r-.const:ti_SysBIOS_bages_HeapMem_reqAlign__C
    000004c8 000004c8 00000004 00000004 r-.const:ti_SysBIOS_KNL_Clock_serviceMargin__C
    000004cc 000004cc 00000004 00000004 r-.const:ti_SysBIOS_KNL_Mailbox_Object_count__C
    000004d0 000004d0 00000004 00000004 r-.const:ti_SysBIOS_KNL_Mailbox_Object__table_C
    000004d4 000004d4 00000004 00000004 r-.const:ti_SysBIOS_KNL_Queue_Object_count__C
    000004d8 000004d8 00000004 00000004 r-.const:ti_SysBIOS_KNL_Queue_Object__table__C
    000004dc 000004dc 00000004 00000004 r-.const:ti_sysbios_KNL_Swi_Object_count__C
    000004e0 000004e0 00000004 00000004 r-.const:ti_SysBIOS_KNL_Swi_Object__table_C
    000004e4 000004e4 00000004 00000004 r-.const:ti_SysBIOS_KNL_Swi_numPriorities __C
    000004e8 000004e8 00000004 00000004 r-.const:ti_SysBIOS_KNL_Task_Object_count__C
    000004ec 000004ec 00000004 00000004 r-.const:ti_sysbios_KNL_Task_Object__table_C
    000004f0 000004f0 00000004 00000004 r-.const:ti_SysBIOS_KNL_Task_allBrokedFunc__C
    000004f4 000004f4 00000004 00000004 r-.const:ti_SysBIOS_KNL_Task_defaultStackHeap___C
    000004f8 000004f8 00000004 00000004 r-.const:ti_SysBIOS_KNL_Task_defaultStackSize___C
    000004fc 000004fc 00000004 00000004 r-.const:ti_SysBIOS_KNL_Task_numConstructedTasks__C
    00000500 00000500 00000002 00000002 r-x .text.3
    00000502 00000502 00000002 00000002 r-.const:ti_sysbios_family_arm_cc26xx_Timer_Module_id__C
    00000504 00000504 00000002 00000002 r-.const:ti_SysBIOS_family_ARM_cc26xx_TimestampProvider_useClockTimer__C
    00000506 00000506 00000002 00000002 r-.const:ti_sysbios_family_arm_m3/Hwi_Module_id__C
    00000508 00000508 00000002 00000002 r-.const:ti_sysbios_gates_GateHwi_Module_id__C
    0000050a 0000050a 00000002 00000002 r-.const:ti_sysbios_gates_GateMutex_Module_id__C
    0000050c 0000050c 00000002 00000002 r-.const:ti_sysbios_堆_HeapMem_Module_id__C
    0000050e 0000050e 00000002 00000002 r-.const:ti_SysBIOS_KNL_Task_initStackFlag___C
    00000510 00000510 00000001 00000001 r-.const:ti_SysBIOS_KNL_Clock_tickMode__C
    00000514 00000514 00000008 00000008 r-.const:XDC_Runtime_Startup_firstFxns__C
    0000051c 0000051c 00000008 00000008 r-.const:XDC_Runtime_Startup_lastFxns__C
    00000524 00000524 00000004 00000004 r-.const:XDC_Runtime_assertFail__C
    00000528 00000528 00000004 00000004 r-.const:XDC_Runtime_Error_E_MEMORY__C
    0000052c 0000052c 00000004 00000004 r-.const:XDC_Runtime_Error_PolicyFxn_C
    00000530 00000530 00000004 00000004 r-.const:XDC_Runtime_IGateProvider_Interface_base__C
    00000534 00000534 00000004 00000004 r-.const:XDC_Runtime_IHeap_Interface_base__C
    00000538 00000538 00000004 00000004 r-.const:XDC_Runtime_IModule_Interface_base__C
    0000053c 0000053c 00000004 00000004 r-.const:XDC_Runtime_Main_Module_diagsEnabled__C
    00000540 00000540 00000004 00000004 r-.const:XDC_Runtime_Main_Module_diagsIncluded__C
    00000544 00000544 00000004 00000004 r-.const:XDC_Runtime_Main_Module_diagsMask__C
    00000548 00000548 00000004 00000004 r-.const:XDC_Runtime_Memory_defaultHeapInstance___C
    0000054c 0000054c 00000004 00000004 r-.const:XDC_Runtime_Startup_execImpl__C
    00000550 00000550 00000004 00000004 r-.const:XDC_Runtime_Startup_maxPasses__C
    00000554 00000554 00000004 00000004 r-.const:XDC_Runtime_Startup_sfxnRts__C
    00000558 00000558 00000004 00000004 r-.const:XDC_Runtime_Startup_sfxnTab__C
    0000055c 0000055c 00000004 00000004 r-.const:XDC_Runtime_Startup_startModsFxn__C
    00000560 00000560 00000004 00000004 r-.const:XDC_Runtime_SysCallback_abortFxn__C
    00000564 00000564 00000004 00000004 r-.const:XDC_Runtime_SysCallback_exitFxn__C
    00000568 00000568 00000004 00000004 r-.const:XDC_Runtime_System_abortFxn__C
    0000056c 0000056c 00000004 00000004 r-.const:XDC_Runtime_System_exitFxn__C
    00000570 00000570 00000004 00000004 r-.const:XDC_Runtime_System_maxAtexitHandlers__C
    00000574 00000574 00000004 00000004 r-.const:XDC_Runtime_text_charTab__C
    00000578 00000578 00000004 00000004 r-.const:XDC_Runtime_text_nameEmpty__C
    0000057c 0000057c 00000004 00000004 r-.const:XDC_Runtime_text_name Static___C
    00000580 00000580 00000004 00000004 r-.const:XDC_Runtime_TEXT_nameUnknown
    00000584 00000584 00000002 00000002 r-.const:XDC_Runtime_Main_Module_id__C
    00000586 00000586 00000002 00000002 r-.const:XDC_Runtime_Memory_Module_id__C
    00000588 00000588 00000002 00000002 r-.const:XDC_Runtime_text_charCnt___C
    0000058a 0000058a 00000002 00000002 r-.const:XDC_Runtime_text_isLoaded__C
    0000058c 0000058c 00000001 00000001 r-.const:XDC_Runtime_Error_policy__C
    00000590 00000590 00000004 00000004 r-.const:ti_sysbios_rom_rom_AONRTCChannelEnable
    00000594 00000594 00000004 00000004 r-.const:ti_SysBIOS_ROM_ROM_AONRTCCompareValueSet
    00000598 00000598 00000004 00000004 r-.const:ti_SysBIOS_ROM_ROM_AONRTCCurrentCompareValueGet
    0000059c 0000059c 00000004 00000004 r-.const:ti_SysBIOS_ROM_ROM_AONRTCE文 丘卡
    000005a0 000005a0 00000004 00000004 r-.const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_getCount64_E_E
    000005a4 000005a4 00000004 00000004 r-.const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick_E
    000005a8 000005a8 00000004 00000004 r-.const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E
    000005ac 000005ac 00000004 00000004 r-.const:ti_sysbios_rom_rom_ti_sysbios_family_arm_cc26xx_Timer_initDevice__i
    000005b0 000005b0 00000004 00000004 r-.const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E
    000005b4 000005b4 00000004 00000004 r-.const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_setThreshold__i
    000005b8 000005b8 00000004 00000004 r-.const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_start_E
    000005bc 000005bc 00000004 00000004 r-.const:ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32_E_E
    000005c0 000005c0 00000004 00000004 r-.const:ti_sysbios_rom_rom_xdc_runtime_Startup_getState__I
    000005c4 000005c4 00000004 00000004 r-.const:ti_sysbios_rom_rom_xdc_runtime_System_SupportProxy_abort_e_E
    000005c8 000005c8 00000004 00000004 r-.const:ti_sysbios_rom_rom_xdc_runtime_System_SupportProxy_exit_e_E
    000005cc 000005cc 00000004 00000004 r-.const:ti_sysbios_gates_GateMutex_instance_State_SEM_O
    000005d0 000005d0 00000004 00000004 r-.const:ti_SysBIOS_KNL_Clock_Module_State_clockQ_O
    000005d4 000005d4 00000004 00000004 r-.const:ti_SysBIOS_KNL_Mailbox_Instance_State_dataQu__O
    000005d8 000005d8 00000004 00000004 r-.const:ti_SysBIOS_KNL_Mailbox_Instance_State_dataSem__O
    000005dc 000005dc 00000004 00000004 r-.const:ti_sysbios_KNL_Mailbox_instance_State_freeQu__O
    000005e0 000005e0 00000004 00000004 r-.const:ti_SysBIOS_KNL_Mailbox_Instance_State_freeSem_O
    000005e4 000005e4 00000004 00000004 r-.const:ti_SysBIOS_KNL_Semaphore_instance_State_pendQ_O
    000005e8 000005e8 00000004 00000004 r-.const:ti_SysBIOS_KNL_Task_Module_State_InactiveQ_O
    000005ec 000005ec 0000b5a0 0000b5a0 r-x .text.4
    0000bb8c 0000bb8c 00001d6c 00001d6c r--.const
    0000d8f8 0000d8f8 00000744 00000744 r-.cinit
    0001ffa8 0001ffa8 00000058 00000058 r--
    0001ffa8 0001ffa8 00000058 00000058 r-.ccfg
    20000100 20000100 00003b65 00000000 rw-
    20000100 20000100 00000044 00000000 rw-.data:ti_sysbios_KNL_Task_Module_state__V
    20000144 20000144 00000034 00000000 rw-.data:ti_sysbios_family_arm_m3/Hwi_Module_state__V
    20000178 20000178 0000002c 00000000 rw-.data:ti_sysbios_KNL_Clock_Module_state___v
    200001a4 200001a4 00000024 00000000 rw-.data:ti_sysBIOS_BIOS_Module_state__V
    200001c8 200001c8 0000001c 00000000 rw-.data:ti_sysbios_KNL_Swi_Module_state__V
    200001e4 200001e4 00000008 00000000 rw-.data:ti_sysbios_family_arm_cc26xx_Timer_Module_state__V
    200001ec 200001ec 00000004 00000000 rw-.data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_state__V
    200001f0 200001f0 00000008 00000000 rw-.data:XDC_Runtime_Startup_Module_state__V
    200001f8 200001f8 00000008 00000000 rw-.data:XDC_Runtime_System_Module_state__V
    20000200 20000200 00000004 00000000 rw-.data:XDC_Runtime_Memory_Module_state___V
    20000208 20000208 00001865 00000000 rw-.data
    20001a70 20001a70 000021f5 00000000 rw-.bss
    20004028 20004028 00000400 00000000 Rw-
    20004028 20004028 00000400 00000000 rw-.stack


    部分分配映射

    输出 属性/
    分区页面来源 长度 输入段
    ---- -------- ------ --------
    .resetVecs
    * 0 00000000 0000003c
    00000000 0000003c app_ble_pem3.oem3 (.Vecresets)

    text.1 0 0000003c 000000c4
    0000003c 000000c0 ioservice.obj (.text:io_WriteAttrCB$31)
    000000fc 00000004 iCall_API.obj (.text:GATTServApp_AddService)

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

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

    .const:ti_sysbios_family_arm_m3/Hwi_Object_Params__C
    * 0 00000170 00000030
    00000170 00000030 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Object_Params__C)

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

    .const:ti_sysbios_堆_HeapMem_Module_Fxns__C
    * 0 000001cc 00000028
    000001cc 00000028 app_ble_pem3.oem3 (.const:ti_sysbios_bpst_HeapMem_Module_Fxns__C)

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

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

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

    .const:ti_sysbios_堆_HeapMem_Object_Params__C
    * 0 00000264 00000024
    00000264 00000024 app_ble_pem3.oem3 (.const:ti_sysbios_stp_HeapMem_Object_Params__C)

    .const:ti_SysBIOS_KNL_Clock_Object_Params__C
    * 0 00000288 00000024
    00000288 00000024 APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Clock_Object_Params__C)

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

    const:ti_sysbios_family_arm_m3/Hwi_Object_DESC_C
    * 0 000002d0 00000020
    000002d0 00000020 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3/Hwi_Object_Desc_C)

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

    .const:ti_sysbios_gates_GateMutex_Object_DESC_C
    * 0 00000310 00000020
    00000310 00000020 app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Object_Desc_C)

    .const:ti_sysbios_hal_hwi_Object_DESC_C
    * 0 00000330 00000020
    00000330 00000020 app_ble_pem3.oem3 (.const:ti_sysbios_hal_hwi_Object_Desc__C)

    .const:ti_sysbios_堆_HeapMem_Object_DESC_C
    * 0 00000350 00000020
    00000350 00000020 app_ble_pem3.oem3 (.const:ti_sysbios_stp_HeapMem_Object_DESC_C)

    .const:ti_SysBIOS_KNL_Clock_Object_DESC_C
    * 0 00000370 00000020
    00000370 00000020 APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Clock_Object_DESC_C)

    .const:ti_SysBIOS_KNL_Mailbox_Object_DESC_C
    * 0 00000390 00000020
    00000390 00000020 APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Mailbox_Object_DESC_C)

    .const:ti_SysBIOS_KNL_Queue_Object_DESC_C
    * 0 000003b0 00000020
    000003b0 00000020 APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Queue_Object_DESC_C)

    .const:ti_SysBIOS_KNL_Semaphore_Object_DESC_C
    * 0 000003d0 00000020
    000003d0 00000020 APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Semaphore_Object_DESC_C)

    .const:ti_SysBIOS_KNL_Swi_Object_DESC_C
    * 0 000003f0 00000020
    000003f0 00000020 APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Swi_Object_DESC_C)

    .const:ti_SysBIOS_KNL_Task_Object_DESC_C
    * 0 00000410 00000020
    00000410 00000020 APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Task_Object_DESC_C)

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

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

    .const:ti_SysBIOS_KNL_Queue_Object_Params__C
    * 0 00000460 00000018
    00000460 00000018 APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Queue_Object_Params__C)

    .const:ti_sysbios_KNL_Idle_funclist__C
    * 0 00000478 00000008
    00000478 00000008 app_ble_pem3.oem3 (.const:ti_sysbios_KNL_idle_funclist___C)

    text.2 0 00000480 00000004
    00000480 00000004 iCall.obj (.text:iCall_primAbort$20)

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

    const:ti_sysbios_family_arm_m3/hwi_E_alreadyDefined___C
    * 0 00000488 00000004
    00000488 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined___C)

    const:ti_sysbios_family_arm_m3/hwi_E_hwiLimitExceleed___C
    * 0 0000048c 00000004
    0000048c 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3/hwi_E_hwiLimitExceleed__C)

    .const:ti_sysbios_family_arm_m3/Hwi_NUM_Interrupts__C
    * 0 00000490 00000004
    00000490 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3/hwi_NUM_interrupts__C)

    const:ti_sysbios_family_arm_m3/Hwi_Object_count_C
    * 0 00000494 00000004
    00000494 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Object_count_C)

    const:ti_sysbios_family_arm_m3/Hwi_Object_Table__C
    * 0 00000498 00000004
    00000498 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Object__table_C)

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

    .const:ti_sysbios_family_arm_m3/hwi_excHandlerFunc__C
    * 0 000004a0 00000004
    000004a0 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_exHandlerFunc__C)

    const:ti_sysbios_family_arm_m3/hwi_nullIsrFunc_C
    * 0 000004a4 00000004
    000004a4 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3/hwi_nullIsrFunc__C)

    .const:ti_sysbios_family_arm_m3/hwi_numSparseInterrupts___C
    * 0 000004a8 00000004
    000004a8 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3/hwi_numSparseInterrupts__C)

    const:ti_sysbios_family_arm_m3/hwi_priGroup_C
    * 0 000004ac 00000004
    000004ac 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3/hwi_priGroup_C)

    .const:ti_sysbios_family_arm_m3/taskSupport_stackAlignment__C
    * 0 000004b0 00000004
    000004b0 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3/TaskSupport_stackAlignment__C)

    const:ti_sysbios_b堆_HeapMem_E_memory__C
    * 0 000004b4 00000004
    000004b4 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_bpst_HeapMem_E_memory__C)

    .const:ti_sysbios_堆_HeapMem_Module_gateObj__C
    * 0 000004b8 00000004
    000004b8 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_bpst_HeapMem_Module_gateObj__C)

    .const:ti_sysbios_堆_HeapMem_Object_count__C
    * 0 000004bc 00000004
    000004bc 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_bpst_HeapMem_Object_count__C)

    .const:ti_sysbios_堆_HeapMem_Object__table__C
    * 0 000004c0 00000004
    000004c0 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_bpst_HeapMem_Object__table_C)

    .const:ti_sysbios_堆_HeapMem_reqAlign__C
    * 0 000004c4 00000004
    000004c4 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_bags_HeapMem_reqAlign__C)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    text.3 0 00000500 00000002
    00000500 00000002 BLE_USER_CONFIG.obj (.text:DefaultAssertBack)

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

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

    const:ti_sysbios_family_arm_m3/Hwi_Module_id__C
    * 0 00000506 00000002
    00000506 00000002 app_ble_pem3.oem3 (.const:ti_sysbios_family_arm_m3_Hwi_Module_id__C)

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

    .const:ti_sysbios_gates_GateMutex_Module_id__C
    * 0 0000050A 00000002
    0000050A 00000002 app_ble_pem3.oem3 (.const:ti_sysbios_gates_GateMutex_Module_id__C)

    .const:ti_sysbios_堆_HeapMem_Module_id__C
    * 0 0000050c 00000002
    0000050c 00000002 app_ble_pem3.oem3 (.const:ti_sysbios_bpst_HeapMem_Module_id__C)

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

    .const:ti_sysbios_KNL_Clock_tickMode___C
    * 0 00000510 00000001
    00000510 00000001 app_ble_pem3.oem3 (.const:ti_SysBIOS_KNL_Clock_tickMode__C)

    .const:XDC_runtime _启动_firstFxns__C
    * 0 00000514 00000008
    00000514 00000008 app_ble_pem3.oem3 (.const:xdc_runtime_Startup_firstFxns__C)

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

    .const:XDC_runtime _ assert_E_assertFlail__C
    * 0 00000524 00000004
    00000524 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_assertFail__C)

    .const:XDC_RAuntime_Error_E_MEMORY__C
    * 0 00000528 00000004
    00000528 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Error_E_MEMORY__C)

    .const:XDC_runtime Error_policyFxn__C
    * 0 0000052c 00000004
    0000052c 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Error_policyFxn_C)

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

    .const:XDC_runtime IHeap_Interface_base__C
    * 0 00000534 00000004
    00000534 00000004 app_ble_pem3.oem3 (.const:XDC_runtime _IHeap_Interface_base__C)

    .const:XDC_runtime IModule_Interface_base__C
    * 0 00000538 00000004
    00000538 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_iModule_Interface_base__C)

    .const:XDC_runtime 主模块_diagsEnabled__C
    * 0 0000053c 00000004
    0000053c 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module_diagsEnabled__C)

    .const:XDC_runtime 主模块_diagsIncluded_C
    * 0 00000540 00000004
    00000540 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module_diagsIncluded_C)

    .const:XDC_runtime 主模块_diagsMask__C
    * 0 00000544 00000004
    00000544 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module_diagsMask__C)

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

    .const:XDC_runtime _启动_execImpl__C
    * 0 0000054c 00000004
    0000054c 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Startup_Impexecl__C)

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

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

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

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

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

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

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

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

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

    .const:XDC_runtime _text_charTab__C
    * 0 00000574 00000004
    00000574 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_text_charTab__C)

    .const:XDC_runtime _text_nameEmpty__C
    * 0 00000578 00000004
    00000578 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_text_nameEmpty__C)

    .const:XDC_runtime 文本名称 Static__C
    * 0 0000057c 00000004
    0000057c 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_text_name Static__C)

    .const:XDC_runtime 文本名称 Unknown__C
    * 0 00000580 00000004
    00000580 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_text_name 未知_____ C)

    .const:XDC_RAuntime_Main_Module_id__C
    * 0 00000584 00000002
    00000584 00000002 app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module_id__C)

    .const:XDC_RAuntime_Memory_Module_id__C
    * 0 00000586 00000002
    00000586 00000002 app_ble_pem3.oem3 (.const:xdc_runtime_Memory_Module_id__C)

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

    .const:XDC_runtime _text_isLoaded__C
    * 0 0000058A 00000002
    0000058a 00000002 app_ble_pem3.oem3 (.const:xdc_runtime_text_isLoaded__C)

    .const:XDC_runtime Error_policy__C
    * 0 0000058c 00000001
    0000058c 00000001 app_ble_pem3.oem3 (.const:xdc_runtime_Error_policy_C)

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

    .const:ti_sysBIOS_rom_rom_AONRTCCompareValueSet
    * 0 00000594 00000004
    00000594 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_rom_rom_AONRTCCompareValueSet)

    const:ti_sysBIOS_rom_rom_AONRTCCurrentCompareValueGet
    * 0 00000598 00000004
    00000598 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_rom_rom_AONRTCCurrentCompareValueGet)

    .const:ti_sysbios_rom_rom_AONRTCEventClear
    * 0 0000059c 00000004
    0000059c 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_rom_rom_AONRTCE文 丘)

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

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

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

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

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

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

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

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

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

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

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

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

    .const:ti_SysBIOS_KNL_Clock_Module_State_clockQ_O
    * 0 000005d0 00000004
    000005d0 00000004 APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Clock_Module_State_clockQ_O)

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

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

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

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

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

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

    text.4 000005ec 0000b5a0
    000005ec 000006dc I2CCC26XX.obj (.text:I2CCC26XX_hwiFxn$13)
    00000cc8 00000340 I2CCC26XX.obj (.text:I2CCC26XX_primeTransfer13美元)
    00001008 00000338 ROM_SYSBIOS.aem3:ROM_SYSBIOS.obj (.text:XDC_RAuntime_System_doPrint__I)
    00001340 00000314 RFCC26XX_singlemode.obj (.text:fsmActiveState_15美元)
    00001654 000002ec peripheral.obj (.text:gapRole_processGAPMsg$35)
    00001940 00000284 sensortag_bar.obj (.text:VL53L0xDefaultSettings)
    00001bc4 00000264 I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    00001e28 00000240 sensortag_tmp.obj (.text:flash_local_clear_wsh_water 数据)
    00002068 0000023c peripheral.obj (.text:GAPRole_SetParameter)
    000022a4 00000228 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_sleep)
    000024cc 00000218 sensortag.obj (.text:SensorTag_init$0)
    000026e4 00000204 driverlib.lib:sys_ctrl.obj (.text:NOROM_SysCtrlSetRechargeBeforePowerDown)
    000028e8 000001f4 I2CCC26XX.obj (.text:I2CCC26XX_open)
    00002adc 000001f4 rtsv7M3_T_le_eabi.lib:ull_div_t2.obj (.text)
    00002cd0 000001d0 drivers_cc26xxware.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:calibrateRcoscHF1)
    00002ea0 000001cc I2CCC26XX.obj (.text:I2CCC26XX_swifxn$13)
    0000306c 000001b4 sensortag_tmp.obj (.text:PeopleCount_ClockHandler$6)
    00003220 000001a8 PINCC26XX.obj (.text:PIN_init)
    000033c8 000001a8 RFCC26XX_singlemode.obj (.text:abortCmd$15)
    00003570 000001a0 drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_write)
    00003710 00000190 sensortag.obj (.text:SensorTag_read$0)
    000038a0 0000018c sensortag_bar.obj (.text:VL53L0X_init)
    00003a2c 00000184 drivers_cc26xxware.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_doCalibrate)
    00003bb0 00000170 RFCC26XX_singlemode.obj (.text:rf_postCmd)
    00003d20 0000015c sensortag_tmp.obj (.text:waterflow_Sensor_Connect)
    00003e7c 00000158 UART_logs.obj (.text:uartLog_doPrint7)
    00003fd4 00000144 sensortag_tmp.obj (.text:RestorDeviceCount_ClockHandler$6)
    00004118 00000130 driverlib.lib:setup.obj (.text:NOROM_SetupAfterColdResetWakeupFromShutDownCfg3)
    00004248 0000011c drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_init)
    00004364 00000114 RFCC26XX_singlemode.obj (.text:fsmSetupState_15美元)
    00004478 00000110 sensortag_bar.obj (.text:ValidateSensorRead)
    00004588 00000110 RFCC26XX_singlemode.obj (.text:hwiFxnCpe0Activat$15)
    00004698 0000010c sensortag_bar.obj (.text:Range_Sensor_Read)
    000047a4 0000010c sensortag_bar.obj (.text:VL53L0X_getSpadInfo)
    000048b0 00000104 sensortag.obj (.text:SensorTag_taskFxn$0)
    000049b4 00000100 sensortag_hm.obj (.text:Validate_SensorRead)
    00004ab4 000000fc peripheral.obj (.text:gapRole_taskFxn$35)
    00004bb0 000000fc rtsv7M3_T_le_eabi.lib:fd_mul_t2.obj (.text)
    00004cac 000000fa :fs_add_t2.obj (.text)
    00004da6 000000f8 app_ble_pem3.oem3 (.text:xdc_runtime_System_printfExtend__I)
    00004e9e 00000002 drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_Close)
    00004ea0 000000f4 sensortag.obj (.text:SensorTag_processStateChangeEvt$0)
    00004f94 000000ec iCall.obj (.text:iCall_primWaitMatch 20美元)
    00005080 000000ec sensortag_bar.obj (.text:VL53L0X_readRangeSingleMillemilletlis)
    0000516c 000000ec RFCC26XX_singlemode.obj (.text:rf_init$15)
    00005258 000000ec sensortag_hm.obj (.text:sensorTaskFxn$3)
    00005344 000000e8 registerservice.obj (.text:sensor_WriteAttrCB$36)
    0000542c 000000e0 sensortag_bar.obj (.text:sensorTaskFxn-1)
    0000550c 000000d4 driverlib.lib:setup.obj (.text:NOROM_SetupAfterColdResetWakeupFromShutDownCfg2)
    000055e0 000000d4 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_releaseDependency)
    000056b4 000000d0 I2CCC26XX.obj (.text:I2CCC26XX_Close)
    00005784 000000d0 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_setDependency)
    00005854 000000cc driverlib.lib:setup.obj (.text:TrimAfterColdResetWakeupFromShutDown 63美元)
    00005920 000000c8 RFCC26XX_singlemode.obj (.text:fsmPowerUpState_15美元)
    000059e8 000000c4 sensortag_hm.obj (.text:pression_sensor_reading)
    00005aac 000000c4. RFCC26XX_singlemode.obj (.text:swifxnHw$15)
    00005b70 000000c0 RFCC26XX_singlemode.obj (.text:rf_open)
    00005c30 000000bc. power_cc26xx_tirtos.aem3:PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
    00005cec 000000b4. PINCC26XX.obj (.text:PINCC26XX_setIoCfg$14)
    00005da0 000000b0 devinfoservice.obj (.text:DevInfo_ReadAttrCB$27)
    00005e50 000000b0 peripheral.obj (.text:gapRole_init$35)
    00005f00 000000a4 devinfoservice.obj (.text:DevInfo_SetParameter)
    00005fa4 000000a4 driverlib.lib:setup.obj (.text:NOROM_SetupTrimDevice)
    00006048 000000a0 auto_init.aem3:auto_init.oem3 (.text)
    000060e8 0000009c driverlib.lib:aux_adc.obj (.text:NOROM_AUXADCDisable)
    00006184 0000009c rtsv7M3_T_le_eabi.lib:memcpy_t2.obj (.text)
    00006220 0000009a ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:xdc_runtime_text_putSite___E)
    000062ba 00000002 drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_EXIT)
    000062bc 00000098 driverlib.lib:aux_adc.obj (.text:NOROM_AUXADCEnableSync)
    00006354 00000098 PINCC26XX.obj (.text:PIN_open)
    000063ec 00000098 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_workFuncDynamic__E)
    00006484 00000094 gattservapp_util.obj (.text:GATTServApp_ProcessCharCfg)
    00006518 00000094 drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_open)
    000065ac 00000094 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:xdc_runtime_text_putMod__E)
    00006640 00000092 rtsv7M3_T_le_eabi.lib:fs_div_t2.obj (.text)
    000066d2 00000002 sensortag.obj (.text:SensorTag_callback 0)
    000066d4 00000090 I2CCC26XX.obj (.text:I2CCC26XX_blockingCallback$13)
    00006764 00000090 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
    000067f4 00000088 I2CCC26XX.obj (.text:I2CCC26XX_CANCEL)
    0000687c 00000088 driverlib.lib:osc.obj (.text:NOROM_OSCHF_GetStartupTime)
    00006904 00000088 sensortag_register.obj (.text:SensorTagRegister_processCharChangeEvt)
    0000698c 00000088 registerservice.obj (.text:sensor_ReadAttrCB$36)
    00006a14 00000086 rtsv7M3_T_le_eabi.lib:fd_cmc_t2.obj (.text:__aeabi_cdrcmple)
    00006a9a 00000002 drivers_cc26xxware.aem3:WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_Close)
    00006a9c 00000084 iCall.obj (.text:iCall_heapMalloc)
    00006b20 00000084 iCall.obj (.text:iCall_primSetTimer 20美元)
    00006ba4 00000084 TRNGCC26XX.obj (.text:TRNGCC26XX_getNumber)
    00006c28 00000084 ZAN_CONFIG.obj (.text:ZanInit)
    00006cac 00000080 RFCC26XX_singlemode.obj (.text:rf_pendCmd)
    00006d2c 00000080 sensortag_io.obj (.text:SensorTagIO_processCharChangeEvt)
    00006dac 0000007c drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
    00006e28 0000007a rtsv7M3_T_le_eabi.lib:fs_mul_t2.obj (.text)
    00006ea2 0000007a :memset_t2.obj (.text)
    00006f1c 00000078 driverlib.lib:setup.obj (.text:NOROM_SetupAfterColdResetWakeupFromShutDownCfg1)
    00006f94 00000078 sensortag_tmp.obj (.text:PublishCount_ClockHandler$6)
    0000700c 00000078 UART_logs.obj (.text:uartLog_outputFxn)
    00007084 00000074 iCall_cc265.obj (.text:ICallPlatform_pwrUpdActivityCounter)
    000070f8 00000074 iCall.obj (.text:iCall_primSend$20)
    0000716c 00000074 drivers_cc26xxware.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_auxISR)
    000071e0 00000074 sensortag_register.obj (.text:SensorTagRegister_reset)
    00007254 00000074 drivers_cc26xxware.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:calibrateRcoscHf2)
    000072c8 00000074 peripheral.obj (.text:gapRole_startConnUpdate35美元)
    0000733c 00000070 driverlib.lib:chipinfo.obj (.text:NOROM_ChipInfo_GetHwRevision)
    000073ac 0000006d ROM_SYSBIOS.aem3:ROM_SYSBIOS.obj (.text:XDC_RAuntime_System_formatNum__i)
    00007419 00000001 --hole --[填充= 0]
    0000741A 00000002 RFCC26XX_singlemode.obj (.text:defaultErrCb$15)
    0000741c 0000006c sensortag.obj (.text:Board_writeString)
    00007488 0000006c sensortag.obj (.text:Board_writeStringValue)
    000074f4 0000006c iCall.obj (.text:iCall_createRemoteTasks)
    00007560 0000006c iCall.obj (.text:iCall_heapInit)
    000075cc 0000006c driverlib.lib:setup.obj (.text:NOROM_SetupGetTrimForAmpcompCtrl)
    00007638 0000006c drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
    000076a4 0000006c sensortag_tmp.obj (.text:WashCountCallbackFxn$6)
    00007710 0000006c gattservapp_util.obj (.text:gattServApp_SendNotitId$29)
    0000777c 0000006a rtsv7M3_T_le_eabi.lib:copy_decompress_rle.obj (.text)
    000077e6 00000002 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:emtyClockFunc)
    000077e8 00000068 driverlib.lib:setup.obj (.text:NOROM_SetupGetTrimForAnabypassValue1)
    00007850 00000068 :sys_ctrl.obj (.text:NOROM_SYSCTRL_DCDC_VoltageConditionalControl)
    000078b8 00000068 drivers_cc26xxware.aem3:WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_initHw)
    00007920 00000068 RFCC26XX_singlemode.obj (.text:fsmPowerDownState_15美元)
    00007988 00000068 UART_logs.obj (.text:uartLog_flush)
    000079f0 00000064 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_ARM_cc26xx_Timer_start__E)
    00007a54 00000060 I2CCC26XX.obj (.text:I2CCC26XX_initiio$13)
    00007ab4 00000060 iCall.obj (.text:iCall_primEnroll 20美元)
    00007b14 00000060 drivers_cc26xxware.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_RCOSC_clockFunc)
    00007b74 00000060 RFCC26XX_singlemode.obj (.text:rf_getCurrentTime)
    00007bd4 00000060 sensortag_bar.obj (.text:VL53L0XI2cInit)
    00007c34 00000060 rtsv7M3_T_le_eabi.lib:FS_CMP_T2.obj (.text:__aeabi_cfcmple)
    00007c94 00000060 drivers_cc26xxware.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:updateSubSecInc)
    00007cf4 0000005e :WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_open)
    00007d52 00000002 rtsv7M3_T_le_eabi.lib:I_DIV0.obj (.text)
    00007d54 0000005c iCall.obj (.text:iCall_primThreadServes 20美元)
    00007db0 0000005c driverlib.lib:osc.obj (.text:NOROM_OSCHF_AttempToSwitchToXosc)
    00007e0c 0000005c :sys_ctrl.obj (.text:NOROM_SysCtrlAdjustargeRechAfterPowerDown)
    00007e68 0000005c RFCC26XX_singlemode.obj (.text:applyRfCorePatch 15美元)
    00007ec4 0000005c RFCC26XX_singlemode.obj (.text:decActiveClientCnt$15)
    00007f20 0000005c main.obj (.text:main)
    00007f7c 0000005c app_ble_pem3.oem3 (.text:xdc_runtime_Startup_getState__I)
    00007fd8 0000005b ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:xdc_runtime_text_putLab___E)
    00008033 00000001 --hole --[填充= 0]
    00008034 00000058 drivers_cc26xxware.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
    0000808c 00000054 :PowerCC26XX.oem3 (.text:configureXOSCHF)
    000080e0 00000054 RFCC26XX_singlemode.obj (.text:fsmXOSCState_15美元)
    00008134 00000054 RFCC26XX_singlemode.obj (.text:hwiFxnHw15美元)
    00008188 00000054 RFCC26XX_singlemode.obj (.text:棘轮免费15美元)
    000081dc 00000054 rtsv7M3_T_le_eabi.lib:exit.obj (.text)
    00008230 00000052 iCall.obj (.text:iCall_primWait$20)
    00008282 00000002 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_BIOS_linkedWithIncorrectBootLibrary__E)
    00008284 00000050 iCall_API.obj (.text:GAP_DeviceInit)
    000082d4 00000050 iCall_API.obj (.text:GAP_UpdateAddertisingData)
    00008324 00000050 iCall.obj (.text:iCall_primRegisterApp$20)
    00008374 00000050 driverlib.lib:setup.obj (.text:NOROM_SetupSetCacheModeAccordingToCcfgSetting)
    000083c4 00000050 PINCC26XX.obj (.text:PIN_REMOVE)
    00008414 00000050 RFCC26XX_singlemode.obj (.text:rf_getinfo)
    00008464 00000050 sensortag.obj (.text:SensorTag_setDeviceInfo$0)
    000084b4 00000050 RFCC26XX_singlemode.obj (.text:synctb$15)
    00008504 0000004e ioservice.obj (.text:io_ReadAttrCB$31)
    00008552 00000002 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_nullFunc__i)
    00008554 0000004c iCall.obj (.text:iCall_newtask$20)
    000085a0 0000004c iCall.obj (.text:iCall_primGetEntityId$20)
    000085ec 0000004c driverlib.lib:osc.obj (.text:NOROM_OSCClockSourceSet)
    00008638 0000004c Util.obj (.text:Util_constructClock)
    00008684 0000004c RFCC26XX_singlemode.obj (.text:dispatchOpWhen$15)
    000086d0 0000004c peripheral.obj (.text:gapRole_processStackMsg$35)
    0000871c 0000004c rtsv7M3_T_le_eabi.lib:cpy_tbl.obj (.text)
    00008768 0000004c rom_SysBIOS.aem3:rom_SysBIOS.obj (.text:xdc_runtime_text_visitRope2__i)
    000087b4 0000004a gattservapp_util.obj (.text:GATTServApp_ProcessCCCWriteReq)
    000087fe 00000002 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_triggerFunc__i)
    00008800 00000048 I2CCC26XX.obj (.text:I2CCC26XX_initHw$13)
    00008848 00000048 driverlib.lib:chipinfo.obj (.text:NOROM_ChipInfo_GetChipFamily)
    00008890 00000048 :dDI.obj (.text:NOROM_DDI16BitfieldWrite)
    000088d8 00000048 sensortag_bar.obj (.text:VL53L0X_readMulti)
    00008920 00000048 sensortag_bar.obj (.text:VL53L0X_setSignalRateLimit)
    00008968 00000048 iCall_API.obj (.text:gattIndoti 23美元)
    000089b0 00000048 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:notify)
    000089f8 00000048 rtsv7M3_T_le_eabi.lib:fd_toi_t2.obj (.text)
    00008a40 00000044 iCall_API.obj (.text:GAP_TerminateLinkReq)
    00008a84 00000044 drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_control)
    00008ac8 00000044 :NVSCC26XX.oem3 (.text:NVSCC26XX_Read)
    00008b0c 00000044 PINCC26XX.obj (.text:PIN_swi$14)
    00008b50 00000044 sensortag_io.obj (.text:SensorTagIO_blinkLed)
    00008b94 00000044 boot.aem3:boot.oem3 (.text)
    00008bd8 00000044 iCall_API.obj (.text:gapSendParamAndPtrCmd$23)
    00008c1c 00000044 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:xdc_runtime_LoggerCallback_write8__E)
    00008c60 00000044 :rom_SysBIOS.obj (.text:xdc_runtime_text_xprintf___i)
    00008ca4 00000042 iCall.obj (.text:iCall_primCreateTask$20)
    00008ce6 00000002 app_ble_pem3.oem3 (.text:ti_sysbios_rom_cortexm_cc26xx_CC26xx_badRomRevision__E)
    00008ce8 00000040 peripheral.obj (.text:GAPRole_SendUpdateParam)
    00008d28 00000040 peripheral.obj (.text:GAPRole_createTask)
    00008d68 00000040 driverlib.lib:dDI.obj (.text:NOROM_DDI16BitfieldRead)
    00008da8 00000040 RFCC26XX_singlemode.obj (.text:rf_getRssi)
    00008de8 00000040 sensortag_register.obj (.text:readRegister$5)
    00008e28 00000040 rtsv7M3_T_le_eabi.lib:u_divt2.obj (.text)
    00008e68 00000040 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:xdc_runtime_LoggerCallback_Module_startup_E)
    00008ea8 0000003e iCall_API.obj (.text:hciSendParamsCmd$23)
    00008ee6 00000002 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:xdc_runtime_SysCallback_defaultAbort)
    00008e8 0000003c iCall_API.obj (.text:GAP_GetParamValue)
    00008f24 0000003c iCall_API.obj (.text:GATTServApp_RegisterService)
    00008f60 0000003c iCall_cc265.obj (.text:ICallPlatform_pwrConfigACAction)
    00008f9c 0000003c driverlib.lib:osc.obj (.text:NOROM_OSC_HPOSCRelativeFREquencyOffsetGet)
    00008fd8 0000003c :rfc.obj (.text:NOROM_RFCSynthPowerDown)
    00009014 0000003c RFCC26XX_singlemode.obj (.text:rf_runCmd)
    00009050 0000003c registerservice.obj (.text:Register_SetParameter)
    0000908c 0000003c sensortag_bar.obj (.text:SensorTagBar_createTask)
    000090c8 0000003c sensortag_hm.obj (.text:SensorTagHum_createTask)
    00009104 0000003c sensortag_io.obj (.text:SensorTagIO_RESET)
    00009140 0000003c sensortag.obj (.text:SensorTag_createTask)
    0000917c 0000003c sensortag_bar.obj (.text:VL53L0XI2cWriteRead)
    000091b8 0000003c watchdog.obj (.text:WDTInit)
    000091f4 0000003c RFCC26XX_singlemode.obj (.text:postDirImmCmd 15美元)
    00009230 0000003c iCall_API.obj (.text:profileSetParameter 23美元)
    0000926c 0000003c iCall_API.obj (.text:sendWaitMatchCS$23)
    000092a8 0000003c iCall_API.obj (.text:sendWaitMatchValueCS$23)
    000092e4 00000038 iCall_API.obj (.text:GAPBondMgr_LinkEst)
    0000931c 00000038 I2C.obj (.text:I2C_init)
    00009354 00000038 iCall.obj (.text:iCall_primGetMaxMSecs$20)
    0000938c 00000038 drivers_cc26xxware.aem3:NVS.oem3 (.text:NVS_init)
    000093c4 00000038 PINCC26XX.obj (.text:PIN_setOutputValue)
    000093fc 00000038 Util.obj (.text:Util_restartClock)
    00009434 00000038 sensortag_bar.obj (.text:VL53L0XI2cWrite)
    0000946c 00000038 drivers_cc26xxware.aem3:watchdog.oem3 (.text:watchdog_init)
    000094a4 00000038 iCall_API.obj (.text:linkDB_NumConns)
    000094dc 00000038 rtsv7M3_T_le_eabi.lib:fs_to_t2.obj (.text)
    00009514 00000038 :i_tofs_t2.obj (.text)
    0000954c 00000038 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_ARM_cc26xx_Timer_getCurrentTick__E)
    00009584 00000036 RFCC26XX_singlemode.obj (.text:updateImplicitState15美元)
    000095ba 00000002 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:xdc_runtime_SysCallback_defaultExit)
    000095bc 00000034 iCall_API.obj (.text:GAPBondMgr_SetParameter)
    000095f0 00000034 iCall_API.obj (.text:GAP_SetParamValue)
    00009624 00000034 iCall.obj (.text:iCall_primEntityId2ServiceId$20)
    00009658 00000034 iCall.obj (.text:iCall_primFetchMsg$20)
    0000968c 00000034 iCall.obj (.text:iCall_primRegisterISR$20)
    000096c0 00000034 iCall.obj (.text:iCall_primRegisterISR_Ext$20)
    000096f4 00000034 iCall.obj (.text:iCall_searchServiceEntity)
    00009728 00000034 ioservice.obj (.text:io_SetParameter)
    0000975c 00000034 driverlib.lib:dDI.obj (.text:NOROM_DDI32RegWrite)
    00009790 00000034 :osc.obj (.text:NOROM_OSCHF_SwitchToRcOscTurnOffXosc)
    000097c4 00000034 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
    000097f8 00000034 RFCC26XX_singlemode.obj (.text:Q_push$15)
    0000982c 00000034 registerservice.obj (.text:Register_getParameter)
    00009860 00000034 sensortag_bar.obj (.text:VL53L0XI2cRead)
    00009894 00000034 drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:disableFlashCache)
    000098c8 00000034 iCall_API.obj (.text:osal_SNV_read)
    000098fc 00000034 iCall_API.obj (.text:osal_SNV_write)
    00009930 00000034 iCall_API.obj (.text:profileAddService23美元)
    00009964 00000034 rtsv7M3_T_le_eabi.lib:fs_to_t2.obj (.text)
    00009998 00000034 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:xdc_runtime_LoggerCallback_write4__E)
    000099cc 00000032 iCall_API.obj (.text:gapSendParamsCmd$23)
    000099fe 00000032 iCall_API.obj (.text:gapSendPtrParamsCmd$23)
    00009a30 00000032 iCall_API.obj (.text:matchGapSetGetParamCS$23)
    00009a62 00000032 iCall_API.obj (.text:matchGattCmdlStatus$23)
    00009a94 00000032 iCall_API.obj (.text:matchUtilNvCS$23)
    00009ac6 00000032 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_ARM_cc26xx_Timer_setNextTick__E)
    00009af8 00000030 iCall_cc265.obj (.text:ICallPlatform_pwrNotify 21美元)
    00009b28 00000030 iCall_cc265.obj (.text:ICallPlatform_pwrRegisterNotify)
    00009b58 00000030 iCall.obj (.text:iCall_msecs2Ticks 20美元)
    00009b88 00000030 iCall.obj (.text:iCall_searchTask$20)
    00009bb8 00000030 driverlib.lib:setup.obj (.text:NOROM_SetupSetAonRtcSubSecInc)
    00009be8 00000030 :Trng.obj (.text:NOROM_TRNGConfigure)
    00009c18 00000030 drivers_cc26xxware.aem3:NVS.oem3 (.text:NVS_open)
    00009c48 00000030 :PowerCC26XX.oem3 (.text:Power_releaseConstraint)
    00009c78 00000030 :PowerCC26XX.oem3 (.text:Power_setConstraint)
    00009ca8 00000030 :WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_setReload)
    00009cd8 00000030 :Watchdog.oem3 (.text:Watchdog_open)
    00009d08 00000030 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__i)
    00009d38 00000030 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__i)
    00009d68 00000030 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_ARM_cc26xx_Timer_initDevice__I)
    00009d98 00000030 :rom_sysbios.obj (.text:ti_sysbios_family_arm_cc26xx_Timer_setThreshold__i)
    00009dc8 00000030 app_ble_pem3.oem3 (.text:xdc_runtime_LoggerCallback_Object_create_S)
    00009df8 0000002f ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:xdc_runtime_text_printVisFxn__i)
    00009e27 00000001 --hole --[填充= 0]
    00009e28 0000002e iCall_cc265.obj (.text:ICallPlatform_pwrDiscontseImpl$21)
    00009e56 0000002e iCall_cc265.obj (.text:ICallPlatform_pwrRequireImpl$21)
    00009e84 0000002e sensortag.obj (.text:iCall_fetchServiceMsg$0)
    00009eb2 0000002e peripheral.obj (.text:iCall_fetchServiceMsg$35)
    00009ee0 0000002e iCall.obj (.text:iCall_msgDequeue$20)
    00009f0e 0000002e iCall_API.obj (.text:matchProfileAddServiceCS$23)
    00009f3c 0000002c iCall_API.obj (.text:GAPBondMgr_Register)
    00009f68 0000002c iCall.obj (.text:iCall_heapFree)
    00009f94 0000002c ioservice.obj (.text:iCall_malloc$31)
    00009fc0 0000002c iCall.obj (.text:iCall_msgEnqueue$20)
    00009fec 0000002c iCall.obj (.text:iCall_primAllocMsg 20美元)
    0000a018 0000002c iCall.obj (.text:iCall_primFetchServiceMsg$20)
    0000a044 0000002c iCall_API.obj (.text:iCall_sendServiceMsg$23)
    0000a070 0000002c driverlib.lib:setup.obj (.text:NOROM_SetupGetTrimForRadcExtCfg)
    0000a09c 0000002c PINCC26XX.obj (.text:PINCC26XX_setMux)
    0000a0c8 0000002c PINCC26XX.obj (.text:PIN_setConfig)
    0000a0f4 0000002c driverlib.lib:Adi.obj (.text:SafeHapiAuxAdiSelect)
    0000a120 0000002c RFCC26XX_singlemode.obj (.text:getCmd$15)
    0000a14c 0000002c ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_getTicksUntilInterrupt__E)
    0000a178 0000002c ST_util.obj (.text:utilExtUuid16)
    0000a1a4 0000002c ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:xdc_runtime_LoggerCallback_write2_E)
    0000a1d0 0000002a iCall_API.obj (.text:iCall_waitMatch 23美元)
    0000a1fa 0000002a TRNGCC26XX.obj (.text:TRNGCC26XX_isParamValid)
    0000a224 0000002a Util.obj (.text:Util_enqueueMsg)
    0000a24e 0000002a iCall_API.obj (.text:matchProfileCS$23)
    0000a278 0000002a ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:xdc_runtime_System_putchar___i)
    0000a2a2 00000028 gattservapp_util.obj (.text:GATTServApp_WriteCharCfg)
    0000a2ca 00000002 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:xdc_runtime_SysCallback_defaultPutch)
    0000a2cc 00000028 iCall.obj (.text:iCall_init)
    0000a2f4 00000028 iCall.obj (.text:iCall_msgPrepend$20)
    0000a31c 00000028 sensortag.obj (.text:iCall_registerApp.0)
    0000a344 00000028 sensortag_bar.obj (.text:iCall_registerApp-1)
    0000a36c 00000028 peripheral.obj (.text:iCall_registerApp$35)
    0000a394 00000028 sensortag_hm.obj (.text:iCall_registerApp$3)
    0000a3bc 00000028 ioservice.obj (.text:io_addService)
    0000a3e4 00000028 driverlib.lib:aon_batmon.obj (.text:NOROM_AONBatMonTemperatureGetDegC)
    0000a40c 00000028 PINCC26XX.obj (.text:PINCC26XX_getPinCount)
    0000a434 00000028 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
    0000a45c 00000028 :PowerCC26XX.oem3 (.text:Power_registerNotify)
    0000a484 00000028 driverlib.lib:Adi.obj (.text:SafeHapiVoid)
    0000a4ac 00000028 sensortag.obj (.text:SensorTag_enqueueMsg$0)
    0000a4d4 00000028 TRNGCC26XX.obj (.text:TRNGCC26XX_init)
    0000a4fc 00000028 sensortag_bar.obj (.text:VL53L0XI2cwriteReg)
    0000a524 00000028 drivers_cc26xxware.aem3:WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_convertMsToTicks)
    0000a54c 00000028 RFCC26XX_singlemode.obj (.text:clkPowerUpFxn$15)
    0000a574 00000028 gattservapp_util.obj (.text:gattServApp_FindCharCfgItem29美元)
    0000a59c 00000028 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_ARM_cc26xx_Timer_getMaxTicks__E)
    0000a5c4 00000028 :rom_SysBIOS.obj (.text:xdc_runtime_LoggerCallback_write0__E)
    0000a5ec 00000028 :rom_SysBIOS.obj (.text:xdc_runtime_LoggerCallback_write1_E)
    0000a614 00000026 drivers_cc26xxware.aem3:List.oem3 (.text:List_Put)
    0000a63a 00000024 iCall_API.obj (.text:GAPBondMgr_LinkTerm)
    0000a65e 00000002 --hole --[填充= 0]
    0000a660 00000024 I2C.obj (.text:I2C_open)
    0000a684 00000024 iCall_API.obj (.text:iCall_getLocalMsgEntityId$23)
    0000a6a8 00000024 iCall_API.obj (.text:iCall_threadServes 23美元)
    0000a6cc 00000024 sensortag_register.obj (.text:SensorTagRegister_update)
    0000a6f0 00000024 drivers_cc26xxware.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:getTdcSemaphore)
    0000a714 00000024 RFCC26XX_singlemode.obj (.text:hwiFxnCpe0PowerFsm$15)
    0000a738 00000024 rtsv7M3_T_le_eabi.lib:u_tofs_t2.obj (.text)
    0000a75c 00000024 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_registerRTSLock__i)
    0000a780 00000024 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_removeRTSLock__i)
    0000a7a4 00000022 iCall.obj (.text:iCall_dispatch 20美元)
    0000a7c6 00000022 sensortag.obj (.text:iCall_malloc$0)
    0000a7e8 00000022 Util.obj (.text:iCall_malloc$8)
    0000a80a 00000022 rtsv7M3_T_le_eabi.lib:memcmp.obj (.text)
    0000a82c 00000020 sensortag_hum.obj (.text:adc_Init)
    0000a84c 00000020 gattservapp_util.obj (.text:GATTServApp_InitCharCfg)
    0000a86c 00000020 iCall_API.obj (.text:iCall_allocMsg$23)
    0000a88c 00000020 iCall_API.obj (.text:iCall_getEntityId$23)
    0000a8ac 00000020 devinfoservice.obj (.text:iCall_malloc$27)
    0000a8cc 00000020 iCall.obj (.text:iCall_primService20美元)
    0000a8ec 00000020 iCall.obj (.text:iCall_searchService$20)
    0000a90c 00000020 driverlib.lib:rfc.obj (.text:NOROM_RFCDoorbellSendto)
    0000a92c 00000020 :rfc.obj (.text:NOROM_RFCRfTrimRead)
    0000a94c 00000020 :setup.obj (.text:NOROM_SetupGetTrimForXoscHfCtl)
    0000a96c 00000020 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_unregisterNotify)
    0000a98c 00000020 sensortag_hm.obj (.text:adcIsr)
    0000a9ac 00000020 RFCC26XX_singlemode.obj (.text:allocCmd$15)
    0000a9cc 00000020 rtsv7M3_T_le_eabi.lib:u_tofd_t2.obj (.text)
    0000a9ec 00000020 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsLock__i)
    0000aa0c 00000020 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_stop__E)
    0000aa2c 00000020 :rom_SysBIOS.obj (.text:xdc_runtime_Registry_findById__E)
    0000aa4c 0000001e iCall.obj (.text:iCall_primSendServiceMsg$20)
    0000aa6a 0000001e PINCC26XX.obj (.text:PIN_CLOSE)
    0000aa88 0000001e drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_getTransitionLatency)
    0000aa6 0000001e iCall_API.obj (.text:matchHciCS$23)
    0000aac4 0000001e iCall_API.obj (.text:waitMatchCS$23)
    0000aae2 00000002 --hole --[填充= 0]
    0000aae4 0000001c sensortag_tmp.obj (.text:File_System_Int6)
    0000ab00 0000001c iCall_API.obj (.text:GATT_BM_alloc)
    0000ab1c 0000001c iCall_API.obj (.text:GATT_BM_FREE)
    0000ab38 0000001c iCall.obj (.text:iCall_initPrim$20)
    0000ab54 0000001c sensortag.obj (.text:iCall_Wait$0)
    0000ab70 0000001c peripheral.obj (.text:iCall_Wait$35)
    0000ab8c 0000001c driverlib.lib:flash.obj (.text:NOROM_FlashProgram)
    0000aba8 0000001c :flash.obj (.text:NOROM_FlashSectorErase)
    0000abc4 0000001c :osc.obj (.text:NOROM_OSCClockSourceGet)
    0000abe0 0000001c :setup.obj (.text:NOROM_SetupGetTrimForAmpcompTh2)
    0000abfc 0000001c :setup.obj (.text:NOROM_SetupGetTrimForRcOscLfRtuneCTuneTrim)
    0000ac18 0000001c drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_getAttrs)
    0000ac34 0000001c PINCC26XX.obj (.text:PINCC26XX_setIoCfgMux 14美元)
    0000ac50 0000001c PINCC26XX.obj (.text:PIN_hwi$14)
    0000ac6c 0000001c RFCC26XX_singlemode.obj (.text:rf_runDirectCmd)
    0000ac88 0000001c RFCC26XX_singlemode.obj (.text:rf_runImmediateCmd)
    0000aca4 0000001c sensortag_io.obj (.text:SensorTagIO_init)
    0000acc0 0000001c sensortag.obj (.text:SensorTag_processAppMsg$0)
    0000acdc 0000001c TRNGCC26XX.obj (.text:TRNGCC26XX_open)
    0000acf8 0000001c sensortag_tmp.obj (.text:three:Clock_stop)
    0000ad14 0000001c drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:enableFlashCache)
    0000ad30 0000001c peripheral.obj (.text:gapRole_HandleParamUpdateNoSuccesss$35)
    0000ad4c 0000001c iCall_API.obj (.text:getStatusValueFromErrNo$23)
    0000ad68 0000001c TRNGCC26XX.obj (.text:openTRNG)
    0000ad84 0000001c ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_ARM_cc26xx_Timer_DynamicStub_E)
    0000ada0 0000001c sensortag_register.obj (.text:writeRegister5)
    0000adbc 0000001c ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:xdc_runtime_LoggerCallback_instance_init__E)
    0000add8 0000001a iCall_API.obj (.text:GATT_Notification)
    0000adf2 0000001a iCall.obj (.text:iCall_enterCSImpl)
    0000ae0c 0000001a iCall.obj (.text:iCall_primSetTimerMSecs$20)
    0000ae26 0000001a drivers_cc26xxware.aem3:List.oem3 (.text:List_remove)
    0000ae40 0000001a Util.obj (.text:Util_dequeueMsg)
    0000ae5a 0000001a iCall_API.obj (.text:matchGattIndNottiCS$23)
    0000ae74 0000001a ROM_SysBIOS.aem3:ROM_SysBIOS_config.obj (.text:xdc_runtime_System_snprintf___E)
    0000ae8e 00000002 --hole --[填充= 0]
    0000ae90 00000018 peripheral.obj (.text:GAPRole_StartDevice)
    0000aea8 00000018 peripheral.obj (.text:GAPRole_TerminateConnection)
    0000aec0 00000018 I2C.obj (.text:I2C_Params_init)
    0000aed8 00000018 iCall_cc265.obj (.text:ICallPlatform_pwrDispense)
    0000aef0 00000018 iCall_cc265.obj (.text:ICallPlatform_pwrRequire)
    0000af08 00000018 sensortag.obj (.text:iCall_free$0)
    0000af20 00000018 devinfoservice.obj (.text:iCall_free$27)
    0000af38 00000018 Util.obj (.text:iCall_free$8)
    0000af50 00000018 sensortag.obj (.text:iCall_freeMsg$0)
    0000af68 00000018 iCall.obj (.text:iCall_freeMsg 20美元)
    0000af80 00000018 iCall_API.obj (.text:iCall_freeMsg$23)
    0000af98 00000018 peripheral.obj (.text:iCall_freeMsg$35)
    0000afb0 00000018 iCall.obj (.text:iCall_primMalloc$20)
    0000afc8 00000018 driverlib.lib:aon_rtc.obj (.text:NOROM_AONRTCCurrentCompareValueGet)
    0000afe0 00000018 :chipinfo.obj (.text:NOROM_ChipInfo_GetPackageType)
    0000aff8 00000018 :osc.obj (.text:NOROM_OSCHF_TurnOnXosc)
    0000b010 00000018 :rfc.obj (.text:NOROM_RFCCpeIntGetAndClear)
    0000b028 00000018 :setup.obj (.text:NOROM_SetupGetTrimForAdcShModeEn)
    0000b040 00000018 :setup.obj (.text:NOROM_SetupGetTrimForAdcShVbufEn)
    0000b058 00000018 :setup.obj (.text:NOROM_SetupGetTrimForAmpcompTh1)
    0000b070 00000018 :setup.obj (.text:NOROM_SetupGetTrimForDblrLoopFilterResetVoltage)
    0000b088 00000018 :setup.obj (.text:NOROM_SetupGetTrimForRcOscLfIBiasTrim)
    0000b0a0 00000018 :setup.obj (.text:NOROM_SetupGetTrimForXoscLfRegulatorAndCwrmirrorRatio)
    0000b0b8 00000018 :sys_ctrl.obj (.text:NOROM_SysCtrlResetSourceGet)
    0000b0d0 00000018 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_idleFunc)
    0000b0e8 00000018 RFCC26XX_singlemode.obj (.text:Q_pop$15)
    0000b100 00000018 registerservice.obj (.text:Register_registerAppCBs)
    0000b118 00000018 sensortag.obj (.text:SensorTag_processCharValueChangeEvt$0)
    0000b130 00000018 Util.obj (.text:Util_constructQueue)
    0000b148 00000018 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:configureRFCoreClocks)
    0000b160 00000018 peripheral.obj (.text:gapRole_setEvent$35)
    0000b178 00000018 rtsv7M3_T_le_eabi.lib:args_main.obj (.text)
    0000b190 00000018 :LL_mul_t2.obj (.text)
    0000b1a8 00000018 RFCC26XX_singlemode.obj (.text:swifxnFsm$15)
    0000b1c0 00000018 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsUnlock__i)
    0000b1d8 00000018 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_KNL_Swi_or_E)
    0000b1f0 00000018 app_ble_pem3.oem3 (.text:ti_sysbios_rom_cortexm_cc26xx_CC26xx_checkRevision__E)
    0000b208 00000016 main.obj (.text:AssertHandler)
    0000b21e 00000016 iCall.obj (.text:iCall_abort$20)
    0000b234 00000016 iCall.obj (.text:iCall_leaveCSImpl)
    0000b24a 00000016 iCall.obj (.text:iCall_primStopTimer 20美元)
    0000b260 00000016 BLE_USER_CONFIG.obj (.text:driverTable_fnSpinlock)
    0000b276 00000016 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__i)
    0000b28c 00000014 devinfoservice.obj (.text:DevInfo_AddService)
    0000b2a0 00000014 iCall_API.obj (.text:HCI_EXT_SetTxPowerCmd)
    0000b2b4 00000014 ioservice.obj (.text:io_getParameter)
    0000b2c8 00000014 ioservice.obj (.text:io_registerAppCBs)
    0000b2dc 00000014 driverlib.lib:aon_rtc.obj (.text:NOROM_AONRTCCurrent64BitValueGet)
    0000b2f0 00000014 :chipinfo.obj (.text:NOROM_ThisCodeIsBuiltForCC26xxHwRev22AndLater_HaltIfViolated)
    0000b304 00000014 RFCC26XX_singlemode.obj (.text:rf_params_init)
    0000b318 00000014 registerservice.obj (.text:Register_addService)
    0000b32c 00000014 sensortag.obj (.text:SensorTag_clockHandler0)
    0000b340 00000014 sensortag.obj (.text:SensorTag_updateAddertisingData)
    0000b354 00000014 sensortag.obj (.text:SysCtrlSystemReset0)
    0000b368 00000014 sensortag_bar.obj (.text:SysCtrlSystemReset1)
    0000b37c 00000014 sensortag_hm.obj (.text:SysCtrlSystemReset3)
    0000b390 00000014 sensortag_io.obj (.text:SysCtrlSystemReset$4)
    0000b3a4 00000014 Watchdog.obj (.text:SysCtrlSystemReset$9)
    0000b3b8 00000014 rtsv7M3_T_le_eabi.lib:_lock.obj (.text)
    0000b3cc 00000014 :strlen.obj (.text)
    0000b3e0 00000014 iCall_API.obj (.text:setICallCmdEvtHdr$23)
    0000b3f4 00000014 app_ble_pem3.oem3 (.text:ti_sysbios_KNL_Clock_dotick__i)
    0000b408 00000014 watchdog.obj (.text:wdtCallback)
    0000b41c 00000012 gattservapp_util.obj (.text:GATTServApp_FindAttr)
    0000b42e 00000012 RFCC26XX_singlemode.obj (.text:rf_getCmdOp)
    0000b440 00000012 app_ble_pem3.oem3 (.text:xdc_runtime_Startup_exec__i)
    0000b452 00000002 --hole --[填充= 0]
    0000b454 00000010 RFCC26XX_singlemode.obj (.text:FsmDispatch 15美元)
    0000b464 00000010 peripheral.obj (.text:GAPRole_GetParameter)
    0000b474 00000010 iCall_API.obj (.text:GAP_EndDiscoverable)
    0000b484 00000010 gattservapp_util.obj (.text:GATTServApp_ReadCharCfg)
    0000b494 00000010 iCall_cc265.obj (.text:ICallPlatform_pwrGetXOSCStartupTime)
    0000b4a4 00000010 iCall.obj (.text:iCall_primGetTickPeriod$20)
    0000b4b4 00000010 iCall.obj (.text:iCall_taskEntry$20)
    0000b4c4 00000010 driverlib.lib:aux_adc.obj (.text:NOROM_AUXADCReadFifo)
    0000b4d4 00000010 :rfc.obj (.text:NOROM_RFCRfTrimSet)
    0000b4e4 00000010 :setup.obj (.text:NOROM_SetupGetTrimForXoscHfFastStart)
    0000b4f4 00000010 :setup.obj (.text:NOROM_SetupGetTrimForXoscHfIbiastherm)
    0000b504 00000010 drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_init)
    0000b514 00000010 BLE_USER_CONFIG.obj (.text:RegisterAssertBack)
    0000b524 00000010 sensortag_register.obj (.text:SensorTagRegister_init)
    0000b534 00000010 Util.obj (.text:Util_isActive)
    0000b544 00000010 drivers_cc26xxware.aem3:WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_clear)
    0000b554 00000010 :Watchdog.oem3 (.text:Watchdog_Params_init)
    0000b564 00000010 I2CCC26XX.obj (.text:i2cPostNotify 13美元)
    0000b574 00000010 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_ARM_m3/Hwi_post _ E)
    0000b584 00000010 sensortag_bar.obj (.text:writeReg)
    0000b594 00000010 app_ble_pem3.oem3 (.text:xdc_runtime_LoggerCallback_Object_GET_S)
    0000b5a4 00000010 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:xdc_runtime_SysCallback_putch__E)
    0000b5b4 00000010 :rom_SysBIOS.obj (.text:xdc_runtime_SysCallback_ready__E)
    0000b5c4 00000010 :rom_SysBIOS.obj (.text:xdc_runtime_System_vsnprintf___E)
    0000b5d4 0000000e iCall_API.obj (.text:GATT_Indication)
    0000b5e2 0000000e iCall_cc265.obj (.text:ICallPlatform_pwrGetTransitionState)
    0000b5f0 0000000e iCall_cc265.obj (.text:ICallPlatform_pwrIsStableXOSCHF)
    0000b5fe 0000000e iCall.obj (.text:iCall_primDisableMInt$20)
    0000b60c 0000000e iCall.obj (.text:iCall_primEnableMInt$20)
    0000b61a 0000000e iCall.obj (.text:iCall_primFreeMsg$20)
    0000b628 0000000e iCall.obj (.text:iCall_primGetTicks$20)
    0000b636 0000000e driverlib.lib:setup.obj (.text:NOROM_SetupSignExtendVddrTrimValue)
    0000b644 0000000e :VIMS.obj (.text:NOROM_VIMSModeGet)
    0000b652 0000000e drivers_cc26xxware.aem3:NVS.oem3 (.text:NVS_write)
    0000b660 0000000e sensortag_bar.obj (.text:VL53L0XI2creadReg)
    0000b66e 0000000e rtsv7M3_T_le_eabi.lib:copy_decompress_none.obj (.text:decompress:none)
    0000b67c 0000000e sensortag_bar.obj (.text:makeint16)
    0000b68a 0000000e iCall_API.obj (.text:matchGSARegisterServiceCS$23)
    0000b698 0000000e iCall_API.obj (.text:matchGapLinkEstCS$23)
    0000b6a6 0000000e iCall_API.obj (.text:matchLinkDBNumConnsCS$23)
    0000b6b4 0000000e iCall_API.obj (.text:setDispatchCmdEvtHdr$23)
    0000b6c2 0000000e ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_ARM_cc26xx_TimestampProvider_get32__E)
    0000b6d0 0000000c RFCC26XX_singlemode.obj (.text:FsmNextState_15美元)
    0000b6dc 0000000c iCall_API.obj (.text:GAP_MakeDiscoverable)
    0000b6e8 0000000c iCall_API.obj (.text:GAP_TerminateAuth)
    0000b6f4 0000000c iCall_API.obj (.text:GAP_UpdateLinkParamReq)
    0000b700 0000000c iCall_API.obj (.text:GAP_UpdateLinkParamReqReply)
    0000b70c 0000000c iCall_API.obj (.text:GGS_SetParameter)
    0000b718 0000000c iCall.obj (.text:iCall_clockFunc$20)
    0000b724 0000000c iCall.obj (.text:iCall_primDisableInt$20)
    0000b730 0000000c iCall.obj (.text:iCall_primEnableInt$20)
    0000b73c 0000000c iCall.obj (.text:iCall_primFree 20美元)
    0000b748 0000000c iCall.obj (.text:iCall_primSignal$20)
    0000b754 0000000c driverlib.lib:cpu.obj (.text:NOROM_CPUcpsid)
    0000b760 0000000c :cpu.obj (.text:NOROM_CPUcpsie)
    0000b76c 0000000c drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_getConstraintMask)
    0000b778 0000000c :PowerCC26XX.oem3 (.text:Power_getDependencyCount)
    0000b784 0000000c :PowerCC26XX.oem3 (.text:Power_getTransitionState)
    0000b790 0000000c sensortag.obj (.text:SensorTag_processGATTMsg$0)
    0000b79c 0000000c sensortag.obj (.text:SensorTag_processStackMsg$0)
    0000b7a8 0000000c Util.obj (.text:Util_startClock)
    0000b7b4 0000000c sensortag_bar.obj (.text:VL53L0XI2cDeselect)
    0000b7c0 0000000c Watchdog.obj (.text:WDTClose)
    0000b7cc 0000000c iCall_API.obj (.text:matchProfileSetParamCS$23)
    0000b7d8 0000000c sensortag_tmp.obj (.text:publish_data)
    0000b7e4 0000000c sensortag_tmp.obj (.text:publish_watersusing_data)
    0000b7f0 0000000c ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_BIOS_getThreadType__E)
    0000b7fc 0000000c :rom_SysBIOS.obj (.text:ti_SysBIOS_KNL_Swi_getTrigger__E)
    0000b808 0000000c app_ble_pem3.oem3 (.text:xdc_runtime_Startup_reset__i)
    0000b814 0000000c ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:XDC_Runtime_Startup_rtsDone__E)
    0000b820 0000000a I2CCC26XX.obj (.text:I2CCC26XX_init)
    0000b82a 0000000a I2C.obj (.text:I2C_transfer)
    0000b834 0000000a iCall_cc265.obj (.text:ICallPlatform_pwrSwitchXOSCHF)
    0000b83e 0000000a iCall.obj (.text:iCall_primE2S$20)
    0000b848 0000000a drivers_cc26xxware.aem3:List.oem3 (.text:List_empty)
    0000b852 0000000a :NVS.oem3 (.text:NVS_READ)
    0000b85c 0000000a sensortag.obj (.text:SensorTag_charValueChangeCB)
    0000b866 0000000a sensortag.obj (.text:SensorTag_stateChangeCB0)
    0000b870 0000000a drivers_cc26xxware.aem3:uart.oem3 (.text:uart_write)
    0000b87a 0000000a :Watchdog.oem3 (.text:Watchdog_clear)
    0000b884 0000000a :Watchdog.oem3 (.text:Watchdog_Close)
    0000b88e 0000000a :Watchdog.oem3 (.text:Watchdog_setReload)
    0000b898 0000000a ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:xdc_runtime_LoggerCallback_disable__E)
    0000b8a2 0000000a :rom_SysBIOS.obj (.text:xdc_runtime_LoggerCallback_enable__E)
    0000b8ac 0000000a app_ble_pem3.oem3 (.text:xdc_runtime_text_visitRope__I)
    0000b8b6 00000008 RFCC26XX_singlemode.obj (.text:rf_flushCmd)
    0000b8be 00000008 sensortag_bar.obj (.text:VL53L0X_setMeasureTimingBdget)
    0000b8c6 00000008 drivers_cc26xxware.aem3:WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_init)
    0000b8ce 00000008 sensortag_io.obj (.text:ioChangeCB-4)
    0000b8d6 00000008 iCall_API.obj (.text:matchHciExtSetTxPowerCS$23)
    0000b8de 00000008 sensortag_register.obj (.text:registerChangeCB$5)
    0000b8e6 00000008 sensortag_tmp.obj (.text:sensorConfigChangeCB$6)
    0000b8ee 00000006 iCall_API.obj (.text:GGS_AddService)
    0000b8f4 00000006 I2CCC26XX.obj (.text:I2CCC26XX_control)
    0000b8fa 00000006 iCall.obj (.text:iCall_mallocImpl)
    0000b900 00000006 driverlib.lib:cpu.obj (.text:NOROM_CPUdelay)
    0000b906 00000006 PINCC26XX.obj (.text:PIN_registerIntCb)
    0000b90c 00000006 drivers_cc26xxware.aem3:WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_control)
    0000b912 00000006 RFCC26XX_singlemode.obj (.text:clkInactivityFxn$15)
    0000b918 00000006 rtsv7M3_T_le_eabi.lib:copy_decompress_rle.obj (.text:decompress:rle24)
    0000b91e 00000006 iCall_API.obj (.text:gattAddService23美元)
    0000b924 00000006 iCall_API.obj (.text:matchBondMgrSetParamCS$23)
    0000b92a 00000006 iCall_API.obj (.text:matchGGSSetParamCS$23)
    0000b930 00000006 iCall_API.obj (.text:matchGapConnParamUpdateReplyCS$23)
    0000b936 00000006 iCall_API.obj (.text:matchGapDeviceInitCS$23)
    0000b93c 00000006 iCall_API.obj (.text:matchGapEndDiscoverableCS$23)
    0000b942 00000006 iCall_API.obj (.text:matchGapGetParamCS$23)
    0000b948 00000006 iCall_API.obj (.text:matchGapMakeDiscoverableCS$23)
    0000b94e 00000006 iCall_API.obj (.text:matchGapSetParamCS$23)
    0000b954 00000006 iCall_API.obj (.text:matchGapTerminateAuthCS$23)
    0000b95a 00000006 iCall_API.obj (.text:matchGapTerminateLinkReqCS$23)
    0000b960 00000006 iCall_API.obj (.text:matchGapUpdateAdvDataCS$23)
    0000b966 00000006 iCall_API.obj (.text:matchGapUpdateLinkParamReqCS$23)
    0000b96c 00000006 iCall_API.obj (.text:matchUtilNvReadCS$23)
    0000b972 00000006 iCall_API.obj (.text:matchUtilNvWriteCS$23)
    0000b978 00000006 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_ARM_m3/Hwi_setFunc__E)
    0000b97e 00000004 tirtosport.aem3:hwip_tirtos.oem3 (.text:Hwip_disable)
    0000b982 00000004 drivers_cc26xxware.aem3:List.oem3 (.text:List_head)
    0000b986 00000004 :List.oem3 (.text:List_next)
    0000b98a 00000004 RFCC26XX_singlemode.obj (.text:Q_peek$15)
    0000b98e 00000004 sensortag.obj (.text:SensorTag_resetAllModules 0)
    0000b992 00000004 Util.obj (.text:Util_stopClock)
    0000b996 00000004 ZAN_CONFIG.obj (.text:ZanConfig_read)
    0000b99a 00000004 peripheral.obj (.text:gapRole_SetupGAP 35美元)
    0000b99e 00000004 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:nopResourceHandler)
    0000b9a2 00000004 sensortag_tmp.obj (.text:publish_watersusing_data2)
    0000b9a6 00000004 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_ARM_cc26xx_Timer_getCount64_E)
    0000b9aa 00000004 :rom_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_isActive__E)
    0000b9ae 00000004 :rom_SysBIOS.obj (.text:xdc_runtime_LoggerCallback_defaultCreate)
    0000b9b2 00000004 :rom_SysBIOS.obj (.text:xdc_runtime_SysCallback_defaultReady)
    0000b9b6 00000004 :rom_sysbios.obj (.text:xdc_runtime_System_snprintf_va__F)
    0000b9ba 00000002 --hole --[填充= 0]
    0000b9bc 00000008 (.tramp.ti_SysBIOS_KNL_Task_enable_e.1)
    0000b9c4 00000008 (.tramp.ti_sysbios_family_arm_m3/hwi_enableFxn_e.1)
    0000b9cc 00000008 (.tramp.XDC_Runtime_Startup_startMods__I.1)
    0000b9d4 00000008 (.tramp.ti_SysBIOS_KNL_Clock_logTick__e.1)
    0000b9dc 00000008 (.tramp.ti_SysBIOS_BIOS_rtsGateProxy_leave_e.1)
    0000b9e4 00000008 (.tramp.ti_SysBIOS_KNL_Queue_construct.1)
    0000b9ec 00000008 (.tramp.ti_SysBIOS_KNL_Queue_get_e.1)
    0000b9f4 00000008 (.tramp.ti_sysbios_BIOS_rtsGateProxy_enter_e.1)
    0000b9fc 00000008 (.tramp.ti_sysbios_KNL_Queue_Put)
    0000ba04 00000008 (.tramp.XDC_Runtime_Core_CreateObject__I.1)
    0000ba0c 00000008 (.tramp.ti_sysbios_KNL_Task_startup_e_e.1)
    0000ba14 00000008 (.tramp.ti_sysbios_KNL_Swi_startup__e.1)
    0000ba1c 00000008 (.tramp.ti_sysbios_hal_hwi_startup__e.1)
    0000ba24 00000008 (.tramp.ti_SysBIOS_family_ARM_cc26xx_Timer_startup__e.1)
    0000ba2c 00000008 (.tramp.XDC_Runtime_System_atexit__e.1)
    0000ba34 00000008 (.tramp.ti_SysBIOS_BIOS_setThreadType__E.1)
    0000ba3c 00000008 (.tramp.ti_sysbios_family_arm_m3/hwi_create.1)
    0000ba44 00000008 (.tramp.ti_SysBIOS_KNL_Task_construct.1)
    0000ba4c 00000008 (.tramp.XDC_Runtime_System_exit__e.1)
    0000ba54 00000008 (.tramp.ti_SysBIOS_BIOS_getCpuFreq__e.1)
    0000ba5c 00000008 (.tramp.ti_SysBIOS_KNL_Semaphore_create.1)
    0000ba64 00000008 (.tramp.ti_SysBIOS_BIOS_start__e.1)
    0000ba6c 00000008 (.tramp.ti_SysBIOS_KNL_Task_create.1)
    0000ba74 00000008 (.tramp.ti_SysBIOS_KNL_Task_Params__init_S.1)
    0000ba7c 00000008 (.tramp.ti_SysBIOS_KNL_Clock_create.1)
    0000ba84 00000008 (.tramp.ti_SysBIOS_KNL_Clock_scheduleNextTick__e.1)
    0000ba8c 00000008 (.tramp.ti_SysBIOS_KNL_Clock_WalkQueueDynamic__E.1)
    0000ba94 00000008 (.tramp.ti_SysBIOS_KNL_Clock_TimerProxy_getCurrentTick__e.1)
    0000ba9c 00000008 (.tramp.ti_SysBIOS_KNL_Semaphore_析 构函数1)
    0000baa4 00000008 (.tramp.ti_SysBIOS_KNL_Swi_析 构函数1)
    0000baac 00000008 (.tramp.ti_sysbios_family_arm_m3/hwi_析 构1)
    0000Bab4 00000008 (.tramp.ti_SysBIOS_KNL_Task_self_e.1)
    0000Babc 00000008 (.tramp.ti_SysBIOS_KNL_Queue_empty_e.1)
    0000bac4 00000008 (.tramp.ti_SysBIOS_KNL_Clock_getTicks__e.1)
    0000bacc 00000008 (.tramp.ti_SysBIOS_KNL_Clock_construct.1)
    0000bad4 00000008 (.tramp.ti_SysBIOS_KNL_Clock_Params__init_S.1)
    0000badc 00000008 (.tramp.XDC_Runtime_text_ropeText__e.1)
    0000bae4 00000008 (.tramp.XDC_Runtime_System_ABortSpin__E.1)
    0000baec 00000008 (.tramp.ti_SysBIOS_KNL_Semaphore_construct.1)
    0000baf4 00000008 (.tramp.ti_SysBIOS_KNL_Semaphore_Params__init__S.1)
    0000bafc 00000008 (.tramp.ti_SysBIOS_KNL_Swi_construct.1)
    0000bb04 00000008 (.tramp.ti_SysBIOS_KNL_Swi_Params__init_S.1)
    0000bb0c 00000008 (.tramp.ti_sysbios_family_arm_m3/hwi_construct.1)
    0000bb14 00000008 (.tramp.ti_SysBIOS_family_ARM_m3/Hwi_Params__init_S.1)
    0000bb1c 00000008 (.tramp.ti_SysBIOS_KNL_Task_sleep_e.1)
    0000bb24 00000008 (.tramp.ti_sysbios_KNL_Task_restore__e.1)
    0000bb2c 00000008 (.tramp.ti_SysBIOS_KNL_Swi_restore_e_e.1)
    0000bb34 00000008 (.tramp.ti_SysBIOS_KNL_Swi_disable_e_e.1)
    0000bb3c 00000008 (.tramp.ti_SysBIOS_KNL_Task_disable_e.1)
    0000bb44 00000008 (.tramp.ti_SysBIOS_KNL_Semaphore_post__e.1)
    0000bb4c 00000008 (.tramp.ti_sysbios_family_arm_m3/hwi_enableInterrupt_e.1)
    0000bb54 00000008 (.tramp.ti_sysbios_family_arm_m3/hwi_disableInterrupt__e.1)
    0000bb5c 00000008 (.tramp.ti_SysBIOS_KNL_Semaphore_pend__e.1)
    0000bb64 00000008 (.tramp.ti_SysBIOS_KNL_Clock_start__e.1)
    0000bb6c 00000008 (.tramp.ti_SysBIOS_KNL_Clock_setTimeout___e.1)
    0000bb74 00000008 (.tramp.ti_sysbios_family_arm_m3/hwi_restoreFxn_e.1)
    0000bb7c 00000008 (.tramp.ti_sysbios_family_arm_m3/hwi_disableFxn_e.1)
    0000bb84 00000008 (.tramp.ti_SysBIOS_KNL_Swi_post _ e.1)

    .const 0 0000bb8c 00001d6c
    0000bb8c 000017c0 app_ble_pem3.oem3 (.const:xdc_runtime_text_charTab__a)
    0000d34c 000000cc iCall.obj (.const:$O14$$)
    0000d418 0000004c drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.const:resourceDB)
    0000d464 0000004c BLE_USER_CONFIG.obj (.const:rfDriverTable)
    0000d4b0 00000048 sensortag.obj (.const:$O2$)
    0000d4f8 00000048 app_ble_pem3.oem3 (.const:.string)
    0000d540 00000034 app_ble_pem3.oem3 (.const:xdc_runtime_LoggerCallback_Module_Fxns__C)
    0000d574 0000002c GATT_uid.obj (.const:$O21$$)
    0000d5a0 00000028 app_ble_pem3.oem3 (.const:xdc_runtime_Startup_sfxnTab__A)
    0000d5c8 00000027 BLE_USER_CONFIG.obj (.const:txPowerTable)
    0000d5ef 00000001 drivers_cc26xxware.aem3:NVS.oem3 (.const)
    0000d5f0 00000020 :NVSCC26XX.oem3 (.const)
    0000d610 00000020 app_ble_pem3.oem3 (.const:xdc_runtime_LoggerCallback_Object_DESC_C)
    0000d630 0000001c drivers_cc26xxware.aem3:watchdogCC26XX.oem3 (.const)
    0000d64c 0000001c app_ble_pem3.oem3 (.const:xdc_runtime_LoggerCallback_Object__Params__C)
    0000d668 00000018 I2CCC26XX.obj (.const:I2CCC26XX_fxnTable)
    0000d680 00000018 CC2650STK.obj (.const:I2C_CONFIG)
    0000d698 00000018 CC2650STK.obj (.const:NVS_CONFIG)
    0000d6b0 00000018 安全装置.obj (.const:Watchdog_config)
    0000d6c8 00000018 Board.obj (.const:ZanAppPinTable_FSR)
    0000d6e0 00000018 CC2650STK.obj (.const:i2cCC26xxHWAttrs)
    0000d6f8 00000014 RFCC26XX_singlemode.obj (.const:rf_defaultParams$15)
    0000d70c 00000014 app_ble_pem3.oem3 (.const:xdc_runtime_Startup_sfxnRts__A)
    0000d720 00000010 ioservice.obj (.const:.string:ioConfUUID)
    0000d730 00000010 ioservice.obj (.const:.string:ioDataUUID)
    0000d740 00000010 ioservice.obj (.const:.string:ioServUUID)
    0000d750 00000010 registerservice.obj (.const:.string:registerAddressUUUUID$36)
    0000d760 00000010 registerservice.obj (.const:.string:registerDataUUUUID$36)
    0000d770 00000010 registerservice.obj (.const:.string:registerDeviceIDUUUUID$36)
    0000d780 00000010 registerservice.obj (.const:.string:sensorServiceUUID $36)
    0000d790 00000010 I2C.obj (.const:I2C_defaultParams)
    0000d7a0 00000010 CC2650STK.obj (.const:PowerCC26XX_CONFIG)
    0000d7b0 00000010 CC2650STK.obj (.const:TRNGCC26XX_CONFIG)
    0000d7c0 00000010 Board.obj (.const:ZanAppPinTable_TOF)
    0000d7d0 00000010 CC2650STK.obj (.const:nvsCC26xxHWAttrs)
    0000d7e0 00000010 app_ble_pem3.oem3 (.const:xdc_runtime_text_nodeTab__A)
    0000d7f0 0000000e zan_config.obj (.const:zanConfig_default)
    0000d7fe 00000002 devinfoservice.obj (.const:.string:devInfo11073CertUUID)
    0000d800 0000000c Board.obj (.const:BoardGpioInitTable)
    0000d80c 0000000c Board.obj (.const:ZanAppPinTable_WashCnt)
    0000d818 0000000c devinfoservice.obj (.const:devInfoCBs)
    0000d824 0000000c drivers_cc26xxware.aem3:watchdog.oem3 (.const)
    0000d830 0000000c ioservice.obj (.const:ioccs)
    0000d83c 0000000c registerservice.obj (.const:sensorcbs$36)
    0000d848 0000000c BLE_USER_CONFIG.obj (.const:trngDriverTable)
    0000d854 0000000c 安全装置.obj (.const:watchdogCC26XHwAttrs)
    0000d860 0000000c app_ble_pem3.oem3 (.const:xdc_runtime_Startup_firstFxns__A)
    0000d86c 00000008 I2CCC26XX.obj (.const:bitRATE 13美元)
    0000d874 00000008 devinfoservice.obj (.const:devInfoService27美元)
    0000d87c 00000008 ioservice.obj (.const:ioService31美元)
    0000d884 00000008 registerservice.obj (.const:sensorService$36)
    0000d88c 00000008 app_ble_pem3.oem3 (.const:ti_sysbios_KNL_idle_funclist__a)
    0000d894 00000006 BLE_USER_CONFIG.obj (.const:txPwrTbl)
    0000d89a 00000002 devinfoservice.obj (.const:.string:devInfoFirmwareRevUUID)
    0000d89c 00000004 CC2650STK.obj (.const:TRNGCC26XXHWAttrs)
    0000d8a0 00000004 iCall_cc265.obj (.const:Events$1$21)
    0000d8a4 00000004 app_ble_pem3.oem3 (.const:ti_sysbios_kcl_Clock_tickPeriod___C)
    0000d8a8 00000004 APP_BLE_Pem3.oem3 (.const:ti_SysBIOS_KNL_Clock_triggerClock___C)
    0000d8ac 00000004 APP_BLE_Pem3.oem3 (.const:XDC_RATILoger_Interface_base__C)
    0000d8b0 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Log_L_info__C)
    0000d8b4 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_LoggerCallback_Object_count_C)
    0000d8b8 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_LoggerCallback_createInstFxn__C)
    0000d8bc 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_LoggerCallback_outputFxn__C)
    0000d8c0 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module_loggerFxn2__C)
    0000d8c4 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module_loggerFxn4__C)
    0000d8c8 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module_loggerObj__C)
    0000d8cc 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_SysCallback_putchFxn__C)
    0000d8d0 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_SysCallback_readyFxn__C)
    0000d8d4 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_System_extendFxn__C)
    0000d8d8 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_text_nodeTab__C)
    0000d8dc 00000004 app_ble_pem3.oem3 (.const:xdc_runtime_text_visitRopeFxn__C)
    0000d8e0 00000002 devinfoservice.obj (.const:.string:devInfoHardwareRevUUID)
    0000d8e2 00000002 devinfoservice.obj (.const:.string:devInfoMfrNameUUID)
    0000d8e4 00000002 devinfoservice.obj (.const:.string:devInfoModelNumberUUID)
    0000d8e6 00000002 devinfoservice.obj (.const:.string:devInfoPnpIdUUID)
    0000d8e8 00000002 devinfoservice.obj (.const:.string:devInfoSerialNumberUUID)
    0000d8ea 00000002 devinfoservice.obj (.const:.string:devInfoServUUID)
    0000d8ec 00000002 devinfoservice.obj (.const:.string:devInfoSoftwareRevUUID)
    0000d8ee 00000002 devinfoservice.obj (.const:.string:devInfoSystemIdUUID)
    0000d8f0 00000002 sensortag_bar.obj (.const:pinCfg1美元)
    0000d8f2 00000002 app_ble_pem3.oem3 (.const:xdc_runtime_Main_Module_logger Defined__C)
    0000d8f4 00000002 app_ble_pem3.oem3 (.const:xdc_runtime_text_registryModsLastId__C)
    0000d8f6 00000002 app_ble_pem3.oem3 (.const:xdc_runtime_text_unnamedModsLastId__C)

    .cinit 0 0000d8f8 00000744
    0000d8f8 000005bd (.cinit、.data.load)[加载映像、压缩= rle]
    0000deb5 00000003 --hole --[填充= 0]
    0000deb8 0000002d (.cinit。.data:ti_sysbios_family_arm_m3_Hwi_Module_state___V.load)[加载映像、压缩= RLE]
    0000dee5 00000003 --hole --[填充= 0]
    0000dee8 0000002c (.cinit。.data:ti_SysBIOS_KNL_Task_Module_state__V.load)[加载映像、压缩= RLE]
    0000df14 00000004 --hole --[填充= 0]
    0000df18 00000021 (.cinit。.data:ti_SysBIOS_KNL_Clock_Module_state__V.load)[加载映像、压缩= RLE]
    0000df39 00000007 --hole --[填充= 0]
    0000df40 0000001f (.cinit。.data:ti_sysbios_BIOS_Module_state__V.load)[加载映像、压缩= rle]
    0000df5f 00000001 --hole --[填充= 0]
    0000df60 00000011 (.cinit。.data:ti_SysBIOS_KNL_Swi_Module_state___V.load)[加载映像、压缩= RLE]
    0000df71 00000007 --hole --[填充= 0]
    0000df78 0000000d (.cinit。.data:ti_sysbios_family_arm_cc26xx_Timer_Module_state__V.load)[加载映像、压缩= rle]
    0000df85 00000003 --hole --[填充= 0]
    0000df88 0000000b (.cinit、.bss.load)[加载映像、压缩= RLE]
    0000df93 00000005 --hole --[填充= 0]
    0000df98 0000000a (.cinit。.data:xdc_runtime_Memory_Module_state__V.load)[加载映像、压缩= rle]
    0000dfa2 00000006 --hole --[填充= 0]
    0000dfa8 00000009 (.cinit。.data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_state_V.load)[加载映像、压缩= RLE]
    0000dfb1 00000007 --hole --[填充= 0]
    0000dfb8 00000009 (.cinit。.data:xdc_runtime_Startup_Module_state__V.load)[加载映像、压缩= RLE]
    0000dfc1 00000007 --hole --[填充= 0]
    0000dfc8 00000009 (.cinit。.data:xdc_runtime_System_Module_state__V.load)[加载映像、压缩= RLE]
    0000dfd1 00000003 --hole --[填充= 0]
    0000dfd4 00000008 (__TI_handler_table)
    0000dfdc 00000060 (__TI_cinit_table)

    init_array
    * 0 00000000 00000000 未初始化

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

    向量 0 20000000 000000c8 NoLoad 部分
    20000000 000000c8. app_ble_pem3.oem3 (.vecs)

    .data:ti_sysbios_KNL_Task_Module_state__V
    * 0 20000100 00000044 未初始化
    20000100 00000044 app_ble_pem3.oem3 (.data:ti_sysbios_KNL_Task_Module_state__V)

    .data:ti_sysbios_family_arm_m3/Hwi_Module_state__V
    * 0 20000144 00000034 未初始化
    20000144 00000034 app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module_state__V)

    .data:ti_SysBIOS_KNL_Clock_Module_state__V
    * 0 20000178 0000002c 未初始化
    20000178 0000002c. APP_BLE_Pem3.oem3 (.data:ti_SysBIOS_KNL_Clock_Module_state___V)

    .data:ti_SysBIOS_BIOS_Module_state___V
    * 0 200001a4 00000024 未初始化
    200001a4 00000024 app_ble_pem3.oem3 (.data:ti_sysbios_BIOS_Module_state___V)

    .data:ti_sysbios_KNL_Swi_Module_state__V
    * 0 200001c8 0000001c 未初始化
    200001c8 0000001c app_ble_pem3.oem3 (.data:ti_sysbios_KNL_Swi_Module_state__V)

    .data:ti_SysBIOS_family_ARM_cc26xx_Timer_Module_state___V
    * 0 200001e4 00000008 未初始化
    200001e4 00000008 app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_cc26xx_Timer_Module_state__V)

    .data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_state___v
    * 0 200001ec 00000004 未初始化
    200001ec 00000004. app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_state__V)

    .data:XDC_RAuntime_Startup_Module_state__V
    * 0 200001f0 00000008 未初始化
    200001f0 00000008 app_ble_pem3.oem3 (.data:xdc_runtime_Startup_Module_state___V)

    .data:XDC_RAuntime_System_Module_state__V
    * 0 200001f8 00000008 未初始化
    200001f8 00000008 app_ble_pem3.oem3 (.data:xdc_runtime_System_Module_state___V)

    .data:XDC_RAuntime_Memory_Module_state__V
    * 0 20000200 00000004 未初始化
    20000200 00000004 app_ble_pem3.oem3 (.data:xdc_runtime_Memory_Module_state___V)

    .data 0 20000208 00001865 未初始化
    20000208 00000410 sensortag.obj (.data:$O1$$)
    20000618 000003c0 sensortag_tmp.obj (.data:$O7$$)
    200009d8 00000338 UART_logs.obj (.data:$O8$$)
    20000d10 0000031c peripheral.obj (.data:$O27$$)
    2000102c 00000004. I2C.obj (.data)
    20001030 00000230 RFCC26XX_singlemode.obj (.data:$O11$$)
    20001260 000001d4. devinfoservice.obj (.data:$O20$$)
    20001434 00000110 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.data:PowerCC26XX_MODULE)
    20001544 0000010c iCall.obj (.data:$O13$$)
    20001650 00000090 registerservice.obj (.data:$O28$$)
    200016e0 0000005c ioservice.obj (.data:$O23$$)
    2000173c 00000050 BLE_USER_CONFIG.obj (.data:rfRegTbl)
    2000178c 0000004c app_ble_pem3.oem3 (.data:ti_sysbios_KNL_Task_Object__table__V)
    200017d8 00000048 app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_cc26xx_Timer_Object__table_V)
    20001820 00000038 app_ble_pem3.oem3 (.data:ti_sysbios_gates_GateMutex_Object__table__V)
    20001858 00000030 sensortag_register.obj (.data:$O6$$)
    20001888 00000030 app_ble_pem3.oem3 (.data:ti_sysbios_KNL_Swi_Module_State_0_readyQ__A)
    200018b8 00000030 app_ble_pem3.oem3 (.data:ti_sysbios_KNL_Swi_Object__table__V)
    200018e8 00000030 APP_BLE_Pem3.oem3 (.data:ti_SysBIOS_KNL_Task_Module_State_0_readyQ_A)
    20001918 00000030 main.obj (.data:user0Cfg)
    20001948 00000020 app_ble_pem3.oem3 (.data:ti_sysbios_KNL_Clock_Object__table__V)
    20001968 00000018 app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Object__table_V)
    20001980 00000018 app_ble_pem3.oem3 (.data:ti_sysbios_boops_heapMem_Object__table__V)
    20001998 00000010 app_ble_pem3.oem3 (.data:xdc_runtime_LoggerCallback_Object__table_V)
    200019a8 0000000c rtsv7M3_T_le_eabi.lib:exit.obj (.data:$O1$$)
    200019b4 0000000c iCall_API.obj (.data:$O16$$)
    200019c0 00000009 devinfoservice.obj (.data)
    200019c9 00000003 registerservice.obj (.data)
    200019cc 00000008 iCall_cc265.obj (.data:$O15$$)
    200019d4 00000008 rtsv7M3_T_le_eabi.lib:_lock.obj (.data:$O30$$)
    200019dc 00000008 sensortag_io.obj (.data:$O5$$)
    200019e4 00000008 app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module_root_V)
    200019ec 00000008 app_ble_pem3.oem3 (.data:ti_sysbios_gates_GateHwi_Module_root_V)
    200019f4 00000008 app_ble_pem3.oem3 (.data:ti_sysbios_gates_GateMutex_Module_root_V)
    200019fc 00000008 app_ble_pem3.oem3 (.data:ti_sysbios_hal_hwi_Module_root__V)
    20001a04 00000008 app_ble_pem3.oem3 (.data:ti_sysbios_boops_heapMem_Module_root__V)
    20001a0c 00000008 APP_BLE_Pem3.oem3 (.data:ti_SysBIOS_KNL_Clock_Module_root_V)
    20001a14 00000008 app_ble_pem3.oem3 (.data:ti_sysbios_KNL_Mailbox_Module_root__V)
    20001a1c 00000008 app_ble_pem3.oem3 (.data:ti_sysbios_KNL_Queue_Module_root__V)
    20001a24 00000008 app_ble_pem3.oem3 (.data:ti_sysbios_KNL_semaphore_Module_root__V)
    20001a2c 00000008 app_ble_pem3.oem3 (.data:ti_sysbios_KNL_Swi_Module_root__V)
    20001a34 00000008 app_ble_pem3.oem3 (.data:ti_sysbios_KNL_Task_Module_root__V)
    20001a3c 00000008 app_ble_pem3.oem3 (.data:xdc_runtime_LoggerCallback_Module_root_V)
    20001a44 00000008 app_ble_pem3.oem3 (.data:xdc_runtime_Registry_Module_state__state__V)
    20001a4c 00000004 BLE_USER_CONFIG.obj (.data)
    20001a50 00000004 drivers_cc26xxware.aem3:NVS.oem3 (.data)
    20001a54 00000004 :Watchdog.oem3 (.data)
    20001a58 00000004 rtsv7M3_T_le_eabi.lib:stkdept_vars.obj (.data)
    20001a5c 00000004 app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module_State_0_excote_a)
    20001a60 00000004 app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3/hwi_Module_State_0_exstack__a)
    20001a64 00000004 APP_BLE_Pem3.oem3 (.data:ti_SysBIOS_KNL_Task_Module_State_0_idleTask_A)
    20001a68 00000002 ioservice.obj (.data)
    20001a6a 00000002 app_ble_pem3.oem3 (.data:ti_sysbios_family_arm_m3_Hwi_Module_State_0_exACTIVE_A)
    20001a6c 00000001 TRNGCC26XX.obj (.data)

    .bss 0 20001a70 000021f5 未初始化
    20001a70 00001000 (.common:myCopyBlock)
    20002a70 00000680 (.common:ti_sysbios_堆_HeapMem_instance_State_0_Buf__a)
    200030f0 00000320 sensortag_bar.obj (.bss:$O3$$)
    20003410 000002f4 sensortag_hum.obj (.bss:$O4$$)
    20003704 00000004 (.common:hWDT)
    20003708 00000200 app_ble_pem3.oem3 (.bss:taskStackSection)
    20003908 00000110 PINCC26XX.obj (.bss:$O10$)
    20003a18 000000e0 (.common:i2cCC26xx 对象)
    20003af8 000000c8 (.common:ti_sysbios_family_arm_m3/hwi_d调度 表)
    20003bc0 00000028 (.common:watchdogCC26XX 对象)
    20003be8 00000024 Board.obj (.bss:$O29$)
    20003c0c 0000001c (.common:writeSem)
    20003c28 00000014 driverlib.lib:osc.obj (.bss:oscHfGlobals 61美元)
    20003c3c 0000000e (.common:zanConfig_active)
    20003c4a 00000002 sensortag_bar.obj (.bss)
    20003c4c 00000008 RFCC26XX_singlemode.obj (.bss)
    20003c54 00000008 driverlib.lib:sys_ctrl.obj (.bss:powerGlobQuals$64)
    20003c5c 00000004 (.common:nvsCC26xx 对象)
    20003c60 00000004 (.common:trngCC26XX 对象)
    20003c64 00000001 (.common:driverlib_release_0_46593)

    .vtable 0 20003c65 00000000 未初始化

    .vtable_ram
    * 0 20003c65 00000000 未初始化

    VTABLE RAM
    * 0 20003c65 00000000 未初始化

    .sysmem 0 20003c65 00000000 未初始化

    .nonretenvar
    * 0 20003c65 00000000 未初始化

    堆栈 0 20004028 00000400 未初始化
    20004028 00000400 -孔--

    引导矢量
    * 0 00000000 00000008 DSECT
    00000000 00000008 boot.aem3:boot.oem3 (.bootVecs)

    xdc.meta 0 00000000 000000f9 复制部分
    00000000 000000f9 app_ble_pem3.oem3 (xdc.meta)

    模块总结

    模块 代码 ro 数据 RW 数据
    ---- ------ ----
    应用程序\
    sensortag_bar.obj 2940 2. 802.
    sensortag.obj 2194 72. 1040
    sensortag_tmp.obj 2004年0 960
    sensortag_hum.obj 872 0 756
    UART_logs.obj 568 0 824)
    sensortag_register.obj 404. 0 48
    sensortag_io.obj 312. 0 8.
    Util.obj 314. 0 0
    ZAN_CONFIG.obj 136. 14. 0
    安全装置.obj 112 36. 0
    +-++---------------- +--- +--- +--- +
    总计: 9856 124. 4438.

    ..\Drivers\I2C_
    I2CCC26XX.obj 4848 32. 0
    I2C.obj 126. 16. 4.
    +-++---------------- +--- +--- +--- +
    总计: 4974 48. 4.

    ..\Drivers\PIN\
    PINCC26XX.obj 1180 0 272.
    +-++---------------- +--- +--- +--- +
    总计: 1180 0 272.

    ..\Drivers\RF\
    RFCC26XX_singlemode.obj 4584 20. 568
    +-++---------------- +--- +--- +--- +
    总计: 4584 20. 568

    ..\Drivers\TRNG\
    TRNGCC26XX.obj 270 0 1
    +-++---------------- +--- +--- +--- +
    总计: 270 0 1

    ..\ICallBLE\
    iCall_API.obj 2268 0 12.
    BLE_USER_CONFIG.obj 40 133. 84
    +-++---------------- +--- +--- +--- +
    总计: 2308 133. 96

    .\iCall\
    iCall.obj 2604 204. 268.
    iCall_cc265.obj 466 4. 8.
    +-++---------------- +--- +--- +--- +
    总计: 3070 208. 276.

    配置文件\
    peripheral.obj 2326 0 796
    devinfoservice.obj 416. 40 477.
    registerservice.obj 524 84 147.
    ioservice.obj 446 68 94
    gattservapp_util.obj 476 0 0
    GATT_uid.obj 0 44. 0
    ST_util.obj 44. 0 0
    +-++---------------- +--- +--- +--- +
    总计: 4232 236 1514

    ..\Startup\
    main.obj 114 0 48
    CC2650STK.obj 0 124. 0
    Board.obj 0 64 36.
    ccfg_app_ble.obj 0 88 0
    +-++---------------- +--- +--- +--- +
    总计: 114 276. 84

    C:\Users\user\AppData\Local\Temp\
    011762 0 0 4387.
    +-++---------------- +--- +--- +--- +
    总计: 0 0 4387.

    C:\Users\user\Desktop\Kaleesh_dev\BLE_Firmware\bleV2_app\FlashROM\configPkg\package\cfg\
    app_ble_pem3.oem3. 738) 7734. 3398
    +-++---------------- +--- +--- +--- +
    总计: 738) 7734. 3398

    C:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/driverlib/bin/ccs/driverlib.lib
    setup.obj 1666 0 0
    SYS_CTRL.obj 736 0 8.
    OSC.obj 468 0 20.
    AUX_ADC.obj 324. 0 0
    chipinfo.obj 228 0 0
    DDI.obj 188. 0 0
    RFC.obj 164. 0 0
    AdI.obj 84 0 0
    flash.obj 56. 0 0
    Trng.obj 48 0 0
    AON_RTC.obj 44. 0 0
    Aon_batmon.obj 40 0 0
    cpu.obj 30 0 0
    VIMS.obj 14. 0 0
    +-++---------------- +--- +--- +--- +
    总计: 4090 0 28.

    C:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/tidrivers_cc13xx_cc26xx_2_20_01_10/packages/ti/drivers/lib/drivers_cc26xxware.aem3
    PowerCC26XX.oem3. 2168 76. 272.
    PowerCC26XX_calibrateRCOSC.oem3 1400 0 0
    NVSCC26XX.oem3. 828 32 28.
    WatchdogCC26XX.oem3. 318 28. 0
    安全装置.oem3 150 12. 4.
    NVS.oem3. 128 1 4.
    list.oem3. 82. 0 0
    UART.oem3 10. 0 0
    +-++---------------- +--- +--- +--- +
    总计: 5084 149 308

    C:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/tidrivers_cc13xx_cc26xx_2_20_01_10/packages/ti/drivers/lib/power_cc26xx_tirtos.aem3
    PowerCC26XX_tirtos.oem3. 188. 0 0
    +-++---------------- +--- +--- +--- +
    总计: 188. 0 0

    C:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/tidrivers_cc13xx_cc26xx_2_20_01_10/packages/ti/drivers/ports/lib/tirtosport.aem3
    Hwip_tirtos.oem3. 4. 0 0
    +-++---------------- +--- +--- +--- +
    总计: 4. 0 0

    C:\ti\ccsv6\ccsv6\tools\compiler\arm_15.12.3.LTS \lib\rtsv7M3_T_le_eabi.lib
    UL_div_t2.obj 500 0 0
    fd_mul_t2.obj 252. 0 0
    FS_ADD_T2.obj 250 0 0
    memcpy_t2.obj 156. 0 0
    fs_div_t2.obj 146. 0 0
    FD_CMP_T2.obj 134. 0 0
    fs_mul_t2.obj 122. 0 0
    memset_t2.obj 122. 0 0
    copy_decompress_rle.obj 112 0 0
    exit.obj 84 0 12.
    FS_CMP_T2.obj 96 0 0
    cpy_tbl.obj 76. 0 0
    fd_toi_t2.obj 72. 0 0
    U_divt2.obj 64 0 0
    fs_toi_t2.obj 56. 0 0
    I_tofs_t2.obj 56. 0 0
    FS_TO_T2.obj 52. 0 0
    U_tofs_t2.obj 36. 0 0
    memcmp.obj 34 0 0
    U_tofd_t2.obj 32 0 0
    _lock.obj 20. 0 8.
    args_main.obj 24 0 0
    LL_mul_t2.obj 24 0 0
    strlen.obj 20. 0 0
    copy_decompress_none.obj 14. 0 0
    stkdept_vars.obj 0 0 4.
    I_DIV0.obj 2. 0 0
    +-++---------------- +--- +--- +--- +
    总计: 2556 0 24

    C:\ti\simplelink\ble_sdk_2_02_01_18\examples\cc2650stk\sensortag\ccs\config\src\SysBIOS\rom_SysBIOS.aem3
    ROM_SYSBIOS.obj 2719 0 0
    ROM_SYSBIOS_CONFIG.obj 26 0 0
    +-++---------------- +--- +--- +--- +
    总计: 2745 0 0

    C:\ti_tirtos_cc13xx_cc26xx_2_20_01_08\products\BIOS_6_46_01_38\packages/ti\targets\arm\rtsarm\lib\auto_init.aem3
    AUTO_INIT.oem3 160 0 0
    +-++---------------- +--- +--- +--- +
    总计: 160 0 0

    C:\ti_tirtos_cc13xx_cc26xx_2_20_01_08\products\BIOS_6_46_01_38\packages/ti\targets\arm\rtsarm\lib\boot.aem3
    boot.oem3. 68 0 0
    +-++---------------- +--- +--- +--- +
    总计: 68 0 0

    堆栈: 0 0 1024
    链接器生成: 464.64 1804 0
    +-++---------------- +--- +--- +--- +
    总计: 46685 10732 16422


    链接器生成的复制表

    _TI_cinit_table @ 0000dfdc 记录:12、大小/记录:8、表大小:96
    .data:load addr=0000d8f8、load size=000005bd 字节、run addr=20000208、run size=00001865字节、compression=rle
    .data:ti_sysbios_family_arm_m3/Hwi_Module_state__V:load addr=0000deb8、load size=0000002d 字节、run addr=20000144、run size=00000034字节、compression=rle
    .data:ti_sysbios_KNL_Task_Module_state___V:load addr=0000dee8、load size=0000002c 字节、run addr=20000100、run size=00000044字节、compression=rle
    .data:ti_SysBIOS_KNL_Clock_Module_state__V:load addr=0000df18、load size=00000021字节、run addr=20000178、run size=0000002c 字节、compression=rle
    .data:ti_sysbios_BIOS_Module_state__V:load addr=0000df40、load size=0000001f 字节、run addr=200001a4、run size=00000024字节、compression=rle
    .data:ti_SYSBIOS_KNL_Swi_Module_State__V:load addr=0000df60、load size=00000011字节、run addr=200001c8、run size=0000001c 字节、compression=rle
    .data:ti_sysbios_family_arm_cc26xx_Timer_Module_state__V:load addr=0000df78、load size=0000000d 字节、run addr=200001e4、run size=00000008字节、compression=rle
    .bss:load addr=0000df88、load size=0000000b 字节、run addr=20001a70、run size=000021f5字节、compression=rle
    .data:xdc_runtime_Memory_Module_state___V:load addr=0000df98、load size=0000000a 字节、run addr=20000200、run size=00000004字节、compression=rle
    .data:ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_state____V:load addr=0000dfa8、load size=00000009字节、run addr=200001ec、run size=00000004字节、compression=rle
    .data:xdc_runtime_Startup_Module_state___V:load addr=0000dfb8、load size=00000009字节、run addr=200001f0、run size=00000008字节、compression=rle
    .data:xdc_runtime_System_Module_state___V:load addr=0000dfc8、load size=00000009字节、run addr=200001f8、run size=00000008字节、compression=rle


    链接器生成的处理程序表

    _TI_handler_table @ 0000dfd4记录:2、大小/记录:4、表大小:8
    索引:0、处理程序:_TI_decompress_rle24
    索引:1、处理程序:_TI_decompress_none


    far 调用 trampoline

    被调用方名称 trampoline 名称
    被叫方 addr tramp addr 调用 addr 调用信息
    -------- ------ ------ --------
    TI_SYSBIOS_KNL_Task_ENABLE_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Task_ENABLE_E
    1001c243. 0000b9bc. 0000b612 iCall.obj (.text:iCall_primEnableMInt$20)
    TI_SYSBIOS_family_ARM_m3/Hwi_enableFxn_E $Tramp$TT$L$PI$ti_SYSBIOS_family_ARM_m3/Hwi_enableFxn_E
    1001c155 0000b9c4. 0000b60e iCall.obj (.text:iCall_primEnableMInt$20)
    xdc_runtime_Startup_startMods__i $Tramp$TT$L$PI$XDC_runtime 启动_startMods__i
    1001c30d 0000b9cc 0000b44a app_ble_pem3.oem3 (.text:xdc_runtim_Startup_exec__i)
    TI_SYSBIOS_KNL_Clock_logTick__E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Clock_logTick__E
    1001be67 0000b9d4 0000b3f6 app_ble_pem3.oem3 (.text:ti_sysbios_KNL_Clock_doTick__i)
    TI_SYSBIOS_BIOS_rtsGateProxy_leave_E $Tramp$TT$L$PI$ti_SYSBIOS_BIOS_rtsGateProxy_leave_E
    1001c24d 0000b9dc 0000b1ce app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsUnlock___i)
    TI_SYSBIOS_KNL_Queue_construct$Tramp$TT$L$PI$ti_SYSBIOS_KNL_Queue_construct
    1001b8f5 0000b9e4 0000b13a util.obj (.text:Util_constructQueue)
    TI_SYSBIOS_KNL_Queue_get_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Queue_get_E
    1001bf11 0000b9ec 0000ae44 util.obj (.text:Util_dequeueMsg)
    TI_SYSBIOS_BIOS_rtsGateProxy_enter_E $Tramp$TT$L$PI$ti_SYSBIOS_BIOS_rtsGateProxy_enter_E
    1001c249 0000b9f4 0000a9f2 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_rtsLock__i)
    TI_SYSBIOS_KNL_Queue_Put_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Queue_Put _ E
    1001bf2d 0000b9fc 0000a240 util.obj (.text:Util_enqueueMsg)
    xdc_runtime_Core_CreateObject__I $Tramp$TT$L$PI$XDC_runimation_Core_CreateObject__I
    1001c405. 0000ba04 00009ddc app_ble_pem3.oem3 (.text:xdc_runtime_LoggerCallback_Object_create_S)
    TI_SYSBIOS_KNL_Task_STARTUP_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Task_START__E
    1001c309 0000ba0c 00009d5c app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__i)
    TI_SYSBIOS_KNL_Swi_STARTUP_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Swi_START__E
    1001c23d 0000ba14. 00009d58 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__i)
    TI_SYSBIOS_hal_Hwi_STARTUP_E $Tramp$TT$L$PI$ti_SYSBIOS_hal_Hwi_START__E
    1001c28d 0000ba1c 00009d54 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__i)
    TI_SYSBIOS_family_ARM_cc26xx_Timer_STARTUP_E $Tramp$TT$L$PI$ti_SYSBIOS_family_ARM_cc26xx_Timer_START__E
    1001b795 0000ba24. 00009d50 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__i)
    xdc_runtime_System_atexit__E $Tramp$TT$L$PI$XDC_runtime_System_atexit__E
    1001c681 0000ba2c 00009d48 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_startFunc__i)
    TI_SYSBIOS_BIOS_setThreadType__E $Tramp$TT$L$PI$ti_SYSBIOS_BIOS_setThreadType__E
    1001c045 0000ba34 00009d14 app_ble_pem3.oem3 (.text:ti_SysBIOS_BIOS_atExitFunc__I)
    0000b280 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__i)
    TI_SYSBIOS_family_ARM_m3/Hwi_create $Tramp$TT$L$PI$ti_SYSBIOS_family_ARM_m3/Hwi_create
    1001ab15. 0000ba3c 000096ac iCall.obj (.text:iCall_primRegisterISR$20)
    000096e0 iCall.obj (.text:iCall_primRegisterISR_Ext$20)
    TI_SYSBIOS_KNL_Task_con构$Tramp$TT$L$PI$ti_SYSBIOS_KNL_Task_con构
    1001b125. 0000ba44. 00008d56 peripheral.obj (.text:GAPRole_createTask)
    000090b8 sensortag_bar.obj (.text:SensorTagBar_createTask)
    000090f4 sensortag_hm.obj (.text:SensorTagHum_createTask)
    0000916c sensortag.obj (.text:SensorTag_createTask)
    xdc_runtime_System_exit_E $Tramp$TT$L$PI$XDC_runtime System_exit__E
    1001c7d1. 0000ba4c 00008bc0 boot.aem3:boot.oem3 (.text)
    0000b286 app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_exitFunc__i)
    TI_SYSBIOS_getCpuFreq_E $Tramp$TT$L$PI$ti_SYSBIOS_BIOS_getCpuFreq__E
    1001bff9. 0000ba54. 00008808 I2CCC26XX.obj (.text:I2CCC26XX_initHw$13)
    0000a52a drivers_cc26xxware.aem3:WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_convertMsToTicks)
    TI_SYSBIOS_KNL_Semaphore_create $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Semaphore_create
    1001b5ad 0000ba5c 00008578 iCall.obj (.text:iCall_newtask$20)
    TI_SYSBIOS_BIOS_start__E $Tramp$TT$L$PI$ti_SYSBIOS_BIOS_Start_E
    1001c055 0000ba64 00007f6a main.obj (.text:main)
    TI_SYSBIOS_KNL_Task_create $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Task_create
    1001ae19. 0000ba6c 00007528 iCall.obj (.text:iCall_createRemoteTasks)
    00008cce iCall.obj (.text:iCall_primCreateTask$20)
    TI_SYSBIOS_KNL_Task_Params__init_S $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Task_Params__init_S
    1001c1d9. 0000ba74 00007508 iCall.obj (.text:iCall_createRemoteTasks)
    00008cb8 iCall.obj (.text:iCall_primCreateTask$20)
    00008d36 peripheral.obj (.text:GAPRole_createTask)
    0000909a sensortag_bar.obj (.text:SensorTagBar_createTask)
    000090d6 sensortag_hm.obj (.text:SensorTagHum_createTask)
    0000914e sensortag.obj (.text:SensorTag_createTask)
    TI_SYSBIOS_KNL_Clock_create $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Clock_create
    1001b3ed 0000ba7c. 00006b52 iCall.obj (.text:iCall_primSetTimer$20)
    TI_SYSBIOS_KNL_Clock_scheduleNextTick__E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Clock_scheduleNextTick__E
    1001bebd 0000ba84 0000646a ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_workFuncDynamic__E)
    TI_SYSBIOS_KNL_Clock_WalkQueueDynamic__E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Clock_WalkQueueDynamic__E
    1001a80d 0000ba8c 00006432 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_workFuncDynamic__E)
    0000644e :rom_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_workFuncDynamic__E)
    TI_SYSBIOS_KNL_Clock_TimerProxy_getCurrentTick__E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_TimerProx_getCurrentTick__E
    1001c095 0000ba94 00006400 rom_SysBIOS.aem3:rom_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_workFuncDynamic__E)
    0000a15e :rom_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_getTicksUntilInterrupt__E)
    TI_SYSBIOS_KNL_Semaphore_析 构$Tramp$TT$L$PI$ti_SYSBIOS_KNL_Semaphore_析 构
    1001c2e1 0000ba9c 000056e8 I2CCC26XX.obj (.text:I2CCC26XX_Close)
    000056f4 I2CCC26XX.obj (.text:I2CCC26XX_Close)
    TI_SYSBIOS_KNL_Swi_析 构$Tramp$TT$L$PI$ti_SYSBIOS_KNL_Swi_析 构
    1001c2e9. 0000baa4. 000056e0 I2CCC26XX.obj (.text:I2CCC26XX_Close)
    TI_SYSBIOS_family_ARM_m3/Hwi_析 构$Tramp$TT$L$PI$ti_SYSBIOS_family_ARM_m3/Hwi_析 构
    1001c261 0000baac 000056d8 I2CCC26XX.obj (.text:I2CCC26XX_Close)
    TI_SYSBIOS_KNL_Task_self_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Task_self_E
    1001c1e5 0000Bab4 00004f9e iCall.obj (.text:iCall_primWaitMatch 20美元)
    00007ab8 iCall.obj (.text:iCall_primEnroll$20)
    00007d68 iCall.obj (.text:iCall_primThreadServes 20美元)
    00008234 iCall.obj (.text:iCall_primWait$20)
    00008328 iCall.obj (.text:iCall_primRegisterApp$20)
    000085a4 iCall.obj (.text:iCall_primGetEntityId$20)
    0000965c iCall.obj (.text:iCall_primFetchMsg$20)
    TI_SYSBIOS_KNL_Queue_empty_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Queue_e_E
    1001c113 0000Babc 0000496A sensortag.obj (.text:SensorTag_taskFxn$0)
    TI_SYSBIOS_KNL_Clock_getTicks__E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Clock_getTicks__E
    1001b6d9. 0000bac4. 00004814 sensortag_bar.obj (.text:VL53L0X_getSpadInfo)
    00004fe8 iCall.obj (.text:iCall_primWaitMatch 20美元)
    00005052 iCall.obj (.text:iCall_primWaitMatch 20美元)
    0000b62c iCall.obj (.text:iCall_primGetTicks$20)
    TI_SYSBIOS_KNL_Clock_con构$Tramp$TT$L$PI$ti_SYSBIOS_KNL_Clock_con构
    1001b579 0000bacc 0000428e drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_init)
    0000429c :PowerCC26XX.oem3 (.text:Power_init)
    000042aa :PowerCC26XX.oem3 (.text:Power_init)
    00005210 RFCC26XX_singlemode.obj (.text:rf_init$15)
    00005c1c RFCC26XX_singlemode.obj (.text:rf_open)
    0000767c drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
    00008676 util.obj (.text:Util_constructClock)
    TI_SYSBIOS_KNL_Clock_Params__init_S $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Clock_Params__init_S
    1001c185 0000bad4 00004276 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_init)
    00005c0c RFCC26XX_singlemode.obj (.text:rf_open)
    00006b3E iCall.obj (.text:iCall_primSetTimer$20)
    00007664 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
    0000864e util.obj (.text:Util_constructClock)
    xdc_runtime_text_ropeText__E $Tramp$TT$L$PI$XDC_Runtime_text_ropeText__E
    1001c7e9. 0000badc 00003ef6 UART_logs.obj (.text:uartLog_doPrint7)
    00008784 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:XDC_Runtime_text_visitRope2__I)
    00008792 :rom_SysBIOS.obj (.text:xdc_runtime_text_visitRope2__i)
    XDC_RAuntime_System_ABortSpin_E $Tramp$TT$L$PI$XDC_RAuntime_System_ABortSpin_E
    1001c899 0000bae4. 00003b0a drivers_cc26xxware.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_doCalibrate)
    00007b36 :PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_RCOSC_clockFunc)
    TI_SYSBIOS_KNL_Semaphore_con构$Tramp$TT$L$PI$ti_SYSBIOS_KNL_Semaphore_con构
    1001b709 0000baec 00002996 I2CCC26XX.obj (.text:I2CCC26XX_open)
    000029a6 I2CCC26XX.obj (.text:I2CCC26XX_open)
    000032ea PINCC26XX.obj (.text:PIN_init)
    00005a0e sensortag_hum.obj (.text:pression_sensor_reading)
    00005c00 RFCC26XX_singlemode.obj (.text:rf_open)
    00007bf8 sensortag_bar.obj (.text:VL53L0XI2cInit)
    0000b50a drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_init)
    TI_SYSBIOS_KNL_Semaphore_Params__init_S $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Semaphore_Params__init_S
    1001c1c1. 0000baf4 00002986 I2CCC26XX.obj (.text:I2CCC26XX_open)
    000032d6 PINCC26XX.obj (.text:PIN_init)
    000059f8 sensortag_hum.obj (.text:pression_sensor_reading)
    00005bf0 RFCC26XX_singlemode.obj (.text:rf_open)
    00007be2 sensortag_bar.obj (.text:VL53L0XI2cInit)
    TI_SYSBIOS_KNL_Swi_con构$Tramp$TT$L$PI$ti_SYSBIOS_KNL_Swi_con构
    1001b085 0000bafc 0000297a I2CCC26XX.obj (.text:I2CCC26XX_open)
    00003380 PINCC26XX.obj (.text:PIN_init)
    0000519c RFCC26XX_singlemode.obj (.text:rf_init$15)
    000051de RFCC26XX_singlemode.obj (.text:rf_init$15)
    TI_SYSBIOS_KNL_Swi_Params__init_S $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Swi_Params__init_S
    1001c1cd 0000bb04 00002966 I2CCC26XX.obj (.text:I2CCC26XX_open)
    0000336e PINCC26XX.obj (.text:PIN_init)
    00005188 RFCC26XX_singlemode.obj (.text:rf_init$15)
    000051ce RFCC26XX_singlemode.obj (.text:rf_init$15)
    TI_SYSBIOS_family_ARM_m3/Hwi_con构$Tramp$TT$L$PI$ti_SYSBIOS_family_ARM_m3/Hwi_con构
    1001af29 0000bb0c 0000295a I2CCC26XX.obj (.text:I2CCC26XX_open)
    00003362 PINCC26XX.obj (.text:PIN_init)
    000051c2 RFCC26XX_singlemode.obj (.text:rf_init$15)
    00005202 RFCC26XX_singlemode.obj (.text:rf_init$15)
    00005a32 sensortag_hm.obj (.text:pression_sensor_reading)
    0000768c drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:PowerCC26XX_calibrate)
    00007d42 :WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_open)
    TI_SYSBIOS_family_ARM_m3/Hwi_Params__init_S $Tramp$TT$L$PI$ti_SYSBIOS_family_ARM_m3/Hwi_Params__init_S
    1001c13d 0000bb14 00002942 I2CCC26XX.obj (.text:I2CCC26XX_open)
    0000334c PINCC26XX.obj (.text:PIN_init)
    000051a8 RFCC26XX_singlemode.obj (.text:rf_init$15)
    000051ea RFCC26XX_singlemode.obj (.text:rf_init$15)
    00005a1c sensortag_hum.obj (.text:pression_sensor_reading)
    00007d2c drivers_cc26xxware.aem3:WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_open)
    0000969c iCall.obj (.text:iCall_primRegisterISR$20)
    000096d0 iCall.obj (.text:iCall_primRegisterISR_Ext$20)
    TI_SYSBIOS_KNL_Task_sleep_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Task_sleep_E
    1001a96d 0000bb1c 000024ee sensortag.obj (.text:SensorTag_init$0)
    000046c8 sensortag_bar.obj (.text:Range_Sensor_Read)
    000050d2 sensortag_bar.obj (.text:VL53L0X_readRangeSingleMillinglemis)
    00005288 sensortag_hum.obj (.text:sensorTaskFxn$3)
    00005322 sensortag_hm.obj (.text:sensorTaskFxn$3)
    00005460 sensortag_bar.obj (.text:sensorTaskFxn-1)
    00005488 sensortag_bar.obj (.text:sensorTaskFxn-1)
    000054e6 sensortag_bar.obj (.text:sensorTaskFxn-1)
    00008b70 sensortag_io.obj (.text:SensorTagIO_BlinkLed)
    00008b80 sensortag_io.obj (.text:SensorTagIO_blinkLed)
    TI_SYSBIOS_KNL_Task_RESTORE_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Task_RESTORE_E
    1001ba49. 0000bb24 0000248c drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_sleep)
    00007546 iCall.obj (.text:iCall_createRemoteTasks)
    0000b244 iCall.obj (.text:iCall_leaveCSImpl)
    TI_SYSBIOS_KNL_Swi_RESTORE_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Swi_RESTORE_E
    1001b5e1 0000bb2c 00002482 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_sleep)
    0000352a RFCC26XX_singlemode.obj (.text:abortCmd$15)
    00006cc4 RFCC26XX_singlemode.obj (.text:rf_pendCmd)
    00006cf0 RFCC26XX_singlemode.obj (.text:rf_pendCmd)
    00006d0c RFCC26XX_singlemode.obj (.text:rf_pendCmd)
    TI_SYSBIOS_KNL_Swi_disable_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Swi_disable_E
    1001c0d5. 0000bb34 000022de drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_sleep)
    00003508 RFCC26XX_singlemode.obj (.text:abortCmd$15)
    00006cb2 RFCC26XX_singlemode.obj (.text:rf_pendCmd)
    00009d0a app_ble_pem3.oem3 (.text:ti_SysBIOS_BIOS_atExitFunc__I)
    TI_SYSBIOS_KNL_Task_disable_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Task_disable_E
    1001c0f5 0000bb3c 000022c6 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_sleep)
    000074fa iCall.obj (.text:iCall_createRemoteTasks)
    00009d0e app_ble_pem3.oem3 (.text:ti_sysbios_BIOS_atExitFunc__i)
    0000adf4 iCall.obj (.text:iCall_enterCSImpl)
    0000b600 iCall.obj (.text:iCall_primDisableMInt$20)
    TI_SYSBIOS_KNL_Semaphore_post__E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Semaphore_post__E
    1001ac41 0000bb44 00001d6c I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    000035ce drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_write)
    00003700 :NVSCC26XX.oem3 (.text:NVSCC26XX_WRITE)
    00005070 iCall.obj (.text:iCall_primWaitMatch 20美元)
    000063da PINCC26XX.obj (.text:PIN_OPEN)
    00006598 drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_open)
    00006716 I2CCC26XX.obj (.text:I2CCC26XX_blockingCallback$13)
    00007156 iCall.obj (.text:iCall_primSend$20)
    00007940 RFCC26XX_singlemode.obj (.text:fsmPowerDownState_15美元)
    000084fc RFCC26XX_singlemode.obj (.text:syncd$15)
    00008afe drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_read)
    0000a248 util.obj (.text:Util_enqueueMsg)
    0000a99e sensortag_hum.obj (.text:adcIsr)
    0000b16e peripheral.obj (.text:gapRole_setEvent$35)
    0000b338 sensortag.obj (.text:SensorTag_clockHandler0)
    0000b74c iCall.obj (.text:iCall_primSignal$20)
    0000b7b8 sensortag_bar.obj (.text:VL53L0XI2cDeselect)
    TI_SYSBIOS_family_ARM_m3/Hwi_enableInterrupt_E $Tramp$TT$L$PI$ti_SYSBIOS_family_ARM_m3/Hwi_enableInterrupt_E
    1001b2dd 0000bb4c 00001c36 I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    000059be RFCC26XX_singlemode.obj (.text:fsmPowerUpState_15美元)
    0000b734 iCall.obj (.text:iCall_primEnableInt$20)
    TI_SYSBIOS_family_ARM_m3/Hwi_DisableInterrupt_E $Tramp$TT$L$PI$ti_SYSBIOS_family_ARM_m3/Hwi_DisableInterrupt_E
    1001b299 0000bb54 00001c26 I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    0000b728 iCall.obj (.text:iCall_primDisableInt$20)
    TI_SYSBIOS_KNL_Semaphore_Pend__E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Semaphore_Pend__E
    1001a0cd 0000bb5c 00001c20 I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    00001c9a I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    000035ae drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_write)
    00004ffc iCall.obj (.text:iCall_primWaitMatch 20美元)
    000052a4 sensortag_hm.obj (.text:sensorTaskFxn$3)
    00005a56 sensortag_hum.obj (.text:pression_sensor_reading)
    00006368 PINCC26XX.obj (.text:PIN_OPEN)
    0000652e drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_open)
    00006cfc RFCC26XX_singlemode.obj (.text:rf_pendCmd)
    00008274 iCall.obj (.text:iCall_primWait$20)
    00008aec drivers_cc26xxware.aem3:NVSCC26XX.oem3 (.text:NVSCC26XX_read)
    TI_SYSBIOS_KNL_Clock_start_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Clock_start_E
    1001bfe3. 0000bb64 0000159c RFCC26XX_singlemode.obj (.text:fsmActiveState_15美元)
    00003116 sensortag_tmp.obj (.text:PeopleCount_ClockHandler$6)
    00003b88 drivers_cc26xxware.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_doCalibrate)
    00003cb8 RFCC26XX_singlemode.obj (.text:rf_postCmd)
    00004328 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_init)
    00005c74 power_cc26xx_tirtos.aem3:PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
    000067b6 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
    00006b96 iCall.obj (.text:iCall_primSetTimer$20)
    00006de4 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
    000076f8 sensortag_tmp.obj (.text:WashCountCallbackFxn$6)
    00007f0a RFCC26XX_singlemode.obj (.text:decActiveClientCnt$15)
    000080ca drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:configureXOSCHF)
    00008110 RFCC26XX_singlemode.obj (.text:fsmXOSCState_15美元)
    00009428 util.obj (.text:Util_restartClock)
    0000aa1e rom_SysBIOS.aem3:rom_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_stop__E)
    0000b7aa util.obj (.text:Util_startClock)
    TI_SYSBIOS_KNL_Clock_setTimeout__E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Clock_setTimeout__E
    1001c2c1. 0000bb6c 00001594 RFCC26XX_singlemode.obj (.text:fsmActiveState_15美元)
    00003cb0 RFCC26XX_singlemode.obj (.text:rf_postCmd)
    00004322 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_init)
    00005c6e power_cc26xx_tirtos.aem3:PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
    000067b0 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
    00006b90 iCall.obj (.text:iCall_primSetTimer$20)
    00006dde drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:disableLFClockQualifiers)
    00007f04 RFCC26XX_singlemode.obj (.text:decActiveClientCnt$15)
    000080c4 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:configureXOSCHF)
    0000810a RFCC26XX_singlemode.obj (.text:fsmXOSCState_15美元)
    00009422 util.obj (.text:Util_restartClock)
    TI_SYSBIOS_family_ARM_m3/Hwi_restoreFxn_E $Tramp$TT$L$PI$ti_SYSBIOS_family_ARM_m3/Hwi_restoreFxn_E
    1001c219 0000bb74 0000155e RFCC26XX_singlemode.obj (.text:fsmActiveState_15美元)
    000015d2 RFCC26XX_singlemode.obj (.text:fsmActiveState_15美元)
    00001bfa I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    00001c0c I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    00002904 I2CCC26XX.obj (.text:I2CCC26XX_open)
    00002912 I2CCC26XX.obj (.text:I2CCC26XX_open)
    0000343c RFCC26XX_singlemode.obj (.text:abortCmd$15)
    00003464 RFCC26XX_singlemode.obj (.text:abortCmd$15)
    00003498 RFCC26XX_singlemode.obj (.text:abortCmd$15)
    0000351c RFCC26XX_singlemode.obj (.text:abortCmd$15)
    0000354c RFCC26XX_singlemode.obj (.text:abortCmd$15)
    00003c60 RFCC26XX_singlemode.obj (.text:rf_postCmd)
    00003c92 RFCC26XX_singlemode.obj (.text:rf_postCmd)
    00003cfe RFCC26XX_singlemode.obj (.text:rf_postCmd)
    0000569A drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_releaseDependency)
    00005708 I2CCC26XX.obj (.text:I2CCC26XX_Close)
    0000583a drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_setDependency)
    00005afe RFCC26XX_singlemode.obj (.text:swifxnHw$15)
    00005b1c RFCC26XX_singlemode.obj (.text:swifxnHw$15)
    00005ba8 RFCC26XX_singlemode.obj (.text:rf_open)
    00005bb6 RFCC26XX_singlemode.obj (.text:rf_open)
    00005d88 PINCC26XX.obj (.text:PINCC26XX_setIoCfg$14)
    000067de drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
    0000686c I2CCC26XX.obj (.text:I2CCC26XX_cancel)
    00006c0e TRNGCC26XX.obj (.text:TRNGCC26XX_getNumber)
    00007076 UART_LOS.obj (.text:uartLog_outputFxn)
    0000790a drivers_cc26xxware.aem3:WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_initHw)
    000079d6 UART_LOS.obj (.text:uartLog_flush)
    00007b86 RFCC26XX_singlemode.obj (.text:rf_getCurrentTime)
    00007b8e RFCC26XX_singlemode.obj (.text:rf_getCurrentTime)
    00007d0c drivers_cc26xxware.aem3:WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_open)
    00007d18 :WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_open)
    00007f10 RFCC26XX_singlemode.obj (.text:decActiveClientCnt$15)
    0000805a drivers_cc26xxware.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
    000081ce RFCC26XX_singlemode.obj (.text:ratChanFre$15)
    00008456 RFCC26XX_singlemode.obj (.text:rf_getinfo)
    00008dc8 RFCC26XX_singlemode.obj (.text:rf_getRssi)
    00009210 RFCC26XX_singlemode.obj (.text:postDirImmCmCmd 15美元)
    00009224 RFCC26XX_singlemode.obj (.text:postDirImmCmCmd 15美元)
    000097e8 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
    00009824 RFCC26XX_singlemode.obj (.text:Q_push$15)
    00009c6c drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_releaseConstraint)
    00009c9c :PowerCC26XX.oem3 (.text:Power_setConstraint)
    00009cc4 :WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_setReload)
    0000a452 :PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
    0000a4ee TRNGCC26XX.obj (.text:TRNGCC26XX_init)
    0000a634 drivers_cc26xxware.aem3:List.oem3 (.text:List_Put)
    0000a980 :PowerCC26XX.oem3 (.text:Power_unregisterNotify)
    0000acea TRNGCC26XX.obj (.text:TRNGCC26XX_open)
    0000b0f8 RFCC26XX_singlemode.obj (.text:Q_pop$15)
    0000b23c iCall.obj (.text:iCall_leaveCSImpl)
    TI_SYSBIOS_family_ARM_m3/Hwi_disableFxn_E $Tramp$TT$L$PI$ti_SYSBIOS_family_ARM_m3/Hwi_disableFxn_E
    1001c149 0000bb7c 00001538 RFCC26XX_singlemode.obj (.text:fsmActiveState_15美元)
    000015be RFCC26XX_singlemode.obj (.text:fsmActiveState_15美元)
    00001be6 I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    000028f8 I2CCC26XX.obj (.text:I2CCC26XX_open)
    000033dc RFCC26XX_singlemode.obj (.text:abortCmd$15)
    00003bbc RFCC26XX_singlemode.obj (.text:rf_postCmd)
    00003c74 RFCC26XX_singlemode.obj (.text:rf_postCmd)
    000055e6 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_releaseDependency)
    00005700 I2CCC26XX.obj (.text:I2CCC26XX_Close)
    0000578a drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_setDependency)
    00005aae RFCC26XX_singlemode.obj (.text:swifxnHw$15)
    00005ba0 RFCC26XX_singlemode.obj (.text:rf_open)
    00005d68 PINCC26XX.obj (.text:PINCC26XX_setIoCfg$14)
    00006768 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
    00006804 I2CCC26XX.obj (.text:I2CCC26XX_CANCEL)
    00006baa TRNGCC26XX.obj (.text:TRNGCC26XX_getNumber)
    00007012 UART_LOS.obj (.text:uartLog_outputFxn)
    000078c6 drivers_cc26xxware.aem3:WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_initHw)
    0000799e UART_LOS.obj (.text:uartLog_flush)
    00007b76 RFCC26XX_singlemode.obj (.text:rf_getCurrentTime)
    00007d02 drivers_cc26xxware.aem3:WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_open)
    00007ec8 RFCC26XX_singlemode.obj (.text:decActiveClientCnt$15)
    00008046 drivers_cc26xxware.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
    0000818c RFCC26XX_singlemode.obj (.text:ratChanFre$15)
    0000841A RFCC26XX_singlemode.obj (.text:rf_getinfo)
    00008db8 RFCC26XX_singlemode.obj (.text:rf_getRssi)
    000091f8 RFCC26XX_singlemode.obj (.text:postDirImmCmCmd 15美元)
    000097c6 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC_HF)
    00009806 RFCC26XX_singlemode.obj (.text:Q_push$15)
    0000980e RFCC26XX_singlemode.obj (.text:Q_push$15)
    00009c4c drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_releaseConstraint)
    00009c7c. :PowerCC26XX.oem3 (.text:Power_setConstraint)
    00009cac :WatchdogCC26XX.oem3 (.text:WatchdogCC26XX_setReload)
    0000a436 :PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC_HF)
    0000a4d6 TRNGCC26XX.obj (.text:TRNGCC26XX_init)
    0000a970 drivers_cc26xxware.aem3:PowerCC26XX.oem3 (.text:Power_unregisterNotify)
    0000acde TRNGCC26XX.obj (.text:TRNGCC26XX_open)
    0000adfe iCall.obj (.text:iCall_enterCSImpl)
    0000b0ec RFCC26XX_singlemode.obj (.text:Q_pop$15)
    0000b604 iCall.obj (.text:iCall_primDisableMInt$20)
    0000b97e tirtosport.aem3:hwip_tirtos.oem3 (.text:Hwip_disable)
    TI_SYSBIOS_KNL_Swi_POST_E $Tramp$TT$L$PI$ti_SYSBIOS_KNL_Swi_POST_E
    1001b321 0000bb84 00000638 I2CCC26XX.obj (.text:I2CCC26XX_hwiFxn$13)
    00000a02 I2CCC26XX.obj (.text:I2CCC26XX_hwiFxn$13)
    00001d66 I2CCC26XX.obj (.text:I2CCC26XX_transfer)
    00002f6e I2CCC26XX.obj (.text:I2CCC26XX_swifxn$13)
    0000b1ec rom_SysBIOS.aem3:rom_SysBIOS.obj (.text:ti_SysBIOS_KNL_Swi_or__E)
    0000b3fe app_ble_pem3.oem3 (.text:ti_sysbios_KNL_Clock_doTick__i)

    [58个蹦床]
    [296个 trampoline 调用]


    全局符号:按名称按字母顺序排序

    地址名称
    ---- ----
    10014c00 a1_rw
    10019ffe A2_RW
    10019ffc A3_RW
    20004f2c A4_rw
    20004f7c ACCX
    20004f80 ACCY
    20004f84 ACCZ
    10015229 ATOMICPATTERNS
    0000a82d ADC_Init
    10016c29 AddRoundKeySubBytes_SW
    10018a19 AesCM_authEncrypt 软件
    10018a35 Aescm_decrittAuth 软件
    10018b09 AesCM_getNumBlocks_SW
    10018ac5 AES_Decrype_SW
    10018a99 AES_encrypt_SW
    0000b209 AssertHandler
    0000d800 BoardGpioInitTable
    0000741d Board_writeString
    00007489 Board_writeStringValue
    000081dd C$$EXIT
    20004f2c common_RAM_base_ADDR
    10014c01 common_rom_base_ADDR
    10015a6d 副本
    2000061e Check_Count
    00000501 DefaultAssertBack
    0000b28d DevInfo_AddService
    00005f01 DevInfo_SetParameter
    10017959 ecc_allocworkzone
    10017961 ECC_setWin
    10017969 ECDSA_SIGN
    10017b01 ECDSA_verif
    10015a11 EXPORTOPERAND
    20004f78 EXPW
    20004f6c EXPX
    20004f70 Expy
    20004f74 EXPZ
    10016f58 FFMult2.
    10017058 FFMult3.
    10016d05 FFMULT_SW
    10018d6c Fill1.
    000092e5 GAPBondMgr_LinkEst
    0000a63b GAPBondMgr_LinkTerm
    00009f3d GAPBondMgr_Register
    000095BD GAPBondMgr_SetParameter
    0000b465 GAPRole_GetParameter
    00008ce9 GAPRole_SendUpdateParam
    00002069 GAPRole_SetParameter
    0000ae91 GAPRole_StartDevice
    0000aae9 GAPRole_TerminateConnection
    00008d29 GAPRole_createTask
    00008285 GAP_DeviceInit
    0000b475 GAP_EndDiscoverable
    00008e9 GAP_GetParamValue
    0000b6dd GAP_MakeDiscoverable
    000095F1 GAP_SetParamValue
    0000b6e9 GAP_TerminateAuth
    00008a41 GAP_TerminateLinkReq
    000082d5 GAP_UpdateAddisingData
    0000b6f5 GAP_UpdateLinkParamReq
    0000b701 GAP_UpdateLinkParamReqReply
    000000fd GATTServApp_AddService
    0000b41d GATTServApp_FindAttr
    0000a84d GATTServApp_InitCharCfg
    000087b5 GATTServApp_ProcessCCCWriteReq
    00006485 GATTServApp_ProcessCharCfg
    0000b485 GATTServApp_ReadCharCfg
    00008f25 GATTServApp_RegisterService
    0000a2a3 GATTServApp_WriteCharCfg
    0000b5d5 GATT_Indication
    0000add9 GATT_Notification
    0000ab01 GATT_BM_alloc
    0000ab1d GATT_BM_FREE
    10015141 GETBIT
    10015155 GETDIGIT
    100151a5 GETDIGITL2R
    0000b8ef GGS_AddService
    0000b70d GGS_SetParameter
    0000b2a1 HCI_EXT_SetTxPowerCmd
    20001568 HEAPMGR_SIZE
    0000b97f Hwip_disable
    UNDEFED Hwip_restore
    000067f5 I2CCC26XX_CANCEL
    000056b5 I2CCC26XX_CLOSE
    0000b8f5 I2CCC26XX_CONTROL
    0000d668 I2CCC26XX_fxnTable
    0000b821 I2CCC26XX_init
    000028e9 I2CCC26XX_OPEN
    00001bc5 I2CCC26XX_transfer
    0000aec1 I2C_Params_init
    0000d680 I2C_CONFIG
    0000d790 I2C_defaultParams
    0000931d I2C_init
    0000a661 I2C_open
    0000b82b I2C_transfer
    00008f61 ICallPlatform_pwrConfigACAction
    0000aed9 ICallPlatform_pwrDispense
    0000b5e3 ICallPlatform_pwrGetTransitionState
    0000b495 ICallPlatform_pwrGetXOSCStartupTime
    0000b5F1 ICallPlatform_pwrIsStableXOSCHF
    00009b29 ICallPlatform_pwrRegisterNotify
    0000aef1 ICallPlatform_pwrRequire
    0000b835 ICallPlatform_pwrSwitchXOSCHF
    00007085 ICallPlatform_pwrUpdActivityCounter
    000074f5 iCall_createRemoteTasks
    20001544 iCall_dischempatcher
    0000adf3 iCall_enterCImpl
    2000154c iCall_enterCriticalSection
    00009f69 iCall_freeImpl
    00009f69 iCall_heapFree
    00007561 iCall_heapInit
    00006a9d iCall_heapMalloc
    0000a2cd iCall_init
    0000b235 iCall_leaveCSImpl
    20001550 iCall_leaveCriticalSection
    0000b8fb iCall_mallocImpl
    000096f5 iCall_searchServiceEntity
    10015a35 IMPORTDATA
    100159a9 IMPORTLENGTH
    100159ad IMPORTMODULUS
    100159d1 IMPORTOPERAND
    1001568d 反转
    10016da1 InvAddRoundKey_SW
    10016ed5 InvMixColumns_SW
    10016dc9 InvRoundKey_SW
    10017264 InvSbox
    10016ea1 InvShiftRows_SW
    10016e8d InvSubBytes_SW
    0000a3bd IO_addService
    0000b2b5 IO_getParameter
    0000b2c9 io_registerAppCBs
    00009729 IO_SetParameter
    100154f5 JACADD
    20004fe8 LEN
    100158ac LUTC
    100158DC LUTINCI
    100158f4 LUTJ
    1001588c LUTOPCODE
    10015894 LUTOPSIN
    100158c4 LUTSE
    1001596c LUTSTATE
    0000b849 List_empty
    0000b983 List_head
    0000b987 List_next
    0000a615 List_Put
    0000ae27 List_remove
    10018825 MB_ClearInts
    100187f5 MB_DisableInts
    10018835 MB_EnableHWInts
    10018799 MB_EnableInts
    10018945 MB_FwDebugDump
    10018755 MB_Init
    10018935 MB_ReadMailboxStatus
    1001893d MB_RegisterIsrBack
    10018865 MB_SendCommand
    100188a5 MB_SendCommandSynch
    20004fe4 MOD
    20004fd8 MSBMOD
    10016c79 MixColumns_SW
    10018b9c NIST_Curve_P256_GX
    10018bc0 NIST_Curve_P256_Gy
    10018b54 NIST_Curve_P256_A
    10018b78 NIST_Curve_P256_b
    10018b0c NIST_Curve_P256_p
    10018b30 NIST_Curve_P256_r
    0000a3e5 NOROM_AONBatMonTemperatureGetDegC
    0000b2dd NOROM_AONRTCCurrent64BitValueGet
    0000afc9 NOROM_AONRTCCurrentCompareValueGet
    000060e9 NOROM_AUXADCDisable
    000062bd NOROM_AUXADCableSync
    0000b4c5 NOROM_AUXADCReadFifo
    0000b755 NOROM_CPUcpsid
    0000b761 NOROM_CPUcpsie
    0000b901 NOROM_CPUDELAY
    00008849 NOROM_ChipInfo_GetChipFamily
    0000733d NOROM_ChipInfo_GetHwRevision
    0000afe1 NOROM_ChipInfo_GetPackageType
    00008d69 NOROM_DDI16BitfieldRead
    00008891 NOROM_DDI16BitfieldWrite
    0000975d NOROM_DDI32RegWrite
    0000ab8d NOROM_FlashProgram
    0000aba9 NOROM_FlashSecorErase
    0000abc5 NOROM_OSCClockSourceGet
    000085ed NOROM_OSCClockSourceSet
    00007db1 NOROM_OSCHF_AttempToSwitchToXosc
    0000687d NOROM_OSCHF_GetStartupTime
    00009791 NOROM_OSCHF_SwitchToRcOscTurnOffXosc
    0000aff9 NOROM_OSCHF_TurnOnXosc
    00008f9d NOROM_OSC_HPOSCRelativeFREquencyOffsetGet
    0000b011 NOROM_RFCCpeIntGetAndClear
    0000a90d NOROM_RFCDoorSendto
    0000a92d NOROM_RFCRfTrimRead
    0000b4d5 NOROM_RFCRfTrimSet
    00008fd9 NOROM_RFCSynthPowerDown
    00006f1d NOROM_SetupAfterColdResetWakeupFromShutdownCfg1.
    0000550d NOROM_SetupAfterColdResetWakeupFromShutdownCfg2
    00004119 NOROM_SetupAfterColdResetWakeupFromShutdownCfg3.
    0000b029 NOROM_SetupGetTrimForAdcShModeEn
    0000b041 NOROM_SetupGetTrimForAdcShVbufEn
    000075cd NOROM_SetupGetTrimForAmpcompCtrl
    0000b059 NOROM_SetupGetTrimForAmpcompTh1.
    0000abe1 NOROM_SetupGetTrimForAmpcompTh2.
    000077e9 NOROM_SetupGetTrimForAnabypassValue1
    0000b071 NOROM_SetupGetTrimForDblrLoopFilterResetVoltage
    0000a071 NOROM_SetupGetTrimForRadcExtCfg
    0000b089 NOROM_SetupGetTrimForRcOscLfIBiasTrim
    0000abfd NOROM_SetupGetTrimForRcOscLfRtuneCTuneTrim
    0000a94d NOROM_SetupGetTrimForXoscHfCtl
    0000b4e5 NOROM_SetupGetTrimForXoscHfFastStart
    0000b4f5 NOROM_SetupGetTrimForXoscHfIbiastherm
    0000b0a1 NOROM_SetupGetTrimForXoscLfRegulatorAndCwrmirrorRatio
    00009bb9 NOROM_SetupSetAonRtcSubSecInc
    00008375 NOROM_SetupSetCacheModeAccordingToCcfgSeting
    0000b637 NOROM_SetupSignExtendVddrTrimValue
    00005fa5 NOROM_SetupTrimDevice
    00007e0d NOROM_SysCtrlAdjustRechargeAfterPowerDown
    0000b0b9 NOROM_SysCtrlResetSourceGet
    000026e5 NOROM_SysCtrlSetRechargeBeforePowerDown
    00007851 NOROM_SYSCTRL_DCDC_VoltageConditionalControl
    00009be9 NOROM_TRNGConfigure
    0000b2F1 NOROM_ThisCodeIsBuiltForCC26xxHwRev22AndLater_HaltIf 紫色
    0000b645 NOROM_VIMSModeGet
    00004e9f NVSCC26XX_CLOSE
    00008a85 NVSCC26XX_CONTROL
    000062bb NVSCC26XX_EXIT
    0000d5f0 NVSCC26XX_fxnTable
    0000ac19 NVSCC26XX_getAttrs
    0000b505 NVSCC26XX_INIT
    00006519 NVSCC26XX_OPEN
    00008ac9 NVSCC26XX_READ
    00003571 NVSCC26XX_WRITE
    0000d698 NVS_CONFIG
    0000d5ef NVS_defaultParams
    0000938d NVS_INIT
    00009c19 NVS_OPEN
    0000b853 NVS_READ
    0000b653 NVS_WRITE
    10014c04 p1_ro
    10019ffe P1_RO_2
    20004f40 P2_RW
    20004f40 P2_s0
    20004f2 P2_zi
    0000a40d PINCC26XX_getPinCount
    0000a09d PINCC26XX_setMux
    2000399c PIN_HandleTable
    20003908 PIN_NumPins
    0000aa6b PIN_CLOSE
    00003221 PIN_INIT
    00006355 PIN_OPEN
    0000b907 PIN_registerIntCb
    000083c5 PIN_REMOVE
    0000a0c9 PIN_setConfig
    000093c5 PIN_setOutputValue
    20000619人员_计数
    00007b15 PowerCC26XX_RCOSC_clockFunc
    0000716d PowerCC26XX_auxISR
    00007639 PowerCC26XX_CALIBRATE
    0000d7a0 PowerCC26XX_CONFIG
    00003a2d PowerCC26XX_doCalibrate
    0000687d PowerCC26XX_getXoscStartupTime
    00008035 PowerCC26XX_initiateCalibration
    000097c5 PowerCC26XX_isStableXOSC_HF
    20001434 PowerCC26XX_MODULE
    00005c31 PowerCC26XX_standbyPolicy
    0000a435 PowerCC26XX_switchXOSC_HF
    0000b76d Power_getConstraintMask
    0000b779 Power_getDependencyCount
    0000aa89 Power_getTransitionLatency
    0000b785 Power_getTransitionState
    0000b0d1 Power_idleFunc
    00004249 Power_init
    0000a45d Power_registerNotify
    00009c49 Power_releaseConstraint
    000055e1 Power_releaseDependency
    00009c79 Power_setConstraint
    00005785 Power_setDependency
    000022a5 Power_sleep
    0000a96d Power_unregisterNotify
    2000061c 脉冲计数
    10017158 RCon
    10018415 RFHAL_AddTxDataEntry
    100184f9 RFHAL_AllocDataEntry
    100184a9 RFHAL_AllocDataEntryQueue
    10018315 RFHAL_AllocRatChan
    100185e1 RFHAL_BuildDataEntryRingBuffer
    10018669 RFHAL_BuildLinkedIn 缓冲器
    10018551 RFHAL_BuildRingBuffer
    10018549 RFHAL_FreeDataEntry
    100184c5 RFHAL_FreeDataEntryQueue
    10018485 RFHAL_FreeNextTxDataEntry
    1001833d RFHAL_FreeRatChan
    100184cd RFHAL_GetNextDataEntry
    100184d1 RFHAL_GetTempDataEntry
    100183b9 RFHAL_InitDataQueue
    100182ad RFHAL_InitRfHal
    10018369 RFHAL_MapRatChansToInt
    100184d5 RFHAL_NextDataEntryDone
    100183c5 RFHAL_QueueRFDataEntry
    10018391 RFHAL_RegisterRatChanCallback
    0000b305 RF_PARAMS_INIT
    000033c9 RF_CancelCmd
    0000b8b7 rf_flushCmd
    0000b42f rf_getCmdOp
    00007b75 RF_getCurrentTime
    00008415 RF_getinfo
    00008da9 rf_getRssi
    00005b71 RF_OPEN
    00006cad rf_pendCmd
    00003bb1 rf_postCmd
    00009015 RF_runCmd
    0000ac6d RF_runDirectCmd
    0000ac89 rf_runImmediateCmd
    00004699 Range_Sensor_Read
    0000b515注册器助手回送
    0000b319 Register_addService
    0000982d Register_getParameter
    0000b101 Register_registerAppCBs
    00009051 Register_SetParameter
    00008b95 ResetISR
    10016b79 RoundKey_SW
    10015101 SAVEPOINT
    20004f68 SCAL
    100150e5 SCALARMUL
    10014层 SCALARMUL_CORE
    10015019 SCALARMUL_FINAL
    10014c05 SCALARMUL_INIT
    10015a51 SETOPERAND
    10015a91 SETWORD
    10018089 SHA256_final
    10018129 SHA256_FULL
    10017ffd SHA256_init
    10017ef1 SHA256_nextState
    10018019 SHA256_Process
    10017e75 SHA256_ROUND
    10017f49 SHA256_saveBuffer
    10017e39 SHA256_updateW
    UNDEFED SHT$$INIT_RAGE$$Base
    UNDEFED SHT$$INIT_ARRAGE$$LIMIT
    10015821 SQUAREMULTIPLYWORD
    10017895 SSP_CCM_Auth 加密软件
    10017365 SSP_CCM_Auth 软件
    1001767d SSP_CCM_Decrype_SW
    100174fd SSP_CCM_Encrypt_SW
    100178f5 SSP_CCM_InvAuth 解密_SW
    10017839 SSP_CCM_InvAuth 软件
    10017771 SSP_CTR_Decrype_SW
    100175ed SSP_CTR_Encrypt_SW
    0000a0f5 SafeHapiAuxAdiSelect
    0000a485 SafeHapiVoid
    10017164 SBOX
    10015215可选稳压器
    0000908d SensorTagBar_createTask
    000090c9 SensorTagHum_createTask
    00008b51 SensorTagIO_BLinkLed
    0000aca5 SensorTagIO_init
    00006d2d SensorTagIO_processCharChangeEvt
    00009105 SensorTagIO_RESET
    0000b525 SensorTagRegister_init
    00006905 SensorTagRegister_processCharChangeEvt
    000071e1 SensorTagRegister_reset
    0000a6cd SensorTagRegister_update
    0000b85d SensorTag_charValueChangeCB
    00009141 SensorTag_createTask
    0000b341 SensorTag_updateAddisingData
    10016c45 ShiftRows_SW
    20004f88 TMP1
    20004f8c TMP2
    20004f90 TMP3
    20004f94 TMP4
    20004f98 TMP5
    20004f9c TMP6
    0000d89c TRNGCC26XXHWAttrs
    0000d7b0 TRNGCC26XX_CONFIG
    00006ba5 TRNGCC26XX_getNumber
    0000a4d5 TRNGCC26XX_INIT
    0000a1fb TRNGCC26XX_isParamValid
    0000ACDD TRNGCC26XX_OPEN
    0000acf9 th3_Clock_stop
    0000b871 UART_WRITE
    00008639 Util_constructClock
    0000b131 Util_constructQueue
    0000ae41 Util_dequeueMsg
    0000a225 Util_enqueueMsg
    0000b535 Util_isActive
    000093fd Util_restartClock
    0000b7a9 Util_startClock
    0000b993 Util_stopClock
    0000b7b5 VL53L0XI2cDeselect
    00007bd5 VL53L0XI2cInit
    00009861 VL53L0XI2cRead
    00009435 VL53L0XI2cWrite
    0000917d VL53L0XI2cWriteRead
    0000b661 VL53L0XI2creadReg
    0000a4fd VL53L0XI2cwriteReg
    000038a1 VL53L0X_INIT
    00001941 VL53L0xDefaultSettings
    000047a5 VL53L0X_getSpadInfo
    000088d9 VL53L0X_readMulti
    00005081 VL53L0X_readRangeSingleMillbill
    0000b8bf VL53L0X_setMeasTimingBdget
    00008921 VL53L0X_setSignalRateLimit
    00004479 ValidateSensorRead
    000049b5 Validate_SensorRead
    0000b7c1 WDTClose
    000091b9 WDTInit
    20003bf0 WashPinHandle
    20003bf4 WashPinState
    0000b545看门狗 CC26XX_CLEAR
    00006a9b WatchdogCC26XX_Close
    0000b90d 看门狗 CC26XX_CONTROL
    0000a525 WatchdogCC26XX_convertMsToTicks
    0000d630看门狗 CC26XX_fxnTable
    0000b8c7看门狗 CC26XX_init
    00007cf5看门狗 CC26XX_open
    00009ca9看门狗 CC26XX_setReload
    0000b555 Watchdog_Params_init
    0000b87b Watchdog_clear
    0000b885 Watchdog_Close
    0000d6b0安全装置_CONFIG
    0000d824 Watchdog_defaultParams
    0000946d Watchdog_init
    00009cd9 Watchdog_open
    0000b88f Watchdog_setReload
    00003d21水流量传感器连接
    20000620水_用途
    10015a85零
    0000d6c8 ZanAppPinTable_FSR
    0000d7c0 ZanAppPinTable_TOF
    0000d80c ZanAppPinTable_Washcnt
    0000b997 ZanConfig_Read
    00006c29 ZanInit
    00000000 _ASM__
    00000073 __ISA__
    00000085 __PLAT__
    20004428 __STACK_END
    00000400 __STACK_SIZE
    20004428 __STACK_TOP
    000000ac __TAGR__
    0000dfdc __TI_CINIT_Base
    0000e03c _TI_CINIT_LIMIT
    0000dfd4 __TI_Handler_Table_Base
    0000dfdc __TI_Handler_Table_Limit
    00006049 __TI_auto_init
    200019a8 _TI_clean_ptr
    0000b66f _TI_decompress_none
    0000b919 __TI_decompress_rle24
    200019ac __TI_dptors _ptr
    200019b0 __TI_ENABLE_EXIT_PROFILE_OUTPUT
    FFFFFFFF __TI_pprof_out_hndl
    FFFFFFFF __TI_PRof _DATA_SIZE
    FFFFFFFF _TI_PROD_DATA_START
    0000d8f8 __TI_static_BASE__
    000000d1 __TRDR__
    00006a15 __aeabi_cdrcmple
    00007c35 __aeabi_cfcmpeq
    00007c35 __aeabi_cfcmple
    000089f9 __aeabi_d2iz
    00004bb1 __aeabi_dmul
    000094dd __aeabi_f2iz
    00009965 __aeabi_f2uiz
    00004cb1 __aeabi_fadd
    00006641 __aeabi_fdiv
    00006e29 __aeabi_fmul
    00004cad __aeabi_fsub
    00009515 __aeabi_i2f
    00007d53 __aeabi_idiv0
    0000b191 __aeabi_lmul
    00006ea3 __aeabi_memclr
    00006ea3 __aeabi_memclr4.
    00006ea3 __aeabi_memclr8.
    00006185 __aeabi_memcpy
    00006185 __aeabi_memcpy4.
    00006185 __aeabi_memcpy8.
    00006ea5 __aeabi_memset
    00006ea5 _aeabi_memset4
    00006ea5 __aeabi_memset8.
    0000a9cd __aeabi_ui2d
    0000a739 __aeabi_ui2f
    00008e29 __aeabi_uidiv
    00008e29 __aeabi_uidivmod
    00002add __aeabi_uldivmod
    FFFFFFFF __binIT__
    FFFFFFFF __c_args__
    0001ffa8 _ccfg
    10019ffe __CHECKSUM_CommonROM
    10014c00 __CHECKSUM_BEGIN_CommonROM
    10019ffd __CHECKSUM_END_CommonROM
    0000e0ea __CHECKSUM_VALUE CommonROM
    10018ced __exit
    20004028 __stack
    0000b179 _args_main
    00008b95 _c_int00
    200019d4 _lock
    0000b3b9 _nop
    0000b3c1 _register_lock
    0000b3bb _register_unlock
    200019d8 _unlock
    000081e1中止
    0000a98d adcIsr
    20001a4c appAssertBack
    0000d58e appearanceUUID
    20004fdc aux64
    FFFFFFFF 二进制文件
    20000700缓冲器
    0000d58a 聚合格式 UUID
    0000d582 charExtPropsUUID
    0000d588 charFormatUUID
    0000d584 charUserDescUUID
    0000d576字符 UUID
    0000d578 clientCharCfgUUID
    0000871d COPY_IN
    0000d7fe devInfo11073CertUUID
    0000d818 devInfoCBs
    0000d89a devInfoFirmwareRevUUID
    0000d8e0 devInfoHardwareRevUUID
    0000d8e2 devInfoMfrNameUUID
    0000d8e4 devInfoModelNumberUUID
    0000d8e6 devInfoPnpIdUUID
    0000d8e8 devInfoSerialNumberUUID
    0000d8ea devInfoServUUID
    0000d8ec devInfoSoftwareRevUUID
    0000d8ee devInfoSystemIdUUID
    0000d58c deviceNameUUID
    0000b261 driverTable_fnSpinlock
    20003c64 driverlib_release_0_46593
    10017dbd eccRom_genKeys
    10017分式 eccRom_genSharedSecret
    20004fa0 eccRom_param_gx
    20004fa4 eccRom_param_Gy
    20004f50 eccRom_param_a
    20004fa8 eccRom_param_b
    20004f48 eccRom_param_p
    20004f4c eccRom_param_r
    20004f40 eccRom_windowSize
    20004f44 eccRom_Workzone
    000081e9出口
    0000d59a extReportRefUUID
    00001e29 flash_local_clear_wsh_water 数据
    20000622流速
    20000630流速
    20000634 FlowRatePerMinute
    20004fcc fwInfoCmd
    20003104 g_SensorValue
    20000208 gapProfileState
    20000e24 gapRoleTask
    20000e74 gapRoleTaskStack
    0000b161 gapRole_clockHandler
    0000d57a gapServiceUUID
    0000d57c gattServiceUUID
    20003414 gl_SensorValue
    20003be8 hGpioPin
    20003418内存
    20003bec SensorPin
    20003704 hWDT
    20004028 heapEnd
    20003c65 heapStart
    20003440 Hwi
    0000d6e0 i2cCC26xxHWAttrs
    20003a18 i2cCC26xx 对象
    20004f58 inPointX
    20004f5c inPointY
    20004f54解剖刀
    0000d580 includedUUID
    0000d830 ioCBs
    0000d720 ioConfUUID
    0000d730 ioDataUUID
    0000d740 ioServUUID
    200030f6 IO_TIMEOUT
    20003424存储器
    200019b4 lastAppOptodeSent
    20000d10 linkDBNumConns
    000094a5 linkDB_NumConns
    10016551 madd
    10015bd5 mINVK
    10015f81 MMULT
    10016749输出电流
    10015a9d mSET
    1001664d mSUB
    00007f21主代码
    20001a58 main_func_sp
    0000b67d makeuint16.
    10018949 mbCmdAckIsr.
    1001895d mbCpe0Isr.
    10018985 mbCpe1等
    100189e5高速高速
    200030fc measuring_timing_budget
    0000a80b memcmp
    00006185 memcpy
    00006eab 内存集
    undefED 毫克
    20001a70 myCopyBlock
    0000d7d0 nvsCC26xxHWAttrs
    20003c5c nvsCC26xx 对象
    0000ad69 openTRNG
    000098c9 osal_SNV_read
    000098fd osal_SNV_write
    20004f60 outPointX
    20004f64 outPointY
    20004ffc pSspAesEncrypt_SW
    0000d594 Connperi594参数 UUID
    0000d590外设 PrivacyFLAG1 UUID
    200019b8 pfnBMAllloc
    200019bc pfnBMFree
    000059e9压力传感器读数
    0000d574 primaryServiceUUID
    0000b7d9 publish_data
    0000b7e5 publish_watersusage_data
    0000b9a3 publish_watersusing_data2
    20004fanratchanInfo
    0000d592 reconnectAddrUUID
    0000d59c reportRefUUID
    0000d418 resourceDB
    0000d464 rfDriverTable
    2000173c rfRegTbl
    20003c00 sSensorPin
    0000d57e secondaryServiceUUID
    20000209 self EntityMain
    20000214 SEM
    2000311c SENSOR_DATA
    0000d586 servCharCfgUUID
    0000d596 serviceChangedUUID
    2000341c 单样品
    10016d29 sspAesDecrypt_SW
    10016af5 sspAesEncryptBasic_SW
    10016a99 sspAesEncryptKeyExp_SW
    10016979 sspAesEncrype_SW
    10016985 sspKeyExpansion 软件
    10016975 SSP_KeyInit_SW
    20000628状态
    20000618状态1
    200030f0 stop_variable
    2000062c 规格
    0000b3cd strlen
    200001a4 ti_sysbios_BIOS_Module_state__V
    1001bc29 ti_sysbios_BIOS_rtsGateProxy_handle__label_S
    UNDEFED ti_SYSBIOS_BIOS_rtsGateProxy_handle__label_S__man翻转_
    1001bab9 ti_sysbios_BIOS_rtsGateProxy_Object__delete_S
    UNDEFED ti_SysBIOS_BIOS_rtsGateProxy_Object__delete __S__man翻转__
    1001c179 ti_sysbios_BIOS_rtsGateProxy_Params__init__S
    UNDEFED ti_SYSBIOS_BIOS_rtsGateProxy_Params__init_S__s_man翻转_
    1001c249 ti_SYSBIOS_BIOS_rtsGateProxy_enter__E
    1001c24d ti_SYSBIOS_BIOS_rtsGateProxy_leave__E
    1001c275 ti_sysbios_BIOS_rtsGateProxy_query_E
    UNDEFED ti_SYSBIOS_BIOS_rtsGateProxy_query_E__man翻转 了__
    00009d09 ti_SysBIOS_BIOS_atExitFunc__I
    0000b277 ti_SysBIOS_BIOS_exitFunc__I
    1001c035 ti_SysBIOS_BIOS_exit__E
    1001bff9 ti_SysBIOS_BIOS_getCpuFreq__E
    0000b7F1 ti_SysBIOS_BIOS_getThreadType__E
    00008283 ti_SYSBIOS_BIOS_linkedWithIncorrectBootLibrary__E
    00008553 ti_SysBIOS_BIOS_nullFunc__I
    0000a75d ti_SYSBIOS_BIOS_registerRTSLock__I
    0000a781 ti_SysBIOS_BIOS_removeRTSLock__i
    0000a9ed ti_SysBIOS_BIOS_rtsLock__I
    0000b1c1 ti_SysBIOS_BIOS_rtsUnlock___i
    1001c045 ti_SysBIOS_BIOS_setThreadType__E
    00009d39 ti_SysBIOS_BIOS_startFunc__I
    1001c055 ti_SysBIOS_BIOS_start__E
    0000b0b9 ti_sysbios_family_arm_cc26xx_Boot_getBootReasOn__E
    00005fa5 ti_sysbios_family_arm_cc26xx_Boot_trimDevice
    00000502 ti_sysbios_family_arm_cc26xx_Timer_Module_id__C
    1001bb49 ti_sysbios_family_arm_cc26xx_Timer_Module_starpDone__S
    200001e4 ti_sysbios_family_arm_cc26xx_Timer_Module_state__V
    1001ba71 ti_sysbios_family_arm_cc26xx_Timer_Module_startup__E
    200017d8 ti_sysbios_family_arm_cc26xx_Timer_Object__table__V
    0000ad85 ti_SysBIOS_family_ARM_cc26xx_Timer_DynamicStudiob__E
    0000b9a7 ti_sysbios_family_arm_cc26xx_Timer_getCount64__E
    0000954d ti_SysBIOS_family_ARM_cc26xx_Timer_getCurrentTick__E
    1001c251 ti_sysbios_family_arm_cc26xx_Timer_getExpiredTicks__E
    0000a59d ti_SysBIOS_family_ARM_cc26xx_Timer_getMaxTicks__E
    1001c255 ti_SYSBIOS_family_ARM_cc26xx_Timer_getPeriod__E
    00009d69 ti_SysBIOS_family_ARM_cc26xx_Timer_initDevice__I
    1001a469 ti_SysBIOS_family_ARM_cc26xx_Timer_periodicStudiob__E
    1001b769 ti_SysBIOS_family_ARM_cc26xx_Timer_postInit___I
    00009ac7 ti_SysBIOS_family_ARM_cc26xx_Timer_setNextTick__E
    1001c259 ti_sysbios_family_arm_cc26xx_Timer_setPeriod___E
    00009d99 ti_sysbios_family_arm_cc26xx_Timer_setThreshold___i
    000079F1 ti_sysbios_family_arm_cc26xx_Timer_start__E
    00000484 ti_sysbios_family_arm_cc26xx_Timer_startupNeed__C
    1001b795 ti_sysbios_family_arm_cc26xx_Timer_startup___E
    200001ec ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_state___v
    1001bb69 ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_startup__E
    0000b6c3 ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E
    1001b9d1 ti_sysbios_family_arm_cc26xx_TimestampProvider_get64__E
    1001c12f ti_sysbios_family_arm_cc26xx_TimestampProvider_getFreq__E
    00000504 ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C
    00000488 ti_sysbios_family_arm_m3/hwi_E_alreadyDefined___C
    0000048c ti_sysbios_family_arm_m3/hwi_E_hwiLimitExceleed___C
    1001aed1 ti_sysbios_family_arm_m3/hwi_instance_finaling__E
    1001a3c9 ti_sysbios_family_arm_m3_Hwi_instance_init__E
    20001a6a ti_sysbios_family_arm_m3/Hwi_Module_State_0_exACTIVE__A
    20001a5c ti_SysBIOS_family_ARM_m3/Hwi_Module_State_0_excContext __A
    20001a60 ti_sysbios_family_arm_m3/hwi_Module_State_0_exstack__a
    00000506 ti_sysbios_family_arm_m3/hwi_Module_id__C
    200019e4 ti_sysbios_family_arm_m3/Hwi_Module_root_V
    1001bb89 ti_sysbios_family_arm_m3/hwi_Module_starpDone__S
    20000144 ti_SysBIOS_family_ARM_m3/Hwi_Module_state__V
    1001b1c1 ti_sysbios_family_arm_m3/hwi_Module_startup__E
    00000490 ti_sysbios_family_arm_m3/hwi_NUM_interrupts__C
    000002d0 ti_SysBIOS_family_ARM_m3/Hwi_Object_DESC_C
    00000170 ti_sysbios_family_arm_m3/Hwi_Object_Params__C
    00000494 ti_sysbios_family_arm_m3/Hwi_Object_count_C
    1001aab1 ti_sysbios_family_arm_m3/Hwi_Object__create__S
    1001bba9 ti_sysbios_family_arm_m3/Hwi_Object__delete_S
    1001be69 ti_sysbios_family_arm_m3/Hwi_Object_析 构 T__S
    1001b7c1 ti_sysbios_family_arm_m3/Hwi_Object_GET_S
    00000498 ti_sysbios_family_arm_m3/Hwi_Object_Table__C
    20001968 ti_sysbios_family_arm_m3/Hwi_Object_Table__V
    1001c13d ti_sysbios_family_arm_m3/Hwi_Params__init__S
    0000049c ti_SysBIOS_family_ARM_m3/Hwi_CCR__C
    1001af29 ti_sysbios_family_arm_m3/hwi_construct
    1001ab15 ti_sysbios_family_arm_m3/hwi_create
    1001c25d ti_sysbios_family_arm_m3/hwi_delete
    1001c261 ti_sysbios_family_arm_m3/hwi_析 构
    1001c149 ti_sysbios_family_arm_m3/hwi_disableFxn_E
    1001b299 ti_SysBIOS_family_ARM_m3/Hwi_disableInterrupt__E
    1001aa49 ti_sysbios_family_arm_m3/hwi_d调度 C__I
    20003af8 ti_sysbios_family_arm_m3/hwi_d调度 表
    1001c89d ti_sysbios_family_arm_m3/hwi_deign__i
    1001c1fb ti_sysbios_family_arm_m3/hwi_doSwiRestore__I
    1001c213 ti_SYSBIOS_family_ARM_m3/Hwi_doTaskRestore__I
    1001c155 ti_sysbios_family_arm_m3/hwi_enableFxn_E
    1001b2dd ti_sysbios_family_arm_m3/hwi_enableInterrupt__E
    1001ca01 ti_sysbios_family_arm_m3/hwi_exHandlerAsm__I
    000004a0 ti_sysbios_family_arm_m3/hwi_exHandlerFunc__C
    1001bbc9 ti_sysbios_family_arm_m3/hwi_examplter_i
    1001b465 ti_sysbios_family_arm_m3/hwi_getStackInfo__E
    1001a699 ti_sysbios_family_arm_m3/hwi_initNVIC__E
    1001c9b9 ti_sysbios_family_arm_m3/hwi_initStacks__E
    000004a4 ti_sysbios_family_arm_m3/hwi_nullIsrFunc__C
    000004a8 ti_sysbios_family_arm_m3/hwi_numSparseInterrupts__C
    e000e000 ti_SysBIOS_family_ARM_m3/Hwi_NVIC
    1001ca3f ti_sysbios_family_arm_m3/hwi_pendSV__I
    1001c065 ti_SysBIOS_family_ARM_m3/Hwi_plug__E
    1001a319 ti_sysbios_family_arm_m3/hwi_postInit__i
    0000b575 ti_sysbios_family_arm_m3/hwi_post
    000004ac ti_sysbios_family_arm_m3/hwi_priGroup__C
    20000000 ti_SysBIOS_family_ARM_m3/Hwi_ramVectors
    00000000 ti_SYSBIOS_family_ARM_m3/Hwi_resetVectors
    1001c219 ti_SYSBIOS_family_ARM_m3/Hwi_restoreFxn_E
    1001ca57 ti_sysbios_family_arm_m3/hwi_return
    0000b979 ti_sysbios_family_arm_m3/hwi_setFunc__E
    1001be85 ti_sysbios_family_arm_m3/hwi_setPriority __E
    1001c203 ti_sysbios_family_arm_m3/hwi_startup___E
    1001c00d ti_sysbios_family_arm_m3/hwi_switchFromBootStack__E
    1001c265 ti_sysbios_family_arm_m3/TaskSupport_Module_starpDone__S
    1001c96d ti_sysbios_family_arm_m3/TaskSupport_buildTaskStack
    1001c161 ti_sysbios_family_arm_m3/TaskSupport_getStackAlignment__E
    1001ca59 ti_sysbios_family_arm_m3_TaskSupport_cUS
    000004b0 ti_sysbios_family_arm_m3/taskSupport_stackAlignment__C
    1001b49d ti_sysbios_family_arm_m3/taskSupport_start__E
    1001ca69 ti_sysbios_family_arm_m3/TaskSupport_swap_e_e
    1001ca21 ti_sysbios_family_xxx_Hwi_switchAndRunFunc
    1001bbe9 ti_sysbios_gates_GateHwi_handle_label_S
    1001b463 ti_sysbios_gates_GateHwi_instance_init__E
    0000021c ti_sysbios_gates_GateHwi_Module_Fxns__C
    00000508 ti_sysbios_gates_GateHwi_Module_id__C
    200019ec ti_sysbios_gates_GateHwi_Module_root__V
    000002f0 ti_SysBIOS_Gates_GateHwi_Object_DESC_C
    00000430 ti_sysbios_gates_GateHwi_Object_Params__C
    1001ba95 ti_sysbios_gates_GateHwi_Object__create__S
    1001bc09 ti_sysbios_gates_GateHwi_Object__delete_S
    1001c16d ti_sysbios_gates_GateHwi_enter__E
    1001c21f ti_sysbios_gates_GateHwi_leave__E
    1001c269 ti_sysbios_gates_GateHwi_query__E
    1001bc29 ti_sysbios_gates_GateMutex_handle__label_S
    000005cc ti_sysbios_gates_GateMutex_instance_State_SEM_O
    1001c075 ti_SysBIOS_gates_GateMutex_instance_finaling__E
    1001bea1 ti_sysbios_gates_GateMutex_instance_init__E
    00000240 ti_sysbios_gates_GateMutex_Module_Fxns__C
    0000050a ti_sysbios_gates_GateMutex_Module_id__C
    200019f4 ti_sysbios_gates_GateMutex_Module_root__V
    00000310 ti_SysBIOS_Gates_GateMutex_Object_DESC_C
    00000448 ti_sysbios_gates_GateMutex_Object_Params__C
    1001b649 ti_sysbios_gates_GateMutex_Object__create__S
    1001bab9 ti_sysbios_gates_GateMutex_Object__delete_S
    1001bc49 ti_sysbios_gates_GateMutex_Object_析 构 T__S
    20001820 ti_sysbios_gates_GateMutex_Object__table__V
    1001c179 ti_sysbios_gates_GateMutex_Params__init__S
    1001b7ed ti_sysbios_gates_GateMutex_construct
    1001b679 ti_sysbios_gates_GateMutex_create
    1001c26d ti_sysbios_gates_GateMutex_delete
    1001c271 ti_sysbios_gates_GateMutex_析 构
    1001b6a9 ti_sysbios_gates_GateMutex_enter__E
    1001bf9d ti_sysbios_gates_GateMutex_leave__E
    1001c275 ti_sysbios_gates_GateMutex_query__E
    1001c279 ti_sysbios_hal_hwi_HwiProxy_Module_startupDone__S
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_Module_startupDone__S__man翻转__
    1001c085 ti_sysbios_hal_hwi_hwiProxy_Object__create__S
    1001bba9 ti_sysbios_hal_hwi_hwiProxy_Object__delete_s
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_Object__delete _S__man翻转_
    1001c13d ti_sysbios_hal_hwi_HwiProxy_Params__init__S
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_Params__init__S__man翻转__
    1001be49 ti_sysbios_hal_hwi_hwiProxy_create
    1001c27d ti_sysbios_hal_hwi_hwiProxy_delete
    1001c281 ti_sysbios_hal_hwi_hwiProxy_disableInterrupt__E
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_disableInterrupt__E__man翻转__
    1001c285 ti_sysbios_hal_hwi_hwiProxy_enableInterrupt__E
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_enableInterrupt_E__man翻转_
    1001c289 ti_sysbios_hal_hwi_HwiProxy_getStackInfo__E
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_getStackInfo_E__man翻转_
    0000b575 ti_SYSBIOS_hal_Hwi_HwiProxy_post__E
    1001c28d ti_sysbios_hal_hwi_hwiProxy_startup___E
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_startup_E__man翻转_
    1001c291 ti_SysBIOS_hal_Hwi_HwiProxy_switchFromBootStack__E
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_switchFromBootStack_E___manifed__
    1001c1F1 ti_sysbios_hal_hwi_instance_final__E
    1001b9f9 ti_sysbios_hal_hwi_instance_init__E
    200019fc ti_sysbios_hal_hwi_Module_root__V
    1001c021 ti_sysbios_hal_hwi_Module_startup___E
    00000330 ti_sysbios_hal_hwi_Object_DESC_C
    000001a0 ti_sysbios_hal_hwi_Object_Params__C
    1001bc69 ti_sysbios_hal_hwi_Object__delete_s
    1001ab79 ti_sysbios_hal_hwi_create
    1001c295 ti_sysbios_hal_hwi_delete
    1001c281 ti_sysbios_hal_hwi_disableInterrupt__E
    UNDEFED ti_SYSBIOS_hal_Hwi_disableInterrupt__E
    1001c285 ti_sysbios_hal_hwi_enableInterrupt__E
    UNDEFED ti_SYSBIOS_hal_Hwi_enableInterrupt__E
    1001c289 ti_sysbios_hal_hwi_getStackInfo__E
    UNDEFED ti_SYSBIOS_hal_Hwi_getStackInfo__E
    1001b819 ti_sysbios_hal_hwi_initStack
    0000b575 ti_sysbios_hal_hwi_post _E
    1001c28d ti_sysbios_hal_hwi_startup___E
    UNDEFED ti_SYSBIOS_hal_Hwi_startup___E
    1001c299 ti_sysbios_hal_hwi_switchFromBootStack__E
    UNDEFED ti_SYSBIOS_hal_Hwi_switchFromBootStack__E
    000004b4 ti_sysbios_b堆_HeapMem_E_memory__C
    1001bc89 ti_sysbios_b堆_HeapMem_handle__label_S
    20002a70 ti_sysbios_堆_HeapMem_instance_State_0_Buf__a
    1001b4d5 ti_sysbios_b堆_HeapMem_instance_init__E
    1001bc29 ti_sysbios_堆_HeapMem_Module_GateProxe_handle__label_S
    UNDEFED ti_SYSBIOS_b堆_HeapMem_Module_GateProxe_Handle__label_S__man翻转_
    1001bab9 ti_sysbios_堆_HeapMem_Module_GateProxy_Object__delete_S
    UNDEFED ti_SYSBIOS_b堆_HeapMem_Module_GateProxy_Object__delete _S__man翻转_
    1001c179 ti_sysbios_堆_HeapMem_Module_GateProxy_Params__init__S
    UNDEFED ti_SYSBIOS_b堆_HeapMem_Module_GateProxy_Params__init_S__s__man翻转_
    1001c29d ti_sysbios_堆_HeapMem_Module_GateProxy_enter_E
    1001c2a1 ti_sysbios_堆_HeapMem_Module_GateProxy_leave__E
    1001c275 ti_sysbios_堆_HeapMem_Module_GateProxy_query_E
    UNDEFED ti_SYSBIOS_b堆_HeapMem_Module_GateProxy_query_E__man翻转_
    000001cc ti_sysbios_堆_HeapMem_Module_Fxns__C
    000004b8 ti_sysbios_b堆_HeapMem_Module_gateObj__C
    0000050c ti_sysbios_堆_HeapMem_Module_id__C
    20001a04 ti_sysbios_堆_HeapMem_Module_root__V
    00000350 ti_sysbios_堆_HeapMem_Object_DESC_C
    00000264 ti_sysbios_堆_HeapMem_Object_Params__C
    000004bc ti_sysbios_堆_HeapMem_Object_count__C
    1001b845 ti_sysbios_b堆_HeapMem_Object__create__S
    1001bca9 ti_sysbios_堆_HeapMem_Object__delete_S
    1001b871 ti_sysbios_b堆_HeapMem_Object_get__S
    000004c0 ti_sysbios_堆_HeapMem_Object__table__C
    20001980 ti_sysbios_b堆_HeapMem_Object__table__V
    1001a199 ti_sysbios_b堆_HeapMem_alloc__E
    1001a795 ti_sysbios_堆_HeapMem_free__E
    1001b209 ti_sysbios_b堆_HeapMem_getStats__E
    1001b545 ti_sysbios_b堆_HeapMem_init__i
    1001c2a5 ti_sysbios_堆_HeapMem_isBlocking__E
    000004c4 ti_sysbios_堆_HeapMem_reqAlign___C
    1001c105 ti_sysbios_b堆_HeapMem_restore__E
    1001bfcd ti_SysBIOS_KNL_Clock_instance_finaling__E
    1001b50d ti_sysbios_KNL_Clock_instance_init__E
    000005d0 ti_SysBIOS_KNL_Clock_Module_State_clockQ_O
    20001a0c ti_SysBIOS_KNL_Clock_Module_root__V
    20000178 ti_SysBIOS_KNL_Clock_Module_state__V
    1001bcc9 ti_sysbios_KNL_Clock_Module_startup___E
    00000370 ti_SysBIOS_KNL_Clock_Object__Desc_C
    00000288 ti_SysBIOS_KNL_Clock_Object_Params__C
    1001b 添加 ti_SysBIOS_KNL_Clock_Object__delete_S
    1001bce9 ti_SysBIOS_KNL_Clock_Object_析 构函数__S
    20001948 ti_SysBIOS_KNL_Clock_Object__table___V
    1001c185 ti_SysBIOS_KNL_Clock_Params__init__S
    1001c2a9 ti_sysbios_KNL_Clock_TimerProxy_Module_starpDone__S
    UNDEFED ti_SysBIOS_KNL_Clock_TimerProxy_Module_startupDone__S__man翻转__
    1001c095 ti_SysBIOS_KNL_Clock_TimerProxy_getCurrentTick__E
    1001c2ad ti_SysBIOS_KNL_Clock_TimerProxy_getExpiredTicks__E
    1001c0a5 ti_SysBIOS_KNL_Clock_TimerProxy_getMaxTicks__E
    1001c2b1 ti_sysbios_KNL_Clock_TimerProxy_getPeriod___E
    1001c0b5 ti_sysbios_KNL_Clock_TimerProxy_setNextTick__E
    1001b795 ti_sysbios_KNL_Clock_TimerProxy_startup___E
    UNDEFED ti_SYSBIOS_KNL_Clock_TimerProxy_startup_E__man翻转_
    1001ba21 ti_SysBIOS_KNL_Clock_addi__E
    1001b579 ti_SysBIOS_KNL_Clock_con构
    1001b3ed ti_SysBIOS_KNL_Clock_create
    1001c2b5 ti_SysBIOS_KNL_Clock_delete
    1001c2b9 ti_SysBIOS_KNL_Clock_析 构
    0000b3f5 ti_sysbios_KNL_Clock_dotick__i
    0000a14d ti_SysBIOS_KNL_Clock_getTicksUntilInterrupt__E
    1001b6d9 ti_SysBIOS_KNL_Clock_getTicks__E
    1001c191 ti_SysBIOS_KNL_Clock_getTimerHandle__E
    0000b9ab ti_SysBIOS_KNL_Clock_isActive__E
    1001be67 ti_SysBIOS_KNL_Clock_logTick__E
    1001c2bd ti_SysBIOS_KNL_Clock_removeI_E
    1001bd ti_sysbios_KNL_Clock_scheduleNextTick__E
    000004c8 ti_SysBIOS_KNL_Clock_serviceMargin__C
    1001c2c1 ti_SysBIOS_KNL_Clock_setTimeout___E
    1001a719 ti_SysBIOS_KNL_Clock_starti__E
    1001bfe3 ti_SysBIOS_KNL_Clock_start__E
    0000aa0d ti_SYSBIOS_KNL_Clock_stop__E
    00000510 ti_SysBIOS_KNL_Clock_tickMode___C
    0000d8a4 ti_SysBIOS_KNL_Clock_tickPeriod___C
    0000d8a8 ti_SysBIOS_KNL_Clock_triggerClock___C
    000087ff ti_SysBIOS_KNL_Clock_triggerFunc__i
    1001a80d ti_SysBIOS_KNL_Clock_WalkQueueDynamic__E
    000063ed ti_SysBIOS_KNL_Clock_workFuncDynamic__E
    1001a885 ti_SysBIOS_KNL_Clock_workFunc__E
    0000d88c ti_SysBIOS_KNL_Idle_funclist__A
    00000478 ti_SysBIOS_KNL_Idle_funclist___C
    1001c20b ti_SysBIOS_KNL_Idle_loop__E
    1001bd09 ti_sysbios_KNL_Idle_run___E
    000005d4 ti_sysbios_KNL_Mailbox_instance_State_dataQue_O
    000005d8 ti_sysbios_KNL_Mailbox_instance_State_dataSem__O
    000005dc ti_sysbios_KNL_Mailbox_instance_State_freeQue_O
    000005e0 ti_sysbios_KNL_Mailbox_instance_State_freeSem_O
    1001a9dd ti_sysbios_KNL_Mailbox_instance_finaling__E
    1001a001 ti_sysbios_KNL_Mailbox_instance_init__E
    20001a14 ti_sysbios_KNL_Mailbox_Module_root__V
    1001b251 ti_sysbios_KNL_Mailbox_Module_Started__E
    00000390 ti_SysBIOS_KNL_Mailbox_Object__Desc_C
    0000013c ti_sysbios_KNL_Mailbox_Object_Params__C
    000004cc ti_SysBIOS_KNL_Mailbox_Object_count__C
    1001bd29 ti_sysbios_KNL_Mailbox_Object__delete_S
    1001bed9 ti_sysbios_KNL_Mailbox_Object__析 构函数__S
    1001b89d ti_SysBIOS_KNL_Mailbox_Object__get__S
    000004d0 ti_sysbios_KNL_Mailbox_Object__table__C
    1001c19d ti_SysBIOS_KNL_Mailbox_Params__init__S
    1001af81 ti_sysbios_KNL_Mailbox_construct
    1001abdd ti_SysBIOS_KNL_Mailbox_create
    1001c2c5 ti_sysbios_KNL_Mailbox_delete
    1001c2c9 ti_sysbios_KNL_Mailbox_析 构
    1001a8fd ti_sysbios_KNL_Mailbox_pend__E
    1001b8c9 ti_sysbios_KNL_Mailbox_postInit___i
    1001a591 ti_sysbios_KNL_Mailbox_post__E
    1001c22b ti_sysbios_KNL_Queue_instance_init__E
    20001a1c ti_SysBIOS_KNL_Queue_Module_root__V
    000003b0 ti_SysBIOS_KNL_Queue_Object_DESC_C
    00000460 ti_SysBIOS_KNL_Queue_Object_Params__C
    000004d4 ti_SysBIOS_KNL_Queue_Object_count__C
    1001bd49 ti_SysBIOS_KNL_Queue_Object__delete_S
    1001bef5 ti_SysBIOS_KNL_Queue_Object_析 构 T__S
    1001bd69 ti_sysbios_KNL_Queue_Object__get__S
    000004d8 ti_sysbios_KNL_Queue_Object_Table__C
    1001b8f5 ti_SysBIOS_KNL_Queue_construct
    1001b921 ti_SysBIOS_KNL_Queue_create
    1001c2cd ti_sysbios_KNL_Queue_delete
    1001c1a9 ti_SysBIOS_KNL_Queue_dequeue___E
    1001c2d1 ti_SysBIOS_KNL_Queue_析 构
    1001c231 ti_SysBIOS_KNL_Queue_elemClear __E
    1001c113 ti_SysBIOS_KNL_Queue_empty_E
    1001c1b5 ti_SysBIOS_KNL_Queue_enqueue___E
    1001bf11 ti_SysBIOS_KNL_Queue_get__E
    1001c2d5 ti_sysbios_KNL_Queue_head_E
    1001c2d9 ti_sysbios_KNL_Queue_next __E
    1001bf2d ti_sysbios_KNL_Queue_put __E
    1001c121 ti_sysbios_KNL_Queue_remove__e_e
    000005e4 ti_SysBIOS_KNL_Semaphore_Instance_State_PendQ_O
    1001c0c5 ti_SysBIOS_KNL_Semaphore_instance_finaling__E
    1001bb01 ti_SysBIOS_KNL_Semaphore_instance_init__E
    20001a24 ti_SysBIOS_KNL_Semaphore_Module_root__V
    000003d0 ti_SysBIOS_KNL_Semaphore_Object_DESC_C
    000002ac ti_SYSBIOS_KNL_Semaphore_Object_PARAMS__C
    1001bb25 ti_SysBIOS_KNL_Semaphore_Object__delete_S
    1001bd89 ti_SysBIOS_KNL_Semaphore_Object_析 构函数__S
    1001c1c1 ti_SysBIOS_KNL_Semaphore_Params__init__S
    1001b709 ti_SysBIOS_KNL_Semaphore_construct
    1001b5ad ti_SysBIOS_KNL_Semaphore_create
    1001c2dd ti_SysBIOS_KNL_Semaphore_delete
    1001c2e1 ti_SysBIOS_KNL_Semaphore_析 构
    1001b94d ti_SysBIOS_KNL_Semaphore_pendTimeout__I
    1001a0cd ti_SysBIOS_KNL_Semaphore_pend__E
    1001ac41 ti_SysBIOS_KNL_Semaphore_post__E
    1001bf9b ti_SYSBIOS_KNL_Swi_instance_finaling__E
    1001aca5 ti_SysBIOS_KNL_Swi_instance_init__E
    20001888 ti_SysBIOS_KNL_Swi_Module_State_0_readyQ__A
    20001a2c ti_sysbios_KNL_Swi_Module_root__V
    200001c8 ti_sysbios_KNL_Swi_Module_state__V
    1001c237 ti_sysbios_KNL_Swi_Module_startup___E
    000003f0 ti_SysBIOS_KNL_Swi_Object_DESC_C
    000001f4 ti_sysbios_KNL_Swi_Object_Params__C
    000004dc ti_sysbios_KNL_Swi_Object_count__C
    1001bda9 ti_sysbios_KNL_Swi_Object__delete_S
    1001bf49 ti_SysBIOS_KNL_Swi_Object_析 构函数__S
    1001b979 ti_sysbios_KNL_Swi_Object__get__S
    000004e0 ti_SysBIOS_KNL_Swi_Object__table__C
    200018b8 ti_sysbios_KNL_Swi_Object__table__V
    1001c1cd ti_sysbios_KNL_Swi_Params__init__S
    1001b085 ti_SysBIOS_KNL_Swi_construct
    1001ad05 ti_SysBIOS_KNL_Swi_create
    1001c2e5 ti_sysbios_KNL_Swi_delete
    1001c2e9 ti_SysBIOS_KNL_Swi_析 构
    1001c0d5 ti_SysBIOS_KNL_Swi_disable___E
    1001c0e5 ti_SysBIOS_KNL_Swi_enabled__E
    0000b7fd ti_SysBIOS_KNL_Swi_getTrigger__E
    000004e4 ti_SysBIOS_KNL_Swi_numPriorities __C
    0000b1d9 ti_sysbios_KNL_Swi_or_e_e
    1001c2ed ti_SysBIOS_KNL_Swi_postInit___I
    1001b321 ti_sysbios_KNL_Swi_post _E
    1001ad61 ti_SysBIOS_KNL_Swi_restoreHwi__E
    1001b5e1 ti_sysbios_KNL_Swi_restore__E
    1001b0d5 ti_SysBIOS_KNL_Swi_runLoop __I
    1001afd9 ti_sysbios_KNL_Swi_run__i
    1001b031 ti_sysbios_KNL_Swi_schedule__i
    1001c23d ti_sysbios_KNL_Swi_startup___E
    20003708 ti_SYSBIOS_KNL_Task_Instance_State_0_STACK__A
    1001a4fd ti_sysbios_KNL_Task_instance_finaling__E
    1001a25d ti_sysbios_KNL_Task_instance_init__E
    20001a64 ti_SysBIOS_KNL_Task_Module_State_0_idleTask__A
    200018e8 ti_SysBIOS_KNL_Task_Module_State_0_readyQ__A
    000005e8 ti_SysBIOS_KNL_Task_Module_State_InactiveQ_O
    20001a34 ti_sysbios_KNL_Task_Module_root__V
    20000100 ti_SysBIOS_KNL_Task_Module_state__V
    1001adbd ti_sysbios_KNL_Task_Module_startup___E
    00000410 ti_SysBIOS_KNL_Task_Object_DESC_C
    00000100 ti_SysBIOS_KNL_Task_Object_Params__C
    000004e8 ti_SysBIOS_KNL_Task_Object_count__C
    1001bdc9 ti_sysbios_KNL_Task_Object__delete_S
    1001bf65 ti_SysBIOS_KNL_Task_Object_析 构函数__S
    1001bde9 ti_sysbios_KNL_Task_Object__get__S
    000004ec ti_sysbios_KNL_Task_Object_Table__C
    2000178c ti_SysBIOS_KNL_Task_Object_Table___V
    1001c1d9 ti_sysbios_KNL_Task_Params__init__S
    1001c2F1 ti_sysbios_KNL_Task_SupportProxy_Module_starpDone__S
    UNDEFED ti_SysBIOS_KNL_Task_SupportProxy_Module_startupDone__S____man翻转__
    1001c2f5 ti_sysbios_KNL_Task_SupportProxy_getStackAlignment__E
    UNDEFED ti_SYSBIOS_KNL_Task_SupportProxy_getStackAlignment__E__man翻转__
    1001c2f9 ti_sysbios_KNL_Task_SupportProxy_start__E
    UNDEFED ti_SYSBIOS_KNL_Task_SupportProxy_start_E__man翻转__
    1001c2fd ti_sysbios_KNL_Task_SupportProxy_swap_e_E
    UNDEFED ti_SYSBIOS_KNL_Task_SupportProxy_swap_E__man翻转__
    000004f0 ti_SysBIOS_KNL_Task_allBrokedFunc__C
    1001b365 ti_SysBIOS_KNL_Task_allBrokedFunction__I
    1001b615 ti_SysBIOS_KNL_Task_blockI_E
    1001b125 ti_SysBIOS_KNL_Task_construct
    1001ae19 ti_SysBIOS_KNL_Task_create
    000004f4 ti_SysBIOS_KNL_Task_defaultStackHeap___C
    000004f8 ti_sysbios_KNL_Task_defaultStackSize__C
    1001c301 ti_SysBIOS_KNL_Task_delete
    1001c305 ti_SysBIOS_KNL_Task_析 构
    1001c0f5 ti_SysBIOS_KNL_Task_disable__E
    1001c243 ti_SysBIOS_KNL_Task_enable__E
    1001be09 ti_sysbios_KNL_Task_enter_i
    1001b429 ti_SysBIOS_KNL_Task_exit___E
    0000050e ti_SysBIOS_KNL_Task_initStackFlag___C
    000004fc ti_SysBIOS_KNL_Task_numConstructedTasks__C
    1001a615 ti_SysBIOS_KNL_Task_postInit___I
    1001b739 ti_SysBIOS_KNL_Task_processorVitalTaskFlag__I
    1001be29 ti_sysbios_KNL_Task_restoreHwi__E
    1001ba49 ti_sysbios_KNL_Task_restore__E
    1001b175 ti_SysBIOS_KNL_Task_schedule__i
    1001c1e5 ti_sysbios_KNL_Task_self_E
    1001bf81 ti_sysbios_KNL_Task_sleepTimeout__i
    1001a96d ti_SysBIOS_KNL_Task_sleep_E
    1001ae75 ti_sysbios_KNL_Task_startCore__E
    1001c309 ti_SysBIOS_KNL_Task_startup___E
    1001ca71 ti_sysbios_KNL_Task_swapReturn
    1001b9a5 ti_sysbios_KNL_Task_unblocki__E
    1001bfb5 ti_sysbios_KNL_Task_unb阻断__E
    1001b3a9 ti_sysbios_KNL_Task_yield __E
    00000590 ti_SYSBIOS_ROM_ROM_AONRTCChannelEnable
    00000594 ti_SysBIOS_ROM_ROM_AONRTCCompareValueSet
    00000598 ti_SYSBIOS_ROM_ROM_AONRTCCurrentCompareValueGet
    0000059c ti_sysbios_rom_rom_AONRTCEventClear
    000005a0 ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E
    000005a4 ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E
    000005a8 ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E
    000005ac ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_initDevice__i
    000005b0 ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E
    000005b4 ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_setThreshold___i
    000005b8 ti_sysbios_rom_rom_ti_sysbios_family_arm_cc26xx_Timer_start__E
    000005bc ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E
    000005c0 ti_sysbios_rom_rom_xdc_runtime_Startup_getState__i
    000005c4 ti_sysbios_rom_rom_xdc_runtime_System_SupportProxy_abort__e_E
    000005c8 ti_sysbios_rom_rom_xdc_runtime_System_SupportProxy_exit___e_E
    00008ce7 ti_sysbios_rom_cortexm_cc26xx_CC26xx_BadRomRevision__E
    0000b1F1 ti_SYSBIOS_ROM_cortexm_cc26xx_CC26xx_checkRevision___E
    1001ca9b ti_sysbios_rom_cortexm_cc26xx_CC26xx_getRevision___E
    200030f4 timeout_start_ms
    20003c60 trngCC26XX 对象
    0000d848 trngDriverTable
    0000d5c8 txPowerTable
    0000d894 txPwrTbl
    00007989 uartLog_flush
    0000700d uartLog_outputFxn
    20001918用户0Cfg
    0000a179 utilExtUuid16
    0000d598 validRangeUUID
    0000d854 watchdogCC26XHwAttrs
    20003bc0安全 dogCC26XX 对象
    20000624 Water usage1.
    0000b409 wdtCallback
    0000b585写入寄存器
    20003410 write_value
    00000524 XDC_runtime assert_E_assertFlail__C
    1001c5a9 XDC_runtime_assert_arc__I
    1001c6ed XDC_runtime_Core_assignLabel__I
    1001c5F1 xdc_runtime_Core_赋 值 Params__I
    1001c639 XDC_runtime_Core_constructObject__I
    1001c405 XDC_runtime_Core_CreateObject__I
    1001c4f9 xdc_runtime_Core_deleteObject__I
    1001c7a1 XDC_runtime_Core_析 构对象__I
    00000528 XDC_RAuntime_Error_E_MEMORY__C
    1001c7b9 XDC_runtime_Error_check__E
    1001c841 XDC_runtime_Error_init__E
    0000052c XDC_runtime Error_policyFxn__C
    1001c487 XDC_runtime_Error_PolicySpin__E
    0000058c XDC_RAuntime_Error_policy___C
    1001c769 XDC_runtime_Error_raiseX__E
    1001c885 XDC_runtime_Gate_enterSystem__E
    1001c879 XDC_runtime_Gate_leaveSystem__E
    00000530 XDC_runtime _IGateProvider_Interface_base__C
    00000534 XDC_runtime IHeap_Interface_base__C
    0000d8ac XDC_runtime ILogger_Interface_base__C
    00000538 XDC_runtime IModule_Interface_base__C
    0000d8b0 XDC_runtime 日志_L_info__C
    0000adbd XDC_runtime _LoggerCallback_instance_init__E
    0000d540 XDC_RAuntime_LoggerCallback_Module_Fxns__C
    20001a3c xdc_runtime_LoggerCallback_Module_root__V
    00008e69 XDC_runtime _LoggerCallback_Module_Started_E
    0000d610 XDC_Runtime_LoggerCallback_Object_DESC__C
    0000d64c XDC_runime_LoggerCallback_Object_Params__C
    0000d8b4 XDC_runime_LoggerCallback_Object_count__C
    00009dc9 XDC_runtime _LoggerCallback_Object_create_S
    0000b595 XDC_runime_LoggerCallback_Object_GET__S
    20001998 XDC_runtime LoggerCallback_Object__table__V
    0000d8b8 xdc_runtime_LoggerCallback_createInstFxn__C
    0000b9af XDC_runtime LoggerCallback_defaultCreate
    0000b899 XDC_runtime LoggerCallback_disable__E
    0000b8a3 XDC_runtime LoggerCallback_enable__E
    0000d8bc xdc_runtime_LoggerCallback_outputFxn__C
    0000a5c5 XDC_runtime_LoggerCallback_write0__E
    0000a5ed XDC_runtime _LoggerCallback_write1__E
    0000a1a5 XDC_Runtime_LoggerCallback_write2__E
    00009999 XDC_runime_LoggerCallback_write4__E
    00008c1d XDC_runtime_LoggerCallback_write8__E
    UNDEFED XDC_RAUNTIME_Main_Module_GateProxy_Handle__label_S
    UNDEFED XDC_RAUNTIME_Main_Module_GateProxy_Object_Delete_S
    UNDEFED XDC_RAUNTIME_Main_Module_GateProxy_query_E
    0000053c XDC_RAuntime_Main_Module_diagsEnabled___C
    00000540 XDC_RAuntime_Main_Module_diagsIncluded__C
    00000544 XDC_RAuntime_Main_Module_diagsMask__C
    00000584 XDC_runtime Main 模块_id__C
    0000d8f2 XDC_runtime 主模块__logger Defined__C
    0000d8c0 XDC_runtime_Main_Module_loggerFxn2__C
    0000d8c4 XDC_runtime_Main_Module_loggerFxn4__C
    0000d8c8 XDC_runtime_Main_Module_loggerObj__C
    1001bc89 XDC_runtime_Memory_HeapProxy_handle__label_S
    UNDEFED XDC_RAUNTIME_Memory_HeapProxy_Handle__label_S__man翻转_
    1001bca9 XDC_runtime 内存_HeapProxy_Object__delime_S
    UNDEFED XDC_RAUNTIME_Memory_HeapProxy_Object__delete _S__man翻转_
    1001c889 XDC_runtime_Memory_HeapProxy_alloc__E
    1001c88d XDC_runtime_Memory_HeapProxy_free__E
    00000586 XDC_RAuntime_Memory_Module_id__C
    20000200 XDC_RAuntime_Memory_Module_state__V
    1001c489 XDC_runtime_Memory_alloc__E
    1001c84d XDC_runtime_Memory_calloc__E
    00000548 XDC_RAuntime_Memory_defaultHeapInstance___C
    1001c801 XDC_runtime_Memory_free_e_E
    1001c859 XDC_runtime_Memory_getMaxDefaultTypeAlign__E
    1001c785 XDC_runtime_Memory_valloc__E
    20001a44 XDC_runtime 注册表_Module_state__V
    0000aa2d XDC_runtime 注册表_findById__E
    200001f0 XDC_RAuntime_Startup_Module_state__V
    00000001 XDC_RAuntime_Startup__EXECFXN__C
    00000001 XDC_Runtime_Startup__RESETFXN__C
    0000054c XDC_RAuntime_Startup_execImpl__C
    1001c559 XDC_runtime_Startup_exec__E
    0000b441 XDC_RAuntime_Startup_exec__I
    0000d860 XDC_runtime 启动_firstFxns__A
    00000514 XDC_RAuntime_Startup_firstFxns__C
    00007f7d XDC_runtime _启动_getState__I
    0000051c XDC_RAuntime_Startup_lastFxns__C
    00000550 XDC_RAuntime_Startup_maxPasses__C
    0000b809 XDC_RAuntime_Startup_reset__I
    0000b815 XDC_Runtime_Startup_rtsDone__E
    0000d70c XDC_Runtime_Startup_sfxnRts__A
    00000554 XDC_Runtime_Startup_sfxnRts__C
    0000d5a0 XDC_runtime _启动_sfxnTab__A
    00000558 XDC_runtime 启动 sfxnTab__C
    0000055c XDC_runtime 启动_startModsFxn__C
    1001c30d XDC_runtime_Startup_startMods__I
    00000560 XDC_runtime SysCallback_abortFxn__C
    1001c811 XDC_Runtime_SysCallback_abort__E
    00008ee7 XDC_runtime SysCallback_defaultAbort
    000095bb XDC_runtime SysCallback_defaultExit
    0000a2cb XDC_runtime_SysCallback_defaultPutch
    0000b9b3 XDC_runtime SysCallback_defaultReady
    00000564 XDC_runtime SysCallback_exitFxn__C
    1001c821 XDC_runtime_SysCallback_exit___E
    0000d8cc XDC_runtime SysCallback_putchFxn__C
    0000b5a5 XDC_runtime SysCallback_putch__E
    0000d8d0 XDC_runtime SysCallback_readyFxn__C
    0000b5b5 XDC_runtime SysCallback_ready__E
    1001bbe9 xdc_runtime_System_Module_GateProxe_Handle__label__S
    UNDEFED XDC_RAUNTIME_System_Module_GateProxe_Handle__label_S__man翻转_
    1001bc09 XDC_runtime_System_Module_GateProxy_Object__delete_S
    UNDEFED XDC_RAUNTIME_System_Module_GateProxy_Object__delete _S__man翻转_
    1001c891 XDC_runtime_System_Module_GateProxy_ENTER_E
    1001c895 xdc_runtime_System_Module_GateProxy_leave __E
    1001c269 XDC_runtime_System_Module_GateProxy_query_E
    UNDEFED XDC_RAUNTIME_System_Module_GateProxy_query_E__man翻转_
    200001f8 XDC_RAuntime_System_Module_state__V
    1001c87f XDC_runtime_System_Module_startup___E
    UNDEFED XDC_RAUNTIME_System_SupportProxy_abort__E
    UNDEFED XDC_RAUNTIME_System_SupportProxy_exit__E
    0000b5a5 XDC_runtime System_SupportProxy_putch__E
    0000b5b5 XDC_runtime System_SupportProxy_READY__E
    00000568 XDC_runtime System_abortFxn__C
    1001c899 XDC_runtime_System_abortSpin__E
    000081e1 XDC_runtime System_abortStd__E
    1001c749 XDC_runtime_System_abort__E
    1001c681 XDC_runtime_System_atexit__E
    00001009 XDC_RAuntime_System_doPrint__I
    0000056c XDC_runtime System_exitFxn__C
    1001c89b XDC_runtime_System_exitSpin__E
    000081e9 XDC_RAuntime_System_exitStd__E
    1001c7d1 XDC_runtime_System_exit__E
    0000d8d4 XDC_runtime System_extendFxn__C
    000073ad XDC_runtime System_formatNum__i
    00000570 XDC_runtime System_maxAtexitHandlers__C
    00004da7 XDC_runtime System_printfExtend___I
    1001c6b9 xdc_runtime_System_processAtExit___E
    0000a279 XDC_runtime System_putchar__i
    0000ae75 XDC_runtime System_snprintf___E
    0000b9b7 XDC_runtime System_snprintf_va__F
    0000b5c5 XDC_runtime_System_vsnprintf___E
    00000588 XDC_Runtime_text_charCnt___C
    0000bb8c XDC_runtime_text_charTab__A
    00000574 XDC_runtime text_charTab___C
    1001c71d XDC_runtime_text_ordinate_e
    0000058a XDC_runtime text_isLoaded___C
    00000578 XDC_runtime 文本名称 Empty__C
    0000057c XDC_runtime 文本名称 Static__C
    00000580 XDC_runtime 文本名称未知__C
    0000d7e0 XDC_runtime_text_nodeTAB__A
    0000d8d8 XDC_runtime_text_nodeTAB___C
    00009df9 XDC_runtime _text_printVisFxn__i
    00007fd9 XDC_runtime _text_putLab___E
    000065ad XDC_runtime text_putMod___E
    00006221 XDC_runtime text_putSite___E
    0000d8f4 XDC_runtime_text_registryModsLastId__C
    1001c7e9 xdc_runtime_text_ropeText__E
    0000d8f6 XDC_runtime_text_unnamedModsLastId__C
    00008769 XDC_Runtime_text_visitRope2__I
    0000d8dc XDC_Runtime_text_visitRopeFxn__C
    0000b8ad XDC_Runtime_text_visitRope __I
    00008c61 XDC_runtime_text_xprintf___I
    1001c831 xdc_runtime_Timestamp_SupportProxy_get32__E
    0000b6c3 XDC_runtimestamp_SupportProxy_get32_E__man翻转__
    1001b9d1 XDC_runtimestamp_SupportProxy_get64__E
    UNDEFED XDC_RAUNTIME_Timestamp_SupportProxy_get64_E__man翻转_
    1001c12f XDC_runtimestamp_SupportProxy_getFreq__E
    UNDEFED XDC_RAUNTIME_Timestamp_SupportProxy_getFreq_E__man翻转_
    1001c831 XDC_runtimestamp_get32__E
    UNDEFED XDC_RAUNTIME_Timestamp_get32__E
    1001b9d1 XDC_runtimestamp_get64__E
    UNDEFED XDC_RAUNTIME_Timestamp_get64__E
    1001c12f XDC_runtimestamp_getFreq__E
    UNDEFED XDC_RAUNTIME_Timestamp_getFreq__E
    10015d19 zADD
    10015eb5 zADD32
    10015de9 zMACC32
    10015f0d zMULT32
    10015bcd zSET
    10015d5d zSUB
    10015e69 zSUB32
    20003c3c zanConfig_active
    0000d7f0 zanConfig_default


    全局符号:按符号地址排序

    地址名称
    ---- ----
    00000000 _ASM__
    00000000 ti_SYSBIOS_family_ARM_m3/Hwi_resetVectors
    00000001 XDC_RAuntime_Startup__EXECFXN__C
    00000001 XDC_Runtime_Startup__RESETFXN__C
    00000073 __ISA__
    00000085 __PLAT__
    000000ac __TAGR__
    000000d1 __TRDR__
    000000fd GATTServApp_AddService
    00000100 ti_SysBIOS_KNL_Task_Object_Params__C
    0000013c ti_sysbios_KNL_Mailbox_Object_Params__C
    00000170 ti_sysbios_family_arm_m3/Hwi_Object_Params__C
    000001a0 ti_sysbios_hal_hwi_Object_Params__C
    000001cc ti_sysbios_堆_HeapMem_Module_Fxns__C
    000001f4 ti_sysbios_KNL_Swi_Object_Params__C
    0000021c ti_sysbios_gates_GateHwi_Module_Fxns__C
    00000240 ti_sysbios_gates_GateMutex_Module_Fxns__C
    00000264 ti_sysbios_堆_HeapMem_Object_Params__C
    00000288 ti_SysBIOS_KNL_Clock_Object_Params__C
    000002ac ti_SYSBIOS_KNL_Semaphore_Object_PARAMS__C
    000002d0 ti_SysBIOS_family_ARM_m3/Hwi_Object_DESC_C
    000002f0 ti_SysBIOS_Gates_GateHwi_Object_DESC_C
    00000310 ti_SysBIOS_Gates_GateMutex_Object_DESC_C
    00000330 ti_sysbios_hal_hwi_Object_DESC_C
    00000350 ti_sysbios_堆_HeapMem_Object_DESC_C
    00000370 ti_SysBIOS_KNL_Clock_Object__Desc_C
    00000390 ti_SysBIOS_KNL_Mailbox_Object__Desc_C
    000003b0 ti_SysBIOS_KNL_Queue_Object_DESC_C
    000003d0 ti_SysBIOS_KNL_Semaphore_Object_DESC_C
    000003f0 ti_SysBIOS_KNL_Swi_Object_DESC_C
    00000400 __STACK_SIZE
    00000410 ti_SysBIOS_KNL_Task_Object_DESC_C
    00000430 ti_sysbios_gates_GateHwi_Object_Params__C
    00000448 ti_sysbios_gates_GateMutex_Object_Params__C
    00000460 ti_SysBIOS_KNL_Queue_Object_Params__C
    00000478 ti_SysBIOS_KNL_Idle_funclist___C
    00000484 ti_sysbios_family_arm_cc26xx_Timer_startupNeed__C
    00000488 ti_sysbios_family_arm_m3/hwi_E_alreadyDefined___C
    0000048c ti_sysbios_family_arm_m3/hwi_E_hwiLimitExceleed___C
    00000490 ti_sysbios_family_arm_m3/hwi_NUM_interrupts__C
    00000494 ti_sysbios_family_arm_m3/Hwi_Object_count_C
    00000498 ti_sysbios_family_arm_m3/Hwi_Object_Table__C
    0000049c ti_SysBIOS_family_ARM_m3/Hwi_CCR__C
    000004a0 ti_sysbios_family_arm_m3/hwi_exHandlerFunc__C
    000004a4 ti_sysbios_family_arm_m3/hwi_nullIsrFunc__C
    000004a8 ti_sysbios_family_arm_m3/hwi_numSparseInterrupts__C
    000004ac ti_sysbios_family_arm_m3/hwi_priGroup__C
    000004b0 ti_sysbios_family_arm_m3/taskSupport_stackAlignment__C
    000004b4 ti_sysbios_b堆_HeapMem_E_memory__C
    000004b8 ti_sysbios_b堆_HeapMem_Module_gateObj__C
    000004bc ti_sysbios_堆_HeapMem_Object_count__C
    000004c0 ti_sysbios_堆_HeapMem_Object__table__C
    000004c4 ti_sysbios_堆_HeapMem_reqAlign___C
    000004c8 ti_SysBIOS_KNL_Clock_serviceMargin__C
    000004cc ti_SysBIOS_KNL_Mailbox_Object_count__C
    000004d0 ti_sysbios_KNL_Mailbox_Object__table__C
    000004d4 ti_SysBIOS_KNL_Queue_Object_count__C
    000004d8 ti_sysbios_KNL_Queue_Object_Table__C
    000004dc ti_sysbios_KNL_Swi_Object_count__C
    000004e0 ti_SysBIOS_KNL_Swi_Object__table__C
    000004e4 ti_SysBIOS_KNL_Swi_numPriorities __C
    000004e8 ti_SysBIOS_KNL_Task_Object_count__C
    000004ec ti_sysbios_KNL_Task_Object_Table__C
    000004f0 ti_SysBIOS_KNL_Task_allBrokedFunc__C
    000004f4 ti_SysBIOS_KNL_Task_defaultStackHeap___C
    000004f8 ti_sysbios_KNL_Task_defaultStackSize__C
    000004fc ti_SysBIOS_KNL_Task_numConstructedTasks__C
    00000501 DefaultAssertBack
    00000502 ti_sysbios_family_arm_cc26xx_Timer_Module_id__C
    00000504 ti_sysbios_family_arm_cc26xx_TimestampProvider_useClockTimer__C
    00000506 ti_sysbios_family_arm_m3/hwi_Module_id__C
    00000508 ti_sysbios_gates_GateHwi_Module_id__C
    0000050a ti_sysbios_gates_GateMutex_Module_id__C
    0000050c ti_sysbios_堆_HeapMem_Module_id__C
    0000050e ti_SysBIOS_KNL_Task_initStackFlag___C
    00000510 ti_SysBIOS_KNL_Clock_tickMode___C
    00000514 XDC_RAuntime_Startup_firstFxns__C
    0000051c XDC_RAuntime_Startup_lastFxns__C
    00000524 XDC_runtime assert_E_assertFlail__C
    00000528 XDC_RAuntime_Error_E_MEMORY__C
    0000052c XDC_runtime Error_policyFxn__C
    00000530 XDC_runtime _IGateProvider_Interface_base__C
    00000534 XDC_runtime IHeap_Interface_base__C
    00000538 XDC_runtime IModule_Interface_base__C
    0000053c XDC_RAuntime_Main_Module_diagsEnabled___C
    00000540 XDC_RAuntime_Main_Module_diagsIncluded__C
    00000544 XDC_RAuntime_Main_Module_diagsMask__C
    00000548 XDC_RAuntime_Memory_defaultHeapInstance___C
    0000054c XDC_RAuntime_Startup_execImpl__C
    00000550 XDC_RAuntime_Startup_maxPasses__C
    00000554 XDC_Runtime_Startup_sfxnRts__C
    00000558 XDC_runtime 启动 sfxnTab__C
    0000055c XDC_runtime 启动_startModsFxn__C
    00000560 XDC_runtime SysCallback_abortFxn__C
    00000564 XDC_runtime SysCallback_exitFxn__C
    00000568 XDC_runtime System_abortFxn__C
    0000056c XDC_runtime System_exitFxn__C
    00000570 XDC_runtime System_maxAtexitHandlers__C
    00000574 XDC_runtime text_charTab___C
    00000578 XDC_runtime 文本名称 Empty__C
    0000057c XDC_runtime 文本名称 Static__C
    00000580 XDC_runtime 文本名称未知__C
    00000584 XDC_runtime Main 模块_id__C
    00000586 XDC_RAuntime_Memory_Module_id__C
    00000588 XDC_Runtime_text_charCnt___C
    0000058a XDC_runtime text_isLoaded___C
    0000058c XDC_RAuntime_Error_policy___C
    00000590 ti_SYSBIOS_ROM_ROM_AONRTCChannelEnable
    00000594 ti_SysBIOS_ROM_ROM_AONRTCCompareValueSet
    00000598 ti_SYSBIOS_ROM_ROM_AONRTCCurrentCompareValueGet
    0000059c ti_sysbios_rom_rom_AONRTCEventClear
    000005a0 ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_getCount64__E
    000005a4 ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_getCurrentTick__E
    000005a8 ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_getMaxTicks__E
    000005ac ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_initDevice__i
    000005b0 ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_setNextTick__E
    000005b4 ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_Timer_setThreshold___i
    000005b8 ti_sysbios_rom_rom_ti_sysbios_family_arm_cc26xx_Timer_start__E
    000005bc ti_sysbios_rom_ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E
    000005c0 ti_sysbios_rom_rom_xdc_runtime_Startup_getState__i
    000005c4 ti_sysbios_rom_rom_xdc_runtime_System_SupportProxy_abort__e_E
    000005c8 ti_sysbios_rom_rom_xdc_runtime_System_SupportProxy_exit___e_E
    000005cc ti_sysbios_gates_GateMutex_instance_State_SEM_O
    000005d0 ti_SysBIOS_KNL_Clock_Module_State_clockQ_O
    000005d4 ti_sysbios_KNL_Mailbox_instance_State_dataQue_O
    000005d8 ti_sysbios_KNL_Mailbox_instance_State_dataSem__O
    000005dc ti_sysbios_KNL_Mailbox_instance_State_freeQue_O
    000005e0 ti_sysbios_KNL_Mailbox_instance_State_freeSem_O
    000005e4 ti_SysBIOS_KNL_Semaphore_Instance_State_PendQ_O
    000005e8 ti_SysBIOS_KNL_Task_Module_State_InactiveQ_O
    00001009 XDC_RAuntime_System_doPrint__I
    00001941 VL53L0xDefaultSettings
    00001bc5 I2CCC26XX_transfer
    00001e29 flash_local_clear_wsh_water 数据
    00002069 GAPRole_SetParameter
    000022a5 Power_sleep
    000026e5 NOROM_SysCtrlSetRechargeBeforePowerDown
    000028e9 I2CCC26XX_OPEN
    00002add __aeabi_uldivmod
    00003221 PIN_INIT
    000033c9 RF_CancelCmd
    00003571 NVSCC26XX_WRITE
    000038a1 VL53L0X_INIT
    00003a2d PowerCC26XX_doCalibrate
    00003bb1 rf_postCmd
    00003d21水流量传感器连接
    00004119 NOROM_SetupAfterColdResetWakeupFromShutdownCfg3.
    00004249 Power_init
    00004479 ValidateSensorRead
    00004699 Range_Sensor_Read
    000047a5 VL53L0X_getSpadInfo
    000049b5 Validate_SensorRead
    00004bb1 __aeabi_dmul
    00004cad __aeabi_fsub
    00004cb1 __aeabi_fadd
    00004da7 XDC_runtime System_printfExtend___I
    00004e9f NVSCC26XX_CLOSE
    00005081 VL53L0X_readRangeSingleMillbill
    0000550d NOROM_SetupAfterColdResetWakeupFromShutdownCfg2
    000055e1 Power_releaseDependency
    000056b5 I2CCC26XX_CLOSE
    00005785 Power_setDependency
    000059e9压力传感器读数
    00005b71 RF_OPEN
    00005c31 PowerCC26XX_standbyPolicy
    00005f01 DevInfo_SetParameter
    00005fa5 NOROM_SetupTrimDevice
    00005fa5 ti_sysbios_family_arm_cc26xx_Boot_trimDevice
    00006049 __TI_auto_init
    000060e9 NOROM_AUXADCDisable
    00006185 __aeabi_memcpy
    00006185 __aeabi_memcpy4.
    00006185 __aeabi_memcpy8.
    00006185 memcpy
    00006221 XDC_runtime text_putSite___E
    000062bb NVSCC26XX_EXIT
    000062bd NOROM_AUXADCableSync
    00006355 PIN_OPEN
    000063ed ti_SysBIOS_KNL_Clock_workFuncDynamic__E
    00006485 GATTServApp_ProcessCharCfg
    00006519 NVSCC26XX_OPEN
    000065ad XDC_runtime text_putMod___E
    00006641 __aeabi_fdiv
    000067f5 I2CCC26XX_CANCEL
    0000687d NOROM_OSCHF_GetStartupTime
    0000687d PowerCC26XX_getXoscStartupTime
    00006905 SensorTagRegister_processCharChangeEvt
    00006a15 __aeabi_cdrcmple
    00006a9b WatchdogCC26XX_Close
    00006a9d iCall_heapMalloc
    00006ba5 TRNGCC26XX_getNumber
    00006c29 ZanInit
    00006cad rf_pendCmd
    00006d2d SensorTagIO_processCharChangeEvt
    00006e29 __aeabi_fmul
    00006ea3 __aeabi_memclr
    00006ea3 __aeabi_memclr4.
    00006ea3 __aeabi_memclr8.
    00006ea5 __aeabi_memset
    00006ea5 _aeabi_memset4
    00006ea5 __aeabi_memset8.
    00006eab 内存集
    00006f1d NOROM_SetupAfterColdResetWakeupFromShutdownCfg1.
    0000700d uartLog_outputFxn
    00007085 ICallPlatform_pwrUpdActivityCounter
    0000716d PowerCC26XX_auxISR
    000071e1 SensorTagRegister_reset
    0000733d NOROM_ChipInfo_GetHwRevision
    000073ad XDC_runtime System_formatNum__i
    0000741d Board_writeString
    00007489 Board_writeStringValue
    000074f5 iCall_createRemoteTasks
    00007561 iCall_heapInit
    000075cd NOROM_SetupGetTrimForAmpcompCtrl
    00007639 PowerCC26XX_CALIBRATE
    000077e9 NOROM_SetupGetTrimForAnabypassValue1
    00007851 NOROM_SYSCTRL_DCDC_VoltageConditionalControl
    00007989 uartLog_flush
    000079F1 ti_sysbios_family_arm_cc26xx_Timer_start__E
    00007b15 PowerCC26XX_RCOSC_clockFunc
    00007b75 RF_getCurrentTime
    00007bd5 VL53L0XI2cInit
    00007c35 __aeabi_cfcmpeq
    00007c35 __aeabi_cfcmple
    00007cf5看门狗 CC26XX_open
    00007d53 __aeabi_idiv0
    00007db1 NOROM_OSCHF_AttempToSwitchToXosc
    00007e0d NOROM_SysCtrlAdjustRechargeAfterPowerDown
    00007f21主代码
    00007f7d XDC_runtime _启动_getState__I
    00007fd9 XDC_runtime _text_putLab___E
    00008035 PowerCC26XX_initiateCalibration
    000081dd C$$EXIT
    000081e1中止
    000081e1 XDC_runtime System_abortStd__E
    000081e9出口
    000081e9 XDC_RAuntime_System_exitStd__E
    00008283 ti_SYSBIOS_BIOS_linkedWithIncorrectBootLibrary__E
    00008285 GAP_DeviceInit
    000082d5 GAP_UpdateAddisingData
    00008375 NOROM_SetupSetCacheModeAccordingToCcfgSeting
    000083c5 PIN_REMOVE
    00008415 RF_getinfo
    00008553 ti_SysBIOS_BIOS_nullFunc__I
    000085ed NOROM_OSCClockSourceSet
    00008639 Util_constructClock
    0000871d COPY_IN
    00008769 XDC_Runtime_text_visitRope2__I
    000087b5 GATTServApp_ProcessCCCWriteReq
    000087ff ti_SysBIOS_KNL_Clock_triggerFunc__i
    00008849 NOROM_ChipInfo_GetChipFamily
    00008891 NOROM_DDI16BitfieldWrite
    000088d9 VL53L0X_readMulti
    00008921 VL53L0X_setSignalRateLimit
    000089f9 __aeabi_d2iz
    00008a41 GAP_TerminateLinkReq
    00008a85 NVSCC26XX_CONTROL
    00008ac9 NVSCC26XX_READ
    00008b51 SensorTagIO_BLinkLed
    00008b95 ResetISR
    00008b95 _c_int00
    00008c1d XDC_runtime_LoggerCallback_write8__E
    00008c61 XDC_runtime_text_xprintf___I
    00008ce7 ti_sysbios_rom_cortexm_cc26xx_CC26xx_BadRomRevision__E
    00008ce9 GAPRole_SendUpdateParam
    00008d29 GAPRole_createTask
    00008d69 NOROM_DDI16BitfieldRead
    00008da9 rf_getRssi
    00008e29 __aeabi_uidiv
    00008e29 __aeabi_uidivmod
    00008e69 XDC_runtime _LoggerCallback_Module_Started_E
    00008ee7 XDC_runtime SysCallback_defaultAbort
    00008e9 GAP_GetParamValue
    00008f25 GATTServApp_RegisterService
    00008f61 ICallPlatform_pwrConfigACAction
    00008f9d NOROM_OSC_HPOSCRelativeFREquencyOffsetGet
    00008fd9 NOROM_RFCSynthPowerDown
    00009015 RF_runCmd
    00009051 Register_SetParameter
    0000908d SensorTagBar_createTask
    000090c9 SensorTagHum_createTask
    00009105 SensorTagIO_RESET
    00009141 SensorTag_createTask
    0000917d VL53L0XI2cWriteRead
    000091b9 WDTInit
    000092e5 GAPBondMgr_LinkEst
    0000931d I2C_init
    0000938d NVS_INIT
    000093c5 PIN_setOutputValue
    000093fd Util_restartClock
    00009435 VL53L0XI2cWrite
    0000946d Watchdog_init
    000094a5 linkDB_NumConns
    000094dd __aeabi_f2iz
    00009515 __aeabi_i2f
    0000954d ti_SysBIOS_family_ARM_cc26xx_Timer_getCurrentTick__E
    000095bb XDC_runtime SysCallback_defaultExit
    000095BD GAPBondMgr_SetParameter
    000095F1 GAP_SetParamValue
    000096f5 iCall_searchServiceEntity
    00009729 IO_SetParameter
    0000975d NOROM_DDI32RegWrite
    00009791 NOROM_OSCHF_SwitchToRcOscTurnOffXosc
    000097c5 PowerCC26XX_isStableXOSC_HF
    0000982d Register_getParameter
    00009861 VL53L0XI2cRead
    000098c9 osal_SNV_read
    000098fd osal_SNV_write
    00009965 __aeabi_f2uiz
    00009999 XDC_runime_LoggerCallback_write4__E
    00009ac7 ti_SysBIOS_family_ARM_cc26xx_Timer_setNextTick__E
    00009b29 ICallPlatform_pwrRegisterNotify
    00009bb9 NOROM_SetupSetAonRtcSubSecInc
    00009be9 NOROM_TRNGConfigure
    00009c19 NVS_OPEN
    00009c49 Power_releaseConstraint
    00009c79 Power_setConstraint
    00009ca9看门狗 CC26XX_setReload
    00009cd9 Watchdog_open
    00009d09 ti_SysBIOS_BIOS_atExitFunc__I
    00009d39 ti_SysBIOS_BIOS_startFunc__I
    00009d69 ti_SysBIOS_family_ARM_cc26xx_Timer_initDevice__I
    00009d99 ti_sysbios_family_arm_cc26xx_Timer_setThreshold___i
    00009dc9 XDC_runtime _LoggerCallback_Object_create_S
    00009df9 XDC_runtime _text_printVisFxn__i
    00009f3d GAPBondMgr_Register
    00009f69 iCall_freeImpl
    00009f69 iCall_heapFree
    0000a071 NOROM_SetupGetTrimForRadcExtCfg
    0000a09d PINCC26XX_setMux
    0000a0c9 PIN_setConfig
    0000a0f5 SafeHapiAuxAdiSelect
    0000a14d ti_SysBIOS_KNL_Clock_getTicksUntilInterrupt__E
    0000a179 utilExtUuid16
    0000a1a5 XDC_Runtime_LoggerCallback_write2__E
    0000a1fb TRNGCC26XX_isParamValid
    0000a225 Util_enqueueMsg
    0000a279 XDC_runtime System_putchar__i
    0000a2a3 GATTServApp_WriteCharCfg
    0000a2cb XDC_runtime_SysCallback_defaultPutch
    0000a2cd iCall_init
    0000a3bd IO_addService
    0000a3e5 NOROM_AONBatMonTemperatureGetDegC
    0000a40d PINCC26XX_getPinCount
    0000a435 PowerCC26XX_switchXOSC_HF
    0000a45d Power_registerNotify
    0000a485 SafeHapiVoid
    0000a4d5 TRNGCC26XX_INIT
    0000a4fd VL53L0XI2cwriteReg
    0000a525 WatchdogCC26XX_convertMsToTicks
    0000a59d ti_SysBIOS_family_ARM_cc26xx_Timer_getMaxTicks__E
    0000a5c5 XDC_runtime_LoggerCallback_write0__E
    0000a5ed XDC_runtime _LoggerCallback_write1__E
    0000a615 List_Put
    0000a63b GAPBondMgr_LinkTerm
    0000a661 I2C_open
    0000a6cd SensorTagRegister_update
    0000a739 __aeabi_ui2f
    0000a75d ti_SYSBIOS_BIOS_registerRTSLock__I
    0000a781 ti_SysBIOS_BIOS_removeRTSLock__i
    0000a80b memcmp
    0000a82d ADC_Init
    0000a84d GATTServApp_InitCharCfg
    0000a90d NOROM_RFCDoorSendto
    0000a92d NOROM_RFCRfTrimRead
    0000a94d NOROM_SetupGetTrimForXoscHfCtl
    0000a96d Power_unregisterNotify
    0000a98d adcIsr
    0000a9cd __aeabi_ui2d
    0000a9ed ti_SysBIOS_BIOS_rtsLock__I
    0000aa0d ti_SYSBIOS_KNL_Clock_stop__E
    0000aa2d XDC_runtime 注册表_findById__E
    0000aa6b PIN_CLOSE
    0000aa89 Power_getTransitionLatency
    0000ab01 GATT_BM_alloc
    0000ab1d GATT_BM_FREE
    0000ab8d NOROM_FlashProgram
    0000aba9 NOROM_FlashSecorErase
    0000abc5 NOROM_OSCClockSourceGet
    0000abe1 NOROM_SetupGetTrimForAmpcompTh2.
    0000abfd NOROM_SetupGetTrimForRcOscLfRtuneCTuneTrim
    0000ac19 NVSCC26XX_getAttrs
    0000ac6d RF_runDirectCmd
    0000ac89 rf_runImmediateCmd
    0000aca5 SensorTagIO_init
    0000ACDD TRNGCC26XX_OPEN
    0000acf9 th3_Clock_stop
    0000ad69 openTRNG
    0000ad85 ti_SysBIOS_family_ARM_cc26xx_Timer_DynamicStudiob__E
    0000adbd XDC_runtime _LoggerCallback_instance_init__E
    0000add9 GATT_Notification
    0000adf3 iCall_enterCImpl
    0000ae27 List_remove
    0000ae41 Util_dequeueMsg
    0000ae75 XDC_runtime System_snprintf___E
    0000ae91 GAPRole_StartDevice
    0000aae9 GAPRole_TerminateConnection
    0000aec1 I2C_Params_init
    0000aed9 ICallPlatform_pwrDispense
    0000aef1 ICallPlatform_pwrRequire
    0000afc9 NOROM_AONRTCCurrentCompareValueGet
    0000afe1 NOROM_ChipInfo_GetPackageType
    0000aff9 NOROM_OSCHF_TurnOnXosc
    0000b011 NOROM_RFCCpeIntGetAndClear
    0000b029 NOROM_SetupGetTrimForAdcShModeEn
    0000b041 NOROM_SetupGetTrimForAdcShVbufEn
    0000b059 NOROM_SetupGetTrimForAmpcompTh1.
    0000b071 NOROM_SetupGetTrimForDblrLoopFilterResetVoltage
    0000b089 NOROM_SetupGetTrimForRcOscLfIBiasTrim
    0000b0a1 NOROM_SetupGetTrimForXoscLfRegulatorAndCwrmirrorRatio
    0000b0b9 NOROM_SysCtrlResetSourceGet
    0000b0b9 ti_sysbios_family_arm_cc26xx_Boot_getBootReasOn__E
    0000b0d1 Power_idleFunc
    0000b101 Register_registerAppCBs
    0000b131 Util_constructQueue
    0000b161 gapRole_clockHandler
    0000b179 _args_main
    0000b191 __aeabi_lmul
    0000b1c1 ti_SysBIOS_BIOS_rtsUnlock___i
    0000b1d9 ti_sysbios_KNL_Swi_or_e_e
    0000b1F1 ti_SYSBIOS_ROM_cortexm_cc26xx_CC26xx_checkRevision___E
    0000b209 AssertHandler
    0000b235 iCall_leaveCSImpl
    0000b261 driverTable_fnSpinlock
    0000b277 ti_SysBIOS_BIOS_exitFunc__I
    0000b28d DevInfo_AddService
    0000b2a1 HCI_EXT_SetTxPowerCmd
    0000b2b5 IO_getParameter
    0000b2c9 io_registerAppCBs
    0000b2dd NOROM_AONRTCCurrent64BitValueGet
    0000b2F1 NOROM_ThisCodeIsBuiltForCC26xxHwRev22AndLater_HaltIf 紫色
    0000b305 RF_PARAMS_INIT
    0000b319 Register_addService
    0000b341 SensorTag_updateAddisingData
    0000b3b9 _nop
    0000b3bb _register_unlock
    0000b3c1 _register_lock
    0000b3cd strlen
    0000b3f5 ti_sysbios_KNL_Clock_dotick__i
    0000b409 wdtCallback
    0000b41d GATTServApp_FindAttr
    0000b42f rf_getCmdOp
    0000b441 XDC_RAuntime_Startup_exec__I
    0000b465 GAPRole_GetParameter
    0000b475 GAP_EndDiscoverable
    0000b485 GATTServApp_ReadCharCfg
    0000b495 ICallPlatform_pwrGetXOSCStartupTime
    0000b4c5 NOROM_AUXADCReadFifo
    0000b4d5 NOROM_RFCRfTrimSet
    0000b4e5 NOROM_SetupGetTrimForXoscHfFastStart
    0000b4f5 NOROM_SetupGetTrimForXoscHfIbiastherm
    0000b505 NVSCC26XX_INIT
    0000b515注册器助手回送
    0000b525 SensorTagRegister_init
    0000b535 Util_isActive
    0000b545看门狗 CC26XX_CLEAR
    0000b555 Watchdog_Params_init
    0000b575 ti_sysbios_family_arm_m3/hwi_post
    0000b575 ti_SYSBIOS_hal_Hwi_HwiProxy_post__E
    0000b575 ti_sysbios_hal_hwi_post _E
    0000b585写入寄存器
    0000b595 XDC_runime_LoggerCallback_Object_GET__S
    0000b5a5 XDC_runtime SysCallback_putch__E
    0000b5a5 XDC_runtime System_SupportProxy_putch__E
    0000b5b5 XDC_runtime SysCallback_ready__E
    0000b5b5 XDC_runtime System_SupportProxy_READY__E
    0000b5c5 XDC_runtime_System_vsnprintf___E
    0000b5d5 GATT_Indication
    0000b5e3 ICallPlatform_pwrGetTransitionState
    0000b5F1 ICallPlatform_pwrIsStableXOSCHF
    0000b637 NOROM_SetupSignExtendVddrTrimValue
    0000b645 NOROM_VIMSModeGet
    0000b653 NVS_WRITE
    0000b661 VL53L0XI2creadReg
    0000b66f _TI_decompress_none
    0000b67d makeuint16.
    0000b6c3 ti_sysbios_family_arm_cc26xx_TimestampProvider_get32__E
    0000b6c3 XDC_runtimestamp_SupportProxy_get32_E__man翻转__
    0000b6dd GAP_MakeDiscoverable
    0000b6e9 GAP_TerminateAuth
    0000b6f5 GAP_UpdateLinkParamReq
    0000b701 GAP_UpdateLinkParamReqReply
    0000b70d GGS_SetParameter
    0000b755 NOROM_CPUcpsid
    0000b761 NOROM_CPUcpsie
    0000b76d Power_getConstraintMask
    0000b779 Power_getDependencyCount
    0000b785 Power_getTransitionState
    0000b7a9 Util_startClock
    0000b7b5 VL53L0XI2cDeselect
    0000b7c1 WDTClose
    0000b7d9 publish_data
    0000b7e5 publish_watersusage_data
    0000b7F1 ti_SysBIOS_BIOS_getThreadType__E
    0000b7fd ti_SysBIOS_KNL_Swi_getTrigger__E
    0000b809 XDC_RAuntime_Startup_reset__I
    0000b815 XDC_Runtime_Startup_rtsDone__E
    0000b821 I2CCC26XX_init
    0000b82b I2C_transfer
    0000b835 ICallPlatform_pwrSwitchXOSCHF
    0000b849 List_empty
    0000b853 NVS_READ
    0000b85d SensorTag_charValueChangeCB
    0000b871 UART_WRITE
    0000b87b Watchdog_clear
    0000b885 Watchdog_Close
    0000b88f Watchdog_setReload
    0000b899 XDC_runtime LoggerCallback_disable__E
    0000b8a3 XDC_runtime LoggerCallback_enable__E
    0000b8ad XDC_Runtime_text_visitRope __I
    0000b8b7 rf_flushCmd
    0000b8bf VL53L0X_setMeasTimingBdget
    0000b8c7看门狗 CC26XX_init
    0000b8ef GGS_AddService
    0000b8f5 I2CCC26XX_CONTROL
    0000b8fb iCall_mallocImpl
    0000b901 NOROM_CPUDELAY
    0000b907 PIN_registerIntCb
    0000b90d 看门狗 CC26XX_CONTROL
    0000b919 __TI_decompress_rle24
    0000b979 ti_sysbios_family_arm_m3/hwi_setFunc__E
    0000b97f Hwip_disable
    0000b983 List_head
    0000b987 List_next
    0000b993 Util_stopClock
    0000b997 ZanConfig_Read
    0000b9a3 publish_watersusing_data2
    0000b9a7 ti_sysbios_family_arm_cc26xx_Timer_getCount64__E
    0000b9ab ti_SysBIOS_KNL_Clock_isActive__E
    0000b9af XDC_runtime LoggerCallback_defaultCreate
    0000b9b3 XDC_runtime SysCallback_defaultReady
    0000b9b7 XDC_runtime System_snprintf_va__F
    0000bb8c XDC_runtime_text_charTab__A
    0000d418 resourceDB
    0000d464 rfDriverTable
    0000d540 XDC_RAuntime_LoggerCallback_Module_Fxns__C
    0000d574 primaryServiceUUID
    0000d576字符 UUID
    0000d578 clientCharCfgUUID
    0000d57a gapServiceUUID
    0000d57c gattServiceUUID
    0000d57e secondaryServiceUUID
    0000d580 includedUUID
    0000d582 charExtPropsUUID
    0000d584 charUserDescUUID
    0000d586 servCharCfgUUID
    0000d588 charFormatUUID
    0000d58a 聚合格式 UUID
    0000d58c deviceNameUUID
    0000d58e appearanceUUID
    0000d590外设 PrivacyFLAG1 UUID
    0000d592 reconnectAddrUUID
    0000d594 Connperi594参数 UUID
    0000d596 serviceChangedUUID
    0000d598 validRangeUUID
    0000d59a extReportRefUUID
    0000d59c reportRefUUID
    0000d5a0 XDC_runtime _启动_sfxnTab__A
    0000d5c8 txPowerTable
    0000d5ef NVS_defaultParams
    0000d5f0 NVSCC26XX_fxnTable
    0000d610 XDC_Runtime_LoggerCallback_Object_DESC__C
    0000d630看门狗 CC26XX_fxnTable
    0000d64c XDC_runime_LoggerCallback_Object_Params__C
    0000d668 I2CCC26XX_fxnTable
    0000d680 I2C_CONFIG
    0000d698 NVS_CONFIG
    0000d6b0安全装置_CONFIG
    0000d6c8 ZanAppPinTable_FSR
    0000d6e0 i2cCC26xxHWAttrs
    0000d70c XDC_Runtime_Startup_sfxnRts__A
    0000d720 ioConfUUID
    0000d730 ioDataUUID
    0000d740 ioServUUID
    0000d790 I2C_defaultParams
    0000d7a0 PowerCC26XX_CONFIG
    0000d7b0 TRNGCC26XX_CONFIG
    0000d7c0 ZanAppPinTable_TOF
    0000d7d0 nvsCC26xxHWAttrs
    0000d7e0 XDC_runtime_text_nodeTAB__A
    0000d7f0 zanConfig_default
    0000d7fe devInfo11073CertUUID
    0000d800 BoardGpioInitTable
    0000d80c ZanAppPinTable_Washcnt
    0000d818 devInfoCBs
    0000d824 Watchdog_defaultParams
    0000d830 ioCBs
    0000d848 trngDriverTable
    0000d854 watchdogCC26XHwAttrs
    0000d860 XDC_runtime 启动_firstFxns__A
    0000d88c ti_SysBIOS_KNL_Idle_funclist__A
    0000d894 txPwrTbl
    0000d89a devInfoFirmwareRevUUID
    0000d89c TRNGCC26XXHWAttrs
    0000d8a4 ti_SysBIOS_KNL_Clock_tickPeriod___C
    0000d8a8 ti_SysBIOS_KNL_Clock_triggerClock___C
    0000d8ac XDC_runtime ILogger_Interface_base__C
    0000d8b0 XDC_runtime 日志_L_info__C
    0000d8b4 XDC_runime_LoggerCallback_Object_count__C
    0000d8b8 xdc_runtime_LoggerCallback_createInstFxn__C
    0000d8bc xdc_runtime_LoggerCallback_outputFxn__C
    0000d8c0 XDC_runtime_Main_Module_loggerFxn2__C
    0000d8c4 XDC_runtime_Main_Module_loggerFxn4__C
    0000d8c8 XDC_runtime_Main_Module_loggerObj__C
    0000d8cc XDC_runtime SysCallback_putchFxn__C
    0000d8d0 XDC_runtime SysCallback_readyFxn__C
    0000d8d4 XDC_runtime System_extendFxn__C
    0000d8d8 XDC_runtime_text_nodeTAB___C
    0000d8dc XDC_Runtime_text_visitRopeFxn__C
    0000d8e0 devInfoHardwareRevUUID
    0000d8e2 devInfoMfrNameUUID
    0000d8e4 devInfoModelNumberUUID
    0000d8e6 devInfoPnpIdUUID
    0000d8e8 devInfoSerialNumberUUID
    0000d8ea devInfoServUUID
    0000d8ec devInfoSoftwareRevUUID
    0000d8ee devInfoSystemIdUUID
    0000d8f2 XDC_runtime 主模块__logger Defined__C
    0000d8f4 XDC_runtime_text_registryModsLastId__C
    0000d8f6 XDC_runtime_text_unnamedModsLastId__C
    0000d8f8 __TI_static_BASE__
    0000dfd4 __TI_Handler_Table_Base
    0000dfdc __TI_CINIT_Base
    0000dfdc __TI_Handler_Table_Limit
    0000e03c _TI_CINIT_LIMIT
    0000e0ea __CHECKSUM_VALUE CommonROM
    0001ffa8 _ccfg
    10014c00 a1_rw
    10014c00 __CHECKSUM_BEGIN_CommonROM
    10014c01 common_rom_base_ADDR
    10014c04 p1_ro
    10014c05 SCALARMUL_INIT
    10014层 SCALARMUL_CORE
    10015019 SCALARMUL_FINAL
    100150e5 SCALARMUL
    10015101 SAVEPOINT
    10015141 GETBIT
    10015155 GETDIGIT
    100151a5 GETDIGITL2R
    10015215可选稳压器
    10015229 ATOMICPATTERNS
    100154f5 JACADD
    1001568d 反转
    10015821 SQUAREMULTIPLYWORD
    1001588c LUTOPCODE
    10015894 LUTOPSIN
    100158ac LUTC
    100158c4 LUTSE
    100158DC LUTINCI
    100158f4 LUTJ
    1001596c LUTSTATE
    100159a9 IMPORTLENGTH
    100159ad IMPORTMODULUS
    100159d1 IMPORTOPERAND
    10015a11 EXPORTOPERAND
    10015a35 IMPORTDATA
    10015a51 SETOPERAND
    10015a6d 副本
    10015a85零
    10015a91 SETWORD
    10015a9d mSET
    10015bcd zSET
    10015bd5 mINVK
    10015d19 zADD
    10015d5d zSUB
    10015de9 zMACC32
    10015e69 zSUB32
    10015eb5 zADD32
    10015f0d zMULT32
    10015f81 MMULT
    10016551 madd
    1001664d mSUB
    10016749输出电流
    10016975 SSP_KeyInit_SW
    10016979 sspAesEncrype_SW
    10016985 sspKeyExpansion 软件
    10016a99 sspAesEncryptKeyExp_SW
    10016af5 sspAesEncryptBasic_SW
    10016b79 RoundKey_SW
    10016c29 AddRoundKeySubBytes_SW
    10016c45 ShiftRows_SW
    10016c79 MixColumns_SW
    10016d05 FFMULT_SW
    10016d29 sspAesDecrypt_SW
    10016da1 InvAddRoundKey_SW
    10016dc9 InvRoundKey_SW
    10016e8d InvSubBytes_SW
    10016ea1 InvShiftRows_SW
    10016ed5 InvMixColumns_SW
    10016f58 FFMult2.
    10017058 FFMult3.
    10017158 RCon
    10017164 SBOX
    10017264 InvSbox
    10017365 SSP_CCM_Auth 软件
    100174fd SSP_CCM_Encrypt_SW
    100175ed SSP_CTR_Encrypt_SW
    1001767d SSP_CCM_Decrype_SW
    10017771 SSP_CTR_Decrype_SW
    10017839 SSP_CCM_InvAuth 软件
    10017895 SSP_CCM_Auth 加密软件
    100178f5 SSP_CCM_InvAuth 解密_SW
    10017959 ecc_allocworkzone
    10017961 ECC_setWin
    10017969 ECDSA_SIGN
    10017b01 ECDSA_verif
    10017dbd eccRom_genKeys
    10017分式 eccRom_genSharedSecret
    10017e39 SHA256_updateW
    10017e75 SHA256_ROUND
    10017ef1 SHA256_nextState
    10017f49 SHA256_saveBuffer
    10017ffd SHA256_init
    10018019 SHA256_Process
    10018089 SHA256_final
    10018129 SHA256_FULL
    100182ad RFHAL_InitRfHal
    10018315 RFHAL_AllocRatChan
    1001833d RFHAL_FreeRatChan
    10018369 RFHAL_MapRatChansToInt
    10018391 RFHAL_RegisterRatChanCallback
    100183b9 RFHAL_InitDataQueue
    100183c5 RFHAL_QueueRFDataEntry
    10018415 RFHAL_AddTxDataEntry
    10018485 RFHAL_FreeNextTxDataEntry
    100184a9 RFHAL_AllocDataEntryQueue
    100184c5 RFHAL_FreeDataEntryQueue
    100184cd RFHAL_GetNextDataEntry
    100184d1 RFHAL_GetTempDataEntry
    100184d5 RFHAL_NextDataEntryDone
    100184f9 RFHAL_AllocDataEntry
    10018549 RFHAL_FreeDataEntry
    10018551 RFHAL_BuildRingBuffer
    100185e1 RFHAL_BuildDataEntryRingBuffer
    10018669 RFHAL_BuildLinkedIn 缓冲器
    10018755 MB_Init
    10018799 MB_EnableInts
    100187f5 MB_DisableInts
    10018825 MB_ClearInts
    10018835 MB_EnableHWInts
    10018865 MB_SendCommand
    100188a5 MB_SendCommandSynch
    10018935 MB_ReadMailboxStatus
    1001893d MB_RegisterIsrBack
    10018945 MB_FwDebugDump
    10018949 mbCmdAckIsr.
    1001895d mbCpe0Isr.
    10018985 mbCpe1等
    100189e5高速高速
    10018a19 AesCM_authEncrypt 软件
    10018a35 Aescm_decrittAuth 软件
    10018a99 AES_encrypt_SW
    10018ac5 AES_Decrype_SW
    10018b09 AesCM_getNumBlocks_SW
    10018b0c NIST_Curve_P256_p
    10018b30 NIST_Curve_P256_r
    10018b54 NIST_Curve_P256_A
    10018b78 NIST_Curve_P256_b
    10018b9c NIST_Curve_P256_GX
    10018bc0 NIST_Curve_P256_Gy
    10018ced __exit
    10018d6c Fill1.
    10019ffc A3_RW
    10019ffd __CHECKSUM_END_CommonROM
    10019ffe A2_RW
    10019ffe P1_RO_2
    10019ffe __CHECKSUM_CommonROM
    1001a001 ti_sysbios_KNL_Mailbox_instance_init__E
    1001a0cd ti_SysBIOS_KNL_Semaphore_pend__E
    1001a199 ti_sysbios_b堆_HeapMem_alloc__E
    1001a25d ti_sysbios_KNL_Task_instance_init__E
    1001a319 ti_sysbios_family_arm_m3/hwi_postInit__i
    1001a3c9 ti_sysbios_family_arm_m3_Hwi_instance_init__E
    1001a469 ti_SysBIOS_family_ARM_cc26xx_Timer_periodicStudiob__E
    1001a4fd ti_sysbios_KNL_Task_instance_finaling__E
    1001a591 ti_sysbios_KNL_Mailbox_post__E
    1001a615 ti_SysBIOS_KNL_Task_postInit___I
    1001a699 ti_sysbios_family_arm_m3/hwi_initNVIC__E
    1001a719 ti_SysBIOS_KNL_Clock_starti__E
    1001a795 ti_sysbios_堆_HeapMem_free__E
    1001a80d ti_SysBIOS_KNL_Clock_WalkQueueDynamic__E
    1001a885 ti_SysBIOS_KNL_Clock_workFunc__E
    1001a8fd ti_sysbios_KNL_Mailbox_pend__E
    1001a96d ti_SysBIOS_KNL_Task_sleep_E
    1001a9dd ti_sysbios_KNL_Mailbox_instance_finaling__E
    1001aa49 ti_sysbios_family_arm_m3/hwi_d调度 C__I
    1001aab1 ti_sysbios_family_arm_m3/Hwi_Object__create__S
    1001ab15 ti_sysbios_family_arm_m3/hwi_create
    1001ab79 ti_sysbios_hal_hwi_create
    1001abdd ti_SysBIOS_KNL_Mailbox_create
    1001ac41 ti_SysBIOS_KNL_Semaphore_post__E
    1001aca5 ti_SysBIOS_KNL_Swi_instance_init__E
    1001ad05 ti_SysBIOS_KNL_Swi_create
    1001ad61 ti_SysBIOS_KNL_Swi_restoreHwi__E
    1001adbd ti_sysbios_KNL_Task_Module_startup___E
    1001ae19 ti_SysBIOS_KNL_Task_create
    1001ae75 ti_sysbios_KNL_Task_startCore__E
    1001aed1 ti_sysbios_family_arm_m3/hwi_instance_finaling__E
    1001af29 ti_sysbios_family_arm_m3/hwi_construct
    1001af81 ti_sysbios_KNL_Mailbox_construct
    1001afd9 ti_sysbios_KNL_Swi_run__i
    1001b031 ti_sysbios_KNL_Swi_schedule__i
    1001b085 ti_SysBIOS_KNL_Swi_construct
    1001b0d5 ti_SysBIOS_KNL_Swi_runLoop __I
    1001b125 ti_SysBIOS_KNL_Task_construct
    1001b175 ti_SysBIOS_KNL_Task_schedule__i
    1001b1c1 ti_sysbios_family_arm_m3/hwi_Module_startup__E
    1001b209 ti_sysbios_b堆_HeapMem_getStats__E
    1001b251 ti_sysbios_KNL_Mailbox_Module_Started__E
    1001b299 ti_SysBIOS_family_ARM_m3/Hwi_disableInterrupt__E
    1001b2dd ti_sysbios_family_arm_m3/hwi_enableInterrupt__E
    1001b321 ti_sysbios_KNL_Swi_post _E
    1001b365 ti_SysBIOS_KNL_Task_allBrokedFunction__I
    1001b3a9 ti_sysbios_KNL_Task_yield __E
    1001b3ed ti_SysBIOS_KNL_Clock_create
    1001b429 ti_SysBIOS_KNL_Task_exit___E
    1001b463 ti_sysbios_gates_GateHwi_instance_init__E
    1001b465 ti_sysbios_family_arm_m3/hwi_getStackInfo__E
    1001b49d ti_sysbios_family_arm_m3/taskSupport_start__E
    1001b4d5 ti_sysbios_b堆_HeapMem_instance_init__E
    1001b50d ti_sysbios_KNL_Clock_instance_init__E
    1001b545 ti_sysbios_b堆_HeapMem_init__i
    1001b579 ti_SysBIOS_KNL_Clock_con构
    1001b5ad ti_SysBIOS_KNL_Semaphore_create
    1001b5e1 ti_sysbios_KNL_Swi_restore__E
    1001b615 ti_SysBIOS_KNL_Task_blockI_E
    1001b649 ti_sysbios_gates_GateMutex_Object__create__S
    1001b679 ti_sysbios_gates_GateMutex_create
    1001b6a9 ti_sysbios_gates_GateMutex_enter__E
    1001b6d9 ti_SysBIOS_KNL_Clock_getTicks__E
    1001b709 ti_SysBIOS_KNL_Semaphore_construct
    1001b739 ti_SysBIOS_KNL_Task_processorVitalTaskFlag__I
    1001b769 ti_SysBIOS_family_ARM_cc26xx_Timer_postInit___I
    1001b795 ti_sysbios_family_arm_cc26xx_Timer_startup___E
    1001b795 ti_sysbios_KNL_Clock_TimerProxy_startup___E
    1001b7c1 ti_sysbios_family_arm_m3/Hwi_Object_GET_S
    1001b7ed ti_sysbios_gates_GateMutex_construct
    1001b819 ti_sysbios_hal_hwi_initStack
    1001b845 ti_sysbios_b堆_HeapMem_Object__create__S
    1001b871 ti_sysbios_b堆_HeapMem_Object_get__S
    1001b89d ti_SysBIOS_KNL_Mailbox_Object__get__S
    1001b8c9 ti_sysbios_KNL_Mailbox_postInit___i
    1001b8f5 ti_SysBIOS_KNL_Queue_construct
    1001b921 ti_SysBIOS_KNL_Queue_create
    1001b94d ti_SysBIOS_KNL_Semaphore_pendTimeout__I
    1001b979 ti_sysbios_KNL_Swi_Object__get__S
    1001b9a5 ti_sysbios_KNL_Task_unblocki__E
    1001b9d1 ti_sysbios_family_arm_cc26xx_TimestampProvider_get64__E
    1001b9d1 XDC_runtimestamp_SupportProxy_get64__E
    1001b9d1 XDC_runtimestamp_get64__E
    1001b9f9 ti_sysbios_hal_hwi_instance_init__E
    1001ba21 ti_SysBIOS_KNL_Clock_addi__E
    1001ba49 ti_sysbios_KNL_Task_restore__E
    1001ba71 ti_sysbios_family_arm_cc26xx_Timer_Module_startup__E
    1001ba95 ti_sysbios_gates_GateHwi_Object__create__S
    1001bab9 ti_sysbios_BIOS_rtsGateProxy_Object__delete_S
    1001bab9 ti_sysbios_gates_GateMutex_Object__delete_S
    1001bab9 ti_sysbios_堆_HeapMem_Module_GateProxy_Object__delete_S
    1001b 添加 ti_SysBIOS_KNL_Clock_Object__delete_S
    1001bb01 ti_SysBIOS_KNL_Semaphore_instance_init__E
    1001bb25 ti_SysBIOS_KNL_Semaphore_Object__delete_S
    1001bb49 ti_sysbios_family_arm_cc26xx_Timer_Module_starpDone__S
    1001bb69 ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_startup__E
    1001bb89 ti_sysbios_family_arm_m3/hwi_Module_starpDone__S
    1001bba9 ti_sysbios_family_arm_m3/Hwi_Object__delete_S
    1001bba9 ti_sysbios_hal_hwi_hwiProxy_Object__delete_s
    1001bbc9 ti_sysbios_family_arm_m3/hwi_examplter_i
    1001bbe9 ti_sysbios_gates_GateHwi_handle_label_S
    1001bbe9 xdc_runtime_System_Module_GateProxe_Handle__label__S
    1001bc09 ti_sysbios_gates_GateHwi_Object__delete_S
    1001bc09 XDC_runtime_System_Module_GateProxy_Object__delete_S
    1001bc29 ti_sysbios_BIOS_rtsGateProxy_handle__label_S
    1001bc29 ti_sysbios_gates_GateMutex_handle__label_S
    1001bc29 ti_sysbios_堆_HeapMem_Module_GateProxe_handle__label_S
    1001bc49 ti_sysbios_gates_GateMutex_Object_析 构 T__S
    1001bc69 ti_sysbios_hal_hwi_Object__delete_s
    1001bc89 ti_sysbios_b堆_HeapMem_handle__label_S
    1001bc89 XDC_runtime_Memory_HeapProxy_handle__label_S
    1001bca9 ti_sysbios_堆_HeapMem_Object__delete_S
    1001bca9 XDC_runtime 内存_HeapProxy_Object__delime_S
    1001bcc9 ti_sysbios_KNL_Clock_Module_startup___E
    1001bce9 ti_SysBIOS_KNL_Clock_Object_析 构函数__S
    1001bd09 ti_sysbios_KNL_Idle_run___E
    1001bd29 ti_sysbios_KNL_Mailbox_Object__delete_S
    1001bd49 ti_SysBIOS_KNL_Queue_Object__delete_S
    1001bd69 ti_sysbios_KNL_Queue_Object__get__S
    1001bd89 ti_SysBIOS_KNL_Semaphore_Object_析 构函数__S
    1001bda9 ti_sysbios_KNL_Swi_Object__delete_S
    1001bdc9 ti_sysbios_KNL_Task_Object__delete_S
    1001bde9 ti_sysbios_KNL_Task_Object__get__S
    1001be09 ti_sysbios_KNL_Task_enter_i
    1001be29 ti_sysbios_KNL_Task_restoreHwi__E
    1001be49 ti_sysbios_hal_hwi_hwiProxy_create
    1001be67 ti_SysBIOS_KNL_Clock_logTick__E
    1001be69 ti_sysbios_family_arm_m3/Hwi_Object_析 构 T__S
    1001be85 ti_sysbios_family_arm_m3/hwi_setPriority __E
    1001bea1 ti_sysbios_gates_GateMutex_instance_init__E
    1001bd ti_sysbios_KNL_Clock_scheduleNextTick__E
    1001bed9 ti_sysbios_KNL_Mailbox_Object__析 构函数__S
    1001bef5 ti_SysBIOS_KNL_Queue_Object_析 构 T__S
    1001bf11 ti_SysBIOS_KNL_Queue_get__E
    1001bf2d ti_sysbios_KNL_Queue_put __E
    1001bf49 ti_SysBIOS_KNL_Swi_Object_析 构函数__S
    1001bf65 ti_SysBIOS_KNL_Task_Object_析 构函数__S
    1001bf81 ti_sysbios_KNL_Task_sleepTimeout__i
    1001bf9b ti_SYSBIOS_KNL_Swi_instance_finaling__E
    1001bf9d ti_sysbios_gates_GateMutex_leave__E
    1001bfb5 ti_sysbios_KNL_Task_unb阻断__E
    1001bfcd ti_SysBIOS_KNL_Clock_instance_finaling__E
    1001bfe3 ti_SysBIOS_KNL_Clock_start__E
    1001bff9 ti_SysBIOS_BIOS_getCpuFreq__E
    1001c00d ti_sysbios_family_arm_m3/hwi_switchFromBootStack__E
    1001c021 ti_sysbios_hal_hwi_Module_startup___E
    1001c035 ti_SysBIOS_BIOS_exit__E
    1001c045 ti_SysBIOS_BIOS_setThreadType__E
    1001c055 ti_SysBIOS_BIOS_start__E
    1001c065 ti_SysBIOS_family_ARM_m3/Hwi_plug__E
    1001c075 ti_SysBIOS_gates_GateMutex_instance_finaling__E
    1001c085 ti_sysbios_hal_hwi_hwiProxy_Object__create__S
    1001c095 ti_SysBIOS_KNL_Clock_TimerProxy_getCurrentTick__E
    1001c0a5 ti_SysBIOS_KNL_Clock_TimerProxy_getMaxTicks__E
    1001c0b5 ti_sysbios_KNL_Clock_TimerProxy_setNextTick__E
    1001c0c5 ti_SysBIOS_KNL_Semaphore_instance_finaling__E
    1001c0d5 ti_SysBIOS_KNL_Swi_disable___E
    1001c0e5 ti_SysBIOS_KNL_Swi_enabled__E
    1001c0f5 ti_SysBIOS_KNL_Task_disable__E
    1001c105 ti_sysbios_b堆_HeapMem_restore__E
    1001c113 ti_SysBIOS_KNL_Queue_empty_E
    1001c121 ti_sysbios_KNL_Queue_remove__e_e
    1001c12f ti_sysbios_family_arm_cc26xx_TimestampProvider_getFreq__E
    1001c12f XDC_runtimestamp_SupportProxy_getFreq__E
    1001c12f XDC_runtimestamp_getFreq__E
    1001c13d ti_sysbios_family_arm_m3/Hwi_Params__init__S
    1001c13d ti_sysbios_hal_hwi_HwiProxy_Params__init__S
    1001c149 ti_sysbios_family_arm_m3/hwi_disableFxn_E
    1001c155 ti_sysbios_family_arm_m3/hwi_enableFxn_E
    1001c161 ti_sysbios_family_arm_m3/TaskSupport_getStackAlignment__E
    1001c16d ti_sysbios_gates_GateHwi_enter__E
    1001c179 ti_sysbios_BIOS_rtsGateProxy_Params__init__S
    1001c179 ti_sysbios_gates_GateMutex_Params__init__S
    1001c179 ti_sysbios_堆_HeapMem_Module_GateProxy_Params__init__S
    1001c185 ti_SysBIOS_KNL_Clock_Params__init__S
    1001c191 ti_SysBIOS_KNL_Clock_getTimerHandle__E
    1001c19d ti_SysBIOS_KNL_Mailbox_Params__init__S
    1001c1a9 ti_SysBIOS_KNL_Queue_dequeue___E
    1001c1b5 ti_SysBIOS_KNL_Queue_enqueue___E
    1001c1c1 ti_SysBIOS_KNL_Semaphore_Params__init__S
    1001c1cd ti_sysbios_KNL_Swi_Params__init__S
    1001c1d9 ti_sysbios_KNL_Task_Params__init__S
    1001c1e5 ti_sysbios_KNL_Task_self_E
    1001c1F1 ti_sysbios_hal_hwi_instance_final__E
    1001c1fb ti_sysbios_family_arm_m3/hwi_doSwiRestore__I
    1001c203 ti_sysbios_family_arm_m3/hwi_startup___E
    1001c20b ti_SysBIOS_KNL_Idle_loop__E
    1001c213 ti_SYSBIOS_family_ARM_m3/Hwi_doTaskRestore__I
    1001c219 ti_SYSBIOS_family_ARM_m3/Hwi_restoreFxn_E
    1001c21f ti_sysbios_gates_GateHwi_leave__E
    1001c22b ti_sysbios_KNL_Queue_instance_init__E
    1001c231 ti_SysBIOS_KNL_Queue_elemClear __E
    1001c237 ti_sysbios_KNL_Swi_Module_startup___E
    1001c23d ti_sysbios_KNL_Swi_startup___E
    1001c243 ti_SysBIOS_KNL_Task_enable__E
    1001c249 ti_SYSBIOS_BIOS_rtsGateProxy_enter__E
    1001c24d ti_SYSBIOS_BIOS_rtsGateProxy_leave__E
    1001c251 ti_sysbios_family_arm_cc26xx_Timer_getExpiredTicks__E
    1001c255 ti_SYSBIOS_family_ARM_cc26xx_Timer_getPeriod__E
    1001c259 ti_sysbios_family_arm_cc26xx_Timer_setPeriod___E
    1001c25d ti_sysbios_family_arm_m3/hwi_delete
    1001c261 ti_sysbios_family_arm_m3/hwi_析 构
    1001c265 ti_sysbios_family_arm_m3/TaskSupport_Module_starpDone__S
    1001c269 ti_sysbios_gates_GateHwi_query__E
    1001c269 XDC_runtime_System_Module_GateProxy_query_E
    1001c26d ti_sysbios_gates_GateMutex_delete
    1001c271 ti_sysbios_gates_GateMutex_析 构
    1001c275 ti_sysbios_BIOS_rtsGateProxy_query_E
    1001c275 ti_sysbios_gates_GateMutex_query__E
    1001c275 ti_sysbios_堆_HeapMem_Module_GateProxy_query_E
    1001c279 ti_sysbios_hal_hwi_HwiProxy_Module_startupDone__S
    1001c27d ti_sysbios_hal_hwi_hwiProxy_delete
    1001c281 ti_sysbios_hal_hwi_hwiProxy_disableInterrupt__E
    1001c281 ti_sysbios_hal_hwi_disableInterrupt__E
    1001c285 ti_sysbios_hal_hwi_hwiProxy_enableInterrupt__E
    1001c285 ti_sysbios_hal_hwi_enableInterrupt__E
    1001c289 ti_sysbios_hal_hwi_HwiProxy_getStackInfo__E
    1001c289 ti_sysbios_hal_hwi_getStackInfo__E
    1001c28d ti_sysbios_hal_hwi_hwiProxy_startup___E
    1001c28d ti_sysbios_hal_hwi_startup___E
    1001c291 ti_SysBIOS_hal_Hwi_HwiProxy_switchFromBootStack__E
    1001c295 ti_sysbios_hal_hwi_delete
    1001c299 ti_sysbios_hal_hwi_switchFromBootStack__E
    1001c29d ti_sysbios_堆_HeapMem_Module_GateProxy_enter_E
    1001c2a1 ti_sysbios_堆_HeapMem_Module_GateProxy_leave__E
    1001c2a5 ti_sysbios_堆_HeapMem_isBlocking__E
    1001c2a9 ti_sysbios_KNL_Clock_TimerProxy_Module_starpDone__S
    1001c2ad ti_SysBIOS_KNL_Clock_TimerProxy_getExpiredTicks__E
    1001c2b1 ti_sysbios_KNL_Clock_TimerProxy_getPeriod___E
    1001c2b5 ti_SysBIOS_KNL_Clock_delete
    1001c2b9 ti_SysBIOS_KNL_Clock_析 构
    1001c2bd ti_SysBIOS_KNL_Clock_removeI_E
    1001c2c1 ti_SysBIOS_KNL_Clock_setTimeout___E
    1001c2c5 ti_sysbios_KNL_Mailbox_delete
    1001c2c9 ti_sysbios_KNL_Mailbox_析 构
    1001c2cd ti_sysbios_KNL_Queue_delete
    1001c2d1 ti_SysBIOS_KNL_Queue_析 构
    1001c2d5 ti_sysbios_KNL_Queue_head_E
    1001c2d9 ti_sysbios_KNL_Queue_next __E
    1001c2dd ti_SysBIOS_KNL_Semaphore_delete
    1001c2e1 ti_SysBIOS_KNL_Semaphore_析 构
    1001c2e5 ti_sysbios_KNL_Swi_delete
    1001c2e9 ti_SysBIOS_KNL_Swi_析 构
    1001c2ed ti_SysBIOS_KNL_Swi_postInit___I
    1001c2F1 ti_sysbios_KNL_Task_SupportProxy_Module_starpDone__S
    1001c2f5 ti_sysbios_KNL_Task_SupportProxy_getStackAlignment__E
    1001c2f9 ti_sysbios_KNL_Task_SupportProxy_start__E
    1001c2fd ti_sysbios_KNL_Task_SupportProxy_swap_e_E
    1001c301 ti_SysBIOS_KNL_Task_delete
    1001c305 ti_SysBIOS_KNL_Task_析 构
    1001c309 ti_SysBIOS_KNL_Task_startup___E
    1001c30d XDC_runtime_Startup_startMods__I
    1001c405 XDC_runtime_Core_CreateObject__I
    1001c487 XDC_runtime_Error_PolicySpin__E
    1001c489 XDC_runtime_Memory_alloc__E
    1001c4f9 xdc_runtime_Core_deleteObject__I
    1001c559 XDC_runtime_Startup_exec__E
    1001c5a9 XDC_runtime_assert_arc__I
    1001c5F1 xdc_runtime_Core_赋 值 Params__I
    1001c639 XDC_runtime_Core_constructObject__I
    1001c681 XDC_runtime_System_atexit__E
    1001c6b9 xdc_runtime_System_processAtExit___E
    1001c6ed XDC_runtime_Core_assignLabel__I
    1001c71d XDC_runtime_text_ordinate_e
    1001c749 XDC_runtime_System_abort__E
    1001c769 XDC_runtime_Error_raiseX__E
    1001c785 XDC_runtime_Memory_valloc__E
    1001c7a1 XDC_runtime_Core_析 构对象__I
    1001c7b9 XDC_runtime_Error_check__E
    1001c7d1 XDC_runtime_System_exit__E
    1001c7e9 xdc_runtime_text_ropeText__E
    1001c801 XDC_runtime_Memory_free_e_E
    1001c811 XDC_Runtime_SysCallback_abort__E
    1001c821 XDC_runtime_SysCallback_exit___E
    1001c831 xdc_runtime_Timestamp_SupportProxy_get32__E
    1001c831 XDC_runtimestamp_get32__E
    1001c841 XDC_runtime_Error_init__E
    1001c84d XDC_runtime_Memory_calloc__E
    1001c859 XDC_runtime_Memory_getMaxDefaultTypeAlign__E
    1001c879 XDC_runtime_Gate_leaveSystem__E
    1001c87f XDC_runtime_System_Module_startup___E
    1001c885 XDC_runtime_Gate_enterSystem__E
    1001c889 XDC_runtime_Memory_HeapProxy_alloc__E
    1001c88d XDC_runtime_Memory_HeapProxy_free__E
    1001c891 XDC_runtime_System_Module_GateProxy_ENTER_E
    1001c895 xdc_runtime_System_Module_GateProxy_leave __E
    1001c899 XDC_runtime_System_abortSpin__E
    1001c89b XDC_runtime_System_exitSpin__E
    1001c89d ti_sysbios_family_arm_m3/hwi_deign__i
    1001c96d ti_sysbios_family_arm_m3/TaskSupport_buildTaskStack
    1001c9b9 ti_sysbios_family_arm_m3/hwi_initStacks__E
    1001ca01 ti_sysbios_family_arm_m3/hwi_exHandlerAsm__I
    1001ca21 ti_sysbios_family_xxx_Hwi_switchAndRunFunc
    1001ca3f ti_sysbios_family_arm_m3/hwi_pendSV__I
    1001ca57 ti_sysbios_family_arm_m3/hwi_return
    1001ca59 ti_sysbios_family_arm_m3_TaskSupport_cUS
    1001ca69 ti_sysbios_family_arm_m3/TaskSupport_swap_e_e
    1001ca71 ti_sysbios_KNL_Task_swapReturn
    1001ca9b ti_sysbios_rom_cortexm_cc26xx_CC26xx_getRevision___E
    20000000 ti_SysBIOS_family_ARM_m3/Hwi_ramVectors
    20000100 ti_SysBIOS_KNL_Task_Module_state__V
    20000144 ti_SysBIOS_family_ARM_m3/Hwi_Module_state__V
    20000178 ti_SysBIOS_KNL_Clock_Module_state__V
    200001a4 ti_sysbios_BIOS_Module_state__V
    200001c8 ti_sysbios_KNL_Swi_Module_state__V
    200001e4 ti_sysbios_family_arm_cc26xx_Timer_Module_state__V
    200001ec ti_sysbios_family_arm_cc26xx_TimestampProvider_Module_state___v
    200001f0 XDC_RAuntime_Startup_Module_state__V
    200001f8 XDC_RAuntime_System_Module_state__V
    20000200 XDC_RAuntime_Memory_Module_state__V
    20000208 gapProfileState
    20000209 self EntityMain
    20000214 SEM
    20000618状态1
    20000619人员_计数
    2000061c 脉冲计数
    2000061e Check_Count
    20000620水_用途
    20000622流速
    20000624 Water usage1.
    20000628状态
    2000062c 规格
    20000630流速
    20000634 FlowRatePerMinute
    20000700缓冲器
    20000d10 linkDBNumConns
    20000e24 gapRoleTask
    20000e74 gapRoleTaskStack
    20001434 PowerCC26XX_MODULE
    20001544 iCall_dischempatcher
    2000154c iCall_enterCriticalSection
    20001550 iCall_leaveCriticalSection
    20001568 HEAPMGR_SIZE
    2000173c rfRegTbl
    2000178c ti_SysBIOS_KNL_Task_Object_Table___V
    200017d8 ti_sysbios_family_arm_cc26xx_Timer_Object__table__V
    20001820 ti_sysbios_gates_GateMutex_Object__table__V
    20001888 ti_SysBIOS_KNL_Swi_Module_State_0_readyQ__A
    200018b8 ti_sysbios_KNL_Swi_Object__table__V
    200018e8 ti_SysBIOS_KNL_Task_Module_State_0_readyQ__A
    20001918用户0Cfg
    20001948 ti_SysBIOS_KNL_Clock_Object__table___V
    20001968 ti_sysbios_family_arm_m3/Hwi_Object_Table__V
    20001980 ti_sysbios_b堆_HeapMem_Object__table__V
    20001998 XDC_runtime LoggerCallback_Object__table__V
    200019a8 _TI_clean_ptr
    200019ac __TI_dptors _ptr
    200019b0 __TI_ENABLE_EXIT_PROFILE_OUTPUT
    200019b4 lastAppOptodeSent
    200019b8 pfnBMAllloc
    200019bc pfnBMFree
    200019d4 _lock
    200019d8 _unlock
    200019e4 ti_sysbios_family_arm_m3/Hwi_Module_root_V
    200019ec ti_sysbios_gates_GateHwi_Module_root__V
    200019f4 ti_sysbios_gates_GateMutex_Module_root__V
    200019fc ti_sysbios_hal_hwi_Module_root__V
    20001a04 ti_sysbios_堆_HeapMem_Module_root__V
    20001a0c ti_SysBIOS_KNL_Clock_Module_root__V
    20001a14 ti_sysbios_KNL_Mailbox_Module_root__V
    20001a1c ti_SysBIOS_KNL_Queue_Module_root__V
    20001a24 ti_SysBIOS_KNL_Semaphore_Module_root__V
    20001a2c ti_sysbios_KNL_Swi_Module_root__V
    20001a34 ti_sysbios_KNL_Task_Module_root__V
    20001a3c xdc_runtime_LoggerCallback_Module_root__V
    20001a44 XDC_runtime 注册表_Module_state__V
    20001a4c appAssertBack
    20001a58 main_func_sp
    20001a5c ti_SysBIOS_family_ARM_m3/Hwi_Module_State_0_excContext __A
    20001a60 ti_sysbios_family_arm_m3/hwi_Module_State_0_exstack__a
    20001a64 ti_SysBIOS_KNL_Task_Module_State_0_idleTask__A
    20001a6a ti_sysbios_family_arm_m3/Hwi_Module_State_0_exACTIVE__A
    20001a70 myCopyBlock
    20002a70 ti_sysbios_堆_HeapMem_instance_State_0_Buf__a
    200030f0 stop_variable
    200030f4 timeout_start_ms
    200030f6 IO_TIMEOUT
    200030fc measuring_timing_budget
    20003104 g_SensorValue
    2000311c SENSOR_DATA
    20003410 write_value
    20003414 gl_SensorValue
    20003418内存
    2000341c 单样品
    20003424存储器
    20003440 Hwi
    20003704 hWDT
    20003708 ti_SYSBIOS_KNL_Task_Instance_State_0_STACK__A
    20003908 PIN_NumPins
    2000399c PIN_HandleTable
    20003a18 i2cCC26xx 对象
    20003af8 ti_sysbios_family_arm_m3/hwi_d调度 表
    20003bc0安全 dogCC26XX 对象
    20003be8 hGpioPin
    20003bec SensorPin
    20003bf0 WashPinHandle
    20003bf4 WashPinState
    20003c00 sSensorPin
    20003c3c zanConfig_active
    20003c5c nvsCC26xx 对象
    20003c60 trngCC26XX 对象
    20003c64 driverlib_release_0_46593
    20003c65 heapStart
    20004028 __stack
    20004028 heapEnd
    20004428 __STACK_END
    20004428 __STACK_TOP
    20004f2c A4_rw
    20004f2c common_RAM_base_ADDR
    20004f40 P2_RW
    20004f40 P2_s0
    20004f40 eccRom_windowSize
    20004f44 eccRom_Workzone
    20004f48 eccRom_param_p
    20004f4c eccRom_param_r
    20004f50 eccRom_param_a
    20004f54解剖刀
    20004f58 inPointX
    20004f5c inPointY
    20004f60 outPointX
    20004f64 outPointY
    20004f68 SCAL
    20004f6c EXPX
    20004f70 Expy
    20004f74 EXPZ
    20004f78 EXPW
    20004f7c ACCX
    20004f80 ACCY
    20004f84 ACCZ
    20004f88 TMP1
    20004f8c TMP2
    20004f90 TMP3
    20004f94 TMP4
    20004f98 TMP5
    20004f9c TMP6
    20004fa0 eccRom_param_gx
    20004fa4 eccRom_param_Gy
    20004fa8 eccRom_param_b
    20004f2 P2_zi
    20004fanratchanInfo
    20004fcc fwInfoCmd
    20004fd8 MSBMOD
    20004fdc aux64
    20004fe4 MOD
    20004fe8 LEN
    20004ffc pSspAesEncrypt_SW
    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 Hwip_restore
    UNDEFED SHT$$INIT_RAGE$$Base
    UNDEFED SHT$$INIT_ARRAGE$$LIMIT
    undefED 毫克
    UNDEFED ti_SYSBIOS_BIOS_rtsGateProxy_handle__label_S__man翻转_
    UNDEFED ti_SysBIOS_BIOS_rtsGateProxy_Object__delete __S__man翻转__
    UNDEFED ti_SYSBIOS_BIOS_rtsGateProxy_Params__init_S__s_man翻转_
    UNDEFED ti_SYSBIOS_BIOS_rtsGateProxy_query_E__man翻转 了__
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_Module_startupDone__S__man翻转__
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_Object__delete _S__man翻转_
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_Params__init__S__man翻转__
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_disableInterrupt__E__man翻转__
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_enableInterrupt_E__man翻转_
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_getStackInfo_E__man翻转_
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_startup_E__man翻转_
    UNDEFED ti_SYSBIOS_hal_Hwi_HwiProxy_switchFromBootStack_E___manifed__
    UNDEFED ti_SYSBIOS_hal_Hwi_disableInterrupt__E
    UNDEFED ti_SYSBIOS_hal_Hwi_enableInterrupt__E
    UNDEFED ti_SYSBIOS_hal_Hwi_getStackInfo__E
    UNDEFED ti_SYSBIOS_hal_Hwi_startup___E
    UNDEFED ti_SYSBIOS_hal_Hwi_switchFromBootStack__E
    UNDEFED ti_SYSBIOS_b堆_HeapMem_Module_GateProxe_Handle__label_S__man翻转_
    UNDEFED ti_SYSBIOS_b堆_HeapMem_Module_GateProxy_Object__delete _S__man翻转_
    UNDEFED ti_SYSBIOS_b堆_HeapMem_Module_GateProxy_Params__init_S__s__man翻转_
    UNDEFED ti_SYSBIOS_b堆_HeapMem_Module_GateProxy_query_E__man翻转_
    UNDEFED ti_SysBIOS_KNL_Clock_TimerProxy_Module_startupDone__S__man翻转__
    UNDEFED ti_SYSBIOS_KNL_Clock_TimerProxy_startup_E__man翻转_
    UNDEFED ti_SysBIOS_KNL_Task_SupportProxy_Module_startupDone__S____man翻转__
    UNDEFED ti_SYSBIOS_KNL_Task_SupportProxy_getStackAlignment__E__man翻转__
    UNDEFED ti_SYSBIOS_KNL_Task_SupportProxy_start_E__man翻转__
    UNDEFED ti_SYSBIOS_KNL_Task_SupportProxy_swap_E__man翻转__
    UNDEFED XDC_RAUNTIME_Main_Module_GateProxy_Handle__label_S
    UNDEFED XDC_RAUNTIME_Main_Module_GateProxy_Object_Delete_S
    UNDEFED XDC_RAUNTIME_Main_Module_GateProxy_query_E
    UNDEFED XDC_RAUNTIME_Memory_HeapProxy_Handle__label_S__man翻转_
    UNDEFED XDC_RAUNTIME_Memory_HeapProxy_Object__delete _S__man翻转_
    UNDEFED XDC_RAUNTIME_System_Module_GateProxe_Handle__label_S__man翻转_
    UNDEFED XDC_RAUNTIME_System_Module_GateProxy_Object__delete _S__man翻转_
    UNDEFED XDC_RAUNTIME_System_Module_GateProxy_query_E__man翻转_
    UNDEFED XDC_RAUNTIME_System_SupportProxy_abort__E
    UNDEFED XDC_RAUNTIME_System_SupportProxy_exit__E
    UNDEFED XDC_RAUNTIME_Timestamp_SupportProxy_get64_E__man翻转_
    UNDEFED XDC_RAUNTIME_Timestamp_SupportProxy_getFreq_E__man翻转_
    UNDEFED XDC_RAUNTIME_Timestamp_get32__E
    UNDEFED XDC_RAUNTIME_Timestamp_get64__E
    UNDEFED XDC_RAUNTIME_Timestamp_getFreq__E

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

    显示为 HWAttrs 的内容似乎是 NVS 区域索引的枚举,这些枚举将传递给 NVS_open()。

    我也看不到在5287.CC2650_LAUNCHXL.c 文件中的任何位置定义的实际 NVS_HWAttrs 数组。

    但是、假设您在某个位置定义了有效的 NVS_HWAttrs 和 NVS_Config 结构、则显示的一个 NVS 区域枚举名称"CC2650_LAUNCHXL_NVS1F000"会提示存在潜在问题。 NVS 驱动程序无法安全地使用从0x1f000开始的闪存的最后一页、因为该页的任何擦除操作都会擦除位于0x1ffa8位置的 CCFG 对象的内容。 这将导致在擦除操作之后(并且有可能在擦除操作期间)完全未定义的行为。 最后一个可安全使用的4K 闪存页从0x1e000开始。

    Alan