This thread has been locked.

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

[参考译文] CCS/CC2640R2F: ROV服务器异常:"目标内存读取失败",程序按预期运行。

Guru**** 2595805 points
Other Parts Discussed in Thread: CC2640R2F, CC2640

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

https://e2e.ti.com/support/tools/code-composer-studio-group/ccs/f/code-composer-studio-forum/622280/ccs-cc2640r2f-rov-server-exception-target-memory-read-failed-the-program-behaves-as-expected

部件号:CC2640R2F
主题中讨论的其他部件: BLE堆栈CC2640

工具/软件:Code Composer Studio

该平台是CC2640R2F的自定义设计。 程序是simple外围设备。

iCall.c中的第554行

任务= Task_create_(iCall_taskEntry,参数(&P),空);

ROV停止以显示任务和报告

从ROV服务器收到异常:
目标内存读取失败,地址为0x2.0001万f38,长度为76
根据应用程序的分区映射,此读取位于无效地址。 应用程序要么是单一化的,要么是损坏的。


程序按预期工作,内存浏览器在0x2.0001万f38处不显示任何异常。 ROV服务器出现异常的原因是什么?如何修复?

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

    您使用的是什么版本的TI-RTOS和CCS?

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

    您好,

    很抱歉回复太晚:

    CCS:7.2 .0.0.0013万

    Simplelink cc2640r2 SDK:1.40 .00.45

    SYS/BIOS:6.51 .00.15

    当您要求TI-RTOS版本时,是否参考SYS/BIOS (又称TI-RTOS内核版本)? 否则我找不到它的版本(如果我正确理解它,它会完全包含在Simplelink SDK中)。

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。
    阿斯洛夫,
    该内存地址是否在内存映射中? 它属于哪一部分? 如果查看地图文件,应该能够判断该地址上是否有任何对象。 您也可以发布地图文件,它可能包含一些提示。
  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    我阅读了BLE-Stack用户指南中有关内存管理的部分,但无法完全掌握内容。

    什么是地图文件? 它是否是我正在使用的示例simple_peripheral项目的tools目录中的两个文件(cc26xx_app.cmd和app_ble.cfg)之一?

    我怀疑它是cc26xx_app.cmd,它是:

    /*******************************************************************************
    *内存大小
    */
    #define flash_base 0x0万
    #define gpRAM_base 0x1100万
    #define RAM_BASE 0x2000万
    #define ROM_BASE 0x********000#ifdef
    
    CC26X0ROM
    #define flash_size 0x2万
    #define GPRAM_size 0x0.2万
    #define RAM_size 0x0.5万
    #define ROM_size 0x0001C000
    #endif /* CC26X0ROM */ 1万***************************************************************
    
    
    *内存定义
    ****************************************************************************** //***********************************************************************************************
    
    
    * RAM
    */
    
    #ifdef CC26X0ROM
    #IF CC26X0ROM ==2.
    #define reserved_RAM_size 0x0万C00
    #Elif CC26X0ROM ==1.
    #define reserved_RAM_size 0x0.0718万
    #endif /* CC26X0ROM */
    #endif /* CC26X0ROM */
    
    #define RAM_start RAM_BASE
    
    #ifdef ICALL_ram0_start
    #define RAM_END (iCall_ram0_start - 1)
    #else
    #define RAM_END (RAM_START + RAM_SIZE - RESORT_RAM_SIZE - 1)
    #endif /* ICALL_RAM0_START */
    
    *******************************************************************************
    * Flash
    */
    
    #define flash_start FLASH_BASE
    #define WORD_SIZE 4
    
    #ifdef CC26X0ROM
    #define page_size 0x1000
    #endif /* CC26X0ROM */
    
    #ifdef page_align
    #define flash_MEM_align Page_size
    #else
    #define flash_MEM_align word_size
    #endif /* page_align*/
    
    #ifdef CC26X0ROM
    #define page_mask 0xFFFFF000
    #endif /* CC26X0ROM */
    
    /*为应用程序保留最后一个Flash页。 */
    #define NUM_RESORT_FLASH_Pages 1
    #define reserved_flash_size (num_reserved_flash_pages* page_size)
    
    /*检查是否需要使用堆栈图像对页。 如果是,请勿将
    *链接到堆栈共享的页面。
    */
    #ifdef ICALL_STACK0_START
    #ifdef PAGE_ALIGN
    #define ADJ_ICALL_STACK0_START (ICALL_STACK0_START * PAGE_MASK)
    #else
    #define ADJ_ICALL_STACK0_START ICALL_STACK0_START
    #endif /* page_align */
    
    #define flash_end (ADJ_ICALL_STACK0_START - 1)
    #else
    #define flash_end (flash_start + flash_size - reserved_flash_size - 1)
    #endif /* ICALL_STACK0_start */
    
    #define flash_last_page_start (FLASH_SIZE - PAGE_SIZE)
    
    /***************************************************************************************
    *堆栈
    */*
    
    创建指向堆栈顶部的全局常量*//*
    CCS:在项目属性*/
    __stack_top =__stack +__stack_size;
    
    /***************************************************************下更改堆栈大小
    * GPRAM
    */
    
    #ifdef cache_a_RAM
    #define GPRAM_START GPRAM_BASE
    #define GPRAM_END (GPRAM_START + GPRAM_SIZE - 1)
    #endif /* cache_a_RAM */
    
    ***************************************************************
    *主要参数
    *//*
    
    允许main()采用args */*--args
    0x8*/***************************************************************
    
    
    * ROV
    * ROV2使用这些符号来扩展设备上的有效内存区域。
    *如果没有这些定义,ROV在使用
    *自动调整大小的堆时将遇到Java异常。 这是针对
    * RTSC/RTA的已知限制发布的变通办法。 请参阅: bugs.eclipse.org/.../show_bug.cgi
    *
    *注意:这些不会影响RAM或闪存中的位置,它们仅
    由ROV2使用*,请参阅BLE堆栈用户指南了解有关ROV
    Classic **
    
    **/
    __unused_SRAM_start__= 0x2000万;
    __unused_SRAM_end__= 0x2000.5万;
    
    __unused_Flash_start__= 0;
    __unused_flash_end__= 0x1FFFFFF;
    
    /***********************************************************************
    *系统内存映射
    ********************************************************************** /
    内存
    {/*
    编辑器的注释:
    *通过在
    
    *属性->ARM链接程序->Advanced Options->Command File Preprocessing中定义* ICALL_STACK0_START或ICALL_RAM0_START,可以更改闪存和SRAM长度。
    */*
    
    存储在内部闪存中并从内部闪存*/
    闪存(RX)执行的应用程序:origin = flash_start,length =(flash_end - flash_start + 1)
    
    /* CCFG页面,包含.ccfg代码段和一些应用程序代码。 */
    flash_last_page (RX):origin = flash_last_page_start,length = page_size
    
    /*应用程序使用内部RAM存储数据*/
    SRAM (rwx):origin = RAM_start,length =(RAM_END - RAM_START +1)
    
    #ifdef cache_AS_RAM)
    GPRAM(rwx):Origin = GPRAM_START,length = GPRAM_SIZE
    #endif /* cache_a_RAM */
    }/***************************************************************
    
    
    *内存组编配
    /
    节
    {
    .intvecs. :> flash_start
    .text :>> flash | flash_last_page
    .const :>> flash | flash_last_page.constdata
    :>> FLASH | FLASH_LASH_PAGE
    .RODATA :>> flash | flash_last_page
    .cinit :> flash | flash_last_page
    .Pinit :>> flash | flash_last_page
    .init_array :> FLASH | FLASH_LASH_PAGE
    .EMM_TEXT :>> flash | flash_last_page
    .snvSecors :>闪存(高)
    .ccfg. :> flash_last_page (高)
    
    组> SRAM
    {
    数据
    #ifndef cache_a_ram
    BSS
    #endif /* cache_a_ram */
    .vtable
    .vtable_ram
    vtable_ram
    sysmem
    nonretenvar
    /*如果此处不放置l.o对象,则此选项会将l.o对象保留在GPRAM之外
    警告#1.0068万已被按下。*/
    #ifdef cache_a_ram
    LL_BSS
    {
    --library=cc2640_ll_*.a<l.o>(.bss)
    }
    #endif /* cache_a_ram */
    } load_end (heapStart)
    
    .stack :> SRAM (高) load_start (heapEnd)
    
    #ifdef cache_a_ram
    
    bss:
    {
    *(.BSS)
    } > GPRAM
    #endif /* cache_a_ram */
    }
    

    tools/app_ble.cfg导入的common/cc26xx/kernel/cc2640/config/ble_stack_heap.cfg文件的内容:

    /*堆配置定义要用于系统的堆类型(应用程序+堆栈)
    *只分配一个堆缓冲区。 此堆将由系统和堆栈通过一个管理器(HeapMem,HeapMem+HeapTrack或OSAL)共享
    *如果需要,您仍可以决定创建多个堆,但至少需要创建一个堆。
    *堆栈必须有一个要运行的堆。
    *可用的不同堆管理器有:
    * OSAL堆:随所有BLE SDK提供的旧堆管理器。 缺省情况下,使用此堆管理器。
    * HeapMem: TI-RTOS提供的堆管理器(有关属性,请参阅TI-RTOS用户指南)
    * HeapTrack:HeapMem顶部的模块,允许轻松调试通过HeapMem分配的内存。
    
    *通过将HEAPMGR_CONFIG设置为相应的值(见下文)
    来选择要使用的堆管理器* 0 = osal堆管理器,大小是静态的。
    *0x80 = osal堆管理器,带有auto-size:剩余的RAM (系统未使用)将完全分配给堆。
    * 1 =具有静态大小
    的HeapMem * 0x81 =具有自动大小的HeapMem。 剩余的RAM (系统未使用)将完全分配给堆。
    *2=具有固定大小
    的HeapTrack (具有HeapMem)*0x82=具有自动大小的HeapTrack (具有HeapMem):剩余的RAM (不被系统使用)将完全分配给堆。
    *
    **如果未定义HEAPMGR_CONFIG,但使用了配置文件ble_stack_heap.cfg,则假定值HEAPMGR_CONFIG = 0x80。
    *如果未定义HEAPMGR_CONFIG且未使用文件ble_stack_heap.cfg,则假定值HEAPMGR_CONFIG = 0x80,默认堆大小将为3072*
    ,除非您在项目选项中将HEAPMGR_SIZE定义为不同的值(0表示自动大小)。
    *
    **根据下面的配置,将创建两个#define,应用程序将使用它来设置堆:
    *#define HEAPMGR_SIZE
    *#define HEAPMGR_CONFIG
    *要使用这些define,需要添加以下include行: #include <XDC/cfg/globL.h>
    *
    *要使自动大小堆正常工作,链接器需要创建以下符号:
    * heapStart
    * heapEnd
    *
    */*
    免责声明:ROM中的HeapMem模块只能使用GateMutex模块。 这意味着malloc()函数不能在Hwi/Swi中使用。
    这也意味着对堆的其他访问(例如使用iCall_alloc)可能会中断堆...
    因此,当TI-RTOS位于闪存中时,此解决方案最有效,以便可以使用GateHwi。
    如果您尝试在ROM中使用它,则使用HeapCallback解决方法,这将降低性能。 */
    var Memory = xdc.useModule('xdc.runtime.Memory');
    var HEAPMGR_config = 0x80;
    var HEAPMGR_SIZE = 0x00;//仅在使用静态大小时有效。 这是分配给堆的缓冲区的大小。
    
    如果(typeof HEAPMGR_config =='undefined')
    {
    var HEAPMGR_config = 0x80;
    }//
    
    将创建#define HEAPMGR_config。 然后可由以下项使用:include <XDC/cfg/global.h>
    Program.global.HEAPMGR_config = HEAPMGR_config;
    
    if (typeof HEAPMGR_config !='undefined'&&(HEAPMGR_config ==1|| HEAPMGR_config == 0x81)
    ){
    IF (typeof NO_ROM_=='0和<INefinued'='ROM='0
    
    VAR HeapMem = xdc.useModule('ti.sysbios.heaps.HeapMem');
    var heapMemParams =新的HeapMem.Params();
    
    如果(类型HEAPMGR_CONFIG =='UNDEFINITE'||(类型HEAPMGR_CONFIG !='UNDEFINITE'&& HEAPMGR_CONFIG == 0x1)))
    {
    heapMemParams.size = HEAPMGR_SIZE;
    program.global_HEAPMGR_SIZE = HEAPMGR_SIZE;
    }
    否则
    {
    //如果下面的符号有未定义的错误,则表示应用程序中已定义了AUTOHEAPSIZE。
    //
    program.global_HEAPMGR_SIZE = 0;
    heapMemParams.usePrimaryHeap =正确;
    HeapMem.primaryHeapBaseAddr ="&heapStart";
    HeapMem.primaryHeapEndAddr ="&heapEnd";
    }
    
    program.globe.stackHeap = heapMem.creation(heapMemParams);
    
    VAR HeapCallback = xdc.useModule('ti.sysbios.heaps.HeapCallback');
    var params = new HeapCallback.Params();
    Params.arg = 1;
    program.global.heap0 = HeapCallback.creation(params);
    HeapCallback.initInstFxn ='&myHeapMemInitFxn'; // BIOS启动时首先呼叫。 初始化堆管理器。
    HeapCallback.allocInstFxn ='&myHeapMemAllocFxn'; //调用分配缓冲区
    HeapCallback.freeInstFxn ='&myHeapMemFreeFxn'; //调用释放缓冲区
    HeapCallback.getStatsInstFxn ='&myHeapMemGetStatsFxn'; //返回堆上的统计信息。
    HeapCallback.isBlockingInstFxn ='&myHeapMemIsBlockingFxn';//返回true:此堆始终阻塞('Hwi Gate' like )
    Memory.defaultHeapInstance = Program.globe.heap0;
    }
    其他
    {
    VAR HeapMem = xdc.useModule('ti.sysbios.heaps.HeapMem');
    var heapMemParams =新的HeapMem.Params();
    
    如果(类型HEAPMGR_CONFIG =='UNDEFINITE'||(类型HEAPMGR_CONFIG !='UNDEFINITE'&& HEAPMGR_CONFIG == 0x1)))
    {
    heapMemParams.size = HEAPMGR_SIZE;
    program.global_HEAPMGR_SIZE = HEAPMGR_SIZE;
    }
    否则
    {
    //如果下面的符号有未定义的错误,则表示应用程序中已定义了AUTOHEAPSIZE。
    program.global_HEAPMGR_SIZE = 0;
    heapMemParams.usePrimaryHeap =正确;
    HeapMem.primaryHeapBaseAddr ="&heapStart";
    HeapMem.primaryHeapEndAddr ="&heapEnd";
    }
    program.globe.stackHeap = heapMem.creation(heapMemParams);
    VAR GateHwi = xdc.useModule('ti.sysbios.gates.GateHwi');
    HeapMem.common$.gate = GateHwi.create();
    Memory.defaultHeapInstance = Program.global.stackHeap;
    }
    
    else if (typeof HEAPMGR_config !='undefined'&&( HEAPMGR_config ==2|| HEAPMGR_config == 0x82))
    {
    IF (typeof no_rom =='undefined'||(typeof no_ROM!='undefined'&&&&no_ROM=0){= 0)
    
    //正在使用ROM。
    VAR HeapMem = xdc.useModule('ti.sysbios.heaps.HeapMem');
    var heapMemParams =新的HeapMem.Params();
    如果(类型HEAPMGR_CONFIG =='未定义'||(类型HEAPMGR_CONFIG !='未定义'&& HEAPMGR_CONFIG ==2))
    {
    heapMemParams.size = HEAPMGR_SIZE;
    program.global_HEAPMGR_SIZE = HEAPMGR_SIZE;
    }
    否则
    {
    //如果下面的符号有未定义的错误,则表示应用程序中已定义了AUTOHEAPSIZE。
    //
    heapMemParams.usePrimaryHeap =正确;
    HeapMem.primaryHeapBaseAddr ="&heapStart";
    HeapMem.primaryHeapEndAddr ="&heapEnd";
    program.global_HEAPMGR_SIZE = 0;
    }
    
    var tempHeap = HeapMem.creation(heapMemParams);
    
    VAR HeapTrack = xdc.useModule('ti.sysbios.heaps.HeapTrack');
    var heapTrackParams =新的HeapTrack.Params();
    heapTrackParams.heap = tempheap;
    program.globe.stackHeap = HeapTrack.creation(heapTrackParams)
    
    VAR HeapCallback = xdc.useModule('ti.sysbios.heaps.HeapCallback');
    var params = new HeapCallback.Params();
    Params.arg = 1;
    program.global.heap0 = HeapCallback.creation(params);
    HeapCallback.initInstFxn ='&myHeapTrackInitFxn'; // BIOS启动时首先呼叫。 初始化堆管理器。
    HeapCallback.allocInstFxn ='&myHeapTrackAlocFxn'; //调用分配缓冲区
    HeapCallback.freeInstFxn ='&myHeapTrackFreeFxn'; //调用释放缓冲区
    HeapCallback.getStatsInstFxn ='&myHeapTrackGetStatsFxn'; //返回堆上的统计信息。
    HeapCallback.isBlockingInstFxn ='&myHeapTrackIsBlockingFxn';//返回true:此堆始终阻塞('Hwi Gate' like )
    Memory.defaultHeapInstance = Program.globe.heap0;
    }
    其他
    {
    VAR HeapMem = xdc.useModule('ti.sysbios.heaps.HeapMem');
    var heapMemParams =新的HeapMem.Params();
    如果(类型HEAPMGR_CONFIG =='未定义'||(类型HEAPMGR_CONFIG !='未定义'&& HEAPMGR_CONFIG ==2))
    {
    heapMemParams.size = HEAPMGR_SIZE;
    program.global_HEAPMGR_SIZE = HEAPMGR_SIZE;
    }
    否则
    {
    //如果下面的符号有未定义的错误,则表示应用程序中已定义了AUTOHEAPSIZE。
    //
    heapMemParams.usePrimaryHeap =正确;
    HeapMem.primaryHeapBaseAddr ="&heapStart";
    HeapMem.primaryHeapEndAddr ="&heapEnd";
    program.global_HEAPMGR_SIZE = 0;
    }
    
    var tempHeap = HeapMem.creation(heapMemParams);
    
    VAR GateHwi = xdc.useModule('ti.sysbios.gates.GateHwi');
    HeapMem.common$.gate = GateHwi.create();
    
    VAR HeapTrack = xdc.useModule('ti.sysbios.heaps.HeapTrack');
    var heapTrackParams =新的HeapTrack.Params();
    heapTrackParams.heap = tempheap;
    program.globe.stackHeap = HeapTrack.creation(heapTrackParams)
    Memory.defaultHeapInstance = Program.global.stackHeap;
    }
    
    else if (typeof HEAPMGR_config !='undefined'&&(HEAPMGR_config ==0|| HEAPMGR_config == 0x80)
    {
    
    var HeapCallback = xdc.useModule('ti.sysbios.heaps.HeapCallback');
    var params = new HeapCallback.Params();
    params.args=1;
    Program.Parapparams=
    HeapCallback.initInstFxn // BIOS启动时首先呼叫。 初始化堆管理器。
    HeapCallback.allocInstFxn ='&osalHeapAllocFxn'; //调用分配缓冲区
    HeapCallback.freeInstFxn ='&osalHeapFreeFxn'; //调用释放缓冲
    区HeapCallback.getStatsInstFxn ='&osalHeapGetStatsFxn'; //返回堆上的统计信息。
    HeapCallback.isBlockingInstFxn ='&osalHeapIsBlockingFxn';//返回true:此堆始终阻塞('Hwi Gate' like )
    //HeapCallback.createFxn ='&osalHeapCreateFxn'; //不支持
    //HeapCallback.deleteInstFxn ='&osalHeapDeleteFxn'; //不支持
    Memory.defaultHeapInstance = Program.global.heap0;
    
    if (typeof HEAPMGR_config =='undefined'||(typeof HEAPMGR_config !='undefined'&& HEAPMGR_config ==0)).
    
    //以下定义将创建#define HEAPMGR_SIZE,
    //堆栈使用它来获取有关堆管理器大小的信息。
    //如果设置为0,则表示自动调整堆大小
    program.global_HEAPMGR_SIZE = HEAPMGR_SIZE
    ;}
    其他
    {
    //以下定义将创建#define HEAPMGR_SIZE,
    //堆栈用于获取有关堆管理器大小的信息。
    //如果设置为0,则表示自动调整堆大小
    //堆缓冲区将通过使用构建/链接末尾的所有可用重置RAM自动创建。
    //为此,需要通过链接器文件创建2符号:heapStart和heapEnd
    program.global_HEAPMGR_size = 0;
    }
    }
    
    

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。
    在项目的Debug或Release目录中有一个扩展名为.map的文件。 该文件将包含所有符号的地址和书帖布局。 我可以从您的.cmd文件中看到相关地址可能在RAM中,但我需要查看.map才能确定。
    是否可以逐步调试Task_create,以及是否已将该地址分配给任务指向的对象中的任何字段?
  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    代码已有所更改,并且它失败的地址不是“0x2.0001万f24”。

    我现在将尝试执行Task_create代码。

    *****************
    TI ARM链接器PC v 16.9 Tm3.
    *****************
    >> 2017年9月12日链接15:24:16
    
    输出文件名:<simile_peripheral_cc2640r2lp_app.out>
    入口点符号:"ResetISR"地址:0000a509
    
    
    内存配置
    
    名称 原点长度 已使用 未使用的属性填充
    --------------------------- ----------------- ------------------- ----------------- ----------------- --------
    闪存 0万 0001f000 0000ef560万0ef56 000100aa5600.01万aa R X
    flash_last_page 0001f000 000010000万01000 000000580.1万 00000058 00000fa800000058 00000fa8 R00000 R X
    SRAM 20万00 000044000万04400 000021ee44亿ee 0.2212万 rw X
    
    
    段分配映射
    
    运行源站负载源站长度初始化长度属性成员
    ----------- -------- -------- -------- ——— ---------
    0万00 00000000df5c0万00000df5c 0000df5c0万 0000df5c r-x0000 r-x
    0万00 000000000000003c0万000000000003c 0000003c0万 0000003c r--0.0003万 r--.ecresets0.0003万.ecresets
    0.0003万c 00000fc4 00000fc4400000fc4 r-x .text.100.001万
    0000100.001万 0000100.0028万 r--.const:ti_SysBIOS_堆 叠_HeapMem_Module__Fx000fc_00000000000000001020
    
    
    
    00000000000010b0
    000010b00.001万b0 00000020000000020 r--.const:ti_SysBIOS_Gates_GateMutex_Object__DESC__C
    000010d0 000010d00000010d0 000010b00.001万b0 00000020000000020 r--.const:ti_SysBIOS_Gates_GateMutex_Object__C 0000101150_C 00001010000101_
    
    
    
    邮箱0.101万00010000_ Sys000010000201万 Sys00001000020 sys0000200.001万 sys000020锥0.002万锥0000s_0000200000s_ sys_0000 sys_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_
    
    0.0011万b0
    000011b00.0011万b0 00000020000000020 r--.const:ti_SysBIOS_KNL_Swi_Object__DESC__C
    0.0011万d0 000011d0000200000011d000020 000000200.002万 00000020 r--00000020 r--.const:ti_SysBIOS_KNL_Swi_Object__DESC 000011d0_C 000011d0 000011d00000011d0 000011d00.0011万d0 000011d00000011d0 0000100001_00000100001_
    
    
    光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_通道_光纤_光纤
    _光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_光纤_通道
    
    圆锥形:ti_SysBIOS_family_arm_m3_Hwi_Object__C
    0000120c 0万04 000000040.4万00004 r--0.0004万 r--.const:ti_SysBIOS_family_arm_m3_Hwi_Object__table__C
    0.0012万10 0000000000041万000000004 rb3-000000044亿 rb3-00000004 rupt_000030.0004万 rupt_00003 0000000400003 00000004 r_00000004 r_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_ s_
    
    
    
    
    
    文
    
    
    
    
    中:ti_SysBIOS_堆 叠_HeapMem_E_MEMORY__C 0.0122万c 0万04 000000040.4万00004 r--0.0004万 r--.const:ti_SysBIOS_stocks_HeapMem_Module__1244 Obj__C 0.0012万30 000000043万00004 r--.sys000000040.0004万 r--.sys00000004:00000004:ti_count bios_000034_heapm__00004文00004文
    堆_000034_000034_00000004文000034文_00000004_文_文堆_00000004文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_文_
    
    0.0124万c
    0.0004万 r--.const:ti_0000BIOS_KNL_Queue_Object__COUNT_C
    0.0012万50 000012505万01250 0000000412.5亿04 000000040.4万00004 r--0.0004万 r--.const:ti_0000BIOS_Queue_Queue_Object__C00001250 000012500.0012万 00001250 000000045万 00000004 0000000412.5亿 00000004 r--0.4万 r-- SysBIOS_KNL_Queue_Queue_Object_000000040.0004万 SysBIOS_KNL_Queue_Queue_Object_00000004
    
    
    
    安全0.0004万安全_ 0.0004万
    
    堆
    _C 0000126c 0000126c 0万04 000000040.4万00004 r--0.0004万 r--.const:ti_SysBIOS_KNL_Task_Object__table__C
    0.0012万700000127000000004 r--70万 r--.const12.7万.const:0.0004万:ti_SysBIOS_KNL_ccL_Task_0.128万_C 0.127万_C 0.127万_C00000004堆0.0004万堆_0.1278万_C_
    
    
    
    
    
    0.0012万86
    000000028.6万00002 000000020.0002万 00000002 r--0.0002万 r--.const:ti_SysBIOS_gates_GateHwi_Module__C
    0.0012万88 000012888.8万01288 000000020.1288万 00000002 r--00000002 r-- 00000002 r--.const:ti_SysBIOS_gates_GateHwi_Module__C 0.0012万88 000012888.8万01288 000000020.1288万 00000002 r_C00000002 r_C 00000002
    
    
    
    
    
    0.0012万a4
    r--.const:xdc_runtime _Error_E_memory_C
    0.0012万a8 00000004800000004 r--.const:xdc_runtime _e_memory__C 0.0012万a8 000012a8800.0012万a8 00000004800000004
    
    
    :00000004 r--.const:0万c:0万c;000012bc;堆_0万c:0.0012万bc
    
    :0.0004万;
    0.0012万c__C 0.0012万c4
    00000004400000004 r--.const:xdc_runtime _Callback passes__C
    000012c8 00000004800000004 r--.const:xdc_runtime _Callback 000012c8 000012c88000012c8 00000004800000004 r--系统
    
    :0000000c _运行时_ 0000000c 0.0004万
    
    
    
    0.0012万e4
    00000004400000004 r--.const:xdc_runtime _系统_ maxAtexitHandlers__C
    0.0012万e8 000012e8800.0012万e8 00000004800000004 r--.const:xdc_runtime _系统_ maxAtexitHandlers__C 000012e8 000012e8800.0012万e8 00000004800000004 r_00000004 r_00000004 rk_000012_
    
    
    
    
    
    圆锥形:xdc_runtime _text_charCnt__C
    0.0012万fe 0.0002万 r--.const:xdc_runtime _text_isloaded__C
    0.0013万00 000013000万01300 000000010.13万 00000001 r--00000001 r--.const:xdc_runtime _错误_政策_ C
    0.0013万04 000013040.4万01304 ur_is00001300040.1304万 ur_is0000130004 r_bios_000013000_0.00130004亿 r_bios_000013000__0.00013亿___________
    
    ___________________________________________________________________________________________________________________________________________________________
    
    
    安全
    
    防护装置:ti_SysBIOS_ROM_ti_SysBIOS_family_arm_cc26xx_Timer_setThreshold__I 0.0131万c 0.0013万000000000004 000000040万 00000004 r--0.0004万 r--.const00000004.const:ti_SysBIOS_ROM_ROM_ti_SysBIOS_family_r_cr000026xx_Timer_start_E 0.0001万_
    
    安全_
    
    
    
    rodata
    0000da50 0000da5000000da50 0000050c00000050c 0.005万c r--.cinit
    0001e000 0001e0000万1e000 000010000万01000 r--0.1万 r--
    0001e000 0001e0000万1e000 000010000万01000 000010000.1万 00001000 r--00001000 r--.snvSecors
    0001ffa8 0001ffa880001ffa8 00000058800万58 000000585.8万00058 r--0.0058万 r--
    0001ffa8 0001ffa8-80001ffa8- 0.0058万 ccfg
    2000.01万 00001d28 000000002.8万00000 rw-0万 rw-
    20.0001万00 000000440万00044 000000000.0044万 00000000 rw-0万 rw-.data:ti_SysBIOS_KNL_Task_Module__V
    20.0001万44 200001444.42万00144 0000341.44亿 0万000000000000000000rw-.data0万.data:0万:ti_001SysBIOS_family_arm_m3_Hwi_Module__state__0万ti_001SysBIOS_family_arm_m3_Hwi_Module__state__ sys0000200001444_0000_100 00000000000000000000_00000000_00000000_0000_0000_0000_1000000 00000000000000000000_00000000_00000000_0000_0000_0000_100
    0000000000000000000_10万 0000000000000000000_
    
    
    模0万模块0万块200v_0000_0000_0000_0000_0000_0000_0000_0000_0000_0000_1000万200v_0000_0000_0000_0000_0000_0000_0000_0000_0000_0000_100</s>0万 0000000000000000000010万0万0亿0000000000000000000000000000000000000000
    
    0万08 000000000.8万00000 rw-0万 rw-.data:xdc_runtime启动模块__state__V
    200001f8 00000008800万08 000000000.8万00000 rw-0万 rw-.data:xdc_runtime系统模块__state__V
    20.0002万00 200002000.02万00200 000000042亿04 000000000.4万00000 rw-0万 rw-.data:xdc_runtime内存模块__state_0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080020000000000-20000000000000000000000000000000000200000000000000000000000000000002000000000020000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800</s>20000000000000000000000000000000000200000000000000000000000000000002000000000020000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800
    
    
    
    
    
    
    
    
    
    属性/
    书帖页面来源 长度 输入部分
    ------- -------- -------- --------
    .resetVecs
    * 000000000 0000003c
    0万 0.0003万c app_pem3.oem3 (.resetVecs)
    
    .text.1 00000003c 0万fc4.
    0.0003万c 0.0718万 simple_peripher.obj (.text:SimpleBLEPeripheral_taskFxn1美元)
    0.0007万54 000000085.4万00008</s>0.0008万 (.tramp.ti_SysBIOS_KNL_Event_Pend__E.1)
    0.0075万c 0.0008万 BLE_R2.symbols (.tramp.GATT_BM_FREE.1)
    0.0007万64 000000086.4万00008</s>0.0008万 (.tramp.ti_SysBIOS_KNL_Queue_Get__E.1)
    0.0076万c 0.0008万 (.tramp.ti_SysBIOS_KNL_Queue_empty_E.1)
    0.0774万 000005c0 cc2640_ll_pxxx.a:l.o (.text)
    0万d34 000000083.4万00008</s>0.0008万 BLE_R2.symbols (.tramp.LL_ENC_GenerateTrueRandNum.1)
    0万d3c 0.0008万 BLE_R2.symbols (.tramp.LL_PRIV_GenerateRSA.1)
    0万d44 000000084.4万00008</s>0.0008万 BLE_R2.symbols (.tramp.LL_ENC_Init.1)
    0万d4c 0.0294万 Peripheral.obj (.text:GAPRole_SetParameter)
    0万fe0 00000020000000020 simile_peripheral_cc2640r2lp_stack_library.lib:hal_flash_wrapper.obj (.text:HalFlashGetAddress)
    
    .const:ti_SysBIOS_stacks_HeapMem_Module__Fxns__C
    * 0.001万 0000100万 0000.0028万
    0.001万00 000000280万00028</s>0.0028万 app_pem3.oem3 (.const:ti_SysBIOS_stamp_HeapMem_Module__Fxns__C)
    
    .const:ti_SysBIOS_Gates_GateHWI_Module__Fxns__C
    * 0.001万 0000102.8万 0000.0024万
    0.001万28 000000242.8万00024</s>0.0024万 app_pem3.oem3 (.const:ti_SysBIOS_Gates_GateHWI_Module__Fxns__C)
    
    .const:ti_SysBIOS_Gates_GateMutex_Module__Fxns__C
    * 00000104c 0.0024万
    0.0104万c 0.0024万 app_ble_pem3.oem3 (.const:ti_SysBIOS_Gates_GateMutex_Module__Fxns__C)
    
    .const:ti_SysBIOS_family_arm_m3_Hwi_Object__DESC__C
    * 0.001万 0000107万 0000.002万
    0.001万70 000000207万00020</s>0.002万 app_ble_pem3.oem3 (.const:ti_SysBIOS_family_arm_m3_Hwi_Object__DESC__C)
    
    .const:ti_SysBIOS_Gates_GateHWi_Object__DESC__C
    * 0.001万 0000109万 0000.002万
    0.001万90 000000209万00020</s>0.002万 app_pem3.oem3 (.const:ti_SysBIOS_Gates_GateHWI_Object__DESC__C)
    
    .const:ti_SysBIOS_Gates_GateMutex_Object__DESC_C
    * 0.001万 000010b000000020
    0.001万b0 00000020000000020 app_pem3.oem3 (.const:ti_SysBIOS_Gates_GateMutex_Object__DESC__C)
    
    .const:ti_SysBIOS_hal _HWI_Object__DESC_C
    * 0.001万 000010d000000020
    0.001万d0 00000020000000020 app_ble_pem3.oem3 (.const:ti_SysBIOS_hal _HWI_Object__DESC__C)
    
    .const:ti_SysBIOS_stamp_HeapMem_Object__DESC_C
    * 0.001万 000010f000000020
    0.001万f0 00000020000000020 app_pem3.oem3 (.const:ti_SysBIOS_stamp_HeapMem_Object__DESC__C)
    
    .const:ti_SysBIOS_KNL_Clock_Object__DESC__C
    * 0.0011万 0000111万 0000.002万
    0.0011万10 000000201万00020</s>0.002万 app_pem3.oem3 (.const:ti_SysBIOS_KNL_Clock_Object__DESC__C)
    
    .const:ti_SysBIOS_KNL_Event_Object__DESC__C
    * 0.0011万 0000113万 0000.002万
    0.0011万30 000000203万00020</s>0.002万 app_pem3.oem3 (.const:ti_SysBIOS_KNL_Event_Object__DESC__C)
    
    .const:ti_SysBIOS_KNL_Mailbox_Object__DESC__C
    * 0.0011万 0000115万 0000.002万
    0.0011万50 000000205万00020</s>0.002万 app_pem3.oem3 (.const:ti_SysBIOS_KNL_Mailbox_Object__DESC__C)
    
    .const:ti_SysBIOS_KNL_Queue_Object__DESC__C
    * 0.0011万 0000117万 0000.002万
    0.0011万70 000000207万00020</s>0.002万 app_pem3.oem3 (.const:ti_SysBIOS_KNL_Queue_Object__DESC__C)
    
    .const:ti_SysBIOS_KNL_semaphore_Object__DESC__C
    * 0.0011万 0000119万 0000.002万
    0.0011万90 000000209万00020</s>0.002万 app_pem3.oem3 (.const:ti_SysBIOS_KNL_semaphore_Object__DESC__C)
    
    .const:ti_SysBIOS_KNL_Swi_Object__DESC_C
    * 0.0011万 000011b000000020
    0.0011万b0 00000020000000020 app_pem3.oem3 (.const:ti_SysBIOS_KNL_Swi_Object__DESC__C)
    
    .const:ti_SysBIOS_KNL_Task_Object__DESC__C
    * 0.0011万 000011d000000020
    0.0011万d0 00000020000000020 app_pem3.oem3 (.const:ti_SysBIOS_KNL_Task_Object__DESC__C)
    
    .const:ti_SysBIOS_KNL_Idle_funclist__C
    * 0.0011万 000011f000000008
    0.0011万f0 00000008000000008 app_pem3.oem3 (.const:ti_SysBIOS_KNL_Idle_funclist__C)
    
    .const:ti_SysBIOS_family_arm_cc26xx_Timer_startupNeeded__C
    * 0.0011万 000011f800000004
    0.0011万f8 00000004800000004 app_pem3.oem3 (.const:ti_SysBIOS_family_arm_cc26xx_Timer_startupNeeded__C)
    
    .const:ti_SysBIOS_family_arm_m3_HWI_alreadyDefended__C
    * 0.0011万fc 0.0004万
    0.0011万fc 0.0004万 app_ble_pem3.oem3 (.const:ti_SysBIOS_family_arm_m3_Hwi_E_alreadyDefended__C)
    
    .const:ti_SysBIOS_family_arm_m3_Hwi_E_hwiLimitExceeded__C
    * 0.0012万 0000120万 0000.0004万
    0.0012万00 000000040万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_family_arm_m3_Hwi_E_hwiLimitExceededed__C)
    
    .const:ti_SysBIOS_family_arm_m3_HWI_NUM_Interrups__C
    * 0.0012万 0000120.4万 0000.0004万
    0.0012万04 000000040.4万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_family_arm_m3_Hwi_NUM_Interrupts__C)
    
    .const:ti_SysBIOS_family_arm_m3_Hwi_Object__count__C
    * 0.0012万 0000120.8万 0000.0004万
    0.0012万08 000000040.8万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_family_arm_m3_Hwi_Object__count__C)
    
    .const:ti_SysBIOS_family_arm_m3_Hwi_Object__table__C
    * 00000120c 0.0004万
    0.012万c 0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_family_arm_m3_Hwi_Object__table__C)
    
    .const:ti_SysBIOS_family_arm_m3_Hwi_CCR__C
    * 0.0012万 0000121万 0000.0004万
    0.0012万10 000000041万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_family_arm_m3_Hwi_CCR__C)
    
    .const:ti_SysBIOS_family_arm_m3_Hwi_excHandlerFunc__C
    * 0.0012万 0000121.4万 0000.0004万
    0.0012万14 000000041.4万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_family_arm_m3_Hwi_excHandlerFunc__C)
    
    .const:ti_SysBIOS_family_arm_m3_Hwi_nullIsrFunc__C
    * 0.0012万 0000121.8万 0000.0004万
    0.0012万18 000000041.8万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_family_arm_m3_Hwi_nullIsrFunc__C)
    
    .const:ti_SysBIOS_family_arm_m3_Hwi_numSparts__C
    * 00000121c 0.0004万
    0.0121万c 0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_family_arm_m3_Hwi_numSparts__C)
    
    .const:ti_SysBIOS_family_arm_m3_HWI_priGroup__C
    * 0.0012万 0000122万 0000.0004万
    0.0012万20 000000042万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_family_arm_m3_Hwi_priGroup__C)
    
    .const:ti_SysBIOS_family_arm_m3_TaskSupport_stackAlignment __C
    * 0.0012万 0000122.4万 0000.0004万
    0.0012万24 000000042.4万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_family_arm_m3_TaskSupport_stackAlignment__C)
    
    .const:ti_SysBIOS_stacks_HeapMem_E_memory__C
    * 0.0012万 0000122.8万 0000.0004万
    0.0012万28 000000042.8万00004</s>0.0004万 app_ble_pem3.oem3 (.const:ti_SysBIOS_stamp_HeapMem_E_memory_C)
    
    .const:ti_SysBIOS_stamp_HeapMem_Module__gateObj__C
    * 00000122c 0.0004万
    0.0122万c 0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_stamp_HeapMem_Module__gateObj__C)
    
    .const:ti_SysBIOS_stamp_HeapMem_Object__count__C
    * 0.0012万 0000123万 0000.0004万
    0.0012万30 000000043万00004</s>0.0004万 app_ble_pem3.oem3 (.const:ti_SysBIOS_stamp_HeapMem_Object__count__C)
    
    .const:ti_SysBIOS_stamp_HeapMem_Object__table__C
    * 0.0012万 0000123.4万 0000.0004万
    0.0012万34 000000043.4万00004</s>0.0004万 app_ble_pem3.oem3 (.const:ti_SysBIOS_stamp_HeapMem_Object__table__C)
    
    .const:ti_SysBIOS_stamp_HeapMem_reqAlign __C
    * 0.0012万 0000123.8万 0000.0004万
    0.0012万38 000000043.8万00004</s>0.0004万 app_ble_pem3.oem3 (.const:ti_SysBIOS_stamp_HeapMem_reqAlign__C)
    
    .const:ti_SysBIOS_KNL_Clock_triggerClock__C
    * 00000123c 0.0004万
    0.0123万c 0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_KNL_Clock_triggerClock__C)
    
    .const:ti_SysBIOS_KNL_Mailbox_Object__count__C
    * 0.0012万 0000124万 0000.0004万
    0.0012万40 000000044万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_KNL_Mailbox_Object__count__C)
    
    .const:ti_SysBIOS_KNL_Mailbox_Object__table__C
    * 0.0012万 0000124.4万 0000.0004万
    0.0012万44 000000044.4万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_KNL_Mailbox_Object__table__C)
    
    .const:ti_SysBIOS_KNL_Mailbox_maxTypeAlign __C
    * 0.0012万 0000124.8万 0000.0004万
    0.0012万48 000000044.8万00004</s>0.0004万 app_ble_pem3.oem3 (.const:ti_SysBIOS_KNL_Mailbox_maxTypeAlign__C)
    
    .const:ti_SysBIOS_KNL_Queue_Object__COUNT_C
    * 00000124c 0.0004万
    0.0124万c 0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_KNL_Queue_Object__count__C)
    
    .const:ti_SysBIOS_KNL_Queue_Object__table__C
    * 0.0012万 0000125万 0000.0004万
    0.0012万50 000000045万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_KNL_Queue_Object__table__C)
    
    .const:ti_SysBIOS_KNL_semaphore_eventPost__C
    * 0.0012万 0000125.4万 0000.0004万
    0.0012万54 000000045.4万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_KNL_semaphore_eventPost__C)
    
    .const:ti_SysBIOS_KNL_semaphore_eventSync__C
    * 0.0012万 0000125.8万 0000.0004万
    0.0012万58 000000045.8万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_KNL_semaphore_eventSync__C)
    
    .const:ti_SysBIOS_KNL_Swi_Object__count__C
    * 00000125c 0.0004万
    0.0125万c 0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_KNL_Swi_Object__count__C)
    
    .const:ti_SysBIOS_KNL_Swi_Object__table__C
    * 0.0012万 0000126万 0000.0004万
    0.0012万60 000000046万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_KNL_Swi_Object__table__C)
    
    .const:ti_SysBIOS_KNL_Swi_numPriority__C
    * 0.0012万 0000126.4万 0000.0004万
    0.0012万64 000000046.4万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_KNL_Swi_numPriority__C)
    
    .const:ti_SysBIOS_KNL_Task_Object__COUNT_C
    * 0.0012万 0000126.8万 0000.0004万
    0.0012万68 000000046.8万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_KNL_Task_Object__count__C)
    
    .const:ti_SysBIOS_KNL_Task_Object__table__C
    * 00000126c 0.0004万
    0.0126万c 0.0004万 app_ble_pem3.oem3 (.const:ti_SysBIOS_KNL_Task_Object__table__C)
    
    .const:ti_SysBIOS_KNL_Task_AllBlockedFunc__C
    * 0.0012万 0000127万 0000.0004万
    0.0012万70 000000047万00004</s>0.0004万 app_ble_pem3.oem3 (.const:ti_SysBIOS_KNL_Task_allBlockedFunc__C)
    
    .const:ti_SysBIOS_KNL_Task_defaultStackHeap__C
    * 0.0012万 0000127.4万 0000.0004万
    0.0012万74 000000047.4万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_KNL_Task_defaultStackHeap__C)
    
    .const:ti_SysBIOS_KNL_Task_defaultStackSize__C
    * 0.0012万 0000127.8万 0000.0004万
    0.0012万78 000000047.8万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_KNL_Task_defaultStackSize__C)
    
    .const:ti_SysBIOS_KNL_Task_numConstructedTasks__C
    * 00000127c 0.0004万
    0.0127万c 0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_KNL_Task_NumConstructedTasks__C)
    
    .const:ti_SysBIOS_family_arm_cc26xx_Timer_Module__C
    * 0.0012万 0000128万 0000.0002万
    0.0012万80 000000028万00002</s>0.0002万 app_ble_pem3.oem3 (.const:ti_SysBIOS_family_arm_cc26xx_Timer_Module__id_C)
    
    .const:ti_SysBIOS_family_arm_cc26xx_TimestampProvider_useClockTimer__C
    * 0.0012万 0000128.2万 0000.0002万
    0.0012万82 000000028.2万00002</s>0.0002万 app_ble_pem3.oem3 (.const:ti_SysBIOS_family_arm_cc26xx_TimestampProvider_useClockTimer__C)
    
    .const:ti_SysBIOS_family_arm_m3_HWI_Module_id__C
    * 0.0012万 0000128.4万 0000.0002万
    0.0012万84 000000028.4万00002</s>0.0002万 app_pem3.oem3 (.const:ti_SysBIOS_family_arm_m3_Hwi_Module__id_C)
    
    .const:ti_SysBIOS_gates_GateHWi_Module__id__C
    * 0.0012万 0000128.6万 0000.0002万
    0.0012万86 000000028.6万00002</s>0.0002万 app_pem3.oem3 (.const:ti_SysBIOS_Gates_GateHWI_Module__id__C)
    
    .const:ti_SysBIOS_Gates_GateMutex_Module__id__C
    * 0.0012万 0000128.8万 0000.0002万
    0.0012万88 000000028.8万00002</s>0.0002万 app_pem3.oem3 (.const:ti_SysBIOS_Gates_GateMutex_Module__id__C)
    
    .const:ti_SysBIOS_stamp_HeapMem_Module__id__C
    * 00000128a 0.0002万
    0.0128万a 0.0002万 app_pem3.oem3 (.const:ti_SysBIOS_Stacks_HeapMem_Module__id__C)
    
    .const:ti_SysBIOS_KNL_Task_initStackFlag__C
    * 00000128c 0.0002万
    0.0128万c 0.0002万 app_pem3.oem3 (.const:ti_SysBIOS_KNL_Task_initStackFlag__C)
    
    .const:ti_SysBIOS_KNL_Clock_tickMode__C
    * 00000128e 0.0001万
    0.0128万e 0.0001万 app_pem3.oem3 (.const:ti_SysBIOS_KNL_Clock_tickMode__C)
    
    .const:xdc_runtime _Startup_firstFxns__C
    * 0.0012万 0000129万 0000.0008万
    0.0012万90 000000089万00008</s>0.0008万 app_pem3.oem3 (.const:xdc_runruntime _Startup_firstFxns__C)
    
    .const:xdc_runtime _Startup_lastFxns__C
    * 0.0012万 0000129.8万 0000.0008万
    0.0012万98 000000089.8万00008</s>0.0008万 app_pem3.oem3 (.const:xdc_runtime _Startup_lastFxns__C)
    
    .const:xdc_runtime _assert_E_assertFaed__C
    * 0.0012万 000012a000000004
    0.0012万a0 00000004000000004 app_pem3.oem3 (.const:xdc_runtime _assert_E_assert__C)
    
    .const:xdc_runtime _Error_E_memory_C
    * 0.0012万 000012a400000004
    0.0012万a4 00000004400000004 app_pem3.oem3 (.const:xdc_runtime _Error_E_memory__C)
    
    .const:xdc_runtime _ Error_policyFxn__C
    * 0.0012万 000012a800000004
    0.0012万a8 00000004800000004 app_pem3.oem3 (.const:xdc_runtime _错误_政策Fxn__C)
    
    .const:xdc_runtime _错误_raiseHook__C
    * 0.0012万ac 0.0004万
    0.0012万ac 0.0004万 app_pem3.oem3 (.const:xdc_runtime _错误_raiseHook__C)
    
    .const:xdc_runtime _状态提供程序_Interface__base_C
    * 0.0012万 000012b000000004
    0.0012万b0 00000004000000004 app_pem3.oem3 (.const:xdc_runruntime _IGateProvider_Interface__base_C)
    
    .const:xdc_runtime _IHeap_Interface__base_C
    * 0.0012万 000012b400000004
    0.0012万b4 00000004400000004 app_pem3.oem3 (.const:xdc_runtime _IHeap_Interface__base_C)
    
    .const:xdc_runtime _IModule_Interface__base_C
    * 0.0012万 000012b800000004
    0.0012万b8 00000004800000004 app_pem3.oem3 (.const:xdc_runtime _IModule_Interface__base_C)
    
    .const:xdc_runtime内存_defaultHeapInstance__C
    * 0.0012万bc 0.0004万
    0.0012万bc 0.0004万 app_pem3.oem3 (.const:xdc_runtime _Memory_defaultHeapInstance__C)
    
    .const:xdc_runtime _Startup_execImpl__C
    * 0.0012万 000012c000000004
    0.0012万c0 00000004000000004 app_pem3.oem3 (.const:xdc_runruntime _Startup_execImpl__C)
    
    .const:xdc_runtime启动_maxPasses__C
    * 0.0012万 000012c400000004
    0.0012万c4 00000004400000004 app_ble_pem3.oem3 (.const:xdc_runruntime _Startup_maxPasses__C)
    
    .const:xdc_runtime _Startup_sfxnRTs__C
    * 0.0012万 000012c800000004
    0.0012万c8 00000004800000004 app_pem3.oem3 (.const:xdc_runruntime _Startup_sfxnRTs__C)
    
    .const:xdc_runtime _Startup_sfxnTab__C
    * 0.0012万cc 0.0004万
    0.0012万cc 0.0004万 app_ble_pem3.oem3 (.const:xdc_runruntime _Startup_sfxnTab__C)
    
    .const:xdc_runtime _Startup_startModsFxn__C
    * 0.0012万 000012d000000004
    0.0012万d0 00000004000000004 app_ble_pem3.oem3 (.const:xdc_runruntime _Start_startModsFxn__C)
    
    .const:xdc_runtime _SysCallback_abortFxn__C
    * 0.0012万 000012d400000004
    0.0012万d4 00000004400000004 app_pem3.oem3 (.const:xdc_runtime _SysCallback_abortFxn__C)
    
    .const:xdc_runtime _SysCallback_exitFxn__C
    * 0.0012万 000012d800000004
    0.0012万d8 00000004800000004 app_pem3.oem3 (.const:xdc_runtime _SysCallback_exitFxn__C)
    
    .const:xdc_runtime系统_ abortFxn__C
    * 0.0012万dc 0.0004万
    0.0012万dc 0.0004万 app_pem3.oem3 (.const:xdc_runruntime _System_abortFxn__C)
    
    .const:xdc_runtime系统_exitFxn_C
    * 0.0012万 000012e000000004
    0.0012万e0 00000004000000004 app_pem3.oem3 (.const:xdc_runruntime _System_exitFxn__C)
    
    .const:xdc_runtime系统_maxAtexitHandlers__C
    * 0.0012万 000012e400000004
    0.0012万e4 00000004400000004 app_pem3.oem3 (.const:xdc_runruntime _System_maxAtexitHandlers__C)
    
    .const:xdc_runtime文本_charTab__C
    * 0.0012万 000012e800000004
    0.0012万e8 00000004800000004 app_pem3.oem3 (.const:xdc_runtime文本_charTab__C)
    
    .const:xdc_runtime文本_nameEmpty__C
    * 0.0012万ec 0.0004万
    0.0012万ec 0.0004万 app_pem3.oem3 (.const:xdc_runtime文本名称Empty__C)
    
    .const:xdc_runtime文本名称Static__C
    * 0.0012万 000012f000000004
    0.0012万f0 00000004000000004 app_pem3.oem3 (.const:xdc_runtime文本名称Static__C)
    
    .const:xdc_runtime文本名称Unknown __C
    * 0.0012万 000012f400000004
    0.0012万f4 00000004400000004 app_pem3.oem3 (.const:xdc_runtime文本名称Unknown __C)
    
    .const:xdc_runtime错误_maxDepth__C
    * 0.0012万 000012f800000002
    0.0012万f8 00000002800000002 app_pem3.oem3 (.const:xdc_runtime错误_maxDepth__C)
    
    .const:xdc_runtime内存模块__id__C
    * 0.0012万fa 0.0002万
    0.0012万fa 0.0002万 app_pem3.oem3 (.const:xdc_runtime _Memory_Module__id__C)
    
    .const:xdc_runtime文本_charCnt__C
    * 0.0012万fc 0.0002万
    0.0012万fc 0.0002万 app_pem3.oem3 (.const:xdc_runtime文本_charCnt__C)
    
    .const:xdc_runtime文本_isLoaded__C
    * 0.0012万fe 0.0002万
    0.0012万fe 0.0002万 app_pem3.oem3 (.const:xdc_runtime文本_isLoaded__C)
    
    .const:xdc_runtime错误策略__C
    * 0.0013万 0000130万 0000.0001万
    0.0013万00 000000010万00001</s>0.0001万 app_pem3.oem3 (.const:xdc_runtime _Error_policy__C)
    
    .const:ti_SysBIOS_ROM_ti_SysBIOS_family_arm_cc26xx_Timer_getCount64__E
    * 0.0013万 0000130.4万 0000.0004万
    0.0013万04 000000040.4万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_ROM_ti_SysBIOS_family_arm_cc26xx_Timer_getCount64_E)
    
    .const:ti_SysBIOS_ROM_ROM_ti_SysBIOS_family_arm_cc26xx_Timer_getCurrentTick_E
    * 0.0013万 0000130.8万 0000.0004万
    0.0013万08 000000040.8万00004</s>0.0004万 app_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
    * 00000130c 0.0004万
    0.013万c 0.0004万 app_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.0013万 0000131万 0000.0004万
    0.0013万10 000000041万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_ROM_ti_SysBIOS_family_arm_cc26xx_Timer_initDevice_I)
    
    .const:ti_SysBIOS_ROM_ti_SysBIOS_family_arm_cc26xx_Timer_setNextTick_E
    * 0.0013万 0000131.4万 0000.0004万
    0.0013万14 000000041.4万00004</s>0.0004万 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.0013万 0000131.8万 0000.0004万
    0.0013万18 000000041.8万00004</s>0.0004万 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
    * 00000131c 0.0004万
    0.0131万c 0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_ROM_ti_SysBIOS_family_arm_cc26xx_Timer_start__E)
    
    .const:ti_SysBIOS_ROM_ti_SysBIOS_family_arm_cc26xx_TimestProvider_get32__E
    * 0.0013万 0000132万 0000.0004万
    0.0013万20 000000042万00004</s>0.0004万 app_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.0013万 0000132.4万 0000.0004万
    0.0013万24 000000042.4万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_ROM_ROM_XDC_runtime启动getState__i)
    
    .const:ti_SysBIOS_ROM_XDC_abort_System_SupportProxy_runtime __E
    * 0.0013万 0000132.8万 0000.0004万
    0.0013万28 000000042.8万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_ROM_XDC_runtime系统支持Proxy_abort__E)
    
    .const:ti_SysBIOS_ROM_ROM_XDC_runtime系统支持Proxy_exit__E
    * 00000132c 0.0004万
    0.0132万c 0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_ROM_XDC_runtime系统支持Proxy_exit__E)
    
    .text.2 000001330 0000b870
    0.0013万30 000005883万00588</s>0.0588万 外围.obj (.text:gapRole_taskFxn14美元)
    0.0018万b8 00000358800000358 RFCC26XX_singlemode.obj (.text:fsmActiveState4美元)
    0.0001万c10 000003141万00314</s>0.0314万 drivers_cc26x0r2.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_auxISR)
    0.0001万f24 000003002.4万00300</s>0.03万 cc2640_ll_pxxx.a:ll_scheduler.o (.text)
    0.2224万 000002e4 :l.o (.text)
    0.2508万 000002bc simile_peripheral_cc2640r2lp_stack_library.lib:iCall_startup.obj (.text:startup_entry)
    0.0027万c4 0000024c40000024c Drivers_cc26x0r2.aem3:CryptoCC26XX.oem3 (.text:cryptoTransactionExecute)
    0.0002万a10 0000023c00000023c :PowerCC26XX.oem3 (.text:Power_Sleep)
    0.0002万c4c 0.0234万 cc26xx_profiles_pxxx.a:gapgattserver.o (.text)
    0.0002万e80 0000022c00000022c simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:GAPBondMgr_SetParameter)
    0.003万ac 0.022万 RFCC26XX_singlemode.obj (.text:RF_open)
    0.0032万cc 0.022万 cc2640_ll_pxxx.A:ll_isx.o (.text)
    0.0034万ec 0.0021万c rtsv7M3_T_le_eabi.lib:trgdrv.obj (.text)
    0.0037万08 000002100.8万00210</s>0.021万 driverlib.lib : sys_Ctrl.obj (.text:NOROM_SysCtrlSetRechargeBeforePowerDown)
    0.0039万18 000002101.8万00210</s>0.021万 cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    0.0003万b28 0000020c80000020c cc2640_ll_pxxx.a:ll_common.o (.text)
    0.0003万d34 000002043.4万00204</s>0.0204万 cc26xx_sm_pxxx.a:sm_pairing.o (.text)
    0.0003万f38 000001f43800.0001万f4 rtsv7M3_T_le_eabi.lib:ull_div_t2.obj (.text)
    0.0412万c 0.0001万e4 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:GAPBondMgr_ProcessGAPMsg)
    0.431万 000001dc RFCC26XX_singlemode.obj (.text:fsmSetupState4美元)
    0.0044万ec 0.0001万d0 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:gapBondMgrAddBond31美元)
    0.0046万bc 0.0001万c4 simple_peripher.obj (.text:SimpleBLEPeripheral_processStateChangeEvt1美元)
    0.488万 000001c4 cc2640_ll_pxxx.A:ll_isx.o (.text)
    0.0004万a44 000001c04400.0001万c0 simile_peripheral_cc2640r2lp_stack_library.lib : osal.obj (.text:osal_start_system)
    0.0004万c04 000001bc400万bc main.obj (.text:AssertHandler)
    0.0004万dc0 000001b80.0001万b8 rtsv7M3_T_le_eabi.lib : fputs.obj (.text)
    0.0004万f78 000001a87800.0001万a8 RFCC26XX_singlemode.obj (.text:RF_postCmd)
    0.512万 000001a8 cc2640_ll_pxxx.A:ll_isx.o (.text)
    0.0052万c8 00000194800000194 iCall.obj (.text:iCall_directAPI)
    0.0545万c 0.019万 ECCROMCC26XX.OBJ (.TEXT:ECCROMCC26XX_genDHKey)
    0.0055万ec 0.019万 drivers_cc26x0r2.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_doCalibrate)
    0.0577万c 0.019万 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:gapBondMgrAuthenticate31美元)
    0.059万c 0.0018万c drivers_cc26x0r2.aem3:PINCC26XX.oem3 (.text:PIN_INIT)
    0.0005万a98 0000017c80000017c RFCC26XX_singlemode.obj (.text:abortCmd4美元)
    0.0005万c14 0000016c40000016c cc2640_ll_pxxx.a:l.o (.text)
    0.0005万d80 000001508万00150</s>0.015万 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:GAPBondMgr_ProcessEvent)
    0.0005万ed0 0000013c00000013c drivers_cc26x0r2.aem3:PowerCC26XX.oem3 (.text:Power_init)
    0.06万c 0.0128万 ECCROMCC26XX.OBJ (.TEXT:ECCROMCC26XX_genKeys)
    0.0061万34 000001283.4万00128</s>0.0128万 cc2640_ll_pxxx.a:ll_scheduler.o (.text)
    0.0625万c 0.0128万 simple_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:gapBondMgrEraseBonding31美元)
    0.0063万84 000001248.4万00124</s>0.0124万 Peripheral_OBJ (.text:GAPRole_GetParameter)
    0.0064万a8 0000011c80000011c simile_peripheral_cc2640r2lp_stack_library.lib : osal_SNV_wrapper.obj (.text:compactPage28美元)
    0.0065万c4 0000010c40000010c RFCC26XX_singlemode.obj (.text:hwiFxnCpe0Active4美元)
    0.0066万d0 000000fc0万fc ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_arm_m3_HWI_excFillContext__I)
    0.0067万cc 0万f8 simile_peripheral_cc2640r2lp_stack_library.lib:osal_SNV_wrapper.obj (.text:osal_SNV_write)
    0.0068万c4 000000f8400万f8 RFCC26XX_singlemode.obj (.text:radioOpDoneCb4美元)
    0.0069万bc 0万f4 RFCC26XX_singlemode.obj (.text:fsmPowerUpState4美元)
    0.0006万ab0 000000ec0万ec simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:GAPBondMgr_LinkEst)
    0.0006万b9c 0万ec cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    0.0006万c88 000000ec8800万ec simile_peripheral_cc2640r2lp_stack_library.lib : osal_timers.obj (.text:osalTimerUpdate)
    0.0006万d74 000000e47400万e4 main.obj (.text:main)
    0.0006万e58 000000e05800万e0 cc26xx_sm_pxxx.a:sm_pairing.o (.text)
    0.0006万f38 000000dc3800万dc Drivers_cc26x0r2.aem3:PINCC26XX.oem3 (.text:PINCC26XX_setIoCfg)
    0.7014万 000000d4 :CryptoCC26XX.oem3 (.text:CryptoCC26XX_open)
    0.007万e8 000000d4800万d4 DPL_cc26x0r2.aem3:PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
    0.0071万bc 0万d4 rtsv7M3_T_le_eabi.lib:setvbuf.obj (.text)
    0.729万 000000d4 simple_GATT配置文件.obj (.text:simpleProfile_WriteAttrCB15美元)
    0.7364万 000000c4 cc26xx_sm_pxxx.a:sm_pairing.o (.text)
    0.7428万 000000c0 Simple_GATT配置文件.obj (.text:SimpleProfile_SetParameter)
    0.0074万e8 000000c0800万c0 simile_peripheral_cc2640r2lp_stack_library.lib : osal.obj (.text:osal_set_event)
    0.0075万a8 000000c0800万c0 rtsv7M3_T_le_eabi.lib:lowlev.obj (.text)
    0.7668万 000000bc drivers_cc26x0r2.aem3:PowerCC26XX.oem3 (.text:Power_releaseDependency)
    0.7724万 000000bc rtsv7M3_T_le_eabi.lib:fclose.obj (.text)
    0.0077万e0 000000b80万b8 driverlib.lib:setup.obj (.text:NOROM_SetupTrimDevice)
    0.7898万 000000b8 cc2640_ll_pxxx.a:ll_scheduler.o (.text)
    0.795万 000000b4 drivers_cc26x0r2.aem3:PowerCC26XX.oem3 (.text:Power_setDependency)
    0.0007万a04 000000b0400万b0 TRNGCC26XX.OBJ (.TEXT:TRNGCC26XX_getNumber)
    0.0007万ab4 000000b0400万b0 devinfoservice.obj (.text:DevInfo_ReadAttrCB11美元)
    0.0007万b64 000000a86400万a8 simple_peripher.obj (.text:SimpleBLEPeripheral_createTask)
    0.0007万c0c 0万a4 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:GAPBondMgr_ResolveAddr)
    0.0007万cb0 000000a40万a4 :osal.obj (.text:osal_msg_enqueue_push24美元)
    0.0007万d54 000000a05400万a0 auto_init.aem3:auto_init.oem3 (.text)
    0.0007万df4 0000009e40000009e simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:gapBondMgrUpdateCharCfg31美元)
    0.0007万e92 000000029.2万00002</s>0.0002万 BLE_USER_CONFIG.OBJ (.TEXT:DefaultAssertBack)
    0.0007万e94 0000009c40000009c simile_peripheral_cc2640r2lp_stack_library.lib:osal_cbtimer.obj (.text:cbTimerSetup40美元)
    0.0007万f30 0000009c00000009c rtsv7M3_T_le_eabi.lib:memcpy_t2.obj (.text)
    0.0007万fcc 0.0098万 ROM_SysBIOS.aem3:ROM_SysBIOS.OBJ (.text:ti_SysBIOS_KNL_Clock_workFunction Dynamic__E)
    0.008万64 000000946.4万00094</s>0.0094万 iCall.obj (.text:iCall_setTimer)
    0.008万f8 00000094800000094 simile_peripheral_cc2640r2lp_stack_library.lib:osal.obj (.text:osal_msg_receive)
    0.0818万c 0.0094万 :osal_timer.obj (.text:osal_timer_refTimeUpdate)
    0.0082万20 000000902万00090</s>0.009万 driverlib.lib:crypto.obj (.text:NOROM_CRYPTOAesLoadKey)
    0.0082万b0 00000090000000090 :setup.obj (.text:TrimAfterColdResetWakeupFromShutDown21美元)
    0.0083万40 000000904万00090</s>0.009万 cc2640_ll_pxxx.a:ll_enc.o (.text)
    0.0083万d0 00000090000000090 cc26xx_HCI_tl_none.a:HCI_tl.o (.text)
    0.0084万60 000000906万00090</s>0.009万 simile_peripheral_cc2640r2lp_stack_library.lib:osal_cbtimer.obj (.text:osal_CbTimerProcessEvent)
    0.0084万f0 0000008c00000008c iCall.obj (.text:iCall_heapMalloc)
    0.0857万c 0.0008万c drivers_cc26x0r2.aem3:PowerCC26XX.oem3 (.text:disableLFClockQualifier)
    0.0086万08 000000880.8万00088</s>0.0088万 cc2640_ll_pxxx.a:l.o (.text)
    0.0086万90 000000889万00088</s>0.0088万 cc26xx_profiles_pxxx.a:gapgattserver.o (.text)
    0.0087万18 000000881.8万00088</s>0.0088万 Peripheral_OBJ (.text:gapRole_startConnUpdate14美元)
    0.0087万a0 00000088000000088 gattservapp_util.obj (.text:gattServApp_SendNotiInd13美元)
    0.0088万28 000000882.8万00088</s>0.0088万 simile_peripheral_cc2640r2lp_stack_library.lib : osal_SNV_wrapper.obj (.text:writeWord28美元)
    0.0088万b0 00000086000000086 cc2640_ll_pxxx.a:ll_common.o (.text)
    0.0089万36 000000023.6万00002</s>0.0002万 simile_peripheral_cc2640r2lp_stack_library.lib:onboard.obj (.text:onboard_soft_reset)
    0.0089万38 000000843.8万00084</s>0.0084万 drivers_cc26x0r2.aem3:PowerCC26XX.oem3 (.text:switchXOSCclockHFFunc)
    0.0089万bc 0.0084万 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_arm_m3_Hwi_excHandlerMin__i)
    0.0008万a40 000000804万00080</s>0.008万 RFCC26XX_singlemode.obj (.text:RF_pendCmd)
    0.0008万ac0 0000007e00000007e cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    0.0008万b3e 0.0002万 simile_peripheral_cc2640r2lp_stack_library.lib : sm_ecc.obj (.text:sm_dhKeyCB)
    0.0008万b40 0000007c00000007c cc2640_HCI_pxxx.A:HCI_event.o (.text)
    0.0008万bbc 0.0007万c cc2640_ll_pxxx.a:ll_scheduler.o (.text)
    0.0008万c38 0000007c80000007c cc26xx_gap_pxxx.a:gap_linkmgr.o (.text)
    0.0008万cb4 0000007c40000007c simile_peripheral_cc2640r2lp_stack_library.lib:osal.obj (.text:osal_event_send24美元)
    0.0008万d30 0000007c00000007c RFCC26XX_singlemode.obj (.text:swiFxnHw4美元)
    0.0008万dac 0.0007万a Drivers_cc26x0r2.aem3:CryptoCC26XX.oem3 (.text:CryptoCC26XX_allocateKey)
    0.0008万e26 0000007a60000007a rtsv7M3_T_le_eabi.lib:memset_t2.obj (.text)
    0.0008万ea0 00000078000000078 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:GAPBondMgr_syncResolvingList)
    0.0008万f18 000000741.8万00074</s>0.0074万 cc2640_ll_pxxx.a:ll_common.o (.text)
    0.0008万f8c 0.0074万 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:gapBondMgrBondReq31美元)
    0.009万00 000000740万00074</s>0.0074万 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_arm_cc26xx_Timer_start__E)
    0.009万74 000000707.4万00070</s>0.007万 iCall.obj (.text:iCall_heapGetStats)
    0.009万e4 00000070400000070 iCall.obj (.text:iCall_heapInit)
    0.0091万54 000000705.4万00070</s>0.007万 simile_peripheral_cc2640r2lp_stack_library.lib:ble调度lite.obj (.text:ble调度liteProcess)
    0.0091万c4 0000006c40000006c iCall.obj (.text:iCall_sendServiceComplete)
    0.923万 0.0006万c driverlib.lib:osc.obj (.text:NOROM_OSCHH_AttemptToSwitchToXosc)
    0.0929万c 0.0006万c drivers_cc26x0r2.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
    0.9308万 0.0006万c cc2640_ll_pxxx.a:ll_scheduler.o (.text)
    0.9374万 0.0006万c drivers_cc26x0r2.aem3:PowerCC26XX.oem3 (.text:configureXOSCHF)
    0.0093万e0 00000068000000068 driverlib.lib : sys_Ctrl.obj (.text:NOROM_sysctrl_DCDC_VoltageConditionalControl)
    0.0094万48 000000684.8万00068</s>0.0068万 simple_peripher.obj (.text:SimpleBLEPeripheral_freeAttRsp1美元)
    0.0094万b0 00000068000000068 RFCC26XX_singlemode.obj (.text:decActiveClientCnt4美元)
    0.0095万18 000000681.8万00068</s>0.0068万 rtsv7M3_T_le_eabi.lib:copy_decompil_lzss.obj (.text:decpress:lzss)
    0.0095万80 000000688万00068</s>0.0068万 simile_peripheral_cc2640r2lp_stack_library.lib:osal_cbtimer.obj (.text:osal_CbTimerUpdate)
    0.0095万e8 00000068800000068 rtsv7M3_T_le_eabi.lib:trgmsg.obj (.text)
    0.0096万50 000000645万00064</s>0.0064万 iCall.obj (.text:iCall_send)
    0.0096万b4 00000064400000064 driverlib.lib : sys_Ctrl.obj (.text:NOROM_SysCtrlAdjuststRechargeAfterPowerDown)
    0.0097万18 000000641.8万00064</s>0.0064万 cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    0.0977万c 0.0064万 RFCC26XX_singlemode.obj (.text:fsmXOSCState4美元)
    0.0097万e0 00000060000000060 iCall.obj (.text:iCall_createRemoteTasksAtRuntime)
    0.0098万40 000000604万00060</s>0.006万 iCall.obj (.text:iCall_enrollService)
    0.0098万a0 00000060000000060 RFCC26XX_singlemode.obj (.text:RF_getCurrentTime)
    0.99万 0.0005万e iCall.obj (.text:iCall_fetchMsg)
    0.0995万e 0.0002万 simile_peripheral_cc2640r2lp_stack_library.lib : sm_ecc.obj (.text:sm_p256KeyCB)
    0.996万 0.0005万c Display.aem3:Display.oem3 (.text:Display_doOpen)
    0.0099万bc 0.0005万c iCall.obj (.text:iCall_pwrUpdActivityCounter)
    0.0009万a18 0000005c80000005c drivers_cc26x0r2.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_RCOSC_clockFunc)
    0.0009万a74 0000005c40000005c :PowerCC26XX.oem3 (.text:PowerCC26XX_CALIBRATE)
    0.0009万ad0 0000005c00000005c cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    0.0009万b2c 0.0005万c simple_GATT配置文件.obj (.text:simpleProfile_ReadAttrCB15美元)
    0.0009万b88 0000005c80000005c app_pem3.oem3 (.text:xdc_runtime _Startup_getState__i)
    0.0009万be4 00000058400000058 iCall.obj (.text:iCall_Wait)
    0.0009万c3c 0.0058万 simile_peripheral_cc2640r2lp_stack_library.lib : osal_SNV_wrapper.obj (.text:findItem28美元)
    0.0009万c94 000000589.4万00058</s>0.0058万 :gapbondmgr.obj (.text:gapBondMgrReadBins31美元)
    0.0009万cec 0.0058万 :osal_cbtimer.obj (.text:osal_CbTimerStop)
    0.0009万d44 000000544.4万00054</s>0.0054万 cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    0.0009万d98 000000549.8万00054</s>0.0054万 RFCC26XX_singlemode.obj (.text:hwiFxnHw4美元)
    0.0009万号决定0.0054万 RFCC26XX_singlemode.obj (.text:ratChanFree4美元)
    0.0009万e40 000000544万00054</s>0.0054万 rtsv7M3_T_le_eabi.lib:exit.obj (.text)
    0.0009万e94 000000509.4万00050</s>0.005万 ECCROMCC26XX.OBJ (.TEXT:ECCROMCC26XX_Params_init)
    0.0009万ee4 00000050400000050 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:GAPBondMgr_LinkTerm)
    0.0009万f34 000000503.4万00050</s>0.005万 iCall.obj (.text:iCall_registerApp)
    0.0009万f84 000000508.4万00050</s>0.005万 simile_peripheral_cc2640r2lp_stack_library.lib:npi.obj (.text:npi.WriteTransport)
    0.0009万fd4 00000050400000050 RFCC26XX_singlemode.obj (.text:RF_getinfo)
    0000a024 000000502.4万00050</s>0.005万 Util.obj (.text:Util_convertBdAddr2Str)
    0000a074 0000004c0.74亿4c iCall.obj (.text:iCall_newtask6美元)
    0000a0c0 0000004c00000004c RFCC26XX_singlemode.obj (.text:RF_wakeupNotifyFxn4美元)
    0000a10c 0.0004万c simple_peripher.obj (.text:SimpleBLEPeripheral_enqueueMsg1美元)
    0000a158 0000004c1.58亿4c simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:gapBondMgrUpdateLRubondList31美元)
    0000a1a4 0000004c40000004c :osal_bufmgr.obj (.text:osal_bm_free)
    0000a1f0 0000004c00000004c rtsv7M3_T_le_eabi.lib:cpy_tbL.obj (.text)
    0000a23c 0.0004万c : fflush.obj (.text)
    0000a288 0000004c2.88亿4c RFCC26XX_singlemode.obj (.text:syncdCb4美元)
    0000a2d4 00000048400000048 DPL_cc26x0r2.aem3:ClockP_tirtos.oem3 (.text:ClockP_construct)
    0000a31c 0.0048万 ECCROMCC26XX.OBJ (.text:ecc_initGlobals3美元)
    0000a364 0000004836.4万00048</s>0.0048万 Util.obj (.text:Util_construtClock)
    0000a3ac 0.0048万 simile_peripheral_cc2640r2lp_stack_library.lib : osal_timers.obj (.text:osalAddTimer)
    0000a3f4 00000048400000048 ROM_SysBIOS.aem3:ROM_SysBIOS.OBJ (.text:ti_SysBIOS_family_arm_cc26xx_Timer_setThreshold__i)
    0000a43c 0.0044万 driverlib.lib:osc.obj (.text:NOROM_OSCHF_SwitchToRcOscar TurnOffXosc)
    0000a480 0000004448万00044</s>0.0044万 drivers_cc26x0r2.aem3:PINCC26XX.oem3 (.text:PIN_swics)
    0000a4c4 00000044400000044 Simple_GATT配置文件.obj (.text:SimpleProfile_GetParameter)
    0000a508 0000004450.8万00044</s>0.0044万 boot.aem3:boot.oem3 (.text)
    0000a54c 0.0044万 cc2640_ll_pxxx.a:ll_scheduler.o (.text)
    0000a590 0000004459万00044</s>0.0044万 cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    0000a5d4 00000044400000044 simple_peripheral_cc2640r2lp_stack_library.lib : osal_SNV_wrapper.obj (.text:erasePage28美元)
    0000a618 0000004461.8万00044</s>0.0044万 drivers_cc26x0r2.aem3:PowerCC26XX.oem3 (.text:notify)
    0000a65c 0.0044万 simile_peripheral_cc2640r2lp_stack_library.lib:osal_timers.obj (.text:osal_start_timerEx)
    0000a6a0 00000042000000042 :gapbondmgr.obj (.text:GAPBondMgr_UpdateCharCfg)
    0000a6e2 00000042200000042 :gap.obj (.text:gap_DeviceInit)
    0000a724 0000004072.4万00040</s>0.004万 ECCROMCC26XX.OBJ (.TEXT:ECCROMCC26XX_INIT)
    0000a764 0000004076.4万00040</s>0.004万 Peripheral_OBJ (.text:GAPRole_createTask)
    0000a7a4 00000040400000040 DPL_cc26x0r2.aem3:hwip_tirtos.oem3 (.text:hwip_construct)
    0000a7e4 00000040400000040 RFCC26XX_singlemode.obj (.text:RF_getRssi)
    0000a824 0000004082.4万00040</s>0.004万 cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    0000a864 0000004086.4万00040</s>0.004万 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_states_HeapCallback_Module_Startup__E)
    0000a8a4 0000003c40000003c driverlib.lib:osc.obj (.text:NOROM_OSC-HPOSCRelativeFrquencyOffsetGet)
    0000a8e0 0000003c00000003c drivers_cc26x0r2.aem3:PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC
    0000a91c 0.0003万c :PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC)
    0000a958 0000003c9.58亿3c RFCC26XX_singlemode.obj (.text:rf_runCmd)
    0000a994 0000003c9.94亿3c DPL_cc26x0r2.aem3:swip_tirtos.oem3 (.text:swip_construct)
    0000a9d0 0000003c00000003c cc2640_ll_pxxx.a:ll_scheduler.o (.text)
    0000aa0c 0.0003万c cc26xx_HCI_tl_none.a:HCI_tl.o (.text)
    0000aa48 0000003c80000003c cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    0000aa84 0000003c40000003c :gattservapp.o (.text)
    0000aac0 0000003c00000003c :gattservapp.o (.text)
    0000aafc 0.0003万c simile_peripheral_cc2640r2lp_stack_library.lib:osal_bufmgr.obj (.text:osal_bm_alloc)
    0000ab38 0000003c80000003c :osal_timer.obj (.text:osal_start_reload_timer)
    0000ab74 0000003c40000003c RFCC26XX_singlemode.obj (.text:postDirImmCmd 4美元)
    0000abb0 0000003c00000003c ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_arm_m3_Hwi_construt2__E)
    0000abec 0.0038万 Util.obj (.text:Util_restartClock)
    0000ac24 000000382.4万00038</s>0.0038万 cc2640_ll_pxxx.a:ll_scheduler.o (.text)
    0000ac5c 0.0038万 :LL_scheduler.o (.text)
    0000ac94 000000389.4万00038</s>0.0038万 cc26xx_l2cap_pxxx.a:l2cap_util.o (.text)
    0000accc 0.0038万 simile_peripheral_cc2640r2lp_stack_library.lib : osal_SNV_wrapper.obj (.text:disableCache28美元)
    0000ad04 000000380.4万00038</s>0.0038万 RFCC26XX_singlemode.obj (.text:dispatchOpWhen4美元)
    0000ad3c 0.0038万 simile_peripheral_cc2640r2lp_stack_library.lib : osal.obj (.text:osal_alien2proxy)
    0000ad74 000000387.4万00038</s>0.0038万 :osal.obj (.text:osal_msec_timer_cback 24美元)
    0000adac 0.0038万 :osal_timers.obj (.text:osal_stop_timerEx)
    0000ade4 00000038400000038 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_arm_cc26xx_Timer_getCurrentTick_E)
    0000ae1c 0.0036万 Drivers_cc26x0r2.aem3:CryptoCC26XX.oem3 (.text:CryptoCC26XX_loadKey)
    0000ae52 000000025.2万00002</s>0.0002万 RFCC26XX_singlemode.obj (.text:defaultCallback4美元)
    0000ae54 000000345.4万00034</s>0.0034万 gattservapp_util.obj (.text:GATTServApp_InitCharCfg)
    0000ae88 000000348.8万00034</s>0.0034万 iCall.obj (.text:iCall_heapFree)
    0000aebc 0.0034万 iCall.obj (.text:iCall_searchServiceEntity)
    0000aef0 00000034000000034 drivers_cc26x0r2.aem3:PowerCC26XX.oem3 (.text:Power_releaseConstraint)
    0000af24 000000342.4万00034</s>0.0034万 RFCC26XX_singlemode.obj (.text:Q_PUSH 4美元)
    0000af58 000000345.8万00034</s>0.0034万 cc2640_ll_pxxx.A:ll_isx.o (.text)
    0000af8c 0.0034万 :LL_scheduler.o (.text)
    0000afc0 00000034000000034 simile_peripheral_cc2640r2lp_stack_library.lib : osal.obj (.text:osal_clear_event)
    0000aff4 00000034400000034 rtsv7M3_T_le_eabi.lib : fopen.obj (.text)
    0000b028 000000342.8万00034</s>0.0034万 : strncpy.obj (.text)
    0000b05c 0.0034万 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_arm_cc26xx_Timer_initDevice__i)
    0000b090 000000329万00032</s>0.0032万 iCall.obj (.text:iCall_fetchServiceMsg)
    0000b0c2 00000032200000032 ROM_SysBIOS.aem3:ROM_SysBIOS.OBJ (.text:ti_SysBIOS_family_arm_cc26xx_Timer_setNextTick_E)
    0000b0f4 00000030400000030 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:GAPBondMgr_PasscodeRsp)
    0000b124 0000003012.4万00030</s>0.003万 Peripheral_OBJ (.text:GAPRole_TerminateConnection)
    0000b154 0000003015.4万00030</s>0.003万 simile_peripheral_cc2640r2lp_stack_library.lib : hal_flash_wrapper.obj (.text:HalFlashRead)
    0000b184 0000003018.4万00030</s>0.003万 iCall.obj (.text:iCall_dispatch 6美元)
    0000b1b4 00000030400000030 iCall.obj (.text:iCall_msecs2Ticks6美元)
    0000b1e4 00000030400000030 iCall.obj (.text:iCall_primEntityId2ServiceId6美元)
    0000b214 0000003021.4万00030</s>0.003万 iCall.obj (.text:iCall_searchTask6美元)
    0000b244 0000003024.4万00030</s>0.003万 drivers_cc26x0r2.aem3:PowerCC26XX.oem3 (.text:Power_setConstraint)
    0000b274 0000003027.4万00030</s>0.003万 cc26xx_gap_pxxx.A:gap_ConfigMgr.o (.text)
    0000b2a4 00000030400000030 cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    0000b2d4 00000030400000030 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:gapBondMgr_SyncWhiteList31美元)
    0000b304 0000003030.4万00030</s>0.003万 :osal_timers.obj (.text:osal_Get_timeoutEx)
    0000b334 0000003033.4万00030</s>0.003万 app_pem3.oem3 (.text:ti_SysBIOS_BIOS_atExitFunction__i)
    0000b364 0000003036.4万00030</s>0.003万 app_pem3.oem3 (.text:ti_SysBIOS_BIOS_startFunc__i)
    0000b394 0000003039.4万00030</s>0.003万 app_ble_pem3.oem3 (.text:ti_SysBIOS_堆 叠_HeapCallback_Object__create_S)
    0000b3c4 0000002e40000002e iCall_cc265.obj (.text:ICallPlatform_pwrDiscpenseImpl7美元)
    0000b3f2 0000002e20000002e iCall_cc265.obj (.text:ICallPlatform_pwrRequireImpl7美元)
    0000b420 0000002e4.2亿2e cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    0000b44e 0.0002万e simile_peripheral_cc2640r2lp_stack_library.lib:osal.obj (.text:osal_build_uINT32)
    0000b47c 0.0002万e app_pem3.oem3 (.text:ti_SysBIOS_RTS_GNU_MemAlloc_alloc)
    0000b4aa 0.0002万 drivers_cc26x0r2.aem3:PowerCC26XX.oem3 (.text:emptyClockFunc)
    0000b4ac 0.0002万c iCall.obj (.text:iCall_getLocalMsgEntityId)
    0000b4d8 0000002c80000002c iCall.obj (.text:iCall_msgEnqueue6美元)
    0000b504 0000002c5.04亿2c driverlib.lib:Chipinfo.obj (.text:NOROM_ChipInfo_GetChipFamily)
    0000b530 0000002c5.3亿2c : RFC.OBJ (.text:NOROM_RFCDoorbellSendTo)
    0000b55c 0.0002万c DPL_cc26x0r2.aem3:SemaphoreP_tirtos.oem3 (.text:SemaphoreP_construtBinary)
    0000b588 0000002c5.88亿2c simile_peripheral_cc2640r2lp_stack_library.lib:ble_dispatch_lite.obj (.text:bleDispatch_BMAlloc)
    0000b5b4 0000002c40000002c cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    0000b5e0 0000002c00000002c cc26xx_sm_pxxx.a:sm_pairing.o (.text)
    0000b60c 0.0002万c simile_peripheral_cc2640r2lp_stack_library.lib : osal_SNV_wrapper.obj (.text:findOffset28美元)
    0000b638 0000002c6.38亿2c :gapbondmgr.obj (.text:gapBondMgrFindAddr31美元)
    0000b664 0000002c6.64亿2c RFCC26XX_singlemode.obj (.text:getCmd4美元)
    0000b690 0000002c6.9亿2c ROM_SysBIOS.aem3:ROM_SysBIOS.OBJ (.text:ti_SysBIOS_KNL_Clock_getTicksUntilInterrupti__E)
    0000b6bc 0.0002万a Display.aem3:Display.oem3 (.text:Display_doPrintf)
    0000b6e6 0000002a60000002a ROM_SysBIOS.aem3:ROM_SysBIOS.OBJ (.text:ti_SysBIOS_KNL_Clock_getTimeout__E)
    0000b710 0000002871万00028</s>0.0028万 drivers_cc26x0r2.aem3:PowerCC26XX.oem3 (.text:Power_registerNotify)
    0000b738 0000002873.8万00028</s>0.0028万 driverlib.lib:Adi.obj (.text:SafeSapiVoid)
    0000b760 0000002876万00028</s>0.0028万 TRNGCC26XX.OBJ (.TEXT:TRNGCC26XX_INIT)
    0000b788 0000002878.8万00028</s>0.0028万 Drivers_cc26x0r2.aem3:CryptoCC26XX.oem3 (.text:cryptoTransactionPend)
    0000b7b0 00000028000000028 main.obj (.text:execHandlerHook)
    0000b7d8 00000028800000028 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:gapBondMgrBondTotal 31美元)
    0000b800 0000002880万00028</s>0.0028万 :osal_bufmgr.obj (.text:osal_bm_adjust_header)
    0000b828 0000002882.8万00028</s>0.0028万 :osal_timer.obj (.text:osal_next超时)
    0000b850 0000002885万00028</s>0.0028万 :osal_SNV_wrapper.obj (.text:osal_SNV_COMPACT)
    0000b878 0000002687.8万00026</s>0.0026万 :gapbondmgr.obj (.text:gapBondMgrGetStateFlags31美元)
    0000b89e 0.0002万 :hal_assert.obj (.text:halAssertHandler)
    0000b8a0 00000024000000024 Drivers_cc26x0r2.aem3:CryptoCC26XX.oem3 (.text:CryptoCC26XX_hwiIntFxn)
    0000b8c4 00000024400000024 driverlib.lib:osc.obj (.text:NOROM_OSCHH_TurnOnXosc)
    0000b8e8 00000024800000024 Drivers_cc26x0r2.aem3:PINCC26XX.oem3 (.text:PINCC26XX_getPinCount)
    0000b90c 0.0024万 simile_peripheral_cc2640r2lp_stack_library.lib:osal_bufmgr.obj (.text:bm_desc_frof_load25美元)
    0000b930 0000002493万00024</s>0.0024万 cc26xx_profiles_pxxx.a:gapgattserver.o (.text)
    0000b954 0000002495.4万00024</s>0.0024万 RFCC26XX_singlemode.obj (.text:hwiFxnCpe0PowerFsm4美元)
    0000b978 0000002497.8万00024</s>0.0024万 simile_peripheral_cc2640r2lp_stack_library.lib:osal.obj (.text:osal_msg_alloc)
    0000b99c 0.0024万 :osal.obj (.text:osal_service_entry)
    0000b9c0 00000024000000024 app_pem3.oem3 (.text:ti_SysBIOS_BIOS_registerRTSLock__I)
    0000b9e4 00000024400000024 app_pem3.oem3 (.text:ti_SysBIOS_BIOS_removeRTSLock__I)
    0000ba08 000000240.8万00024</s>0.0024万 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_arm_cc26xx_Timer_getMaxTicks__E)
    0000ba2c 0.0022万 iCall.obj (.text:iCall_setTimerMSecs)
    0000ba4e 0.0022万 drivers_cc26x0r2.aem3:List.oem3 (.text:List_Put)
    0000ba70 000000227万00022</s>0.0022万 cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    0000ba92 000000029.2万00002</s>0.0002万 simile_peripheral_cc2640r2lp_stack_library.lib : hal_assert.obj (.text:halAssertSpinlock)
    0000ba94 000000209.4万00020</s>0.002万 DPL_cc26x0r2.aem3:PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_schedulerDisable)
    0000bab4 00000020400000020 :PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_schedulerRestore)
    0000bad4 00000020400000020 cc2640_ll_pxxx.A:ll_isx.o (.text)
    0000baf4 00000020400000020 cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    0000bb14 000000201.4万00020</s>0.002万 gattservapp_util.obj (.text:gattServApp_FindCharCfgItem13美元)
    0000bb34 000000203.4万00020</s>0.002万 simile_peripheral_cc2640r2lp_stack_library.lib:osal_timers.obj (.text:osalFindTimer)
    0000bb54 000000205.4万00020</s>0.002万 :osal.obj (.text:osal_memcmp)
    0000bb74 000000207.4万00020</s>0.002万 :osal.obj (.text:osal_msg_deallocate)
    0000bb94 000000209.4万00020</s>0.002万 :osal.obj (.text:osal_msg_send)
    0000bbb4 00000020400000020 : osal.obj (.text:osal_proxy2alien24美元)
    0000bbd4 00000020400000020 rtsv7M3_T_le_eabi.lib:memchr.obj (.text)
    0000bbf4 00000020400000020 app_pem3.oem3 (.text:ti_SysBIOS_BIOS_rtsLock__i)
    0000bc14 000000201.4万00020</s>0.002万 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_arm_cc26xx_Timer_dynamicStub__E)
    0000bc34 0000001e40000001e Drivers_cc26x0r2.aem3:PowerCC26XX.oem3 (.text:Power_getTransitionLatency)
    0000bc52 0000001e20000001e simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:gapBondMgrInvertCharCfgItem31美元)
    0000bc70 0000001e00000001e :gapbondmgr.obj (.text:gapBondSetupPrivFlag31美元)
    0000bc8e 0.0001万e :osal_SNV_wrapper.obj (.text:osal_SNV_read)
    0000bcac 0.0001万c :gapbondmgr.obj (.text:GAPBondMgr_Register)
    0000bcc8 0000001c80000001c :gapbondmgr.obj (.text:GAPBondMgr_SupportsEnhancedPrivv)
    0000bce4 0000001c40000001c iCall.obj (.text:iCall_primRepostSync6美元)
    0000bd00 0000001c00000001c driverlib.lib:flash.obj (.text:NOROM_FlashProgram)
    0000bd1c 0.0001万c : flash.obj (.text:NOROM_FlashSectorErase)
    0000bd38 0000001c80000001c drivers_cc26x0r2.aem3:PINCC26XX.oem3 (.text:PINCC26XX_setIoCfgMu)
    0000bd54 0000001c40000001c :PINCC26XX.oem3 (.text:PIN_hwi)
    0000bd70 0000001c00000001c RFCC26XX_singlemode.obj (.text:rf_runDirectCmd)
    0000bd8c 0.0001万c simple_peripher.obj (.text:SimpleBLEPeripheral_pairStateCB1美元)
    0000bda8 0000001c80000001c TRNGCC26XX.OBJ (.TEXT:TRNGCC26XX_OPEN)
    0000bdc4 0000001c40000001c simile_peripheral_cc2640r2lp_stack_library.lib:osal_SNV_wrapper.obj (.text:enableCache28美元)
    0000bde0 0000001c00000001c :gapbondmgr.obj (.text:gapBondFreeAuthEvt31美元)
    0000bdfc 0.0001万c :hal_assert.obj (.text:halAssertHandlerExt)
    0000be18 0000001c80000001c TRNGCC26XX.OBJ (.TEXT:openTRNG)
    0000be34 0000001c40000001c simile_peripheral_cc2640r2lp_stack_library.lib : osal.obj (.text:osal_memdup)
    0000be50 0000001c00000001c :osal.obj (.text:osal_revmemcpy)
    0000be6c 0.0001万c ROM_SysBIOS.aem3:ROM_SysBIOS.OBJ (.text:ti_SysBIOS_KNL_Swi_construt2__E)
    0000be88 0000001a80000001a iCall.obj (.text:iCall_enterCSImpl)
    0000bea2 0000001a20000001a simple_peripher.obj (.text:SimpleBLEPeripheral_passcodeCB1美元)
    0000bebc 0.0001万a simile_peripheral_cc2640r2lp_stack_library.lib:osal.obj (.text:osal_isbufset)
    0000bed6 00000002600000002 iCall_API_lite.obj (.text:rfErrCb)
    0000bed8 00000018800000018 driverlib.lib:chipinfo.obj (.text:NOROM_ChipInfo_GetPackageType)
    0000bef0 00000018000000018 :RFC.OBJ (.text:NOROM_RFCCpeIntGetAndClear)
    0000bf08 000000180.8万00018</s>0.0018万 drivers_cc26x0r2.aem3:PowerCC26XX.oem3 (.text:Power_idleFunc)
    0000bf20 000000182万00018</s>0.0018万 RFCC26XX_singlemode.obj (.text:Q_pop4美元)
    0000bf38 000000183.8万00018</s>0.0018万 RFCC26XX_singlemode.obj (.text:rf_runImmediateCmd)
    0000bf50 000000185万00018</s>0.0018万 simile_peripheral_cc2640r2lp_stack_library.lib:ble_dispatch_lite.obj (.text:bleDispatch_BMFree)
    0000bf68 000000186.8万00018</s>0.0018万 drivers_cc26x0r2.aem3:PowerCC26XX.oem3 (.text:configureRFCoreClocks)
    0000bf80 000000188万00018</s>0.0018万 :CryptoCC26XX.oem3 (.text:cryptoTransactionPoll)
    0000bf98 000000189.8万00018</s>0.0018万 app_pem3.oem3 (.text:free)
    0000bfb0 00000018000000018 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:gapBondMgrFindCharCfgItem31美元)
    0000bfc8 00000018800000018 :ble-dispatch.lite.obj (.text:iCall_liteMsgParser)
    0000bfe0 00000018000000018 : osal.obj (.text:osal_buffer_UINT32)
    0000bff8 00000018800000018 :osal.obj (.text:osal_memcpy)
    0000c010 000000181万00018</s>0.0018万 rtsv7M3_T_le_eabi.lib : args_main.obj (.text)
    0000c028 000000182.8万00018</s>0.0018万 :ll_mul_t2.obj (.text)
    0000c040 000000184万00018</s>0.0018万 : strcmp.obj (.text)
    0000c058 000000185.8万00018</s>0.0018万 RFCC26XX_singlemode.obj (.text:swiFxnFsm4美元)
    0000c070 000000187万00018</s>0.0018万 app_pem3.oem3 (.text:ti_SysBIOS_BIOS_rts解锁__i)
    0000c088 000000188.8万00018</s>0.0018万 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_states_HeapCallback_Instance_init__E)
    0000c0a0 00000018000000018 :ROM_SysBIOS.OBJ (.text:ti_SysBIOS_KNL_Swi_OR_E)
    0000c0b8 00000018800000018 app_pem3.oem3 (.text:ti_SysBIOS_ROM_cortexm_cc26xx_R2_CC26xx_checkRevision__E)
    0000c0d0 00000018000000018 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:XDC_runtime错误_init__E)
    0000c0e8 00000016800000016 iCall.obj (.text:iCall_abort)
    0000c0fe 0.0016万 iCall.obj (.text:iCall_leaveCSImpl)
    0000c114 0000001611.4万00016</s>0.0016万 iCall.obj (.text:iCall_pwrDispense)
    0000c12a 0.0016万 iCall.obj (.text:iCall_pwrRequire)
    0000c140 0000001614万00016</s>0.0016万 simile_peripheral_cc2640r2lp_stack_library.lib : rom_init.obj (.text:rom_Spinlock)
    0000c156 0000001615.6万00016</s>0.0016万 cc2640_ll_pxxx.A:ll_isx.o (.text)
    0000c16c 0.0016万 BLE用户配置.obj (.text:driverTable_fnSpinlock)
    0000c182 0000001618.2万00016</s>0.0016万 simple_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:gapBondMgrEraseAllBondings31美元)
    0000c198 0000001619.8万00016</s>0.0016万 app_pem3.oem3 (.text:ti_SysBIOS_BIOS_errorRaiseHook__i)
    0000c1ae 0.0016万 app_pem3.oem3 (.text:ti_SysBIOS_BIOS_exitFunction__i)
    0000c1c4 00000014400000014 RFCC26XX_singlemode.obj (.text:RF_Params_init)
    0000c1d8 00000014800000014 cc2640_ll_pxxx.a:ll_data.o (.text)
    0000c1ec 0.0014万 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:gapBondMgr_gapIdle31美元)
    0000c200 0000001420万00014</s>0.0014万 rtsv7M3_T_le_eabi.lib:_lock.obj (.text)
    0000c214 0000001421.4万00014</s>0.0014万 : strlen.obj (.text)
    0000c228 0000001422.8万00014</s>0.0014万 simile_peripheral_cc2640r2lp_stack_library.lib:osal_SNV_wrapper.obj (.text:setActivePage28美元)
    0000c23c 0.0014万 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_arm_cc26xx_Timer_getCount64_E)
    0000c250 0000001425万00014</s>0.0014万 app_ble_pem3.oem3 (.text:ti_SysBIOS_堆 叠_HeapCallback_Object__Get__S)
    0000c264 0000001426.4万00014</s>0.0014万 app_pem3.oem3 (.text:ti_SysBIOS_KNL_Clock_doTick__i)
    0000c278 0000001227.8万00012</s>0.0012万 RFCC26XX_singlemode.obj (.text:RF_getCmdlOp)
    0000c28a 0.0012万 DPL_cc26x0r2.aem3:SemaphoreP_tirtos.oem3 (.text:SemaphoreP_Pend)
    0000c29c 0.0012万 rtsv7M3_T_le_eabi.lib:strcpy.obj (.text)
    0000c2ae 0.0012万 app_pem3.oem3 (.text:xdc_runtime _Startup_exec__i)
    0000c2c0 00000010000000010 DPL_cc26x0r2.aem3:ClockP_tirtos.oem3 (.text:ClockP_isActive)
    0000c2d0 00000010000000010 gattservapp_util.obj (.text:GATTServApp_ReadCharCfg)
    0000c2e0 00000010000000010 DPL_cc26x0r2.aem3:hwip_tirtos.oem3 (.text:hwip_Params_init)
    0000c2f0 00000010000000010 iCall.obj (.text:iCall_taskEntire6美元)
    0000c300 0000001030万00010</s>0.001万 simile_peripheral_cc2640r2lp_stack_library.lib : onboard.obj (.text:Onboard rand )
    0000c310 0000001031万00010</s>0.001万 simple_peripher.obj (.text:SimpleBLEPeripheral_clockHandler1美元)
    0000c320 0000001032万00010</s>0.001万 DPL_cc26x0r2.aem3:swip_tirtos.oem3 (.text:swip_Params_init)
    0000c330 0000001033万00010</s>0.001万 Util.obj (.text:Util_isActive)
    0000c340 0000001034万00010</s>0.001万 cc2640_ll_pxxx.A:ll_isx.o (.text)
    0000c350 0000001035万00010</s>0.001万 :LL_scheduler.o (.text)
    0000c360 0000001036万00010</s>0.001万 cc26xx_gap_pxxx.a:gap_linkmgr.o (.text)
    0000c370 0000001037万00010</s>0.001万 RFCC26XX_singlemode.obj (.text:clkPowerUpFxn4美元)
    0000c380 0000001038万00010</s>0.001万 Peripheral_OBJ (.text:gapRole_setEvent14美元)
    0000c390 0000001039万00010</s>0.001万 simile_peripheral_cc2640r2lp_stack_library.lib:osal_memory_iCall.obj (.text:osal_mem_alloc)
    0000c3a0 00000010000000010 :osal_memory_iCall.obj (.text:osal_mem_freee)
    0000c3b0 00000010000000010 :osal_SNV_wrapper.obj (.text:setXferPage28美元)
    0000c3c0 00000010000000010 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_arm_m3_Hwi_getHandle__E)
    0000c3d0 00000010000000010 :ROM_SysBIOS.OBJ (.text:ti_SysBIOS_family_arm_m3_HWI_POST_E)
    0000c3e0 00000010000000010 :ROM_SysBIOS.OBJ (.text:ti_SysBIOS_states_HeapCallback_alloc__E)
    0000c3f0 00000010000000010 :ROM_SysBIOS.OBJ (.text:ti_SysBIOS_states_HeapCallback_free__E)
    0000c400 0000001040万00010</s>0.001万 :ROM_SysBIOS.OBJ (.text:ti_SysBIOS_States_HeapCallback_getStats__E)
    0000c410 0000001041万00010</s>0.001万 :ROM_SysBIOS.OBJ (.text:ti_SysBIOS_states_HeapCallback_isLocking__E)
    0000c420 0000000e4.2亿0e iCall.obj (.text:iCall_signal)
    0000c42e 0万e Util.obj (.text:Util_construtQueue)
    0000c43c 0万e rtsv7M3_T_le_eabi.lib : copy_decomppress_none.obj (.text:decpress:none)
    0000c44a 0万e ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_arm_cc26xx_TimestampProvider_get32__E)
    0000c458 0000000c4.58亿0c Drivers_cc26x0r2.aem3:CryptoCC26XX.oem3 (.text:CryptoCC26XX_INIT)
    0000c464 0000000c4.64亿0c Display.aem3:Display.oem3 (.text:Display_doClearLines)
    0000c470 0000000c4.7亿0c RFCC26XX_singlemode.obj (.text:FsmNextState4美元)
    0000c47c 0万c iCall.obj (.text:iCall_clockFunc6美元)
    0000c488 0000000c4.88亿0c drivers_cc26x0r2.aem3:List.oem3 (.text:List_Empty)
    0000c494 0000000c4.94亿0c driverlib.lib : cpu.obj (.text:NOROM_CPUcpsid)
    0000c4a0 0000000c00000000c :cpu.obj (.text:NOROM_CPUcpsie)
    0000c4ac 0万c :osc.obj (.text:NOROM_OSC_HPOSCRelativeFrquencyOffsetToRFCoreFormatConvert)
    0000c4b8 0000000c80000000c Drivers_cc26x0r2.aem3:PowerCC26XX.oem3 (.text:Power_getConstraintMask)
    0000c4c4 0000000c40000000c :PowerCC26XX.oem3 (.text:Power_getDependencyCount)
    0000c4d0 0000000c00000000c cc2640_ll_pxxx.a:ll_scheduler.o (.text)
    0000c4dc 0万c :LL_scheduler.o (.text)
    0000c4e8 0000000c80000000c cc26xx_HCI_tl_none.a:HCI_tl.o (.text)
    0000c4f4 0000000c40000000c :HCI_tl.o (.text)
    0000c500 0000000c5亿0c :HCI_tl.o (.text)
    0000c50c 0万c cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    0000c518 0000000c5.18亿0c rtsv7M3_T_le_eabi.lib : copy_zero_init.obj (.text:decpress:Zi)
    0000c524 0000000c5.24亿0c iCall.obj (.text:matchLiteCS6美元)
    0000c530 0000000c5.3亿0c iCall.obj (.text:osalHeapGetStatsFxn)
    0000c53c 0万c iCall.obj (.text:osalHeapInitFxn)
    0000c548 0000000c5.48亿0c simile_peripheral_cc2640r2lp_stack_library.lib:osal_cbtimer.obj (.text:osal_CbTimerStart)
    0000c554 0000000c5.54亿0c :osal.obj (.text:osal_self)
    0000c560 0000000c5.6亿0c ROM_SysBIOS.aem3:ROM_SysBIOS.OBJ (.text:ti_SysBIOS_BIOS_getThreadType__E)
    0000c56c 0万c :ROM_SysBIOS.OBJ (.text:ti_SysBIOS_KNL_Swi_getTrigger__E)
    0000c578 0000000c5.78亿0c :ROM_SysBIOS.OBJ (.text:ti_SysBIOS_KNL_Swi_self__E)
    0000c584 0000000c5.84亿0c app_pem3.oem3 (.text:xdc_runtime _Startup_reset_i)
    0000c590 0000000a5.9亿0a simile_peripheral_cc2640r2lp_stack_library.lib : hal_flash_wrapper.obj (.text:HalFlashWrite)
    0000c59a 0万a iCall.obj (.text:iCall_stopTimer)
    0000c5a4 0000000a40000000a simple_peripheral.obj (.text:SimpleBLEPeripheral_charValueChangeCB1美元)
    0000c5ae 0万a simple_peripher.obj (.text:SimpleBLEPeripheral_stateChangeCB1美元)
    0000c5b8 00000008800000008 Drivers_cc26x0r2.aem3:CryptoCC26XX.oem3 (.text:CryptoCC26XX_Params_init)
    0000c5c0 00000008000000008 RFCC26XX_singlemode.obj (.text:rf_flushCmd)
    0000c5c8 00000008800000008 Drivers_cc26x0r2.aem3:CryptoCC26XX.oem3 (.text:cryptoPostNotify)
    0000c5d0 00000006000000006 DPL_cc26x0r2.aem3:ClockP_tirtos.oem3 (.text:ClockP_Params_init)
    0000c5d6 00000006600000006 Drivers_cc26x0r2.aem3:CryptoCC26XX.oem3 (.text:CryptoCC26XX_transact)
    0000c5dc 0.0006万 :CryptoCC26XX.oem3 (.text:CryptoCC26XX_transactPolling)
    0000c5e2 00000006200000006 iCall.obj (.text:iCall_freeMsg)
    0000c5e8 00000006800000006 driverlib.lib : cpu.obj (.text:NOROM_CPUdelay)
    0000c5ee 0.0006万 cc2640_ll_pxxx.a:ll_error_end_causes .o (.text)
    0000c5f4 00000006400000006 RFCC26XX_singlemode.obj (.text:clkInactivityFxn4美元)
    0000c5fa 0.0006万 iCall.obj (.text:osalHeapAllocFxn)
    0000c600 0000000660万00006</s>0.0006万 iCall.obj (.text:osalHeapFreeFxn)
    0000c606 0000000660.6万00006</s>0.0006万 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_arm_m3_HWI_setFunc__E)
    0000c60c 0.0004万 DPL_cc26x0r2.aem3:PowerCC26XX_tirtos.oem3 (.text:CPUwfi)
    0000c610 0000000461万00004</s>0.0004万 :ClockP_tirtos.oem3 (.text:ClockP_getTimeout)
    0000c614 0000000461.4万00004</s>0.0004万 :ClockP_tirtos.oem3 (.text:ClockP_setTimeout)
    0000c618 0000000461.8万00004</s>0.0004万 :ClockP_tirtos.oem3 (.text:ClockP_start)
    0000c61c 0.0004万 :ClockP_tirtos.oem3 (.text:ClockP_stop)
    0000c620 0000000462万00004</s>0.0004万 simile_peripheral_cc2640r2lp_stack_library.lib : gap.obj (.text:gap_UpdateResolvingList)
    0000c624 0000000462.4万00004</s>0.0004万 DPL_cc26x0r2.aem3:hwip_tirtos.oem3 (.text:hwip_disable)
    0000c628 0000000462.8万00004</s>0.0004万 :hwip_tirtos.oem3 (.text:hwip_enableInterrupt)
    0000c62c 0.0004万 :hwip_tirtos.oem3 (.text:hwip_post)
    0000c630 0000000463万00004</s>0.0004万 :hwip_tirtos.oem3 (.text:hwip_setFunc)
    0000c634 0000000463.4万00004</s>0.0004万 iCall.obj (.text:iCall_getTicks)
    0000c638 0000000463.8万00004</s>0.0004万 iCall.obj (.text:iCall_malloc)
    0000c63c 0.0004万 drivers_cc26x0r2.aem3:List.oem3 (.text:List_head)
    0000c640 0000000464万00004</s>0.0004万 :List.oem3 (.text:List_next)
    0000c644 0000000464.4万00004</s>0.0004万 RFCC26XX_singlemode.obj (.text:Q_peek 4美元)
    0000c648 0000000464.8万00004</s>0.0004万 DPL_cc26x0r2.aem3:SemaphoreP_tirtos.oem3 (.text:SemaphoreP_post)
    0000c64c 0.0004万 :swip_tirtos.oem3 (.text:swip_disable)
    0000c650 0000000465万00004</s>0.0004万 :swip_tirtos.oem3 (.text:swip_getTrigger)
    0000c654 0000000465.4万00004</s>0.0004万 :swip_tirtos.oem3 (.text:swip_or)
    0000c658 0000000465.8万00004</s>0.0004万 Util.obj (.text:Util_startClock)
    0000c65c 0.0004万 Util.obj (.text:Util_stopClock)
    0000c660 0000000466万00004</s>0.0004万 Drivers_cc26x0r2.aem3:PowerCC26XX.oem3 (.text:ResourcenopHandler)
    0000c664 0000000466.4万00004</s>0.0004万 iCall.obj (.text:osalHeapIsBlockingFxn)
    0000c668 0000000466.8万00004</s>0.0004万 simile_peripheral_cc2640r2lp_stack_library.lib : osal.obj (.text:osal_memset)
    0000c66c 0.0004万 : osal.obj (.text:osal_strlen)
    0000c670 0000000467万00004</s>0.0004万 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_stams_HeapCallback_defaultCreate)
    0000c674 0000000467.4万00004</s>0.0004万 :ROM_SysBIOS.OBJ (.text:ti_SysBIOS_KNL_Clock_isActive__E)
    0000c678 0000000267.8万00002</s>0.0002万 app_pem3.oem3 (.text:ti_SysBIOS_BIOS_nullFunc__i)
    0000c67a 0.0002万 app_pem3.oem3 (.text:ti_SysBIOS_ROM_cortexm_cc26xx_R2_CC26xx_badRomRevision__E)
    0000c67c 0.0002万 ROM_SysBIOS.aem3:ROM_SysBIOS.OBJ (.text:XDC_runtime _SysCallback_defaultAbort)
    0000c67e 0.0002万 :ROM_SysBIOS.OBJ (.text:XDC_Runtime_SysCallback_defaultExit)
    0000c680 0000000868万00008</s>0.0008万 (.tramp.ti_SysBIOS_family_arm_m3_Hwi_enableInterrupt__E.1)
    0000c688 0000000868.8万00008</s>0.0008万 (.tramp.ti_SysBIOS_KNL_Queue_construct.1)
    0000c690 0000000869万00008</s>0.0008万 BLE_R2.symbols (.tramp.LL_PseudoRand.1)
    0000c698 0000000869.8万00008</s>0.0008万 (.tramp.xdc_runtime启动模式__i.1)
    0000c6a0 00000008000000008 (.tramp.ti_SysBIOS_KNL_Clock_logTick__e.1)
    0000c6a8 00000008800000008 BLE_R2.symbols (.tramp.llResetRadio)
    0000c6b0 00000008000000008 (.tramp.ti_SysBIOS_KNL_Swi_post__e.1)
    0000c6b8 00000008800000008 (.tramp.ti_SysBIOS_BIOS_RtsGateProxy_Leav__E.1)
    0000c6c0 00000008000000008 (.tramp.xdc_runtime内存免费__e.1)
    0000c6c8 00000008800000008 (.tramp.ti_SysBIOS_KNL_Swi_construct.1)
    0000c6d0 00000008000000008 (.tramp.ti_SysBIOS_RTsGateProxy_enter__e.1)
    0000c6d8 00000008800000008 BLE_R2.symbols (.tramp.llProcessTxData.1)
    0000c6e0 00000008000000008 BLE_R2.symbols (.tramp.gap_GetParamValue.1)
    0000c6e8 00000008800000008 BLE_R2.symbols (.tramp.linkDB_State.1)
    0000c6f0 00000008000000008 BLE_R2.symbols (.tramp.L2CAP_BM_ALLO.1)
    0000c6f8 00000008800000008 (.tramp.ti_SysBIOS_KNL_semaphore_construct.1)
    0000c700 0000000870万00008</s>0.0008万 (.tramp.xdc_runtime内存alloc__e.1)
    0000c708 0000000870.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.gattServApp_RegisterServiceCBs.1)
    0000c710 0000000871万00008</s>0.0008万 BLE_R2.symbols (.tramp.GATT_RegisterService.1)
    0000c718 0000000871.8万00008</s>0.0008万 (.tramp.XDC_runtime核心CreateObject__I.1)
    0000c720 0000000872万00008</s>0.0008万 (.tramp.ti_SysBIOS_KNL_Task_Startup__e.1)
    0000c728 0000000872.8万00008</s>0.0008万 (.tramp.ti_SysBIOS_KNL_Swi_startup__e.1)
    0000c730 0000000873万00008</s>0.0008万 (.tramp.ti_SysBIOS_hal _HWI_STARTUB__E.1)
    0000c738 0000000873.8万00008</s>0.0008万 (.tramp.ti_SysBIOS_family_arm_cc26xx_Timer_startup__e.1)
    0000c740 0000000874万00008</s>0.0008万 (.tramp.xdc_runtime系统atexit__e.1)
    0000c748 0000000874.8万00008</s>0.0008万 (.tramp.ti_SysBIOS_BIOS_linkedWithIncorrectBootLibrary__E.1)
    0000c750 0000000875万00008</s>0.0008万 (.tramp.ti_SysBIOS_KNL_Swi_disable__e.1)
    0000c758 0000000875.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.HCI_LE_AddWhiteListCmd. 1)
    0000c760 0000000876万00008</s>0.0008万 BLE_R2.symbols (.tramp.HCI_LE_ClearWhiteListCmd. 1)
    0000c768 0000000876.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.HCI_LE_SetAddressResolutionEnableCmd. 1)
    0000c770 0000000877万00008</s>0.0008万 BLE_R2.symbols (.tramp.smGenerateRandBuf.1)
    0000c778 0000000877.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.gap_PasscodeUpdate.1)
    0000c780 0000000878万00008</s>0.0008万 (.tramp.ti_SysBIOS_family_arm_m3_Hwi_construct。1)
    0000c788 0000000878.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.GATT_UpdateMT.1)
    0000c790 0000000879万00008</s>0.0008万 BLE_R2.symbols (.tramp.ATT_ExchangeMTURsp.1)
    0000c798 0000000879.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.hciInitEventMasas.1)
    0000c7a0 00000008000000008 (.tramp.ti_SysBIOS_KNL_Swi_Params__init__S.1)
    0000c7a8 00000008800000008 (.tramp.xdc_runtime启动rtsDone__e.1)
    0000c7b0 00000008000000008 BLE_R2.symbols (.tramp.gattServApp_ProcessMsg.1)
    0000c7b8 00000008800000008 (.tramp.ti_SysBIOS_family_arm_m3_Hwi_Params__init__S.1)
    0000c7c0 00000008000000008 (.tramp.ti_SysBIOS_KNL_semaphore_creation.1)
    0000c7c8 00000008800000008 (.tramp.ti_SysBIOS_KNL_semaphore_Params__init__S.1)
    0000c7d0 00000008000000008 BLE_R2.symbols (.tramp.sm_ResponseInit.1)
    0000c7d8 00000008800000008 BLE_R2.symbols (.tramp.Gap_PeriConnRegister.1)
    0000c7e0 00000008000000008 BLE_R2.symbols (.tramp.gap_PeriDevMgrInit.1)
    0000c7e8 00000008800000008 BLE_R2.symbols (.tramp.gap_SecParamsInit.1)
    0000c7f0 00000008000000008 BLE_R2.symbols (.tramp.gap_ParamsInit.1)
    0000c7f8 00000008800000008 (.tramp.xdc_runtime系统退出__e.1)
    0000c800 0000000880万00008</s>0.0008万 (.tramp.ti_SysBIOS_KNL_Clock_construct.1)
    0000c808 0000000880.8万00008</s>0.0008万 (.tramp.ti_SysBIOS_KNL_Queue_Put __E.1)
    0000c810 0000000881万00008</s>0.0008万 (.tramp.ti_SysBIOS_KNL_Event_CREATE.1)
    0000c818 0000000881.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.gattServApp_FindPrepareWriteQ.1)
    0000c820 0000000882万00008</s>0.0008万 BLE_R2.symbols (.tramp.linkDB_Register.1)
    0000c828 0000000882.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.GATT_RegisterForReq.1)
    0000c830 0000000883万00008</s>0.0008万 BLE_R2.symbols (.tramp.gattServApp_SetNumPrepareWrites.1)
    0000c838 0000000883.8万00008</s>0.0008万 (.tramp.ti_SysBIOS_KNL_Task_RESTORE__E.1)
    0000c840 0000000884万00008</s>0.0008万 (.tramp.ti_SysBIOS_KNL_Task_creation.1)
    0000c848 0000000884.8万00008</s>0.0008万 (.tramp.ti_SysBIOS_KNL_Task_disable__e.1)
    0000c850 0000000885万00008</s>0.0008万 BLE_R2.symbols (.tramp.llTimeDelta. 1)
    0000c858 0000000885.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.Gap_Bond.1)
    0000c860 0000000886万00008</s>0.0008万 BLE_R2.symbols (.tramp.llVerifyConnParamReqParams.1)
    0000c868 0000000886.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.gap_GetIRK.1)
    0000c870 0000000887万00008</s>0.0008万 BLE_R2.symbols (.tramp.HCI_LE_ClearResolvingListCmd. 1)
    0000c878 0000000887.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.gapFreeAuthLink.1)
    0000c880 0000000888万00008</s>0.0008万 BLE_R2.symbols (.tramp.sendTerminateEvent.1)
    0000c888 0000000888.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.disconnectNext.1)
    0000c890 0000000889万00008</s>0.0008万 BLE_R2.symbols (.tramp.linkDB_Remove.1)
    0000c898 0000000889.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.linkDB_role.1)
    0000c8a0 00000008000000008 BLE_R2.symbols (.tramp.gattServApp_FindWriteAttrCB.1)
    0000c8a8 00000008800000008 (.tramp.XDC_runtime错误_raiseX__e.1)
    0000c8b0 00000008000000008 (.tramp.ti_SysBIOS_BIOS_setThreadType__E.1)
    0000c8b8 00000008800000008 BLE_R2.symbols (.tramp.llAddTxDataEntry.1)
    0000c8c0 00000008000000008 BLE_R2.symbols (.tramp.LL_ENC_Encrypt.1)
    0000c8c8 00000008800000008 BLE_R2.symbols (.tramp.LL_TX_BM_alloc.1)
    0000c8d0 00000008000000008 BLE_R2.symbols (.tramp.GATT_BM_alloc.1)
    0000c8d8 00000008800000008 (.tramp.ti_SysBIOS_KNL_Clock_creation.1)
    0000c8e0 00000008000000008 (.tramp.ti_SysBIOS_KNL_Clock_Params__init__S.1)
    0000c8e8 00000008800000008 (.tramp.ti_SysBIOS_KNL_Clock_scheduleNextTick__E.1)
    0000c8f0 00000008000000008 (.tramp.ti_SysBIOS_KNL_Clock_WalkQueueDynamic__E.1)
    0000c8f8 00000008800000008 (.tramp.ti_SysBIOS_KNL_Clock_TimerProxy_getCurrentTick__E.1)
    0000c900 0000000890万00008</s>0.0008万 (.tramp.ti_SysBIOS_KNL_Task_Construct.1)
    0000c908 0000000890.8万00008</s>0.0008万 (.tramp.ti_SysBIOS_KNL_Task_Params__init__S.1)
    0000c910 0000000891万00008</s>0.0008万 (.tramp.ti_SysBIOS_family_arm_m3/hwi_disableFxn__e.1)
    0000c918 0000000891.8万00008</s>0.0008万 (.tramp.ti_SysBIOS_KNL_Clock_stop__e.1)
    0000c920 0000000892万00008</s>0.0008万 (.tramp.ti_SysBIOS_KNL_Clock_start__e.1)
    0000c928 0000000892.8万00008</s>0.0008万 (.tramp.ti_SysBIOS_KNL_Clock_setTimeout__E.1)
    0000c930 0000000893万00008</s>0.0008万 BLE_R2.symbols (.tramp.sm_c1new.1)
    0000c938 0000000893.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.smpBuildPairingReq.1)
    0000c940 0000000894万00008</s>0.0008万 BLE_R2.symbols (.tramp.smpBuildPairingRsp.1)
    0000c948 0000000894.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.gapGetDevAddress.1)
    0000c950 0000000895万00008</s>0.0008万 BLE_R2.symbols (.tramp.gapGetDevAddressMode.1)
    0000c958 0000000895.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.smSetPairingReqRsp.1)
    0000c960 0000000896万00008</s>0.0008万 (.tramp.ti_SysBIOS_BIOS_START__E.1)
    0000c968 0000000896.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.ATT_ReadByTypeRsp.1)
    0000c970 0000000897万00008</s>0.0008万 BLE_R2.symbols (.tramp.gattServApp_buildReadByTypeRsp.1)
    0000c978 0000000897.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.GATT_VerifyReadPermissions.1)
    0000c980 0000000898万00008</s>0.0008万 BLE_R2.symbols (.tramp.ATT_GetMT.1)
    0000c988 0000000898.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.gap_SendSlaveSecurityRequest.1)
    0000c990 0000000899万00008</s>0.0008万 BLE_R2.symbols (.tramp.gap_Signable.1)
    0000c998 0000000899.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.eccRom_genKeys.1)
    0000c9a0 00000008000000008 BLE_R2.symbols (.tramp.GATT_FindHandleUUUU.1)
    0000c9a8 00000008800000008 BLE_R2.symbols (.tramp.LL_PRIV_Init.1)
    0000c9b0 00000008000000008 BLE_R2.symbols (.tramp.llInitFeatureSet.1)
    0000c9b8 00000008800000008 BLE_R2.symbols (.tramp.llReleaseAllConnId.1)
    0000c9c0 00000008000000008 BLE_R2.symbols (.tramp.llConnCleanup.1)
    0000c9c8 00000008800000008 BLE_R2.symbols (.tramp.LL_ClearWhiteList.1)
    0000c9d0 00000008000000008 BLE_R2.symbols (.tramp.WL_Init.1)
    0000c9d8 00000008800000008 BLE_R2.symbols (.tramp.llRfInit.1)
    0000c9e0 00000008000000008 BLE_R2.symbols (.tramp.gap_authenticate.1)
    0000c9e8 00000008800000008 BLE_R2.symbols (.tramp.L2CAP_GetMT.1)
    0000c9f0 00000008000000008 BLE_R2.symbols (.tramp.eccRom_genSharedSecret。1)
    0000c9f8 00000008800000008 (.tramp.ti_SysBIOS_KNL_semaphore_post__e.1)
    0000ca00 000000080万00008</s>0.0008万 (.tramp.ti_SysBIOS_KNL_semaphore_pend__e.1)
    0000ca08 000000080.8万00008</s>0.0008万 (.tramp.ti_SysBIOS_KNL_Event_POST__E.1)
    0000ca10 000000081万00008</s>0.0008万 (.tramp.ti_SysBIOS_KNL_Clock_getTicks__e.1)
    0000ca18 000000081.8万00008</s>0.0008万 (.tramp.ti_SysBIOS_KNL_Task_self__e.1)
    0000ca20 000000082万00008</s>0.0008万 BLE_R2.symbols (.tramp.llCreateRxBuffer.1)
    0000ca28 000000082.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.llProcessSlaveControlPacket.1)
    0000ca30 000000083万00008</s>0.0008万 BLE_R2.symbols (.tramp.llCombinePDU.1)
    0000ca38 000000083.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.LL_RxDataCompleteBack.1)
    0000ca40 000000084万00008</s>0.0008万 BLE_R2.symbols (.tramp.LL_PRIV_UpdateRL.1)
    0000ca48 000000084.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.LL_ENC_Decryp.1)
    0000ca50 000000085万00008</s>0.0008万 BLE_R2.symbols (.tramp.RFHAL_NextDataEntryDone.1)
    0000ca58 000000085.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.RFHAL_GetNextDataEntry.1)
    0000ca60 000000086万00008</s>0.0008万 BLE_R2.symbols (.tramp.llHaltRadio)
    0000ca68 000000086.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.LL_PRIV_UpdateExtWLEntry.1)
    0000ca70 000000087万00008</s>0.0008万 BLE_R2.symbols (.tramp.WL_FindEntry.1)
    0000ca78 000000087.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.HCI_LE_AddDeviceToResolvingListCmd. 1)
    0000ca80 000000088万00008</s>0.0008万 BLE_R2.symbols (.tramp.HCI_LE_RemoveDeviceFromResolvingListCmd. 1)
    0000ca88 000000088.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.gap_TerminateAuth.1)
    0000ca90 000000089万00008</s>0.0008万 BLE_R2.symbols (.tramp.linkDB_find.1)
    0000ca98 000000089.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.smDetermineIOCaps.1)
    0000caa0 00000008000000008 BLE_R2.symbols (.tramp.llSortActiveConns.1)
    0000caa8 00000008800000008 BLE_R2.symbols (.tramp.llGetMinC.1)
    0000cab0 00000008000000008 BLE_R2.symbols (.tramp.llRealignConn.1)
    0000cab8 00000008800000008 BLE_R2.symbols (.tramp.gattServApp_FindReadAttrCB.1)
    0000cac0 00000008000000008 BLE_R2.symbols (.tramp.ATT_CompareUUU.1)
    0000cac8 00000008800000008 BLE_R2.symbols (.tramp.GATT_FindNextAttr.1)
    0000cad0 00000008000000008 BLE_R2.symbols (.tramp.GATT_FindHandle.1)
    0000cad8 00000008800000008 BLE_R2.symbols (.tramp.gattServApp_FindAuthorizeAttrCB.1)
    0000cae0 00000008000000008 BLE_R2.symbols (.tramp.llHardwareError.1)
    0000cae8 00000008800000008 BLE_R2.symbols (.tramp.Gap_NumActiveConnections.1)
    0000caf0 00000008000000008 BLE_R2.symbols (.tramp.linkDB_SecurityModeSCOnly。1)
    0000caf8 00000008800000008 BLE_R2.symbols (.tramp.sm_SetECCRegenerationCount.1)
    0000cb00 000000080万00008</s>0.0008万 BLE_R2.symbols (.tramp.Gap_SetParamValue.1)
    0000cb08 000000080.8万00008</s>0.0008万 (.tramp.ti_SysBIOS_KNL_Swi_RESTORE__E.1)
    0000cb10 000000081万00008</s>0.0008万 BLE_R2.symbols (.tramp.gap_RegisterBondMgrCBs.1)
    0000cb18 000000081.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.GATT_Init.1)
    0000cb20 000000082万00008</s>0.0008万 BLE_R2.symbols (.tramp.sm_Init.1)
    0000cb28 000000082.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.gap_Init.1)
    0000cb30 000000083万00008</s>0.0008万 BLE_R2.symbols (.tramp.L2CAP_Init.1)
    0000cb38 000000083.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.L2CAP_SetUserConfig.1)
    0000cb40 000000084万00008</s>0.0008万 BLE_R2.symbols (.tramp.llRfSetup.1)
    0000cb48 000000084.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.LL_PRIV_GenerateRPA.1)
    0000cb50 000000085万00008</s>0.0008万 BLE_R2.symbols (.tramp.LL_PRIV_IsIDA.1)
    0000cb58 000000085.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.LL_PRIV_FindPeerInRL.1)
    0000cb60 000000086万00008</s>0.0008万 BLE_R2.symbols (.tramp.LL_PRIV_IsResolable.1)
    0000cb68 000000086.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.LL_PRIV_IsRPA.1)
    0000cb70 000000087万00008</s>0.0008万 BLE_R2.symbols (.tramp.LL_PRIV_IsZeroIRK.1)
    0000cb78 000000087.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.LL_EnhancedConnectionCompleteBack.1)
    0000cb80 000000088万00008</s>0.0008万 BLE_R2.symbols (.tramp.llTimeCompare.1)
    0000cb88 000000088.8万00008</s>0.0008万 BLE_R2.symbols (.tramp.llGetCurrentTime.1)
    0000cb90 000000089万00008</s>0.0008万 BLE_R2.symbols (.tramp.llProcessPostRfOps.1)
    0000cb98 000000089.8万00008</s>0.0008万 (.tramp.ti_SysBIOS_family_arm_m3_Hwi_restoreFxn__e.1)
    
    .const 00000 0000cba000000e1e
    0000cba0 00000a10000000a10 simile_peripheral_cc2640r2lp_stack_library.lib : rom_init.obj (.const:rom_Flash_JT)
    0000d5b0 0000004c00000004c drivers_cc26x0r2.aem3:PowerCC26XX.oem3 (.const:resourceDB)
    0000d5fc 0.0004万c BLE用户配置.obj (.const:rfDriverTableBLE)
    0000d648 0000004864.8万00048</s>0.0048万 app_pem3.oem3 (.const:.string)
    0000d690 0000004469万00044</s>0.0044万 iCall_user_config.obj (.const:icallServiceTable)
    0000d6d4 0000002c40000002c GATT_uuid.OBJ (.const:$O9$$)
    0000d700 0000002c7亿2c BLE用户配置.obj (.const:cryptoDriverTableBLE)
    0000d72c 0.0028万 CC2640_sentry.obj (.const:$O13$$)
    0000d754 0000002875.4万00028</s>0.0028万 simile_peripheral_cc2640r2lp_stack_library.lib : osal_iCall_Ble.obj (.const:taskArr)
    0000d77c 0.0028万 app_pem3.oem3 (.const:ti_SysBIOS_stamp_HeapCallback_Module__Fxns__C)
    0000d7a4 00000028400000028 app_pem3.oem3 (.const:xdc_runtime _Startup_sfxnTab__A)
    0000d7cc 0.0027万 BLE用户配置.obj (.const:TxPowerTable)
    0000d7f3 00000001300000001 CC2640_sentry.obj (.const)
    0000d7f4 00000024400000024 BLE用户配置.obj (.const:bleStackConfig)
    0000d818 0000002081.8万00020</s>0.002万 app_pem3.oem3 (.const:ti_SysBIOS_stamp_HeapCallback_Object__DESC_C)
    0000d838 0000001c8.38亿1c RFCC26XX_singlemode.obj (.const:RF_defaultParams4美元)
    0000d854 0000001c8.54亿1c app_pem3.oem3 (.const:ti_SysBIOS_stams_HeapCallback_Object__Params__C)
    0000d870 0000001887万00018</s>0.0018万 iCall.obj (.const:$O6$$)
    0000d888 0000001488.8万00014</s>0.0014万 BLE用户配置.obj (.const:driverTable)
    0000d89c 0.0014万 app_pem3.oem3 (.const:xdc_runtime _Startup_sfxnRTs__A)
    0000d8b0 00000011000000011 Util.obj (.const:.string:$P$T02美元$2)2美元)
    0000d8c1 00000002100000002 devinfoservice.obj (.const:.string:devInfo1.1073万CertUUID)
    0000d8c3 00000001300000001 Display.aem3:Display.oem3 (.const:Display_defaultParams)
    0000d8c4 00000010400000010 CC2640_sentre.obj (.const:PowerCC26XX_config)
    0000d8d4 00000010400000010 CC2640_santry.obj (.const:cryptoCC26XHWAttrs)
    0000d8e4 00000010400000010 iCall_user_config.obj (.const:eccDriverTable)
    0000d8f4 0000000c40000000c BLE用户配置.obj (.const:boardConfig)
    0000d900 0000000c9亿0c devinfoservice.obj (.const:devInfoCBs)
    0000d90c 0万c simple_GATT_PROFILE.OBJ (.const:simpleProfileCBs)
    0000d918 0000000c9.18亿0c iCall_user_config.obj (.const:trngDriverTable)
    0000d924 0000000c9.24亿0c app_pem3.oem3 (.const:xdc_runtime _Startup_firstFxns__a)
    0000d930 0000000893万00008</s>0.0008万 CC2640_sentry.obj (.const:CryptoCC26XX_config)
    0000d938 0000000893.8万00008</s>0.0008万 CC2640_sentry.obj (.const:PINCC26XX_hwAttrs)
    0000d940 0000000894万00008</s>0.0008万 devinfoservice.obj (.const:devInfoService11美元)
    0000d948 0000000894.8万00008</s>0.0008万 simple_GATT_PROFILE.OBJ (.const:simpleProfileService15美元)
    0000d950 0000000895万00008</s>0.0008万 app_pem3.oem3 (.const:ti_SysBIOS_family_arm_m3_Hwi_excHookFuncs__A)
    0000d958 0000000695.8万00006</s>0.0006万 BLE用户配置.obj (.const:appTxPwrTbl)
    0000d95e 0.0005万 simple外围设备.obj (.const:.string:$P$T01美元$1)1美元)
    0000d963 0000000196.3万00001</s>0.0001万 app_pem3.oem3 (.const:xdc_runtime文本_charTab__a)
    0000d964 0000000496.4万00004</s>0.0004万 CC2640_SENTRY_OBJ (.const:TRNGCC26XHWAttrs)
    0000d968 0000000496.8万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_family_arm_m3_Hwi_E_exception__C)
    0000d96c 0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_family_arm_m3_Hwi_E_noIsr_C)
    0000d970 0000000497万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_family_arm_m3_Hwi_excHookFuncs__C)
    0000d974 0000000497.4万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_family_arm_m3_Hwi_swiDisable__C)
    0000d978 0000000497.8万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_family_arm_m3_Hwi_swiRestoreHWi__C)
    0000d97c 0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_stamp_HeapCallback_Object__count__C)
    0000d980 0000000498万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_stamp_HeapCallback_allocInstFxn__C)
    0000d984 0000000498.4万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_stamp_HeapCallback_createInstFxn__C)
    0000d988 0000000498.8万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_stamp_HeapCallback_freeInstFxn__C)
    0000d98c 0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_Stamp_HeapCallback_getStatsInstFxn__C)
    0000d990 0000000499万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_stamp_HeapCallback_initInstFxn__C)
    0000d994 0000000499.4万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_stamp_HeapCallback_isBlockingInstFxn__C)
    0000d998 0000000499.8万00004</s>0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_KNL_Clock_tickPeriod__C)
    0000d99c 0.0004万 app_pem3.oem3 (.const:ti_SysBIOS_KNL_Idle_funclist_A)
    0000d9a0 00000002000000002 devinfoservice.obj (.const:.string:devInfoFirmwareRevUUID)
    0000d9a2 00000002200000002 devinfoservice.obj (.const:.string:devInfoHardwareRevUUID)
    0000d9a4 00000002400000002 devinfoservice.obj (.const:.string:devInfoMfrNameUUID)
    0000d9a6 00000002600000002 devinfoservice.obj (.const:.string:devInfoModelNumberUUID)
    0000d9a8 00000002800000002 devinfoservice.obj (.const:.string:devInfoPnpIdUUID)
    0000d9aa 0.0002万 devinfoservice.obj (.const:.string:devInfoSerialNumberUUID)
    0000d9ac 0.0002万 devinfoservice.obj (.const:.string:devInfoServUUID)
    0000d9ae 0.0002万 devinfoservice.obj (.const:.string:devInfoSoftwareRevUUID)
    0000d9b0 00000002000000002 devinfoservice.obj (.const:.string:devInfoSystemIdUUID)
    0000d9b2 00000002200000002 simple_GATT_PROFILE.OBJ (.const:.string:simpleProfileServUUID)
    0000d9b4 00000002400000002 simple_GATT配置文件.obj (.const:.string:simpleProfilechar1UUID)
    0000d9b6 00000002600000002 simple_GATT配置文件.obj (.const:.string:simpleProfilechar2UUID)
    0000d9b8 00000002800000002 simple_GATT配置文件.obj (.const:.string:simpleProfilechar3UUID)
    0000d9ba 0.0002万 simple_GATT配置文件.obj (.const:.string:simpleProfilechar4UUID)
    0000d9bc 0.0002万 simple_GATT配置文件.obj (.const:.string:simpleProfilechar5UUID)
    
    .rodata 00000 0000d9c000000090
    0000d9c0 00000038000000038 cc2640_l_pxxx.a:lL_config.o (.rodata)
    0000d9f8 00000018800000018 cc26xx_HCI_tl_none.a:HCI_tl.o (.rodata)
    0000da10 0000000c00000000c cc26xx_profiles_pxxx.a:gapgattserver.o (.rodata)
    0000da1c 0.0008万 cc2640_l_pxxx.a:lL_config.o (.rodata)
    0000da24 000000082.4万00008</s>0.0008万 cc26xx_profiles_pxxx.a:gapgattserver.o (.rodata)
    0000da2c 0.0008万 :gattservapp.o (.rodata)
    0000da34 000000043.4万00004</s>0.0004万 cc2640_l_pxxx.a:lL_config.o (.rodata)
    0000da38 000000043.8万00004</s>0.0004万 :lL_config.o (.rodata)
    0000da3c 0.0004万 :lL_config.o (.rodata)
    0000da40 000000044万00004</s>0.0004万 :lL_config.o (.rodata)
    0000da44 000000024.4万00002</s>0.0002万 :lL_config.o (.rodata)
    0000da46 000000024.6万00002</s>0.0002万 :lL_config.o (.rodata)
    0000da48 000000024.8万00002</s>0.0002万 :lL_config.o (.rodata)
    0000da4a 0.0002万 :lL_config.o (.rodata)
    0000da4c 0.0002万 :lL_config.o (.rodata)
    0000da4e 0.0001万 :lL_config.o (.rodata)
    0000da4f 0.0001万 :lL_config.o (.rodata)
    
    .cinit 00000 0000da500000050c
    0000da50 000003c95000.0003万c9 (.cinit.data.load)[加载图像,压缩= lzss]
    0000de19 000000291.9万00029</s>0.0029万 (.cinit..data:ti_SysBIOS_family_arm_m3_Hwi_Module__state__V.load)[加载映像,压缩= lzss]
    0000de42 000000214.2万00021</s>0.0021万 (.cinit..data:ti_SysBIOS_KNL_Task_Module__state__V.load)[加载映像,压缩= lzss]
    0000de63 0000001f30000001f (.cinit..data:ti_SysBIOS_BIOS_Module__state__V.load)[加载映像,压缩= lzss]
    0000de82 0000001e20000001e (.cinit..data:ti_SysBIOS_KNL_Clock_Module__state__V.load)[加载图像,压缩= lzss]
    0000deea0 00000010000000010 (.cinit..data:ti_SysBIOS_KNL_Swi_Module__state__V.load)[加载图像,压缩= lzss]
    0000deb0 0000000c00000000c (__TI_handler_table)
    0000debc 0万b (.cinit..data:ti_SysBIOS_family_arm_cc26xx_Timer_Module__state__V.load)[加载图像,压缩= lzss]
    0000dec7 00000001700000001 --hole --[填充=0]
    0000dec8 00000008800000008 (.cinit.bss.load)[加载映像,压缩= zero_init]
    0000ded0 00000008000000008 (.cinit..data:xdc_runtime _Memory_Module__state__V.load)[加载映像,压缩= lzss]
    0000ded8 00000007800000007 (.cinit..data:ti_SysBIOS_family_arm_cc26xx_TimestampProvider_Module__state__V.load)[加载映像,压缩= lzss]
    0000dedf 0.0007万 (.cinit..data:xdc_runtime启动模块__state__V.load)[加载映像,压缩= lzss]
    0000dee6 00000007600000007 (.cinit..data:xdc_runtime系统模块__state__V.load)[加载映像,压缩= lzss]
    0000契据0.0006万 (.cinit..data:xdc_runtime _Error_Module__state__V.load)[加载映像,压缩= lzss]
    0000def3 00000001300000001 --hole --[填充=0]
    0000def4 00000068400000068 (__TI_cinit_table)
    
    .snvSec
    * 00001 0001e0万 0000.1万
    0001e000 000010000万01000</s>0.1万 simile_peripheral_cc2640r2lp_stack_library.lib : osal_SNV_wrapper.obj (.snvSectors:retain)
    
    .ccfg. 00001 0001ffa800000058
    0001ffa8 00000058800000058 ccfg_app_ble.obj (.ccfg:Retain)
    
    .vecs 20万 2000000万c8 NoLoad部分
    2000万 000000c8 app_pem3.oem3 (.vectra)
    
    .data:ti_SysBIOS_KNL_Task_Module__state__V
    * 20.0001万 2000010万 0000.0044万 未初始化
    20.0001万00 000000440万00044</s>0.0044万 app_pem3.oem3 (.data:ti_SysBIOS_KNL_Task_Module__state__V)
    
    .data:ti_SysBIOS_family_arm_m3_Hwi_Module__state__V
    * 20.0001万 2000014.4万 0000.0034万 未初始化
    20.0001万44 000000344.4万00034</s>0.0034万 app_pem3.oem3 (.data:ti_SysBIOS_family_arm_m3_Hwi_Module__state__V)
    
    .data:ti_SysBIOS_KNL_Clock_Module__state__V
    * 020000178 0000002c 未初始化
    2000.0178万 0.0002万c app_pem3.oem3 (.data:ti_SysBIOS_KNL_Clock_Module__state__V)
    
    .data:ti_SysBIOS_BIOS_Module__state_V
    * 20.0001万 200001a400000024 未初始化
    20.0001万a4 00000024400000024 app_pem3.oem3 (.data:ti_SysBIOS_BIOS_Module__state__V)
    
    .data:ti_SysBIOS_KNL_Swi_Module__state__V
    * 20.0001万 200001c80000001c 未初始化
    20.0001万c8 0000001c80000001c app_pem3.oem3 (.data:ti_SysBIOS_KNL_Swi_Module__state__V)
    
    .data:ti_SysBIOS_family_arm_cc26xx_Timer_Module__state__V
    * 20.0001万 200001e400000008 未初始化
    20.0001万e4 00000008400000008 app_ble_pem3.oem3 (.data:ti_SysBIOS_family_arm_cc26xx_Timer_Module__state__V)
    
    .data:ti_SysBIOS_family_arm_cc26xx_TimestampProvider_Module__state__V
    * 20.0001万ec 0.0004万 未初始化
    20.0001万ec 0.0004万. app_pem3.oem3 (.data:ti_SysBIOS_family_arm_cc26xx_TimestampProvider_Module__state__V)
    
    .data:XDC_runtime_Startup_Module__state__V
    * 20.0001万 200001f000000008 未初始化
    20.0001万f0 00000008000000008 app_pem3.oem3 (.data:xdc_runstime_Startup_Module__state__V)
    
    .data:xdc_runtime系统模块__state__V
    * 20.0001万 200001f800000008 未初始化
    20.0001万f8 00000008800000008 app_pem3.oem3 (.data:xdc_runtime系统模块__state__V)
    
    .data:xdc_runtime内存模块__state__V
    * 20.0002万 2000020万 0000.0004万 未初始化
    20.0002万00 000000040万00004</s>0.0004万 app_pem3.oem3 (.data:xdc_runtime _Memory_Module__state__V)
    
    .data:xdc_runtime _Error_Module__state__V
    * 20.0002万 2000020.4万 0000.0002万 未初始化
    20.0002万04 000000020.4万00002</s>0.0002万 app_pem3.oem3 (.data:xdc_runtime _Error_Module__state__V)
    
    .bootVecs
    * 0万 0000000万 0000.0008万 DSECT
    0万00 000000080万00008</s>0.0008万 boot.aem3:boot.oem3 (.bootVecs)
    
    xdc.meta 0万 0000000万 0000.0106万 复制部分
    0万00 000001060万00106</s>0.0106万 app_pem3.oem3 (xdc.meta)
    
    xdc.noload
    * 0万 0000000万 0000万 copy section
    
    .init_array
    * 0万 0000000万 0000万 未初始化
    
    的.data 20.0002万 2000020.8万 0000.1618万 未初始化
    20.0002万08 000003640.8万00364</s>0.0364万 simple外围设备.obj (.data:$O2$$)
    200.0056万c 0.0004万 simile_peripheral_cc2640r2lp_stack_library.lib:osal_pwrmgr.obj (.data:$O15$$)
    20.0005万70 000003407万00340</s>0.034万 Peripheral.obj (.data:$O10$$)
    20.0008万b0 00000238000000238 RFCC26XX_singlemode.obj (.data:$O4$$)
    2万ae8 000001d4800万d4 devinfoservice.obj (.data:$O8$$)
    2万cbc 0.0194万 rtsv7M3_T_le_eabi.lib : defs.obj (.data:$O25$$)
    2万e50 000001745万00174</s>0.0174万 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.data:$O18$$)
    2万fc4 00000124400000124 simule_GATT配置文件.obj (.data:$O11$$)
    20.001万e8 00000114800000114 drivers_cc26x0r2.aem3:PowerCC26XX.oem3 (.data:PowerCC26XX_module)
    20.0011万fc 0万d0 rtsv7M3_T_le_eabi.lib : lowlev.obj (.data:$O24$$)
    20.0012万cc 0.0009万c iCall.obj (.data:$O5$$)
    2000.1368万 0.0007万c simile_peripheral_cc2640r2lp_stack_library.lib:osal_cbtimer.obj (.data:$O21$$)
    20.0013万e4 00000070400000070 cc26xx_profiles_pxxx.a:gapgattserver.o (.data)
    2000.1454万 0.0004万c app_pem3.oem3 (.data:ti_SysBIOS_KNL_Task_Object__table__V)
    20.0014万a0 00000048000000048 app_pem3.oem3 (.data:ti_SysBIOS_family_arm_cc26xx_Timer_Object__table__V)
    20.0014万e8 00000038800000038 app_pem3.oem3 (.data:ti_SysBIOS_Gates_GateMutex_Object__table__V)
    20.0015万20 000000302万00030</s>0.003万 cc2640_l_pxxx.a:lL_config.o (.data)
    20.0015万50 000000305万00030</s>0.003万 app_pem3.oem3 (.data:ti_SysBIOS_KNL_Swi_Module_State_0_readyQ_A)
    20.0015万80 000000308万00030</s>0.003万 app_pem3.oem3 (.data:ti_SysBIOS_KNL_Swi_Object__table__V)
    20.0015万b0 00000030000000030 app_pem3.oem3 (.data:ti_SysBIOS_KNL_Task_Module_State_0_readyQ__A)
    20.0015万e0 0000002c00000002c simile_peripheral_cc2640r2lp_stack_library.lib:osal.obj (.data:$O14$$)
    200.016万c 0.0024万 cc26xx_profiles_pxxx.a:gapgattserver.o (.data)
    20.0016万30 000000203万00020</s>0.002万 app_pem3.oem3 (.data:ti_SysBIOS_KNL_Clock_Object__table__V)
    20.0016万50 000000205万00020</s>0.002万 app_pem3.oem3 (.data:xdc_runtime _错误_IgnoreBlock)
    20.0016万70 000000187万00018</s>0.0018万 main.obj (.data:$O12$$)
    20.0016万88 000000188.8万00018</s>0.0018万 app_pem3.oem3 (.data:ti_SysBIOS_family_arm_m3_Hwi_Object__table__V)
    20.0016万a0 00000011000000011 simple_GATT_PROFILE.OBJ (.data:simpleProfileChar1UserDesp15美元)
    20.0016万b1 00000011100000011 simple_GATT_PROFILE.OBJ (.data:simpleProfileChar2UserDesp15美元)
    20.0016万c2 00000011200000011 simple_GATT_PROFILE.OBJ (.data:simpleProfileChar3UserDesp15美元)
    20.0016万d3 00000011300000011 simple_GATT_PROFILE.OBJ (.data:simpleProfileChar4UserDesp15美元)
    20.0016万e4 00000011400000011 simple_GATT_PROFILE.OBJ (.data:simpleProfileChar5UserDesp15美元)
    20.0016万f5 00000001500000001 TRNGCC26XX.OBJ (.DATA)
    20.0016万f6 00000002600000002 app_pem3.oem3 (.data:ti_SysBIOS_family_arm_m3_Hwi_Module_State_0_excActive__A)
    20.0016万f8 00000010800000010 iCall_user_config.obj (.data:bleAppServiceInfoTable)
    20.0017万08 000000100.8万00010</s>0.001万 cc26xx_profiles_pxxx.a:gattservapp.o (.data)
    20.0017万18 000000101.8万00010</s>0.001万 iCall_API_lite.obj (.data)
    20.0017万28 000000102.8万00010</s>0.001万 BLE_USER_CONFIG.OBJ (.DATA:rfRegTbl)
    2000.1738万 0万c rtsv7M3_T_le_eabi.lib : exit.obj (.data:$O1$$)
    2000.1744万 0万c app_ble_pem3.oem3 (.data:ti_SysBIOS_堆 叠_HeapCallback_Object__table__V)
    20.0017万50 000000095万00009</s>0.0009万 devinfoservice.obj (.data)
    20.0017万59 000000015.9万00001</s>0.0001万 cc26xx_profiles_pxxx.a:gapgattserver.o (.data)
    200.0175万a 0.0001万 :gapgattserver.o (.data)
    200.0175万b 0.0001万 :gapgattserver.o (.data)
    200.0175万c 0.0008万 simile_peripheral_cc2640r2lp_stack_library.lib : hal_asset.obj (.data:$O20$$)
    20.0017万64 000000086.4万00008</s>0.0008万 :osal_clock.obj (.data:$O22$$)
    200.0176万c 0.0008万 rtsv7M3_T_le_eabi.lib :_lock.obj (.data:$O23$$$)
    20.0017万74 000000087.4万00008</s>0.0008万 ECCROMCC26XX.OBJ (.DATA:$O3$$)
    200.0177万c 0.0008万 iCall_cc265.obj (.data:$O7$$)
    20.0017万84 000000088.4万00008</s>0.0008万 cc2640_l_pxxx.a:lL_data.o (.data)
    200.0178万c 0.0008万 app_pem3.oem3 (.data:ti_SysBIOS_family_arm_m3_Hwi_Module__root_V)
    20.0017万94 000000089.4万00008</s>0.0008万 app_pem3.oem3 (.data:ti_SysBIOS_Gates_GateHwi_Module__root_V)
    200.0179万c 0.0008万 app_pem3.oem3 (.data:ti_SysBIOS_Gates_GateMutex_Module__root_V)
    20.0017万a4 00000008400000008 app_pem3.oem3 (.data:ti_SysBIOS_hal _HWI_Module__root__V)
    20.0017万ac 0.0008万 app_pem3.oem3 (.data:ti_SysBIOS_堆 叠_HeapCallback_Module__root_V)
    20.0017万b4 00000008400000008 app_pem3.oem3 (.data:ti_SysBIOS_堆 叠_HeapMem_Module__root_V)
    20.0017万bc 0.0008万 app_pem3.oem3 (.data:ti_SysBIOS_KNL_Clock_Module__root_V)
    20.0017万c4 00000008400000008 app_pem3.oem3 (.data:ti_SysBIOS_KNL_Event_Module__root_V)
    20.0017万cc 0.0008万 app_pem3.oem3 (.data:ti_SysBIOS_KNL_Mailbox_Module__root_V)
    20.0017万d4 00000008400000008 app_pem3.oem3 (.data:ti_SysBIOS_KNL_Queue_Module__root_V)
    20.0017万dc 0.0008万 app_pem3.oem3 (.data:ti_SysBIOS_KNL_semaphore_Module__root_V)
    20.0017万e4 00000008400000008 app_pem3.oem3 (.data:ti_SysBIOS_KNL_Swi_Module__root_V)
    20.0017万ec 0.0008万 app_pem3.oem3 (.data:ti_SysBIOS_KNL_Task_Module__root_V)
    20.0017万f4 00000005400000005 simule_GATT配置文件.obj (.data)
    20.0017万f9 00000001900000001 simile_peripheral_cc2640r2lp_stack_library.lib:npi.obj (.data)
    20.0017万fa 0.0002万 —孔——
    20.0017万fc 0.0004万 :osal_SNV_wrapper.obj (.data:$O16$$)
    20.0018万00 000000040万00004</s>0.0004万 CC2640_sentry.obj (.data)
    20.0018万04 000000040.4万00004</s>0.0004万 BLE_USER_CONFIG.OBJ (.DATA)
    20.0018万08 000000040.8万00004</s>0.0004万 rtsv7M3_T_le_eabi.lib:stkdept_vars.obj (.data)
    200.018万c 0.0004万 simile_peripheral_cc2640r2lp_stack_library.lib : ble用户配置.obj (.data)
    20.0018万10 000000041万00004</s>0.0004万 :osal_bufmgr.obj (.data)
    20.0018万14 000000041.4万00004</s>0.0004万 app_pem3.oem3 (.data:ti_SysBIOS_family_arm_m3_Hwi_Module_State_0_excContext_A)
    20.0018万18 000000041.8万00004</s>0.0004万 app_pem3.oem3 (.data:ti_SysBIOS_family_arm_m3_Hwi_Module_State_0_excStack_A)
    200.0181万c 0.0004万 app_pem3.oem3 (.data:ti_SysBIOS_KNL_Task_Module_State_0_idleTask__A)
    
    .bss 20.0018万 2000182万 0000.0608万 未初始化
    20.0018万20 000002002万00200</s>0.02万 app_pem3.oem3 (.bss:taskStackSection)
    2.0001万a20 000001202万00120</s>0.012万 rtsv7M3_T_le_eabi.lib : trgmsg.obj (.bss:_CIOBUF_)
    2.0001万b40 000001104万00110</s>0.011万 驱动程序_cc26x0r2.aem3:PINCC26XX.oem3 (.bss:$O1$$)
    2.0001万c50 000000c85000万c8 (.common:ti_SysBIOS_family_arm_m3_Hwi_dispatchTable)
    2.0001万d18 000000801.8万00080</s>0.008万 (.common:cryptoCC26XXObjects)
    2.0001万d98 0000001c80000001c :CryptoCC26XX.oem3 (.bss:CryptoSem)
    2.0001万db4 00000014400000014 driverlib.lib:osc.obj (.bss:oscHfGlobals76美元)
    2.0001万dc8 00000010800000010 Util.obj (.bss:str1美元$2)2美元)
    2.0001万dd8 0000000c80000000c simile_peripheral_cc2640r2lp_stack_library.lib:osal_timers.obj (.bss:$O17$$)
    2.0001万de4 0000000c40000000c cc2640_ll_pxxx.a:ll_scheduler.o (.bss)
    2.0001万df0 00000008000000008 DPL_cc26x0r2.aem3:PowerCC26XX_tirtos.oem3 (.BSS:$O1$$)
    2.0001万df8 00000008800000008 RFCC26XX_singlemode.obj (.bss)
    2.0001万e00 000000080万00008</s>0.0008万 rtsv7M3_T_le_eabi.lib : trgdrv.obj (.bss:parmbuf61美元)
    2.0001万e08 000000080.8万00008</s>0.0008万 driverlib.lib : sys_Ctrl.obj (.bss:powerQualGlobals77美元)
    2.0001万e10 000000041万00004</s>0.0004万 cc26xx_profiles_pxxx.a:gapgattserver.o (.bss)
    2.0001万e14 000000041.4万00004</s>0.0004万 (.common:ClockP_tickPeriod)
    2.0001万e18 000000041.8万00004</s>0.0004万 (.common:taskEvents)
    2.0001万e1c 0.0004万 (.common:trngCC26XXObjects)
    2.0001万e20 000000012万00001</s>0.0001万 cc26xx_HCI_tl_none.a:HCI_tl.o (.bss)
    2.0001万e21 000000012.1万00001</s>0.0001万 :HCI_tl.o (.bss)
    2.0001万e22 000000012.2万00001</s>0.0001万 :HCI_tl.o (.bss)
    2.0001万e23 000000012.3万00001</s>0.0001万 :HCI_tl.o (.bss)
    2.0001万e24 000000012.4万00001</s>0.0001万 :HCI_tl.o (.bss)
    2.0001万e25 000000012.5万00001</s>0.0001万 (.common:driverlib_release_0_4.8919万)
    2.0001万e26 000000012.6万00001</s>0.0001万 (.common:g_hwiInt)
    2.0001万e27 000000012.7万00001</s>0.0001万 (.common:iCall_liteTaskId)
    
    .vtable 020001 20001e2.8万 0000万 未初始化
    
    的.vtable_ram
    * 020001 20001e2.8万 0000万 未初始化的
    
    vtable_ram
    * 020001 20001e2.8万 0000万 未初始化
    
    的.sysmem 020001 20001e2.8万 0000万 未初始化
    
    的.nonretenvar
    * 020001 20001e2.8万 0000万 未初始化
    
    的.stack 20.004万 2000400万 0000.04万 未初始化
    20.004万00 000004000万00400</s>0.04万 --hole --
    
    模块摘要
    
    模块 代码ro data rw数据
    -------- -------- ---------
    .\Application
    simule_peripher.obj 2706 5. 868
    Util.obj 246. 17. 16.
    ------------------------------- +----------- +----------- +----------- +
    总计: 2952 22. 884
    
    .\Drivers\ECC\
    ECCROMCC26XX.OBJ 912人 0 8.
    ------------------------------- +----------- +----------- +----------- +
    总计: 912人 0 8.
    
    .\Drivers\RF\
    RFCC26XX_singlemode.obj 4950 28. 576.
    ------------------------------- +----------- +----------- +----------- +
    总计: 4950 28. 576.
    
    .\Drivers\TRNG\
    TRNGCC26XX.OBJ 272. 0 1.
    ------------------------------- +----------- +----------- +----------- +
    总计: 272. 0 1.
    
    .\ICallBLE
    BLE_USER_CONFIG.OBJ 24岁 233. 20.
    iCall_API_lite.obj 二 0 16.
    ------------------------------- +----------- +----------- +----------- +
    总计: 26. 233. 36.
    
    .\iCall
    iCall.obj 2474 24. 156.
    iCall_user_config.obj 0 96. 16.
    iCall_cc265.obj 92. 0 8.
    ------------------------------- +----------- +----------- +----------- +
    总计: 256.612万 180
    
    .\profiles\
    外围对象 2632 0 832.
    simule_GATT配置文件.obj 564. 32岁 382.
    devinfoservice.obj 176. 40. 477
    gattservapp_util.obj 236. 0 0
    GATT_uuid.obj 0 44. 0
    ------------------------------- +----------- +----------- +----------- +
    总计: 360.8116万 1691.
    
    .\Startup
    主要对象 712 0 24岁
    ccfg_app_ble 0 88 0
    ------------------------------- +----------- +----------- +----------- +
    总计: 712 88 24岁
    
    .\boardFiles\
    CC2640_SENTRY_OBJ 0 93. 4.
    ------------------------------- +----------- +----------- +----------- +
    总计: 0 93. 4.
    
    C:\Users\r\AppData\Local\Temp\
    {477DDF78-C24B-4CEB-B200-E2CBA54AFF9F}0 0 138.
    ------------------------------- +----------- +----------- +----------- +
    总计: 0 0 138.
    
    C:\Users\r\workspace_v7\simple_peripheral_cc2640r2lp_app\FlashROM_StackLibrary\configPkg\package\ccfg\
    app_pem3.oem3. 576. 1181. 1740.
    ------------------------------- +----------- +----------- +----------- +
    总计: 576. 1181. 1740.
    
    C:\Users\r\workspace_v7\simile_peripheral_cc2640r2lp_stack_library\FlashROM_Library\
    BLE_R2.symbols 920 0 0
    ------------------------------- +----------- +----------- +----------- +
    总计: 920 0 0
    
    C:/Users/r/workspace_v7/simile_peripheral_cc2640r2lp_stack_library/FlashROM_Library/simile_peripheral_cc2640r2lp_stack_library.lib</s>2640
    OSAL_SNV_WRAPLET.OBJ 1058 4096 4.
    gapbondmgr.obj 4068 0 372.
    rom_init.obj 22. 2576. 0
    OSAL.OBJ 1636 0 44.
    OSAL_TIMERS.OBJ 760 0 12.
    iCall_startup.obj 700 0 0
    OSAL_cbtimer.obj 504. 0 124.
    OSAL_bufmgr.obj 212. 0 4.
    BLE分派_lite。obj 204. 0 0
    HAL_FLASH_WRAPLET.OBJ 90 0 0
    NPI.OBJ 80 0 1.
    Gap.obj 70 0 0
    HAL_ASSERT.OBJ 32岁 0 8.
    OSAL_iCall_Ble.obj 0 40. 0
    OSAL_MEMORY_iCall.obj 32岁 0 0
    Onboard.obj 18. 0 0
    OSAL_CLOCK.OBJ 0 0 8.
    BLE_USER_CONFIG.OBJ 0 0 4.
    OSAL_pwrmgr.obj 0 0 4.
    sm_ecc.obj 4. 0 0
    ------------------------------- +----------- +----------- +----------- +
    总计: 9490 6712 585.
    
    C:/ti/simplelink_cc2640r2_SDK_1_40_00_45/kernel/tirtos/packages/ti/DPL/lib/DPL_cc26x0r2.aem3
    PowerCC26XX_tirtos.oem3. 280 0 8.
    ClockP_tirtos.oem3. 110 0 4.
    hwip_tirtos.oem3. 96. 0 0
    swip_tirtos.oem3. 88 0 0
    SemaphoreP_tirtos.oem3. 66 0 0
    ------------------------------- +----------- +----------- +----------- +
    总计: 640 0 12.
    
    C:/ti/simplelink_cc2640r2_sdk_1_40_00_45/source/ti/devices/cc26x0r2/driverlib/bin/cs/driverlib.lib
    sys_Ctrl.obj 732 0 8.
    Setup.obj 328. 0 0
    OSC.obj 284. 0 20.
    crypto.obj 144. 0 0
    Chipinfo.obj 68 0 0
    RFC.OBJ 68 0 0
    Flash.obj 56. 0 0
    Adi.obj 40. 0 0
    CPU.OBJ 30. 0 0
    ------------------------------- +----------- +----------- +----------- +
    总计: 1750 28.
    
    C:/ti/simplelink_cc2640r2_sdk_1_40_00_45/source/ti/display/lib/display.aem3
    display.oem3. 146. 1. 0
    ------------------------------- +----------- +----------- +----------- +
    总计: 146. 1. 0
    
    C:/ti/simplelink_cc2640r2_sdk_1_40_00_45/source/ti/drivers/lib/drivers_cc26x0r2.aem3
    PowerCC26XX.oem3. 2164 76. 276.
    PowerCC26XX_calibrateRCOSC.oem3. 1388 0 0
    CryptoCC26XX.oem3. 1116 0 29.
    PINCC26XX.oem3. 776 0 272.
    list.oem3. 54. 0 0
    ------------------------------- +----------- +----------- +----------- +
    总计: 5498 76. 577
    
    C:\Users\r\workspace_v7\simile_peripheral_cc2640r2lp_app\tools\src\SysBIOS\ROM_SysBIOS.aem3
    ROM_SysBIOS.OBJ 1444 0
    ------------------------------- +----------- +----------- +----------- +
    总计: 1444 0
    
    C:16.9 \ti\ccsv7\tools\compiler\ti-CGT-arm_eabi.3.LTS\lib\rtsv7M3_T_le_eabi.lib
    trgdrv.obj 540 0 8.
    ull_div_t2.obj 500 0 0
    fputs.obj 440 0 0
    定义对象 0 0 404.
    低列夫.对象 192. 0 208.
    trgmsg.obj 104. 0 288
    setvbuf.obj 212. 0 0
    fclose.obj 188. 0 0
    memcpy_t2.obj 156. 0 0
    memset_t2.obj 122. 0 0
    copy_decpress_lzss.obj 104. 0 0
    exit.obj 84. 0 12.
    cpy_tbl.obj 76. 0 0
    fflush.obj 76. 0 0
    fopen.obj 52. 0 0
    strncpy.obj 52. 0 0
    memchr.obj 32岁 0 0
    _lock.obj 20. 0 8.
    args_main.obj 24岁 0 0
    ll_mul_t2.obj 24岁 0 0
    strcmp.obj 24岁 0 0
    strlen.obj 20. 0 0
    strcpy.obj 18. 0 0
    copy_decpress_none.obj 14. 0 0
    copy_zero_init.obj 12. 0 0
    stkdept_vars.obj 0 0 4.
    ------------------------------- +----------- +----------- +----------- +
    总计: 3086 0 932
    
    C:\ti\simplelink_cc2640r2_sdk_1_40_00_45\kernel\tirtos\packages\ti\targets\arm\rtsarm\lib\auto_init.aem3
    auto_init.oem3. 160 0 0
    ------------------------------- +----------- +----------- +----------- +
    总计: 160 0 0
    
    C:\ti\simplelink_cc2640r2_sdk_1_40_00_45\kernel\tirtos\packages\ti\targets\arm\rtsarm\lib\boot.aem3
    boot.oem3. 68 0 0
    ------------------------------- +----------- +----------- +----------- +
    总计: 68 0 0
    
    C:\ti\simplelink_cc2640r2_sdk_1_40_00_45\sources\ti\blestack\blelib\ctrl\cc2640_HCI_pxxx.a</s>2640
    HCI_EVENT_O 124. 0 0
    ------------------------------- +----------- +----------- +----------- +
    总计: 124. 0 0
    
    C:\ti\simplelink_cc2640r2_sdk_1_40_00_45\sources\ti\blestack\blelib\ctrl\cc2640_ll_pxxx.a</s>2640
    LL.o 2712 0 0
    ll_scheduler.o 1812 0 12.
    LL_ISR.o 1542 0 0
    ll_common.o 774 0 0
    ll_enc.o 144. 0 0
    ll_config.o 0 92. 48.
    ll_data.o 20. 0 8.
    LL_ERROR_END_REUSES.o 6. 0 0
    ------------------------------- +----------- +----------- +----------- +
    总计: 7010 92. 68
    
    C:\ti\simplelink_cc2640r2_sdk_1_40_00_45\sources\ti\blestack\blelib\HCI_tl\cc26xx_HCI_tl_none.a
    HCI_tl.o 240 24岁 5.
    ------------------------------- +----------- +----------- +----------- +
    总计: 240 24岁 5.
    
    C:\ti\simplelink_cc2640r2_sdk_1_40_00_45\sources\ti\blestack\blelib\host\cc26xx_gap_pxxx.a
    gap_linkmgr.o 140 0 0
    GAGE_ConfigMgr.o 48. 0 0
    ------------------------------- +----------- +----------- +----------- +
    总计: 188. 0 0
    
    C:\ti\simplelink_cc2640r2_sdk_1_40_00_45\sources\ti\blestack\blelib\host\cc26xx_l2cap_pxxx.a
    L2CAP_UTIL.o 56. 0 0
    ------------------------------- +----------- +----------- +----------- +
    总计: 56. 0 0
    
    C:\ti\simplelink_cc2640r2_sdk_1_40_00_45\sources\ti\blestack\blelib\host\cc26xx_profiles_pxxx.a
    gattservapp.o 1694 8. 16.
    gapgattserver.o 736 20. 155.
    ------------------------------- +----------- +----------- +----------- +
    总计: 2430 28. 171.
    
    C:\ti\simplelink_cc2640r2_sdk_1_40_00_45\sources\ti\blestack\blelib\host\cc26xx_sm_pxxx.a
    sm_pairing.o 980 0 0
    ------------------------------- +----------- +----------- +----------- +
    总计: 980 0 0
    
    堆栈: 0 0 1024个
    生成的链接器: 448. 1290 0
    ------------------------------- +----------- +----------- +----------- +
    总计: 5.1252万 1.0104万 8684
    
    
    链接器生成的复制表
    
    __TI_cinit_table @ 0000def4记录:13,大小/记录:8,表大小:104
    	。数据:load addr=0000da50,load size=0.0003万c9 bytes,run addr=2000.0208万,run size=00001618 bytes,compression=lzm3 .data:ti_sysbios_family_arm_arm_zbytes=00009 bytes=0000v_run_bios_bios_scr_scr_scr_my_sc_sys_scr_scr_bios=000019_bios_scr_scr_bios_scr_bios_scr_bios=000019_:</s>0.0019万 0.0019万
    	
    	load addr=0000de42,load size=0.0021万 bytes,run addr=2000.01万,run size=00000044 bytes,compression=lz000000.data:ti_BIOS_BIOS_Module_state__V:
    	load addr=0000de63,load size=0000001f bytes=200万dr_sysdr=00001c=2000000a4,0.0001万,run200万run size=0.0024万
    	
    	
    	状态,run_bios_bios_bios_bios=0000r_bios_bios_bios_c_压缩bytes=1bytes=0000r_c_ load addr=0000debc,load size=0万b bytes,run addr=20.0001万e4,run size=0.0008万 bytes,compression=lzss
    	.bss:load addr=0.0008万 bytes,load size=0.0008万 bytes=0.0008万 bytes=0000000dr_00000008 bytes=0000dr_0000000sys_b0.0008万 bytes=0000dr_0000000sys_b,0000,run_sc_scr_scrbytes=0000000数0万run_sc_scr_scrbytes=0000000数
    	
    	=0万= 000数= 000数= 000数= 000数= 000数= 000数= 000数= 000数=数据:
    	load addr=0000dedf,load size=0.0007万 bytes,run addr=200001f0,run size=00000008 bytes,compression=lzss
    	.data:xdc_runtime系统模块__state__v:load addr=0000dee6,load size=0.0007万 bytes=0.0008万,run addr=20000ss_scandr=00000008
    	
    
    
    
    
    @0.0008万 @,run states=00003 bytes=0000dlicle_handl_scals=000012压缩0.0012万压缩表:
    	0,处理程序:__TI_decompil_lzss
    	索引:1,处理程序:__TI_decompil_none
    	索引:2,处理程序:__TI_ZERO_INIT
    
    
    FAR CALL trampolines
    
    被叫方名称 trampoline name
    被叫方addr tramp addr call addr call info
    ----------------------- -------- ------------------- --------
    TI_SysBIOS_KNL_Event_Pend__E $Tramp$TT$L$PI$$ti_SysBIOS_KNL_Event_Pend__E
    1.0019万bf9 0.0754万 0.0318万 simple_peripheral_obj.(.text:SimpleBLEPeripheral_taskFxn1美元)
    0.1444万 peripheral_obj (.text:gapRole_taskFxn14美元)
    0.0053万a0 iCall.obj (.text:iCall_directAPI)
    0.0009万c30 iCall.obj (.text:iCall_wait)
    GATT_BM_FREE $Tramp$TT$L$PI$$GATT_BM_FREE
    1001.8489万 0.0075万c 0.0003万ee simple_peripher.obj (.text:SimpleBLEPeripheral_taskFxn1美元)
    0.0005万eb2 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:GAPBondMgr_ProcessEvent)
    0.881万 gattservapp_util.obj (.text:gattServApp_SendNotiInd13美元)
    0.0945万e simple_peripher.obj (.text:SimpleBLEPeripheral_freeAttRsp1美元)
    0000a84a cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    0000bf5c simile_peripheral_cc2640r2lp_stack_library.lib:ble_dischart_lite.obj (.text:blemch_bmFree)
    ti_SysBIOS_KNL_Queue_Get__E $Tramp$TT$L$PI$$ti_SysBIOS_KNL_Queue_Get_E
    1001bd19. 0.0764万 0.0004万d8 simple_peripheral.obj (.text:SimpleBLEPeripheral_taskFxn1美元)
    ti_SysBIOS_KNL_Queue_empty__E $Tramp$TT$L$PI$$ti_SysBIOS_KNL_Queue_empty__E
    1001bf4f 0.0076万c 0.0063万e simple_peripheral.obj (.text:SimpleBLEPeripheral_taskFxn1美元)
    LL_ENC_GenerateTrueRandNum $Tramp$TT$L$PI$LL_ENC_GenerateTrueRandNum
    10.0171万e5. 0万d34 0万c74 cc2640_ll_pxxx.a:l.o (.text)
    LL_PRIV_GenerateRSA $Tramp$TT$L$PI$$LL_PRIV_GenerateRSA
    1.0016万e1d. 0万d3c 0万c7a cc2640_l_pxxx.a:l.o (.text)
    LL_ENC_Init $Tramp$TT$L$PI$$LL_ENC_Init
    100.1714万d 0万d44 0万c7e cc2640_ll_pxxx.a:ll.o (.text)
    ti_SysBIOS_family_arm_m3_Hwi_enableInterrupt__E $Tramp$TT$L$PI$$ti_SysBIOS_family_arm_m3_Hwi_enableInterrupt__E
    1001af89 0000c680 0000c628 DPL_cc26x0r2.aem3:hwip_tirts.oem3 (.text:hwip_enableInterrupt)
    ti_SysBIOS_KNL_Queue_Construct $Tramp$TT$L$PI$$ti_SysBIOS_KNL_Queue_Construct
    1001b6a1. 0000c688 0000c434 util.obj (.text:Util_construtQueue)
    LL_PseudoRand $Tramp$TT$L$PI$$LL_PseudoRand
    1.0004万ac1 0000c690 0000c306 simile_peripheral_cc2640r2lp_stack_library.lib:onboard.obj (.text:onboard_rand_)
    xdc_runstime_Startup_startMods__i $Tramp$TT$L$PI$$$XDC_runstime_Startup_startMods__i
    1001c129 0000c698 0000c2b8 app_pem3.oem3 (.text:xdc_runtime _Startup_exec__i)
    ti_SysBIOS_KNL_Clock_logTick__E $Tramp$TT$L$PI$$ti_SysBIOS_KNL_Clock_logTick__E
    1001b843 0000c6a0 0000c266 app_pem3.oem3 (.text:ti_SysBIOS_KNL_Clock_doTick__i)
    llResetRadio $Tramp$TT$L$PI$llResetRadio
    1000.7071万 0000c6a8 0000c168 cc2640_ll_pxxx.a:ll_isr.o (.text)
    ti_SysBIOS_KNL_Swi_post__E $Tramp$TT$L$PI$ti_SysBIOS_KNL_Swi_post__E
    1001b011 0000c6b0 0000c0b4 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_KNL_Swi_or_E)
    0000c26e app_pem3.oem3 (.text:ti_SysBIOS_KNL_Clock_doTick__i)
    ti_SysBIOS_BIOS_RtsGateProxy_Leave__E $Tramp$TT$L$PI$$ti_SysBIOS_RtsGateProxy_Leave__E
    10.0195万 0000c6b8 0000c07e app_ple_pem3.oem3 (.text:ti_SysBIOS_BIOS_rtsUnlock__i)
    xdc_runtime内存免费__E $Tramp $TT$L$PI$$XDC_runtime内存免费__E
    1001c705 0000c6c0 0000bfaa app_pem3.oem3 (.text:free)
    ti_SysBIOS_KNL_Swi_Construct $Tramp$TT$L$PI$$ti_SysBIOS_KNL_SWI_Construct
    1001ad79 0000c6c8 0000be72 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_KNL_Swi_construt2__E)
    ti_SysBIOS_BIOS_RTSGateProxy_enter_E $Tramp$TT$L$PI$$ti_SysBIOS_BIOS_RTSGateProxy_ENTER_E
    1001c091 0000c6d0 0000bbfa app_ple_pem3.oem3 (.text:ti_SysBIOS_BIOS_rtsLock__i)
    llProcessTxData $Tramp$TT$L$PI$llProcessTxData
    10.0086万dd 0000c6d8 0000bae8 cc2640_ll_pxxx.a:ll_isr.o (.text)
    GAGE_GetParamValue. $Tramp$TT$L$PI$GAGE_GetParamValue
    10.0184万f5 0000c6e0 0000b5e4 cc26xx_sm_pxxx.a:sm_pairing.o (.text)
    linkDB_State. $Tramp$TT$L$PI$$linkDB_State
    1.0017万fb1. 0000c6e8 0000b5c2 cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    L2CAP_BM_alloc $Tramp$TT$L$PI$$L2CAP_BM_alloc
    100.1542万d 0000c6f0 0000b59e simile_peripheral_cc2640r2lp_stack_library.lib:ble_dispatch_lite.obj (.text:blempatch_BMAlloc)
    ti_SysBIOS_KNL_semaphore_construct $Tramp$TT$L$PI$$ti_SysBIOS_KNL_semaphore_construct
    1001b45d. 0000c6f8 0000b57e DPL_cc26x0r2.aem3:SemaphoreP_tirtos.oem3 (.text:SemaphoreP_construtBinary)
    XDC_runtime_Memory_alloc__E $Tramp$TT$L$PI$$XDC_runtime_Memory_alloc__E
    1001c349 0000c700 0000b496 app_pem3.oem3 (.text:ti_SysBIOS_RTS_GNU_MemAlloc_alloc)
    gattServApp_RegisterServiceCBs $Tramp$TT$L$PI$$gattServApp_RegisterServiceCBs
    1001.0881万 0000c708 0000b444 cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    GATT_RegisterService. $Tramp$TT$L$PI$$GATT_RegisterService
    1000fb09 0000c710 0000b436 cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    XDC_runtime Core_CreateObject__i $Tramp$TT$L$pi$XDC_runtime Core_CreateObject__i
    1001c2c9. 0000c718 0000b3a8 app_pem3.oem3 (.text:ti_SysBIOS_堆 叠_HeapCallback_Object__create_S)
    ti_SysBIOS_KNL_Task_Startup__E $Tramp$TT$L$PI$ti_SysBIOS_KNL_Task_Startup__E
    1001c125 0000c720 0000b388 app_ble_pem3.oem3 (.text:ti_SysBIOS_BIOS_startFunc__i)
    ti_SysBIOS_KNL_Swi_startup__E $Tramp$TT$L$PI$$ti_SysBIOS_KNL_Swi_Startup__E
    10.0185万 0000c728 0000b384 app_ble_pem3.oem3 (.text:ti_SysBIOS_BIOS_startFunc__i)
    ti_SysBIOS_hal_Hwi_startup__E $Tramp$TT$L$PI$$ti_SysBIOS_hal_Hwi_startup__E
    1001c04b 0000c730 0000b380 app_pem3.oem3 (.text:ti_SysBIOS_BIOS_startFunc__i)
    ti_SysBIOS_family_arm_cc26xx_Timer_startup__E $Tramp$TT$L$PI$$ti_SysBIOS_family_arm_cc26xx_Timer_startup__E
    1001b4e9 0000c738 0000b37c app_pem3.oem3 (.text:ti_SysBIOS_BIOS_startFunc__i)
    xdc_runtime系统_退出__E $Tramp $TT$L$PI$$XDC_runtime系统_退出__E
    1001c581 0000c740 0000b374 app_pem3.oem3 (.text:ti_SysBIOS_BIOS_startFunc__i)
    ti_SysBIOS_BIOS_linkedIncorrectBootLibrary__E $Tramp$TT$L$PI$$ti_SysBIOS_BIOS_linkedWithIncorrectBootLibrary__E
    1001a683 0000c748 0000b36e app_pem3.oem3 (.text:ti_SysBIOS_BIOS_startFunc__i)
    ti_SysBIOS_KNL_Swi_disable__E $Tramp$TT$L$PI$$ti_SysBIOS_KNL_Swi_disable__E
    1001bf11 0000c750 0000b336 app_pem3.oem3 (.text:ti_SysBIOS_BIOS_atExitFunction__i)
    0000c64c DPL_cc26x0r2.aem3:swip_tirtos.oem3 (.text:swip_disable)
    HCI_LE_AddWhiteListCmd $Tramp$TT$L$PI$HCI_LE_AddWhiteListCmd
    1000adc9. 0000c758 0000b2f0 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:gapBondMgr_SyncWhiteList31美元)
    HCI_LE_ClearWhiteListCmd $Tramp$TT$L$PI$$HCI_LE_ClearWhiteListCmd
    1000ada9. 0000c760 0000b2d6 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:gapBondMgr_SyncWhiteList31美元)
    HCI_LE_SetAddressResolutionEnableCmd $Tramp$TT$L$PI$$$HCI_LE_SetAddressResolutionEnableCmd
    1000b24d 0000c768 0000b29a cc26xx_gap_pxxx.a:gap_ConfigMgr.o (.text)
    smGenerateRandBuf $Tramp$TT$L$PI$smGenerateRandBuf
    10.0123万b1. 0000c770 0000b28a cc26xx_gap_pxxx.a:gap_ConfigMgr.o (.text)
    gap_PasscodeUpdate $Tramp$TT$L$PI$GAGE_PasscodeUpdate
    1001.1829万 0000c778 0000b108 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:GAPBondMgr_PasscodeRsp)
    ti_SysBIOS_family_arm_m3_Hwi_construct $Tramp$TT$$PI$$$ti_SysBIOS_family_arm_m3_Hwi_construct
    1001aabd. 0000c780 0000abca ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_arm_m3_Hwi_construt2__E)
    GATT_UpdateMTU $Tramp$TT$L$PI$$GATT_UpdateMTU
    100.1835万d. 0000c788 0000aa78 cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    ATT_ExchangeMTURsp $Tramp$TT$L$PI$$ATT_ExchangeMTURsp
    1.0018万e59 0000c790 0000aa58 cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    hciInitEventMasks $Tramp$TT$L$PI$$hciInitEventMasks
    1000ba41 0000c798 0000aa24 cc26xx_HCI_tl_none.a:HCI_tl.o (.text)
    ti_SysBIOS_KNL_Swi_Params__init__S $Tramp$TT$L$PI$$ti_SysBIOS_KNL_Swi_Params__init__S
    1001c015 0000c7a0 0000a9ae DPL_cc26x0r2.aem3:swip_tirtos.oem3 (.text:swip_construct)
    xdc_runtime_Startup_rtsDone__E $tramp$TT$L$PI$$XDC_runtime_Startup_rtsDone__E
    1001c769 0000c7a8 0000a866 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_states_HeapCallback_Module_Startup__E)
    0000b366 app_pem3.oem3 (.text:ti_SysBIOS_BIOS_startFunc__i)
    gattServApp_ProcessMsg $Tramp$TT$L$PI$gattServApp_ProcessMsg
    1001.0911万 0000c7b0 0000a83e cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    ti_SysBIOS_family_arm_m3_Hwi_Params__init__S $Tramp$TT$L$PI$$ti_SysBIOS_family_arm_m3_Hwi_Params__init__S
    1001bf79 0000c7b8 0000a7c0 dpl_cc26x0r2.aem3:hwiP_tirtos.oem3 (.text:hwiP_construct )
    ti_SysBIOS_KNL_semaphore_create $tramp$TT$L$pi$$ti_SysBIOS_KNL_semaphore_create
    1001b2d1. 0000c7c0 0000a750 ECCROMCC26XX.obj (.text:ECCROMCC26XX_init)
    ti_SysBIOS_KNL_semaphore_Params__init__S $Tramp$TT$L$PI$$ti_SysBIOS_KNL_semaphore_Params__init__S
    1001c009 0000c7c8 0000a742 ECCROMCC26XX.OBJ (.TEXT:ECCROMCC26XX_INIT)
    0000b56e DPL_cc26x0r2.aem3:SemaphoreP_tirtos.oem3 (.text:SemaphoreP_construtBinary)
    SM_ResponderInit $Tramp$TT$L$PI$$SM_ResponderInit
    1.0012万dfd. 0000c7d0 0000a718 simile_peripheral_cc2640r2lp_stack_library.lib:gap.obj (.text:gap_DeviceInit)
    gap_PeriConnRegister $Tramp$TT$L$PI$GAGE_PeriConnRegister
    100.193万d 0000c7d8 0000a714 simile_peripheral_cc2640r2lp_stack_library.lib:gap.obj (.text:gap_DeviceInit)
    gap_PeriDevMgrInit $Tramp$TT$L$PI$GAGE_PeriDevMgrInit
    10.0146万b1. 0000c7e0 0000a710 simile_peripheral_cc2640r2lp_stack_library.lib:gap.obj (.text:gap_DeviceInit)
    gap_SecParametersInit $Tramp$TT$L$PI$GAGE_SecParamsInit
    1001.8539万 0000c7e8 0000a706 simile_peripheral_cc2640r2lp_stack_library.lib:gap.obj (.text:gap_DeviceInit)
    gap_ParamsInit $Tramp$TT$L$PI$$GAGE_ParamsInit
    1001.8505万 0000c7f0 0000a6fa simile_peripheral_cc2640r2lp_stack_library.lib:gap.obj (.text:gap_DeviceInit)
    xdc_runtime系统退出__E $tramp $TT$L$pi$$xdc_runtime系统退出__E
    1001c6d5. 0000c7f8 0000a534 boot.aem3:boot.oem3 (.text)
    0000c1be app_pem3.oem3 (.text:ti_SysBIOS_BIOS_exitFunc__i)
    ti_SysBIOS_KNL_Clock_Construct $Tramp$TT$L$PI$$ti_SysBIOS_KNL_Clock_Construct
    1001b269 0000c800 0000a300 DPL_cc26x0r2.aem3:ClockP_tirtos.oem3 (.text:ClockP_construct)
    0000a3a0 util.obj (.text:Util_constrtClock)
    ti_SysBIOS_KNL_Queue_Put __E $Tramp$TT$L$PI$$ti_SysBIOS_KNL_Queue_Put __E
    1001bd35 0000c808 0000a138 simple_peripheral.obj (.text:SimpleBLEPeripheral_enqueueMsg1美元)
    ti_SysBIOS_KNL_Event_create $Tramp$TT$L$PI$$ti_SysBIOS_KNL_Event_create
    1001b42d 0000c810 0000a096 iCall.obj (.text:iCall_newtask6美元)
    gattServApp_FindPrepareWriteQ $Tramp$TT$L$PI$$gattServApp_FindPrepareWriteQ
    1001.1409万 0000c818 0.0009万d4a cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    0.0009万d56 :gattservapp.o (.text)
    0000b5ca :gattservapp.o (.text)
    linkDB_Register $Tramp$TT$L$PI$$linkDB_Register
    1.0017万de5 0000c820 0.0009万b14 cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    GATT_RegisterForReq $Tramp$TT$L$PI$$GATT_RegisterForReq
    1000fc09. 0000c828 0.0009万b0a cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    gattServApp_SetNumPrepareWrites $Tramp$TT$L$PI$$gattServApp_SetNumPrepareWrites
    10.0107万d1. 0000c830 0.0009万b04 cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    ti_SysBIOS_KNL_Task_Restore__E $Tramp$TT$L$PI$$ti_SysBIOS_KNL_Task_Restore__E
    1001b7f5. 0000c838 0.0982万e iCall.obj (.text:iCall_createRemoteTasksAtRuntime)
    0000bac6 DPL_cc26x0r2.aem3:PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_schedulerRestore)
    0000c10e iCall.obj (.text:iCall_leaveCSImpl)
    ti_SysBIOS_KNL_Task_create $Tramp$TT$L$PI$$ti_SysBIOS_KNL_Task_create
    1001accd. 0000c840 0.981万 iCall.obj (.text:iCall_createRemoteTasksAtRuntime)
    ti_SysBIOS_KNL_Task_disable__E $Tramp$TT$L$PI$$ti_SysBIOS_KNL_Task_disable__E
    1001bf31 0000c848 0.0097万e8 iCall.obj (.text:iCall_createRemoteTasksAtRuntime)
    0000b33a app_pem3.oem3 (.text:ti_SysBIOS_BIOS_atExitFunction__i)
    0000ba96 DPL_cc26x0r2.aem3:PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_schedulerDisable)
    0000be8a iCall.obj (.text:iCall_enterCSImpl)
    llTimeDelta $Tramp$TT$L$PI$llTimeDelta
    10.0197万dd 0000c850 0.0933万c cc2640_ll_pxxx.a:ll_scheduler.o (.text)
    GAGE_Bond $Tramp$TT$L$PI$$GAGE_Bond
    100.1187万d. 0000c858 0.0008万ff4 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:gapBondMgrBondReq31美元)
    llVerifyParamConnReqParams $Tramp$TT$$L$PI$$llVerifyConnParams
    1.0008万e45. 0000c860 0.0008万f7c cc2640_ll_pxxx.a:ll_common.o (.text)
    gap_GetIRK. $Tramp$TT$L$PI$GAGE_GetIRK
    10.0185万a5. 0000c868 0.0008万eac simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:GAPBondMgr_syncResolvingList)
    HCI_LE_ClearResolvingCmd $Tramp$TT$$PI$$$HCI_LE_ClearResolvingListCmd
    1000b1b1. 0000c870 0.0008万ea8 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:GAPBondMgr_syncResolvingList)
    gapFreeAuthLink $Tramp$TT$L$PI$$gapFreeAuthLink
    1.0011万dc1 0000c878 0.0008万c9c cc26xx_gap_pxxx.a:gap_linkmgr.o (.text)
    sendTerminateEvent $Tramp$TT$L$PI$sendTerminateEvent
    1.0011万bf9 0000c880 0.0008万c8e cc26xx_gap_pxxx.a:gap_linkmgr.o (.text)
    disconnectNext $Tramp$TT$L$PI$$$disconnectNext
    1.0011万c8d. 0000c888 0.0008万c78 cc26xx_gap_pxxx.a:gap_linkmgr.o (.text)
    linkDB_Remove. $Tramp$TT$L$PI$$linkDB_Remove
    1.0017万e91 0000c890 0.0008万c66 cc26xx_gap_pxxx.a:gap_linkmgr.o (.text)
    linkDB_role $Tramp$TT$L$PI$$linkDB_Role
    1.0017万fd5 0000c898 0.0008万c48 cc26xx_gap_pxxx.a:gap_linkmgr.o (.text)
    gattServApp_FindWriteAttrCB $Tramp$TT$L$PI$$gattServApp_FindWriteAttrCB
    1001.1499万 0000c8a0 0.0008万ade cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    XDC_runtime错误_raiseX__E $Tramp$TT$L$PI$$XDC_runtime错误_raiseX__E
    1001c66d. 0000c8a8. 0.0008万a1e ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_arm_m3_Hwi_excHandlerMin__i)
    ti_SysBIOS_BIOS_setThreadType__E $Tramp$TT$L$PI$ti_SysBIOS_BIOS_BIOS_setThreadType__E
    1001be1. 0000c8b0 0.0089万de ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_arm_m3_Hwi_excHandlerMin__i)
    0000b340 app_pem3.oem3 (.text:ti_SysBIOS_BIOS_atExitFunction__i)
    0000c1a8 app_ple_pem3.oem3 (.text:ti_SysBIOS_BIOS_errorRaiseHook__i)
    0000c1b8 app_pem3.oem3 (.text:ti_SysBIOS_BIOS_exitFunc__i)
    llAddTxDataEntry $Tramp$TT$L$PI$$llAddTxDataEntry
    1000a4f5 0000c8b8 0.8926万 cc2640_ll_pxxx.A:ll_common.o (.text)
    LL_ENC_Encrypt $Tramp$TT$L$PI$$LL_ENC_Encrypt
    1001.7485万 0000c8c0 0.0891万e cc2640_ll_pxxx.a:ll_common.o (.text)
    LL_TX_BM_alloc $Tramp$TT$L$PI$$LL_TX_BM_ALLOK
    1000.4945万 0000c8c8 0.0088万b8 cc2640_ll_pxxx.a:ll_common.o (.text)
    GATT_BM_ALLO $Tramp$TT$L$PI$$GATT_BM_alloc
    1001.8405万 0000c8d0 0.0087万b6 gattservapp_util.obj (.text:gattServApp_SendNotiInd13美元)
    0000b5ae simile_peripheral_cc2640r2lp_stack_library.lib:ble_dispatch_lite.obj (.text:blempatch_BMAlloc)
    ti_SysBIOS_KNL_Clock_create $Tramp$TT$L$PI$$ti_SysBIOS_KNL_Clock_create
    1001b1fd. 0000c8d8 0.008万a6 iCall.obj (.text:iCall_setTimer)
    ti_SysBIOS_KNL_Clock_Params__init__S $Tramp$TT$L$PI$$ti_SysBIOS_KNL_Clock_Params__init__S
    1001bfc1. 0000c8e0 0.8092万 iCall.obj (.text:iCall_setTimer)
    0000a2f0 DPL_cc26x0r2.aem3:ClockP_tirtos.oem3 (.text:ClockP_construct)
    0000a37a util.obj (.text:Util_construtClock)
    ti_SysBIOS_KNL_Clock_scheduleNextTick__E $Tramp$TT$L$PI$$ti_SysBIOS_KNL_Clock_scheduleNextTick__E
    1001bca9 0000c8e8 0.0804万a ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_workFunctionDynamic__E)
    ti_SysBIOS_KNL_Clock_WalkQueueDynamic__E $Tramp$TT$L$PI$$ti_SysBIOS_Clock_WalkueDynamic__E
    1001a2F1 0000c8f0 0.8012万 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_workFunction Dynamic__E)
    0.0802万e :ROM_SysBIOS.OBJ (.text:ti_SysBIOS_KNL_Clock_workFunctionDynamic__E)
    ti_CurrentBIOS_KNL_Clock_TimerProxy_getCurrentTick___E $Tramp$TT$L$PI$$ti_SysBIOS_KNL_Clock_TimerProxy_getSysTick__E
    1001be1. 0000c8f8 0.0007万fe0 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_workFunction Dynamic__E)
    0000b6a2 :ROM_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_getTicksUntilInterrupti__E)
    ti_SysBIOS_KNL_Task_Construct $Tramp$TT$L$PI$$$ti_SysBIOS_KNL_Task_Construct
    1001ae19 0000c900 0.0007万b96 simple_peripheral_obj.(.text:SimpleBLEPeripheral_createTask)
    0000a792 peripheral.obj (.text:GAPRole_createTask)
    ti_SysBIOS_KNL_Task_Params__init__S $Tramp$TT$L$PI$$ti_SysBIOS_KNL_Task_Params__init__S
    1001c021 0000c908 0.0007万b78 simple_peripheral_obj (.text:SimpleBLEPeripheral_createTask)
    0.0097万f6 iCall.obj (.text:iCall_createRemoteTasksAtRuntime)
    0000a772 peripheral.obj (.text:GAPRole_createTask)
    ti_SysBIOS_family_arm_m3_HWI_DisableFxn__E $Tramp$TT$L$PI$$ti_SysBIOS_family_arm_m3_HWI_DisableFxn__E
    1001bf85 0000c910 0.0007万a0c TRNGCC26XX.obj (.text:TRNGCC26XX_getNumber)
    0000a72a ECCROMCC26XX.OBJ (.TEXT:ECCROMCC26XX_INIT)
    0000b762 TRNGCC26XX.OBJ (.TEXT:TRNGCC26XX_INIT)
    0000bdaa TRNGCC26XX.obj (.text:TRNGCC26XX_OPEN)
    0000be94 iCall.obj (.text:iCall_enterCSImpl)
    0000c624 DPL_cc26x0r2.aem3:hwip_tirtos.oem3 (.text:hwip_disable)
    ti_SysBIOS_KNL_Clock_STOP__E $Tramp$TT$L$PI$$ti_SysBIOS_KNL_Clock_STOP__E
    1001bab9. 0000c918 0.0713万c DPL_cc26x0r2.aem3:PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
    0.008万ce iCall.obj (.text:iCall_setTimer)
    0000abfa util.obj (.text:util_restartClock)
    0000c59e iCall.obj (.text:iCall_stopTimer)
    0000c61c DPL_cc26x0r2.aem3:ClockP_tirtos.oem3 (.text:ClockP_STOP)
    0000c65c util.obj (.text:Util_stopClock)
    ti_SysBIOS_KNL_Clock_start__E $Tramp$TT$L$PI$$ti_SysBIOS_KNL_Clock_Start__E
    1001be1f 0000c920 0.713万 DPL_cc26x0r2.aem3:PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
    0.008万e4 iCall.obj (.text:iCall_setTimer)
    0000ac18 util.obj (.text:util_restartClock)
    0000c618 DPL_cc26x0r2.aem3:ClockP_tirtos.oem3 (.text:ClockP_start)
    0000c658 util.obj (.text:Util_startClock)
    ti_SysBIOS_KNL_Clock_setTimeout__E $Tramp$TT$L$PI$$ti_SysBIOS_KNL_Clock_setTimeout__E
    1001c0e5 0000c928 0.0712万a DPL_cc26x0r2.aem3:PowerCC26XX_tirtos.oem3 (.text:PowerCC26XX_standbyPolicy)
    0.008万de iCall.obj (.text:iCall_setTimer)
    0000ac12 util.obj (.text:util_restartClock)
    0000c614 DPL_cc26x0r2.aem3:ClockP_tirtos.oem3 (.text:ClockP_setTimeout)
    sm_c1new $Tramp$TT$L$PI$$SM_c1new
    100.1225万d 0000c930 0.0006万f2a cc26xx_sm_pxxx.a:sm_pairing.o (.text)
    smpBuildPairingReq $Tramp$TT$L$PI$$smpBuildPairingReq
    1001.6255万 0000c938 0.0006万f0e cc26xx_sm_pxxx.a:sm_pairing.o (.text)
    smpBuildPairingRsp $Tramp$TT$L$PI$$smpBuildPairingRsp
    1001.6269万 0000c940 0.0006万f06 cc26xx_sm_pxxx.a:sm_pairing.o (.text)
    gapGetDevAddress $Tramp$TT$L$PI$$gapGetDevAddress
    10.0187万ad 0000c948 0.0006万e94 cc26xx_sm_pxxx.a:sm_pairing.o (.text)
    0.0006万ed2 : sm_pairing.o (.text)
    0.7384万 : sm_pairing.o (.text)
    0.7408万 : sm_pairing.o (.text)
    gapGetDevAddressMode. $Tramp$TT$L$PI$$gapGetDevAddressMode
    10.0187万a5. 0000c950 0.0006万e88 cc26xx_sm_pxxx.a:sm_pairing.o (.text)
    0.0006万ec6 : sm_pairing.o (.text)
    0.7392万 : sm_pairing.o (.text)
    0.7416万 :sm_pairing.o (.text)
    smSetPairingReqRsp $Tramp$TT$L$PI$$smSetPairingReqRsp
    1000f9f1 0000c958 0.0006万e7a cc26xx_sm_pxxx.a:sm_pairing.o (.text)
    ti_SysBIOS_BIOS_START_E $Tramp$TT$L$PI$$ti_SysBIOS_BIOS_START__E
    1001beb1. 0000c960 0.0006万e1a main.obj (.text:main)
    ATT_ReadByTypeRsp $Tramp$TT$L$PI$$ATT_ReadByTypeRsp
    1.0018万ef1 0000c968 0.0006万c70 cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    gattServApp_buildReadByTypeRsp $Tramp$TT$L$PI$$gattServApp_buildReadByTypeRsp
    1.001万cd5. 0000c970 0.0006万c2a cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    GATT_VerifyReadPermissions $Tramp$TT$L$PI$GATT_VerifyReadPermissions
    1000fc11. 0000c978 0.0006万bec cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    ATT_GetMTU $Tramp$TT$L$PI$$ATT_GetMTU
    100.1621万d 0000c980 0.0006万baa cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    Gap_SendSlaveSecurityRequest $Tramp$TT$L$PI$Gap_SendSlaveSecurityRequest
    10.0192万bd. 0000c988 0.0006万b8c simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:GAPBondMgr_LinkEst)
    gap_Signable $Tramp$TT$L$PI$$GAGE_Signable
    10.0116万ad 0000c990 0.0006万b2c simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:GAPBondMgr_LinkEst)
    eccRom_genKeys. $Tramp$TT$L$PI$$eccRom_genKeys
    1.0016万c1d. 0000c998 0.006万c6 ECCROMCC26XX.OBJ (.TEXT:ECCROMCC26XX_genKeys)
    GATT_FindHandleUUID $Tramp$TT$L$PI$$GATT_FindHandleUUID
    1000fd55 0000c9a0 0.0005万dd0 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:GAPBondMgr_ProcessEvent)
    0.0006万bd8 cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    0000aa98 :gattservapp.o (.text)
    LL_PRIV_Init $Tramp$TT$L$PI$$LL_PRIV_Init
    1.0016万cb5 0000c9a8. 0.0005万d0e cc2640_l_pxxx.a:l.o (.text)
    llInitFeatureSet $Tramp$TT$L$PI$llInitFeatureSet
    1000.8621万 0000c9b0 0.0005万cbe cc2640_ll_pxxx.a:l.o (.text)
    llReleaseAllConnId $Tramp$TT$L$PI$llReleaseAllConnId
    10.0082万cd 0000c9b8 0.0005万cae cc2640_ll_pxxx.a:l.o (.text)
    llConnCleanup $Tramp$TT$L$PI$$llConnCleanup
    1000.8479万 0000c9c0 0.0005万ca0 cc2640_ll_pxxx.a:l.o (.text)
    LL_ClearWhiteList $Tramp$TT$L$PI$$LL_ClearWhiteList
    10.0049万d9 0000c9c8 0.0005万c46 cc2640_ll_pxxx.A:l.o (.text)
    WL_Init $Tramp$TT$L$PI$$WL_Init
    1.0018万b81 0000c9d0 0.0005万c42 cc2640_ll_pxxx.a:l.o (.text)
    llRfInit $Tramp$TT$L$PI$$llRfInit
    1.0006万fed. 0000c9d8 0.0005万c3c cc2640_ll_pxxx.a:l.o (.text)
    gap_authenticate $Tramp$TT$L$PI$GAGE_Authenticate
    1001.1701万 0000c9e0 0.0058万f4 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:gapBondMgrAuthenticate31美元)
    L2CAP_GetMTU $Tramp$TT$L$PI$$L2CAP_GetMTU
    100.1929万d. 0000c9e8 0.0057万fa simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:gapBondMgrAuthenticate31美元)
    0000aa4e cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    eccRom_genSharedSecret $Tramp$TT$L$PI$$eccRom_genSharedSecret
    1.0016万c65 0000c9f0 0.558万 ECCROMCC26XX.obj (.text:ECCROMCC26XX_genDHKey)
    ti_SysBIOS_KNL_semaphore_post_E $Tramp$TT$L$PI$$ti_SysBIOS_KNL_semaphore_post_E
    1001a31. 0000c9f8 0.0054万e4 ECCROMCC26XX.OBJ (.TEXT:ECCROMCC26XX_genDHKey)
    0.0055万bc ECCROMCC26XX.obj (.text:ECCROMCC26XX_genDHKey)
    0.607万 ECCROMCC26XX.OBJ (.TEXT:ECCROMCC26XX_genKeys)
    0.6102万 ECCROMCC26XX.OBJ (.TEXT:ECCROMCC26XX_genKeys)
    0000c648 DPL_cc26x0r2.aem3:SemaphoreP_tirtos.oem3 (.text:SemaphoreP_post)
    ti_SysBIOS_KNL_semaphore___E $Tramp$TT$L$PI$ti_SysBIOS_KNL_semaphore_Pend_E
    1.0019万b05 0000ca00 0.0054万b2 ECCROMCC26XX.OBJ (.TEXT:ECCROMCC26XX_genDHKey)
    0.0603万e ECCROMCC26XX.obj (.text:ECCROMCC26XX_genKeys)
    0000c28c DPL_cc26x0r2.aem3:SemaphoreP_tirtos.oem3 (.text:SemaphoreP_Pend)
    ti_SysBIOS_KNL_Event_POST__E $Tramp$TT$L$PI$ti_SysBIOS_KNL_Event_POST_E
    1001a455 0000ca08 0.0053万e4 iCall.obj (.text:iCall_directAPI)
    0.9212万 iCall.obj (.text:iCall_sendServiceComplete)
    0.9698万 iCall.obj (.text:iCall_send)
    0000a144 simple_peripheral.obj (.text:SimpleBLEPeripheral_enqueueMsg1美元)
    0000bcfa iCall.obj (.text:iCall_primRepostSync6美元)
    0000c316 simple_peripheral_obj.(.text:SimpleBLEPeripheral_clockHandler1美元)
    0000c386 peripheral_obj (.text:gapRole_setEvent14美元)
    0000c426 iCall.obj (.text:iCall_signal)
    ti_SysBIOS_KNL_Clock_getTicks__E $Tramp$TT$L$PI$$ti_SysBIOS_KNL_Clock_getTicks__E
    1001b29d 0000ca10 0.0538万c iCall.obj (.text:iCall_directAPI)
    0.0053万f4 iCall.obj (.text:iCall_directAPI)
    0000b6fa ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_KNL_Clock_getTimeout__E)
    0000c634 iCall.obj (.text:iCall_getTicks)
    ti_SysBIOS_KNL_Task_self__E $Tramp$TT$L$PI$$ti_SysBIOS_KNL_Task_self__E
    1001c02d 0000ca18 0.5308万 iCall.obj (.text:iCall_directAPI)
    0.0535万c iCall.obj (.text:iCall_directAPI)
    0.674万 ROM_SysBIOS.aem3:ROM_SysBIOS.obj (.text:ti_SysBIOS_family_arm_m3_HWI_excFillContext__i)
    0.6746万 :ROM_SysBIOS.OBJ (.text:ti_SysBIOS_family_arm_m3_HWI_excFillContext__I)
    0.0674万c :ROM_SysBIOS.OBJ (.text:ti_SysBIOS_family_arm_m3_HWI_excFillContext__I)
    0.0984万c iCall.obj (.text:iCall_enrollService)
    0.099万a iCall.obj (.text:iCall_fetchMsg)
    0.0009万be8 iCall.obj (.text:iCall_wait)
    0.0009万f3a iCall.obj (.text:iCall_registerApp)
    0000bce6 iCall.obj (.text:iCall_primRepostSync6美元)
    llCreateRxBuffer $Tramp$TT$L$PI$$llCreateRxBuffer
    1000.9371万 0000ca20 0.0528万a cc2640_ll_pxxx.a:ll_isr.o (.text)
    llProcessSlaveControlPacket $Tramp$TT$L$PI$llProcessSlaveControlPacket
    1000.9609万. 0000ca28 0.5272万 cc2640_ll_pxxx.A:ll_is7.o (.text)
    llCombininePDU $Tramp$TT$L$PI$llCombininePDU
    1.0008万c01 0000ca30 0.526万 cc2640_ll_pxxx.A:ll_isr.o (.text)
    LL_RxDataCompleteback $Tramp$TT$L$PI$LL_RxDataCompleteback
    1001.9465万 0000ca38 0.5252万 cc2640_ll_pxxx.A:ll_isr.o (.text)
    LL_PRIV_UpdateRL $Tramp$TT$L$PI$$LL_PRIV_UpdateRL
    1.0016万f8d. 0000ca40 0.0051万c8 cc2640_ll_pxxx.A:ll_isr.o (.text)
    LL_ENC_Decrype. $Tramp$TT$L$PI$$LL_ENC_Decrypt
    10.0174万f9 0000ca48 0.0051万ae cc2640_lL_pxxx.a:lL_isr.o (.text)
    RFHAL_NextDataEntryDone $Tramp$TT$L$PI$$RFHAL_NextDataEntryDone
    1000a5b1. 0000ca50 0.0516万e cc2640_l_pxxx.a:lL_isx.o (.text)
    0.0527万e :LL_ISR.o (.text)
    RFHAL_GetNextDataEntry $Tramp$TT$L$PI$RFHAL_GetNextDataEntry
    1000a5a9. 0000ca58 0.0514万e cc2640_ll_pxxx.A:ll_is7.o (.text)
    llHaltRadio $Tramp$TT$L$PI$llHaltRadio
    1000.7075万 0000ca60 0.0049万ae cc2640_ll_pxxx.A:ll_isr.o (.text)
    LL_PRIV_UpdateExtWLEntry $Tramp$L$PI$LL_PRIV_UpdateExtWLEntry
    1001.7051万. 0000ca68 0.0493万a cc2640_ll_pxxx.a:ll_is7.o (.text)
    0.0049万ba :LL_ISR.o (.text)
    WL_FindEntry $Tramp$TT$L$PI$$WL_FindEntry
    1.0018万c51 0000ca70 0.0492万a cc2640_l_pxxx.a:lL_isx.o (.text)
    0.0049万a2. :LL_ISR.o (.text)
    HCI_LE_AddDeviceToResolvingListCmd $Tramp$TT$L$PI$$HCI_LE_AddDeviceToResolvingListCmd
    1000b16d. 0000ca78 0.46万 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:gapBondMgrAddBond31美元)
    0.0008万eb8 :gapbondmgr.obj (.text:GAPBondMgr_syncResolvingList)
    0.0008万efa :gapbondmgr.obj (.text:GAPBondMgr_syncResolvingList)
    HCI_LE_RemoveDeviceFromResolvingListCmd $Tramp$TT$L$PI$$HCI_LE_RemoveDeviceFromResolvingListCmd
    1000b191 0000ca80 0.4558万 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:gapBondMgrAddBond31美元)
    0.0062万f4 :gapbondmgr.obj (.text:gapBondMgrEraseBonding31美元)
    GAGE_TerminateAuth $Tramp$TT$L$PI$GAGE_TerminateAuth
    10.0117万c1. 0000ca88 0.4192万 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:GAPBondMgr_ProcessGAPMsg)
    0000b118 :gapbondmgr.obj (.text:GAPBondMgr_PasscodeRsp)
    linkDB_find $Tramp$TT$L$PI$$linkDB_Find
    1.0017万f55 0000ca90 0.4168万 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:GAPBondMgr_ProcessGAPMsg)
    0.0422万e :gapbondmgr.obj (.text:GAPBondMgr_ProcessGAPMsg)
    0.0578万a :gapbondmgr.obj (.text:gapBondMgrAuthenticate31美元)
    0.0006万e6c cc26xx_sm_pxxx.a:sm_pairing.o (.text)
    0.737万 : sm_pairing.o (.text)
    0.0008万c40 cc26xx_gap_pxxx.a:gap_linkmgr.o (.text)
    0000a6ae simile_peripheral_cc2640r2lp_stack_library.lib : gapbondmgr.obj (.text:GAPBondMgr_UpdateCharCfg)
    smDetermineIOCaps. $Tramp$TT$L$PI$smDetermineIOCaps
    1000f819 0000ca98 0.0003万f18 cc26xx_sm_pxxx.a:sm_pairing.o (.text)
    llSortActiveConns. $Tramp$TT$L$PI$llSortActiveConns
    1.0008万fdd 0000caa0 0.0003万cda cc2640_ll_pxxx.a:ll_common.o (.text)
    llGetMinci $Tramp$TT$L$PI$llGetMinCI
    1000.8301万 0000caa8. 0.0003万c20 cc2640_ll_pxxx.a:ll_common.o (.text)
    llRealignConn $Tramp$TT$L$PI$llRealignConn
    1000.9071万 0000cab0 0.0003万b62 cc2640_ll_pxxx.a:ll_common.o (.text)
    gattServApp_FindReadAttrCB $Tramp$TT$L$PI$gattServApp_FindReadAttrCB
    1001.1489万 0000cab8. 0.0003万af8 cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    ATT_CompareUUID $Tramp$TT$L$PI$$ATT_CompareUUID
    1001.6111万 0000cac0 0.0003万a2a cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    GATT_FindNextAttr $Tramp$TT$L$PI$$GATT_FindNextAttr
    1000fe05 0000cac8. 0.0003万a1c cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    0.0005万e1c simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:GAPBondMgr_ProcessEvent)
    0000aab2 cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    GATT_FindHandle $Tramp$TT$L$PI$$GATT_FindHandle
    1000fdbd. 0000cad0 0.0039万b2 cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    0.0003万a06 :gattservapp.o (.text)
    0.0008万ad2 :gattservapp.o (.text)
    gattServApp_FindAuthorizeAttrCB $Tramp$TT$L$PI$gattServApp_FindAuthorizeAttrCB
    10.0114万d5. 0000cad8 0.393万 cc26xx_profiles_pxxx.a:gattservapp.o (.text)
    llHardwareError $Tramp$TT$L$PI$$llHardwareError
    100.0929万d.($Tramp$TT$L$PI$$llHardwareError 100.0929万d。 0000cae0 0.0033万f4 cc2640_ll_pxxx.a:ll_isx.o (.text)
    0.3496万 :LL_ISR.o (.text)
    0.0003万b84 :ll_common.o (.text)
    0.0003万cd2 :ll_common.o (.text)
    0.0004万a10 :LL_ISR.o (.text)
    0.0529万a :LL_ISR.o (.text)
    0000c160 :LL_ISR.o (.text)
    GAGE_NumActiveConnections $Tramp$TT$$L$PI$GAGE_NumActiveConnections
    10.0188万fd. 0000ca8. 0.0002万fb6 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:GAPBondMgr_SetParameter)
    0.3024万 :gapbondmgr.obj (.text:GAPBondMgr_SetParameter)
    0.0009万ee6 :gapbondmgr.obj (.text:GAPBondMgr_LinkTerm)
    linkDB_SecurityModeSCOnly $Tramp$TT$L$PI$linkDB_SecurityModeSCOnly
    1001.8105万 0000caf0 0.0002万f90 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:GAPBondMgr_SetParameter)
    SM_SetECRegenerationCount $Tramp$TT$L$PI$$SM_SetECRegenerationCount
    1000f551 0000caf8. 0.0002万f6e simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:GAPBondMgr_SetParameter)
    GAGE_SetParameter ParamValue. $Tramp$TT$L$PI$GAGE_SetParamValue
    10.0184万bd. 0000cb00 0.0002万ed6 simile_peripheral_cc2640r2lp_stack_library.lib:gapbondmgr.obj (.text:GAPBondMgr_SetParameter)
    0000bcb6 :gapbondmgr.obj (.text:GAPBondMgr_Register)
    ti_SysBIOS_KNL_Swi_RESTORE__E $Tramp$TT$L$PI$$ti_SysBIOS_KNL_Swi_RESTORE__E
    1001b305 0000cb08 0.0002万be8 drivers_cc26x0r2.aem3:PowerCC26XX.oem3 (.text:Power_sleep)
    0.0005万bdc RFCC26XX_singlemode.obj (.text:abortCmd4美元)
    0.0008万a5e RFCC26XX_singlemode.obj (.text:RF_pendCmd)
    0.0008万a84 RFCC26XX_singlemode.obj (.text:RF_pendCmd)
    0.0008万aa6 RFCC26XX_singlemode.obj (.text:RF_pendCmd)
    GAGE_RegisterBondMgrCB $Tramp$TT$L$PI$GAGE_RegisterBondMgrCBs
    1.0018万b51 0000cb10 0.2704万 simile_peripheral_cc2640r2lp_stack_library.lib:iCall_startup.obj (.text:startup_entry)
    GATT_Init $Tramp$TT$L$PI$$GATT_Init
    100.1817万d 0000cb18 0.0026万f0 simile_peripheral_cc2640r2lp_stack_library.lib : iCall_startup.obj (.text:startup_entry)
    sm_Init $Tramp$TT$L$PI$$SM_Init
    10.0175万d9 0000cb20 0.0026万ea simile_peripheral_cc2640r2lp_stack_library.lib:iCall_startup.obj (.text:startup_entry)
    gap_Init $Tramp$TT$L$PI$$GAGE_Init
    1001.8859万 0000cb28 0.0026万e4 simile_peripheral_cc2640r2lp_stack_library.lib:iCall_startup.obj (.text:startup_entry)
    L2CAP_Init $Tramp$TT$L$PI$$L2CAP_Init
    10.0179万c9. 0000cb30 0.0026万de simile_peripheral_cc2640r2lp_stack_library.lib : iCall_startup.obj (.text:startup_entry)
    L2CAP_SetUserConfig $Tramp$TT$L$PI$$L2CAP_SetUserConfig
    10.0192万b9 0000cb38 0.255万 simile_peripheral_cc2640r2lp_stack_library.lib:iCall_startup.obj (.text:startup_entry)
    llRfSetup $Tramp$TT$L$PI$llRfSetup
    1.0006万f99 0000cb40 0.2474万 cc2640_ll_pxxx.a:l.o (.text)
    LL_PRIV_GenerateRPA $Tramp$TT$L$PI$$LL_PRIV_GenerateRPA
    1.0016万d71 0000cb48 0.0023万be cc2640_ll_pxxx.a:l.o (.text)
    0.2402万 :l.o (.text)
    0.0864万e :LL.o (.text)
    LL_PRIV_IsIDA $Tramp$TT$L$PI$$LL_PRIV_IsIDA
    1.0016万eb5 0000cb50 0.0232万e cc2640_ll_pxxx.a:l.o (.text)
    LL_PRIV_FindPeerInRL $Tramp$TT$L$PI$$LL_PRIV_FindPeerInRL
    1.0016万f19 0000cb58 0.0022万e2 cc2640_ll_pxxx.a:l.o (.text)
    0.0233万a :l.o (.text)
    0.0023万e6 :LL.o (.text)
    LL_PRIV_IsResolvable $Tramp$TT$L$PI$$LL_PRIV_IsResolvable
    1.0016万ecd. 0000cb60 0.0022万d6 cc2640_l_pxxx.a:l.o (.text)
    0.4902万 :LL_ISR.o (.text)
    0.0497万a :LL_ISR.o (.text)
    LL_PRIV_IsRPA $Tramp$TT$L$PI$$LL_PRIV_IsRPA
    1.0016万e89 0000cb68 0.0022万c0 cc2640_ll_pxxx.a:l.o (.text)
    0.0048万f6 :LL_ISR.o (.text)
    0.0496万e :LL_ISR.o (.text)
    LL_PRIV_IsZeroIRK $Tramp$TT$L$PI$$LL_PRIV_IsZeroIRK
    1.0016万f01 0000cb70 0.0022万b2 cc2640_l_pxxx.a:l.o (.text)
    0.0234万a :l.o (.text)
    0.0023万f6 :l.o (.text)
    0.863万 :l.o (.text)
    0.0865万e :LL.o (.text)
    LL_EnhancedConnectionCompleteback $Tramp$TT$L$PI$LL_CompleteCovered Connection1000c1c9.
    0000cb78 0.2264万 cc2640_ll_pxxx.a:l.o (.text)
    0.2384万 :l.o (.text)
    0.0023万aa :LL.o (.text)
    llTimeCompare $Tramp$TT$L$PI$llTimeCompare
    10.0197万b9. 0000cb80 0.2086万 cc2640_ll_pxxx.a:ll_scheduler.o (.text)
    0.0021万d2 :LL_scheduler.o (.text)
    0.0003万cba :ll_common.o (.text)
    0.0061万b6 :LL_scheduler.o (.text)
    0.6232万 :LL_scheduler.o (.text)
    0.0931万e :LL_scheduler.o (.text)
    0.0932万a :LL_scheduler.o (.text)
    0.935万 :LL_scheduler.o (.text)
    0.936万 : LL_scheduler.o (.text)
    llGetCurrentTime. $Tramp$TT$L$PI$llGetCurrentTime
    10.0197万b1. 0000cb88 0.0001万fbe cc2640_l_pxxx.a:lL_scheduler.o (.text)
    0.0207万e :LL_scheduler.o (.text)
    0.0208万c :LL_scheduler.o (.text)
    0.002万f6 :LL_scheduler.o (.text)
    0.0021万c8 :LL_scheduler.o (.text)
    0.0021万d8 :LL_scheduler.o (.text)
    0.0003万b38 :ll_common.o (.text)
    0.0078万bc :LL_scheduler.o (.text)
    0.931万 :LL_scheduler.o (.text)
    llProcessPostRfOps. $Tramp$TT$L$PI$llProcessPostRfOps
    100.0713万d. 0000cb90 0.0001万f38 cc2640_ll_pxxx.a:ll_scheduler.o (.text)
    ti_SysBIOS_family_arm_m3_Hwi_restoreFxn__E $Tramp$TT$L$PI$$ti_SysBIOS_family_arm_m3_Hwi_restoreFxn__E
    100.1161万. 0000cb98 0.0019万bc RFCC26XX_singlemode.obj (.text:fsmActiveState4美元)
    0.0001万bb0 RFCC26XX_singlemode.obj (.text:fsmActiveState4美元)
    0.0001万bca RFCC26XX_singlemode.obj (.text:fsmActiveState4美元)
    0.286万 drivers_cc26x0r2.aem3:CryptoCC26XX.oem3 (.text:cryptoTransactionExecute)
    0.0028万ba :CryptoCC26XX.oem3 (.text:cryptoTransactionExecute)
    0.293万 :CryptoCC26XX.oem3 (.text:cryptoTransactionExecute)
    0.0029万ae :CryptoCC26XX.oem3 (.text:cryptoTransactionExecute)
    0.3156万 RFCC26XX_singlemode.obj (.text:RF_open)
    0.3226万 RFCC26XX_singlemode.obj (.text:RF_open)
    0.5044万 RFCC26XX_singlemode.obj (.text:RF_postCmd)
    0.005万a6 RFCC26XX_singlemode.obj (.text:RF_postCmd)
    0.5102万 RFCC26XX_singlemode.obj (.text:RF_postCmd)
    0.0005万b0c RFCC26XX_singlemode.obj (.text:abortCmd4美元)
    0.0005万b34 RFCC26XX_singlemode.obj (.text:abortCmd4美元)
    0.0005万b68 RFCC26XX_singlemode.obj (.text:abortCmd4美元)
    0.0005万bce RFCC26XX_singlemode.obj (.text:abortCmd4美元)
    0.0005万bfe RFCC26XX_singlemode.obj (.text:abortCmd4美元)
    0.0695万a RFCC26XX_singlemode.obj (.text:radioOpToneCb4美元)
    0.0006万fe8 drivers_cc26x0r2.aem3:PINCC26XX.oem3 (.text:PINCC26XX_setIoCfg)
    0.0705万e :CryptoCC26XX.oem3 (.text:CryptoCC26XX_open)
    0.0706万c :CryptoCC26XX.oem3 (.text:CryptoCC26XX_open)
    0.077万a :PowerCC26XX.oem3 (.text:Power_releaseDependency)
    0.0079万ec :PowerCC26XX.oem3 (.text:Power_setDependency)
    0.0007万a9e TRNGCC26XX.obj (.text:TRNGCC26XX_getNumber)
    0.0089万a8 drivers_cc26x0r2.aem3:PowerCC26XX.oem3 (.text:switchXOSCHFclockFunc)
    0.0008万d78 RFCC26XX_singlemode.obj (.text:swfxnHw4美元)
    0.0008万d94 RFCC26XX_singlemode.obj (.text:swfxnHw4美元)
    0.0092万c2 drivers_cc26x0r2.aem3:PowerCC26XX_calibrateRCOSC.oem3 (.text:PowerCC26XX_initiateCalibration)
    0.095万a RFCC26XX_singlemode.obj (.text:decActiveClientCnt4美元)
    0.0098万b2 RFCC26XX_singlemode.obj (.text:RF_getCurrentTime)
    0.0098万ba RFCC26XX_singlemode.obj (.text:RF_getCurrentTime)
    0.0009万e32 RFCC26XX_singlemode.obj (.text:ratChanFree4美元)
    0000a016 RFCC26XX_singlemode.obj (.text:RF_getinfo)
    0000a758 ECCROMCC26XX.OBJ (.TEXT:ECCROMCC26XX_INIT)
    0000a804 RFCC26XX_singlemode.obj (.text:RF_getRssi)
    0000a908 drivers_cc26x0r2.aem3:PowerCC26XX.oem3 (.text:PowerCC26XX_isStableXOSC
    0000a94a :PowerCC26XX.oem3 (.text:PowerCC26XX_switchXOSC)
    0000ab90 RFCC26XX_singlemode.obj (.text:postDirImmCmd 4美元)
    0000aba4 RFCC26XX_singlemode.obj (.text:postDirImmCmd 4美元)
    0000af16 drivers_cc26x0r2.aem3:PowerCC26XX.oem3 (.text:Power_releaseConstraint)
    0000af50 RFCC26XX_singlemode.obj (.text:Q_PUSH 4美元)
    0000b268 drivers_cc26x0r2.aem3:PowerCC26XX.oem3 (.text:Power_setConstraint)
    0000b77a TRNGCC26XX.OBJ (.TEXT:TRNGCC26XX_INIT)
    0000ba6a drivers_cc26x0r2.aem3:List.oem3 (.text:List_Put)
    0000bdb6 TRNGCC26XX.OBJ (.TEXT:TRNGCC26XX_OPEN)
    0000bf30 RFCC26XX_singlemode.obj (.text:Q_pop4美元)
    0000c106 iCall.obj (.text:iCall_leaveCSImpl)
    
    [171 trampolines]
    [360 trampoline calls]
    
    
    全局符号:按名称名称的字母顺序排序
    
    
    --------- ---
    2.0004万fd8 ACCX
    2.0004万fdc附件
    2.0004万fe0 ACCZ
    1000d2d5全二联
    1.0015万c49 ATT_BuildErrorRsp
    1.0015万c7d ATT_BuildExchangeMTUReq
    1.0015万c8d ATT_BuildExchangeMTURsp
    1.0015万ff5 ATT_BuildExecuteWriteReq
    1.0015万d25 ATT_BuildFindByTypeValueReq
    1.0015万d89 ATT_BuildFindByTypeValueRsp
    1.0015万cb9 ATT_BuildFindInfoReq
    1.0015万cc9 ATT_BuildFindInfoRsp
    100.1601万d ATT_BuildHandleValueInd.
    1.0015万f75 ATT_BuildPrepareWriteReq (ATT_BuildPrepareWriteReq
    1.0015万fa1 ATT_BuildPrepareWriteRsp
    1.0015万eb1 ATT_BuildReadBlobReq
    1.0015万ef9 ATT_BuildReadBlobRsp
    1.0015万f35 ATT_BuildReadByGrpTypeRsp
    1.0015万da5 ATT_BuildReadByTypeReq
    1.0015万e29 ATT_BuildReadByTypeRsp
    1.0015万f0d ATT_BuildReadMultiReq
    1.0015万f2d ATT_BuildReadMultiRsp
    1.0015万e4d ATT_BuildReadReq
    1.0015万e6d ATT_BuildReadRsp
    1.0015万ea1 ATT_BuildWriteReq
    1001.6111万 ATT_CompareUUID
    1001.6179万 ATT_ConvertUIDto128
    10.0161万a5 ATT_ConvertUIDto16
    1.0018万e39 ATT_ErrorRsp
    1.0018万e59 ATT_ExchangeMTURSP
    1001.9025万 ATT_ExecuteWriteRsp
    1.0018万ebd ATT_FindByTypeValueRsp
    1.0018万e81 ATT_FindInfoRsp
    100.1621万d ATT_GetMTU
    1001.6251万 ATT_GetParamValue
    1001.9065万 ATT_HandleValueInd.
    1001.9045万 ATT_HandleValueNoti
    1.0015万c5d ATT_ParseErrorRsp
    1.0015万c81 ATT_ParseExchangeMTUReq
    1.0015万ca1 ATT_ParseExchangeMTURsp
    1.0015万ffd ATT_ParseExecuteWriteReq
    1001.6011万 ATT_ParseExecuteWriteRsp
    1.0015万d41 ATT_ParseFindByTypeValueReq
    1.0015万d91 ATT_ParseFindByTypeValueRsp
    1.0015万cbd ATT_ParseFindInfoReq
    1.0015万ce1 ATT_ParseFindInfoRsp
    1001.6065万 ATT_ParseHandleValueCfm.
    1001.6035万 ATT_ParseHandleValueInd.
    1.0015万be5 ATT_ParsePacket
    1.0015万f79 ATT_ParsePrepareWriteReq
    1.0015万fc1 ATT_ParsePrepareWriteRsp
    1.0015万ed1 ATT_ParseReadBlobReq
    1.0015万efd ATT_ParseReadBlobRsp
    1.0015万f49 ATT_ParseReadByGrpTypeRsp
    1.0015万de5 ATT_ParseReadByTypeReq
    1.0015万e2d ATT_ParseReadByTypeRsp
    1.0015万f15 ATT_ParseReadMultiReq
    1.0015万f31 ATT_ParseReadMultiRsp
    1.0015万e51 ATT_ParseReadReq
    1.0015万e71 ATT_ParseReadRsp
    1.0015万e75 ATT_ParseWriteReq
    1.0015万ea5 ATT_ParseWriteRsp
    1.0018万ffd ATT_PreparareWriteRsp
    1.0018万f51 ATT_ReadBlobRsp
    1.0018万fbd ATT_ReadByGrpTypeRsp
    1.0018万ef1 ATT_ReadByTypeRsp
    1.0018万f91 ATT_ReadMultiRsp
    1.0018万f2d ATT_ReadRsp
    1.0018万e31 ATT_RegisterServer
    100.1624万d ATT_SetParamValue
    10.0161万e9 ATT_UpdateMTU
    1.0018万已馈电ATT_WriteRsp
    0.0004万c05 AssertHandler
    0000d73c BoardGpioInitTable
    0.0009万e41 C$exit
    0.9617万 C$io$$
    1000dbf1副本
    0000c5d1时钟P_Params_init
    0000a2d5时钟P_construct
    UNDEFED ClockP_getSystemTicks
    0000c611时钟P_getTimeout
    0000c2c1时钟P_isActive
    0000c615 ClockP_setTimeout
    0000c619时钟P_START
    0000c61d时钟P_STOP
    2.0001万e14时钟P_tickPeriod
    0000c5b9 CryptoCC26XX_Params_init
    0.0008万dad CryptoCC26XX_allocateKey
    0000d930 CryptoCC26XX_config
    0000b8a1 CryptoCC26XX_hwiIntFxn.
    0000c459 CryptoCC26XX_init
    0000ae1d CryptoCC26XX_loadKey
    0.7015万 CryptoCC26XX_OPEN
    0000c5d7 CryptoCC26XX_Transact
    0000c5dd加密CC26XX_transactPolling
    0.0007万e93 DefaultAssertCback
    2000.18万 Display_config
    0000d7f3 Display_count
    0000d8c3 Display_defaultParams
    0000c465 Display_doClearLines
    0.9961万 Display_doOpen
    0000b6bd Display_doPrintf
    0.0009万e95 ECCROMCC26XX_Params_init
    0.0545万d ECCROMCC26XX_genDHKey
    0.06万d ECCROMCC26XX_genKeys
    0000a725 ECCROMCC26XX_INIT
    2.0004万f80 ecc_data$Base
    2000.5万 ecc_data$limit
    1001.6795万 ecc_allocWorkzone
    100.1679万d ecc_setWin
    1000db95 EXPORTOPERAND
    2.0004万fd4 EXPW
    2.0004万fc8 EXPX
    2.0004万fcc Expy
    2.0004万fd0 EXPZ
    0.0006万ab1 GAPBondMgr_LinkEst
    0.0009万ee5 GAPBondMgr_LinkTerm
    0000b0f5 GAPBondMgr_PasscodeRsp
    0.0005万d81 GAPBondMgr_ProcessEvent
    0.0412万d GAPBondMgr_ProcessGAPMsg.
    0000bcad GAPBondMgr_Register
    0.0007万c0d GAPBondMgr_ResolveAddr
    0.0002万e81 GAPBondMgr_SetParameter
    0000bcc9 GAPBondMgr_SupportsEnhancedPriv
    0000a6a1 GAPBondMgr_UpdateCharCfg.
    0.0008万ea1 GAPBondMgr_syncResolvingList
    0.6385万 GAPRole_GetParameter
    0万d4d GAPRole_SetParameter
    0000b125 GAPRole_TerminateConnection
    0000a765 GAPRole_createTask
    1001.1701万 gap_authenticate
    100.1187万d Gap_Bond
    10.0185万ad GAGE_ConfigDeviceAddr
    0000a6e3 GAGE_DeviceInit
    1001.4599万 GAGE_EndDiscoverable
    1001.4655万 GAGE_GetAdvToken
    10.0185万a5 GAGE_GetIRK
    10.0184万f5 GAGE_GetParamValue
    1001.8859万 GAGE_INit
    1001.4459万 GAGE_MakeDiscoverable
    10.0188万fd GAGE_NumActiveConnections
    1001.8505万 GAGE_ParamsInit
    1001.1829万 GAGE_PasscodeUpdate
    10.0117万ed GAGE_PasskeyUpdate
    100.193万d GAGE_PeriConnRegister
    10.0146万b1 GAGE_PeriDevMgrInit
    0000b275 gap_PrivacyInit
    1001.8879万 GAGE_ProcessEvent
    1.0018万b51 GAGE_RegisterBondMgrCB
    1001.8851万 Gap_RegisterForMsgs.
    1001.4679万 GAGE_RemoveAdvToken
    1001.8539万 GAGE_SecParamsInit
    10.0192万bd GAGE_SendSlaveSecurityRequest
    10.0145万e1 GAGE_SetAdvToken
    10.0184万bd GAGE_SetParamValue
    10.0116万ad GAGE_Signable
    10.0117万c1 GAGE_TerminateAuth
    10.0114万e5 GAGE_TerminateLinkReq
    1001.4695万 GAGE_UpdateAdvTokens
    1001.4509万 GAGE_UpdateAdvertisingData
    100.1157万d GAGE_UpdateLinkParamReq
    1001.1605万 GAGE_UpdateLinkParamReqReply
    0000c621 GAGE_UpdateResolvingList
    0000c361 gap_isPairing
    0000baf5 GATTServApp_AddService
    0.0009万ad1 GATTServApp_Init
    0000ae55 GATTServApp_InitCharCfg.
    0000a825 GATTServApp_ProcessEvent
    0.3919万 GATTServApp_ReadAttr
    0000c2d1 GATTServApp_ReadCharCfg.
    0000c50d GATTServApp_RegisterForMsg.
    0000b421 GATTServApp_RegisterService
    0000aac1 GATTServApp_SendCCCUpdateEvent
    2.0004万f60 GATTServApp_TaskID
    0000ba71 GATTServApp_UpdateCharCfg.
    0.0008万ac1 GATTServApp_WriteAttr
    100.1814万d GATT_AppCompletedMsg.
    1000fbc1 GATT_DeregisterService
    1000fdbd GATT_FindHandle
    1000fd55 GATT_FindHandleUUID
    1000fe05 GATT_FindNextAttr
    10.0107万b9 GATT_GetNextHandle
    1000ffcd GATT指示
    100.1817万d GATT初始化
    1000fa89 GATT_InitServer
    1001.0045万 GATT通知
    1001.8341万 GATT通知事件
    10.0181万ad GATT_ProcessEvent
    1001.8131万 GATT_RegisterForMsgs.
    1000fc09 GTO_RegisterForReq
    1000fb09 GATT_RegisterService
    1000fedd GATT_SendRsp
    1000fccd GATT_ServiceChangedInd.
    1000febd GATT_ServiceEncKeySize
    1000fead GATT_ServiceNumAttrs
    1001.8139万 GATT_SetHostToAppFlowCtrl
    100.1835万d GATT_UpdateMTU
    1000fc11 GATT_VerifyReadPermissions
    1000fc59 GATT_VerifyWritePermissions
    1001.8405万 GATT_BM_ALoc
    1001.8489万 GATT_BM_FREE
    1000d1F1 GETBIT
    1000d205 GETDIGIT
    1000d255 GETDIGITL2R
    0000b931 GGS_AddService
    0.8691万 GGS_SetParameter
    1000bb91 HCI_CommandCompleteEvent
    1000bca5 HCI_CommandStatusEvent
    1000ba8d HCI_DataBufferOverflowEvent
    1000a875 HCI_DisconnectCmd
    1000b78d HCI_EXT_AdvEventNoticeCmd
    1000b7a5 HCI_EXT_BuildRevisionCmd
    1000b3f5 HCI_EXT_ClkDivOnHaltCmd
    1000b799 HCI_EXT_ConnEventNoticeCmd
    1000b415 HCI_EXT_DeclareNvUsageCmd
    1000b7F1 HCI_EXT_DelaySleepCmd
    1000b6a9 HCI_EXT_DisconnectImmedCmd.
    1000b5f9 HCI_EXT_EnablePTMCmd.
    1000b569 HCI_EXT_EndModemTestCmd
    1000b739 HCI_EXT_ExtendRfRangeCmd
    1000b891 HCI_EXT_GetConnInfoCmd
    1000b76d HCI_EXT_HaltDuringRfCmd
    1000b689 HCI_EXT_MapPmIoPortCmd
    1000b529 HCI_EXT_ModemHopTestTxCmd
    1000b549 HCI_EXT_ModemTestRxCmd
    1000b509 HCI_EXT_ModemTestTxCmd
    1000b871 HCI_EXT_NumComplPktsLimitCmd
    1000b3c1 HCI_EXT_OnePktPerEvtCmd
    1000b851 HCI_EXT_OverlappedProcessingCmd.
    1000b719 HCI_EXT_PERbyChanCmd
    1000b6c9 HCI_EXT_PacketErrorRateCmd.
    1000b825 HCI_EXT_ResetSystemCmd.
    1000b649 HCI_EXT_SaveFreqTuneCmd
    1000b5a1 HCI_EXT_SetBDADRCmd.
    1000b4b5 HCI_EXT_SetFastTxResponseTimeCmd
    1000b619 HCI_EXT_SetFreqTuneCmd
    1000b495 HCI_EXT_SetLocalSupportedFeaturesCmd.
    1000b935 HCI_EXT_SetMaxDataLenCmd
    1000b669 HCI_EXT_SetMaxDtmTxPowerCmd
    1000b351 HCI_EXT_SetRxGainCmd
    1000b5d9 HCI_EXT_SetSCACmd.
    1000b4d5 HCI_EXT_SetSlaveLatencyOverrideCmd
    1000b381 HCI_EXT_SetTxPowerCmd
    0000c4e9 HCI_GAPTaskRegister
    0.0008万b41 HCI_HardwareErrorEvent
    1000a9b9 HCI_HostBufferSizeCmd.
    1000a9F1 HCI_HostNumCompletedPktCmd
    0000aa0d HCI_Init
    0000c4f5 HCI_L2CAPTaskRegister
    1000b16d HCI_LE_AddDeviceToResolvingListCmd.
    1000adc9 HCI_LE_AddWhiteListCmd
    1000b1b1 HCI_LE_ClearResolvingListCmd
    1000ada9 HCI_LE_ClearWhiteListCmd
    1000ae21 HCI_LE_ConnUpdateCmd
    1000ad55 HCI_LE_CreateConnCancelCmd
    1000ad11 HCI_LE_CreateConnCmd
    1000b2bd HCI_LE_GenerateDHKeyCmd.
    1000afa9 HCI_LE_LtkReqNegReplyCmd.
    1000af8d HCI_LE_LtkReqReplyCmd.
    1000af21 HCI_LE_RandCmd
    1000aca1 HCI_LE_ReadAdvChanTxPowerCmd
    1000ab89 HCI_LE_ReadBufSizeCmd
    1000ae6d HCI_LE_ReadChannelMapCmd
    1000b289 HCI_LE_ReadLocalP256 PublicKeyCmd.
    1000b22d HCI_LE_ReadLocalResolvableAddressCmd
    1000abc5 HCI_LE_ReadLocalSupportedFeaturesCmd.
    1000b141 HCI_LE_ReadMaxDataLenCmd
    1000b1f5 HCI_LE_ReadPeerResolvableAddressCmd
    1000ae95 HCI_LE_ReadRemoteUsedFeaturesCmd.
    1000b1d1 HCI_LE_ReadResolvingListSizeCmd.
    1000b0f5 HCI_LE_ReadsudDefaultDataLenCmd
    1000afc5 HCI_LE_ReadSupportedStatesCmd.
    1000ad75 HCI_LE_ReadWhiteListSizeCmd.
    1000b2fd HCI_LE_ReceiverTestCmd
    1000b0bd HCI_LE_RemoteConnParamReqNegReplyCmd.
    1000b079 HCI_LE_RemoteConnParamReqReplyCmd
    1000b191 HCI_LE_RemoveDeviceFromResolvingListCmd.
    1000adfd HCI_LE_RemoveWhiteListCmd
    1000b24d HCI_LE_SetAddressResolutionEnableCmd
    1000ac41 HCI_LE_SetAdvDataCmd
    1000ac81 HCI_LE_SetAdvEnableCmd
    1000ac09 HCI_LE_SetAdvParamCmd
    1000b0d9 HCI_LE_SetDataLenCmd
    1000ab61 HCI_LE_SetEventMaskCmd
    1000ae4d HCI_LE_SetHostChanClassificationCmd.
    1000abe5 HCI_LE_SetRandomAddressCmd
    1000b26d HCI_LE_SetResolvablePrivateAddressTimeoutCmd
    1000acF1 HCI_LE_SetScanEnableCmd
    1000acc5 HCI_LE_SetScanParamCmd.
    1000ac61 HCI_LE_SetScanRspDataCmd
    1000af71 HCI_LE_StartEncyptCmd
    1000b31d HCI_LE_TestEndCmd
    1000b2e1 HCI_LE_TransmitterTestCmd
    1000b121 HCI_LE_WriteMUSEdDefaultDataLenCmd
    1000bab1 HCI_NumOfCompletedPacketsEvent
    0.0083万d1 HCI_ProcessEvent
    1000b001 HCI_ReadAuthPayloadTimeoutCmd
    1000ab05 HCI_ReadBDADRCmd.
    1000aac1 HCI_ReadLocalSupportedCommandsCmd.
    1000aadd HCI_ReadLocalSupportedFeaturesCmd.
    1000aa51 HCI_ReadLocalVersionInfoCmd.
    1000a891 HCI_ReadRemoteVersionInfoCmd
    1000ab25 HCI_ReadRssiCmd
    1000a959 HCI_ReadTransmitPowerLevelCmd
    1000a91d HCI_ResetCmd
    1001.9445万 HCI_ReverseBytes
    0000c501 HCI_SMPTaskRegister
    1000bd79 HCI_SendCommandCompleteEvent
    1000bd51 HCI_SendCommandStatusEvent
    1000be21 HCI_SendControllerToHostEvent
    1000a839 HCI_SendDataPkt
    1000a97d HCI_SetControllerToHostFlowCtrlCmd
    1000a8c5 HCI_SetEventMaskCmd
    1000a8F1 HCI_SetEventMaskPage2cmd
    1000a7fd HCI_ValidConnTimeParams
    1000bc2d HCI_VendorSpecifcCommandCompleteEvent
    1000b041 HCI_WriteAuthPayloadTimeoutCmd.
    1000a7F1 HCI_BM_ALLO
    20.0012万f4 HEAPMGR_SIZE
    0.3541万结束
    0.036万f HOSTlseek
    0.0034万ed门打开
    0.3577万 HOSTREAD
    0.0036万a3 HOS姓氏
    0.0366万d HOSTunlink
    0.0035万c5 HOSTWRITE
    0万fe1 HalFlashGetAddress
    0000b155 HalFlashRead
    0000c591 HalFlashWrite
    0000c2e1 Hwip_Params_init
    0000a7a5 Hwip_construct
    0000c625 Hwip_disable
    0000c629 Hwip_enableInterrupt
    0000c62d Hwip_post
    UNDEFED HWIP_RESTORE
    0000c631 Hwip_setFunction
    0000c0e9 iCall_abort
    0.0097万e1 iCall_createRemoteTasksAtRuntime.
    20.0012万f8 iCall_Dispatcher
    0.9841万 iCall_enrollService
    0000be89 iCall_enterCSImpl
    20.0012万d4 iCall_enterCriticalSection
    0.9901万 iCall_fetchMsg.
    0000b091 iCall_fetchServiceMsg.
    0000ae89 iCall_free
    0000c5e3 iCall_freeMsg.
    0.9075万 iCall_getHeapStats
    0000b4ad iCall_getLocalMsgEntityId
    0000c635 iCall_getTicks
    0000ae89 iCall_heapFree
    0.9075万 iCall_heapGetStats
    0.009万e5 iCall_heapInit
    0.0084万F1 iCall_heapMalloc
    0000c0ff iCall_leaveCSImpl
    20.0012万d8 iCall_leaveCriticalSection
    0000c639 iCall_malloc
    0000c115 iCall_pwrDiscense.
    0000c12b iCall_pwrRequire
    0.0099万bd iCall_pwrUpdActivityCounter
    0.0009万f35 iCall_registerApp
    0000aebd iCall_searchServiceEntity
    0.9651万 iCall_send
    0.0091万c5 iCall_sendServiceComplete
    0.8065万 iCall_setTimer
    0000ba2d iCall_setTimerMSects.
    0000c421 iCall_signal
    0000c59b iCall_stopTimer
    0.0009万be5 iCall_Wait
    1000dbb9 IMPORTDATA
    1000db2d IMPORTLENGTH
    1000db31 IMPORTMODULUS
    1000db55 IMPORTOPERAND
    1000d8e1反转
    1001.992万 IOCapMatrix
    1000d6e9 JACADD.
    1.0014万fad L2CAP_BuildCmdlReject
    10.015万d5 L2CAP_BuildInfoRsp
    1001.5095万 L2CAP_BuildParamUpdateRsp
    1001.9185万 L2CAP_CmdletReject
    10.0191万c5 L2CAP_ConnParamUpdateReq
    1001.9209万 L2CAP_ConnParamUpdateRsp
    100.1929万d L2CAP_GetMTU
    10.0154万ad L2CAP_GetParamValue
    1001.9275万 L2CAP_HostNumCompletedPkts.
    100.1919万d L2CAP_InfoReq
    10.0179万c9 L2CAP_Init
    10.015万b9 L2CAP_ParseInfoReq
    1001.5059万 L2CAP_ParseParamUpdateReq
    1.0017万a51 L2CAP_ProcessEvent
    10.019万d9 L2CAP_RegisterApp
    1.0017万b29 L2CAP_RegisterFlowCtrlTask
    1001.9105万 L2CAP_SendData
    0000ac95 L2CAP_SendDataPkt
    1001.9291万 L2CAP_SetBufSize
    1001.9231万 L2CAP_SetControllerToHostFlowCtrl
    10.0154万a9 L2CAP_SetParamValue
    10.0192万b9 L2CAP_SetUserConfig
    100.1542万d L2CAP_BM_ALLO
    2.0004万曲面(LEN
    1000.6425万 LL_AddDeviceToResolvingList
    10.0049万f9 LL_AddWhiteListDevice
    1000c415 LL_AdvReportBack
    1000be71 LL_AuthPayloadTimeoutExpiredBack
    1.0005万f95 LL_ChanMapUpdate
    100.0659万d LL_ClearResolvingList
    10.0049万d9 LL_ClearWhiteList
    1.0005万f61 LL_ConnActive
    1000c749 LL_ConnParamUpdateBack
    1000.5279万 LL_ConnUpdate
    1000c521 LL_ConnectionCompleteBack
    1.0005万afd LL_CreateConn
    1.0005万e85 LL_CreateConnCancel
    1.0004万bd LL_CtrlToHostFlowControl
    1000bf65 LL_DataLengthChangeEventCback
    10.005万e9 LL_DirectTestEnd
    1000cb35 LL_DirectTestEndDoneBack
    1.0004万fe9 LL_DirectTestRxTest
    1.0004万e45 LL_DirectTestTxTest
    1.0004万d15 LL_Disconnect
    1000c695 LL_DisconnectCback
    0000c157 LL_DoorbellErrorCrback
    10.0172万f9 LL_ENC_AES128_Decrype.
    100.1729万d LL_ENC_AES128_Encrypt
    10.0174万f9 LL_ENC_Decrype.
    0.8341万 LL_ENC_DecryptMsg.
    1001.7485万 LL_ENC_Encrypt
    1001.7361万 LL_ENC_EncryptMsg.
    1001.7221万 LL_ENC_GENDeviceIV
    100.172万d LL_ENC_GENDeviceSKD
    1001.7235万 LL_ENC_GenerateNaonce
    10.0171万cd LL_ENC_GeneratePseudoRandNum
    10.0171万e5 LL_ENC_GenerateTrueRandNum
    100.1714万d LL_ENC_Init
    1001.7259万 LL_ENC_LoadKey
    10.0171万ad LL_ENC_ReverseBytes
    1.0006万d7d LL_EXT_AdvEventNotice
    1.0006万dc1 LL_EXT_BuildRevision
    10.0068万c1 LL_EXT_ClkDivOnHalt
    1.0006万d99 LL_EXT_ConnEventNotice
    10.0068万c5 LL_EXT_DeclareNvUsage
    10.0068万c9 LL_EXT_Decrypt
    1.0006万cbd LL_EXT_DisconnectImmed.
    1.0006万b59 LL_EXT_EndModemTest
    1.0006万d75 LL_EXT_ExtendRfRange
    1000ba31 LL_EXT_ExtendRfRangeBack
    1.0006万e59 LL_EXT_GetConnInfo
    1.0006万d79 LL_EXT_HaltDuringRf
    1.0006万cb9 LL_EXT_MapPmIoPort
    1.0006万a01 LL_EXT_ModemHopTestTx
    1.0006万ab5 LL_EXT_ModemTestRx
    1000.6965万 LL_EXT_ModemTestTx
    1.0006万e25 LL_EXT_NumComplPktsLimit
    10.0068万a1 LL_EXT_OnePacketPerEvent
    1.0006万e21 LL_EXT_OverlappedProcessing
    1.0006万d55 LL_EXT_PERbyChan
    1.0006万d05 LL_EXT_PacketErrorRate
    1000b9d9 LL_EXT_PacketErrorRateCback
    1.0006万ded LL_EXT_ResetSystem
    1.0006万c99 LL_EXT_SaveFreqTune
    1.0006万b8d LL_EXT_SetBDADDR
    1000.6929万 LL_EXT_SetFastTxResponseTime
    1.0006万c95 LL_EXT_SetFreqTune
    10.0068万ed LL_EXT_SetLocalSupportedFeatures
    10.0063万bd LL_EXT_SetMaxDataLen
    1.0006万c9d LL_EXT_SetMaxDtmTxPower
    1000.6859万 LL_EXT_SetRxGain
    1000b991 LL_EXT_SetRxGainBack
    1.0006万c1d LL_EXT_SetSCA
    1000.6941万 LL_EXT_SetSlaveLatencyOverride
    1000.6869万 LL_EXT_SetTxPower
    1000b9a1 LL_EXT_SetTxPowerBack
    1000ca01 LL_EncChangeBack
    1000ca69 LL_EncKeyRefreshCback
    1.0005万ab5 LL_EncLtkNegReply
    1.0005万a61 LL_EncLtkReple.
    1000c921 LL_EncLtkReqCback
    1.0004万a95 LL_Encrypt
    1000c1c9 LL_EnhancedConnectionCompleteBack
    1000.6819万 LL_GenerateDHKeyCmd
    1000c0f9 LL_GenerateDHKeyCompleteEventCback
    1.0004万b49 LL_GetNumActiveConns.
    0.0775万 LL_Init
    0.0032万cd LL_LastCmdDoneCback
    1.0004万a79 LL_NumEmptyWlEntries
    1.0016万d29 LL_PRIV_Ah
    1001.7021万 LL_PRIV_ClearExtWL
    10.017万d9 LL_PRIV_FindExtWLEntry
    1.0016万f19 LL_PRIV_FindPeerInRL
    1.0016万dd1 LL_PRIV_GenerateNRPA
    1.0016万d71 LL_PRIV_GenerateRPA
    1.0016万e1d LL_PRIV_GenerateRSA
    1.0016万cb5 LL_PRIV_Init
    1.0016万eb5 LL_PRIV_IsIDA
    1.0016万e9d LL_PRIV_ISNRPA
    1.0016万e89 LL_PRIV_IsRPA
    1.0016万ecd LL_PRIV_IsResolvable
    1.0016万f01 LL_PRIV_IsZeroIRK
    1.0016万fc5 LL_PRIV_NumberPeerRLEntries
    1.0016万e59 LL_PRIV_ResolveRPA
    1001.7139万 LL_PRIV_SetWLSize.
    1.0016万fe5 LL_PRIV_SetupPrivacy
    1.0016万ffd LL_PRIV_TeardownPrivacy
    1001.7051万 LL_PRIV_UpdateExtWLEntry
    1.0016万f8d LL_PRIV_UpdateRL
    0.2225万 LL_ProcessEvent
    1.0004万ac1 LL_PseudoRand
    1000.4969万 LL_RX_BM_ALoc
    1.0004万ab5 LL_Rand
    1000b95d LL_RandCrback
    1000.5701万 LL_ReadAdvChanTxPower
    10.0061万c1 LL_ReadAuthPayloadTimeout
    100.0498万d LL_ReadBDADDR
    1.0004万c81 LL_ReadChanMap
    1000.6309万 LL_ReadDefaultDataLen
    10.0067万d5 LL_ReadLocalP256 PublicKeyCmd
    1000c015 LL_ReadLocalP256PublicKeyCompleteEventCback
    1000.6685万 LL_ReadLocalResolvableAddress
    1.0004万b59 LL_ReadLocalSupportedFeatures
    1.0004万b7d LL_ReadLocalVersionInfo
    100.0637万d LL_ReadMaxDataLen
    1000.6625万 LL_ReadPeerResolvableAddress
    100.0614万d LL_ReadRemoteUsedFeatures
    1000c825 LL_ReadRemoteUsedFeaturesCompleteBack
    1.0004万bd1 LL_ReadRemoteVersionInfo
    1000c8ad LL_ReadRemoteVersionInfoCback
    100.0661万d LL_ReadResolvingListSize
    1.0004万cb5 LL_ReadRssi
    1.0004万aed LL_ReadSupportedStates
    1.0004万c31 LL_ReadTxPowerLevel
    1.0004万a61 LL_ReadWl大小
    1000bee5 LL_RemoteConnParamReqCback
    1000.5229万 LL_RemoteConnParamReqNegReple.
    1000.5189万 LL_RemoteConnParamReqReply
    1000.6521万 LL_RemoveDeviceFromResolvingList
    1.0004万a25 LL_RemoveWhiteListDevice
    0.0005万c15 LL_Reset
    1001.9465万 LL_RxDataCompleteBack
    0.5121万 LL_RxEntryDoneBack
    0.4881万 LL_RxIgnoredBack
    0.8609万 LL_SetAddressResolutionEnable
    10.0055万F1 LL_SetAdvControl
    100.0559万d LL_SetAdvData
    100.0536万d LL_SetAdvParam
    1000.6269万 LL_SetDataLen
    10.0049万ad LL_SetRandomAddress
    1000.6781万 LL_SetResolvablePrivateAddressTimeout
    1000.5919万 LL_SetScanControl
    1000.5795万 LL_SetScanParam
    1000.5739万 LL_SetScanRspData
    100.0604万d LL_StartEncrypt
    1000.4945万 LL_TX_BM_ALLO
    2.0004万f6e LL_TaskID
    1.0004万d81 LL_TxData
    0000bad5 LL_TxEntryDoneBack
    10.0061万fd LL_WriteAuthPayloadTimeout
    1000.6335万 LL_WriteDefaultDataLen
    1001.9988万 LUTC
    10.0199万b8 LUTINCI
    10.0195万dc长焦耳
    1.0019万a30 LUTOPCODE
    1001.997万 LUTOPSIGN
    10.0199万a0 LUTSE
    100.1973万c LUTSTATE
    0000c489 List_Empty
    0000c63d List_head
    0000c641 List_next
    0000ba4f List_put
    2.0004万fa8模块
    2.0004万ffc MSBMOD
    1001.9898万 NIST_Curve_P256_GX
    10.0198万bc NIST_Curve_P256_Gy
    1001.985万 NIST_Curve_P256_A
    1001.9874万 NIST_Curve_P256_b
    1001.9808万 NIST_Curve_P256_p
    100.1982万c NIST_Curve_P256_r
    0000c495 NOROM_CPUcpsid
    0000c4a1 NOROM_CPUcpsie
    0000c5e9 NOROM_CPUdelay
    0.8221万 NOROM_CRYPTOAesLoadKey
    0000b505 NOROM_ChipInfo_GetChipFamily
    0000bed9 NOROM_ChipInfo_GetPackageType.
    0000bd01 NOROM_FlashProgram
    0000bd1d NOROM_FlashSectorErase.
    0.9231万 NOROM_OSCHH_AttempToSwitchToXosc
    0000a43d NOROM_OSCHF_SwitchToRcOscTurnOffXosc
    0000b8c5 NOROM_OSCHf_TurnOnXosc
    0000a8a5 NOROM_OSC_HPOSCRelativeFrquencyOffsetGet
    0000c4ad NOROM_OSC_HPOSCRelativeFrquencyOffsetToRFCoreFormatConvert
    0000beF1 NOROM_RFCCpeIntGetAndClear
    0000b531 NOROM_RFCDoorbellSendTo
    0.0077万e1 NOROM_SetupTrimDevice
    0.0096万b5 NOROM_SysCtrlAdjustargeAfterPowerDown
    0.3709万 NOROM_SysCtrlSetRechargeBeforePowerDown
    0.0093万e1 NOROM_sysctrl_DCDC_VoltageConditionalControl
    0.0009万f85 NPI_WriteTransport
    0001e000 nv_flash
    2000.1768万 OSAL_TIMESonds
    0000c301 Onboard _rand
    0.8937万 Onboard_soft_reset
    0000b8e9 PINCC26XX_getPinCount
    0000d938 PINCC26XX_hwAttrs.
    2.0001万bd4 PIN_HandleTable
    2.0001万b40 PIN_NumPins
    0.059万d PIN_INIT
    0.0009万a19 PowerCC26XX_RCOSC_clockFunction
    0.0001万c11 PowerCC26XX_auxISR
    0.0009万a75 PowerCC26XX_CALIBRATE
    0000d8c4 PowerCC26XX_config
    0.0055万ed PowerCC26XX_doCalibrate
    0.0929万d PowerCC26XX_initiateCalibration
    0000a8e1 PowerCC26XX_isStableXOSC
    20.001万e8 PowerCC26XX_MODULE
    0000ba95 PowerCC26XX_schedulerDisable
    0000bab5 PowerCC26XX_schedulerRestore
    0.007万e9 PowerCC26XX_standbyPolicy
    2.0001万df4 PowerCC26XX_swiKey
    0000a91d PowerCC26XX_switchXOSC
    2.0001万df0 PowerCC26XX_taskKey
    0000c4b9 Power_getConstraintMask
    0000c4c5 Power_getDependencyCount
    0000bc35 Power_getTransitionLatency
    0000bf09 Power_idleFunc
    0.0005万ed1 Power_init
    0000b711 Power_registerNotify
    0000aef1 Power_releaseConstraint
    0.7669万 Power_releaseDependency
    0000b245 Power_setConstraint
    0.7951万 Power_setDependency
    0.0002万a11 Power_Sleep
    20.0044万f8 RAM_BASE ADDR
    1000a5dd RFHAL_AllocDataEntry
    1000a585 RFHAL_AllocDataEntryQueue
    1000a6c5 RFHAL_BuildDataEntryRingBuffer
    1000a745 RFHAL_BuildLinkedBuffer
    1000a629 RFHAL_BuildRingBuffer
    1000a621 RFHAL_FreeDataEntry
    1000a5a1 RFHAL_FreeDataEntryQueue
    1000a55d RFHAL_FreeNextTxDataEntry
    1000a5a9 RFHAL_GetNextDataEntry
    1000a5ad RFHAL_GetTempDataEntry
    1000a551 RFHAL_InitDataQueue
    1000a5b1 RFHAL_NextDataEntryDone
    0000c1c5 rf_params_init
    0.0005万a99 rf_cancelCmd.
    0000c5c1 rf_flushCmd
    0000c279 RF_getCmdlop
    0.0098万a1 RF_getCurrentTime
    0.0009万fd5 rf_getinfo
    0000a7e5 rf_getRssi
    0.003万ad RF_OPEN
    0.0008万a41 rf_pendCmd.
    0.0004万f79 rf_postCmd.
    0000a959 rf_runCmd.
    0000bd71 rf_runDirectCmd
    0000bf39 rf_runImmediateCmd.
    1000.4941万 ROM_BASE ADDR
    2000.4504万 ROM_FlashJT
    0000cba0 ROM_Flash_JT
    0000c141 ROM_Spinlock
    0000a509重新设置ISR
    1000d1b1 SAVEPOINT
    10.0199万f0 SCA
    2.0004万fc4 SCAL
    1000d195 SCALARMUL
    1000ccb9 SCALARMUL_CORE
    1000d08d SCALARMUL_FINAL
    1000cb69 SCALARMUL_INIT
    1000dbd5 SETOPERAND
    1000dc15编辑
    UNDED SHT$$INIT_ARRAQ$$Base
    UNDED SHT$$INIT_ARRAL$$LIMIT
    1001.2139万 SM_Encrypt
    1001.2465万 SM_GenerateAuthenSig
    100.179万d SM_GetDHKey
    10.0178万c5 SM_GetEccKeys.
    1001.7989万 SM_GetScConfirmOob
    10.0175万d9 sm_Init
    1000eb91 SM_PasskeyUpdate
    1001.7615万 SM_ProcessEvent
    10.0178万bd sm_RegisterTask
    1.0012万dfd sm_ResponseInit
    1000f551 SM_SetECCRegenerationCount
    1000eaed SM_Start配对
    1001.2521万 SM_VerifyAuthenSig
    2.0004万f7d sm_appExpectingKey
    20.0045万a9 sm_appTaskID
    0.0008万b3f sm_dhKeyCB
    0.0995万f sm_p256KeyCB
    1000da81 SQUAREMULTIPLYWORD
    0000b739 SafeHapiVoid
    1000d2c5选择注册
    0000b55d SemaphoreP_construtBinary
    0000c28b半挂式P_Pend
    0000c649 SemaphoreP_POST
    0.0007万b65 SimpleBLEPeripheral_createTask
    0000a4c5 SimpleProfile_GetParameter
    0.7429万 SimpleProfile_SetParameter
    0000c321 swip_Params_init
    0000a995 swip_construct
    0000c64d swip_disable
    0000c651 swip_getTrigger
    0000c655 swip_or
    UNDEFED swip_restore
    2.0004万f04 SysBootMsg.
    2.0004万fe4 TMP1.
    2.0004万fe8 TMP2
    2.0004万fec Tmp3
    2.0004万ff0 TMP4
    2.0004万ff4
    2.0004万ff8 TMP6.
    0000d964 TRNGCC26XXXHWAttrs.(0000d964 TRNGCC26XXHWAttr
    0000d72c TRNGCC26XX_CONFIG
    0.0007万a05 TRNGCC26XX_getNumber
    0000b761 TRNGCC26XX_INIT
    0000bda9 TRNGCC26XX_OPEN
    0000d7cc TxPowerTable
    0000a365 Util_construtClock
    0000c42f Util_construtQueue
    0000a025 Util_convertBdAddr2Str
    0000c331 Util_isActive
    0000abed Util_restartClock
    0000c659 Util_startClock
    0000c65d Util_stopClock
    1.0018万ca9 WL_AddEntry
    1.0018万bb1 wl_clear
    1.0018万床WL_ClearEntry
    1.0018万df9 WL_ClearIgnoreList
    1.0018万c51 WL_FindEntry
    1.0018万c25 WL_GetNumFreeEntries
    1.0018万c11 WL_GetSize
    1.0018万b81 WL_Init
    1.0018万d41 WL_RemoveEntry
    1.0018万dc1 WL_SetWlIgnore
    1000dc09零
    0万 __ASM__
    2.0001万a20 __CIOBUF_
    0.008万 __ISA__
    0.0092万 __PLAT__
    2000.44万 __stack_end
    0.04万 __stack_size
    2000.44万 __stack_top
    0万b9 __TARG__
    0000def4 __TI_CINIT_Base
    0000df5c __TI_CINIT_LIMIT
    0000deb0 __TI_Handler_Table_Base
    0000debc __TI_Handler_Table_Limit
    0.0007万d55 __TI_auto_init
    0000aff5 __TI_cleanup
    2000.1738万 __TI_CLEANG_PTR
    0.7725万 __TI_closefile
    0.9519万 __TI_decpress_lzss
    0000c43d __TI_decpress_none
    0000a23d __TI_doflush
    200.0173万c __TI_dtes_ptr
    2000.174万 __TI_ENable_EXIT_PROFILE_OUTPUT
    2万cbc __TI_ft_end
    FFFFFFFF __TI_pprof_out hndl
    FFFFFFFF __TI_prof_data_size
    FFFFFFFF __TI_prof_data_start
    0.0961万b __TI_readmsg
    0万 __TI_STATIC_BACK__
    2万cc0 __TI_tmpnams
    0.0095万e9 __TI_writemsg.
    0000c519 __TI_ZERO_INIT
    0万DE __TRDR__
    0001ff_unused_flash_end__
    0万 __unused_flash_start__
    2000.5万 __unused_SRAM_end__
    2000万 __unused_SRAM_START__
    0000c029 __aeabi_lmul
    0.0008万e27 __aeabi_memclr.
    0.0008万e27 __aeabi_memclr4.
    0.0008万e27 __aeabi_memclr8.
    0.0007万f31 __aeabi_memcpy
    0.0007万f31 __aeabi_memcpy4.
    0.0007万f31 __aeabi_memcpy8.
    0.0008万e29 __aeabi_memset
    0.0008万e29 __aeabi_memset4.
    0.0008万e29 __aeabi_memset8.
    0.0003万f39 __aeabi_uldivmod
    FFFFFFFF __binit__
    FFFFFFFF __c_args__
    0001ffa8 __ccfg.
    1.0019万afe __checksum
    1000.494万 __checksum_BEGIN
    1.0019万afd __checksum_end
    0.0081万d7 __checksum_value
    1.0019万a1d __exit
    2000.4万 __stack
    0000c011 _args_main
    0000a509 _c_int00
    2万d60 _ftable
    200.0176万c锁定
    0000c201 _nop
    0000c209 _register_lock
    0000c203 _register_unlock
    2000.177万 _UNLOCK
    0.0009万e45中止
    2.0004万f00激活连接
    1.0019万a40 AdvChan
    2.0004万a20高级命令
    2.0004万ae4 advDataEntry
    2.0004万da4 advDataQueue
    1.0019万a10高级Evt2cmd
    1.0019万a28 AdvEvt2State.
    2.0004万f10高级信息
    2.0004万db4高级输出
    2.0004万bf4高级参数
    0000da46 advPktSuffix
    2000.1804万 appAssertBack
    20.0045万a7 appTaskID
    0000d958 appTxPwrTbl
    0000d6ee外观UUID
    200.0175万c assertSubcause
    1001.6071万 attSendMsg.
    1001.9099万 attSendRspMsg.
    2.0004万e4c attServerNotifyTxCB
    2.0004万f3e attlen
    2.0004万fa0 ax64
    2000.1368万 baseTaskID
    FFFFFFFF绑定
    20.0016万f8 bleAppServiceInfoTable
    0000b589 bleDispatch_BMAlloc
    0000bf51 bleDispatch_BMFree
    0000d7f4 bleStackConfig
    0.9155万 ble—dispatch—liteProcess
    0000d8f4主板配置
    10.0199万d0 btBaseUUID
    2.0004万f0c buildInfo
    2.0004万df8 cachedTRNGdata
    200.0136万c cbTimers
    0000d6ea charAggregFormatUUID
    0000d6e0 charExtPropsUUID
    0000d6e8 charFormatUUID
    0000d6e2 charUserDescUUID
    0000d6d6字符UUID
    0000d6e4 clientCharCfgUUID
    0000da3c connEvtCutoff
    2.0004万f44 connInitialMaxTxOctets
    2.0004万f46 connInitialMaxTxTime.
    2.0004万d5c连接输出
    2.0004万c84 connReqData
    1.0019万a00 const_rb
    0000a1F1 copy_in.
    0000d8d4加密CC26XXHWAttrs
    2.0001万d18加密CC26XXObjects
    0000d700 cryptoDriverTableBLE
    2.0004万ef8 cryptoDrvTblPtr
    0000da4f加密模式
    2.0004万c14加密PRAND
    2.0004万f63 ctrlToHostEnable
    2.0004万f71 curTxPowerVal
    0000d8c1 devInfo1.1073万CertUUID
    0000d900 devInfoCbs
    0000d9a0 devInfoFirmwareRevUUID
    0000d9a2 devInfoHardwareRevUUID
    0000d9a4 devInfoMfrNameUUID
    0000d9a6 devInfoModelNumberUUID
    0000d9a8 devInfoPnpIdUUID
    0000d9aa devInfoSerialNumberUUID
    0000d9ac devInfoServUUID
    0000d9ae devInfoSoftwareRevUUID
    0000d9b0 devInfoSystemIdUUID
    2.0004万dec deviceFeatureSet
    0000d6ec deviceNameUUID
    1.0011万c8d断开下一步
    200.002万c分配处理
    0000d888驱动程序表
    0000c16d驱动程序Table_fnSpinlock
    2.0001万e25 driverlib_release_0_4.8919万
    2.0004万f1c dtmInfo
    0000d8e4 eccDriverTable
    2.0004万ef4 eccDrvTblPtr
    2.0004万b7c eccParams
    1.0016万c1d eccRom_genKeys
    1.0016万c65 eccRom_genSharedSecret
    2.0004万f80 eccRom_param_gx
    2.0004万f84 eccRom_param_Gy
    2.0004万f94 eccRom_param_A
    2.0004万f98 eccRom_param_b
    2.0004万f8c eccRom_param_p
    2.0004万f90 eccRom_param_r
    10.0167万a5 eccRom_signHash
    1001.6941万 eccRom_verifyHash
    2.0004万f9c eccRom_windowSize
    2.0004万f88 eccRom_Workzone
    2.0004万f28 encle
    2.0004万f2c encKey
    2.0004万f24 encParams.
    2000.1674万 excCaller
    2000.167万 excPC
    0000b7b1 execHandlerHook
    0.0009万e4d出口
    0000d6fa extReportRefUUID
    2.0004万f77 fastTxRespTime
    20.0045万a8 flowCtrlTaskId
    0.0004万dc1输出
    0000bf99免费
    2.0004万e44 fwImmedCmd.
    2.0004万e58 fwParCmd.
    2.0004万d14 fwPartDtmCmd.
    2.0004万d44 fwParRfCmd.
    2.0004万e70 fwParamImmedCmd.
    2.0001万e26 g_hwiInt
    1001.8741万 gapAddAddAddrAdj
    10.0149万fd gapAddAdvToken
    20.0045万a3 gapAdvAppTaskID
    100.1476万d gapAllocAdvRecs.
    20.0045万a2 gapAppTaskID
    2万e86 gapBond_lruBondList
    2万e61 gapBond_removeLRUBond
    2万e62 gapBond_syncRL
    1.0014万abd gapBuildADTokens
    1.0014万a89 gapCalcAdvTokenDataLen
    10.0195万ad gapClrState
    10.0149万c9 gapConnectedCleanUp广告
    2.0004万e04 gapCurrentRandomAddr
    1.0014万a39 gapDeleteAdvToken
    2.0004万f59 gapDeviceAddrMode
    1001.9549万 gapFindADType
    1.0014万a71 gapFindAdvToken
    1.0014万c51 gapFreeAdvertState
    1.0011万dc1 gapFreeAuthLink
    1.0011万e01 gapFreeEstLink
    10.0187万ad gapGetDevAddress
    10.0187万a5 gapGetDevAddressMode
    1001.8775万 gapGetSRK.
    100.1877万d gapGetSignCounter
    1001.8769万 gapHost2CtrlOwnAddrType
    1001.8785万 gapIncSignCounter
    1001.9525万 gapIsAdvertising
    1001.9529万 gapIsScanning
    10.0193万dd gapL2capConnParamUpdateReq
    2.0004万f3c gapLimitedAdversingTimeout
    1.0011万f75 gapPairingCompleteCB
    2000.4508万 gapParameters
    2.0004万c50 gapParams
    1.0011万efd gapPasskeyNeedCB
    100.1933万d gapPeriProcessConnEvt.
    1001.9385万 gapPeriProcessConnUpdateCmdStatus
    1001.9399万 gapPeriProcessConnUpdateCompleteEvt.
    100.147万d gapPeriProcessHCICmdCompleteEvt.
    1001.9401万 gapPeriProcessSignalEvt.
    2000.4558万 gapPeripheralCBs
    2000.4564万 gapPeripheralConnCBs
    100.1495万d gapProcessAdvertisingEvt.
    10.0149万b5 gapProcessAdvertisingTimeout
    1001.8971万 gapProcessBLEEvents
    1.0018万ab5 gapProcessCommandStatusEvt.
    1.0018万b09 gapProcessConnEvt.
    10.0119万e1 gapProcessConnectionCompleteEvt.
    0.0008万c39 gapProcessDisconnectCompleteEvt.
    1.0018万a11 gapProcessHCICmdCompleteEvt.
    1001.8709万 gapProcessNewAddr.
    1001.8909万 gapProcessOSALM
    1.0011万ac1 gapProcessRemoteConnParamReqEvt.
    2.0004万f58 gapProfileRole
    1001.8679万 gapReadBD_ADDRStatus
    10.0186万bd gapReadBufSizeCmdStatus
    1.0018万b41 gapRegisterCentral
    10.012万F1 gapRegisterCentralConn
    1.0018万b49 gapRegisterPeripheral
    10.012万f9 gapRegisterPeripheralConn
    2000.068万 gapRoleTask
    20.0006万d0 gapRoleTaskStack
    0000c381 gapRole_clockHandler
    1.0014万be5 gapSendAdDataUpdateEvent
    1.0011万e25 gapSendBondCompleteEvent
    10.0187万e9 gapSendDeviceInitToneEvent
    1.0014万c1d gapSendEndDiscoverableEvent
    1.0011万c35 gapSendLinkUpdateEvent
    1.0014万ba1 gapSendMakeDiscEvent
    1.0011万e81 gapSendPairingReqEvent
    100.1194万d gapSendSignUpdateEvent
    1001.1985万 gapSendSlaveSecurityReqEvent
    0000da10 gapServiceCBs
    0000d6d8 gapServiceUUID
    10.0147万bd gapSetAdvParams
    1001.4881万 gapSetAdvParamsStatus
    10.0195万a1 gapSetState
    2.0004万f5a gapState.
    2.0004万f5d gapTaskID
    20.0045万a4 gapUnwanedTaskID
    1001.1919万 gapUpdateConnSignCounter
    1001.9535万 gapValidADType
    1001.4951万 gapWriteAdvDataStatus
    10.0148万b1 gapWriteAdvEnableStatus
    20.0045万a6 gattAppTaskID
    2000.1708万 gattAttrTbl
    100.1065万d gattFindServerInfo
    100.1061万d gattFindService
    10.0183万b1 gattGetPayload
    1001.0635万 gattGetServerStatus
    10.0182万a9 gattNotifyEvent
    2.0004万f5e gattNumConns.
    1001.0519万 gattParseReq
    100.1026万d gattProcessExchangeMTUReq
    1001.0619万 gattProcessExecuteWriteReq
    100.1039万d gattProcessFindByTypeValueReq
    1001.0271万 gattProcessFindInfoReq
    10.0181万e1 gattProcessOSALM
    100.1049万d gattProcessReadByGrpTypeReq
    10.0103万c1 gattProcessReadByTypeReq
    1001.0421万 gattProcessReadMultiReq
    10.0103万f9 gattProcessReadReq
    100.1059万d gattProcessReq
    10.0181万f5 gattProcessRxData
    10.0104万e9 gattProcessWriteReq
    1001.8129万 gattRegisterClient
    1001.8121万 gattRegisterServer
    1001.0685万 gattResetServerInfo
    100.1838万d gattSendFlowCtrlEvt.
    0000a591 gattServApp_ClearPrepareWriteQ
    10.0108万c1 gattServApp_DeregisterServiceCBs
    0.0009万d45 gattServApp_EnqueuePrepareWriteReq
    10.0114万d5 gattServApp_FindAuthorizeAttrCB
    1001.1409万 gattServApp_FindPrepareWriteQ
    1001.1489万 gattServApp_FindReadAttrCB
    10.0108万f9 gattServApp_FindServiceCBs
    1001.1499万 gattServApp_FindWriteAttrCB
    0000b5b5 gattServApp_HandleConnStatusCB
    100.1134万d gattServApp_IsWriteLong
    100.1143万d gattServApp_PrepareWriteQInUse.
    0000aa49 gattServApp_ProcessExchangeMTUReq
    10.0112万d9 gattServApp_ProcessExecuteWriteReq
    1.001万a7d gattServApp_ProcessFindByTypeValueReq
    1001.0911万 gattServApp_ProcessMsg.
    1001.1205万 gattServApp_ProcessPrepareWriteReq
    1.001万ddd gattServApp_ProcessReadBlobReq
    1.001万fd5 gattServApp_ProcessReadByGrpTypeReq
    0.0006万b9d gattServApp_ProcessReadByTypeReq
    1.001万ea9 gattServApp_ProcessReadMultiReq
    1.001万d5d gattServApp_ProcessReadReq
    0.9719万 gattServApp_ProcessReliableWrites
    0000b2a5 gattServApp_ProcessWriteLong
    1001.1165万 gattServApp_ProcessWriteReq
    1001.0881万 gattServApp_RegisterServiceCBs
    0000aa85 gattServApp_ResetCharCfg.
    10.0107万d1 gattServApp_SetNumPreparareWrites
    1.001万cd5 gattServApp_buildReadByTypeRsp
    100.1071万d gattServerHandleConnStatusCB
    10.0106万e1 gattServerHandleTimerCB
    10.0106万b9 gattServerNotifyTxCB
    1.001001亿e9 gattServerProcessMsgCB
    100.1069万d gattServerStartTimer
    0000da2c gattService
    10.01万ad gattServiceLastHandle
    0000d6da gattServiceUUID
    100.183万d gattStartTimer
    1001.8321万 gattStopTimer
    10.01万c9 gattStoreServerInfo
    2.0004万f5f gattTaskID
    1001.2789万 Generate_sub项
    2000.176万 halAssertBack
    0000b89f halAssertHandler
    0000bdfd halAssertHandlerExt
    0000ba93 halAssertSpinlock
    2.0001万e21 hciGapTaskID
    1000ba41 hciInitEventMasks
    2.0001万e23 hciL2capTaskID
    2.0004万f62 hciPTM已启用
    2.0001万e24 hciSmpTaskID
    2.0001万e20 hciTaskID
    2.0001万e22 hciTestTaskID
    2000.4万 heapEnd
    2.0001万e28 heapStart
    20.0012万e8 heapmgrMemFreeTotal
    0000d690 icallServiceTable
    200.018万c icallServiceTblPtr
    0.0052万c9 iCall_directAPI
    0000bfc9 iCall_liteMsgParser
    2.0001万e27 iCall_liteTaskId
    2.0004万fb4 inPointX
    2.0004万fb8 inPointY
    2.0004万fb0在Scalar中
    0000d6de包含UUID
    2.0004万c6c initCmd.
    2.0004万aac initDataEntry
    2.0004万d84 initDataQueue
    2.0004万f18 initInfo
    2.0004万dd4 initOutput
    2.0004万bac initParam
    0000da4a initPktSuffix
    1.0014万c75 isLimitedDiscoverableMode
    1001.5239万 l2capAllocChannel
    1001.5269万 l2capAllocConnChannel
    10.015万a5 l2capBuildInfoReq
    100.1502万d l2capBuildParamUpdateReq
    1.0014万ce5 l2capBuildSignalHdr
    2.0004万ee4 l2capChannels
    1001.5391万 l2capDisconnectAllChannels
    1.0014万eb9 l2capEncapSendData
    10.0152万bd l2capFindLocalId
    2.0004万b1c l2capFixedChannels
    2.0004万f64 l2capFlowCtrlMode
    10.0152万a9 l2capFreeChannel
    10.0153万fd l2capFreePendingPkt
    1.0017万d25 l2capHandleConnStatusCB
    1001.5385万 l2capHandleRxError
    1001.5321万 l2capHandleTimerCB
    2.0004万f68 l2capId
    20.0045万a0 l2capMtuSize
    1001.5189万 l2capNotifyData
    100.1534万d l2capNotifyEvent
    10.0151万dd l2capNotifySignal
    2.0004万f66 l2capNumChannels
    2.0004万f67 l2capNumDataPts.
    1.0014万fed l2capParseCmdlReject
    1001.5125万 l2capParseInfoRsp
    1.0014万f51 l2capParsePacket
    1001.5099万 l2capParseParamUpdateRsp
    1.0014万cd1 l2capParseSignalHdr
    1.0017万ad9 l2capProcessOSALM
    1.0017万cc9 l2capProcessReq
    1.0017万c3d l2capProcessRsp
    1.0017万b31 l2capProcessRxData
    1.0017万bd l2capProcessSignal
    1.0014万d75 l2capSendCmd
    1.0014万e69 l2capSendFCPkt
    1.0014万e2d l2capSendPkt
    1.0014万cf9 l2capSendReq
    10.0152万e9 l2capStartTimer
    1001.5309万 l2capStopTimer
    1.0014万e05 l2capStoreFCPkt
    2.0004万f65 l2capTaskID
    2000.1724万 lastAppOpcodeIdxSent
    100.1287万d leftshift_onebit
    200.0175万d legacyMode
    2.0004万b4c链路CBs
    2.0004万e80链路命令
    2.0004万ee8链接数据库
    2.0004万f69 linkDBNumConns.
    1.0017万e05链接DB_ADD
    100.1804万d链接DB_Auten
    1.0017万f55 linkDB_find
    1.0017万f7d linkDB_FindFirst
    1.0017万f09 linkDB_getinfo
    1.0017万d7d链接DB_Init
    100.1803万d链接DB_MTU
    1.0017万ff1 linkDB_NumActive
    1001.8019万 linkDB_NumConns
    10.018万b5 linkDB_PerformFunc.
    1.0017万de5 linkDB_Register
    1.0017万e91 linkDB_Remove
    1.0017万fd5链接DB_role
    1001.8105万 linkDB_SecurityModeSCOnly
    1.0017万fb1 linkDB_State
    1.0017万ed5 linkDB_Update
    1001.8021万 linkDB_UpdateMTU
    10.018万e5 linkDB_reportStatusChange
    2.0004万f6a linkDB_secureConnectionOnlyMode.
    2.0004万e84链接参数
    0000ac25 llActiveTask
    1000a4f5 llAddTxDataEntry
    1.0015万b75 llAdv_TaskAbort
    1001.5559万 llAdv_TaskConnect
    1.0015万a61 llAdv_TaskEnd
    1.0008万d71 llAlignToNextEvent
    10.008万F1 llAllocConnId
    0.0008万bbbd llAllocTask
    10.008万b9 llAtLeastTwoChans
    1.0008万b01 llCBTimer_AptoExpiredBack
    100.1993万d llCalcScaFactor
    1001.4435万 llCheckForLstoDuringSL
    10.0093万ad llCheckRxBuffers
    1000.7205万 llCheckWhiteListUsage
    1.0008万c01 llCombininePDU
    0000d9c0 llConfigTable
    1000.8479万 ConnllCleanup
    1000.8385万 ConnllExists
    10.0085万a9 llConnTerminate
    2.0004万e68 llConns.
    10.0086万b9 llConvertCtrlProcTimeoutToEvent
    1000.8699万 llConvertLstoToEvent
    1000.9371万 llCreateRxBuffer
    0000c1d9 llDataGetConnPtr
    1.0007万f09 llDequeueCtrlPkt
    10.0154万b1 llDirAdv_TaskEnd
    1.0007万ead llEnqueueCtrlPkt
    1000.8691万 llEventDelta
    1000.8669万 llEventInRange
    0.6135万 llFindNextSecTask
    0.9309万 llFindStartType
    1.0008万b81 llFragmentPDU
    0000a54d llFreeTask
    1000.8635万一般CRC
    0000c4dd llGetActiveTasks
    0000c351 llGetCurrentTask
    10.0197万b1 llGetCurrentTime.
    1000.8301万 llGetMinCi
    0.0003万b29 llGetNextConn
    1.0007万ff5 llGetNextDataChan
    0000c4d1 llGetNumTasks
    1.0008万fbd llGetSlowestPhy.
    0000ac5d llGetTask
    0000af8d llGetTaskState
    10.0071万e9 llGetTxPower
    1000.7075万 llHaltRadio
    100.0929万d llHardwareError
    1000.8621万 llInitFeatureSet
    10.0092万e9 llMemCopyDst
    10.0092万d1 llMemCopySrc.
    10.0095万b9移动TempTxDataEntries
    1.0008万f89 llOctets2Time
    100.0941万d llPatchCM0
    10.0085万e1 llPendingUpdateParam
    1.0007万fb5 llProcessChanMap
    1.0009万d5d llProcessMasterControlPacket
    100.0713万d llProcessPostRfOps
    1000.9609万llProcessSlaveControlPacket
    1.0013万f05 llProcessSlaveControlProcedures
    10.0086万dd ProcessTxData
    1000.9465万 llRatChanCBack_A
    1000.9469万 llRatChanCBack_B
    100.0946万d llRatChanCBack_C
    1000.9471万 llRatChanCBack_D
    1000.9071万 llRealignConn
    10.0082万cd llReleaseAllConnId
    100.0828万d llReleaseConnId
    1.0007万f69 llReplaceCtrlPkt
    10.0093万dd llReplaceRxBuffers
    1000.7071万 llResetRadio
    1.0006万fed llRfInit
    1.0006万f99 llRfSetup
    10.007万b1 llRfStartFS
    0.7899万 llScheduleTask
    0.0001万f25 llScheduler
    0000a9d1 llSchedulerInit
    1000.8949万 llSendReject
    1000.8049万 llSetNextDataChan
    1000.7191万 llSetTxPower
    1000.7251万 llSetupAd
    10.0094万dd llSetupAdvDataEntryQueue
    1000.7829万 llSetupConn
    100.0899万d llSetupConnParamReq
    10.0089万d5 llSetupConnParamRsp
    1000.9509万 llSetupConnRxDataEntryQueue
    100.0798万d llSetupEncReq
    1.0007万a2d lSetupEncRsp
    1.0007万c89 llSetupFeatureSetReq
    1.0007万cdd lSetupFeatureSetRsp
    1000.7659万 llSetupInit
    10.0094万b9 llSetupInitDataEntryQueue
    0.0088万b1 llSetupLenCtrlPkt
    1.0013万b75 llSetupNextSlaveEvent
    1.0007万b61 llSetupPauseEncReq
    1.0007万bad llSetupPauseEncRsp
    10.0087万fd llSetupPingReq
    100.0885万d lSetupPingRsp
    1000.9431万 llSetupRATChanCompare
    1.0007万c39 llSetupRejectInd.
    1.0008万aa5 llSetupRejectIndExt
    1000.7479万 llSetupScan
    1000.9475万 llSetupScanDataEntryQueue
    1.0007万aed llSetupStartEncReq
    1.0007万b19 llSetupStartEncRsp
    1.0007万de5 llSetupTermInd
    1.0007万e49 llSetupUnknownRsp
    1000.7901万 llSetupUpdateChanReq
    1000.7869万 llSetupUpdateParamReq
    1.0007万d5d lSetupVersionIndReq
    1001.3931万 llSlave_TaskEnd
    1.0008万fdd llSortActiveConns.
    2.0004万f6f llState
    0000c5ef llTaskError
    2.0001万de4 llTaskList
    1.0008万f59 llTime2Octets
    10.0197万b9 llTimeCompare
    10.0197万dd时间增量
    2000.152万 llUserConfig
    0.0008万f19 llValidateConnParams
    1.0008万e45 llVerifyConnParamReqParams
    100.0876万d llWriteTxData
    10.0092万fe ll_buildRevision
    2.0004万a68 localEccKeys
    1000e6c9 madd
    1000dd2d mINVK
    1000e0f9 MMULT
    1000e8c1输出
    1000dc21 mSET
    1000e7c5 mSUB
    0.0006万d75主
    2000.1808万主功能
    0000b47d malloc
    2.0004万f7b maxNumConns.
    2.0004万f61 maxNumPrepareWrites
    2.0004万f6d maxNumTxDataBufs.
    2.0004万f6b最大尺寸
    0000da4c maxPktsPerEvt.
    2.0004万f72 maxTxPwrForDTM
    0000bbd5 memchr.
    0.0007万f31 memcpy
    0.0008万e2f内存集
    200.0459万e下一个手柄
    2.0004万f74 numComplPkts.
    2.0004万f76 numComplPktsFlush
    2.0004万f75 numComplPktsLimit
    2.0004万f40 numHostBufs.
    2.0004万f7a numTxDataBufs.
    2.0004万f73 onePktPerEvt.
    0000be19 openTRNG
    0000a3ad osalAddTimer
    0000bb35 osalFindTimer
    0000c5fb osalHeapAllocFxn
    0000c601 osalHeapFreeFxn.
    0000c531 osalHeapGetStatsFxn.
    0000c53d osalHeapInitFxn
    0000c665 osalHeapIsBlockingFxn.
    0.0006万c89 osalTimerUpdate
    0.8461万 osal_CbTimerProcessEvent
    0000c549 osal_CbTimerStart
    0.0009万ced osal_CbTimerStop
    0.9581万 osal_CbTimerUpdate
    0000ad3d osal_alien2代理
    0000b801 osal_BM_ADJUST_HEADER
    0000aafd osal_bm_alloc
    0000a1a5 osal_bm_free
    0000bfe1 osal_buffer_UINT32
    0000b44f osal_build_UINT32
    0000afc1 osal_clean_event
    20.0015万e1 osal_entity
    20.0015万ec osal_eventloop_hook
    0000b305 osal_Get_timeoutEx
    20.0015万f0 osal_icallMsg_hook
    0000bebd osal_isbufset
    2.0001万ddc osal_last_timestamp
    20.0015万fc osal_max_msecs
    0000c391 osal_mem_alloc
    0000c3a1 osal_mem_free
    0000bb55 osal_memcmp
    0000bff9 osal_memcpy
    0000be35 osal_memdup
    0000c669 osal_memset
    0000b979 osal_msg_allocate
    0000bb75 osal_msg_deallocate
    0.008万f9 osal_msg_receive
    0000bb95 osal_msg_send
    0000b829 osal_next超时
    20.0015万e8 osal_qHead
    0000c301 osal_rand
    0000be51 osal_revmemcpy
    0000c555 osal_self
    0000b99d osal_service_entry
    0.0074万e9 osal_set_event
    0000b851 osal_SNV_COMPACT
    0000bc8f osal_snv_read
    0.0067万cd osal_snv_write
    0000ab39 osal_start_reload_timer
    0.0004万a45 osal_start_system
    0000a65d osal_start_timerEx
    0000adad osal_stop_timerEx
    0000c66d osal_strlen
    20.0015万f4 osal_syncdHandle
    20.0015万f8 osal_tickperiod
    0.0818万d osal_timer_refTimeUpdate
    2.0004万fbc outPointX
    2.0004万fc0 outPointY
    2.0004万e2c ownPublicAddr.
    2.0004万e34 ownRandomAddr
    2.0004万e3c ownSavedPublicAddr.
    2.0004万ee0 pAttrValue
    2.0004万ea4 pAuthLink
    2.0004万e14 pBleEvtMask
    2.0004万ea0 pEstLink
    2.0004万eb4 pGapAdData
    2.0004万eb0 pGapAdvTokens
    2.0004万e9c pGapAdvertState
    2.0004万e98 pGapDiscReq
    2.0004万eb8 pGapScanRspData
    2.0004万e1c pHciEvtMask
    2.0004万e24 pHciEvtMask2.
    pPairingParams
    2000.172万 pRfErrCb
    2.0004万ecc pServiceList
    1001.2861万填充
    0000d6f4 periConnParamUUID
    0000d6f0 periPrivacyFlagUUID
    2000.1718万 pfnBMAlloc
    200.0171万c pfnBMFree
    2.0004万ec4 pfnBondMgrCBs.
    2.0004万ec0 pfnCentralCBs
    2.0004万ea8 pfnCentralConnCBs
    2.0004万ed4 pfnClientProcessMsgCB
    2.0004万f38 pfnInitiatorCBs.
    2.0004万ebc pfnPeripheralCBs
    2.0004万eac pfnPeripheralConnCBs
    2.0004万f34 pfnResponseCBs
    2.0004万ed0 pfnServerProcessMsgCB
    2.0004万f52后RfOperations
    2.0004万ed8准备写入待完成
    0000d6d4 primaryServiceUUID
    2.0004万e78 privInfo
    0.0004万f53置入
    200.0056万e pwrmgr_attribute.
    200.0056万c pwrmgr_initialized.(已初始化。
    0000d6f2 reconnectAddrUUID
    0000d6fc报告RefUUID
    20.0045万a5请求任务ID
    20.0045万ac解析列表
    0000d5b0资源数据库
    0000af59 rfCallback
    2.0004万f54 rfCfgAdiVal
    0000da38 rfCfgVal
    2.0004万f42 rfCmdHandle
    0000d5fc rfDriverTableBLE
    2.0004万ef0 rfDrvTblPtr
    0000bed7 rfErrCb
    2.0004万e50 rfEvent
    2.0004万f6c rfFeModeBias
    2.0004万eec rfHandle
    2000.4568万 rfMode
    2000.4988万 rfObject
    0000da34 rfOpLoc
    0000c341 rfPUpCallback
    2000.1728万 rfRegTbl
    2.0004万d2c rfSetup
    1.0019万afc romRev
    2.0004万cfc版本
    2.0004万f70 rssiCorrection
    2.0004万e88 rxDataQ
    2.0004万f79 rxFifoFlowCtrl
    2.0004万ce4 rxModemTestCmd
    0000da44 rxPktSuffix
    2.0004万e90 rxRingBuf
    2.0004万de0 rxTestOut
    2.0004万d70 rxTestParam.(rxTestParam
    2000.0298万 sbp任务
    20.0002万e8 sbpTaskStack
    2.0004万c9c扫描命令
    20.0046万ec scanDataEntry
    2.0004万d94 scanDataQueue
    2.0004万f14扫描信息
    2.0004万cb4扫描输出
    2.0004万bd0扫描参数
    0000da48 scanPktSuffix
    2.0004万f08 SclkSrc.
    0000d6dc辅助服务UUID
    1.0011万cb5 sendAuthEvent
    1.0011万b85 sendEstLinkEvent
    1.0011万bf9 sendTerminateEvent
    0000d6e6 servCharCfgUUID
    2.0004万ec8服务器信息Tbl
    2.0004万edc服务CBsList
    0000d6f6 serviceChangedUUID
    0.0071万bd setvbuf
    0000d90c simpleProfileCBs
    0000d9b2 simpleProfileServUUID
    0000d9b4 simpleProfilechar1UUID
    0000d9b6 simpleProfilechar2UUID
    0000d9b8 simpleProfilechar3UUID
    0000d9ba simpleProfilechar4UUID
    0000d9bc simpleProfilechar5UUID
    2000.1784万 sizeInfo
    2.0004万f78 slOverride
    200.0459万c slaveConnHandle
    2.0004万e0c slaveUpdateReq
    10.0123万e1 smAuthReqToUint8.
    1000f819 smDetermineIOCaps.
    1000f9cd smDetermineKeySize
    1001.2445万 smEncrypt
    1001.2459万 smEncryptLocal
    1000f985 smEnd配对
    1000f215 smF5Wrapper
    1001.3365万 smFinishPublicKeyExchange
    1000f911 smFreePairingParams
    0.7365万 smGenerateAddrInput
    1000f129 smGenerateConfirm
    1000f2b9 smGenerateDHKeyCheck
    1000f0d9 smGeneratePairingReqRsp
    10.0123万b1 smGenerateRandBuf
    1000f149 smGenerateRandMsg.
    1000f465 smGetECCKeys
    1000f565 smIncrementEccKeyRecycleCount
    1000eca1 smLinkCheck
    1000eef1 smNextPairingState
    1000f58d smOobSCAuthentication
    1000f855 smPairingSendEncInfo
    1000f8c1 smPairingSendIdentityAddrInfo
    1000f899 smPairingSendIdentityInfo
    1000f869 smPairingSendMasterID
    1000f8fd smPairingSendSigningInfo
    1000eced smProcessDataMsg.
    1000ee25 smProcessEncryptChange
    1001.7715万 smProcessHCIBLEEventCode
    1001.7765万 smProcessHCIBLEMetaEventCode
    10.0176万c1 smProcessOSALM
    1000f05d smProcessPairingReq
    1000ec91 smRegisterInitiator
    1000ec99 smRegisterResponder
    10.0134万cd smResponderAuthStage两个
    2000.4584万 smResponseCBs
    1.0012万e29 smResponseProcessLTKReq
    10.0136万F1 smResponseSendNextKeyInfo
    0.0003万d35 smSavePairInfo
    1000f18d smSaveRemotePublicKeys
    1000f435 smSendDHKeyCheck
    1000edf9 smSendFailAndEnd
    0000b5e1 smSendFailureEvt.
    1000f1bd smSendPublicKeys
    100.1673万d smSendSMMsg.
    1000f9F1 smSetPairingReqRsp
    1000f0bd smStartEncryption
    100.1217万d smStartRspTimer
    10.0121万a5 smStopRspTimer
    2.0004万f7c smTaskID
    1000ecdd smTimedOut
    1001.2409万 smUint8ToAuthReq
    1001.2625万 SM_CMAC
    1000f35d sm_allocateSCParameters
    0.0006万e59 SM_C1
    100.1225万d sm_c1new
    1000f501 sm_computeDHKey
    10.0121万b9 SM_D1
    1001.2205万 sm_dm
    1001.2895万 SM_F4
    1001.2961万 SM_F5
    1.0012万b01 SM_F6
    1.0012万c45 sm_g2
    1001.2365万 SM_s1
    100.1234万d SM_XOR
    10.0164万ad smpBuildEncInfo
    1001.6579万 smpBuildIdentityAddrInfo
    1001.6549万 smpBuildIdentityInfo
    100.167万d smpBuildKeypressNoti
    10.0164万e5 smpBuildMasterID
    100.164万d smpBuildPairingConfirm
    10.0166万d9 smpBuildPairingDHKeyCheck
    100.1647万d smpBuildPairingFailed
    100.1666万d smpBuildPairingPublicKey
    1001.6445万 smpBuildPairingRandom
    1001.6255万 smpBuildPairingReq
    100.1627万d smpBuildPairingReqRsp
    1001.6269万 smpBuildPairingRsp
    1001.6625万 smpBuildSecurityReq
    10.0165万ed smpBuildSigningInfo
    10.0164万c9 smpParseEncInfo
    10.0165万c9 smpParseIdentityAddrInfo
    100.1659万d smpParseIdentityInfo
    1001.6729万 smpParseKeypressNoti
    1001.6511万 smpParseMasterID
    1001.6429万 smpParsePairingConfirm
    10.0166万f5 smpParsePairingDHKeyCheck
    100.1648万d smpParsePairingFailed
    100.1669万d smpParsePairingPublicKey
    1001.6461万 smpParsePairingRandom
    100.1632万d smpParsePairingReq
    1001.6649万 smpParseSecurityReq
    1001.6609万 smpParseSigningInfo
    1000f01d smpProcessIncoming
    100.1353万d smpResponseProcessEncryptionInformation
    1001.3641万 smpResponseProcessIdentityAddrInfo
    10.0135万fd smpResponseProcessIdentityInfo
    1.0012万f65 smpResponseProcessIncoming
    1001.3589万 smpResponseProcessMasterID
    1001.3165万 smpResponderProcessPairingConfirm
    1001.3451万 smpResponderProcessPairingDHKeyCheck
    1001.3335万 smpResponderProcessPairingPublicKey
    10.0131万ed smpResponderProcessPairingRandom
    1001.3061万 smpResponseProcessPairingReq
    10.0136万a1 smpResponseProcessSigningInfo
    1001.3091万 smpResponderSendPairRspEvent
    0.2509万 startup _entry
    0000c041 strcmp
    0000c29d strcpy
    0000c215直发
    0000b029 strncpy
    10.0196万b8支持CmdsTable
    2.0004万f4c支持MaxRxOctets
    2.0004万f4e支持MaxRxTime
    2.0004万f48支持MaxTxOctets
    2.0004万f4a supportedMaxTxTime
    2.0004万f20 taskEndAction
    2.0004万f50任务结束状态
    0000d754 taskArr.
    2.0001万e18任务事件
    2.0004万f5b终端AllTaskID
    2.0004万f5c终结处理
    20.0001万a4 ti_SysBIOS_BIOS_Module__state__V
    1001b9d9 ti_SysBIOS_BIOS_RtsGateProxy_Handl__label__S
    UNDED ti_SysBIOS_BIOS_RtsGateProxy_Handle __label__S__man切 换__
    1001b88d ti_SysBIOS_RTsGateProxy_Object__delete__S
    1001bfb5 ti_SysBIOS_BIOS_RtsGateProxy_Params__init__S
    UNDED ti_SysBIOS_BIOS_RtsGateProxy_Params__init__S__manged__
    1001c091 ti_SysBIOS_BIOS_RtsGateProxy_enter__E
    1001c095 ti_SysBIOS_BIOS_RtsGateProxy_Leave__E
    1001c0bd ti_SysBIOS_BIOS_RtsGateProxy_query__E
    UNDED ti_SysBIOS_BIOS_RtsGateProxy_query__E__manged__
    0000b335 ti_SysBIOS_BIOS_atExitFunction__i
    0000c199 ti_SysBIOS_BIOS_errorRaiseHook__i
    0000c1af ti_SysBIOS_BIOS_exitFunc__i
    1001be81 ti_SysBIOS_BIOS_EXIT__E
    1001be91 ti_SysBIOS_getCpuFreq__E
    0000c561 ti_SysBIOS_BIOS_getThreadType__E
    1001a683 ti_SysBIOS_BIOS_LinkedWithIncorrectBootLibrary__E
    0000c679 ti_SysBIOS_BIOS_nullFunc__i
    0000b9c1 ti_SysBIOS_BIOS_registerRTSLock__i
    0000b9e5 ti_SysBIOS_BIOS_removeRTSLock__I
    0000bbf5 ti_SysBIOS_BIOS_rtsLock__i
    0000c071 ti_SysBIOS_BIOS_rtsUnlock__i
    1001bea1 ti_SysBIOS_BIOS_setThreadType__E
    0000b365 ti_SysBIOS_BIOS_startFunc__i
    1001beb1 ti_SysBIOS_BIOS_START__E
    0.0077万e1 ti_SysBIOS_family_arm_cc26xx_Boot_香肠 设备
    0.128万 ti_SysBIOS_family_arm_cc26xx_Timer_Module___id__C
    1001b8f9 ti_SysBIOS_family_arm_cc26xx_Timer_Module__startupDone__S
    20.0001万e4 ti_SysBIOS_family_arm_cc26xx_Timer_Module__state__V
    1001b845 ti_SysBIOS_family_arm_cc26xx_Timer_Module_Startup__E
    20.0014万a0 ti_SysBIOS_family_arm_cc26xx_Timer_Object__table__V
    0000bc15 ti_SysBIOS_family_arm_cc26xx_Timer_dynamicStub__E
    0000c23d ti_SysBIOS_family_arm_cc26xx_Timer_getCount64__E
    0000ade5 ti_SysBIOS_family_arm_cc26xx_Timer_getCurrentTick_E
    1001c099 ti_SysBIOS_family_arm_cc26xx_Timer_getExpiredTicks__E
    0000ba09 ti_SysBIOS_family_arm_cc26xx_Timer_getMaxTicks__E
    1001c09d ti_SysBIOS_family_arm_cc26xx_Timer_getPeriod__E
    0000b05d ti_SysBIOS_family_arm_cc26xx_Timer_initDevice__i
    1.0019万f25 ti_SysBIOS_family_arm_cc26xx_Timer_周期Stub__E
    1001b4bd ti_SysBIOS_family_arm_cc26xx_Timer_postInit__i
    0000b0c3 ti_SysBIOS_family_arm_cc26xx_Timer_setNextTick__E
    1001a1 c0ti_SysBIOS_family_arm_cc26xx_Timer_setPeriod__E
    0000a3f5 ti_SysBIOS_family_arm_cc26xx_Timer_setThreshold__i
    0.9001万 ti_SysBIOS_family_arm_cc26xx_Timer_start__E
    0.0011万f8 ti_SysBIOS_family_arm_cc26xx_Timer_startupNeeded__C
    1001b4e9 ti_SysBIOS_family_arm_cc26xx_Timer_startup__E
    20.0001万ec ti_SysBIOS_family_arm_cc26xx_TimestampProvider_Module__state__V
    1001b919 ti_SysBIOS_family_arm_cc26xx_TimestampProvider_Module_Startup__E
    0000c44b ti_SysBIOS_family_arm_cc26xx_TimestampProvider_get32__E
    1001b77d ti_SysBIOS_family_arm_cc26xx_TimestampProvider_get64__E
    1001bf6b ti_SysBIOS_family_arm_cc26xx_TimestampProvider_getFreq__E
    0.1282万 ti_SysBIOS_family_arm_cc26xx_TimestampProvider_useClockTimer__C
    0.0011万fc ti_SysBIOS_family_arm_m3_Hwi_E_alreadyDefuted__C
    0000d968 ti_SysBIOS_family_arm_m3_Hwi_E_exception__C
    0.12万 ti_SysBIOS_family_arm_m3_Hwi_E_hwiLimitExceeded__C
    0000d96c ti_SysBIOS_family_arm_m3_Hwi_E_noIsr__C
    1001a755 ti_SysBIOS_family_arm_m3_Hwi_instance_finaling__E
    1.0019万fc1 ti_SysBIOS_family_arm_m3/hwi_instance_init__E
    20.0016万f6 ti_SysBIOS_family_arm_m3_Hwi_Module_State_0_excActive__A
    2000.1814万 ti_SysBIOS_family_arm_m3_Hwi_Module_State_0_excContext__A
    2000.1818万 ti_SysBIOS_family_arm_m3_Hwi_Module_State_0_excStack__A
    0.1284万 ti_SysBIOS_family_arm_m3_HWI_Module__id__C
    200.0178万c ti_SysBIOS_family_arm_m3_Hwi_Module__root__V
    1001b939 ti_SysBIOS_family_arm_m3_Hwi_Module__startupDone__S
    2000.0144万 ti_SysBIOS_family_arm_m3_Hwi_Module__state__V
    1001aeb5 ti_SysBIOS_family_arm_m3_Hwi_Module_startup__E
    0.1204万 ti_SysBIOS_family_arm_m3_Hwi_NUM_Interrupts__C
    0.107万 ti_SysBIOS_family_arm_m3/HWI_Object__DESC__C
    1001c9e8 ti_SysBIOS_family_arm_m3/HWI_Object__Params__C
    0.1208万 ti_SysBIOS_family_arm_m3_Hwi_Object__count__C
    1001a7b9 ti_SysBIOS_family_arm_m3_HWI_Object__create__S
    1001b959 ti_SysBIOS_family_arm_m3/HWI_Object__delete__S
    1001bc39 ti_SysBIOS_family_arm_m3_Hwi_Object__析 构t__S
    1001b515 ti_SysBIOS_family_arm_m3_Hwi_Object__Get__S
    0.012万c ti_SysBIOS_family_arm_m3_Hwi_Object__table__C
    2000.1688万 ti_SysBIOS_family_arm_m3_Hwi_Object__table__V
    1001bf79 ti_SysBIOS_family_arm_m3_Hwi_Params__init__S
    0.121万 ti_SysBIOS_family_arm_m3_Hwi_CCR__C
    1001aabd ti_SysBIOS_family_arm_m3_Hwi_construct
    0000abb1 ti_SysBIOS_family_arm_m3_Hwi_construt2__E
    1001a8e5 ti_SysBIOS_family_arm_m3_Hwi_create
    1001c0a5 ti_SysBIOS_family_arm_m3_Hwi_dete.
    1001c0a9 ti_SysBIOS_family_arm_m3_Hwi_析 构
    1001bf85 ti_SysBIOS_family_arm_m3/hwi_disableFxn__E
    1001af45 ti_SysBIOS_family_arm_m3_Hwi_disableInterrupt__E
    1001a81d ti_SysBIOS_family_arm_m3/hwi_dispatchC__i
    2.0001万c50 ti_SysBIOS_family_arm_m3_Hwi_dispatchTable
    1001c7a5 ti_SysBIOS_family_arm_m3_Hwi_dispatch __i
    1001c043 ti_SysBIOS_family_arm_m3_Hwi_doSwift Restore__i
    1001c05b ti_SysBIOS_family_arm_m3/hwi_doTaskRestore__i
    1001bf91 ti_SysBIOS_family_arm_m3/hwi_enableFxn__E
    1001af89 ti_SysBIOS_family_arm_m3_Hwi_enableInterrupt__E
    0.0066万d1 ti_SysBIOS_family_arm_m3/hwi_excFillContext__i
    1001c901 ti_SysBIOS_family_arm_m3/hwi_excHandlerAsm__i
    0.1214万 ti_SysBIOS_family_arm_m3/hwi_excHandlerFunc__C
    0.0089万bd ti_SysBIOS_family_arm_m3/hwi_excHandlerMin__i
    1001b979 ti_SysBIOS_family_arm_m3_Hwi_excHandler__i
    0000d950 ti_SysBIOS_family_arm_m3/hwi_excHookFuncs__A
    0000d970 ti_SysBIOS_family_arm_m3/hwi_excHookFuncs__C
    0000c3c1 ti_SysBIOS_family_arm_m3_Hwi_getHandle__E
    1001b099 ti_SysBIOS_family_arm_m3/hwi_getStackInfo__E
    1001a171 ti_SysBIOS_family_arm_m3_Hwi_initNVIC__E
    1001c8b9 ti_SysBIOS_family_arm_m3_Hwi_initStacks__E
    0.1218万 ti_SysBIOS_family_arm_m3_Hwi_nullIsrFunc__C
    0.0121万c ti_SysBIOS_family_arm_m3/hwi_numSparts__C
    e000e000 ti_SysBIOS_family_arm_m3_Hwi_NVIC
    1001c93f ti_SysBIOS_family_arm_m3/hwi_pendSV__i
    1001bdc1 ti_SysBIOS_family_arm_m3/hwi_plug__E
    1.0019万e75 ti_SysBIOS_family_arm_m3_Hwi_postInit__i
    0000c3d1 ti_SysBIOS_family_arm_m3_Hwi_post__E
    0.122万 ti_SysBIOS_family_arm_m3/hwi_priGroup__C
    2000万 ti_SysBIOS_family_arm_m3_Hwi_ramVectors
    0万 ti_SysBIOS_family_arm_m3_Hwi_resetVectors
    1001c061 ti_SysBIOS_family_arm_m3_Hwi_restoreFxn__E
    1001c957 ti_SysBIOS_family_arm_m3_Hwi_return
    0000c607 ti_SysBIOS_family_arm_m3/hwi_setFunc__E
    1001bc55 ti_SysBIOS_family_arm_m3_Hwi_setPriority__E
    1001c04b ti_SysBIOS_family_arm_m3_Hwi_startup__E
    0000d974 ti_SysBIOS_family_arm_m3_Hwi_swiDisable__C
    0000d978 ti_SysBIOS_family_arm_m3_Hwi_swiRestoreHWi__C
    1001be35 ti_SysBIOS_family_arm_m3/hwi_switchFromBootStack__E
    1001c0ad ti_SysBIOS_family_arm_m3_TaskSupport_Module__startupDone__S
    1001c86d ti_SysBIOS_family_arm_m3/TaskSupport_buildTaskStack
    1001bf9d ti_SysBIOS_family_arm_m3/TaskSupport_getStackAlignment __E
    1001c959 ti_SysBIOS_family_arm_m3/TaskSupport_glue
    0.1224万 ti_SysBIOS_family_arm_m3_TaskSupport_stackAlignment __C
    1001b155 ti_SysBIOS_family_arm_m3/TaskSupport_start__E
    1001c969 ti_SysBIOS_family_arm_m3/TaskSupport_swap__E
    1001c921 ti_SysBIOS_family_xxx_HWI_switchAndRunFunc.
    1001b999 ti_SysBIOS_Gates_GateHWI_Handl__label__S
    1001b153 ti_SysBIOS_Gates_GateHwi_instance_init__E
    0.1028万 ti_SysBIOS_Gates_GateHWI_Module__Fxns__C
    0.1286万 ti_SysBIOS_Gates_GateHWI_Module__id__C
    2000.1794万 ti_SysBIOS_Gates_GateHWI_Module__root__V
    0.109万 ti_SysBIOS_Gates_GateHWI_Object__DESC__C
    1001cad8 ti_SysBIOS_Gates_GateHWI_Object__Params__C
    1001b869 ti_SysBIOS_Gates_GateHWI_Object__create__S
    1001b9b9 ti_SysBIOS_Gates_GateHWI_Object__delete__S
    1001bfa9 ti_SysBIOS_Gates_GateHwi_enter__E
    1001c067 ti_SysBIOS_Gates_GateHwi_Leav__E
    1001c0b1 ti_SysBIOS_Gates_GateHwi_query__E
    1001b9d9 ti_SysBIOS_Gates_GateMutex_Handl__label__S
    1001cb68 ti_SysBIOS_Gates_GateMutex_Instance_State_SEM__O
    1001bec1 ti_SysBIOS_Gates_GateMutex_Instance_Finalate__E
    1001bc71 ti_SysBIOS_Gates_GateMutex_Instance_init__E
    0.0104万c ti_SysBIOS_Gates_GateMutex_Module__Fxns__C
    0.1288万 ti_SysBIOS_GATE_GateMutex_Module__id__C
    200.0179万c ti_SysBIOS_Gates_GateMutex_Module__root__V
    0.001万b0 ti_SysBIOS_Gates_GateMutex_Object__DESC__C
    1001caf0 ti_SysBIOS_Gates_GateMutex_Object__Params__C
    1001b36d ti_SysBIOS_Gates_GateMutex_Object__create__S
    1001b88d ti_SysBIOS_Gates_GateMutex_Object__delete__S
    1001b9f9 ti_SysBIOS_Gates_GateMutex_Object__析 构t__S
    20.0014万e8 ti_SysBIOS_Gates_GateMutex_Object__table__V
    1001bfb5 ti_SysBIOS_Gates_GateMutex_Params__init__S
    1001b541 ti_SysBIOS_Gates_GateMutex_construct
    1001b39d ti_SysBIOS_Gates_GateMutex_create
    1001c0b5 ti_SysBIOS_Gates_GateMutex_delete
    1001c0b9 ti_SysBIOS_Gates_GateMutex_析 构
    1001b3cd ti_SysBIOS_Gates_GateMutex_enter__E
    1001bdd9 ti_SysBIOS_Gates_GateMutex_Leav__E
    1001c0bd ti_SysBIOS_Gates_GateMutex_query__E
    1001b939 ti_SysBIOS_hal _HWI_HwiProxy_Module__startupDone__S
    UNDED ti_SysBIOS_hal_HWI_HWiProxy_Module__startupDone__S__manged__
    1001bed1 ti_SysBIOS_Hal_HwiProxy_Object__create_S
    1001b959 ti_SysBIOS_hal _HwiProxy_Object__delete__S
    1001bf79 ti_SysBIOS_hal _HWI_HwiProxy_Params__init__S
    UNDED ti_SysBIOS_Hal_HWI_HwiProxy_Params__init__S__mangefed___
    1001bc8d ti_SysBIOS_hal _HWI_HWiProxy_create
    1001c0c1 ti_SysBIOS_hal _HWI_HwiProxy_delete
    1001af45 ti_SysBIOS_hal _HWI_HWiProxy_DisableInterrupti__E
    UNDED ti_SysBIOS_Hal_HWI_HWiProxy_DisableInterrupti__E__man烤 开__
    1001af89 ti_SysBIOS_hal _HWI_HwiProxy_enableInterrupt__E
    UNDED ti_SysBIOS_hal_HWI_HWiProxy_enableInterrupt__E__manged__
    1001b099 ti_SysBIOS_hal _HWI_HwiProxy_getStackInfo__E
    UNDED ti_SysBIOS_hal _HWI_HwiProxy_getStackInfo__E_mangled __
    0000c3d1 ti_SysBIOS_hal _HWI_HwiProxy_post__E
    1001c04b ti_SysBIOS_hal _HWI_HwiProxy_Startup__E
    UNDED ti_SysBIOS_hal _HWI_HwiProxy_Startup__E__manged__
    1001be35 ti_SysBIOS_hal _HWI_HWiProxy_switchFromBootStack__E
    UNDED ti_SysBIOS_hal_HWI_HWiProxy_switchFromBootStack__E__manswitched__
    1001c039 ti_SysBIOS_hal _HWI_Instance_Finaling__E
    1001b81d ti_SysBIOS_hal _Hwi_instance_init__E
    20.0017万a4 ti_SysBIOS_hal _HWI_Module__root_V
    1001be5d ti_SysBIOS_hal _HWI_Module_Startup__E
    0.001万d0 ti_SysBIOS_hal _HWI_Object__DESC__C
    1001ca18 ti_SysBIOS_hal _HWI_Object__Params__C
    1001ba19 ti_SysBIOS_hal _HWI_Object__delete__S
    1001a881 ti_SysBIOS_hal _HWI_CREATE
    1001c0c5 ti_SysBIOS_hal _HWI_DELETE
    1001af45 ti_SysBIOS_hal _HWI_DisableInterrupti_E
    UNDED ti_SysBIOS_hal _ HWI_DisableInterrupt__E
    1001af89 ti_SysBIOS_hal _Hwi_enableInterrupt__E
    UNDED ti_SysBIOS_hal _HWI_enableInterrupt__E
    1001b099 ti_SysBIOS_hal _HWI_getStackInfo__E
    UNDED ti_SysBIOS_hal _HWI_getStackInfo__E
    1001b56d ti_SysBIOS_Hal_Hwi_initStack
    0000c3d1 ti_SysBIOS_hal _HWI_POST_E
    1001c04b ti_SysBIOS_hal _HWI_STARTUB__E
    UNDEFED TI_SysBIOS_hal _HWI_STARTUB__E
    1001be35 ti_SysBIOS_hal _HWI_switchFromBootStack__E
    UNDED ti_SysBIOS_hal _HWI_SWITCHFromBootStack__E
    0000c089 ti_SysBIOS_堆 叠Callback_instance_init__E
    0000d77c ti_SysBIOS_堆 叠Callback_Module__Fxns__C
    20.0017万ac ti_SysBIOS_堆 叠_HeapCallback_Module__root_V
    0000a865 ti_SysBIOS_堆 叠_HeapCallback_Module_Startup__E
    0000d818 ti_SysBIOS_堆 叠Callback_Object__DESC__C
    0000d854 ti_SysBIOS_堆 叠Callback_Object__Params__C
    0000d97c ti_SysBIOS_堆 叠Callback_Object__count__C
    0000b395 ti_SysBIOS_堆 叠Callback_Object__create__S
    0000c251 ti_SysBIOS_堆 叠Callback_Object__Get__S
    2000.1744万 ti_SysBIOS_堆 叠_HeapCallback_Object__table__V
    0000d980 ti_SysBIOS_堆 叠Callback_allocInstFxn__C
    0000c3e1 ti_SysBIOS_堆 叠_HeapCallback_alloc__E
    0000d984 ti_SysBIOS_堆 叠HeapCallback_createInstFxn__C
    0000c671 ti_SysBIOS_stalls_HeapCallback_defaultCreate
    0000d988 ti_SysBIOS_堆 叠Callback_freeInstFxn__C
    0000c3f1 ti_SysBIOS_堆 叠Callback_free __E
    0000d98c ti_SysBIOS_States_HeapCallback_getStatsInstFxn__C
    0000c401 ti_SysBIOS_States_HeapCallback_getStats__E
    0000d990 ti_SysBIOS_stalls_HeapCallback_initInstFxn__C
    0000d994 ti_SysBIOS_堆 叠Callback_isBlockingInstFxn__C
    0000c411 ti_SysBIOS_堆 叠Callback_isLocking__E
    0.1228万 ti_SysBIOS_堆 叠_HeapMem_E_MEMORI__C
    1001ba39 ti_SysBIOS_堆 叠_HeapMem_Handl__label__S
    1001b18d ti_SysBIOS_堆 叠_HeapMem_Instance_init__E
    1001b9d9 ti_SysBIOS_堆 叠_HeapMem_Module_GateProxy_Handl__label__S
    UNDED ti_SysBIOS_堆 叠_HeapMem_Module_GateProxy_Handle __label__S__manged__
    1001b88d ti_SysBIOS_堆 叠_HeapMem_Module_GateProxy_Object__delete__S
    1001bfb5 ti_SysBIOS_堆 叠Mem_Module_GateProxy_Params__init__S
    UNDED ti_SysBIOS_堆 叠_HeapMem_Module_GateProxy_Params__init__S__mandsked__
    1001c0c9 ti_SysBIOS_Manses_HeapMem_Module_GateProxy_enter__E
    1001c0cd ti_SysBIOS_Manses_HeapMem_Module_GateProxy_Leav__E
    1001c0bd ti_SysBIOS_堆 叠_HeapMem_Module_GateProxy_query__E
    UNDED ti_SysBIOS_堆 叠_HeapMem_Module_GateProxy_query__E__manged__
    0.1万 ti_SysBIOS_堆 叠_HeapMem_Module__Fxns__C
    0.0122万c ti_SysBIOS_堆 叠_HeapMem_Module__gateObj__C
    0.0128万a ti_SysBIOS_堆 叠_HeapMem_Module__id__C
    20.0017万b4 ti_SysBIOS_堆 叠_HeapMem_Module__root__V
    0.001万f0 ti_SysBIOS_堆 叠_HeapMem_Object__DESC__C
    1001ca6c ti_SysBIOS_堆 叠_HeapMem_Object__Params__C
    0.123万 ti_SysBIOS_堆 叠_HeapMem_Object__count__C
    1001b599 ti_SysBIOS_堆 叠_HeapMem_Object__create_S
    1001ba59 ti_SysBIOS_堆 叠_HeapMem_Object__delete__S
    1001b5c5 ti_SysBIOS_堆 叠_HeapMem_Object__Get__S
    0.1234万 ti_SysBIOS_堆 叠_HeapMem_Object__table__C
    1001a615 ti_SysBIOS_堆 叠_HeapMem_allocUnprotected__E
    1001ab15 ti_SysBIOS_堆 叠_HeapMem_alloc__E
    1001ab6d ti_SysBIOS_堆 叠_HeapMem_freeUnprotected__E
    1001b3fd ti_SysBIOS_堆 叠_HeapMem_FREE__E
    1001aefd ti_SysBIOS_States_HeapMem_getStats__E
    1001b235 ti_SysBIOS_堆 叠_HeapMem_init__i
    1001c06d ti_SysBIOS_堆 叠_HeapMem_isBlocking__E
    0.1238万 ti_SysBIOS_堆 叠_HeapMem_reqAlign _C
    1001bf41 ti_SysBIOS_堆 叠_HeapMem_RESTORE__E
    1001be09 ti_SysBIOS_KNL_Clock_Instance_Finality__E
    1001b1c5 ti_SysBIOS_KNL_Clock_Instance_init__E
    1001cb6c ti_SysBIOS_KNL_Clock_Module_State_clockQ__O
    20.0017万bc ti_SysBIOS_KNL_Clock_Module__root_V
    2000.0178万 ti_SysBIOS_KNL_Clock_Module__state__V
    1001ba79 ti_SysBIOS_KNL_Clock_Module_Startup__E
    0.111万 ti_SysBIOS_KNL_Clock_Object__DESC__C
    1001ca90 ti_SysBIOS_KNL_Clock_Object__Params__C
    1001b8b1 ti_SysBIOS_KNL_Clock_Object__delete__S
    1001ba99 ti_SysBIOS_KNL_Clock_Object__析 构t__S
    2000.163万 ti_SysBIOS_KNL_Clock_Object__table__V
    1001bfc1 ti_SysBIOS_KNL_Clock_Params__init__S
    1001b8f9 ti_SysBIOS_KNL_Clock_TimerProxy_Module__startupDone__S
    UNDED ti_SysBIOS_KNL_Clock_TimerProxy_Module__startupDone__S__mandefed___
    1001bee1 ti_SysBIOS_KNL_Clock_TimerProxy_getCurrentTick__E
    1001c0d1 ti_SysBIOS_KNL_Clock_TimerProxy_getExpiredTicks__E
    1001beF1 ti_SysBIOS_KNL_Clock_TimerProxy_getMaxTicks__E
    1001c0d5 ti_SysBIOS_KNL_Clock_TimerProxy_getPeriod__E
    1001bf01 ti_SysBIOS_KNL_Clock_TimerProxy_setNextTick__E
    1001b4e9 ti_SysBIOS_KNL_Clock_TimerProxy_Startup__E
    UNDED ti_SysBIOS_KNL_Clock_TimerProxy_Startup__E__mangeled__
    1001b7a5 ti_SysBIOS_KNL_Clock_addi__E
    1001b269 ti_SysBIOS_KNL_Clock_construct
    1001b1fd ti_SysBIOS_KNL_Clock_create
    1001c0d9 ti_SysBIOS_KNL_Clock_delete
    1001c0dd ti_SysBIOS_KNL_Clock_析 构
    0000c265 ti_SysBIOS_KNL_Clock_doTick__i
    0000b691 ti_SysBIOS_KNL_Clock_getTicksUntilInterrupti__E
    1001b29d ti_SysBIOS_KNL_Clock_getTicks__E
    0000b6e7 ti_SysBIOS_KNL_Clock_getTimeout__E
    1001bfcd ti_SysBIOS_KNL_Clock_getTimerHandle__E
    0000c675 ti_SysBIOS_KNL_Clock_isActive__E
    1001b843 ti_SysBIOS_KNL_Clock_logTick__E
    1001c0e1 ti_SysBIOS_KNL_Clock_removeI__E
    1001bca9 ti_SysBIOS_KNL_Clock_scheduleNextTick__E
    1001c0e5 ti_SysBIOS_KNL_Clock_setTimeout__E
    1001a1F1 ti_SysBIOS_KNL_Clock_startI__E
    1001be1f ti_SysBIOS_KNL_Clock_start__E
    1001bab9 ti_SysBIOS_KNL_Clock_stop__E
    0.0128万e ti_SysBIOS_KNL_Clock_tickMode__C
    0000d998 ti_SysBIOS_KNL_Clock_tickPeriod__C
    0.0123万c ti_SysBIOS_KNL_Clock_triggerClock__C
    1001bdbf ti_SysBIOS_KNL_Clock_triggerFunc__i
    1001a2F1 ti_SysBIOS_KNL_Clock_WalkQueueDynamic__E
    0.0007万fcd ti_SysBIOS_KNL_Clock_workFunction Dynamic__E
    1001a369 ti_SysBIOS_KNL_Clock_workFunction__E
    1001cb70 ti_SysBIOS_KNL_Event_Instance_State_pendQ__O
    1001be49 ti_SysBIOS_KNL_Event_Instance_init__E
    20.0017万c4 ti_SysBIOS_KNL_Event_Module__root_V
    0.113万 ti_SysBIOS_KNL_Event_Object__DESC__C
    1001cb08 ti_SysBIOS_KNL_Event_Object__Params__C
    1001bad9 ti_SysBIOS_KNL_Event_Object__delete__S
    1001bcc5 ti_SysBIOS_KNL_Event_Object__析 构t__S
    1001bfd9 ti_SysBIOS_KNL_Event_Params__init__S
    1001baf9 ti_SysBIOS_KNL_Event_checkEvents__i
    1001b5F1 ti_SysBIOS_KNL_Event_construct
    1001b42d ti_SysBIOS_KNL_Event_CREATE
    1001c0e9 ti_SysBIOS_KNL_Event_DELETE
    1001c0ed ti_SysBIOS_KNL_Event_析 构
    1001b61d ti_SysBIOS_KNL_Event_PendTimeout__i
    1.0019万bf9 ti_SysBIOS_KNL_Event_Pend__E
    1001a455 ti_SysBIOS_KNL_Event_POST__E
    1001be6f ti_SysBIOS_KNL_Event_sync__E
    0000d99c ti_SysBIOS_KNL_Idle_funclist__A
    0.0011万f0 ti_SysBIOS_KNL_Idle_funclist__C
    1001c053 ti_SysBIOS_KNL_Idle_loop__E
    1001bb19 ti_SysBIOS_KNL_Idle_run__E
    1001cb74 ti_SysBIOS_KNL_Mailbox_Instance_State_dataQue__O
    1001cb78 ti_SysBIOS_KNL_Mailbox_Instance_State_dataSem__O
    1001cb7c ti_SysBIOS_KNL_Mailbox_Instance_State_freeQue__O
    1001cb80 ti_SysBIOS_KNL_Mailbox_Instance_State_freeSem__O
    1001a4c5 ti_SysBIOS_KNL_Mailbox_Instance_Finality__E
    1.0019万dad ti_SysBIOS_KNL_Mailbox_Instance_init__E
    20.0017万cc ti_SysBIOS_KNL_Mailbox_Module__root__V
    1001afcd ti_SysBIOS_KNL_Mailbox_Module_Startup__E
    0.115万 ti_SysBIOS_KNL_Mailbox_Object__DESC__C
    1001c9b4 ti_SysBIOS_KNL_Mailbox_Object__Params__C
    0.124万 ti_SysBIOS_KNL_Mailbox_Object__count__C
    1001bb39 ti_SysBIOS_KNL_Mailbox_Object__delete__S
    1001bce1 ti_SysBIOS_KNL_Mailbox_Object__析 构t__S
    1001b649 ti_SysBIOS_KNL_Mailbox_Object__Get__S
    0.1244万 ti_SysBIOS_KNL_Mailbox_Object__table__C
    1001bfe5 ti_SysBIOS_KNL_Mailbox_Params__init__S
    1001abc5 ti_SysBIOS_KNL_Mailbox_construct
    1001a945 ti_SysBIOS_KNL_Mailbox_create
    1001c0F1 ti_SysBIOS_KNL_Mailbox_delete
    1001c0f5 ti_SysBIOS_KNL_Mailbox_析 构
    0.1248万 ti_SysBIOS_KNL_Mailbox_maxTypeAlign _C
    1001a535 ti_SysBIOS_KNL_Mailbox_Pend__E
    1001b675 ti_SysBIOS_KNL_Mailbox_postInit__i
    1001a0ed ti_SysBIOS_KNL_Mailbox_post__E
    1001c073 ti_SysBIOS_KNL_Queue_Instance_init__E
    20.0017万d4 ti_SysBIOS_KNL_Queue_Module__root_V
    0.117万 ti_SysBIOS_KNL_Queue_Object__DESC__C
    1001cb20 ti_SysBIOS_KNL_Queue_Object__Params__C
    0.0124万c ti_SysBIOS_KNL_Queue_Object__count__C
    1001bb59 ti_SysBIOS_KNL_Queue_Object__delete__S
    1001bcfd ti_SysBIOS_KNL_Queue_Object__析 构t__S
    1001bb79 ti_SysBIOS_KNL_Queue_Object__Get__S
    0.125万 ti_SysBIOS_KNL_Queue_Object__table__C
    1001b6a1 ti_SysBIOS_KNL_Queue_construct
    1001b6cd ti_SysBIOS_KNL_Queue_create
    1001c0f9 ti_SysBIOS_KNL_Queue_delete
    1001bff1 ti_SysBIOS_KNL_Queue_DEQUEUE__E
    1001c0fd ti_SysBIOS_KNL_Queue_析 构
    1001c079 ti_SysBIOS_KNL_Queue_elemClear__E
    1001bf4f ti_SysBIOS_KNL_Queue_empty_E
    1001bffd ti_SysBIOS_KNL_Queue_Enqueue__E
    1001bd19 ti_SysBIOS_KNL_Queue_Get__E
    1001c101 ti_SysBIOS_KNL_Queue_head__E
    1001c105 ti_SysBIOS_KNL_Queue_next __E
    1001bd35 ti_SysBIOS_KNL_Queue_Put __E
    1001bf5d ti_SysBIOS_KNL_Queue_remove__E
    1001cb84 ti_SysBIOS_KNL_semaphore_Instance_State_pendQ__O
    1001b7cd ti_SysBIOS_KNL_semaphore_instance_finalize __E
    1001a685 ti_SysBIOS_KNL_semaphore_instance_init__E
    20.0017万dc ti_SysBIOS_KNL_semaphore_Module__root_V
    0.119万 ti_SysBIOS_KNL_semaphore_Object__DESC__C
    1001cab4 ti_SysBIOS_KNL_semaphore_Object__Params__C
    1001b8d5 ti_SysBIOS_KNL_semaphore_Object__delete__S
    1001bb99 ti_SysBIOS_KNL_semaphore_Object__析 构t__S
    1001c009 ti_SysBIOS_KNL_semaphore_Params__init__S
    1001b45d ti_SysBIOS_KNL_semaphore_construct
    1001b2d1 ti_SysBIOS_KNL_semaphore_create
    1001c109 ti_SysBIOS_KNL_semaphore_delete
    1001c10d ti_SysBIOS_KNL_semaphore_析 构
    0.1254万 ti_SysBIOS_KNL_semaphore_eventPost__C
    0.1258万 ti_SysBIOS_KNL_semaphore_eventSync__C
    1001b6f9 ti_SysBIOS_KNL_semaphore_pendTime__i
    1.0019万b05 ti_SysBIOS_KNL_semaphore_Pend__E
    1001a3e1 ti_SysBIOS_KNL_semaphore_post_E
    1001bf77 ti_SysBIOS_KNL_Swi_Instance_Finaling_E
    1001a9a5 ti_SysBIOS_KNL_Swi_instance_init__E
    2000.155万 ti_SysBIOS_KNL_Swi_Module_State_0_readyQ__A
    20.0017万e4 ti_SysBIOS_KNL_Swi_Module__root_V
    20.0001万c8 ti_SysBIOS_KNL_Swi_Module__state__V
    1001c07f ti_SysBIOS_KNL_Swi_Module_Startup__E
    0.0011万b0 ti_SysBIOS_KNL_Swi_Object__DESC__C
    1001ca44 ti_SysBIOS_KNL_Swi_Object__Params__C
    0.0125万c ti_SysBIOS_KNL_Swi_Object__count__C
    1001bbb9 ti_SysBIOS_KNL_Swi_Object__delete__S
    1001bd51 ti_SysBIOS_KNL_Swi_Object__DISASTT__S
    1001b725 ti_SysBIOS_KNL_Swi_Object__Get__S
    0.126万 ti_SysBIOS_KNL_Swi_Object__table__C
    2000.158万 ti_SysBIOS_KNL_Swi_Object__table__V
    1001c015 ti_SysBIOS_KNL_Swi_Params__init__S
    1001ad79 ti_SysBIOS_KNL_Swi_construct
    0000be6d ti_SysBIOS_KNL_Swi_construt2__E
    1001ac1d ti_SysBIOS_KNL_Swi_create
    1001c111 ti_SysBIOS_KNL_Swi_DELETE
    1001c115 ti_SysBIOS_KNL_Swi_析 构
    1001bf11 ti_SysBIOS_KNL_Swi_disable__E
    1001bf21 ti_SysBIOS_KNL_Swi_enabled__E
    0000c56d ti_SysBIOS_KNL_Swi_getTrigger__E
    0.1264万 ti_SysBIOS_KNL_Swi_numPriority__C
    0000c0a1 ti_SysBIOS_KNL_Swi_or_E
    1001c119 ti_SysBIOS_KNL_Swi_postInit__i
    1001b011 ti_SysBIOS_KNL_Swi_post__E
    1001a6ed ti_SysBIOS_KNL_Swi_restoreHWi__E
    1001b305 ti_SysBIOS_KNL_Swi_RESTORE__E
    1001adc9 ti_SysBIOS_KNL_Swi_runLoop__i
    1001ac75 ti_SysBIOS_KNL_Swi_run__i
    1001ad25 ti_SysBIOS_KNL_Swi_schedule__i
    0000c579 ti_SysBIOS_KNL_Swi_self__E
    1001c085 ti_SysBIOS_KNL_Swi_startup__E
    2000.182万 ti_SysBIOS_KNL_Task_Instance_State_0_stack__A
    1001a059 ti_SysBIOS_KNL_Task_Instance_Finaling__E
    1.0019万ce1 ti_SysBIOS_KNL_Task_Instance_init__E
    200.0181万c ti_SysBIOS_KNL_Task_Module_State_0_idleTask__A
    20.0015万b0 ti_SysBIOS_KNL_Task_Module_State_0_readyQ__A
    1001cb88 ti_SysBIOS_KNL_Task_Module_State_InactiveQ__O
    20.0017万ec ti_SysBIOS_KNL_Task_Module__root_V
    2000.01万 ti_SysBIOS_KNL_Task_Module__state__V
    1001aa05 ti_SysBIOS_KNL_Task_Module_Startup__E
    0.0011万d0 ti_SysBIOS_KNL_Task_Object__DESC__C
    1001c978 ti_SysBIOS_KNL_Task_Object__Params__C
    0.1268万 ti_SysBIOS_KNL_Task_Object__COUNT_C
    1001bbd9 ti_SysBIOS_KNL_Task_Object__delete__S
    1001bd6d ti_SysBIOS_KNL_Task_Object__析 构t__S
    1001bbf9 ti_SysBIOS_KNL_Task_Object__Get__S
    0.0126万c ti_SysBIOS_KNL_Task_Object__table__C
    2000.1454万 ti_SysBIOS_KNL_Task_Object__table__V
    1001c021 ti_SysBIOS_KNL_Task_Params__init__S
    1001c0ad ti_SysBIOS_KNL_Task_SupportProxy_Module__startupDone__S
    UNDED ti_SysBIOS_KNL_Task_SupportProxy_Module__startupDone__S__manged__
    1001bf9d ti_SysBIOS_KNL_Task_SupportProxy_getStackAlignment __E
    UNDED ti_SysBIOS_KNL_Task_SupportProxy_getStackAlignment__E__manged__
    1001b155 ti_SysBIOS_KNL_Task_SupportProxy_start__E
    UNDED ti_SysBIOS_KNL_Task_SupportProxy_start__E__manged__
    1001c969 ti_SysBIOS_KNL_Task_SupportProxy_swap__E
    UNDED ti_SysBIOS_KNL_Task_SupportProxy_swap__E_manched__
    0.127万 ti_SysBIOS_KNL_Task_AllBlockedFunc__C
    1001b055 ti_SysBIOS_KNL_Task_allBlockedFunction__i
    1001b339 ti_SysBIOS_KNL_Task_blockI__E
    1001ae19 ti_SysBIOS_KNL_Task_Construct
    1001accd ti_SysBIOS_KNL_Task_create
    0.1274万 ti_SysBIOS_KNL_Task_defaultStackHeap__C
    0.1278万 ti_SysBIOS_KNL_Task_defaultStackSize__C
    1001c11d ti_SysBIOS_KNL_Task_DELETE
    1001c121 ti_SysBIOS_KNL_Task_析 构
    1001bf31 ti_SysBIOS_KNL_Task_disable__E
    1001c08b ti_SysBIOS_KNL_Task_enable__E
    1001bd89 ti_SysBIOS_KNL_Task_enter__i
    1001b119 ti_SysBIOS_KNL_Task_Exit__E
    0.0128万c ti_SysBIOS_KNL_Task_initStackFlag__C
    0.0127万c ti_SysBIOS_KNL_Task_numConstructedTasks__C
    1001a271 ti_SysBIOS_KNL_Task_postInit__i
    1001b48d ti_SysBIOS_KNL_Task_processVitalTaskFlag__i
    1001bc19 ti_SysBIOS_KNL_Task_restoreHWi__E
    1001b7f5 ti_SysBIOS_KNL_Task_Restore__E
    1001ae69 ti_SysBIOS_KNL_Task_schedule__i
    1001c02d ti_SysBIOS_KNL_Task_self__E
    1001bda5 ti_SysBIOS_KNL_Task_SleepTimeout__i
    1001a5a5 ti_SysBIOS_KNL_Task_Sleep__E
    1001aa61 ti_SysBIOS_KNL_Task_startCore__E
    1001c125 ti_SysBIOS_KNL_Task_Startup__E
    1001c971 ti_SysBIOS_KNL_Task_swapReturn
    1001b751 ti_SysBIOS_KNL_Task_unblockI__E
    1001bdF1 ti_SysBIOS_KNL_Task_Unbodbed__E
    1001b0d9 ti_SysBIOS_KNL_Task_Yone__E
    0.1304万 ti_SysBIOS_ROM_ti_SysBIOS_family_arm_cc26xx_Timer_getCount64__E
    0.1308万 ti_SysBIOS_ROM_ti_SysBIOS_family_arm_cc26xx_Timer_getCurrentTick__E
    0.013万c ti_SysBIOS_ROM_ti_SysBIOS_family_arm_cc26xx_Timer_getMaxTicks__E
    0.131万 ti_SysBIOS_ROM_ti_SysBIOS_family_arm_cc26xx_Timer_initDevice__i
    0.1314万 ti_SysBIOS_ROM_ti_SysBIOS_family_arm_cc26xx_Timer_setNextTick_E
    0.1318万 ti_SysBIOS_ROM_ti_SysBIOS_family_arm_cc26xx_Timer_setThreshold__i
    0.0131万c ti_SysBIOS_ROM_ti_SysBIOS_family_arm_cc26xx_Timer_start__E
    0.132万 ti_SysBIOS_ROM_ti_SysBIOS_family_arm_cc26xx_TimestampProvider_get32__E
    0.1324万 ti_SysBIOS_ROM_XDC_Runtime_Startup_getState__i
    0.1328万 ti_SysBIOS_ROM_XDC_Runtime_System_SupportProxy_abort__E
    0.0132万c ti_SysBIOS_ROM_XDC_Runtime_System_SupportProxy_Exit__E
    1.0019万b00 ti_SysBIOS_ROM_cortexm_cc26xx_R2_CC26xx_revision__C
    0000c67b ti_SysBIOS_ROM_cortexm_cc26xx_R2_CC26xx_badRomRevision__E
    0000c0b9 ti_SysBIOS_ROM_cortexm_cc26xx_R2_CC26xx_checkRevision__E
    2.0001万dd8计时器头
    2.0001万e1c trngCC26XXObjects
    0000d918 trngDriverTable
    2.0004万efc trngDrvTblPtr
    2.0004万ccc trxTestCmd.
    2.0004万e8c txDataQ
    2.0004万c34 txModemTestCmd.
    0000da40 txPowerTable
    0000da1c txPwrTbl
    2.0004万e94 txTestOut
    2.0004万dc4 txTestParam
    0.0763万f取消链接
    2000.1678万用户0配置
    0000d6f8 validRangeUUID
    2.0004万e60版本信息
    0000da4e wlSize
    20.0047万cc wlTable
    20.0048万a8 wlTableScan
    0.0075万a9写入
    0.0012万a0 XDC_runtime断言_E_assertFaiced__C
    1001c465 xdc_runtime断言_Raise __i
    1001c5b9 xdc_runtime内核赋值Label__i
    1001c4ad xdc_runtime核心赋值Params__i
    1001c4f5 XDC_runtime内核构造Object__i
    1001c2c9 XDC_runtime核心CreateObject__i
    1001c3b5 XDC_runtime核心删除Object__i
    1001c6a5 XDC_runtime内核析构Object__i
    0.0012万a4 XDC_Runtime_Error_E_MEMORI__C
    2000.165万 XDC_runtime错误IgnoreBlock
    2000.0204万 XDC_Runtime_Error_Module__state__V
    1001c6bd xdc_runtime错误检查__E
    0000c0d1 XDC_runtime错误_init__E
    0.0012万f8 XDC_runtime错误maxDepth__C
    0.0012万a8 XDC_runtime错误策略Fxn__C
    1001c413 XDC_Runtime_Error_policySpin__E
    0.13万 xdc_runtime错误策略__C
    0.0012万ac XDC_Runtime_Error_raiseHook__C
    1001c66d xdc_runtime错误_raiseX__E
    1001c795 xdc_runtime门_enterSystem__E
    1001c789 XDC_Runtime_Gate_leaveSystem__E
    0.0012万b0 XDC_runtime-IGateProvider_Interface__base__C
    0.0012万b4 XDC_Runtime_IHeap_Interface__base__C
    0.0012万b8 XDC_Runtime_IModule_Interface__base__C
    UNDEFED XDC_RUNTIME_Main_Module_GateProxy_Handle __label__S
    UNDEFED XDC_RUNTIME_Main_Module_GateProxy_query__E
    1001ba39 XDC_runtime内存HeapProxy_Handl__label__S
    UNDEFED XDC_RUNTIME_Memory_HeapProxy_Handle __label__S__mandanged__
    1001ba59 XDC_runtime内存HeapProxy_Object__delete__S
    1001c775 xdc_runtime内存HeapProxy_alloc__E
    1001c77f XDC_runtime内存HeapProxy_free __E
    0.0012万fa XDC_runtime内存模块__id__C
    2000.02万 XDC_Runtime_Memory_Module__state__V
    1001c349 XDC_runtime内存alloc__E
    1001c751 xdc_runtime内存calloc__E
    0.0012万bc XDC_Runtime_Memory_defaultHeapInstance__C
    1001c705 XDC_Runtime_Memory_free __E
    1001c75d XDC_runtime内存getMaxDefaultTypeAlign _E
    1001c689 xdc_runtime内存valloc__E
    20.0001万f0 XDC_Runtime_Startup_Module__state__V
    0.0001万 XDC_runtime启动__EXECFXN__C
    0.0001万 XDC_runtime启动__RESETFXN__C
    0.0012万c0 xdc_runtime启动执行Impl__C
    1001c415 xdc_runtime启动执行__E
    0000c2af xdc_runtime启动执行__i
    0000d924 xdc_runtime启动firstFxns__a
    0.129万 XDC_runtime启动firstFxns__C
    0.0009万b89 xdc_runtime启动getState__i
    0.1298万 XDC_Runtime_Startup_lastFxns__C
    0.0012万c4 xdc_runtime启动_maxPasses__C
    0000c585 xdc_runtime启动_重置__i
    1001c769 XDC_runtime启动rtsDone__E
    0000d89c XDC_runtime启动sfxnRTs__A
    0.0012万c8 xdc_runtime启动sfxnRTs__C
    0000d7a4 xdc_runtime启动sfxnTab__A
    0.0012万cc XDC_Runtime_Startup_sfxnTab__C
    0.0012万d0 XDC_runtime启动模式Fxn__C
    1001c129 xdc_runtime启动模式__i
    0.0012万d4 XDC_runtime系统Callback_abortFxn__C
    1001c715 XDC_runtime系统Callback_abort__E
    0000c67d XDC_runtime-SysCallback_defaultAbort
    0000c67f XDC_Runtime_SysCallback_defaultExit
    0.0012万d8 XDC_runtime系统Callback_exitFxn__C
    1001c725 xdc_runtime _SysCallback_exit_E
    1001b999 XDC_Runtime_System_Module_GateProxy_Handl__S
    UNDEFED XDC_runtime系统模块GateProxy_handle __label__S__manged__
    1001b9b9 XDC_runtime系统模块GateProxy_Object__delete__S
    1001c799 XDC_Runtime_System_Module_GateProxy_enter__E
    1001c79d xdc_runtime系统模块GateProxy_lefore__E
    1001c0b1 XDC_Runtime_System_Module_GateProxy_query__E
    UNDEFED XDC_RUNRUNATE_System_Module_GateProxy_query__E__manged__
    20.0001万f8 XDC_Runtime_System_Module__state__V
    1001c78f XDC_runtime系统模块启动_E
    UNDEFED XDC_RUNTIME_System_SupportProxy_abort__E
    UNDEFED XDC_RUNTIME_System_SupportProxy_Exit__E
    0.0012万dc xdc_runtime系统_中止Fxn__C
    1001c7a1 xdc_runtime系统_中止Spin__E
    0.0009万e45 XDC_Runtime_System_abortStd__E
    1001c64d XDC_runtime系统中止__E
    1001c581 XDC_Runtime_System_atexit__E
    0.0012万e0 xdc_runtime系统_exitFxn__C
    1001c7a3 XDC_Runtime_System_exitSpin__E
    0.0009万e4d xdc_runtime系统_exitStd__E
    1001c6d5 XDC_runtime系统退出__E
    0.0012万e4 XDC_Runtime_System_maxAtexitHandlers__C
    1001c5ed XDC_runtime系统进程退出__E
    0.0012万fc XDC_runtime文本_charCnt__C
    0000d963 XDC_runtime文本_charTab__A
    0.0012万e8 XDC_runtime文本_charTab__C
    1001c621 xdc_runtime文本cordText__e.
    0.0012万fe XDC_runtime文本_isLoaded__C
    0.0012万ec XDC_runtime文本名称Empty__C
    0.0012万f0 XDC_runtime文本名称Static__C
    0.0012万f4 XDC_runtime文本名称Unknown __C
    1001c6ed XDC_runtime文本_ropeText__E
    1001c735 XDC_runtimestamp_SupportProxy_get32__E
    0000c44b xdc_runtimestamp_SupportProxy_get32__E_mangeled__
    1001b77d xdc_runtimestamp_SupportProxy_get64__E
    UNDEFED XDC_runtime_Timestamp_SupportProxy_get64__E_mangded__
    1001bf6b XDC_runtimestamp_SupportProxy_getFreq__E
    UNDEFED XDC_runtime_Timestamp_SupportProxy_getFreq__E__manged__
    1001c735 xdc_runtimestamp_get32__e.
    UNDEFED XDC_runtimestamp_get32__E
    1001b77d xdc_runtimestamp_get64__e.
    UNDEFED XDC_runtimestamp_get64__E
    1001bf6b XDC_runtimestamp_getFreq__E
    UNDEFED XDC_runtimestamp_getFreq__E
    100.1284万d XOR_128
    1000de81 zADD.
    1000e021 zADD32
    1000df4d zMACC32
    1000e075 zMULT32
    1000dd25 zSET
    1000dec9 zSUB
    1000dfd5 zSUB32
    
    
    全局符号:按符号地址
    
    名称排序
    --------- ---
    0万 __ASM__
    0万 __TI_STATIC_BACK__
    0万 __unused_flash_start__
    0万 ti_SysBIOS_family_arm_m3_Hwi_resetVectors
    0.0001万 XDC_runtime启动__EXECFXN__C
    0.0001万 XDC_runtime启动__RESETFXN__C
    0.008万 __ISA__
    0.0092万 __PLAT__
    0万b9 __TARG__
    0万DE __TRDR__
    0.04万 __stack_size
    0.0775万 LL_Init
    0万d4d GAPRole_SetParameter
    0万fe1 HalFlashGetAddress
    0.1万 ti_SysBIOS_堆 叠_HeapMem_Module__Fxns__C
    0.1028万 ti_SysBIOS_Gates_GateHWI_Module__Fxns__C
    0.0104万c ti_SysBIOS_Gates_GateMutex_Module__Fxns__C
    0.107万 ti_SysBIOS_family_arm_m3/HWI_Object__DESC__C
    0.109万 ti_SysBIOS_Gates_GateHWI_Object__DESC__C
    0.001万b0 ti_SysBIOS_Gates_GateMutex_Object__DESC__C
    0.001万d0 ti_SysBIOS_hal _HWI_Object__DESC__C
    0.001万f0 ti_SysBIOS_堆 叠_HeapMem_Object__DESC__C
    0.111万 ti_SysBIOS_KNL_Clock_Object__DESC__C
    0.113万 ti_SysBIOS_KNL_Event_Object__DESC__C
    0.115万 ti_SysBIOS_KNL_Mailbox_Object__DESC__C
    0.117万 ti_SysBIOS_KNL_Queue_Object__DESC__C
    0.119万 ti_SysBIOS_KNL_semaphore_Object__DESC__C
    0.0011万b0 ti_SysBIOS_KNL_Swi_Object__DESC__C
    0.0011万d0 ti_SysBIOS_KNL_Task_Object__DESC__C
    0.0011万f0 ti_SysBIOS_KNL_Idle_funclist__C
    0.0011万f8 ti_SysBIOS_family_arm_cc26xx_Timer_startupNeeded__C
    0.0011万fc ti_SysBIOS_family_arm_m3_Hwi_E_alreadyDefuted__C
    0.12万 ti_SysBIOS_family_arm_m3_Hwi_E_hwiLimitExceeded__C
    0.1204万 ti_SysBIOS_family_arm_m3_Hwi_NUM_Interrupts__C
    0.1208万 ti_SysBIOS_family_arm_m3_Hwi_Object__count__C
    0.012万c ti_SysBIOS_family_arm_m3_Hwi_Object__table__C
    0.121万 ti_SysBIOS_family_arm_m3_Hwi_CCR__C
    0.1214万 ti_SysBIOS_family_arm_m3/hwi_excHandlerFunc__C
    0.1218万 ti_SysBIOS_family_arm_m3_Hwi_nullIsrFunc__C
    0.0121万c ti_SysBIOS_family_arm_m3/hwi_numSparts__C
    0.122万 ti_SysBIOS_family_arm_m3/hwi_priGroup__C
    0.1224万 ti_SysBIOS_family_arm_m3_TaskSupport_stackAlignment __C
    0.1228万 ti_SysBIOS_堆 叠_HeapMem_E_MEMORI__C
    0.0122万c ti_SysBIOS_堆 叠_HeapMem_Module__gateObj__C
    0.123万 ti_SysBIOS_堆 叠_HeapMem_Object__count__C
    0.1234万 ti_SysBIOS_堆 叠_HeapMem_Object__table__C
    0.1238万 ti_SysBIOS_堆 叠_HeapMem_reqAlign _C
    0.0123万c ti_SysBIOS_KNL_Clock_triggerClock__C
    0.124万 ti_SysBIOS_KNL_Mailbox_Object__count__C
    0.1244万 ti_SysBIOS_KNL_Mailbox_Object__table__C
    0.1248万 ti_SysBIOS_KNL_Mailbox_maxTypeAlign _C
    0.0124万c ti_SysBIOS_KNL_Queue_Object__count__C
    0.125万 ti_SysBIOS_KNL_Queue_Object__table__C
    0.1254万 ti_SysBIOS_KNL_semaphore_eventPost__C
    0.1258万 ti_SysBIOS_KNL_semaphore_eventSync__C
    0.0125万c ti_SysBIOS_KNL_Swi_Object__count__C
    0.126万 ti_SysBIOS_KNL_Swi_Object__table__C
    0.1264万 ti_SysBIOS_KNL_Swi_numPriority__C
    0.1268万 ti_SysBIOS_KNL_Task_Object__COUNT_C
    0.0126万c ti_SysBIOS_KNL_Task_Object__table__C
    0.127万 ti_SysBIOS_KNL_Task_AllBlockedFunc__C
    0.1274万 ti_SysBIOS_KNL_Task_defaultStackHeap__C
    0.1278万 ti_SysBIOS_KNL_Task_defaultStackSize__C
    0.0127万c ti_SysBIOS_KNL_Task_numConstructedTasks__C
    0.128万 ti_SysBIOS_family_arm_cc26xx_Timer_Module___id__C
    0.1282万 ti_SysBIOS_family_arm_cc26xx_TimestampProvider_useClockTimer__C
    0.1284万 ti_SysBIOS_family_arm_m3_HWI_Module__id__C
    0.1286万 ti_SysBIOS_Gates_GateHWI_Module__id__C
    0.1288万 ti_SysBIOS_GATE_GateMutex_Module__id__C
    0.0128万a ti_SysBIOS_堆 叠_HeapMem_Module__id__C
    0.0128万c ti_SysBIOS_KNL_Task_initStackFlag__C
    0.0128万e ti_SysBIOS_KNL_Clock_tickMode__C
    0.129万 XDC_runtime启动firstFxns__C
    0.1298万 XDC_Runtime_Startup_lastFxns__C
    0.0012万a0 XDC_runtime断言_E_assertFaiced__C
    0.0012万a4 XDC_Runtime_Error_E_MEMORI__C
    0.0012万a8 XDC_runtime错误策略Fxn__C
    0.0012万ac XDC_Runtime_Error_raiseHook__C
    0.0012万b0 XDC_runtime-IGateProvider_Interface__base__C
    0.0012万b4 XDC_Runtime_IHeap_Interface__base__C
    0.0012万b8 XDC_Runtime_IModule_Interface__base__C
    0.0012万bc XDC_Runtime_Memory_defaultHeapInstance__C
    0.0012万c0 xdc_runtime启动执行Impl__C
    0.0012万c4 xdc_runtime启动_maxPasses__C
    0.0012万c8 xdc_runtime启动sfxnRTs__C
    0.0012万cc XDC_Runtime_Startup_sfxnTab__C
    0.0012万d0 XDC_runtime启动模式Fxn__C
    0.0012万d4 XDC_runtime系统Callback_abortFxn__C
    0.0012万d8 XDC_runtime系统Callback_exitFxn__C
    0.0012万dc xdc_runtime系统_中止Fxn__C
    0.0012万e0 xdc_runtime系统_exitFxn__C
    0.0012万e4 XDC_Runtime_System_maxAtexitHandlers__C
    0.0012万e8 XDC_runtime文本_charTab__C
    0.0012万ec XDC_runtime文本名称Empty__C
    0.0012万f0 XDC_runtime文本名称Static__C
    0.0012万f4 XDC_runtime文本名称Unknown __C
    0.0012万f8 XDC_runtime错误maxDepth__C
    0.0012万fa XDC_runtime内存模块__id__C
    0.0012万fc XDC_runtime文本_charCnt__C
    0.0012万fe XDC_runtime文本_isLoaded__C
    0.13万 xdc_runtime错误策略__C
    0.1304万 ti_SysBIOS_ROM_ti_SysBIOS_family_arm_cc26xx_Timer_getCount64__E
    0.1308万 ti_SysBIOS_ROM_ti_SysBIOS_family_arm_cc26xx_Timer_getCurrentTick__E
    0.013万c ti_SysBIOS_ROM_ti_SysBIOS_family_arm_cc26xx_Timer_getMaxTicks__E
    0.131万 ti_SysBIOS_ROM_ti_SysBIOS_family_arm_cc26xx_Timer_initDevice__i
    0.1314万 ti_SysBIOS_ROM_ti_SysBIOS_family_arm_cc26xx_Timer_setNextTick_E
    0.1318万 ti_SysBIOS_ROM_ti_SysBIOS_family_arm_cc26xx_Timer_setThreshold__i
    0.0131万c ti_SysBIOS_ROM_ti_SysBIOS_family_arm_cc26xx_Timer_start__E
    0.132万 ti_SysBIOS_ROM_ti_SysBIOS_family_arm_cc26xx_TimestampProvider_get32__E
    0.1324万 ti_SysBIOS_ROM_XDC_Runtime_Startup_getState__i
    0.1328万 ti_SysBIOS_ROM_XDC_Runtime_System_SupportProxy_abort__E
    0.0132万c ti_SysBIOS_ROM_XDC_Runtime_System_SupportProxy_Exit__E
    0.0001万c11 PowerCC26XX_auxISR
    0.0001万f25 llScheduler
    0.2225万 LL_ProcessEvent
    0.2509万 startup _entry
    0.0002万a11 Power_Sleep
    0.0002万e81 GAPBondMgr_SetParameter
    0.003万ad RF_OPEN
    0.0032万cd LL_LastCmdDoneCback
    0.0034万ed门打开
    0.3541万结束
    0.3577万 HOSTREAD
    0.0035万c5 HOSTWRITE
    0.036万f HOSTlseek
    0.0366万d HOSTunlink
    0.0036万a3 HOS姓氏
    0.3709万 NOROM_SysCtrlSetRechargeBeforePowerDown
    0.3919万 GATTServApp_ReadAttr
    0.0003万b29 llGetNextConn
    0.0003万d35 smSavePairInfo
    0.0003万f39 __aeabi_uldivmod
    0.0412万d GAPBondMgr_ProcessGAPMsg.
    0.4881万 LL_RxIgnoredBack
    0.0004万a45 osal_start_system
    0.0004万c05 AssertHandler
    0.0004万dc1输出
    0.0004万f53置入
    0.0004万f79 rf_postCmd.
    0.5121万 LL_RxEntryDoneBack
    0.0052万c9 iCall_directAPI
    0.0545万d ECCROMCC26XX_genDHKey
    0.0055万ed PowerCC26XX_doCalibrate
    0.059万d PIN_INIT
    0.0005万a99 rf_cancelCmd.
    0.0005万c15 LL_Reset
    0.0005万d81 GAPBondMgr_ProcessEvent
    0.0005万ed1 Power_init
    0.06万d ECCROMCC26XX_genKeys
    0.6135万 llFindNextSecTask
    0.6385万 GAPRole_GetParameter
    0.0066万d1 ti_SysBIOS_family_arm_m3/hwi_excFillContext__i
    0.0067万cd osal_snv_write
    0.0006万ab1 GAPBondMgr_LinkEst
    0.0006万b9d gattServApp_ProcessReadByTypeReq
    0.0006万c89 osalTimerUpdate
    0.0006万d75主
    0.0006万e59 SM_C1
    0.7015万 CryptoCC26XX_OPEN
    0.007万e9 PowerCC26XX_standbyPolicy
    0.0071万bd setvbuf
    0.7365万 smGenerateAddrInput
    0.7429万 SimpleProfile_SetParameter
    0.0074万e9 osal_set_event
    0.0075万a9写入
    0.0763万f取消链接
    0.7669万 Power_releaseDependency
    0.7725万 __TI_closefile
    0.0077万e1 NOROM_SetupTrimDevice
    0.0077万e1 ti_SysBIOS_family_arm_cc26xx_Boot_香肠 设备
    0.7899万 llScheduleTask
    0.7951万 Power_setDependency
    0.0007万a05 TRNGCC26XX_getNumber
    0.0007万b65 SimpleBLEPeripheral_createTask
    0.0007万c0d GAPBondMgr_ResolveAddr
    0.0007万d55 __TI_auto_init
    0.0007万e93 DefaultAssertCback
    0.0007万f31 __aeabi_memcpy
    0.0007万f31 __aeabi_memcpy4.
    0.0007万f31 __aeabi_memcpy8.
    0.0007万f31 memcpy
    0.0007万fcd ti_SysBIOS_KNL_Clock_workFunction Dynamic__E
    0.8065万 iCall_setTimer
    0.008万f9 osal_msg_receive
    0.0818万d osal_timer_refTimeUpdate
    0.0081万d7 __checksum_value
    0.8221万 NOROM_CRYPTOAesLoadKey
    0.8341万 LL_ENC_DecryptMsg.
    0.0083万d1 HCI_ProcessEvent
    0.8461万 osal_CbTimerProcessEvent
    0.0084万F1 iCall_heapMalloc
    0.8609万 LL_SetAddressResolutionEnable
    0.8691万 GGS_SetParameter
    0.0088万b1 llSetupLenCtrlPkt
    0.8937万 Onboard_soft_reset
    0.0089万bd ti_SysBIOS_family_arm_m3/hwi_excHandlerMin__i
    0.0008万a41 rf_pendCmd.
    0.0008万ac1 GATTServApp_WriteAttr
    0.0008万b3f sm_dhKeyCB
    0.0008万b41 HCI_HardwareErrorEvent
    0.0008万bbbd llAllocTask
    0.0008万c39 gapProcessDisconnectCompleteEvt.
    0.0008万dad CryptoCC26XX_allocateKey
    0.0008万e27 __aeabi_memclr.
    0.0008万e27 __aeabi_memclr4.
    0.0008万e27 __aeabi_memclr8.
    0.0008万e29 __aeabi_memset
    0.0008万e29 __aeabi_memset4.
    0.0008万e29 __aeabi_memset8.
    0.0008万e2f内存集
    0.0008万ea1 GAPBondMgr_syncResolvingList
    0.0008万f19 llValidateConnParams
    0.9001万 ti_SysBIOS_family_arm_cc26xx_Timer_start__E
    0.9075万 iCall_getHeapStats
    0.9075万 iCall_heapGetStats
    0.009万e5 iCall_heapInit
    0.9155万 ble—dispatch—liteProcess
    0.0091万c5 iCall_sendServiceComplete
    0.9231万 NOROM_OSCHH_AttempToSwitchToXosc
    0.0929万d PowerCC26XX_initiateCalibration
    0.9309万 llFindStartType
    0.0093万e1 NOROM_sysctrl_DCDC_VoltageConditionalControl
    0.9519万 __TI_decpress_lzss
    0.9581万 osal_CbTimerUpdate
    0.0095万e9 __TI_writemsg.
    0.9617万 C$io$$
    0.0961万b __TI_readmsg
    0.9651万 iCall_send
    0.0096万b5 NOROM_SysCtrlAdjustargeAfterPowerDown
    0.9719万 gattServApp_ProcessReliableWrites
    0.0097万e1 iCall_createRemoteTasksAtRuntime.
    0.9841万 iCall_enrollService
    0.0098万a1 RF_getCurrentTime
    0.9901万 iCall_fetchMsg.
    0.0995万f sm_p256KeyCB
    0.9961万 Display_doOpen
    0.0099万bd iCall_pwrUpdActivityCounter
    0.0009万a19 PowerCC26XX_RCOSC_clockFunction
    0.0009万a75 PowerCC26XX_CALIBRATE
    0.0009万ad1 GATTServApp_Init
    0.0009万b89 xdc_runtime启动getState__i
    0.0009万be5 iCall_Wait
    0.0009万ced osal_CbTimerStop
    0.0009万d45 gattServApp_EnqueuePrepareWriteReq
    0.0009万e41 C$exit
    0.0009万e45中止
    0.0009万e45 XDC_Runtime_System_abortStd__E
    0.0009万e4d出口
    0.0009万e4d xdc_runtime系统_exitStd__E
    0.0009万e95 ECCROMCC26XX_Params_init
    0.0009万ee5 GAPBondMgr_LinkTerm
    0.0009万f35 iCall_registerApp
    0.0009万f85 NPI_WriteTransport
    0.0009万fd5 rf_getinfo
    0000a025 Util_convertBdAddr2Str
    0000a1a5 osal_bm_free
    0000a1F1 copy_in.
    0000a23d __TI_doflush
    0000a2d5时钟P_construct
    0000a365 Util_construtClock
    0000a3ad osalAddTimer
    0000a3f5 ti_SysBIOS_family_arm_cc26xx_Timer_setThreshold__i
    0000a43d NOROM_OSCHF_SwitchToRcOscTurnOffXosc
    0000a4c5 SimpleProfile_GetParameter
    0000a509重新设置ISR
    0000a509 _c_int00
    0000a54d llFreeTask
    0000a591 gattServApp_ClearPrepareWriteQ
    0000a65d osal_start_timerEx
    0000a6a1 GAPBondMgr_UpdateCharCfg.
    0000a6e3 GAGE_DeviceInit
    0000a725 ECCROMCC26XX_INIT
    0000a765 GAPRole_createTask
    0000a7a5 Hwip_construct
    0000a7e5 rf_getRssi
    0000a825 GATTServApp_ProcessEvent
    0000a865 ti_SysBIOS_堆 叠_HeapCallback_Module_Startup__E
    0000a8a5 NOROM_OSC_HPOSCRelativeFrquencyOffsetGet
    0000a8e1 PowerCC26XX_isStableXOSC
    0000a91d PowerCC26XX_switchXOSC
    0000a959 rf_runCmd.
    0000a995 swip_construct
    0000a9d1 llSchedulerInit
    0000aa0d HCI_Init
    0000aa49 gattServApp_ProcessExchangeMTUReq
    0000aa85 gattServApp_ResetCharCfg.
    0000aac1 GATTServApp_SendCCCUpdateEvent
    0000aafd osal_bm_alloc
    0000ab39 osal_start_reload_timer
    0000abb1 ti_SysBIOS_family_arm_m3_Hwi_construt2__E
    0000abed Util_restartClock
    0000ac25 llActiveTask
    0000ac5d llGetTask
    0000ac95 L2CAP_SendDataPkt
    0000ad3d osal_alien2代理
    0000adad osal_stop_timerEx
    0000ade5 ti_SysBIOS_family_arm_cc26xx_Timer_getCurrentTick_E
    0000ae1d CryptoCC26XX_loadKey
    0000ae55 GATTServApp_InitCharCfg.
    0000ae89 iCall_free
    0000ae89 iCall_heapFree
    0000aebd iCall_searchServiceEntity
    0000aef1 Power_releaseConstraint
    0000af59 rfCallback
    0000af8d llGetTaskState
    0000afc1 osal_clean_event
    0000aff5 __TI_cleanup
    0000b029 strncpy
    0000b05d ti_SysBIOS_family_arm_cc26xx_Timer_initDevice__i
    0000b091 iCall_fetchServiceMsg.
    0000b0c3 ti_SysBIOS_family_arm_cc26xx_Timer_setNextTick__E
    0000b0f5 GAPBondMgr_PasscodeRsp
    0000b125 GAPRole_TerminateConnection
    0000b155 HalFlashRead
    0000b245 Power_setConstraint
    0000b275 gap_PrivacyInit
    0000b2a5 gattServApp_ProcessWriteLong
    0000b305 osal_Get_timeoutEx
    0000b335 ti_SysBIOS_BIOS_atExitFunction__i
    0000b365 ti_SysBIOS_BIOS_startFunc__i
    0000b395 ti_SysBIOS_堆 叠Callback_Object__create__S
    0000b421 GATTServApp_RegisterService
    0000b44f osal_build_UINT32
    0000b47d malloc
    0000b4ad iCall_getLocalMsgEntityId
    0000b505 NOROM_ChipInfo_GetChipFamily
    0000b531 NOROM_RFCDoorbellSendTo
    0000b55d SemaphoreP_construtBinary
    0000b589 bleDispatch_BMAlloc
    0000b5b5 gattServApp_HandleConnStatusCB
    0000b5e1 smSendFailureEvt.
    0000b691 ti_SysBIOS_KNL_Clock_getTicksUntilInterrupti__E
    0000b6bd Display_doPrintf
    0000b6e7 ti_SysBIOS_KNL_Clock_getTimeout__E
    0000b711 Power_registerNotify
    0000b739 SafeHapiVoid
    0000b761 TRNGCC26XX_INIT
    0000b7b1 execHandlerHook
    0000b801 osal_BM_ADJUST_HEADER
    0000b829 osal_next超时
    0000b851 osal_SNV_COMPACT
    0000b89f halAssertHandler
    0000b8a1 CryptoCC26XX_hwiIntFxn.
    0000b8c5 NOROM_OSCHf_TurnOnXosc
    0000b8e9 PINCC26XX_getPinCount
    0000b931 GGS_AddService
    0000b979 osal_msg_allocate
    0000b99d osal_service_entry
    0000b9c1 ti_SysBIOS_BIOS_registerRTSLock__i
    0000b9e5 ti_SysBIOS_BIOS_removeRTSLock__I
    0000ba09 ti_SysBIOS_family_arm_cc26xx_Timer_getMaxTicks__E
    0000ba2d iCall_setTimerMSects.
    0000ba4f List_put
    0000ba71 GATTServApp_UpdateCharCfg.
    0000ba93 halAssertSpinlock
    0000ba95 PowerCC26XX_schedulerDisable
    0000bab5 PowerCC26XX_schedulerRestore
    0000bad5 LL_TxEntryDoneBack
    0000baf5 GATTServApp_AddService
    0000bb35 osalFindTimer
    0000bb55 osal_memcmp
    0000bb75 osal_msg_deallocate
    0000bb95 osal_msg_send
    0000bbd5 memchr.
    0000bbf5 ti_SysBIOS_BIOS_rtsLock__i
    0000bc15 ti_SysBIOS_family_arm_cc26xx_Timer_dynamicStub__E
    0000bc35 Power_getTransitionLatency
    0000bc8f osal_snv_read
    0000bcad GAPBondMgr_Register
    0000bcc9 GAPBondMgr_SupportsEnhancedPriv
    0000bd01 NOROM_FlashProgram
    0000bd1d NOROM_FlashSectorErase.
    0000bd71 rf_runDirectCmd
    0000bda9 TRNGCC26XX_OPEN
    0000bdfd halAssertHandlerExt
    0000be19 openTRNG
    0000be35 osal_memdup
    0000be51 osal_revmemcpy
    0000be6d ti_SysBIOS_KNL_Swi_construt2__E
    0000be89 iCall_enterCSImpl
    0000bebd osal_isbufset
    0000bed7 rfErrCb
    0000bed9 NOROM_ChipInfo_GetPackageType.
    0000beF1 NOROM_RFCCpeIntGetAndClear
    0000bf09 Power_idleFunc
    0000bf39 rf_runImmediateCmd.
    0000bf51 bleDispatch_BMFree
    0000bf99免费
    0000bfc9 iCall_liteMsgParser
    0000bfe1 osal_buffer_UINT32
    0000bff9 osal_memcpy
    0000c011 _args_main
    0000c029 __aeabi_lmul
    0000c041 strcmp
    0000c071 ti_SysBIOS_BIOS_rtsUnlock__i
    0000c089 ti_SysBIOS_堆 叠Callback_instance_init__E
    0000c0a1 ti_SysBIOS_KNL_Swi_or_E
    0000c0b9 ti_SysBIOS_ROM_cortexm_cc26xx_R2_CC26xx_checkRevision__E
    0000c0d1 XDC_runtime错误_init__E
    0000c0e9 iCall_abort
    0000c0ff iCall_leaveCSImpl
    0000c115 iCall_pwrDiscense.
    0000c12b iCall_pwrRequire
    0000c141 ROM_Spinlock
    0000c157 LL_DoorbellErrorCrback
    0000c16d驱动程序Table_fnSpinlock
    0000c199 ti_SysBIOS_BIOS_errorRaiseHook__i
    0000c1af ti_SysBIOS_BIOS_exitFunc__i
    0000c1c5 rf_params_init
    0000c1d9 llDataGetConnPtr
    0000c201 _nop
    0000c203 _register_unlock
    0000c209 _register_lock
    0000c215直发
    0000c23d ti_SysBIOS_family_arm_cc26xx_Timer_getCount64__E
    0000c251 ti_SysBIOS_堆 叠Callback_Object__Get__S
    0000c265 ti_SysBIOS_KNL_Clock_doTick__i
    0000c279 RF_getCmdlop
    0000c28b半挂式P_Pend
    0000c29d strcpy
    0000c2af xdc_runtime启动执行__i
    0000c2c1时钟P_isActive
    0000c2d1 GATTServApp_ReadCharCfg.
    0000c2e1 Hwip_Params_init
    0000c301 Onboard _rand
    0000c301 osal_rand
    0000c321 swip_Params_init
    0000c331 Util_isActive
    0000c341 rfPUpCallback
    0000c351 llGetCurrentTask
    0000c361 gap_isPairing
    0000c381 gapRole_clockHandler
    0000c391 osal_mem_alloc
    0000c3a1 osal_mem_free
    0000c3c1 ti_SysBIOS_family_arm_m3_Hwi_getHandle__E
    0000c3d1 ti_SysBIOS_family_arm_m3_Hwi_post__E
    0000c3d1 ti_SysBIOS_hal _HWI_HwiProxy_post__E
    0000c3d1 ti_SysBIOS_hal _HWI_POST_E
    0000c3e1 ti_SysBIOS_堆 叠_HeapCallback_alloc__E
    0000c3f1 ti_SysBIOS_堆 叠Callback_free __E
    0000c401 ti_SysBIOS_States_HeapCallback_getStats__E
    0000c411 ti_SysBIOS_堆 叠Callback_isLocking__E
    0000c421 iCall_signal
    0000c42f Util_construtQueue
    0000c43d __TI_decpress_none
    0000c44b ti_SysBIOS_family_arm_cc26xx_TimestampProvider_get32__E
    0000c44b xdc_runtimestamp_SupportProxy_get32__E_mangeled__
    0000c459 CryptoCC26XX_init
    0000c465 Display_doClearLines
    0000c489 List_Empty
    0000c495 NOROM_CPUcpsid
    0000c4a1 NOROM_CPUcpsie
    0000c4ad NOROM_OSC_HPOSCRelativeFrquencyOffsetToRFCoreFormatConvert
    0000c4b9 Power_getConstraintMask
    0000c4c5 Power_getDependencyCount
    0000c4d1 llGetNumTasks
    0000c4dd llGetActiveTasks
    0000c4e9 HCI_GAPTaskRegister
    0000c4f5 HCI_L2CAPTaskRegister
    0000c501 HCI_SMPTaskRegister
    0000c50d GATTServApp_RegisterForMsg.
    0000c519 __TI_ZERO_INIT
    0000c531 osalHeapGetStatsFxn.
    0000c53d osalHeapInitFxn
    0000c549 osal_CbTimerStart
    0000c555 osal_self
    0000c561 ti_SysBIOS_BIOS_getThreadType__E
    0000c56d ti_SysBIOS_KNL_Swi_getTrigger__E
    0000c579 ti_SysBIOS_KNL_Swi_self__E
    0000c585 xdc_runtime启动_重置__i
    0000c591 HalFlashWrite
    0000c59b iCall_stopTimer
    0000c5b9 CryptoCC26XX_Params_init
    0000c5c1 rf_flushCmd
    0000c5d1时钟P_Params_init
    0000c5d7 CryptoCC26XX_Transact
    0000c5dd加密CC26XX_transactPolling
    0000c5e3 iCall_freeMsg.
    0000c5e9 NOROM_CPUdelay
    0000c5ef llTaskError
    0000c5fb osalHeapAllocFxn
    0000c601 osalHeapFreeFxn.
    0000c607 ti_SysBIOS_family_arm_m3/hwi_setFunc__E
    0000c611时钟P_getTimeout
    0000c615 ClockP_setTimeout
    0000c619时钟P_START
    0000c61d时钟P_STOP
    0000c621 GAGE_UpdateResolvingList
    0000c625 Hwip_disable
    0000c629 Hwip_enableInterrupt
    0000c62d Hwip_post
    0000c631 Hwip_setFunction
    0000c635 iCall_getTicks
    0000c639 iCall_malloc
    0000c63d List_head
    0000c641 List_next
    0000c649 SemaphoreP_POST
    0000c64d swip_disable
    0000c651 swip_getTrigger
    0000c655 swip_or
    0000c659 Util_startClock
    0000c65d Util_stopClock
    0000c665 osalHeapIsBlockingFxn.
    0000c669 osal_memset
    0000c66d osal_strlen
    0000c671 ti_SysBIOS_stalls_HeapCallback_defaultCreate
    0000c675 ti_SysBIOS_KNL_Clock_isActive__E
    0000c679 ti_SysBIOS_BIOS_nullFunc__i
    0000c67b ti_SysBIOS_ROM_cortexm_cc26xx_R2_CC26xx_badRomRevision__E
    0000c67d XDC_runtime-SysCallback_defaultAbort
    0000c67f XDC_Runtime_SysCallback_defaultExit
    0000cba0 ROM_Flash_JT
    0000d5b0资源数据库
    0000d5fc rfDriverTableBLE
    0000d690 icallServiceTable
    0000d6d4 primaryServiceUUID
    0000d6d6字符UUID
    0000d6d8 gapServiceUUID
    0000d6da gattServiceUUID
    0000d6dc辅助服务UUID
    0000d6de包含UUID
    0000d6e0 charExtPropsUUID
    0000d6e2 charUserDescUUID
    0000d6e4 clientCharCfgUUID
    0000d6e6 servCharCfgUUID
    0000d6e8 charFormatUUID
    0000d6ea charAggregFormatUUID
    0000d6ec deviceNameUUID
    0000d6ee外观UUID
    0000d6f0 periPrivacyFlagUUID
    0000d6f2 reconnectAddrUUID
    0000d6f4 periConnParamUUID
    0000d6f6 serviceChangedUUID
    0000d6f8 validRangeUUID
    0000d6fa extReportRefUUID
    0000d6fc报告RefUUID
    0000d700 cryptoDriverTableBLE
    0000d72c TRNGCC26XX_CONFIG
    0000d73c BoardGpioInitTable
    0000d754 taskArr.
    0000d77c ti_SysBIOS_堆 叠Callback_Module__Fxns__C
    0000d7a4 xdc_runtime启动sfxnTab__A
    0000d7cc TxPowerTable
    0000d7f3 Display_count
    0000d7f4 bleStackConfig
    0000d818 ti_SysBIOS_堆 叠Callback_Object__DESC__C
    0000d854 ti_SysBIOS_堆 叠Callback_Object__Params__C
    0000d888驱动程序表
    0000d89c XDC_runtime启动sfxnRTs__A
    0000d8c1 devInfo1.1073万CertUUID
    0000d8c3 Display_defaultParams
    0000d8c4 PowerCC26XX_config
    0000d8d4加密CC26XXHWAttrs
    0000d8e4 eccDriverTable
    0000d8f4主板配置
    0000d900 devInfoCbs
    0000d90c simpleProfileCBs
    0000d918 trngDriverTable
    0000d924 xdc_runtime启动firstFxns__a
    0000d930 CryptoCC26XX_config
    0000d938 PINCC26XX_hwAttrs.
    0000d950 ti_SysBIOS_family_arm_m3/hwi_excHookFuncs__A
    0000d958 appTxPwrTbl
    0000d963 XDC_runtime文本_charTab__A
    0000d964 TRNGCC26XXXHWAttrs.(0000d964 TRNGCC26XXHWAttr
    0000d968 ti_SysBIOS_family_arm_m3_Hwi_E_exception__C
    0000d96c ti_SysBIOS_family_arm_m3_Hwi_E_noIsr__C
    0000d970 ti_SysBIOS_family_arm_m3/hwi_excHookFuncs__C
    0000d974 ti_SysBIOS_family_arm_m3_Hwi_swiDisable__C
    0000d978 ti_SysBIOS_family_arm_m3_Hwi_swiRestoreHWi__C
    0000d97c ti_SysBIOS_堆 叠Callback_Object__count__C
    0000d980 ti_SysBIOS_堆 叠Callback_allocInstFxn__C
    0000d984 ti_SysBIOS_堆 叠HeapCallback_createInstFxn__C
    0000d988 ti_SysBIOS_堆 叠Callback_freeInstFxn__C
    0000d98c ti_SysBIOS_States_HeapCallback_getStatsInstFxn__C
    0000d990 ti_SysBIOS_stalls_HeapCallback_initInstFxn__C
    0000d994 ti_SysBIOS_堆 叠Callback_isBlockingInstFxn__C
    0000d998 ti_SysBIOS_KNL_Clock_tickPeriod__C
    0000d99c ti_SysBIOS_KNL_Idle_funclist__A
    0000d9a0 devInfoFirmwareRevUUID
    0000d9a2 devInfoHardwareRevUUID
    0000d9a4 devInfoMfrNameUUID
    0000d9a6 devInfoModelNumberUUID
    0000d9a8 devInfoPnpIdUUID
    0000d9aa devInfoSerialNumberUUID
    0000d9ac devInfoServUUID
    0000d9ae devInfoSoftwareRevUUID
    0000d9b0 devInfoSystemIdUUID
    0000d9b2 simpleProfileServUUID
    0000d9b4 simpleProfilechar1UUID
    0000d9b6 simpleProfilechar2UUID
    0000d9b8 simpleProfilechar3UUID
    0000d9ba simpleProfilechar4UUID
    0000d9bc simpleProfilechar5UUID
    0000d9c0 llConfigTable
    0000da10 gapServiceCBs
    0000da1c txPwrTbl
    0000da2c gattService
    0000da34 rfOpLoc
    0000da38 rfCfgVal
    0000da3c connEvtCutoff
    0000da40 txPowerTable
    0000da44 rxPktSuffix
    0000da46 advPktSuffix
    0000da48 scanPktSuffix
    0000da4a initPktSuffix
    0000da4c maxPktsPerEvt.
    0000da4e wlSize
    0000da4f加密模式
    0000deb0 __TI_Handler_Table_Base
    0000debc __TI_Handler_Table_Limit
    0000def4 __TI_CINIT_Base
    0000df5c __TI_CINIT_LIMIT
    0001e000 nv_flash
    0001ffa8 __ccfg.
    0001ff_unused_flash_end__
    1000.494万 __checksum_BEGIN
    1000.4941万 ROM_BASE ADDR
    1000.4945万 LL_TX_BM_ALLO
    1000.4969万 LL_RX_BM_ALoc
    100.0498万d LL_ReadBDADDR
    10.0049万ad LL_SetRandomAddress
    10.0049万d9 LL_ClearWhiteList
    10.0049万f9 LL_AddWhiteListDevice
    1.0004万a25 LL_RemoveWhiteListDevice
    1.0004万a61 LL_ReadWl大小
    1.0004万a79 LL_NumEmptyWlEntries
    1.0004万a95 LL_Encrypt
    1.0004万ab5 LL_Rand
    1.0004万ac1 LL_PseudoRand
    1.0004万aed LL_ReadSupportedStates
    1.0004万b49 LL_GetNumActiveConns.
    1.0004万b59 LL_ReadLocalSupportedFeatures
    1.0004万b7d LL_ReadLocalVersionInfo
    1.0004万bd LL_CtrlToHostFlowControl
    1.0004万bd1 LL_ReadRemoteVersionInfo
    1.0004万c31 LL_ReadTxPowerLevel
    1.0004万c81 LL_ReadChanMap
    1.0004万cb5 LL_ReadRssi
    1.0004万d15 LL_Disconnect
    1.0004万d81 LL_TxData
    1.0004万e45 LL_DirectTestTxTest
    1.0004万fe9 LL_DirectTestRxTest
    10.005万e9 LL_DirectTestEnd
    1000.5189万 LL_RemoteConnParamReqReply
    1000.5229万 LL_RemoteConnParamReqNegReple.
    1000.5279万 LL_ConnUpdate
    100.0536万d LL_SetAdvParam
    100.0559万d LL_SetAdvData
    10.0055万F1 LL_SetAdvControl
    1000.5701万 LL_ReadAdvChanTxPower
    1000.5739万 LL_SetScanRspData
    1000.5795万 LL_SetScanParam
    1000.5919万 LL_SetScanControl
    1.0005万a61 LL_EncLtkReple.
    1.0005万ab5 LL_EncLtkNegReply
    1.0005万afd LL_CreateConn
    1.0005万e85 LL_CreateConnCancel
    1.0005万f61 LL_ConnActive
    1.0005万f95 LL_ChanMapUpdate
    100.0604万d LL_StartEncrypt
    100.0614万d LL_ReadRemoteUsedFeatures
    10.0061万c1 LL_ReadAuthPayloadTimeout
    10.0061万fd LL_WriteAuthPayloadTimeout
    1000.6269万 LL_SetDataLen
    1000.6309万 LL_ReadDefaultDataLen
    1000.6335万 LL_WriteDefaultDataLen
    100.0637万d LL_ReadMaxDataLen
    10.0063万bd LL_EXT_SetMaxDataLen
    1000.6425万 LL_AddDeviceToResolvingList
    1000.6521万 LL_RemoveDeviceFromResolvingList
    100.0659万d LL_ClearResolvingList
    100.0661万d LL_ReadResolvingListSize
    1000.6625万 LL_ReadPeerResolvableAddress
    1000.6685万 LL_ReadLocalResolvableAddress
    1000.6781万 LL_SetResolvablePrivateAddressTimeout
    10.0067万d5 LL_ReadLocalP256 PublicKeyCmd
    1000.6819万 LL_GenerateDHKeyCmd
    1000.6859万 LL_EXT_SetRxGain
    1000.6869万 LL_EXT_SetTxPower
    10.0068万a1 LL_EXT_OnePacketPerEvent
    10.0068万c1 LL_EXT_ClkDivOnHalt
    10.0068万c5 LL_EXT_DeclareNvUsage
    10.0068万c9 LL_EXT_Decrypt
    10.0068万ed LL_EXT_SetLocalSupportedFeatures
    1000.6929万 LL_EXT_SetFastTxResponseTime
    1000.6941万 LL_EXT_SetSlaveLatencyOverride
    1000.6965万 LL_EXT_ModemTestTx
    1.0006万a01 LL_EXT_ModemHopTestTx
    1.0006万ab5 LL_EXT_ModemTestRx
    1.0006万b59 LL_EXT_EndModemTest
    1.0006万b8d LL_EXT_SetBDADDR
    1.0006万c1d LL_EXT_SetSCA
    1.0006万c95 LL_EXT_SetFreqTune
    1.0006万c99 LL_EXT_SaveFreqTune
    1.0006万c9d LL_EXT_SetMaxDtmTxPower
    1.0006万cb9 LL_EXT_MapPmIoPort
    1.0006万cbd LL_EXT_DisconnectImmed.
    1.0006万d05 LL_EXT_PacketErrorRate
    1.0006万d55 LL_EXT_PERbyChan
    1.0006万d75 LL_EXT_ExtendRfRange
    1.0006万d79 LL_EXT_HaltDuringRf
    1.0006万d7d LL_EXT_AdvEventNotice
    1.0006万d99 LL_EXT_ConnEventNotice
    1.0006万dc1 LL_EXT_BuildRevision
    1.0006万ded LL_EXT_ResetSystem
    1.0006万e21 LL_EXT_OverlappedProcessing
    1.0006万e25 LL_EXT_NumComplPktsLimit
    1.0006万e59 LL_EXT_GetConnInfo
    1.0006万f99 llRfSetup
    1.0006万fed llRfInit
    1000.7071万 llResetRadio
    1000.7075万 llHaltRadio
    10.007万b1 llRfStartFS
    100.0713万d llProcessPostRfOps
    1000.7191万 llSetTxPower
    10.0071万e9 llGetTxPower
    1000.7205万 llCheckWhiteListUsage
    1000.7251万 llSetupAd
    1000.7479万 llSetupScan
    1000.7659万 llSetupInit
    1000.7829万 llSetupConn
    1000.7869万 llSetupUpdateParamReq
    1000.7901万 llSetupUpdateChanReq
    100.0798万d llSetupEncReq
    1.0007万a2d lSetupEncRsp
    1.0007万aed llSetupStartEncReq
    1.0007万b19 llSetupStartEncRsp
    1.0007万b61 llSetupPauseEncReq
    1.0007万bad llSetupPauseEncRsp
    1.0007万c39 llSetupRejectInd.
    1.0007万c89 llSetupFeatureSetReq
    1.0007万cdd lSetupFeatureSetRsp
    1.0007万d5d lSetupVersionIndReq
    1.0007万de5 llSetupTermInd
    1.0007万e49 llSetupUnknownRsp
    1.0007万ead llEnqueueCtrlPkt
    1.0007万f09 llDequeueCtrlPkt
    1.0007万f69 llReplaceCtrlPkt
    1.0007万fb5 llProcessChanMap
    1.0007万ff5 llGetNextDataChan
    1000.8049万 llSetNextDataChan
    10.008万b9 llAtLeastTwoChans
    10.008万F1 llAllocConnId
    100.0828万d llReleaseConnId
    10.0082万cd llReleaseAllConnId
    1000.8301万 llGetMinCi
    1000.8385万 ConnllExists
    1000.8479万 ConnllCleanup
    10.0085万a9 llConnTerminate
    10.0085万e1 llPendingUpdateParam
    1000.8621万 llInitFeatureSet
    1000.8635万一般CRC
    1000.8669万 llEventInRange
    1000.8691万 llEventDelta
    1000.8699万 llConvertLstoToEvent
    10.0086万b9 llConvertCtrlProcTimeoutToEvent
    10.0086万dd ProcessTxData
    100.0876万d llWriteTxData
    10.0087万fd llSetupPingReq
    100.0885万d lSetupPingRsp
    1000.8949万 llSendReject
    100.0899万d llSetupConnParamReq
    10.0089万d5 llSetupConnParamRsp
    1.0008万aa5 llSetupRejectIndExt
    1.0008万b01 llCBTimer_AptoExpiredBack
    1.0008万b81 llFragmentPDU
    1.0008万c01 llCombininePDU
    1.0008万d71 llAlignToNextEvent
    1.0008万e45 llVerifyConnParamReqParams
    1.0008万f59 llTime2Octets
    1.0008万f89 llOctets2Time
    1.0008万fbd llGetSlowestPhy.
    1.0008万fdd llSortActiveConns.
    1000.9071万 llRealignConn
    100.0929万d llHardwareError
    10.0092万d1 llMemCopySrc.
    10.0092万e9 llMemCopyDst
    10.0092万fe ll_buildRevision
    1000.9371万 llCreateRxBuffer
    10.0093万ad llCheckRxBuffers
    10.0093万dd llReplaceRxBuffers
    100.0941万d llPatchCM0
    1000.9431万 llSetupRATChanCompare
    1000.9465万 llRatChanCBack_A
    1000.9469万 llRatChanCBack_B
    100.0946万d llRatChanCBack_C
    1000.9471万 llRatChanCBack_D
    1000.9475万 llSetupScanDataEntryQueue
    10.0094万b9 llSetupInitDataEntryQueue
    10.0094万dd llSetupAdvDataEntryQueue
    1000.9509万 llSetupConnRxDataEntryQueue
    10.0095万b9移动TempTxDataEntries
    1000.9609万llProcessSlaveControlPacket
    1.0009万d5d llProcessMasterControlPacket
    1000a4f5 llAddTxDataEntry
    1000a551 RFHAL_InitDataQueue
    1000a55d RFHAL_FreeNextTxDataEntry
    1000a585 RFHAL_AllocDataEntryQueue
    1000a5a1 RFHAL_FreeDataEntryQueue
    1000a5a9 RFHAL_GetNextDataEntry
    1000a5ad RFHAL_GetTempDataEntry
    1000a5b1 RFHAL_NextDataEntryDone
    1000a5dd RFHAL_AllocDataEntry
    1000a621 RFHAL_FreeDataEntry
    1000a629 RFHAL_BuildRingBuffer
    1000a6c5 RFHAL_BuildDataEntryRingBuffer
    1000a745 RFHAL_BuildLinkedBuffer
    1000a7F1 HCI_BM_ALLO
    1000a7fd HCI_ValidConnTimeParams
    1000a839 HCI_SendDataPkt
    1000a875 HCI_DisconnectCmd
    1000a891 HCI_ReadRemoteVersionInfoCmd
    1000a8c5 HCI_SetEventMaskCmd
    1000a8F1 HCI_SetEventMaskPage2cmd
    1000a91d HCI_ResetCmd
    1000a959 HCI_ReadTransmitPowerLevelCmd
    1000a97d HCI_SetControllerToHostFlowCtrlCmd
    1000a9b9 HCI_HostBufferSizeCmd.
    1000a9F1 HCI_HostNumCompletedPktCmd
    1000aa51 HCI_ReadLocalVersionInfoCmd.
    1000aac1 HCI_ReadLocalSupportedCommandsCmd.
    1000aadd HCI_ReadLocalSupportedFeaturesCmd.
    1000ab05 HCI_ReadBDADRCmd.
    1000ab25 HCI_ReadRssiCmd
    1000ab61 HCI_LE_SetEventMaskCmd
    1000ab89 HCI_LE_ReadBufSizeCmd
    1000abc5 HCI_LE_ReadLocalSupportedFeaturesCmd.
    1000abe5 HCI_LE_SetRandomAddressCmd
    1000ac09 HCI_LE_SetAdvParamCmd
    1000ac41 HCI_LE_SetAdvDataCmd
    1000ac61 HCI_LE_SetScanRspDataCmd
    1000ac81 HCI_LE_SetAdvEnableCmd
    1000aca1 HCI_LE_ReadAdvChanTxPowerCmd
    1000acc5 HCI_LE_SetScanParamCmd.
    1000acF1 HCI_LE_SetScanEnableCmd
    1000ad11 HCI_LE_CreateConnCmd
    1000ad55 HCI_LE_CreateConnCancelCmd
    1000ad75 HCI_LE_ReadWhiteListSizeCmd.
    1000ada9 HCI_LE_ClearWhiteListCmd
    1000adc9 HCI_LE_AddWhiteListCmd
    1000adfd HCI_LE_RemoveWhiteListCmd
    1000ae21 HCI_LE_ConnUpdateCmd
    1000ae4d HCI_LE_SetHostChanClassificationCmd.
    1000ae6d HCI_LE_ReadChannelMapCmd
    1000ae95 HCI_LE_ReadRemoteUsedFeaturesCmd.
    1000af21 HCI_LE_RandCmd
    1000af71 HCI_LE_StartEncyptCmd
    1000af8d HCI_LE_LtkReqReplyCmd.
    1000afa9 HCI_LE_LtkReqNegReplyCmd.
    1000afc5 HCI_LE_ReadSupportedStatesCmd.
    1000b001 HCI_ReadAuthPayloadTimeoutCmd
    1000b041 HCI_WriteAuthPayloadTimeoutCmd.
    1000b079 HCI_LE_RemoteConnParamReqReplyCmd
    1000b0bd HCI_LE_RemoteConnParamReqNegReplyCmd.
    1000b0d9 HCI_LE_SetDataLenCmd
    1000b0f5 HCI_LE_ReadsudDefaultDataLenCmd
    1000b121 HCI_LE_WriteMUSEdDefaultDataLenCmd
    1000b141 HCI_LE_ReadMaxDataLenCmd
    1000b16d HCI_LE_AddDeviceToResolvingListCmd.
    1000b191 HCI_LE_RemoveDeviceFromResolvingListCmd.
    1000b1b1 HCI_LE_ClearResolvingListCmd
    1000b1d1 HCI_LE_ReadResolvingListSizeCmd.
    1000b1f5 HCI_LE_ReadPeerResolvableAddressCmd
    1000b22d HCI_LE_ReadLocalResolvableAddressCmd
    1000b24d HCI_LE_SetAddressResolutionEnableCmd
    1000b26d HCI_LE_SetResolvablePrivateAddressTimeoutCmd
    1000b289 HCI_LE_ReadLocalP256 PublicKeyCmd.
    1000b2bd HCI_LE_GenerateDHKeyCmd.
    1000b2e1 HCI_LE_TransmitterTestCmd
    1000b2fd HCI_LE_ReceiverTestCmd
    1000b31d HCI_LE_TestEndCmd
    1000b351 HCI_EXT_SetRxGainCmd
    1000b381 HCI_EXT_SetTxPowerCmd
    1000b3c1 HCI_EXT_OnePktPerEvtCmd
    1000b3f5 HCI_EXT_ClkDivOnHaltCmd
    1000b415 HCI_EXT_DeclareNvUsageCmd
    1000b495 HCI_EXT_SetLocalSupportedFeaturesCmd.
    1000b4b5 HCI_EXT_SetFastTxResponseTimeCmd
    1000b4d5 HCI_EXT_SetSlaveLatencyOverrideCmd
    1000b509 HCI_EXT_ModemTestTxCmd
    1000b529 HCI_EXT_ModemHopTestTxCmd
    1000b549 HCI_EXT_ModemTestRxCmd
    1000b569 HCI_EXT_EndModemTestCmd
    1000b5a1 HCI_EXT_SetBDADRCmd.
    1000b5d9 HCI_EXT_SetSCACmd.
    1000b5f9 HCI_EXT_EnablePTMCmd.
    1000b619 HCI_EXT_SetFreqTuneCmd
    1000b649 HCI_EXT_SaveFreqTuneCmd
    1000b669 HCI_EXT_SetMaxDtmTxPowerCmd
    1000b689 HCI_EXT_MapPmIoPortCmd
    1000b6a9 HCI_EXT_DisconnectImmedCmd.
    1000b6c9 HCI_EXT_PacketErrorRateCmd.
    1000b719 HCI_EXT_PERbyChanCmd
    1000b739 HCI_EXT_ExtendRfRangeCmd
    1000b76d HCI_EXT_HaltDuringRfCmd
    1000b78d HCI_EXT_AdvEventNoticeCmd
    1000b799 HCI_EXT_ConnEventNoticeCmd
    1000b7a5 HCI_EXT_BuildRevisionCmd
    1000b7F1 HCI_EXT_DelaySleepCmd
    1000b825 HCI_EXT_ResetSystemCmd.
    1000b851 HCI_EXT_OverlappedProcessingCmd.
    1000b871 HCI_EXT_NumComplPktsLimitCmd
    1000b891 HCI_EXT_GetConnInfoCmd
    1000b935 HCI_EXT_SetMaxDataLenCmd
    1000b95d LL_RandCrback
    1000b991 LL_EXT_SetRxGainBack
    1000b9a1 LL_EXT_SetTxPowerBack
    1000b9d9 LL_EXT_PacketErrorRateCback
    1000ba31 LL_EXT_ExtendRfRangeBack
    1000ba41 hciInitEventMasks
    1000ba8d HCI_DataBufferOverflowEvent
    1000bab1 HCI_NumOfCompletedPacketsEvent
    1000bb91 HCI_CommandCompleteEvent
    1000bc2d HCI_VendorSpecifcCommandCompleteEvent
    1000bca5 HCI_CommandStatusEvent
    1000bd51 HCI_SendCommandStatusEvent
    1000bd79 HCI_SendCommandCompleteEvent
    1000be21 HCI_SendControllerToHostEvent
    1000be71 LL_AuthPayloadTimeoutExpiredBack
    1000bee5 LL_RemoteConnParamReqCback
    1000bf65 LL_DataLengthChangeEventCback
    1000c015 LL_ReadLocalP256PublicKeyCompleteEventCback
    1000c0f9 LL_GenerateDHKeyCompleteEventCback
    1000c1c9 LL_EnhancedConnectionCompleteBack
    1000c415 LL_AdvReportBack
    1000c521 LL_ConnectionCompleteBack
    1000c695 LL_DisconnectCback
    1000c749 LL_ConnParamUpdateBack
    1000c825 LL_ReadRemoteUsedFeaturesCompleteBack
    1000c8ad LL_ReadRemoteVersionInfoCback
    1000c921 LL_EncLtkReqCback
    1000ca01 LL_EncChangeBack
    1000ca69 LL_EncKeyRefreshCback
    1000cb35 LL_DirectTestEndDoneBack
    1000cb69 SCALARMUL_INIT
    1000ccb9 SCALARMUL_CORE
    1000d08d SCALARMUL_FINAL
    1000d195 SCALARMUL
    1000d1b1 SAVEPOINT
    1000d1F1 GETBIT
    1000d205 GETDIGIT
    1000d255 GETDIGITL2R
    1000d2c5选择注册
    1000d2d5全二联
    1000d6e9 JACADD.
    1000d8e1反转
    1000da81 SQUAREMULTIPLYWORD
    1000db2d IMPORTLENGTH
    1000db31 IMPORTMODULUS
    1000db55 IMPORTOPERAND
    1000db95 EXPORTOPERAND
    1000dbb9 IMPORTDATA
    1000dbd5 SETOPERAND
    1000dbf1副本
    1000dc09零
    1000dc15编辑
    1000dc21 mSET
    1000dd25 zSET
    1000dd2d mINVK
    1000de81 zADD.
    1000dec9 zSUB
    1000df4d zMACC32
    1000dfd5 zSUB32
    1000e021 zADD32
    1000e075 zMULT32
    1000e0f9 MMULT
    1000e6c9 madd
    1000e7c5 mSUB
    1000e8c1输出
    1000eaed SM_Start配对
    1000eb91 SM_PasskeyUpdate
    1000ec91 smRegisterInitiator
    1000ec99 smRegisterResponder
    1000eca1 smLinkCheck
    1000ecdd smTimedOut
    1000eced smProcessDataMsg.
    1000edf9 smSendFailAndEnd
    1000ee25 smProcessEncryptChange
    1000eef1 smNextPairingState
    1000f01d smpProcessIncoming
    1000f05d smProcessPairingReq
    1000f0bd smStartEncryption
    1000f0d9 smGeneratePairingReqRsp
    1000f129 smGenerateConfirm
    1000f149 smGenerateRandMsg.
    1000f18d smSaveRemotePublicKeys
    1000f1bd smSendPublicKeys
    1000f215 smF5Wrapper
    1000f2b9 smGenerateDHKeyCheck
    1000f35d sm_allocateSCParameters
    1000f435 smSendDHKeyCheck
    1000f465 smGetECCKeys
    1000f501 sm_computeDHKey
    1000f551 SM_SetECCRegenerationCount
    1000f565 smIncrementEccKeyRecycleCount
    1000f58d smOobSCAuthentication
    1000f819 smDetermineIOCaps.
    1000f855 smPairingSendEncInfo
    1000f869 smPairingSendMasterID
    1000f899 smPairingSendIdentityInfo
    1000f8c1 smPairingSendIdentityAddrInfo
    1000f8fd smPairingSendSigningInfo
    1000f911 smFreePairingParams
    1000f985 smEnd配对
    1000f9cd smDetermineKeySize
    1000f9F1 smSetPairingReqRsp
    1000fa89 GATT_InitServer
    1000fb09 GATT_RegisterService
    1000fbc1 GATT_DeregisterService
    1000fc09 GTO_RegisterForReq
    1000fc11 GATT_VerifyReadPermissions
    1000fc59 GATT_VerifyWritePermissions
    1000fccd GATT_ServiceChangedInd.
    1000fd55 GATT_FindHandleUUID
    1000fdbd GATT_FindHandle
    1000fe05 GATT_FindNextAttr
    1000fead GATT_ServiceNumAttrs
    1000febd GATT_ServiceEncKeySize
    1000fedd GATT_SendRsp
    1000ffcd GATT指示
    1001.0045万 GATT通知
    10.01万ad gattServiceLastHandle
    10.01万c9 gattStoreServerInfo
    1.001001亿e9 gattServerProcessMsgCB
    100.1026万d gattProcessExchangeMTUReq
    1001.0271万 gattProcessFindInfoReq
    100.1039万d gattProcessFindByTypeValueReq
    10.0103万c1 gattProcessReadByTypeReq
    10.0103万f9 gattProcessReadReq
    1001.0421万 gattProcessReadMultiReq
    100.1049万d gattProcessReadByGrpTypeReq
    10.0104万e9 gattProcessWriteReq
    1001.0519万 gattParseReq
    100.1059万d gattProcessReq
    1001.0619万 gattProcessExecuteWriteReq
    100.1061万d gattFindService
    1001.0635万 gattGetServerStatus
    100.1065万d gattFindServerInfo
    1001.0685万 gattResetServerInfo
    100.1069万d gattServerStartTimer
    10.0106万b9 gattServerNotifyTxCB
    10.0106万e1 gattServerHandleTimerCB
    100.1071万d gattServerHandleConnStatusCB
    10.0107万b9 GATT_GetNextHandle
    10.0107万d1 gattServApp_SetNumPreparareWrites
    1001.0881万 gattServApp_RegisterServiceCBs
    10.0108万c1 gattServApp_DeregisterServiceCBs
    10.0108万f9 gattServApp_FindServiceCBs
    1001.0911万 gattServApp_ProcessMsg.
    1.001万a7d gattServApp_ProcessFindByTypeValueReq
    1.001万cd5 gattServApp_buildReadByTypeRsp
    1.001万d5d gattServApp_ProcessReadReq
    1.001万ddd gattServApp_ProcessReadBlobReq
    1.001万ea9 gattServApp_ProcessReadMultiReq
    1.001万fd5 gattServApp_ProcessReadByGrpTypeReq
    1001.1165万 gattServApp_ProcessWriteReq
    1001.1205万 gattServApp_ProcessPrepareWriteReq
    10.0112万d9 gattServApp_ProcessExecuteWriteReq
    100.1134万d gattServApp_IsWriteLong
    1001.1409万 gattServApp_FindPrepareWriteQ
    100.1143万d gattServApp_PrepareWriteQInUse.
    1001.1489万 gattServApp_FindReadAttrCB
    1001.1499万 gattServApp_FindWriteAttrCB
    10.0114万d5 gattServApp_FindAuthorizeAttrCB
    10.0114万e5 GAGE_TerminateLinkReq
    100.1157万d GAGE_UpdateLinkParamReq
    1001.1605万 GAGE_UpdateLinkParamReqReply
    10.0116万ad GAGE_Signable
    1001.1701万 gap_authenticate
    10.0117万c1 GAGE_TerminateAuth
    10.0117万ed GAGE_PasskeyUpdate
    1001.1829万 GAGE_PasscodeUpdate
    100.1187万d Gap_Bond
    1001.1919万 gapUpdateConnSignCounter
    100.1194万d gapSendSignUpdateEvent
    1001.1985万 gapSendSlaveSecurityReqEvent
    10.0119万e1 gapProcessConnectionCompleteEvt.
    1.0011万ac1 gapProcessRemoteConnParamReqEvt.
    1.0011万b85 sendEstLinkEvent
    1.0011万bf9 sendTerminateEvent
    1.0011万c35 gapSendLinkUpdateEvent
    1.0011万c8d断开下一步
    1.0011万cb5 sendAuthEvent
    1.0011万dc1 gapFreeAuthLink
    1.0011万e01 gapFreeEstLink
    1.0011万e25 gapSendBondCompleteEvent
    1.0011万e81 gapSendPairingReqEvent
    1.0011万efd gapPasskeyNeedCB
    1.0011万f75 gapPairingCompleteCB
    10.012万F1 gapRegisterCentralConn
    10.012万f9 gapRegisterPeripheralConn
    1001.2139万 SM_Encrypt
    100.1217万d smStartRspTimer
    10.0121万a5 smStopRspTimer
    10.0121万b9 SM_D1
    1001.2205万 sm_dm
    100.1225万d sm_c1new
    100.1234万d SM_XOR
    1001.2365万 SM_s1
    10.0123万b1 smGenerateRandBuf
    10.0123万e1 smAuthReqToUint8.
    1001.2409万 smUint8ToAuthReq
    1001.2445万 smEncrypt
    1001.2459万 smEncryptLocal
    1001.2465万 SM_GenerateAuthenSig
    1001.2521万 SM_VerifyAuthenSig
    1001.2625万 SM_CMAC
    1001.2789万 Generate_sub项
    100.1284万d XOR_128
    1001.2861万填充
    100.1287万d leftshift_onebit
    1001.2895万 SM_F4
    1001.2961万 SM_F5
    1.0012万b01 SM_F6
    1.0012万c45 sm_g2
    1.0012万dfd sm_ResponseInit
    1.0012万e29 smResponseProcessLTKReq
    1.0012万f65 smpResponseProcessIncoming
    1001.3061万 smpResponseProcessPairingReq
    1001.3091万 smpResponderSendPairRspEvent
    1001.3165万 smpResponderProcessPairingConfirm
    10.0131万ed smpResponderProcessPairingRandom
    1001.3335万 smpResponderProcessPairingPublicKey
    1001.3365万 smFinishPublicKeyExchange
    1001.3451万 smpResponderProcessPairingDHKeyCheck
    10.0134万cd smResponderAuthStage两个
    100.1353万d smpResponseProcessEncryptionInformation
    1001.3589万 smpResponseProcessMasterID
    10.0135万fd smpResponseProcessIdentityInfo
    1001.3641万 smpResponseProcessIdentityAddrInfo
    10.0136万a1 smpResponseProcessSigningInfo
    10.0136万F1 smResponseSendNextKeyInfo
    1001.3931万 llSlave_TaskEnd
    1.0013万b75 llSetupNextSlaveEvent
    1.0013万f05 llProcessSlaveControlProcedures
    1001.4435万 llCheckForLstoDuringSL
    1001.4459万 GAGE_MakeDiscoverable
    1001.4509万 GAGE_UpdateAdvertisingData
    1001.4599万 GAGE_EndDiscoverable
    10.0145万e1 GAGE_SetAdvToken
    1001.4655万 GAGE_GetAdvToken
    1001.4679万 GAGE_RemoveAdvToken
    1001.4695万 GAGE_UpdateAdvTokens
    10.0146万b1 GAGE_PeriDevMgrInit
    100.147万d gapPeriProcessHCICmdCompleteEvt.
    100.1476万d gapAllocAdvRecs.
    10.0147万bd gapSetAdvParams
    1001.4881万 gapSetAdvParamsStatus
    10.0148万b1 gapWriteAdvEnableStatus
    1001.4951万 gapWriteAdvDataStatus
    100.1495万d gapProcessAdvertisingEvt.
    10.0149万b5 gapProcessAdvertisingTimeout
    10.0149万c9 gapConnectedCleanUp广告
    10.0149万fd gapAddAdvToken
    1.0014万a39 gapDeleteAdvToken
    1.0014万a71 gapFindAdvToken
    1.0014万a89 gapCalcAdvTokenDataLen
    1.0014万abd gapBuildADTokens
    1.0014万ba1 gapSendMakeDiscEvent
    1.0014万be5 gapSendAdDataUpdateEvent
    1.0014万c1d gapSendEndDiscoverableEvent
    1.0014万c51 gapFreeAdvertState
    1.0014万c75 isLimitedDiscoverableMode
    1.0014万cd1 l2capParseSignalHdr
    1.0014万ce5 l2capBuildSignalHdr
    1.0014万cf9 l2capSendReq
    1.0014万d75 l2capSendCmd
    1.0014万e05 l2capStoreFCPkt
    1.0014万e2d l2capSendPkt
    1.0014万e69 l2capSendFCPkt
    1.0014万eb9 l2capEncapSendData
    1.0014万f51 l2capParsePacket
    1.0014万fad L2CAP_BuildCmdlReject
    1.0014万fed l2capParseCmdlReject
    100.1502万d l2capBuildParamUpdateReq
    1001.5059万 L2CAP_ParseParamUpdateReq
    1001.5095万 L2CAP_BuildParamUpdateRsp
    1001.5099万 l2capParseParamUpdateRsp
    10.015万a5 l2capBuildInfoReq
    10.015万b9 L2CAP_ParseInfoReq
    10.015万d5 L2CAP_BuildInfoRsp
    1001.5125万 l2capParseInfoRsp
    1001.5189万 l2capNotifyData
    10.0151万dd l2capNotifySignal
    1001.5239万 l2capAllocChannel
    1001.5269万 l2capAllocConnChannel
    10.0152万a9 l2capFreeChannel
    10.0152万bd l2capFindLocalId
    10.0152万e9 l2capStartTimer
    1001.5309万 l2capStopTimer
    1001.5321万 l2capHandleTimerCB
    100.1534万d l2capNotifyEvent
    1001.5385万 l2capHandleRxError
    1001.5391万 l2capDisconnectAllChannels
    10.0153万fd l2capFreePendingPkt
    100.1542万d L2CAP_BM_ALLO
    10.0154万a9 L2CAP_SetParamValue
    10.0154万ad L2CAP_GetParamValue
    10.0154万b1 llDirAdv_TaskEnd
    1001.5559万 llAdv_TaskConnect
    1.0015万a61 llAdv_TaskEnd
    1.0015万b75 llAdv_TaskAbort
    1.0015万be5 ATT_ParsePacket
    1.0015万c49 ATT_BuildErrorRsp
    1.0015万c5d ATT_ParseErrorRsp
    1.0015万c7d ATT_BuildExchangeMTUReq
    1.0015万c81 ATT_ParseExchangeMTUReq
    1.0015万c8d ATT_BuildExchangeMTURsp
    1.0015万ca1 ATT_ParseExchangeMTURsp
    1.0015万cb9 ATT_BuildFindInfoReq
    1.0015万cbd ATT_ParseFindInfoReq
    1.0015万cc9 ATT_BuildFindInfoRsp
    1.0015万ce1 ATT_ParseFindInfoRsp
    1.0015万d25 ATT_BuildFindByTypeValueReq
    1.0015万d41 ATT_ParseFindByTypeValueReq
    1.0015万d89 ATT_BuildFindByTypeValueRsp
    1.0015万d91 ATT_ParseFindByTypeValueRsp
    1.0015万da5 ATT_BuildReadByTypeReq
    1.0015万de5 ATT_ParseReadByTypeReq
    1.0015万e29 ATT_BuildReadByTypeRsp
    1.0015万e2d ATT_ParseReadByTypeRsp
    1.0015万e4d ATT_BuildReadReq
    1.0015万e51 ATT_ParseReadReq
    1.0015万e6d ATT_BuildReadRsp
    1.0015万e71 ATT_ParseReadRsp
    1.0015万e75 ATT_ParseWriteReq
    1.0015万ea1 ATT_BuildWriteReq
    1.0015万ea5 ATT_ParseWriteRsp
    1.0015万eb1 ATT_BuildReadBlobReq
    1.0015万ed1 ATT_ParseReadBlobReq
    1.0015万ef9 ATT_BuildReadBlobRsp
    1.0015万efd ATT_ParseReadBlobRsp
    1.0015万f0d ATT_BuildReadMultiReq
    1.0015万f15 ATT_ParseReadMultiReq
    1.0015万f2d ATT_BuildReadMultiRsp
    1.0015万f31 ATT_ParseReadMultiRsp
    1.0015万f35 ATT_BuildReadByGrpTypeRsp
    1.0015万f49 ATT_ParseReadByGrpTypeRsp
    1.0015万f75 ATT_BuildPrepareWriteReq (ATT_BuildPrepareWriteReq
    1.0015万f79 ATT_ParsePrepareWriteReq
    1.0015万fa1 ATT_BuildPrepareWriteRsp
    1.0015万fc1 ATT_ParsePrepareWriteRsp
    1.0015万ff5 ATT_BuildExecuteWriteReq
    1.0015万ffd ATT_ParseExecuteWriteReq
    1001.6011万 ATT_ParseExecuteWriteRsp
    100.1601万d ATT_BuildHandleValueInd.
    1001.6035万 ATT_ParseHandleValueInd.
    1001.6065万 ATT_ParseHandleValueCfm.
    1001.6071万 attSendMsg.
    1001.6111万 ATT_CompareUUID
    1001.6179万 ATT_ConvertUIDto128
    10.0161万a5 ATT_ConvertUIDto16
    10.0161万e9 ATT_UpdateMTU
    100.1621万d ATT_GetMTU
    100.1624万d ATT_SetParamValue
    1001.6251万 ATT_GetParamValue
    1001.6255万 smpBuildPairingReq
    1001.6269万 smpBuildPairingRsp
    100.1627万d smpBuildPairingReqRsp
    100.1632万d smpParsePairingReq
    100.164万d smpBuildPairingConfirm
    1001.6429万 smpParsePairingConfirm
    1001.6445万 smpBuildPairingRandom
    1001.6461万 smpParsePairingRandom
    100.1647万d smpBuildPairingFailed
    100.1648万d smpParsePairingFailed
    10.0164万ad smpBuildEncInfo
    10.0164万c9 smpParseEncInfo
    10.0164万e5 smpBuildMasterID
    1001.6511万 smpParseMasterID
    1001.6549万 smpBuildIdentityInfo
    1001.6579万 smpBuildIdentityAddrInfo
    100.1659万d smpParseIdentityInfo
    10.0165万c9 smpParseIdentityAddrInfo
    10.0165万ed smpBuildSigningInfo
    1001.6609万 smpParseSigningInfo
    1001.6625万 smpBuildSecurityReq
    1001.6649万 smpParseSecurityReq
    100.1666万d smpBuildPairingPublicKey
    100.1669万d smpParsePairingPublicKey
    10.0166万d9 smpBuildPairingDHKeyCheck
    10.0166万f5 smpParsePairingDHKeyCheck
    100.167万d smpBuildKeypressNoti
    1001.6729万 smpParseKeypressNoti
    100.1673万d smSendSMMsg.
    1001.6795万 ecc_allocWorkzone
    100.1679万d ecc_setWin
    10.0167万a5 eccRom_signHash
    1001.6941万 eccRom_verifyHash
    1.0016万c1d eccRom_genKeys
    1.0016万c65 eccRom_genSharedSecret
    1.0016万cb5 LL_PRIV_Init
    1.0016万d29 LL_PRIV_Ah
    1.0016万d71 LL_PRIV_GenerateRPA
    1.0016万dd1 LL_PRIV_GenerateNRPA
    1.0016万e1d LL_PRIV_GenerateRSA
    1.0016万e59 LL_PRIV_ResolveRPA
    1.0016万e89 LL_PRIV_IsRPA
    1.0016万e9d LL_PRIV_ISNRPA
    1.0016万eb5 LL_PRIV_IsIDA
    1.0016万ecd LL_PRIV_IsResolvable
    1.0016万f01 LL_PRIV_IsZeroIRK
    1.0016万f19 LL_PRIV_FindPeerInRL
    1.0016万f8d LL_PRIV_UpdateRL
    1.0016万fc5 LL_PRIV_NumberPeerRLEntries
    1.0016万fe5 LL_PRIV_SetupPrivacy
    1.0016万ffd LL_PRIV_TeardownPrivacy
    1001.7021万 LL_PRIV_ClearExtWL
    1001.7051万 LL_PRIV_UpdateExtWLEntry
    10.017万d9 LL_PRIV_FindExtWLEntry
    1001.7139万 LL_PRIV_SetWLSize.
    100.1714万d LL_ENC_Init
    10.0171万ad LL_ENC_ReverseBytes
    10.0171万cd LL_ENC_GeneratePseudoRandNum
    10.0171万e5 LL_ENC_GenerateTrueRandNum
    100.172万d LL_ENC_GENDeviceSKD
    1001.7221万 LL_ENC_GENDeviceIV
    1001.7235万 LL_ENC_GenerateNaonce
    1001.7259万 LL_ENC_LoadKey
    100.1729万d LL_ENC_AES128_Encrypt
    10.0172万f9 LL_ENC_AES128_Decrype.
    1001.7361万 LL_ENC_EncryptMsg.
    1001.7485万 LL_ENC_Encrypt
    10.0174万f9 LL_ENC_Decrype.
    10.0175万d9 sm_Init
    1001.7615万 SM_ProcessEvent
    10.0176万c1 smProcessOSALM
    1001.7715万 smProcessHCIBLEEventCode
    1001.7765万 smProcessHCIBLEMetaEventCode
    10.0178万bd sm_RegisterTask
    10.0178万c5 SM_GetEccKeys.
    100.179万d SM_GetDHKey
    1001.7989万 SM_GetScConfirmOob
    10.0179万c9 L2CAP_Init
    1.0017万a51 L2CAP_ProcessEvent
    1.0017万ad9 l2capProcessOSALM
    1.0017万b29 L2CAP_RegisterFlowCtrlTask
    1.0017万b31 l2capProcessRxData
    1.0017万bd l2capProcessSignal
    1.0017万c3d l2capProcessRsp
    1.0017万cc9 l2capProcessReq
    1.0017万d25 l2capHandleConnStatusCB
    1.0017万d7d链接DB_Init
    1.0017万de5 linkDB_Register
    1.0017万e05链接DB_ADD
    1.0017万e91 linkDB_Remove
    1.0017万ed5 linkDB_Update
    1.0017万f09 linkDB_getinfo
    1.0017万f55 linkDB_find
    1.0017万f7d linkDB_FindFirst
    1.0017万fb1 linkDB_State
    1.0017万fd5链接DB_role
    1.0017万ff1 linkDB_NumActive
    1001.8019万 linkDB_NumConns
    1001.8021万 linkDB_UpdateMTU
    100.1803万d链接DB_MTU
    100.1804万d链接DB_Auten
    10.018万b5 linkDB_PerformFunc.
    10.018万e5 linkDB_reportStatusChange
    1001.8105万 linkDB_SecurityModeSCOnly
    1001.8121万 gattRegisterServer
    1001.8129万 gattRegisterClient
    1001.8131万 GATT_RegisterForMsgs.
    1001.8139万 GATT_SetHostToAppFlowCtrl
    100.1814万d GATT_AppCompletedMsg.
    100.1817万d GATT初始化
    10.0181万ad GATT_ProcessEvent
    10.0181万e1 gattProcessOSALM
    10.0181万f5 gattProcessRxData
    10.0182万a9 gattNotifyEvent
    100.183万d gattStartTimer
    1001.8321万 gattStopTimer
    1001.8341万 GATT通知事件
    100.1835万d GATT_UpdateMTU
    100.1838万d gattSendFlowCtrlEvt.
    10.0183万b1 gattGetPayload
    1001.8405万 GATT_BM_ALoc
    1001.8489万 GATT_BM_FREE
    10.0184万bd GAGE_SetParamValue
    10.0184万f5 GAGE_GetParamValue
    1001.8505万 GAGE_ParamsInit
    1001.8539万 GAGE_SecParamsInit
    10.0185万a5 GAGE_GetIRK
    10.0185万ad GAGE_ConfigDeviceAddr
    1001.8679万 gapReadBD_ADDRStatus
    10.0186万bd gapReadBufSizeCmdStatus
    1001.8709万 gapProcessNewAddr.
    1001.8741万 gapAddAddAddrAdj
    1001.8769万 gapHost2CtrlOwnAddrType
    1001.8775万 gapGetSRK.
    100.1877万d gapGetSignCounter
    1001.8785万 gapIncSignCounter
    10.0187万a5 gapGetDevAddressMode
    10.0187万ad gapGetDevAddress
    10.0187万e9 gapSendDeviceInitToneEvent
    1001.8851万 Gap_RegisterForMsgs.
    1001.8859万 GAGE_INit
    1001.8879万 GAGE_ProcessEvent
    10.0188万fd GAGE_NumActiveConnections
    1001.8909万 gapProcessOSALM
    1001.8971万 gapProcessBLEEvents
    1.0018万a11 gapProcessHCICmdCompleteEvt.
    1.0018万ab5 gapProcessCommandStatusEvt.
    1.0018万b09 gapProcessConnEvt.
    1.0018万b41 gapRegisterCentral
    1.0018万b49 gapRegisterPeripheral
    1.0018万b51 GAGE_RegisterBondMgrCB
    1.0018万b81 WL_Init
    1.0018万bb1 wl_clear
    1.0018万床WL_ClearEntry
    1.0018万c11 WL_GetSize
    1.0018万c25 WL_GetNumFreeEntries
    1.0018万c51 WL_FindEntry
    1.0018万ca9 WL_AddEntry
    1.0018万d41 WL_RemoveEntry
    1.0018万dc1 WL_SetWlIgnore
    1.0018万df9 WL_ClearIgnoreList
    1.0018万e31 ATT_RegisterServer
    1.0018万e39 ATT_ErrorRsp
    1.0018万e59 ATT_ExchangeMTURSP
    1.0018万e81 ATT_FindInfoRsp
    1.0018万ebd ATT_FindByTypeValueRsp
    1.0018万ef1 ATT_ReadByTypeRsp
    1.0018万f2d ATT_ReadRsp
    1.0018万f51 ATT_ReadBlobRsp
    1.0018万f91 ATT_ReadMultiRsp
    1.0018万fbd ATT_ReadByGrpTypeRsp
    1.0018万已馈电ATT_WriteRsp
    1.0018万ffd ATT_PreparareWriteRsp
    1001.9025万 ATT_ExecuteWriteRsp
    1001.9045万 ATT_HandleValueNoti
    1001.9065万 ATT_HandleValueInd.
    1001.9099万 attSendRspMsg.
    10.019万d9 L2CAP_RegisterApp
    1001.9105万 L2CAP_SendData
    1001.9185万 L2CAP_CmdletReject
    100.1919万d L2CAP_InfoReq
    10.0191万c5 L2CAP_ConnParamUpdateReq
    1001.9209万 L2CAP_ConnParamUpdateRsp
    1001.9231万 L2CAP_SetControllerToHostFlowCtrl
    1001.9275万 L2CAP_HostNumCompletedPkts.
    1001.9291万 L2CAP_SetBufSize
    100.1929万d L2CAP_GetMTU
    10.0192万b9 L2CAP_SetUserConfig
    10.0192万bd GAGE_SendSlaveSecurityRequest
    100.193万d GAGE_PeriConnRegister
    100.1933万d gapPeriProcessConnEvt.
    1001.9385万 gapPeriProcessConnUpdateCmdStatus
    1001.9399万 gapPeriProcessConnUpdateCompleteEvt.
    10.0193万dd gapL2capConnParamUpdateReq
    1001.9401万 gapPeriProcessSignalEvt.
    1001.9445万 HCI_ReverseBytes
    1001.9465万 LL_RxDataCompleteBack
    1001.9525万 gapIsAdvertising
    1001.9529万 gapIsScanning
    1001.9535万 gapValidADType
    1001.9549万 gapFindADType
    10.0195万a1 gapSetState
    10.0195万ad gapClrState
    10.0195万dc长焦耳
    10.0196万b8支持CmdsTable
    100.1973万c LUTSTATE
    10.0197万b1 llGetCurrentTime.
    10.0197万b9 llTimeCompare
    10.0197万dd时间增量
    1001.9808万 NIST_Curve_P256_p
    100.1982万c NIST_Curve_P256_r
    1001.985万 NIST_Curve_P256_A
    1001.9874万 NIST_Curve_P256_b
    1001.9898万 NIST_Curve_P256_GX
    10.0198万bc NIST_Curve_P256_Gy
    1001.992万 IOCapMatrix
    100.1993万d llCalcScaFactor
    1001.997万 LUTOPSIGN
    1001.9988万 LUTC
    10.0199万a0 LUTSE
    10.0199万b8 LUTINCI
    10.0199万d0 btBaseUUID
    10.0199万f0 SCA
    1.0019万a00 const_rb
    1.0019万a10高级Evt2cmd
    1.0019万a1d __exit
    1.0019万a28 AdvEvt2State.
    1.0019万a30 LUTOPCODE
    1.0019万a40 AdvChan
    1.0019万afc romRev
    1.0019万afd __checksum_end
    1.0019万afe __checksum
    1.0019万b00 ti_SysBIOS_ROM_cortexm_cc26xx_R2_CC26xx_revision__C
    1.0019万b05 ti_SysBIOS_KNL_semaphore_Pend__E
    1.0019万bf9 ti_SysBIOS_KNL_Event_Pend__E
    1.0019万ce1 ti_SysBIOS_KNL_Task_Instance_init__E
    1.0019万dad ti_SysBIOS_KNL_Mailbox_Instance_init__E
    1.0019万e75 ti_SysBIOS_family_arm_m3_Hwi_postInit__i
    1.0019万f25 ti_SysBIOS_family_arm_cc26xx_Timer_周期Stub__E
    1.0019万fc1 ti_SysBIOS_family_arm_m3/hwi_instance_init__E
    1001a059 ti_SysBIOS_KNL_Task_Instance_Finaling__E
    1001a0ed ti_SysBIOS_KNL_Mailbox_post__E
    1001a171 ti_SysBIOS_family_arm_m3_Hwi_initNVIC__E
    1001a1F1 ti_SysBIOS_KNL_Clock_startI__E
    1001a271 ti_SysBIOS_KNL_Task_postInit__i
    1001a2F1 ti_SysBIOS_KNL_Clock_WalkQueueDynamic__E
    1001a369 ti_SysBIOS_KNL_Clock_workFunction__E
    1001a3e1 ti_SysBIOS_KNL_semaphore_post_E
    1001a455 ti_SysBIOS_KNL_Event_POST__E
    1001a4c5 ti_SysBIOS_KNL_Mailbox_Instance_Finality__E
    1001a535 ti_SysBIOS_KNL_Mailbox_Pend__E
    1001a5a5 ti_SysBIOS_KNL_Task_Sleep__E
    1001a615 ti_SysBIOS_堆 叠_HeapMem_allocUnprotected__E
    1001a683 ti_SysBIOS_BIOS_LinkedWithIncorrectBootLibrary__E
    1001a685 ti_SysBIOS_KNL_semaphore_instance_init__E
    1001a6ed ti_SysBIOS_KNL_Swi_restoreHWi__E
    1001a755 ti_SysBIOS_family_arm_m3_Hwi_instance_finaling__E
    1001a7b9 ti_SysBIOS_family_arm_m3_HWI_Object__create__S
    1001a81d ti_SysBIOS_family_arm_m3/hwi_dispatchC__i
    1001a881 ti_SysBIOS_hal _HWI_CREATE
    1001a8e5 ti_SysBIOS_family_arm_m3_Hwi_create
    1001a945 ti_SysBIOS_KNL_Mailbox_create
    1001a9a5 ti_SysBIOS_KNL_Swi_instance_init__E
    1001aa05 ti_SysBIOS_KNL_Task_Module_Startup__E
    1001aa61 ti_SysBIOS_KNL_Task_startCore__E
    1001aabd ti_SysBIOS_family_arm_m3_Hwi_construct
    1001ab15 ti_SysBIOS_堆 叠_HeapMem_alloc__E
    1001ab6d ti_SysBIOS_堆 叠_HeapMem_freeUnprotected__E
    1001abc5 ti_SysBIOS_KNL_Mailbox_construct
    1001ac1d ti_SysBIOS_KNL_Swi_create
    1001ac75 ti_SysBIOS_KNL_Swi_run__i
    1001accd ti_SysBIOS_KNL_Task_create
    1001ad25 ti_SysBIOS_KNL_Swi_schedule__i
    1001ad79 ti_SysBIOS_KNL_Swi_construct
    1001adc9 ti_SysBIOS_KNL_Swi_runLoop__i
    1001ae19 ti_SysBIOS_KNL_Task_Construct
    1001ae69 ti_SysBIOS_KNL_Task_schedule__i
    1001aeb5 ti_SysBIOS_family_arm_m3_Hwi_Module_startup__E
    1001aefd ti_SysBIOS_States_HeapMem_getStats__E
    1001af45 ti_SysBIOS_family_arm_m3_Hwi_disableInterrupt__E
    1001af45 ti_SysBIOS_hal _HWI_HWiProxy_DisableInterrupti__E
    1001af45 ti_SysBIOS_hal _HWI_DisableInterrupti_E
    1001af89 ti_SysBIOS_family_arm_m3_Hwi_enableInterrupt__E
    1001af89 ti_SysBIOS_hal _HWI_HwiProxy_enableInterrupt__E
    1001af89 ti_SysBIOS_hal _Hwi_enableInterrupt__E
    1001afcd ti_SysBIOS_KNL_Mailbox_Module_Startup__E
    1001b011 ti_SysBIOS_KNL_Swi_post__E
    1001b055 ti_SysBIOS_KNL_Task_allBlockedFunction__i
    1001b099 ti_SysBIOS_family_arm_m3/hwi_getStackInfo__E
    1001b099 ti_SysBIOS_hal _HWI_HwiProxy_getStackInfo__E
    1001b099 ti_SysBIOS_hal _HWI_getStackInfo__E
    1001b0d9 ti_SysBIOS_KNL_Task_Yone__E
    1001b119 ti_SysBIOS_KNL_Task_Exit__E
    1001b153 ti_SysBIOS_Gates_GateHwi_instance_init__E
    1001b155 ti_SysBIOS_family_arm_m3/TaskSupport_start__E
    1001b155 ti_SysBIOS_KNL_Task_SupportProxy_start__E
    1001b18d ti_SysBIOS_堆 叠_HeapMem_Instance_init__E
    1001b1c5 ti_SysBIOS_KNL_Clock_Instance_init__E
    1001b1fd ti_SysBIOS_KNL_Clock_create
    1001b235 ti_SysBIOS_堆 叠_HeapMem_init__i
    1001b269 ti_SysBIOS_KNL_Clock_construct
    1001b29d ti_SysBIOS_KNL_Clock_getTicks__E
    1001b2d1 ti_SysBIOS_KNL_semaphore_create
    1001b305 ti_SysBIOS_KNL_Swi_RESTORE__E
    1001b339 ti_SysBIOS_KNL_Task_blockI__E
    1001b36d ti_SysBIOS_Gates_GateMutex_Object__create__S
    1001b39d ti_SysBIOS_Gates_GateMutex_create
    1001b3cd ti_SysBIOS_Gates_GateMutex_enter__E
    1001b3fd ti_SysBIOS_堆 叠_HeapMem_FREE__E
    1001b42d ti_SysBIOS_KNL_Event_CREATE
    1001b45d ti_SysBIOS_KNL_semaphore_construct
    1001b48d ti_SysBIOS_KNL_Task_processVitalTaskFlag__i
    1001b4bd ti_SysBIOS_family_arm_cc26xx_Timer_postInit__i
    1001b4e9 ti_SysBIOS_family_arm_cc26xx_Timer_startup__E
    1001b4e9 ti_SysBIOS_KNL_Clock_TimerProxy_Startup__E
    1001b515 ti_SysBIOS_family_arm_m3_Hwi_Object__Get__S
    1001b541 ti_SysBIOS_Gates_GateMutex_construct
    1001b56d ti_SysBIOS_Hal_Hwi_initStack
    1001b599 ti_SysBIOS_堆 叠_HeapMem_Object__create_S
    1001b5c5 ti_SysBIOS_堆 叠_HeapMem_Object__Get__S
    1001b5F1 ti_SysBIOS_KNL_Event_construct
    1001b61d ti_SysBIOS_KNL_Event_PendTimeout__i
    1001b649 ti_SysBIOS_KNL_Mailbox_Object__Get__S
    1001b675 ti_SysBIOS_KNL_Mailbox_postInit__i
    1001b6a1 ti_SysBIOS_KNL_Queue_construct
    1001b6cd ti_SysBIOS_KNL_Queue_create
    1001b6f9 ti_SysBIOS_KNL_semaphore_pendTime__i
    1001b725 ti_SysBIOS_KNL_Swi_Object__Get__S
    1001b751 ti_SysBIOS_KNL_Task_unblockI__E
    1001b77d ti_SysBIOS_family_arm_cc26xx_TimestampProvider_get64__E
    1001b77d xdc_runtimestamp_SupportProxy_get64__E
    1001b77d xdc_runtimestamp_get64__e.
    1001b7a5 ti_SysBIOS_KNL_Clock_addi__E
    1001b7cd ti_SysBIOS_KNL_semaphore_instance_finalize __E
    1001b7f5 ti_SysBIOS_KNL_Task_Restore__E
    1001b81d ti_SysBIOS_hal _Hwi_instance_init__E
    1001b843 ti_SysBIOS_KNL_Clock_logTick__E
    1001b845 ti_SysBIOS_family_arm_cc26xx_Timer_Module_Startup__E
    1001b869 ti_SysBIOS_Gates_GateHWI_Object__create__S
    1001b88d ti_SysBIOS_RTsGateProxy_Object__delete__S
    1001b88d ti_SysBIOS_Gates_GateMutex_Object__delete__S
    1001b88d ti_SysBIOS_堆 叠_HeapMem_Module_GateProxy_Object__delete__S
    1001b8b1 ti_SysBIOS_KNL_Clock_Object__delete__S
    1001b8d5 ti_SysBIOS_KNL_semaphore_Object__delete__S
    1001b8f9 ti_SysBIOS_family_arm_cc26xx_Timer_Module__startupDone__S
    1001b8f9 ti_SysBIOS_KNL_Clock_TimerProxy_Module__startupDone__S
    1001b919 ti_SysBIOS_family_arm_cc26xx_TimestampProvider_Module_Startup__E
    1001b939 ti_SysBIOS_family_arm_m3_Hwi_Module__startupDone__S
    1001b939 ti_SysBIOS_hal _HWI_HwiProxy_Module__startupDone__S
    1001b959 ti_SysBIOS_family_arm_m3/HWI_Object__delete__S
    1001b959 ti_SysBIOS_hal _HwiProxy_Object__delete__S
    1001b979 ti_SysBIOS_family_arm_m3_Hwi_excHandler__i
    1001b999 ti_SysBIOS_Gates_GateHWI_Handl__label__S
    1001b999 XDC_Runtime_System_Module_GateProxy_Handl__S
    1001b9b9 ti_SysBIOS_Gates_GateHWI_Object__delete__S
    1001b9b9 XDC_runtime系统模块GateProxy_Object__delete__S
    1001b9d9 ti_SysBIOS_BIOS_RtsGateProxy_Handl__label__S
    1001b9d9 ti_SysBIOS_Gates_GateMutex_Handl__label__S
    1001b9d9 ti_SysBIOS_堆 叠_HeapMem_Module_GateProxy_Handl__label__S
    1001b9f9 ti_SysBIOS_Gates_GateMutex_Object__析 构t__S
    1001ba19 ti_SysBIOS_hal _HWI_Object__delete__S
    1001ba39 ti_SysBIOS_堆 叠_HeapMem_Handl__label__S
    1001ba39 XDC_runtime内存HeapProxy_Handl__label__S
    1001ba59 ti_SysBIOS_堆 叠_HeapMem_Object__delete__S
    1001ba59 XDC_runtime内存HeapProxy_Object__delete__S
    1001ba79 ti_SysBIOS_KNL_Clock_Module_Startup__E
    1001ba99 ti_SysBIOS_KNL_Clock_Object__析 构t__S
    1001bab9 ti_SysBIOS_KNL_Clock_stop__E
    1001bad9 ti_SysBIOS_KNL_Event_Object__delete__S
    1001baf9 ti_SysBIOS_KNL_Event_checkEvents__i
    1001bb19 ti_SysBIOS_KNL_Idle_run__E
    1001bb39 ti_SysBIOS_KNL_Mailbox_Object__delete__S
    1001bb59 ti_SysBIOS_KNL_Queue_Object__delete__S
    1001bb79 ti_SysBIOS_KNL_Queue_Object__Get__S
    1001bb99 ti_SysBIOS_KNL_semaphore_Object__析 构t__S
    1001bbb9 ti_SysBIOS_KNL_Swi_Object__delete__S
    1001bbd9 ti_SysBIOS_KNL_Task_Object__delete__S
    1001bbf9 ti_SysBIOS_KNL_Task_Object__Get__S
    1001bc19 ti_SysBIOS_KNL_Task_restoreHWi__E
    1001bc39 ti_SysBIOS_family_arm_m3_Hwi_Object__析 构t__S
    1001bc55 ti_SysBIOS_family_arm_m3_Hwi_setPriority__E
    1001bc71 ti_SysBIOS_Gates_GateMutex_Instance_init__E
    1001bc8d ti_SysBIOS_hal _HWI_HWiProxy_create
    1001bca9 ti_SysBIOS_KNL_Clock_scheduleNextTick__E
    1001bcc5 ti_SysBIOS_KNL_Event_Object__析 构t__S
    1001bce1 ti_SysBIOS_KNL_Mailbox_Object__析 构t__S
    1001bcfd ti_SysBIOS_KNL_Queue_Object__析 构t__S
    1001bd19 ti_SysBIOS_KNL_Queue_Get__E
    1001bd35 ti_SysBIOS_KNL_Queue_Put __E
    1001bd51 ti_SysBIOS_KNL_Swi_Object__DISASTT__S
    1001bd6d ti_SysBIOS_KNL_Task_Object__析 构t__S
    1001bd89 ti_SysBIOS_KNL_Task_enter__i
    1001bda5 ti_SysBIOS_KNL_Task_SleepTimeout__i
    1001bdbf ti_SysBIOS_KNL_Clock_triggerFunc__i
    1001bdc1 ti_SysBIOS_family_arm_m3/hwi_plug__E
    1001bdd9 ti_SysBIOS_Gates_GateMutex_Leav__E
    1001bdF1 ti_SysBIOS_KNL_Task_Unbodbed__E
    1001be09 ti_SysBIOS_KNL_Clock_Instance_Finality__E
    1001be1f ti_SysBIOS_KNL_Clock_start__E
    1001be35 ti_SysBIOS_family_arm_m3/hwi_switchFromBootStack__E
    1001be35 ti_SysBIOS_hal _HWI_HWiProxy_switchFromBootStack__E
    1001be35 ti_SysBIOS_hal _HWI_switchFromBootStack__E
    1001be49 ti_SysBIOS_KNL_Event_Instance_init__E
    1001be5d ti_SysBIOS_hal _HWI_Module_Startup__E
    1001be6f ti_SysBIOS_KNL_Event_sync__E
    1001be81 ti_SysBIOS_BIOS_EXIT__E
    1001be91 ti_SysBIOS_getCpuFreq__E
    1001bea1 ti_SysBIOS_BIOS_setThreadType__E
    1001beb1 ti_SysBIOS_BIOS_START__E
    1001bec1 ti_SysBIOS_Gates_GateMutex_Instance_Finalate__E
    1001bed1 ti_SysBIOS_Hal_HwiProxy_Object__create_S
    1001bee1 ti_SysBIOS_KNL_Clock_TimerProxy_getCurrentTick__E
    1001beF1 ti_SysBIOS_KNL_Clock_TimerProxy_getMaxTicks__E
    1001bf01 ti_SysBIOS_KNL_Clock_TimerProxy_setNextTick__E
    1001bf11 ti_SysBIOS_KNL_Swi_disable__E
    1001bf21 ti_SysBIOS_KNL_Swi_enabled__E
    1001bf31 ti_SysBIOS_KNL_Task_disable__E
    1001bf41 ti_SysBIOS_堆 叠_HeapMem_RESTORE__E
    1001bf4f ti_SysBIOS_KNL_Queue_empty_E
    1001bf5d ti_SysBIOS_KNL_Queue_remove__E
    1001bf6b ti_SysBIOS_family_arm_cc26xx_TimestampProvider_getFreq__E
    1001bf6b XDC_runtimestamp_SupportProxy_getFreq__E
    1001bf6b XDC_runtimestamp_getFreq__E
    1001bf77 ti_SysBIOS_KNL_Swi_Instance_Finaling_E
    1001bf79 ti_SysBIOS_family_arm_m3_Hwi_Params__init__S
    1001bf79 ti_SysBIOS_hal _HWI_HwiProxy_Params__init__S
    1001bf85 ti_SysBIOS_family_arm_m3/hwi_disableFxn__E
    1001bf91 ti_SysBIOS_family_arm_m3/hwi_enableFxn__E
    1001bf9d ti_SysBIOS_family_arm_m3/TaskSupport_getStackAlignment __E
    1001bf9d ti_SysBIOS_KNL_Task_SupportProxy_getStackAlignment __E
    1001bfa9 ti_SysBIOS_Gates_GateHwi_enter__E
    1001bfb5 ti_SysBIOS_BIOS_RtsGateProxy_Params__init__S
    1001bfb5 ti_SysBIOS_Gates_GateMutex_Params__init__S
    1001bfb5 ti_SysBIOS_堆 叠Mem_Module_GateProxy_Params__init__S
    1001bfc1 ti_SysBIOS_KNL_Clock_Params__init__S
    1001bfcd ti_SysBIOS_KNL_Clock_getTimerHandle__E
    1001bfd9 ti_SysBIOS_KNL_Event_Params__init__S
    1001bfe5 ti_SysBIOS_KNL_Mailbox_Params__init__S
    1001bff1 ti_SysBIOS_KNL_Queue_DEQUEUE__E
    1001bffd ti_SysBIOS_KNL_Queue_Enqueue__E
    1001c009 ti_SysBIOS_KNL_semaphore_Params__init__S
    1001c015 ti_SysBIOS_KNL_Swi_Params__init__S
    1001c021 ti_SysBIOS_KNL_Task_Params__init__S
    1001c02d ti_SysBIOS_KNL_Task_self__E
    1001c039 ti_SysBIOS_hal _HWI_Instance_Finaling__E
    1001c043 ti_SysBIOS_family_arm_m3_Hwi_doSwift Restore__i
    1001c04b ti_SysBIOS_family_arm_m3_Hwi_startup__E
    1001c04b ti_SysBIOS_hal _HWI_HwiProxy_Startup__E
    1001c04b ti_SysBIOS_hal _HWI_STARTUB__E
    1001c053 ti_SysBIOS_KNL_Idle_loop__E
    1001c05b ti_SysBIOS_family_arm_m3/hwi_doTaskRestore__i
    1001c061 ti_SysBIOS_family_arm_m3_Hwi_restoreFxn__E
    1001c067 ti_SysBIOS_Gates_GateHwi_Leav__E
    1001c06d ti_SysBIOS_堆 叠_HeapMem_isBlocking__E
    1001c073 ti_SysBIOS_KNL_Queue_Instance_init__E
    1001c079 ti_SysBIOS_KNL_Queue_elemClear__E
    1001c07f ti_SysBIOS_KNL_Swi_Module_Startup__E
    1001c085 ti_SysBIOS_KNL_Swi_startup__E
    1001c08b ti_SysBIOS_KNL_Task_enable__E
    1001c091 ti_SysBIOS_BIOS_RtsGateProxy_enter__E
    1001c095 ti_SysBIOS_BIOS_RtsGateProxy_Leave__E
    1001c099 ti_SysBIOS_family_arm_cc26xx_Timer_getExpiredTicks__E
    1001c09d ti_SysBIOS_family_arm_cc26xx_Timer_getPeriod__E
    1001a1 c0ti_SysBIOS_family_arm_cc26xx_Timer_setPeriod__E
    1001c0a5 ti_SysBIOS_family_arm_m3_Hwi_dete.
    1001c0a9 ti_SysBIOS_family_arm_m3_Hwi_析 构
    1001c0ad ti_SysBIOS_family_arm_m3_TaskSupport_Module__startupDone__S
    1001c0ad ti_SysBIOS_KNL_Task_SupportProxy_Module__startupDone__S
    1001c0b1 ti_SysBIOS_Gates_GateHwi_query__E
    1001c0b1 XDC_Runtime_System_Module_GateProxy_query__E
    1001c0b5 ti_SysBIOS_Gates_GateMutex_delete
    1001c0b9 ti_SysBIOS_Gates_GateMutex_析 构
    1001c0bd ti_SysBIOS_BIOS_RtsGateProxy_query__E
    1001c0bd ti_SysBIOS_Gates_GateMutex_query__E
    1001c0bd ti_SysBIOS_堆 叠_HeapMem_Module_GateProxy_query__E
    1001c0c1 ti_SysBIOS_hal _HWI_HwiProxy_delete
    1001c0c5 ti_SysBIOS_hal _HWI_DELETE
    1001c0c9 ti_SysBIOS_Manses_HeapMem_Module_GateProxy_enter__E
    1001c0cd ti_SysBIOS_Manses_HeapMem_Module_GateProxy_Leav__E
    1001c0d1 ti_SysBIOS_KNL_Clock_TimerProxy_getExpiredTicks__E
    1001c0d5 ti_SysBIOS_KNL_Clock_TimerProxy_getPeriod__E
    1001c0d9 ti_SysBIOS_KNL_Clock_delete
    1001c0dd ti_SysBIOS_KNL_Clock_析 构
    1001c0e1 ti_SysBIOS_KNL_Clock_removeI__E
    1001c0e5 ti_SysBIOS_KNL_Clock_setTimeout__E
    1001c0e9 ti_SysBIOS_KNL_Event_DELETE
    1001c0ed ti_SysBIOS_KNL_Event_析 构
    1001c0F1 ti_SysBIOS_KNL_Mailbox_delete
    1001c0f5 ti_SysBIOS_KNL_Mailbox_析 构
    1001c0f9 ti_SysBIOS_KNL_Queue_delete
    1001c0fd ti_SysBIOS_KNL_Queue_析 构
    1001c101 ti_SysBIOS_KNL_Queue_head__E
    1001c105 ti_SysBIOS_KNL_Queue_next __E
    1001c109 ti_SysBIOS_KNL_semaphore_delete
    1001c10d ti_SysBIOS_KNL_semaphore_析 构
    1001c111 ti_SysBIOS_KNL_Swi_DELETE
    1001c115 ti_SysBIOS_KNL_Swi_析 构
    1001c119 ti_SysBIOS_KNL_Swi_postInit__i
    1001c11d ti_SysBIOS_KNL_Task_DELETE
    1001c121 ti_SysBIOS_KNL_Task_析 构
    1001c125 ti_SysBIOS_KNL_Task_Startup__E
    1001c129 xdc_runtime启动模式__i
    1001c2c9 XDC_runtime核心CreateObject__i
    1001c349 XDC_runtime内存alloc__E
    1001c3b5 XDC_runtime核心删除Object__i
    1001c413 XDC_Runtime_Error_policySpin__E
    1001c415 xdc_runtime启动执行__E
    1001c465 xdc_runtime断言_Raise __i
    1001c4ad xdc_runtime核心赋值Params__i
    1001c4f5 XDC_runtime内核构造Object__i
    1001c581 XDC_Runtime_System_atexit__E
    1001c5b9 xdc_runtime内核赋值Label__i
    1001c5ed XDC_runtime系统进程退出__E
    1001c621 xdc_runtime文本cordText__e.
    1001c64d XDC_runtime系统中止__E
    1001c66d xdc_runtime错误_raiseX__E
    1001c689 xdc_runtime内存valloc__E
    1001c6a5 XDC_runtime内核析构Object__i
    1001c6bd xdc_runtime错误检查__E
    1001c6d5 XDC_runtime系统退出__E
    1001c6ed XDC_runtime文本_ropeText__E
    1001c705 XDC_Runtime_Memory_free __E
    1001c715 XDC_runtime系统Callback_abort__E
    1001c725 xdc_runtime _SysCallback_exit_E
    1001c735 XDC_runtimestamp_SupportProxy_get32__E
    1001c735 xdc_runtimestamp_get32__e.
    1001c751 xdc_runtime内存calloc__E
    1001c75d XDC_runtime内存getMaxDefaultTypeAlign _E
    1001c769 XDC_runtime启动rtsDone__E
    1001c775 xdc_runtime内存HeapProxy_alloc__E
    1001c77f XDC_runtime内存HeapProxy_free __E
    1001c789 XDC_Runtime_Gate_leaveSystem__E
    1001c78f XDC_runtime系统模块启动_E
    1001c795 xdc_runtime门_enterSystem__E
    1001c799 XDC_Runtime_System_Module_GateProxy_enter__E
    1001c79d xdc_runtime系统模块GateProxy_lefore__E
    1001c7a1 xdc_runtime系统_中止Spin__E
    1001c7a3 XDC_Runtime_System_exitSpin__E
    1001c7a5 ti_SysBIOS_family_arm_m3_Hwi_dispatch __i
    1001c86d ti_SysBIOS_family_arm_m3/TaskSupport_buildTaskStack
    1001c8b9 ti_SysBIOS_family_arm_m3_Hwi_initStacks__E
    1001c901 ti_SysBIOS_family_arm_m3/hwi_excHandlerAsm__i
    1001c921 ti_SysBIOS_family_xxx_HWI_switchAndRunFunc.
    1001c93f ti_SysBIOS_family_arm_m3/hwi_pendSV__i
    1001c957 ti_SysBIOS_family_arm_m3_Hwi_return
    1001c959 ti_SysBIOS_family_arm_m3/TaskSupport_glue
    1001c969 ti_SysBIOS_family_arm_m3/TaskSupport_swap__E
    1001c969 ti_SysBIOS_KNL_Task_SupportProxy_swap__E
    1001c971 ti_SysBIOS_KNL_Task_swapReturn
    1001c978 ti_SysBIOS_KNL_Task_Object__Params__C
    1001c9b4 ti_SysBIOS_KNL_Mailbox_Object__Params__C
    1001c9e8 ti_SysBIOS_family_arm_m3/HWI_Object__Params__C
    1001ca18 ti_SysBIOS_hal _HWI_Object__Params__C
    1001ca44 ti_SysBIOS_KNL_Swi_Object__Params__C
    1001ca6c ti_SysBIOS_堆 叠_HeapMem_Object__Params__C
    1001ca90 ti_SysBIOS_KNL_Clock_Object__Params__C
    1001cab4 ti_SysBIOS_KNL_semaphore_Object__Params__C
    1001cad8 ti_SysBIOS_Gates_GateHWI_Object__Params__C
    1001caf0 ti_SysBIOS_Gates_GateMutex_Object__Params__C
    1001cb08 ti_SysBIOS_KNL_Event_Object__Params__C
    1001cb20 ti_SysBIOS_KNL_Queue_Object__Params__C
    1001cb68 ti_SysBIOS_Gates_GateMutex_Instance_State_SEM__O
    1001cb6c ti_SysBIOS_KNL_Clock_Module_State_clockQ__O
    1001cb70 ti_SysBIOS_KNL_Event_Instance_State_pendQ__O
    1001cb74 ti_SysBIOS_KNL_Mailbox_Instance_State_dataQue__O
    1001cb78 ti_SysBIOS_KNL_Mailbox_Instance_State_dataSem__O
    1001cb7c ti_SysBIOS_KNL_Mailbox_Instance_State_freeQue__O
    1001cb80 ti_SysBIOS_KNL_Mailbox_Instance_State_freeSem__O
    1001cb84 ti_SysBIOS_KNL_semaphore_Instance_State_pendQ__O
    1001cb88 ti_SysBIOS_KNL_Task_Module_State_InactiveQ__O
    2000万 __unused_SRAM_START__
    2000万 ti_SysBIOS_family_arm_m3_Hwi_ramVectors
    2000.01万 ti_SysBIOS_KNL_Task_Module__state__V
    2000.0144万 ti_SysBIOS_family_arm_m3_Hwi_Module__state__V
    2000.0178万 ti_SysBIOS_KNL_Clock_Module__state__V
    20.0001万a4 ti_SysBIOS_BIOS_Module__state__V
    20.0001万c8 ti_SysBIOS_KNL_Swi_Module__state__V
    20.0001万e4 ti_SysBIOS_family_arm_cc26xx_Timer_Module__state__V
    20.0001万ec ti_SysBIOS_family_arm_cc26xx_TimestampProvider_Module__state__V
    20.0001万f0 XDC_Runtime_Startup_Module__state__V
    20.0001万f8 XDC_Runtime_System_Module__state__V
    2000.02万 XDC_Runtime_Memory_Module__state__V
    2000.0204万 XDC_Runtime_Error_Module__state__V
    200.002万c分配处理
    2000.0298万 sbp任务
    20.0002万e8 sbpTaskStack
    200.0056万c pwrmgr_initialized.(已初始化。
    200.0056万e pwrmgr_attribute.
    2000.068万 gapRoleTask
    20.0006万d0 gapRoleTaskStack
    2万cbc __TI_ft_end
    2万cc0 __TI_tmpnams
    2万d60 _ftable
    2万e61 gapBond_removeLRUBond
    2万e62 gapBond_syncRL
    2万e86 gapBond_lruBondList
    20.001万e8 PowerCC26XX_MODULE
    20.0012万d4 iCall_enterCriticalSection
    20.0012万d8 iCall_leaveCriticalSection
    20.0012万e8 heapmgrMemFreeTotal
    20.0012万f4 HEAPMGR_SIZE
    20.0012万f8 iCall_Dispatcher
    2000.1368万 baseTaskID
    200.0136万c cbTimers
    2000.1454万 ti_SysBIOS_KNL_Task_Object__table__V
    20.0014万a0 ti_SysBIOS_family_arm_cc26xx_Timer_Object__table__V
    20.0014万e8 ti_SysBIOS_Gates_GateMutex_Object__table__V
    2000.152万 llUserConfig
    2000.155万 ti_SysBIOS_KNL_Swi_Module_State_0_readyQ__A
    2000.158万 ti_SysBIOS_KNL_Swi_Object__table__V
    20.0015万b0 ti_SysBIOS_KNL_Task_Module_State_0_readyQ__A
    20.0015万e1 osal_entity
    20.0015万e8 osal_qHead
    20.0015万ec osal_eventloop_hook
    20.0015万f0 osal_icallMsg_hook
    20.0015万f4 osal_syncdHandle
    20.0015万f8 osal_tickperiod
    20.0015万fc osal_max_msecs
    2000.163万 ti_SysBIOS_KNL_Clock_Object__table__V
    2000.165万 XDC_runtime错误IgnoreBlock
    2000.167万 excPC
    2000.1674万 excCaller
    2000.1678万用户0配置
    2000.1688万 ti_SysBIOS_family_arm_m3_Hwi_Object__table__V
    20.0016万f6 ti_SysBIOS_family_arm_m3_Hwi_Module_State_0_excActive__A
    20.0016万f8 bleAppServiceInfoTable
    2000.1708万 gattAttrTbl
    2000.1718万 pfnBMAlloc
    200.0171万c pfnBMFree
    2000.172万 pRfErrCb
    2000.1724万 lastAppOpcodeIdxSent
    2000.1728万 rfRegTbl
    2000.1738万 __TI_CLEANG_PTR
    200.0173万c __TI_dtes_ptr
    2000.174万 __TI_ENable_EXIT_PROFILE_OUTPUT
    2000.1744万 ti_SysBIOS_堆 叠_HeapCallback_Object__table__V
    200.0175万c assertSubcause
    200.0175万d legacyMode
    2000.176万 halAssertBack
    2000.1768万 OSAL_TIMESonds
    200.0176万c锁定
    2000.177万 _UNLOCK
    2000.1784万 sizeInfo
    200.0178万c ti_SysBIOS_family_arm_m3_Hwi_Module__root__V
    2000.1794万 ti_SysBIOS_Gates_GateHWI_Module__root__V
    200.0179万c ti_SysBIOS_Gates_GateMutex_Module__root__V
    20.0017万a4 ti_SysBIOS_hal _HWI_Module__root_V
    20.0017万ac ti_SysBIOS_堆 叠_HeapCallback_Module__root_V
    20.0017万b4 ti_SysBIOS_堆 叠_HeapMem_Module__root__V
    20.0017万bc ti_SysBIOS_KNL_Clock_Module__root_V
    20.0017万c4 ti_SysBIOS_KNL_Event_Module__root_V
    20.0017万cc ti_SysBIOS_KNL_Mailbox_Module__root__V
    20.0017万d4 ti_SysBIOS_KNL_Queue_Module__root_V
    20.0017万dc ti_SysBIOS_KNL_semaphore_Module__root_V
    20.0017万e4 ti_SysBIOS_KNL_Swi_Module__root_V
    20.0017万ec ti_SysBIOS_KNL_Task_Module__root_V
    2000.18万 Display_config
    2000.1804万 appAssertBack
    2000.1808万主功能
    200.018万c icallServiceTblPtr
    2000.1814万 ti_SysBIOS_family_arm_m3_Hwi_Module_State_0_excContext__A
    2000.1818万 ti_SysBIOS_family_arm_m3_Hwi_Module_State_0_excStack__A
    200.0181万c ti_SysBIOS_KNL_Task_Module_State_0_idleTask__A
    2000.182万 ti_SysBIOS_KNL_Task_Instance_State_0_stack__A
    2.0001万a20 __CIOBUF_
    2.0001万b40 PIN_NumPins
    2.0001万bd4 PIN_HandleTable
    2.0001万c50 ti_SysBIOS_family_arm_m3_Hwi_dispatchTable
    2.0001万d18加密CC26XXObjects
    2.0001万dd8计时器头
    2.0001万ddc osal_last_timestamp
    2.0001万de4 llTaskList
    2.0001万df0 PowerCC26XX_taskKey
    2.0001万df4 PowerCC26XX_swiKey
    2.0001万e14时钟P_tickPeriod
    2.0001万e18任务事件
    2.0001万e1c trngCC26XXObjects
    2.0001万e20 hciTaskID
    2.0001万e21 hciGapTaskID
    2.0001万e22 hciTestTaskID
    2.0001万e23 hciL2capTaskID
    2.0001万e24 hciSmpTaskID
    2.0001万e25 driverlib_release_0_4.8919万
    2.0001万e26 g_hwiInt
    2.0001万e27 iCall_liteTaskId
    2.0001万e28 heapStart
    2000.4万 __stack
    2000.4万 heapEnd
    2000.44万 __stack_end
    2000.44万 __stack_top
    20.0044万f8 RAM_BASE ADDR
    2000.4504万 ROM_FlashJT
    2000.4508万 gapParameters
    2000.4558万 gapPeripheralCBs
    2000.4564万 gapPeripheralConnCBs
    2000.4568万 rfMode
    2000.4584万 smResponseCBs
    200.0459万c slaveConnHandle
    200.0459万e下一个手柄
    20.0045万a0 l2capMtuSize
    20.0045万a2 gapAppTaskID
    20.0045万a3 gapAdvAppTaskID
    20.0045万a4 gapUnwanedTaskID
    20.0045万a5请求任务ID
    20.0045万a6 gattAppTaskID
    20.0045万a7 appTaskID
    20.0045万a8 flowCtrlTaskId
    20.0045万a9 sm_appTaskID
    20.0045万ac解析列表
    20.0046万ec scanDataEntry
    20.0047万cc wlTable
    20.0048万a8 wlTableScan
    2000.4988万 rfObject
    2.0004万a20高级命令
    2.0004万a68 localEccKeys
    2.0004万aac initDataEntry
    2.0004万ae4 advDataEntry
    2.0004万b1c l2capFixedChannels
    2.0004万b4c链路CBs
    2.0004万b7c eccParams
    2.0004万bac initParam
    2.0004万bd0扫描参数
    2.0004万bf4高级参数
    2.0004万c14加密PRAND
    2.0004万c34 txModemTestCmd.
    2.0004万c50 gapParams
    2.0004万c6c initCmd.
    2.0004万c84 connReqData
    2.0004万c9c扫描命令
    2.0004万cb4扫描输出
    2.0004万ccc trxTestCmd.
    2.0004万ce4 rxModemTestCmd
    2.0004万cfc版本
    2.0004万d14 fwPartDtmCmd.
    2.0004万d2c rfSetup
    2.0004万d44 fwParRfCmd.
    2.0004万d5c连接输出
    2.0004万d70 rxTestParam.(rxTestParam
    2.0004万d84 initDataQueue
    2.0004万d94 scanDataQueue
    2.0004万da4 advDataQueue
    2.0004万db4高级输出
    2.0004万dc4 txTestParam
    2.0004万dd4 initOutput
    2.0004万de0 rxTestOut
    2.0004万dec deviceFeatureSet
    2.0004万df8 cachedTRNGdata
    2.0004万e04 gapCurrentRandomAddr
    2.0004万e0c slaveUpdateReq
    2.0004万e14 pBleEvtMask
    2.0004万e1c pHciEvtMask
    2.0004万e24 pHciEvtMask2.
    2.0004万e2c ownPublicAddr.
    2.0004万e34 ownRandomAddr
    2.0004万e3c ownSavedPublicAddr.
    2.0004万e44 fwImmedCmd.
    2.0004万e4c attServerNotifyTxCB
    2.0004万e50 rfEvent
    2.0004万e58 fwParCmd.
    2.0004万e60版本信息
    2.0004万e68 llConns.
    2.0004万e70 fwParamImmedCmd.
    2.0004万e78 privInfo
    2.0004万e80链路命令
    2.0004万e84链接参数
    2.0004万e88 rxDataQ
    2.0004万e8c txDataQ
    2.0004万e90 rxRingBuf
    2.0004万e94 txTestOut
    2.0004万e98 pGapDiscReq
    2.0004万e9c pGapAdvertState
    2.0004万ea0 pEstLink
    2.0004万ea4 pAuthLink
    2.0004万ea8 pfnCentralConnCBs
    2.0004万eac pfnPeripheralConnCBs
    2.0004万eb0 pGapAdvTokens
    2.0004万eb4 pGapAdData
    2.0004万eb8 pGapScanRspData
    2.0004万ebc pfnPeripheralCBs
    2.0004万ec0 pfnCentralCBs
    2.0004万ec4 pfnBondMgrCBs.
    2.0004万ec8服务器信息Tbl
    2.0004万ecc pServiceList
    2.0004万ed0 pfnServerProcessMsgCB
    2.0004万ed4 pfnClientProcessMsgCB
    2.0004万ed8准备写入待完成
    2.0004万edc服务CBsList
    2.0004万ee0 pAttrValue
    2.0004万ee4 l2capChannels
    2.0004万ee8链接数据库
    2.0004万eec rfHandle
    2.0004万ef0 rfDrvTblPtr
    2.0004万ef4 eccDrvTblPtr
    2.0004万ef8 cryptoDrvTblPtr
    2.0004万efc trngDrvTblPtr
    2.0004万f00激活连接
    2.0004万f04 SysBootMsg.
    2.0004万f08 SclkSrc.
    2.0004万f0c buildInfo
    2.0004万f10高级信息
    2.0004万f14扫描信息
    2.0004万f18 initInfo
    2.0004万f1c dtmInfo
    2.0004万f20 taskEndAction
    2.0004万f24 encParams.
    2.0004万f28 encle
    2.0004万f2c encKey
    pPairingParams
    2.0004万f34 pfnResponseCBs
    2.0004万f38 pfnInitiatorCBs.
    2.0004万f3c gapLimitedAdversingTimeout
    2.0004万f3e attlen
    2.0004万f40 numHostBufs.
    2.0004万f42 rfCmdHandle
    2.0004万f44 connInitialMaxTxOctets
    2.0004万f46 connInitialMaxTxTime.
    2.0004万f48支持MaxTxOctets
    2.0004万f4a supportedMaxTxTime
    2.0004万f4c支持MaxRxOctets
    2.0004万f4e支持MaxRxTime
    2.0004万f50任务结束状态
    2.0004万f52后RfOperations
    2.0004万f54 rfCfgAdiVal
    2.0004万f58 gapProfileRole
    2.0004万f59 gapDeviceAddrMode
    2.0004万f5a gapState.
    2.0004万f5b终端AllTaskID
    2.0004万f5c终结处理
    2.0004万f5d gapTaskID
    2.0004万f5e gattNumConns.
    2.0004万f5f gattTaskID
    2.0004万f60 GATTServApp_TaskID
    2.0004万f61 maxNumPrepareWrites
    2.0004万f62 hciPTM已启用
    2.0004万f63 ctrlToHostEnable
    2.0004万f64 l2capFlowCtrlMode
    2.0004万f65 l2capTaskID
    2.0004万f66 l2capNumChannels
    2.0004万f67 l2capNumDataPts.
    2.0004万f68 l2capId
    2.0004万f69 linkDBNumConns.
    2.0004万f6a linkDB_secureConnectionOnlyMode.
    2.0004万f6b最大尺寸
    2.0004万f6c rfFeModeBias
    2.0004万f6d maxNumTxDataBufs.
    2.0004万f6e LL_TaskID
    2.0004万f6f llState
    2.0004万f70 rssiCorrection
    2.0004万f71 curTxPowerVal
    2.0004万f72 maxTxPwrForDTM
    2.0004万f73 onePktPerEvt.
    2.0004万f74 numComplPkts.
    2.0004万f75 numComplPktsLimit
    2.0004万f76 numComplPktsFlush
    2.0004万f77 fastTxRespTime
    2.0004万f78 slOverride
    2.0004万f79 rxFifoFlowCtrl
    2.0004万f7a numTxDataBufs.
    2.0004万f7b maxNumConns.
    2.0004万f7c smTaskID
    2.0004万f7d sm_appExpectingKey
    2.0004万f80 ecc_data$Base
    2.0004万f80 eccRom_param_gx
    2.0004万f84 eccRom_param_Gy
    2.0004万f88 eccRom_Workzone
    2.0004万f8c eccRom_param_p
    2.0004万f90 eccRom_param_r
    2.0004万f94 eccRom_param_A
    2.0004万f98 eccRom_param_b
    2.0004万f9c eccRom_windowSize
    2.0004万fa0 ax64
    2.0004万fa8模块
    2.0004万曲面(LEN
    2.0004万fb0在Scalar中
    2.0004万fb4 inPointX
    2.0004万fb8 inPointY
    2.0004万fbc outPointX
    2.0004万fc0 outPointY
    2.0004万fc4 SCAL
    2.0004万fc8 EXPX
    2.0004万fcc Expy
    2.0004万fd0 EXPZ
    2.0004万fd4 EXPW
    2.0004万fd8 ACCX
    2.0004万fdc附件
    2.0004万fe0 ACCZ
    2.0004万fe4 TMP1.
    2.0004万fe8 TMP2
    2.0004万fec Tmp3
    2.0004万ff0 TMP4
    2.0004万ff4
    2.0004万ff8 TMP6.
    2.0004万ffc MSBMOD
    2000.5万 ecc_data$limit
    2000.5万 __unused_SRAM_end__
    e000e000 ti_SysBIOS_family_arm_m3_Hwi_NVIC
    FFFFFFFF __TI_pprof_out hndl
    FFFFFFFF __TI_prof_data_size
    FFFFFFFF __TI_prof_data_start
    FFFFFFFF __binit__
    FFFFFFFF __c_args__
    FFFFFFFF绑定
    UNDEFED ClockP_getSystemTicks
    UNDEFED HWIP_RESTORE
    UNDED SHT$$INIT_ARRAQ$$Base
    UNDED SHT$$INIT_ARRAL$$LIMIT
    UNDEFED swip_restore
    UNDED ti_SysBIOS_BIOS_RtsGateProxy_Handle __label__S__man切 换__
    UNDED ti_SysBIOS_BIOS_RtsGateProxy_Params__init__S__manged__
    UNDED ti_SysBIOS_BIOS_RtsGateProxy_query__E__manged__
    UNDED ti_SysBIOS_hal_HWI_HWiProxy_Module__startupDone__S__manged__
    UNDED ti_SysBIOS_Hal_HWI_HwiProxy_Params__init__S__mangefed___
    UNDED ti_SysBIOS_Hal_HWI_HWiProxy_DisableInterrupti__E__man烤 开__
    UNDED ti_SysBIOS_hal_HWI_HWiProxy_enableInterrupt__E__manged__
    UNDED ti_SysBIOS_hal _HWI_HwiProxy_getStackInfo__E_mangled __
    UNDED ti_SysBIOS_hal _HWI_HwiProxy_Startup__E__manged__
    UNDED ti_SysBIOS_hal_HWI_HWiProxy_switchFromBootStack__E__manswitched__
    UNDED ti_SysBIOS_hal _ HWI_DisableInterrupt__E
    UNDED ti_SysBIOS_hal _HWI_enableInterrupt__E
    UNDED ti_SysBIOS_hal _HWI_getStackInfo__E
    UNDEFED TI_SysBIOS_hal _HWI_STARTUB__E
    UNDED ti_SysBIOS_hal _HWI_SWITCHFromBootStack__E
    UNDED ti_SysBIOS_堆 叠_HeapMem_Module_GateProxy_Handle __label__S__manged__
    UNDED ti_SysBIOS_堆 叠_HeapMem_Module_GateProxy_Params__init__S__mandsked__
    UNDED ti_SysBIOS_堆 叠_HeapMem_Module_GateProxy_query__E__manged__
    UNDED ti_SysBIOS_KNL_Clock_TimerProxy_Module__startupDone__S__mandefed___
    UNDED ti_SysBIOS_KNL_Clock_TimerProxy_Startup__E__mangeled__
    UNDED ti_SysBIOS_KNL_Task_SupportProxy_Module__startupDone__S__manged__
    UNDED ti_SysBIOS_KNL_Task_SupportProxy_getStackAlignment__E__manged__
    UNDED ti_SysBIOS_KNL_Task_SupportProxy_start__E__manged__
    UNDED ti_SysBIOS_KNL_Task_SupportProxy_swap__E_manched__
    UNDEFED XDC_RUNTIME_Main_Module_GateProxy_Handle __label__S
    UNDEFED XDC_RUNTIME_Main_Module_GateProxy_query__E
    UNDEFED XDC_RUNTIME_Memory_HeapProxy_Handle __label__S__mandanged__
    UNDEFED XDC_runtime系统模块GateProxy_handle __label__S__manged__
    UNDEFED XDC_RUNRUNATE_System_Module_GateProxy_query__E__manged__
    UNDEFED XDC_RUNTIME_System_SupportProxy_abort__E
    UNDEFED XDC_RUNTIME_System_SupportProxy_Exit__E
    UNDEFED XDC_runtime_Timestamp_SupportProxy_get64__E_mangded__
    UNDEFED XDC_runtime_Timestamp_SupportProxy_getFreq__E__manged__
    UNDEFED XDC_runtimestamp_get32__E
    UNDEFED XDC_runtimestamp_get64__E
    UNDEFED XDC_runtimestamp_getFreq__E
    
    [2200符号]
    

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。
    该地址位于堆上。 您是否还可以发布您正在使用的XDCtools的版本? 您是否可以压缩并发布完整的项目? 如果不复制ROV问题,则很难进行调试。