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/IWR1443: mmwave build problem with ccs

Part Number: IWR1443
Other Parts Discussed in Thread: TMS320C6748, UNIFLASH, , MATHLIB, SYSBIOS

Tool/software: Code Composer Studio

Hi,

I built the oob demo for a iwr1443 board using CCS 7.4 on a linux platform.  The SDK version was 1.2.0.5.  I loaded the binary in the part using uniflash  version 4.4.  It did not run so I attempted a debug session with CCS.  I had no build errors or warnings during the build process.  I can load other prebuilt binaries and they run fine.  I have attached a screen image of the debug session.  It can not find a file from a /tmp/scratch/build_jenkins/.... location I do not have.  I searched for assistance on the forum pertaining to the missing file and found this posting: CCS/TMS320C6748: ccsv5.5 - can't open time.h and rand.h.  This old posting does not provide any assistance to me. 

Please advise.  Thanks.

Al

  • Hi Allen,

    Let me first address the "Can't find a source file..." message shown in the debugger. This is a general debugger message which indicates that the debugger is unable to map the instructions being executed to a source file in order to show the source view. The code is halting/crashing in TI RTOS and then calling C library functions (abort and exit) and these components were compiled on another machine (more specifically, different build paths) which is why the debugger is unable to find the source files. Please refer to the following post for more information.

    https://e2e.ti.com/support/development_tools/code_composer_studio/f/81/t/389267?CCSv6-debug-cannot-locate-source-file

    In order to look into the reason for the crash, please provide the following information:

    1. Environment setup file setenv.sh used in your build (as mentioned in section 4.5.2.2) 

    2. Complete build log from the terminal, including the sequence of commands you executed.

    Thanks

    -Nitin 

  • Hi Nitin,

    Thank you for responding.  I ran the debugger since when I loaded the generated bin file to the part, the gui did not function at all like it should have from based upon the prebuilt binaries.  I also connected minicom to the port and I was not getting readable characters back (like mmw> and Done) when a command was issued.

    I can not seem to attach an ascii file so I will inline the material you have requested.

    Al

    ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    setenv.sh

    ###############################################################################
    #
    # Set up tools and build environment variables for mmwave sdk
    #
    ###############################################################################

    ###############################################################################
    # Build variables (to be modified based on build need)
    ###############################################################################

    # Select your device. Options (case sensitive) are: awr14xx, iwr14xx, awr16xx, iwr16xx
    #export MMWAVE_SDK_DEVICE=awr16xx
    export MMWAVE_SDK_DEVICE=iwr14xx

    # If download via CCS is needed, set below define to yes else no
    #   yes: Out file created can be loaded using CCS.
    #        Binary file created can be used to flash
    #   no:  Out file created cannot be loaded using CCS.
    #        Binary file created can be used to flash
    #        (additional features: write-protect of TCMA, etc)
    export DOWNLOAD_FROM_CCS=yes

    ###############################################################################
    # Customer installed tools variables (to be modified based on the installation)
    ###############################################################################


    ###############################################################################
    # TI tools variables (no changes needed below this line if default mmwave sdk
    # installation options are used)
    ###############################################################################

    export MMWAVE_SDK_TOOLS_INSTALL_PATH=/home/akd/ti
     
    # Common settings for awr14xx, awr16xx, iwr14xx, iwr16xx
    # Path to <mmwave_sdk installation path>/packages folder
    export MMWAVE_SDK_INSTALL_PATH=${MMWAVE_SDK_TOOLS_INSTALL_PATH}/mmwave_sdk_01_02_00_05/packages
    # TI ARM compiler
    export R4F_CODEGEN_INSTALL_PATH=${MMWAVE_SDK_TOOLS_INSTALL_PATH}/ti-cgt-arm_16.9.6.LTS
    # TI XDC TOOLS
    export XDC_INSTALL_PATH=${MMWAVE_SDK_TOOLS_INSTALL_PATH}/xdctools_3_50_04_43_core
    # TI BIOS
    export BIOS_INSTALL_PATH=${MMWAVE_SDK_TOOLS_INSTALL_PATH}/bios_6_53_02_00/packages
     
    # Following only needed for awr16xx and iwr16xx
    # TI DSP compiler
    export C674_CODEGEN_INSTALL_PATH=${MMWAVE_SDK_TOOLS_INSTALL_PATH}/ti-cgt-c6000_8.1.3
    # DSPlib
    export C64Px_DSPLIB_INSTALL_PATH=${MMWAVE_SDK_TOOLS_INSTALL_PATH}/dsplib_c64Px_3_4_0_0
    # DSPlib c674
    export C674x_DSPLIB_INSTALL_PATH=${MMWAVE_SDK_TOOLS_INSTALL_PATH}/dsplib_c674x_3_4_0_0
    # MATHlib
    export C674x_MATHLIB_INSTALL_PATH=${MMWAVE_SDK_TOOLS_INSTALL_PATH}/mathlib_c674x_3_1_2_1
    # awr16xx/iwr16xx radarss firmware. Use the RPRC formatted binary file.
    export XWR16XX_RADARSS_IMAGE_BIN=${MMWAVE_SDK_INSTALL_PATH}/../firmware/radarss/xwr16xx_radarss_rprc.bin

    # Call script to check env variables and set paths
    source ./checkenv.sh
    retval=$?
    if [[ $retval != 0 ]]; then
        printErrorMsg "ERROR: Failure in checkenv !!!"
    fi
    return $retval;

    ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    build output

    Actions: 1) open project to active - debug, 2) clean project, 3) rebuild project

    **** Clean-only build of configuration Debug for project mmw_mss_14xx ****

    /home/akd/ti/ccsv7/utils/bin/gmake -k -j 8 clean -O
     
    rm -rf  "xwr14xx_mmw_mss.hex"  "configPkg/linker.cmd" "configPkg/compiler.opt"  "xwr14xx_mmw_mss.xer4f"
    rm -rf  "configPkg/"
    rm -rf "config_edma_util.oer4f" "config_hwa_util.oer4f" "data_path.oer4f" "main.oer4f" "mmwDemo_monitor.oer4f" "mmw_cli.oer4f" "mmw_lvds_stream.oer4f" "post_processing.oer4f" "rx_ch_bias_measure.oer4f" "sensor_mgmt.oer4f"
    rm -rf "config_edma_util.d" "config_hwa_util.d" "data_path.d" "main.d" "mmwDemo_monitor.d" "mmw_cli.d" "mmw_lvds_stream.d" "post_processing.d" "rx_ch_bias_measure.d" "sensor_mgmt.d"
    Finished clean
     

    **** Build Finished ****

        **** Build of configuration Debug for project mmw_mss_14xx ****

    /home/akd/ti/ccsv7/utils/bin/gmake -k -j 8 all -O
     
    rm -f /home/akd/workspace_v7/mmw_mss_14xx/xwr14xx_mmw_mss.bin
     
    Building file: "../mmw.cfg"
    Invoking: XDCtools
    "/home/akd/ti/xdctools_3_50_04_43_core/xs" --xdcpath="/home/akd/ti/bios_6_53_02_00/packages;/home/akd/ti/ccsv7/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.R4F -p ti.platforms.cortexR:IWR14XX:false:200 -r release -c "/home/akd/ti/ti-cgt-arm_16.9.6.LTS" "../mmw.cfg"
    making package.mak (because of package.bld) ...
    generating interfaces for package configPkg (because package/package.xdc.inc is older than package.xdc) ...
    configuring mmw.xer4f from package/cfg/mmw_per4f.cfg ...
    generating custom ti.sysbios library makefile ...
    Starting build of library sources ...
    making /home/akd/workspace_v7/mmw_mss_14xx/src/sysbios/sysbios.aer4f ...
    gmake[1]: Entering directory `/home/akd/workspace_v7/mmw_mss_14xx/src/sysbios'
    gmake[1]: Nothing to be done for `all'.
    gmake[1]: Leaving directory `/home/akd/workspace_v7/mmw_mss_14xx/src/sysbios'
    Build of libraries done.
    cler4f package/cfg/mmw_per4f.c ...
    Finished building: "../mmw.cfg"
     
    Building file: "../mmwDemo_monitor.c"
    Invoking: ARM Compiler
    "/home/akd/ti/ti-cgt-arm_16.9.6.LTS/bin/armcl" -mv7R4 --code_state=16 --float_support=VFPv3D16 -me -O3 --include_path="/home/akd/workspace_v7/mmw_mss_14xx" --include_path="/home/akd/ti/mmwave_sdk_01_02_00_05/packages" --include_path="/home/akd/ti/ti-cgt-arm_16.9.6.LTS/include" --define=SOC_XWR14XX --define=SUBSYS_MSS --define=DOWNLOAD_FROM_CCS --define=MMWAVE_L3RAM_SIZE=0x40000 --define=DebugP_ASSERT_ENABLED --define=_LITTLE_ENDIAN -g --diag_warning=225 --diag_wrap=off --display_error_number --gen_func_subsections=on --enum_type=packed --abi=eabi --obj_extension=.oer4f --preproc_with_compile --preproc_dependency="mmwDemo_monitor.d_raw" --cmd_file="configPkg/compiler.opt" "../mmwDemo_monitor.c"
    Finished building: "../mmwDemo_monitor.c"
     
    Building file: "../config_edma_util.c"
    Invoking: ARM Compiler
    "/home/akd/ti/ti-cgt-arm_16.9.6.LTS/bin/armcl" -mv7R4 --code_state=16 --float_support=VFPv3D16 -me -O3 --include_path="/home/akd/workspace_v7/mmw_mss_14xx" --include_path="/home/akd/ti/mmwave_sdk_01_02_00_05/packages" --include_path="/home/akd/ti/ti-cgt-arm_16.9.6.LTS/include" --define=SOC_XWR14XX --define=SUBSYS_MSS --define=DOWNLOAD_FROM_CCS --define=MMWAVE_L3RAM_SIZE=0x40000 --define=DebugP_ASSERT_ENABLED --define=_LITTLE_ENDIAN -g --diag_warning=225 --diag_wrap=off --display_error_number --gen_func_subsections=on --enum_type=packed --abi=eabi --obj_extension=.oer4f --preproc_with_compile --preproc_dependency="config_edma_util.d_raw" --cmd_file="configPkg/compiler.opt" "../config_edma_util.c"
    Finished building: "../config_edma_util.c"
     
    Building file: "../rx_ch_bias_measure.c"
    Invoking: ARM Compiler
    "/home/akd/ti/ti-cgt-arm_16.9.6.LTS/bin/armcl" -mv7R4 --code_state=16 --float_support=VFPv3D16 -me -O3 --include_path="/home/akd/workspace_v7/mmw_mss_14xx" --include_path="/home/akd/ti/mmwave_sdk_01_02_00_05/packages" --include_path="/home/akd/ti/ti-cgt-arm_16.9.6.LTS/include" --define=SOC_XWR14XX --define=SUBSYS_MSS --define=DOWNLOAD_FROM_CCS --define=MMWAVE_L3RAM_SIZE=0x40000 --define=DebugP_ASSERT_ENABLED --define=_LITTLE_ENDIAN -g --diag_warning=225 --diag_wrap=off --display_error_number --gen_func_subsections=on --enum_type=packed --abi=eabi --obj_extension=.oer4f --preproc_with_compile --preproc_dependency="rx_ch_bias_measure.d_raw" --cmd_file="configPkg/compiler.opt" "../rx_ch_bias_measure.c"
    Finished building: "../rx_ch_bias_measure.c"
     
    Building file: "../mmw_cli.c"
    Invoking: ARM Compiler
    "/home/akd/ti/ti-cgt-arm_16.9.6.LTS/bin/armcl" -mv7R4 --code_state=16 --float_support=VFPv3D16 -me -O3 --include_path="/home/akd/workspace_v7/mmw_mss_14xx" --include_path="/home/akd/ti/mmwave_sdk_01_02_00_05/packages" --include_path="/home/akd/ti/ti-cgt-arm_16.9.6.LTS/include" --define=SOC_XWR14XX --define=SUBSYS_MSS --define=DOWNLOAD_FROM_CCS --define=MMWAVE_L3RAM_SIZE=0x40000 --define=DebugP_ASSERT_ENABLED --define=_LITTLE_ENDIAN -g --diag_warning=225 --diag_wrap=off --display_error_number --gen_func_subsections=on --enum_type=packed --abi=eabi --obj_extension=.oer4f --preproc_with_compile --preproc_dependency="mmw_cli.d_raw" --cmd_file="configPkg/compiler.opt" "../mmw_cli.c"
    Finished building: "../mmw_cli.c"
     
    Building file: "../mmw_lvds_stream.c"
    Invoking: ARM Compiler
    "/home/akd/ti/ti-cgt-arm_16.9.6.LTS/bin/armcl" -mv7R4 --code_state=16 --float_support=VFPv3D16 -me -O3 --include_path="/home/akd/workspace_v7/mmw_mss_14xx" --include_path="/home/akd/ti/mmwave_sdk_01_02_00_05/packages" --include_path="/home/akd/ti/ti-cgt-arm_16.9.6.LTS/include" --define=SOC_XWR14XX --define=SUBSYS_MSS --define=DOWNLOAD_FROM_CCS --define=MMWAVE_L3RAM_SIZE=0x40000 --define=DebugP_ASSERT_ENABLED --define=_LITTLE_ENDIAN -g --diag_warning=225 --diag_wrap=off --display_error_number --gen_func_subsections=on --enum_type=packed --abi=eabi --obj_extension=.oer4f --preproc_with_compile --preproc_dependency="mmw_lvds_stream.d_raw" --cmd_file="configPkg/compiler.opt" "../mmw_lvds_stream.c"
    Finished building: "../mmw_lvds_stream.c"
     
    Building file: "../post_processing.c"
    Invoking: ARM Compiler
    "/home/akd/ti/ti-cgt-arm_16.9.6.LTS/bin/armcl" -mv7R4 --code_state=16 --float_support=VFPv3D16 -me -O3 --include_path="/home/akd/workspace_v7/mmw_mss_14xx" --include_path="/home/akd/ti/mmwave_sdk_01_02_00_05/packages" --include_path="/home/akd/ti/ti-cgt-arm_16.9.6.LTS/include" --define=SOC_XWR14XX --define=SUBSYS_MSS --define=DOWNLOAD_FROM_CCS --define=MMWAVE_L3RAM_SIZE=0x40000 --define=DebugP_ASSERT_ENABLED --define=_LITTLE_ENDIAN -g --diag_warning=225 --diag_wrap=off --display_error_number --gen_func_subsections=on --enum_type=packed --abi=eabi --obj_extension=.oer4f --preproc_with_compile --preproc_dependency="post_processing.d_raw" --cmd_file="configPkg/compiler.opt" "../post_processing.c"
    Finished building: "../post_processing.c"
     
    Building file: "../config_hwa_util.c"
    Invoking: ARM Compiler
    "/home/akd/ti/ti-cgt-arm_16.9.6.LTS/bin/armcl" -mv7R4 --code_state=16 --float_support=VFPv3D16 -me -O3 --include_path="/home/akd/workspace_v7/mmw_mss_14xx" --include_path="/home/akd/ti/mmwave_sdk_01_02_00_05/packages" --include_path="/home/akd/ti/ti-cgt-arm_16.9.6.LTS/include" --define=SOC_XWR14XX --define=SUBSYS_MSS --define=DOWNLOAD_FROM_CCS --define=MMWAVE_L3RAM_SIZE=0x40000 --define=DebugP_ASSERT_ENABLED --define=_LITTLE_ENDIAN -g --diag_warning=225 --diag_wrap=off --display_error_number --gen_func_subsections=on --enum_type=packed --abi=eabi --obj_extension=.oer4f --preproc_with_compile --preproc_dependency="config_hwa_util.d_raw" --cmd_file="configPkg/compiler.opt" "../config_hwa_util.c"
    Finished building: "../config_hwa_util.c"
     
    Building file: "../sensor_mgmt.c"
    Invoking: ARM Compiler
    "/home/akd/ti/ti-cgt-arm_16.9.6.LTS/bin/armcl" -mv7R4 --code_state=16 --float_support=VFPv3D16 -me -O3 --include_path="/home/akd/workspace_v7/mmw_mss_14xx" --include_path="/home/akd/ti/mmwave_sdk_01_02_00_05/packages" --include_path="/home/akd/ti/ti-cgt-arm_16.9.6.LTS/include" --define=SOC_XWR14XX --define=SUBSYS_MSS --define=DOWNLOAD_FROM_CCS --define=MMWAVE_L3RAM_SIZE=0x40000 --define=DebugP_ASSERT_ENABLED --define=_LITTLE_ENDIAN -g --diag_warning=225 --diag_wrap=off --display_error_number --gen_func_subsections=on --enum_type=packed --abi=eabi --obj_extension=.oer4f --preproc_with_compile --preproc_dependency="sensor_mgmt.d_raw" --cmd_file="configPkg/compiler.opt" "../sensor_mgmt.c"
    Finished building: "../sensor_mgmt.c"
     
    Building file: "../main.c"
    Invoking: ARM Compiler
    "/home/akd/ti/ti-cgt-arm_16.9.6.LTS/bin/armcl" -mv7R4 --code_state=16 --float_support=VFPv3D16 -me -O3 --include_path="/home/akd/workspace_v7/mmw_mss_14xx" --include_path="/home/akd/ti/mmwave_sdk_01_02_00_05/packages" --include_path="/home/akd/ti/ti-cgt-arm_16.9.6.LTS/include" --define=SOC_XWR14XX --define=SUBSYS_MSS --define=DOWNLOAD_FROM_CCS --define=MMWAVE_L3RAM_SIZE=0x40000 --define=DebugP_ASSERT_ENABLED --define=_LITTLE_ENDIAN -g --diag_warning=225 --diag_wrap=off --display_error_number --gen_func_subsections=on --enum_type=packed --abi=eabi --obj_extension=.oer4f --preproc_with_compile --preproc_dependency="main.d_raw" --cmd_file="configPkg/compiler.opt" "../main.c"
    Finished building: "../main.c"
     
    Building file: "../data_path.c"
    Invoking: ARM Compiler
    "/home/akd/ti/ti-cgt-arm_16.9.6.LTS/bin/armcl" -mv7R4 --code_state=16 --float_support=VFPv3D16 -me -O3 --include_path="/home/akd/workspace_v7/mmw_mss_14xx" --include_path="/home/akd/ti/mmwave_sdk_01_02_00_05/packages" --include_path="/home/akd/ti/ti-cgt-arm_16.9.6.LTS/include" --define=SOC_XWR14XX --define=SUBSYS_MSS --define=DOWNLOAD_FROM_CCS --define=MMWAVE_L3RAM_SIZE=0x40000 --define=DebugP_ASSERT_ENABLED --define=_LITTLE_ENDIAN -g --diag_warning=225 --diag_wrap=off --display_error_number --gen_func_subsections=on --enum_type=packed --abi=eabi --obj_extension=.oer4f --preproc_with_compile --preproc_dependency="data_path.d_raw" --cmd_file="configPkg/compiler.opt" "../data_path.c"
    Finished building: "../data_path.c"
     
    Building target: "xwr14xx_mmw_mss.xer4f"
    Invoking: ARM Linker
    "/home/akd/ti/ti-cgt-arm_16.9.6.LTS/bin/armcl" -mv7R4 --code_state=16 --float_support=VFPv3D16 -me -O3 --define=SOC_XWR14XX --define=SUBSYS_MSS --define=DOWNLOAD_FROM_CCS --define=MMWAVE_L3RAM_SIZE=0x40000 --define=DebugP_ASSERT_ENABLED --define=_LITTLE_ENDIAN -g --diag_warning=225 --diag_wrap=off --display_error_number --gen_func_subsections=on --enum_type=packed --abi=eabi --obj_extension=.oer4f -z -m"xwr14xx_mmw_mss.map" --heap_size=0x800 --stack_size=0x800 -i"/home/akd/ti/ti-cgt-arm_16.9.6.LTS/lib" -i"/home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/control/mmwave/lib" -i"/home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/control/mmwavelink/lib" -i"/home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/drivers/adcbuf/lib" -i"/home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/drivers/crc/lib" -i"/home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/drivers/dma/lib" -i"/home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/drivers/edma/lib" -i"/home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/drivers/esm/lib" -i"/home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/drivers/gpio/lib" -i"/home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/drivers/hwa/lib" -i"/home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/drivers/mailbox/lib" -i"/home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/drivers/osal/lib" -i"/home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/drivers/pinmux/lib" -i"/home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/drivers/soc/lib" -i"/home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/drivers/uart/lib" -i"/home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/utils/cli/lib" -i"/home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/drivers/cbuff/lib" -i"/home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/utils/hsiheader/lib" -i"/home/akd/ti/ti-cgt-arm_16.9.6.LTS/include" --reread_libs --disable_auto_rts --diag_warning=225 --diag_wrap=off --display_error_number --warn_sections --xml_link_info="xwr14xx_mmw_mss_linkInfo.xml" --rom_model --unused_section_elimination=on -o "xwr14xx_mmw_mss.xer4f" "./config_edma_util.oer4f" "./config_hwa_util.oer4f" "./data_path.oer4f" "./main.oer4f" "./mmwDemo_monitor.oer4f" "./mmw_cli.oer4f" "./mmw_lvds_stream.oer4f" "./post_processing.oer4f" "./rx_ch_bias_measure.oer4f" "./sensor_mgmt.oer4f" "../mss_mmw_linker.cmd" "../r4f_linker.cmd" -l"configPkg/linker.cmd" -llibosal_xwr14xx.aer4f -llibesm_xwr14xx.aer4f -llibgpio_xwr14xx.aer4f -llibsoc_xwr14xx.aer4f -llibpinmux_xwr14xx.aer4f -llibcrc_xwr14xx.aer4f -llibuart_xwr14xx.aer4f -llibmailbox_xwr14xx.aer4f -llibmmwavelink_xwr14xx.aer4f -llibmmwave_xwr14xx.aer4f -llibadcbuf_xwr14xx.aer4f -llibdma_xwr14xx.aer4f -llibedma_xwr14xx.aer4f -llibcli_xwr14xx.aer4f -llibhwa_xwr14xx.aer4f -llibcbuff_xwr14xx.aer4f -llibhsiheader_xwr14xx.aer4f -lrtsv7R4_T_le_v3D16_eabi.lib -llibc.a
    <Linking>
    Finished building target: "xwr14xx_mmw_mss.xer4f"
     
    /home/akd/ti/mmwave_sdk_01_02_00_05/packages/scripts/ImageCreator/xwr14xx/out2rprc/out2rprc.exe xwr14xx_mmw_mss.xer4f xwr14xx_mmw_mss.bin 0x200000
    Parsing the input object file, xwr14xx_mmw_mss.xer4f.
    Appending zeros 0
    Appending zeros 256
    Appending zeros 121472
    Appending zeros 1359085568
    File conversion complete!
    /home/akd/ti/mmwave_sdk_01_02_00_05/packages/scripts/ImageCreator/append_bin_crc/gen_bincrc32.exe xwr14xx_mmw_mss.bin
    makefile:201: recipe for target 'post-build' failed
    000b:fixme:winediag:start_process Wine Staging 3.14 is a testing version containing experimental patches.
    000b:fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org.
     
    gmake[3]: execvp: /home/akd/ti/mmwave_sdk_01_02_00_05/packages/scripts/ImageCreator/append_bin_crc/gen_bincrc32.exe: Permission denied
    gmake[3]: [post-build] Error 127 (ignored)

    **** Build Finished ****


                   

  • Hi Allen,

    Thanks for providing the information. From the build log, it appears that the final step i.e.appending CRC to the binary failed, apparently due to a permission issue but the actual problem is that the windows executable version of the crc utility (gen_bincrc32.exe) was called. Did you modify generateBin.sh to invoke the windows executable with Wine, as seen in the build output given below? Please note that while the build process calls out2rprc.exe (a windows executable) on Linux using mono, there is a unix version of gen_bincrc32 under <TI_INSTALL_DIR>\mmwave_sdk_01_02_00_05\packages\scripts\ImageCreator\append_bin_crc and as shown in generateBin.sh snippet shown below:

    --------------------------------------------------------

    File conversion complete!
    /home/akd/ti/mmwave_sdk_01_02_00_05/packages/scripts/ImageCreator/append_bin_crc/gen_bincrc32.exe xwr14xx_mmw_mss.bin
    makefile:201: recipe for target 'post-build' failed
    000b:fixme:winediag:start_process Wine Staging 3.14 is a testing version containing experimental patches.
    000b:fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org.
     
    gmake[3]: execvp: /home/akd/ti/mmwave_sdk_01_02_00_05/packages/scripts/ImageCreator/append_bin_crc/gen_bincrc32.exe: Permission denied
    gmake[3]: [post-build] Error 127 (ignored)

    --------------------------------------------------------

    Thanks

    -Nitin

  • Hi Nitin,

    Yes, am aware of the permissions issue. What I sent you was output based upon the installation instructions. I assume when the windows binary failed to run, no crc was created and appended by the gen_bincrc32 binary or is just the genbincrc32 the only binary required in the linux version which creates the crc and appends it?

    I had then changed the permissions on out2rpcr.exe so mono could execute the binary. I received no error on the build but the binary did not work on the part.

    I did comment out the window's part in generateBin.sh but still got the build error which is bothersome. I assume that since the shell script errored out when it could not run out2rprc.exe, the script stopped running and did not run gen_bincrc32.

    So, I'm I too edit the generateBin.sh to remove the window's binary run? If so, the file I edited has not effect on the build process. I had then search the file system to see if another generateBin.sh existed. Another one existed inteh xwr16xx space but I am should not be in that space.

    Please advise.

    Al
  • Allen,

    You should not need to change anything in generateBin.sh provided as part of SDK installation.

    After the compilation (and linking) step which produces a .xer4f file, the flash-able binary is generated in 2 steps,

    Step-1

    Out2rprc.exe is executed using mono (which executes windows executable on Linux) to generate .bin image from the .xer4f. The following code from generateBin.sh does this.

    # To convert .out to .bin file
    
    # mono runs windows executable on linux
    
    echo mono ${OUT2RPRC_EXE} "$@"
    
    mono ${OUT2RPRC_EXE} "$@"
    

    Step-2

    CRC is appended to the bin file using gen_bincrc32. Note that gen_bincrc32 (without any extension) itself is the Linux equivalent of gen_bincrc32.exe which is present in the same directory. On Linux, the generateBin.sh script calls the Linux equivalent as per the following code:

    GEN_BINCRC32=${MMWAVE_SDK_INSTALL_PATH}/scripts/ImageCreator/append_bin_crc/gen_bincrc32
    ...
    ...
    ...
        # To append CRC of image in the same bin output file.
        ${GEN_BINCRC32} $2

    1. "I had then changed the permissions on out2rpcr.exe so mono could execute the binary. I received no error on the build but the binary did not work on the part."

    [NS]: This is OK. If out2rprc.exe and/or mono did not have execute permissions for some reason, you rightly changed the permissions to be able to execute it. out2rprc.ece is executed through mono to generate the .bin from .xer4f

    2. "I did comment out the window's part in generateBin.sh but still got the build error which is bothersome. I assume that since the shell script errored out when it could not run out2rprc.exe, the script stopped running and did not run gen_bincrc32"

    [NS]: I'm not sure what "windows part" means here. As detailed in the above steps, the CRC is appended using gen_bincrc32 (no extension) utility which is called inside generateBin.sh.

    You do not need to change anything in the script. However, you should check the permissions on gen_bincrc32 (no extension) utility as well and enable execute permissions on it using chmod if needed.

    3. "So, I'm I too edit the generateBin.sh to remove the window's binary run"

    [NS]: Again, if you have all the tools installed correctly and both out2rprc.exe (including mono) and gen_bincrc32 have execute permissions, the build should work without having to change anything in generateBin.sh

  • Hi Nitin,

    Thanks for the clarification.  I will try one more time with the permission's bit set to execute and not changes to any scripts which will result in no gmake build errors but I am afraid it will not run correctly since I have tried that.  When I monitor the config serial line, I get none ascii characters coming from the demo board.  With a prebuilt binary, I do not.

    Would decompiling the binary I build and the prebuilt provide additional information?  I am between a rock and a hard place.

    I am out of the office for the day.  What else can you suggest that I look at?

    Al

  • Nitin,

    I regenerated the binary.  No build error were reported.  The  reported crc was >>>> Binary CRC32 = 59b2ba9f <<<<.  I checked the end of the generated binary with a hex editor.  It did have the current crc.

    I do not have the hardware with me to confirm if the binary will run on the part but I suspect it will not since I have tried but I will try  tomorrow.

    My build uses (which the build indicates)

    bios_6_53_02_00

    dsplib_c64Px_3_4_0_0

    dsplib_c674x_3_4_0_0

    mathlib_c674x_3_1_2_1

    mmwave_sdk_01_02_00_05

    ti-cgt-arm_16.9.6.LTS

    ti-cgt-c6000_8.1.3

    xdctools_3_50_04_43_core

    I think disassembling my build can comparing to a prebuilt dissassembled binary could indicate the problem.

    Al

  • Allen,

    If this doesn't work, you can begin by comparing the file sizes and corresponding .map files for the pre-compiled binary and your own version to see if there are any significant differences.

    Also, just to confirm, when you flash your own compiled binary please ensure that you also flash the RADARSS firmware in MetaImage 1 as mentioned in this thread:

    IWR1443BOOST: Exception Error in OOB Demo ?

    Thanks

    -Nitin

  • Nitin,

    I have always flashed the radarss firmware image everytime I flashed a new MetaImage 2 binary.  The file sizes are

    prebuilt:  117580 bytes xwr14xx_mmw_demo_mss.bin

    my build: 129148 bytes xwr14xx_mmw_mss.bin

    The .map files are significantly different in content.  I have

    prebuilt: 361038 xwr14xx_mmw_demo_mss.map

    my build: 363023 xwr14xx_mmw_mss.map

    The attached image illustrates that the difference amount between the two map files is significant.  The yellow/black bar on the right highlights the differences.  The yellow indicates differences and the black indicates no difference.  I have also attached my .map file.  The prebuilt version I assume you have (perhaps too large to include both).

    I do not have the experience to compare and contrast the two .map files to ascertain what is wrong.

    I will re-confirm in the morning that my build will not run in the part.

    Al

    ******************************************************************************

    TI ARM Linker Unix v16.9.6

    ******************************************************************************

    >> Linked Tue Sep 11 22:03:17 2018

    OUTPUT FILE NAME: <xwr14xx_mmw_mss.xer4f>

    ENTRY POINT SYMBOL: "_c_int00" address: 000180e0

    MEMORY CONFIGURATION

    name origin length used unused attr fill

    ---------------------- -------- --------- -------- -------- ---- --------

    PAGE 0:

    VECTORS 00000000 00000100 0000003c 000000c4 X

    PROG_RAM 00000100 0001ff00 0001ec65 0000129b R X

    DATA_RAM 08000000 00010000 0000c5d0 00003a30 RW

    L3_RAM 51020000 00040000 00000b78 0003f488 RW

    HWA_RAM 52030000 00010000 00010000 00000000 RW

    PAGE 1:

    L3_RAM 51020000 00040000 00040000 00000000 RW

    SEGMENT ALLOCATION MAP

    run origin load origin length init length attrs members

    ---------- ----------- ---------- ----------- ----- -------

    00000000 00000000 0000003c 0000003c r--

    00000000 00000000 0000003c 0000003c r-- .vecs

    00000100 00000100 0001d974 0001d974 r-x

    00000100 00000100 0001d974 0001d974 r-x .text

    0001da80 0001da80 00000e81 00000e81 r--

    0001da80 0001da80 00000e81 00000e81 r-- .const

    0001e910 0001e910 00000470 00000470 r--

    0001e910 0001e910 00000470 00000470 r-- .cinit

    08000000 08000000 0000c5d8 00000000 rw-

    08000000 08000000 00008000 00000000 rw- systemHeap

    08008000 08008000 00001d34 00000000 rw- .data

    08009d38 08009d38 00001bec 00000000 rw- .bss

    0800b928 0800b928 00000800 00000000 rw- .myFiqStack

    0800c128 0800c128 000004b0 00000000 rw- .stack

    51020000 51020000 00000b78 00000b78 r-x

    51020000 51020000 00000b78 00000b78 r-x .overlay

    52030000 52030000 00010000 00000000 rw-

    52030000 52030000 00010000 00000000 rw- .hwaBufs

    51020000 51020000 00040000 00000000 rw-

    51020000 51020000 00040000 00000000 rw- .l3ram

    SECTION ALLOCATION MAP

    output attributes/

    section page origin length input sections

    -------- ---- ---------- ---------- ----------------

    systemHeap

    * 0 08000000 00008000 UNINITIALIZED

    08000000 00008000 mmw_per4f.oer4f (systemHeap)

    .overlay 0 51020000 00000b78

    51020000 00000278 main.oer4f (.text:MmwDemo_initTask)

    51020278 00000070 libmailbox_xwr14xx.aer4f : mailbox.oer4f (.text:Mailbox_init)

    510202e8 000000df data_path.oer4f (.text:MmwDemo_edmaInit)

    510203c7 00000001 --HOLE-- [fill = 0]

    510203c8 00000224 libuart_xwr14xx.aer4f : uartsci.oer4f (.text:UartSci_open)

    510205ec 000000dc libmmwave_xwr14xx.aer4f : mmwave.oer4f (.text:MMWave_init)

    510206c8 00000098 : mmwave_link.oer4f (.text:MMWave_initLink)

    51020760 00000012 libcrc_xwr14xx.aer4f : crc.oer4f (.text:CRC_initConfigParams)

    51020772 00000002 --HOLE-- [fill = 0]

    51020774 000001f8 : crc.oer4f (.text:CRC_open)

    5102096c 0000008c libmmwavelink_xwr14xx.aer4f : rl_device.oer4f (.text:rlDevicePowerOn)

    510209f8 00000008 : rl_driver.oer4f (.tramp.rlDriverDeInit.1)

    51020a00 00000008 : rl_driver.oer4f (.tramp.rlDriverInit.1)

    51020a08 00000008 : rl_device.oer4f (.tramp.rlDevicePowerOff.1)

    51020a10 00000008 : rl_driver.oer4f (.tramp.rlDriverGetHandle.1)

    51020a18 00000008 libosal_xwr14xx.aer4f : MemoryP_tirtos.oer4f (.tramp.MemoryP_ctrlFree.1)

    51020a20 00000008 libcrc_xwr14xx.aer4f : crc.oer4f (.tramp.CRC_getCRCTypeBitValue.1)

    51020a28 00000008 : crc.oer4f (.tramp.CSL_FINSR.1)

    51020a30 00000008 : crc.oer4f (.tramp.CRC_getCRCDataSelectBitValue.1)

    51020a38 00000008 libmmwave_xwr14xx.aer4f : mmwave_link.oer4f (.tramp.MMWave_initMMWaveLink.1)

    51020a40 00000008 : mmwave_listlib.oer4f (.tramp.MMWave_listAdd.1)

    51020a48 00000008 : mmwave.oer4f (.tramp.MMWave_decodeErrorLevel.1)

    51020a50 00000008 : mmwave.oer4f (.tramp.MMWave_encodeError.1)

    51020a58 00000008 : mmwave_xwr14xx.oer4f (.tramp.MMWave_deviceInitFxn.1)

    51020a60 00000008 rtsv7R4_T_le_v3D16_eabi.lib : memcpy_t2.obj (.tramp.memcpy.2)

    51020a68 00000008 libosal_xwr14xx.aer4f : HwiP_tirtos.oer4f (.tramp.HwiP_create.1)

    51020a70 00000008 : HwiP_tirtos.oer4f (.tramp.HwiP_Params_init.1)

    51020a78 00000008 libuart_xwr14xx.aer4f : uartsci.oer4f (.tramp.CSL_FINSR.1)

    51020a80 00000008 libosal_xwr14xx.aer4f : SemaphoreP_tirtos.oer4f (.tramp.SemaphoreP_create.1)

    51020a88 00000008 : SemaphoreP_tirtos.oer4f (.tramp.SemaphoreP_Params_init.1)

    51020a90 00000008 : MemoryP_tirtos.oer4f (.tramp.MemoryP_ctrlAlloc.1)

    51020a98 00000008 main.oer4f (.tramp._MmwDemo_debugAssert.1)

    51020aa0 00000008 libedma_xwr14xx.aer4f : edma.oer4f (.tramp.EDMA_init.1)

    51020aa8 00000008 : edma.oer4f (.tramp.EDMA_getNumInstances.1)

    51020ab0 00000008 libosal_xwr14xx.aer4f : HwiP_tirtos.oer4f (.tramp.HwiP_restore.1)

    51020ab8 00000008 : HwiP_tirtos.oer4f (.tramp.HwiP_disable.1)

    51020ac0 00000008 : DebugP_tirtos.oer4f (.tramp._DebugP_assert.1)

    51020ac8 00000008 mmw_per4f.oer4f (.tramp.ti_sysbios_knl_Semaphore_create.1)

    51020ad0 00000008 mmw_per4f.oer4f (.tramp.ti_sysbios_knl_Semaphore_Params__init__S.1)

    51020ad8 00000008 libcli_xwr14xx.aer4f : cli.oer4f (.tramp.CLI_write.1)

    51020ae0 00000008 libsoc_xwr14xx.aer4f : soc.oer4f (.tramp.SOC_registerSysIntListener.1)

    51020ae8 00000008 sensor_mgmt.oer4f (.tramp.MmwDemo_sensorMgmtInit.1)

    51020af0 00000008 mmw_cli.oer4f (.tramp.MmwDemo_CLIInit.1)

    51020af8 00000008 mmw_per4f.oer4f (.tramp.ti_sysbios_knl_Task_create.1)

    51020b00 00000008 mmw_per4f.oer4f (.tramp.ti_sysbios_knl_Task_Params__init__S.1)

    51020b08 00000008 sysbios.aer4f : BIOS.obj (.tramp.ti_sysbios_family_arm_v7a_Pmu_startCounter__E.1)

    51020b10 00000008 : BIOS.obj (.tramp.ti_sysbios_family_arm_v7a_Pmu_configureCounter__E.1)

    51020b18 00000008 main.oer4f (.tramp.MmwDemo_dataPathOpen.1)

    51020b20 00000008 libmmwave_xwr14xx.aer4f : mmwave.oer4f (.tramp.MMWave_sync.1)

    51020b28 00000008 rtsv7R4_T_le_v3D16_eabi.lib : memset_t2.obj (.tramp.memset.2)

    51020b30 00000008 mmw_lvds_stream.oer4f (.tramp.MmwDemo_LVDSStreamInit.1)

    51020b38 00000008 libuart_xwr14xx.aer4f : UART.oer4f (.tramp.UART_open.1)

    51020b40 00000008 : UART.oer4f (.tramp.UART_Params_init.1)

    51020b48 00000008 libpinmux_xwr14xx.aer4f : pinmux.oer4f (.tramp.Pinmux_Set_FuncSel.1)

    51020b50 00000008 : pinmux.oer4f (.tramp.Pinmux_Set_OverrideCtrl.1)

    51020b58 00000008 main.oer4f (.tramp.MmwDemo_dataPathInit.1)

    51020b60 00000008 libgpio_xwr14xx.aer4f : gpio.oer4f (.tramp.GPIO_init.1)

    51020b68 00000008 libuart_xwr14xx.aer4f : UART.oer4f (.tramp.UART_init.1)

    51020b70 00000008 mmw_per4f.oer4f (.tramp.xdc_runtime_System_printf__E.1)

    .hwaBufs 0 52030000 00010000 UNINITIALIZED

    52030000 00010000 data_path.oer4f (.hwaBufs)

    .l3ram 1 51020000 00040000 UNINITIALIZED

    51020000 00040000 main.oer4f (.l3ram)

    .text 0 00000100 0001d974

    00000100 0000107a rtsv7R4_T_le_v3D16_eabi.lib : _printfi.obj (.text)

    0000117a 00000002 libadcbuf_xwr14xx.aer4f : adcbuf_mmwave.oer4f (.text:ADCBUF_MMWave_init)

    0000117c 000005fc rtsv7R4_T_le_v3D16_eabi.lib : k_rem_pio2.obj (.text)

    00001778 0000058e libhwa_xwr14xx.aer4f : hwa.oer4f (.text:HWA_configParamSet)

    00001d06 0000000a libadcbuf_xwr14xx.aer4f : ADCBuf.oer4f (.text:ADCBuf_control)

    00001d10 00000564 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Event_pend__E)

    00002274 00000540 ti.targets.arm.rtsarm.aer4f : System.oer4f (.text:xdc_runtime_System_doPrint__I)

    000027b4 0000000c libedma_xwr14xx.aer4f : edma_low_level.oer4f (.text:EDMA3ChannelToParamMap)

    000027c0 000004b0 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Semaphore_pend__E)

    00002c70 000004a5 config_hwa_util.oer4f (.text:HWAutil_configDopplerFFT)

    00003115 00000001 --HOLE-- [fill = 0]

    00003116 00000002 libhwa_xwr14xx.aer4f : hwa.oer4f (.text:HWA_init)

    00003118 00000460 main.oer4f (.text:MmwDemo_parseProfileAndChirpConfig)

    00003578 00000438 data_path.oer4f (.text:MmwDemo_config2D_EDMA)

    000039b0 00000430 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Task_Instance_finalize__E)

    00003de0 0000042c libadcbuf_xwr14xx.aer4f : adcbuf_mmwave.oer4f (.text:ADCBUF_MMWave_control)

    0000420c 000003f4 rtsv7R4_T_le_v3D16_eabi.lib : s_cos.obj (.text)

    00004600 000003f4 : s_sin.obj (.text)

    000049f4 000003ec data_path.oer4f (.text:MmwDemo_processAngle)

    00004de0 00000374 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_timers_rti_Timer_Module_startup__E)

    00005154 0000000c libedma_xwr14xx.aer4f : edma_low_level.oer4f (.text:EDMAsetRegion)

    00005160 00000370 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_freeUnprotected__E)

    000054d0 00000304 : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_allocUnprotected__E)

    000057d4 0000000c libmmwave_xwr14xx.aer4f : mmwave_osal.oer4f (.text:MMWave_osalMutexUnlock)

    000057e0 00000304 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Task_sleep__E)

    00005ae4 00000300 libcbuff_xwr14xx.aer4f : cbuff.oer4f (.text:CBUFF_createSession)

    00005de4 0000000c libmmwave_xwr14xx.aer4f : mmwave_osal.oer4f (.text:MMWave_osalSemSignal)

    00005df0 000002fc sysbios.aer4f : BIOS.obj (.text:ti_sysbios_family_arm_exc_Exception_excDumpContext__I)

    000060ec 00000004 libcbuff_xwr14xx.aer4f : cbuff_csi.oer4f (.text:CBUFF_closeCSI)

    000060f0 000002fc sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Task_Instance_init__E)

    000063ec 000002e8 rx_ch_bias_measure.oer4f (.text:MmwDemo_rangeBiasRxChPhaseMeasure)

    000066d4 000002c4 mmw_cli.oer4f (.text:MmwDemo_CLIInit)

    00006998 000002c4 main.oer4f (.text:MmwDemo_transmitProcessedOutput)

    00006c5c 000002b8 rtsv7R4_T_le_v3D16_eabi.lib : ull_div32.obj (.text)

    00006f14 0000000c : copy_zero_init.obj (.text:decompress:ZI)

    00006f20 000002a8 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Task_schedule__I)

    000071c8 00000008 libosal_xwr14xx.aer4f : HwiP_tirtos.oer4f (.text:HwiP_disable)

    000071d0 00000290 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_family_arm_v7r_vim_Hwi_dispatchIRQC__I)

    00007460 00000288 libhsiheader_xwr14xx.aer4f : hsiheader.oer4f (.text:HSIHeader_createHeader)

    000076e8 00000008 libmmwave_xwr14xx.aer4f : mmwave_xwr14xx.oer4f (.text:MMWave_deviceGetDeviceInfo)

    000076f0 00000280 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_family_arm_exc_Exception_excHandler__I)

    00007970 00000258 data_path.oer4f (.text:MmwDemo_dataPathConfigCommon)

    00007bc8 00000254 main.oer4f (.text:MmwDemo_dataPathTask)

    00007e1c 00000250 libcbuff_xwr14xx.aer4f : cbuff.oer4f (.text:CBUFF_init)

    0000806c 00000240 libcli_xwr14xx.aer4f : cli_mmwave.oer4f (.text:CLI_MMWaveProfileCfg)

    000082ac 00000234 data_path.oer4f (.text:MmwDemo_dcRangeSignatureCompensation)

    000084e0 0000022c libcbuff_xwr14xx.aer4f : cbuff_lvds.oer4f (.text:CBUFF_openLVDS)

    0000870c 0000021c main.oer4f (.text:MmwDemo_dataPathConfigCQ)

    00008928 0000021c libsoc_xwr14xx.aer4f : soc_xwr14xx.oer4f (.text:SOC_deviceInit)

    00008b44 0000021a post_processing.oer4f (.text:MmwDemo_peakGrouping)

    00008d5e 00000002 libmmwave_xwr14xx.aer4f : mmwave_xwr14xx.oer4f (.text:MMWave_deviceEventFxn)

    00008d60 00000218 post_processing.oer4f (.text:MmwDemo_XYZestimation)

    00008f78 00000215 config_hwa_util.oer4f (.text:HWAutil_configAngleEstAzimuthElevation)

    0000918d 00000001 --HOLE-- [fill = 0]

    0000918e 00000002 libmmwave_xwr14xx.aer4f : mmwave_link.oer4f (.text:MMWave_maskHostIRQ)

    00009190 00000214 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Event_post__E)

    000093a4 0000020a libcbuff_xwr14xx.aer4f : cbuff_transfer.oer4f (.text:CBUFF_addLinkedList)

    000095ae 00000002 libuart_xwr14xx.aer4f : uartsci.oer4f (.text:UartSci_init)

    000095b0 00000205 config_hwa_util.oer4f (.text:HWAutil_configRangeFFT)

    000097b5 00000001 --HOLE-- [fill = 0]

    000097b6 00000002 rtsv7R4_T_le_v3D16_eabi.lib : i_div0.obj (.text)

    000097b8 00000200 : e_log10.obj (.text)

    000099b8 00000008 libmmwave_xwr14xx.aer4f : mmwave_link.oer4f (.text:MMWave_mboxCallbackFxn)

    000099c0 000001f8 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_Instance_init__E)

    00009bb8 000001f2 libhwa_xwr14xx.aer4f : hwa.oer4f (.text:HWA_configCommon)

    00009daa 00000002 --HOLE-- [fill = 0]

    00009dac 000001e8 mmw_lvds_stream.oer4f (.text:MmwDemo_LVDSStreamHwConfig)

    00009f94 000001e4 rtsv7R4_T_le_v3D16_eabi.lib : strtod.obj (.text)

    0000a178 00000008 data_path.oer4f (.text:MmwDemo_dataPathHwaDoneIsrCallback)

    0000a180 000001e4 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_family_arm_v7r_vim_Hwi_reconfig__E)

    0000a364 0000000c libmmwavelink_xwr14xx.aer4f : rl_driver.oer4f (.text:rlDriverGetPlatformId)

    0000a370 000001e4 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Semaphore_post__E)

    0000a554 000001d0 main.oer4f (.text:MmwDemo_ADCBufConfig)

    0000a724 000001c8 rtsv7R4_T_le_v3D16_eabi.lib : fopen.obj (.text)

    0000a8ec 000001c4 libcli_xwr14xx.aer4f : cli_mmwave.oer4f (.text:CLI_MMWaveChirpCfg)

    0000aab0 000001c4 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Clock_workFunc__E)

    0000ac74 000001c4 ti.targets.arm.rtsarm.aer4f : Error.oer4f (.text:xdc_runtime_Error_policyDefault__E)

    0000ae38 000001c0 libcbuff_xwr14xx.aer4f : cbuff_edma.oer4f (.text:CBUFF_configEDMA)

    0000aff8 000001b4 : cbuff_lvds.oer4f (.text:CBUFF_initLVDS)

    0000b1ac 000001b4 rtsv7R4_T_le_v3D16_eabi.lib : e_atan2.obj (.text)

    0000b360 000001a8 libcbuff_xwr14xx.aer4f : cbuff.oer4f (.text:CBUFF_activateSession)

    0000b508 000001a8 rtsv7R4_T_le_v3D16_eabi.lib : s_atan.obj (.text)

    0000b6b0 000001a4 libcli_xwr14xx.aer4f : cli_mmwave.oer4f (.text:CLI_MMWaveSubFrameCfg)

    0000b854 000001a1 : cli_mmwave.oer4f (.text:CLI_MMWaveVersion)

    0000b9f5 00000001 --HOLE-- [fill = 0]

    0000b9f6 0000000a libadcbuf_xwr14xx.aer4f : ADCBuf.oer4f (.text:ADCBuf_getChanBufAddr)

    0000ba00 000001a0 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_family_arm_v7r_vim_Hwi_initIntController__I)

    0000bba0 00000198 libmmwavelink_xwr14xx.aer4f : rl_driver.oer4f (.text:rlDriverCmdInvoke)

    0000bd38 00000008 libosal_xwr14xx.aer4f : SemaphoreP_tirtos.oer4f (.text:SemaphoreP_Params_init)

    0000bd40 00000194 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Task_postInit__I)

    0000bed4 0000018e post_processing.oer4f (.text:angleEstimationAzimElev)

    0000c062 00000002 --HOLE-- [fill = 0]

    0000c064 0000018c main.oer4f (.text:MmwDemo_eventCallbackFxn)

    0000c1f0 0000018c sysbios.aer4f : BIOS.obj (.text:ti_sysbios_family_arm_v7r_vim_Hwi_Instance_init__E)

    0000c37c 00000004 libcbuff_xwr14xx.aer4f : cbuff_csi.oer4f (.text:CBUFF_deinitCSI)

    0000c380 0000018c sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Task_startCore__E)

    0000c50c 00000188 libhwa_xwr14xx.aer4f : hwa.oer4f (.text:HWA_open)

    0000c694 00000188 mmw_per4f.oer4f (.text:xdc_runtime_System_printfExtend__I)

    0000c81c 00000184 libmmwavelink_xwr14xx.aer4f : rl_driver.oer4f (.text:rlDriverRxHdrRead)

    0000c9a0 0000017c ti.targets.arm.rtsarm.aer4f : Core-mem.oer4f (.text:xdc_runtime_Core_createObject__I)

    0000cb1c 00000004 libcbuff_xwr14xx.aer4f : cbuff_lvds.oer4f (.text:CBUFF_deinitLVDS)

    0000cb20 00000174 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_heaps_HeapBuf_Module_startup__E)

    0000cc94 0000000c : BIOS.obj (.text:ti_sysbios_family_arm_v7a_Pmu_configureCounterI__I)

    0000cca0 00000174 : BIOS.obj (.text:ti_sysbios_knl_Task_exit__E)

    0000ce14 00000170 libedma_xwr14xx.aer4f : edma.oer4f (.text:EDMA_open)

    0000cf84 00000170 libgpio_xwr14xx.aer4f : gpio.oer4f (.text:GPIO_setConfig)

    0000d0f4 00000170 mmw_lvds_stream.oer4f (.text:MmwDemo_LVDSStreamSwConfig)

    0000d264 0000000c sysbios.aer4f : BIOS.obj (.text:ti_sysbios_family_arm_v7a_Pmu_getCountI__E)

    0000d270 00000170 : BIOS.obj (.text:ti_sysbios_family_arm_v7r_vim_Hwi_Module_startup__E)

    0000d3e0 00000170 : BIOS.obj (.text:ti_sysbios_utils_Load_updateLoads__E)

    0000d550 00000160 libmailbox_xwr14xx.aer4f : mailbox.oer4f (.text:Mailbox_open)

    0000d6b0 0000015c data_path.oer4f (.text:MmwDemo_rxChanPhaseBiasCompensation)

    0000d80c 00000158 ti.targets.arm.rtsarm.aer4f : Startup.oer4f (.text:xdc_runtime_Startup_startMods__I)

    0000d964 00000154 libedma_xwr14xx.aer4f : edma.oer4f (.text:EDMA_error_isr)

    0000dab8 00000008 libmmwavelink_xwr14xx.aer4f : rl_driver.oer4f (.text:rlDriverGetHandle)

    0000dac0 00000154 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_utils_Load_updateThreadContexts__E)

    0000dc14 00000150 libmmwave_xwr14xx.aer4f : mmwave_link.oer4f (.text:MMWave_initMMWaveLink)

    0000dd64 0000014c libcli_xwr14xx.aer4f : cli_mmwave.oer4f (.text:CLI_MMWaveFrameCfg)

    0000deb0 0000014c : cli.oer4f (.text:CLI_task)

    0000dffc 0000014c mmw_cli.oer4f (.text:MmwDemo_CLICalibDcRangeSig)

    0000e148 0000014c data_path.oer4f (.text:MmwDemo_config1D_EDMA)

    0000e294 00000144 libhsiheader_xwr14xx.aer4f : hsiheader.oer4f (.text:HSIHeader_init)

    0000e3d8 00000144 ti.targets.arm.rtsarm.aer4f : Core-smem.oer4f (.text:xdc_runtime_Core_constructObject__I)

    0000e51c 00000004 libedma_xwr14xx.aer4f : edma.oer4f (.text:EDMA_getNumInstances)

    0000e520 00000140 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Task_unblockI__E)

    0000e660 0000013e libuart_xwr14xx.aer4f : uartsci.oer4f (.text:UartSci_ISR)

    0000e79e 00000002 --HOLE-- [fill = 0]

    0000e7a0 0000013c libedma_xwr14xx.aer4f : edma.oer4f (.text:EDMA_configChannel)

    0000e8dc 00000004 libosal_xwr14xx.aer4f : HwiP_tirtos.oer4f (.text:HwiP_disableInterrupt)

    0000e8e0 00000138 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_family_arm_v7a_Pmu_configureCounter__E)

    0000ea18 00000008 mmw_per4f.oer4f (.text:ti_sysbios_family_arm_TaskSupport_Module__startupDone__S)

    0000ea20 00000130 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_timers_rti_Timer_getFreq__E)

    0000eb50 0000012f config_hwa_util.oer4f (.text:HWAutil_configDopplerFFTSingleRangeBin)

    0000ec7f 00000001 --HOLE-- [fill = 0]

    0000ec80 0000012c sensor_mgmt.oer4f (.text:MmwDemo_doSensorStop)

    0000edac 00000129 config_hwa_util.oer4f (.text:HWAutil_configCFAR)

    0000eed5 00000003 --HOLE-- [fill = 0]

    0000eed8 00000128 libcli_xwr14xx.aer4f : cli_mmwave.oer4f (.text:CLI_MMWaveContModeCfg)

    0000f000 00000128 libmmwavelink_xwr14xx.aer4f : rl_driver.oer4f (.text:rlDriverMsgRead)

    0000f128 00000124 libcli_xwr14xx.aer4f : cli_mmwave.oer4f (.text:CLI_MMWaveAdvFrameCfg)

    0000f24c 00000124 libedma_xwr14xx.aer4f : edma.oer4f (.text:EDMA_init)

    0000f370 00000124 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_gates_GateMutex_enter__E)

    0000f494 0000000c : tms570_Core_asm.obj (.text:ti_sysbios_family_arm_v7r_tms570_Core_getId__E)

    0000f4a0 00000124 : BIOS.obj (.text:ti_sysbios_utils_Load_taskCreateHook__E)

    0000f5c4 0000000c ti.targets.arm.rtsarm.aer4f : SysStd.oer4f (.text:xdc_runtime_SysStd_exit__E)

    0000f5d0 0000011c sysbios.aer4f : BIOS.obj (.text:ti_sysbios_timers_rti_Timer_startup__E)

    0000f6ec 0000011a config_edma_util.oer4f (.text:EDMAutil_configHwaTranspose)

    0000f806 0000000a libosal_xwr14xx.aer4f : MemoryP_tirtos.oer4f (.text:MemoryP_ctrlFree)

    0000f810 00000118 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_utils_Load_logLoads__I)

    0000f928 00000114 mmw_cli.oer4f (.text:MmwDemo_CLICompRangeBiasAndRxChanPhaseCfg)

    0000fa3c 00000114 libmmwavelink_xwr14xx.aer4f : rl_driver.oer4f (.text:rlDriverCmdSendRetry)

    0000fb50 00000114 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_utils_Load_idleFxn__E)

    0000fc64 00000110 libedma_xwr14xx.aer4f : edma.oer4f (.text:EDMA_transferComplete_isr)

    0000fd74 00000110 data_path.oer4f (.text:MmwDemo_configAngleEstimation_HWA)

    0000fe84 00000110 main.oer4f (.text:MmwDemo_dataPathConfig)

    0000ff94 00000110 sensor_mgmt.oer4f (.text:MmwDemo_doSensorOpen)

    000100a4 00000110 sensor_mgmt.oer4f (.text:MmwDemo_sensorMgmtTask)

    000101b4 0000010c data_path.oer4f (.text:MmwDemo_configCFAR_EDMA)

    000102c0 0000010b data_path.oer4f (.text:MmwDemo_dataPathCfgBuffers)

    000103cb 00000001 --HOLE-- [fill = 0]

    000103cc 00000108 libmailbox_xwr14xx.aer4f : mailbox.oer4f (.text:Mailbox_write)

    000104d4 0000000c mmw_per4f.oer4f (.text:xdc_runtime_Text_visitRope__I)

    000104e0 00000108 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Semaphore_Instance_init__E)

    000105e8 00000105 config_edma_util.oer4f (.text:EDMAutil_configSyncAwithChaining)

    000106ed 00000003 --HOLE-- [fill = 0]

    000106f0 00000102 config_edma_util.oer4f (.text:EDMAutil_configHwaContiguous)

    000107f2 00000002 --HOLE-- [fill = 0]

    000107f4 00000100 libcli_xwr14xx.aer4f : cli_mmwave.oer4f (.text:CLI_MMWaveBPMCfgAdvanced)

    000108f4 00000100 libmmwave_xwr14xx.aer4f : mmwave_link.oer4f (.text:MMWave_openLink)

    000109f4 00000100 : mmwave_link.oer4f (.text:MMWave_startLink)

    00010af4 00000100 libmmwavelink_xwr14xx.aer4f : rl_driver.oer4f (.text:rlDriverInit)

    00010bf4 000000fc libcbuff_xwr14xx.aer4f : cbuff.oer4f (.text:CBUFF_deinit)

    00010cf0 000000fc : cbuff.oer4f (.text:CBUFF_deleteSession)

    00010dec 000000fc libcrc_xwr14xx.aer4f : crc.oer4f (.text:CRC_computeSignature)

    00010ee8 000000fc data_path.oer4f (.text:MmwDemo_config1D_HWA)

    00010fe4 000000fc data_path.oer4f (.text:MmwDemo_config2D_HWA)

    000110e0 000000fc sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Task_blockI__E)

    000111dc 000000f8 post_processing.oer4f (.text:MmwDemo_dopplerCompensation)

    000112d4 000000f8 libmmwavelink_xwr14xx.aer4f : rl_driver.oer4f (.text:rlDriverRdVerifyMsg)

    000113cc 000000f2 ti.targets.arm.rtsarm.aer4f : Text.oer4f (.text:xdc_runtime_Text_putSite__E)

    000114be 00000002 --HOLE-- [fill = 0]

    000114c0 000000ec auto_init.aer4f : auto_init.oer4f (.text)

    000115ac 000000ec rtsv7R4_T_le_v3D16_eabi.lib : s_scalbn.obj (.text)

    00011698 000000ea config_hwa_util.oer4f (.text:HWAutil_configAngleEstAzimuth)

    00011782 00000002 --HOLE-- [fill = 0]

    00011784 000000e4 libmmwave_xwr14xx.aer4f : mmwave_link.oer4f (.text:MMWave_asyncEventHandler)

    00011868 00000008 sysbios.aer4f : a15_TimestampProvider_asm.obj (.text:ti_sysbios_family_arm_a15_TimestampProvider_get32__E)

    00011870 000000e4 : BIOS.obj (.text:ti_sysbios_knl_Task_Module_startup__E)

    00011954 000000e4 ti.targets.arm.rtsarm.aer4f : Text.oer4f (.text:xdc_runtime_Text_putMod__E)

    00011a38 000000e2 libedma_xwr14xx.aer4f : edma.oer4f (.text:EDMA_paramConfig_assist)

    00011b1a 00000002 --HOLE-- [fill = 0]

    00011b1c 000000e2 main.oer4f (.text:MmwDemo_EDMA_CQTransferCompletionCallbackFxn)

    00011bfe 00000002 --HOLE-- [fill = 0]

    00011c00 000000e0 libcli_xwr14xx.aer4f : cli.oer4f (.text:CLI_open)

    00011ce0 000000e0 sensor_mgmt.oer4f (.text:MmwDemo_doSensorStart)

    00011dc0 000000e0 rtsv7R4_T_le_v3D16_eabi.lib : s_floor.obj (.text)

    00011ea0 000000e0 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_family_arm_v7a_Pmu_getCount__E)

    00011f80 000000e0 : BIOS.obj (.text:ti_sysbios_family_arm_v7a_Pmu_startCounter__E)

    00012060 000000dc libcbuff_xwr14xx.aer4f : cbuff_transfer.oer4f (.text:CBUFF_setupNonInterleaved_ADC_CP)

    0001213c 000000dc libmailbox_xwr14xx.aer4f : mailbox.oer4f (.text:Mailbox_read)

    00012218 000000dc data_path.oer4f (.text:MmwDemo_configCFAR_HWA)

    000122f4 000000dc main.oer4f (.text:MmwDemo_dataPathConfigCQEdma)

    000123d0 000000dc rtsv7R4_T_le_v3D16_eabi.lib : s_ceil.obj (.text)

    000124ac 000000dc : setvbuf.obj (.text)

    00012588 000000da config_edma_util.oer4f (.text:EDMAutil_configHwaOneHotSignature)

    00012662 00000002 --HOLE-- [fill = 0]

    00012664 000000d8 libadcbuf_xwr14xx.aer4f : adcbuf_mmwave.oer4f (.text:ADCBUF_MMWave_open)

    0001273c 000000d8 libedma_xwr14xx.aer4f : edma.oer4f (.text:EDMA_configErrorMonitoring)

    00012814 000000d4 libmmwavelink_xwr14xx.aer4f : rl_sensor.oer4f (.text:rlSetMultiBpmChirpConfig)

    000128e8 000000d0 libcbuff_xwr14xx.aer4f : cbuff_transfer.oer4f (.text:CBUFF_setupNonInterleaved_CP_ADC_CQ_USER)

    000129b8 000000d0 sysbios.aer4f : exc_Exception_asm.obj (.text:ti_sysbios_family_arm_exc_Exception_excHandlerAsm__I)

    00012a88 000000cc libedma_xwr14xx.aer4f : edma.oer4f (.text:EDMA_transferController_error_isr)

    00012b54 000000cc mmw_cli.oer4f (.text:MmwDemo_CLIPeakGroupingCfg)

    00012c20 000000cc libmmwavelink_xwr14xx.aer4f : rl_sensor.oer4f (.text:rlSetChirpConfig)

    00012cec 000000cc rtsv7R4_T_le_v3D16_eabi.lib : fflush.obj (.text)

    00012db8 00000008 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_family_arm_v7a_Pmu_getEnabled__E)

    00012dc0 000000cc : BIOS.obj (.text:ti_sysbios_timers_rti_Timer_initDevice__I)

    00012e8c 000000c8 libcbuff_xwr14xx.aer4f : cbuff_transfer.oer4f (.text:CBUFF_setupNonInterleaved_CP_ADC)

    00012f54 000000c8 libmmwave_xwr14xx.aer4f : mmwave_fullcfg.oer4f (.text:MMWave_addChirp)

    0001301c 000000c8 : mmwave_link.oer4f (.text:MMWave_configBPM)

    000130e4 000000c8 : mmwave_fullcfg.oer4f (.text:MMWave_flushCfg)

    000131ac 000000c8 : mmwave_fullcfg.oer4f (.text:MMWave_getChirpHandle)

    00013274 000000c8 main.oer4f (.text:main)

    0001333c 00000004 libosal_xwr14xx.aer4f : HwiP_tirtos.oer4f (.text:HwiP_enableInterrupt)

    00013340 000000c8 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_utils_Load_startup__E)

    00013408 000000c6 rx_ch_bias_measure.oer4f (.text:MmwDemo_quadFit)

    000134ce 00000002 --HOLE-- [fill = 0]

    000134d0 000000c4 libcbuff_xwr14xx.aer4f : cbuff_transfer.oer4f (.text:CBUFF_setupInterleaved_CP_ADC_CQ_USER)

    00013594 000000c4 : cbuff_transfer.oer4f (.text:CBUFF_setupNonInterleaved_CP_ADC_CQ)

    00013658 000000c4 main.oer4f (.text:MmwDemo_measurementResultOutput)

    0001371c 000000c4 sensor_mgmt.oer4f (.text:MmwDemo_sensorMgmtInit)

    000137e0 000000c4 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_family_arm_v7r_vim_Hwi_Instance_finalize__E)

    000138a4 000000c0 libcbuff_xwr14xx.aer4f : cbuff_csi.oer4f (.text:CBUFF_finalizeCSILinkListParams)

    00013964 000000c0 post_processing.oer4f (.text:MmwDemo_azimHeapMapDopplerCompensation)

    00013a24 000000c0 libmmwavelink_xwr14xx.aer4f : rl_sensor.oer4f (.text:rlSetFrameConfig)

    00013ae4 000000be libhwa_xwr14xx.aer4f : hwa.oer4f (.text:HWA_enableParamSetInterrupt)

    00013ba2 00000002 --HOLE-- [fill = 0]

    00013ba4 000000be data_path.oer4f (.text:MmwDemo_configDetectedObj2DFFT_HWA)

    00013c62 00000002 --HOLE-- [fill = 0]

    00013c64 000000bc libcbuff_xwr14xx.aer4f : cbuff_transfer.oer4f (.text:CBUFF_setupTransfer)

    00013d20 000000bc libcli_xwr14xx.aer4f : cli.oer4f (.text:CLI_help)

    00013ddc 000000bc libgpio_xwr14xx.aer4f : gpio.oer4f (.text:GPIO_write)

    00013e98 000000bc libmmwave_xwr14xx.aer4f : mmwave_link.oer4f (.text:MMWave_computeCRC)

    00013f54 000000bc rtsv7R4_T_le_v3D16_eabi.lib : open.obj (.text)

    00014010 000000bc sysbios.aer4f : BIOS.obj (.text:ti_sysbios_utils_Load_taskDeleteHook__E)

    000140cc 000000b8 libcbuff_xwr14xx.aer4f : cbuff.oer4f (.text:CBUFF_ISR)

    00014184 000000b8 mmw_lvds_stream.oer4f (.text:MmwDemo_LVDSStreamInit)

    0001423c 000000b8 sensor_mgmt.oer4f (.text:MmwDemo_sensorStateStopPending)

    000142f4 000000b8 libmmwavelink_xwr14xx.aer4f : rl_driver.oer4f (.text:rlDriverMsgWrite)

    000143ac 000000b8 rtsv7R4_T_le_v3D16_eabi.lib : k_cos.obj (.text)

    00014464 000000b6 libsoc_xwr14xx.aer4f : soc_mpu.o (.text)

    0001451a 00000002 --HOLE-- [fill = 0]

    0001451c 000000b4 libedma_xwr14xx.aer4f : edma.oer4f (.text:EDMA_startTransfer)

    000145d0 000000b4 ti.targets.arm.rtsarm.aer4f : Memory.oer4f (.text:xdc_runtime_Memory_alloc__E)

    00014684 000000b0 libcbuff_xwr14xx.aer4f : cbuff.oer4f (.text:CBUFF_deactivateSession)

    00014734 000000b0 : cbuff_transfer.oer4f (.text:CBUFF_setupInterleaved_CP_ADC_CQ)

    000147e4 000000b0 libmmwave_xwr14xx.aer4f : mmwave_fullcfg.oer4f (.text:MMWave_addProfile)

    00014894 000000b0 mmw_cli.oer4f (.text:MmwDemo_CLIChirpQualityRxSatMonCfg)

    00014944 000000b0 libmmwavelink_xwr14xx.aer4f : rl_sensor.oer4f (.text:rlSetProfileConfig)

    000149f4 000000ae rtsv7R4_T_le_v3D16_eabi.lib : _io_perm.obj (.text)

    00014aa2 00000002 --HOLE-- [fill = 0]

    00014aa4 000000ac libesm_xwr14xx.aer4f : esm.oer4f (.text:ESM_processInterrupt)

    00014b50 000000ac sensor_mgmt.oer4f (.text:MmwDemo_sensorStateStart)

    00014bfc 000000ac sensor_mgmt.oer4f (.text:MmwDemo_sensorStateStop)

    00014ca8 000000aa config_edma_util.oer4f (.text:EDMA_setup_shadow_link)

    00014d52 00000002 --HOLE-- [fill = 0]

    00014d54 000000a8 libcli_xwr14xx.aer4f : cli_mmwave.oer4f (.text:CLI_MMWaveExtensionHelp)

    00014dfc 000000a8 libedma_xwr14xx.aer4f : edma_low_level.oer4f (.text:EDMA3Init)

    00014ea4 000000a8 libmmwave_xwr14xx.aer4f : mmwave_link.oer4f (.text:MMWave_configureProfileChirp)

    00014f4c 000000a8 : mmwave_fullcfg.oer4f (.text:MMWave_getBpmChirpHandle)

    00014ff4 000000a8 libpinmux_xwr14xx.aer4f : pinmux.oer4f (.text:Pinmux_Set_OverrideCtrl)

    0001509c 000000a8 libsoc_xwr14xx.aer4f : soc.oer4f (.text:SOC_deregisterSysIntListener)

    00015144 000000a8 libmmwavelink_xwr14xx.aer4f : rl_sensor.oer4f (.text:rlSetAdvFrameConfig)

    000151ec 000000a6 data_path.oer4f (.text:MmwDemo_config2DSingleBin_EDMA)

    00015292 00000002 --HOLE-- [fill = 0]

    00015294 000000a5 ti.targets.arm.rtsarm.aer4f : System.oer4f (.text:xdc_runtime_System_formatNum__I)

    00015339 00000003 --HOLE-- [fill = 0]

    0001533c 000000a4 libesm_xwr14xx.aer4f : esm.oer4f (.text:ESM_init)

    000153e0 000000a4 libmmwave_xwr14xx.aer4f : mmwave_fullcfg.oer4f (.text:MMWave_addBpmChirp)

    00015484 000000a4 : mmwave.oer4f (.text:MMWave_start)

    00015528 000000a4 mmw_lvds_stream.oer4f (.text:MmwDemo_LVDSStream_EDMAInit)

    000155cc 000000a4 main.oer4f (.text:MmwDemo_transferLVDSUserData)

    00015670 000000a4 rtsv7R4_T_le_v3D16_eabi.lib : k_sin.obj (.text)

    00015714 000000a4 ti.targets.arm.rtsarm.aer4f : Error.oer4f (.text:xdc_runtime_Error_print__E)

    000157b8 000000a0 libadcbuf_xwr14xx.aer4f : adcbuf_mmwave.oer4f (.text:ADCBUF_MMWave_getChanBufAddr)

    00015858 000000a0 libcbuff_xwr14xx.aer4f : cbuff_transfer.oer4f (.text:CBUFF_setupInterleaved_CP_ADC)

    000158f8 000000a0 mmw_cli.oer4f (.text:MmwDemo_CLICfarCfg)

    00015998 000000a0 libsoc_xwr14xx.aer4f : soc.oer4f (.text:SOC_registerSysIntListener)

    00015a38 000000a0 libmmwavelink_xwr14xx.aer4f : rl_driver.oer4f (.text:rlDriverWaitForResponse)

    00015ad8 0000009f ti.targets.arm.rtsarm.aer4f : Text.oer4f (.text:xdc_runtime_Text_putLab__E)

    00015b77 00000001 --HOLE-- [fill = 0]

    00015b78 0000009e libuart_xwr14xx.aer4f : uartsci.oer4f (.text:UartSci_readChar)

    00015c16 00000002 --HOLE-- [fill = 0]

    00015c18 0000009c libcbuff_xwr14xx.aer4f : cbuff_transfer.oer4f (.text:CBUFF_setupInterleaved_ADC_CP)

    00015cb4 0000009c libmmwave_xwr14xx.aer4f : mmwave_link.oer4f (.text:MMWave_configLink)

    00015d50 0000009c : mmwave_fullcfg.oer4f (.text:MMWave_getProfileHandle)

    00015dec 0000009c mmw_cli.oer4f (.text:MmwDemo_CLIGuiMonSel)

    00015e88 0000009c main.oer4f (.text:MmwDemo_dataPathStart)

    00015f24 0000009c libuart_xwr14xx.aer4f : uartsci.oer4f (.text:UartSci_write)

    00015fc0 0000009c rtsv7R4_T_le_v3D16_eabi.lib : memcpy_t2.obj (.text)

    0001605c 00000004 libmmwave_xwr14xx.aer4f : mmwave_xwr14xx.oer4f (.text:MMWave_deviceCfgFxn)

    00016060 0000009c sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Clock_logTick__E)

    000160fc 00000098 libmmwave_xwr14xx.aer4f : mmwave_fullcfg.oer4f (.text:MMWave_getChirpCfg)

    00016194 00000098 rtsv7R4_T_le_v3D16_eabi.lib : fclose.obj (.text)

    0001622c 00000098 : fputc.obj (.text)

    000162c4 00000098 sysbios.aer4f : vim_Hwi_asm_switch.obj (.text)

    0001635c 00000098 ti.targets.arm.rtsarm.aer4f : Core-mem.oer4f (.text:xdc_runtime_Core_deleteObject__I)

    000163f4 00000096 libhwa_xwr14xx.aer4f : hwa.oer4f (.text:HWA_configRam)

    0001648a 00000094 libcbuff_xwr14xx.aer4f : cbuff_transfer.oer4f (.text:CBUFF_setupNonInterleaved_ADC)

    0001651e 00000002 --HOLE-- [fill = 0]

    00016520 00000094 libmmwavelink_xwr14xx.aer4f : rl_driver.oer4f (.text:rlDriverDeInit)

    000165b4 00000094 : rl_driver.oer4f (.text:rlDriverMsgReadCmdCtx)

    00016648 00000094 sysbios.aer4f : vim_Hwi_asm.obj (.text:ti_sysbios_family_arm_v7r_vim_Hwi_dispatchIRQ__I)

    000166dc 00000004 libmmwave_xwr14xx.aer4f : mmwave_xwr14xx.oer4f (.text:MMWave_deviceExecuteFxn)

    000166e0 00000094 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_utils_Load_updateCurrentThreadTime__E)

    00016774 00000090 libcbuff_xwr14xx.aer4f : cbuff_transfer.oer4f (.text:CBUFF_setupNonInterleaved_ADC_USER)

    00016804 00000090 libmailbox_xwr14xx.aer4f : mailbox.oer4f (.text:Mailbox_close)

    00016894 00000090 mmw_cli.oer4f (.text:MmwDemo_CLIChirpQualitySigImgMonCfg)

    00016924 00000090 libuart_xwr14xx.aer4f : uartsci.oer4f (.text:UartSci_read)

    000169b4 0000000a libosal_xwr14xx.aer4f : SemaphoreP_tirtos.oer4f (.text:SemaphoreP_post)

    000169be 00000002 --HOLE-- [fill = 0]

    000169c0 00000090 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_alloc__E)

    00016a50 0000008c libcbuff_xwr14xx.aer4f : cbuff_csi.oer4f (.text:CBUFF_initCSI)

    00016adc 0000008c libcli_xwr14xx.aer4f : cli_mmwave.oer4f (.text:CLI_MMWaveDataOutputMode)

    00016b68 0000008c libgpio_xwr14xx.aer4f : gpio.oer4f (.text:GPIO_init)

    00016bf4 0000008c mmw_cli.oer4f (.text:MmwDemo_CLIMeasureRangeBiasAndRxChanPhaseCfg)

    00016c80 0000008c main.oer4f (.text:MmwDemo_configLVDSHwData)

    00016d0c 0000008c data_path.oer4f (.text:MmwDemo_edmaOpen)

    00016d98 0000008c libmmwavelink_xwr14xx.aer4f : rl_driver.oer4f (.text:rlDriverMsgCmdReply)

    00016e24 0000008c ti.targets.arm.rtsarm.aer4f : Startup.oer4f (.text:xdc_runtime_Startup_exec__E)

    00016eb0 00000088 libcbuff_xwr14xx.aer4f : cbuff_transfer.oer4f (.text:CBUFF_setupInterleaved_ADC_USER)

    00016f38 00000088 libmmwave_xwr14xx.aer4f : mmwave_fullcfg.oer4f (.text:MMWave_getProfileCfg)

    00016fc0 00000088 libsoc_xwr14xx.aer4f : soc_xwr14xx.oer4f (.text:SOC_translateAddress)

    00017048 00000088 rtsv7R4_T_le_v3D16_eabi.lib : vsnprintf.obj (.text)

    000170d0 00000088 mmw_per4f.oer4f (.text:ti_sysbios_family_arm_v7r_vim_Hwi_create)

    00017158 00000086 libcbuff_xwr14xx.aer4f : cbuff_edma.oer4f (.text:CBUFF_closeEDMA)

    000171de 00000002 --HOLE-- [fill = 0]

    000171e0 00000084 libmmwave_xwr14xx.aer4f : mmwave_fullcfg.oer4f (.text:MMWave_getNumBpmChirp)

    00017264 00000084 mmw_cli.oer4f (.text:MmwDemo_CLIADCBufCfg)

    000172e8 00000008 ti.targets.arm.rtsarm.aer4f : Error.oer4f (.text:xdc_runtime_Error_getSite__E)

    000172f0 00000084 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_getStats__E)

    00017374 00000082 libhwa_xwr14xx.aer4f : hwa.oer4f (.text:HWA_paramDoneISR)

    000173f6 00000002 --HOLE-- [fill = 0]

    000173f8 00000081 libcbuff_xwr14xx.aer4f : cbuff_edma.oer4f (.text:CBUFF_setupEDMAShadowLink)

    00017479 00000003 --HOLE-- [fill = 0]

    0001747c 00000080 libcli_xwr14xx.aer4f : cli_mmwave.oer4f (.text:CLI_MMWaveChannelCfg)

    000174fc 00000080 libuart_xwr14xx.aer4f : uartsci.oer4f (.text:UartSci_writePolling)

    0001757c 00000080 libmmwavelink_xwr14xx.aer4f : rl_driver.oer4f (.text:rlDriverExecuteGetApi)

    000175fc 00000080 mmw_per4f.oer4f (.text:ti_sysbios_knl_Task_create)

    0001767c 00000004 libmmwave_xwr14xx.aer4f : mmwave_xwr14xx.oer4f (.text:MMWave_deviceInitFxn)

    00017680 00000080 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_utils_Load_taskSwitchHook__E)

    00017700 0000007e libosal_xwr14xx.aer4f : HwiP_tirtos.oer4f (.text:HwiP_create)

    0001777e 00000002 --HOLE-- [fill = 0]

    00017780 0000007d libcbuff_xwr14xx.aer4f : cbuff_lvds.oer4f (.text:CBUFF_initLVDSLinkListParams)

    000177fd 00000003 --HOLE-- [fill = 0]

    00017800 0000007c mmw_cli.oer4f (.text:MmwDemo_CLIMultiObjBeamForming)

    0001787c 0000007c libuart_xwr14xx.aer4f : uartsci.oer4f (.text:UartSci_readPolling)

    000178f8 0000007c sysbios.aer4f : arm_TaskSupport_asm.obj (.text:_ti_sysbios_family_arm_TaskSupport_buildTaskStack)

    00017974 0000007c ti.targets.arm.rtsarm.aer4f : Assert.oer4f (.text:xdc_runtime_Assert_raise__I)

    000179f0 0000007a rtsv7R4_T_le_v3D16_eabi.lib : memset_t2.obj (.text)

    00017a6a 00000002 --HOLE-- [fill = 0]

    00017a6c 00000078 libadcbuf_xwr14xx.aer4f : adcbuf_mmwave.oer4f (.text:ADCBUF_MMWave_getCQBufAddr)

    00017ae4 00000078 libcbuff_xwr14xx.aer4f : cbuff_transfer.oer4f (.text:CBUFF_configUserBufferEDMA)

    00017b5c 00000078 : cbuff.oer4f (.text:CBUFF_setVC)

    00017bd4 00000078 libcli_xwr14xx.aer4f : cli_mmwave.oer4f (.text:CLI_MMWaveADCCfg)

    00017c4c 00000078 libmmwave_xwr14xx.aer4f : mmwave_fullcfg.oer4f (.text:MMWave_getNumChirps)

    00017cc4 00000078 : mmwave.oer4f (.text:MMWave_open)

    00017d3c 00000078 sensor_mgmt.oer4f (.text:MmwDemo_sensorStateInit)

    00017db4 00000074 libcbuff_xwr14xx.aer4f : cbuff_csi.oer4f (.text:CBUFF_initCSILinkListParams)

    00017e28 00000074 : cbuff_transfer.oer4f (.text:CBUFF_setupInterleaved_ADC)

    00017e9c 00000074 libedma_xwr14xx.aer4f : edma.oer4f (.text:EDMA_configParamSet)

    00017f10 00000074 libmmwave_xwr14xx.aer4f : mmwave.oer4f (.text:MMWave_config)

    00017f84 00000074 mmw_lvds_stream.oer4f (.text:MmwDemo_LVDSStreamDeleteHwSession)

    00017ff8 00000074 mmw_lvds_stream.oer4f (.text:MmwDemo_LVDSStreamDeleteSwSession)

    0001806c 00000074 libsoc_xwr14xx.aer4f : soc.oer4f (.text:SOC_init)

    000180e0 00000074 boot.aer4f : boot.oer4f (.text)

    00018154 00000074 libmmwavelink_xwr14xx.aer4f : rl_driver.oer4f (.text:rlDriverAsyncEventHandler)

    000181c8 00000074 : rl_driver.oer4f (.text:rlDriverProcRdMsg)

    0001823c 00000074 rtsv7R4_T_le_v3D16_eabi.lib : getdevice.obj (.text)

    000182b0 00000074 : s_frexp.obj (.text)

    00018324 00000073 data_path.oer4f (.text:MmwDemo_dataPathTrigger1D)

    00018397 00000001 --HOLE-- [fill = 0]

    00018398 00000072 libmmwavelink_xwr14xx.aer4f : rl_driver.oer4f (.text:rlDriverClientCbCheck)

    0001840a 00000002 --HOLE-- [fill = 0]

    0001840c 00000070 libhsiheader_xwr14xx.aer4f : hsiheader.oer4f (.text:HSIHeader_deleteHeader)

    0001847c 00000070 libhwa_xwr14xx.aer4f : hwa.oer4f (.text:HWA_getDriverAccess)

    000184ec 00000004 libmmwave_xwr14xx.aer4f : mmwave_xwr14xx.oer4f (.text:MMWave_deviceOpenFxn)

    000184f0 00000070 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_family_arm_v7r_vim_Hwi_getStackInfo__E)

    00018560 00000070 : BIOS.obj (.text:ti_sysbios_family_arm_v7r_vim_Hwi_phantomIntHandler__I)

    000185d0 0000006c libgpio_xwr14xx.aer4f : gpio.oer4f (.text:GPIO_enableInt)

    0001863c 0000006c libmmwave_xwr14xx.aer4f : mmwave_link.oer4f (.text:MMWave_spawn)

    000186a8 0000006c : mmwave_link.oer4f (.text:MMWave_stopLink)

    00018714 0000006c mmw_lvds_stream.oer4f (.text:MmwDemo_LVDSStream_EDMAAllocateCBUFFHwChannel)

    00018780 0000006c mmw_lvds_stream.oer4f (.text:MmwDemo_LVDSStream_EDMAAllocateCBUFFSwChannel)

    000187ec 0000006c mmw_lvds_stream.oer4f (.text:MmwDemo_LVDSStream_EDMAFreeCBUFFHwChannel)

    00018858 0000006c mmw_lvds_stream.oer4f (.text:MmwDemo_LVDSStream_EDMAFreeCBUFFSwChannel)

    000188c4 0000006c main.oer4f (.text:MmwDemo_frameStartIntHandler)

    00018930 0000006c libpinmux_xwr14xx.aer4f : pinmux.oer4f (.text:Pinmux_Set_FuncSel)

    0001899c 0000006c rtsv7R4_T_le_v3D16_eabi.lib : copy_decompress_lzss.obj (.text:decompress:lzss)

    00018a08 0000006c : trgmsg.obj (.text)

    00018a74 0000000a libuart_xwr14xx.aer4f : UART.oer4f (.text:UART_read)

    00018a7e 00000002 --HOLE-- [fill = 0]

    00018a80 0000006c sysbios.aer4f : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_init__I)

    00018aec 00000004 libmmwave_xwr14xx.aer4f : mmwave_xwr14xx.oer4f (.text:MMWave_deviceStartFxn)

    00018af0 0000006c sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Task_allBlockedFunction__I)

    00018b5c 0000006a libuart_xwr14xx.aer4f : uartsci.oer4f (.text:UartSci_control)

    00018bc6 00000002 --HOLE-- [fill = 0]

    00018bc8 00000068 mmw_cli.oer4f (.text:MmwDemo_CLIClutterRemoval)

    00018c30 00000068 libmmwavelink_xwr14xx.aer4f : rl_driver.oer4f (.text:rlDriverExecuteSetApi)

    00018c98 00000068 : rl_driver.oer4f (.text:rlDriverHostIrqHandler)

    00018d00 00000068 rtsv7R4_T_le_v3D16_eabi.lib : hostlseek.obj (.text)

    00018d68 00000068 : hostrename.obj (.text)

    00018dd0 00000068 ti.targets.arm.rtsarm.aer4f : Error.oer4f (.text:xdc_runtime_Error_setX__E)

    00018e38 00000067 data_path.oer4f (.text:MmwDemo_dataPathWait1D)

    00018e9f 00000001 --HOLE-- [fill = 0]

    00018ea0 00000066 main.oer4f (.text:MmwDemo_ADCBufOpen)

    00018f06 00000066 post_processing.oer4f (.text:calcNoiseFloor)

    00018f6c 00000066 libmmwavelink_xwr14xx.aer4f : rl_device.oer4f (.text:rlDevicePowerOff)

    00018fd2 00000002 --HOLE-- [fill = 0]

    00018fd4 00000064 libcli_xwr14xx.aer4f : cli_mmwave.oer4f (.text:CLI_MMWaveLowPowerCfg)

    00019038 00000064 libedma_xwr14xx.aer4f : edma.oer4f (.text:EDMA_startDmaTransfer)

    0001909c 00000064 libmailbox_xwr14xx.aer4f : mailbox.oer4f (.text:Mailbox_boxEmptyISRBss)

    00019100 00000064 : mailbox.oer4f (.text:Mailbox_readFlush)

    00019164 00000064 libosal_xwr14xx.aer4f : SemaphoreP_tirtos.oer4f (.text:SemaphoreP_create)

    000191c8 00000064 rtsv7R4_T_le_v3D16_eabi.lib : fseek.obj (.text)

    0001922c 00000064 : sprintf.obj (.text)

    00019290 00000064 sysbios.aer4f : exc_Exception_asm.obj (.text:ti_sysbios_family_arm_exc_Exception_initCore0__I)

    000192f4 00000064 ti.targets.arm.rtsarm.aer4f : Core-params.oer4f (.text:xdc_runtime_Core_assignParams__I)

    00019358 00000060 libcli_xwr14xx.aer4f : cli_mmwave.oer4f (.text:CLI_MMWaveExtensionHandler)

    000193b8 00000060 libgpio_xwr14xx.aer4f : gpio.oer4f (.text:GPIO_setCallback)

    00019418 00000060 libmmwave_xwr14xx.aer4f : mmwave_xwr14xx.oer4f (.text:MMWave_deviceCfgAsyncEvent)

    00019478 00000060 : mmwave_link.oer4f (.text:MMWave_mboxOpen)

    000194d8 00000060 mmw_cli.oer4f (.text:MmwDemo_CLIAnalogMonitorCfg)

    00019538 00000060 mmw_lvds_stream.oer4f (.text:MmwDemo_LVDSStream_SwTriggerFrameDone)

    00019598 00000060 sensor_mgmt.oer4f (.text:MmwDemo_doSensorFrameStart)

    000195f8 00000060 libuart_xwr14xx.aer4f : uartsci.oer4f (.text:UartSci_writeChar)

    00019658 00000060 ti.targets.arm.rtsarm.aer4f : Text.oer4f (.text:xdc_runtime_Text_xprintf__I)

    000196b8 0000005f data_path.oer4f (.text:MmwDemo_dataPathWait2D)

    00019717 00000001 --HOLE-- [fill = 0]

    00019718 0000005f data_path.oer4f (.text:MmwDemo_dataPathWaitCFAR)

    00019777 00000001 --HOLE-- [fill = 0]

    00019778 0000005c libosal_xwr14xx.aer4f : DebugP_tirtos.oer4f (.text:DebugP_log2)

    000197d4 0000005c : DebugP_tirtos.oer4f (.text:DebugP_log3)

    00019830 0000005c libmmwave_xwr14xx.aer4f : mmwave.oer4f (.text:MMWave_stop)

    0001988c 0000005c libsoc_xwr14xx.aer4f : soc.oer4f (.text:SOC_enableLVDS)

    000198e8 0000005c rtsv7R4_T_le_v3D16_eabi.lib : hostopen.obj (.text)

    00019944 0000005c : hostread.obj (.text)

    000199a0 0000005c sysbios.aer4f : BIOS.obj (.text:ti_sysbios_family_arm_v7r_tms570_Core_Module_startup__E)

    000199fc 0000005c ti.targets.arm.rtsarm.aer4f : Core-label.oer4f (.text:xdc_runtime_Core_assignLabel__I)

    00019a58 0000005a libuart_xwr14xx.aer4f : uartsci.oer4f (.text:UartSci_readCancel)

    00019ab2 0000005a libmmwavelink_xwr14xx.aer4f : rl_driver.oer4f (.text:rlDriverCalChkSum)

    00019b0c 00000058 libosal_xwr14xx.aer4f : DebugP_tirtos.oer4f (.text:DebugP_log0)

    00019b64 00000058 : DebugP_tirtos.oer4f (.text:DebugP_log1)

    00019bbc 00000058 libedma_xwr14xx.aer4f : edma_low_level.oer4f (.text:EDMA3EnableChInShadowReg)

    00019c14 00000058 libesm_xwr14xx.aer4f : esm.oer4f (.text:ESM_highpriority_FIQ)

    00019c6c 00000058 libmmwave_xwr14xx.aer4f : mmwave.oer4f (.text:MMWave_execute)

    00019cc4 00000058 libmailbox_xwr14xx.aer4f : mailbox.oer4f (.text:Mailbox_boxFullISRBss)

    00019d1c 00000058 main.oer4f (.text:MmwDemo_mmWaveCtrlTask)

    00019d74 00000058 sensor_mgmt.oer4f (.text:MmwDemo_waitSensorStartComplete)

    00019dcc 00000058 libmmwavelink_xwr14xx.aer4f : rl_driver.oer4f (.text:rlDriverMsgReadSpawnCtx)

    00019e24 00000058 rtsv7R4_T_le_v3D16_eabi.lib : close.obj (.text)

    00019e7c 00000058 : hostwrite.obj (.text)

    00019ed4 0000000a libuart_xwr14xx.aer4f : UART.oer4f (.text:UART_write)

    00019ede 00000002 --HOLE-- [fill = 0]

    00019ee0 00000058 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_family_arm_TaskSupport_start__E)

    00019f38 00000008 ti.targets.arm.rtsarm.aer4f : SysStd.oer4f (.text:xdc_runtime_SysStd_ready__E)

    00019f40 00000058 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_hal_Hwi_checkStack)

    00019f98 00000058 mmw_per4f.oer4f (.text:ti_sysbios_rts_gnu_MemAlloc_alloc)

    00019ff0 00000056 libmmwavelink_xwr14xx.aer4f : rl_driver.oer4f (.text:rlDriverOsiCbCheck)

    0001a046 00000002 --HOLE-- [fill = 0]

    0001a048 00000054 libcrc_xwr14xx.aer4f : crc.oer4f (.text:CRC_getTransactionId)

    0001a09c 00000054 mmw_lvds_stream.oer4f (.text:MmwDemo_LVDSStream_HwTriggerFrameDone)

    0001a0f0 00000054 sensor_mgmt.oer4f (.text:MmwDemo_finishSensorStop)

    0001a144 00000054 rtsv7R4_T_le_v3D16_eabi.lib : ltoa.obj (.text)

    0001a198 00000008 ti.targets.arm.rtsarm.aer4f : System.oer4f (.text:xdc_runtime_System_Module_startup__E)

    0001a1a0 00000054 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_hal_Hwi_initStack)

    0001a1f4 00000054 mmw_per4f.oer4f (.text:ti_sysbios_knl_Semaphore_create)

    0001a248 00000054 ti.targets.arm.rtsarm.aer4f : System.oer4f (.text:xdc_runtime_System_atexit__E)

    0001a29c 00000054 : System.oer4f (.text:xdc_runtime_System_putchar__I)

    0001a2f0 00000053 : Text.oer4f (.text:xdc_runtime_Text_printVisFxn__I)

    0001a343 00000001 --HOLE-- [fill = 0]

    0001a344 00000052 libhwa_xwr14xx.aer4f : hwa.oer4f (.text:HWA_getDMAconfig)

    0001a396 00000002 --HOLE-- [fill = 0]

    0001a398 00000050 libcrc_xwr14xx.aer4f : crc.oer4f (.text:CRC_getSignature)

    0001a3e8 00000050 libedma_xwr14xx.aer4f : edma_low_level.oer4f (.text:EDMA3MapChToEvtQ)

    0001a438 00000050 libmmwave_xwr14xx.aer4f : mmwave.oer4f (.text:MMWave_sync)

    0001a488 00000050 libmmwavelink_xwr14xx.aer4f : rl_driver.oer4f (.text:rlDeviceIdentifyCmdDir)

    0001a4d8 00000050 : rl_driver.oer4f (.text:rlDriverVerifyCRC)

    0001a528 00000050 rtsv7R4_T_le_v3D16_eabi.lib : atoi.obj (.text)

    0001a578 00000050 : exit.obj (.text)

    0001a5c8 00000050 : u_div32.obj (.text)

    0001a618 00000006 libedma_xwr14xx.aer4f : edma_low_level.oer4f (.text:EDMA3ClrCCErr)

    0001a61e 00000002 --HOLE-- [fill = 0]

    0001a620 00000050 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Event_pendTimeout__I)

    0001a670 00000050 : BIOS.obj (.text:ti_sysbios_knl_Semaphore_pendTimeout__I)

    0001a6c0 0000004f data_path.oer4f (.text:MmwDemo_dataPathTrigger2D)

    0001a70f 00000001 --HOLE-- [fill = 0]

    0001a710 0000004c libedma_xwr14xx.aer4f : edma.oer4f (.text:EDMA_disableChannel)

    0001a75c 0000004c : edma.oer4f (.text:EDMA_enableChannel)

    0001a7a8 0000004c sensor_mgmt.oer4f (.text:MmwDemo_waitSensorStopComplete)

    0001a7f4 0000004c libuart_xwr14xx.aer4f : uartsci.oer4f (.text:UartSci_writeCancel)

    0001a840 0000004c rtsv7R4_T_le_v3D16_eabi.lib : cpy_tbl.obj (.text)

    0001a88c 0000004c mmw_per4f.oer4f (.text:ti_sysbios_gates_GateHwi_Object__create__S)

    0001a8d8 0000004c mmw_per4f.oer4f (.text:ti_sysbios_gates_GateMutex_Object__create__S)

    0001a924 0000004c mmw_per4f.oer4f (.text:ti_sysbios_heaps_HeapMem_Object__create__S)

    0001a970 0000004c mmw_per4f.oer4f (.text:ti_sysbios_knl_Event_create)

    0001a9bc 0000004c mmw_per4f.oer4f (.text:ti_sysbios_knl_Semaphore_construct)

    0001aa08 0000004b data_path.oer4f (.text:MmwDemo_EDMA_transferCompletionCallbackFxn)

    0001aa53 00000001 --HOLE-- [fill = 0]

    0001aa54 00000049 mmw_lvds_stream.oer4f (.text:MmwDemo_LVDSStream_EDMAAllocateCBUFFChannel)

    0001aa9d 00000001 --HOLE-- [fill = 0]

    0001aa9e 00000048 libcbuff_xwr14xx.aer4f : cbuff_transfer.oer4f (.text:CBUFF_setup_USER)

    0001aae6 00000002 --HOLE-- [fill = 0]

    0001aae8 00000048 libcli_xwr14xx.aer4f : cli.oer4f (.text:CLI_write)

    0001ab30 00000048 libhwa_xwr14xx.aer4f : hwa.oer4f (.text:HWA_deleteInstance)

    0001ab78 00000048 : hwa.oer4f (.text:HWA_enableDoneInterrupt)

    0001abc0 00000048 : hwa.oer4f (.text:HWA_readCFARPeakCountReg)

    0001ac08 00000048 libmmwavelink_xwr14xx.aer4f : rl_device.oer4f (.text:rlDeviceGetVersion)

    0001ac50 00000048 : rl_driver.oer4f (.text:rlDriverOsiInit)

    0001ac98 00000048 mmw_per4f.oer4f (.text:ti_sysbios_knl_Clock_doTick__I)

    0001ace0 00000048 ti.targets.arm.rtsarm.aer4f : System.oer4f (.text:xdc_runtime_System_processAtExit__E)

    0001ad28 00000047 data_path.oer4f (.text:MmwDemo_dataPathTriggerCFAR)

    0001ad6f 00000001 --HOLE-- [fill = 0]

    0001ad70 00000046 libmailbox_xwr14xx.aer4f : mailbox.oer4f (.text:CSL_FINSR)

    0001adb6 00000044 libcrc_xwr14xx.aer4f : crc.oer4f (.text:CRC_resetSignature)

    0001adfa 00000002 --HOLE-- [fill = 0]

    0001adfc 00000044 rtsv7R4_T_le_v3D16_eabi.lib : hostclose.obj (.text)

    0001ae40 00000044 : hostunlink.obj (.text)

    0001ae84 0000000a libuart_xwr14xx.aer4f : UART.oer4f (.text:UART_writePolling)

    0001ae8e 00000002 --HOLE-- [fill = 0]

    0001ae90 00000044 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_free__E)

    0001aed4 00000044 mmw_per4f.oer4f (.text:ti_sysbios_knl_Queue_construct)

    0001af18 00000006 libedma_xwr14xx.aer4f : edma_low_level.oer4f (.text:EDMA3ErrIntrHighStatusGet)

    0001af1e 00000002 --HOLE-- [fill = 0]

    0001af20 00000044 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_timers_rti_Timer_periodicStub__E)

    0001af64 00000044 ti.targets.arm.rtsarm.aer4f : Text.oer4f (.text:xdc_runtime_Text_cordText__E)

    0001afa8 00000043 data_path.oer4f (.text:MmwDemo_dataPathTrigger2DSingleBin)

    0001afeb 00000001 --HOLE-- [fill = 0]

    0001afec 00000042 libcbuff_xwr14xx.aer4f : cbuff_lvds.oer4f (.text:CBUFF_closeLVDS)

    0001b02e 00000042 libhwa_xwr14xx.aer4f : hwa.oer4f (.text:HWA_reset)

    0001b070 00000042 libmmwave_xwr14xx.aer4f : mmwave_link.oer4f (.text:MMWave_executeLink)

    0001b0b2 00000002 --HOLE-- [fill = 0]

    0001b0b4 00000040 libedma_xwr14xx.aer4f : edma.oer4f (.text:EDMA_linkParamSets)

    0001b0f4 00000040 libmmwave_xwr14xx.aer4f : mmwave.oer4f (.text:MMWave_decodeError)

    0001b134 00000040 libmmwavelink_xwr14xx.aer4f : rl_driver.oer4f (.text:rlDriverValidateHdr)

    0001b174 00000040 rtsv7R4_T_le_v3D16_eabi.lib : strtok.obj (.text)

    0001b1b4 00000040 mmw_per4f.oer4f (.text:ti_sysbios_BIOS_atExitFunc__I)

    0001b1f4 00000040 ti.targets.arm.rtsarm.aer4f : System.oer4f (.text:xdc_runtime_System_avprintf__E)

    0001b234 0000003f data_path.oer4f (.text:MmwDemo_dataPathWait2DFFTDetObj)

    0001b273 00000001 --HOLE-- [fill = 0]

    0001b274 0000003f data_path.oer4f (.text:MmwDemo_dataPathWaitAngleEstimation)

    0001b2b3 00000001 --HOLE-- [fill = 0]

    0001b2b4 0000003f data_path.oer4f (.text:MmwDemo_hwaOpen)

    0001b2f3 00000001 --HOLE-- [fill = 0]

    0001b2f4 0000003e libcbuff_xwr14xx.aer4f : cbuff_transfer.oer4f (.text:CBUFF_configCQEDMA)

    0001b332 0000003e libadcbuf_xwr14xx.aer4f : adcbuf_mmwave.oer4f (.text:CSL_FINSR)

    0001b370 0000003e libcbuff_xwr14xx.aer4f : cbuff.oer4f (.text:CSL_FINSR)

    0001b3ae 0000003e : cbuff_lvds.oer4f (.text:CSL_FINSR)

    0001b3ec 0000003e libcrc_xwr14xx.aer4f : crc.oer4f (.text:CSL_FINSR)

    0001b42a 0000003e libgpio_xwr14xx.aer4f : gpio.oer4f (.text:CSL_FINSR)

    0001b468 0000003e libhwa_xwr14xx.aer4f : hwa.oer4f (.text:CSL_FINSR)

    0001b4a6 0000003e libpinmux_xwr14xx.aer4f : pinmux.oer4f (.text:CSL_FINSR)

    0001b4e4 0000003e libsoc_xwr14xx.aer4f : soc.oer4f (.text:CSL_FINSR)

    0001b522 0000003e : soc_xwr14xx.oer4f (.text:CSL_FINSR)

    0001b560 0000003e libuart_xwr14xx.aer4f : uartsci.oer4f (.text:CSL_FINSR)

    0001b59e 0000003e libhwa_xwr14xx.aer4f : hwa.oer4f (.text:HWA_enable)

    0001b5dc 0000003e post_processing.oer4f (.text:MmwDemo_calcCompIdx)

    0001b61a 0000003e post_processing.oer4f (.text:MmwDemo_dopplerComp)

    0001b658 0000003e libuart_xwr14xx.aer4f : uartsci.oer4f (.text:UartSci_close)

    0001b696 0000003e mmwDemo_monitor.oer4f (.text:mmwDemo_cfgAnalogMonitor)

    0001b6d4 0000003c libcli_xwr14xx.aer4f : cli_mmwave.oer4f (.text:CLI_MMWaveFlushCfg)

    0001b710 0000003c libedma_xwr14xx.aer4f : edma.oer4f (.text:EDMA_chainChannels)

    0001b74c 0000003c libmailbox_xwr14xx.aer4f : mailbox.oer4f (.text:Mailbox_writeReset)

    0001b788 0000003c libsoc_xwr14xx.aer4f : soc.oer4f (.text:SOC_unhaltBSS)

    0001b7c4 0000003c libmmwavelink_xwr14xx.aer4f : rl_controller.oer4f (.text:rlGetSubBlock)

    0001b800 0000003c sysbios.aer4f : vim_Hwi_asm.obj (.text:ti_sysbios_family_arm_v7r_vim_Hwi_init__I)

    0001b83c 0000003c ti.targets.arm.rtsarm.aer4f : System.oer4f (.text:xdc_runtime_System_vprintf__E)

    0001b878 0000003a libhwa_xwr14xx.aer4f : hwa.oer4f (.text:HWA_setDMA2ACCManualTrig)

    0001b8b2 00000002 --HOLE-- [fill = 0]

    0001b8b4 0000003a libosal_xwr14xx.aer4f : HwiP_tirtos.oer4f (.text:HwiP_delete)

    0001b8ee 00000002 --HOLE-- [fill = 0]

    0001b8f0 00000038 libadcbuf_xwr14xx.aer4f : adcbuf_mmwave.oer4f (.text:ADCBUF_MMWave_close)

    0001b928 00000038 libcbuff_xwr14xx.aer4f : cbuff_transfer.oer4f (.text:CBUFF_addUserBufferLLEntry)

    0001b960 00000038 : cbuff_transfer.oer4f (.text:CBUFF_setupHeader)

    0001b998 00000038 libedma_xwr14xx.aer4f : edma_low_level.oer4f (.text:EDMA3ClrMissEvt)

    0001b9d0 00000038 libuart_xwr14xx.aer4f : UART.oer4f (.text:UART_init)

    0001ba08 00000038 mmw_per4f.oer4f (.text:ti_sysbios_BIOS_startFunc__I)

    0001ba40 00000038 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Task_restore__E)

    0001ba78 00000037 data_path.oer4f (.text:MmwDemo_dataPathTriggerAngleEstimation)

    0001baaf 00000001 --HOLE-- [fill = 0]

    0001bab0 00000036 libmmwavelink_xwr14xx.aer4f : rl_controller.oer4f (.text:rlAppendSubBlock)

    0001bae6 00000036 rtsv7R4_T_le_v3D16_eabi.lib : strncpy.obj (.text)

    0001bb1c 00000034 libadcbuf_xwr14xx.aer4f : ADCBuf.oer4f (.text:ADCBuf_open)

    0001bb50 00000034 libedma_xwr14xx.aer4f : edma.oer4f (.text:EDMA_configTransferControllerError)

    0001bb84 00000034 libmmwave_xwr14xx.aer4f : mmwave_link.oer4f (.text:MMWave_mboxWrite)

    0001bbb8 00000034 libsoc_xwr14xx.aer4f : soc_xwr14xx.oer4f (.text:SOC_enableHWA)

    0001bbec 00000034 libuart_xwr14xx.aer4f : UART.oer4f (.text:UART_open)

    0001bc20 00000034 mmw_per4f.oer4f (.text:ti_sysbios_BIOS_registerRTSLock__I)

    0001bc54 00000034 mmw_per4f.oer4f (.text:ti_sysbios_BIOS_removeRTSLock__I)

    0001bc88 00000034 mmw_per4f.oer4f (.text:ti_sysbios_family_arm_v7r_vim_Hwi_Object__delete__S)

    0001bcbc 00000034 mmw_per4f.oer4f (.text:ti_sysbios_gates_GateMutex_Object__delete__S)

    0001bcf0 00000034 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Clock_Module_startup__E)

    0001bd24 00000006 libedma_xwr14xx.aer4f : edma_low_level.oer4f (.text:EDMA3GetCCErrStatus)

    0001bd2a 00000006 : edma_low_level.oer4f (.text:EDMA3GetErrIntrStatus)

    0001bd30 00000034 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Idle_run__E)

    0001bd64 00000034 mmw_per4f.oer4f (.text:ti_sysbios_knl_Semaphore_Object__delete__S)

    0001bd98 00000034 ti.targets.arm.rtsarm.aer4f : Registry.oer4f (.text:xdc_runtime_Registry_findById__E)

    0001bdcc 00000034 : SysStd.oer4f (.text:xdc_runtime_SysStd_abort__E)

    0001be00 00000032 libcrc_xwr14xx.aer4f : crc.oer4f (.text:CRC_getCRCDataSelectBitValue)

    0001be32 00000002 --HOLE-- [fill = 0]

    0001be34 00000032 : crc.oer4f (.text:CRC_getCRCTypeBitValue)

    0001be66 00000032 libedma_xwr14xx.aer4f : edma.oer4f (.text:EDMA_configQueueThreshold)

    0001be98 00000032 libhwa_xwr14xx.aer4f : hwa.oer4f (.text:HWA_allParamDoneISR)

    0001beca 00000002 --HOLE-- [fill = 0]

    0001becc 00000030 libadcbuf_xwr14xx.aer4f : ADCBuf.oer4f (.text:ADCBuf_init)

    0001befc 00000030 libcbuff_xwr14xx.aer4f : cbuff_transfer.oer4f (.text:CBUFF_addCQLLEntry)

    0001bf2c 00000030 libmmwave_xwr14xx.aer4f : mmwave_listlib.oer4f (.text:MMWave_listRemoveNode)

    0001bf5c 00000030 data_path.oer4f (.text:MmwDemo_EDMA_errorCallbackFxn)

    0001bf8c 00000030 libmmwavelink_xwr14xx.aer4f : rl_sensor.oer4f (.text:rlSensorStart)

    0001bfbc 00000030 mmw_per4f.oer4f (.text:ti_sysbios_BIOS_rtsLock__I)

    0001bfec 00000004 libmmwave_xwr14xx.aer4f : mmwave_xwr14xx.oer4f (.text:MMWave_deviceStopFxn)

    0001bff0 00000030 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_family_arm_a15_TimestampProvider_autoRefreshFxn__I)

    0001c020 00000030 : BIOS.obj (.text:ti_sysbios_family_arm_v7r_vim_Hwi_disableInterrupt__E)

    0001c050 00000030 : BIOS.obj (.text:ti_sysbios_family_arm_v7r_vim_Hwi_enableInterrupt__E)

    0001c080 00000030 mmw_per4f.oer4f (.text:ti_sysbios_gates_GateHwi_Object__delete__S)

    0001c0b0 00000030 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_gates_GateMutex_Instance_init__E)

    0001c0e0 00000030 mmw_per4f.oer4f (.text:ti_sysbios_heaps_HeapMem_Object__delete__S)

    0001c110 00000030 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Task_restoreHwi__E)

    0001c140 00000030 ti.targets.arm.rtsarm.aer4f : Error.oer4f (.text:xdc_runtime_Error_check__E)

    0001c170 00000030 : Error.oer4f (.text:xdc_runtime_Error_raiseX__E)

    0001c1a0 00000030 : Memory.oer4f (.text:xdc_runtime_Memory_valloc__E)

    0001c1d0 0000002f data_path.oer4f (.text:MmwDemo_EDMA_transferControllerErrorCallbackFxn)

    0001c1ff 00000001 --HOLE-- [fill = 0]

    0001c200 0000002e libmmwave_xwr14xx.aer4f : mmwave_osal.oer4f (.text:MMWave_osalMutexCreate)

    0001c22e 0000002e : mmwave_osal.oer4f (.text:MMWave_osalSemCreate)

    0001c25c 0000002e sensor_mgmt.oer4f (.text:MmwDemo_setHsiClk)

    0001c28a 00000002 --HOLE-- [fill = 0]

    0001c28c 0000002c libedma_xwr14xx.aer4f : edma.oer4f (.text:EDMA_validate_channelIdchannelType)

    0001c2b8 0000002c libgpio_xwr14xx.aer4f : gpio.oer4f (.text:GPIO_HighPriorityISR)

    0001c2e4 0000002c : gpio.oer4f (.text:GPIO_LowPriorityISR)

    0001c310 0000002c libsoc_xwr14xx.aer4f : soc_xwr14xx.oer4f (.text:SOC_waitBSSPowerUp)

    0001c33c 0000002c libmmwavelink_xwr14xx.aer4f : rl_device.oer4f (.text:rlDeviceGetMssVersion)

    0001c368 0000002c : rl_sensor.oer4f (.text:rlSensorStop)

    0001c394 0000002c rtsv7R4_T_le_v3D16_eabi.lib : e_sqrt.obj (.text)

    0001c3c0 0000002c : unlink.obj (.text)

    0001c3ec 0000002c mmw_per4f.oer4f (.text:ti_sysbios_BIOS_errorRaiseHook__I)

    0001c418 0000002c mmw_per4f.oer4f (.text:ti_sysbios_gates_GateHwi_Handle__label__S)

    0001c444 0000002c mmw_per4f.oer4f (.text:ti_sysbios_gates_GateMutex_Handle__label__S)

    0001c470 0000002c mmw_per4f.oer4f (.text:ti_sysbios_heaps_HeapMem_Handle__label__S)

    0001c49c 0000002c mmw_per4f.oer4f (.text:ti_sysbios_knl_Semaphore_destruct)

    0001c4c8 00000006 libedma_xwr14xx.aer4f : edma_low_level.oer4f (.text:EDMA3QdmaGetErrIntrStatus)

    0001c4ce 00000002 --HOLE-- [fill = 0]

    0001c4d0 0000002c sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Task_enter__I)

    0001c4fc 0000002a libsoc_xwr14xx.aer4f : soc.oer4f (.text:SOC_SystemISR)

    0001c526 0000002a rtsv7R4_T_le_v3D16_eabi.lib : strspn.obj (.text)

    0001c550 00000028 libcbuff_xwr14xx.aer4f : cbuff.oer4f (.text:CBUFF_ErrorISR)

    0001c578 00000028 : cbuff.oer4f (.text:CBUFF_FrameStartISR)

    0001c5a0 00000028 mmw_lvds_stream.oer4f (.text:MmwDemo_LVDSStreamDelete)

    0001c5c8 00000028 main.oer4f (.text:MmwDemo_dataPathInit)

    0001c5f0 00000008 data_path.oer4f (.tramp.MmwDemo_edmaInit.1)

    0001c5f8 00000028 data_path.oer4f (.text:MmwDemo_processCfar)

    0001c620 00000028 libuart_xwr14xx.aer4f : uartsci_nodma.oer4f (.text:UartSci_noDMAInitiateRxDMA)

    0001c648 00000028 : uartsci_nodma.oer4f (.text:UartSci_noDMAInitiateTxDMA)

    0001c670 00000028 mmw_per4f.oer4f (.text:free)

    0001c698 00000028 config_hwa_util.oer4f (.text:log2Approx)

    0001c6c0 00000028 libmmwavelink_xwr14xx.aer4f : rl_driver.oer4f (.text:rlDriverConstructInMsg)

    0001c6e8 00000028 rtsv7R4_T_le_v3D16_eabi.lib : lseek.obj (.text)

    0001c710 00000028 : write.obj (.text)

    0001c738 00000028 mmw_per4f.oer4f (.text:ti_sysbios_BIOS_rtsUnlock__I)

    0001c760 00000028 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_family_arm_v7a_Pmu_Module_startup__E)

    0001c788 00000028 mmw_per4f.oer4f (.text:ti_sysbios_family_arm_v7r_vim_Hwi_Module__startupDone__F)

    0001c7b0 00000028 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_gates_GateMutex_leave__E)

    0001c7d8 00000028 mmw_per4f.oer4f (.text:ti_sysbios_knl_Queue_destruct)

    0001c800 00000028 mmw_per4f.oer4f (.text:ti_sysbios_timers_rti_Timer_Module__startupDone__F)

    0001c828 00000028 ti.targets.arm.rtsarm.aer4f : Error.oer4f (.text:xdc_runtime_Error_init__E)

    0001c850 0000000c rtsv7R4_T_le_v3D16_eabi.lib : memset_t2.obj (.tramp.memset.1)

    0001c85c 00000028 ti.targets.arm.rtsarm.aer4f : System.oer4f (.text:xdc_runtime_System_abort__E)

    0001c884 00000028 mmw_per4f.oer4f (.text:xdc_runtime_System_aprintf__E)

    0001c8ac 00000028 mmw_per4f.oer4f (.text:xdc_runtime_System_printf__E)

    0001c8d4 00000026 mmwDemo_monitor.oer4f (.text:mmwDemo_cfgRxSaturationMonitor)

    0001c8fa 00000026 libmmwavelink_xwr14xx.aer4f : rl_device.oer4f (.text:rlDeviceGetMmWaveLinkVersion)

    0001c920 00000026 : rl_monitoring.oer4f (.text:rlRfAnaMonConfig)

    0001c946 00000026 : rl_sensor.oer4f (.text:rlRfInitCalibConfig)

    0001c96c 00000026 : rl_sensor.oer4f (.text:rlRfRunTimeCalibConfig)

    0001c992 00000026 : rl_monitoring.oer4f (.text:rlRfRxIfSatMonConfig)

    0001c9b8 00000026 : rl_monitoring.oer4f (.text:rlRfRxSigImgMonConfig)

    0001c9de 00000026 : rl_sensor.oer4f (.text:rlRfSetCalMonFreqLimitConfig)

    0001ca04 00000026 : rl_sensor.oer4f (.text:rlRfSetDeviceCfg)

    0001ca2a 00000026 : rl_sensor.oer4f (.text:rlSetAdcOutConfig)

    0001ca50 00000026 : rl_sensor.oer4f (.text:rlSetBpmCommonConfig)

    0001ca76 00000026 : rl_sensor.oer4f (.text:rlSetChannelConfig)

    0001ca9c 00000026 : rl_sensor.oer4f (.text:rlSetContModeConfig)

    0001cac2 00000026 rtsv7R4_T_le_v3D16_eabi.lib : memcmp.obj (.text)

    0001cae8 00000025 main.oer4f (.text:_MmwDemo_debugAssert)

    0001cb0d 00000001 --HOLE-- [fill = 0]

    0001cb0e 00000024 libcrc_xwr14xx.aer4f : crc.oer4f (.text:CRC_isTransactionIdValid)

    0001cb32 00000002 --HOLE-- [fill = 0]

    0001cb34 00000024 libedma_xwr14xx.aer4f : edma_low_level.oer4f (.text:EDMA3ClrEvt)

    0001cb58 00000024 : edma_low_level.oer4f (.text:EDMA3ClrIntr)

    0001cb7c 00000024 : edma_low_level.oer4f (.text:EDMA3DisableEvtIntr)

    0001cba0 00000024 : edma_low_level.oer4f (.text:EDMA3EnableDmaEvt)

    0001cbc4 00000024 : edma_low_level.oer4f (.text:EDMA3EnableEvtIntr)

    0001cbe8 00000024 : edma_low_level.oer4f (.text:EDMA3SetEvt)

    0001cc0c 00000024 libgpio_xwr14xx.aer4f : gpio.oer4f (.text:GPIO_processInterrupt)

    0001cc30 00000024 libhsiheader_xwr14xx.aer4f : hsiheader.oer4f (.text:HSIHeader_processUserBuffer)

    0001cc54 00000024 libmailbox_xwr14xx.aer4f : mailbox.oer4f (.text:Mailbox_Config_init)

    0001cc78 00000024 libmmwavelink_xwr14xx.aer4f : rl_device.oer4f (.text:rlDeviceSetHsiClk)

    0001cc9c 00000024 : rl_sensor.oer4f (.text:rlEnableContMode)

    0001ccc0 00000024 : rl_sensor.oer4f (.text:rlRfSetCalMonTimeUnitConfig)

    0001cce4 00000024 : rl_sensor.oer4f (.text:rlSetLowPowerModeConfig)

    0001cd08 00000024 ti.targets.arm.rtsarm.aer4f : System.oer4f (.text:xdc_runtime_System_exit__E)

    0001cd2c 00000022 libcbuff_xwr14xx.aer4f : cbuff_transfer.oer4f (.text:CBUFF_initLinkedList)

    0001cd4e 00000022 mmw_cli.oer4f (.text:MmwDemo_CLISensorStart)

    0001cd70 00000022 data_path.oer4f (.text:MmwDemo_memPoolAlloc)

    0001cd92 00000022 rtsv7R4_T_le_v3D16_eabi.lib : strcspn.obj (.text)

    0001cdb4 00000020 libcbuff_xwr14xx.aer4f : cbuff_csi.oer4f (.text:CBUFF_openCSI)

    0001cdd4 00000020 libcli_xwr14xx.aer4f : cli_mmwave.oer4f (.text:CLI_MMWaveExtensionInit)

    0001cdf4 00000020 libedma_xwr14xx.aer4f : edma_low_level.oer4f (.text:EDMA3DisableDmaEvt)

    0001ce14 00000020 : edma_low_level.oer4f (.text:EDMA3QdmaClrMissEvt)

    0001ce34 00000020 libesm_xwr14xx.aer4f : esm.oer4f (.text:ESM_lowpriority_IRQ)

    0001ce54 00000020 libhsiheader_xwr14xx.aer4f : hsiheader.oer4f (.text:HSIHeader_processCQ)

    0001ce74 00000020 libmmwave_xwr14xx.aer4f : mmwave_listlib.oer4f (.text:MMWave_listCat)

    0001ce94 00000020 data_path.oer4f (.text:MmwDemo_dataPathObjInit)

    0001ceb4 00000020 main.oer4f (.text:MmwDemo_dataPathOpen)

    0001ced4 00000020 libpinmux_xwr14xx.aer4f : pinmux.oer4f (.text:Pinmux_Unlock)

    0001cef4 00000020 libmmwavelink_xwr14xx.aer4f : rl_sensor.oer4f (.text:rlRfInit)

    0001cf14 00000020 mmw_per4f.oer4f (.text:ti_sysbios_BIOS_exitFunc__I)

    0001cf34 00000006 libosal_xwr14xx.aer4f : HwiP_tirtos.oer4f (.text:HwiP_restore)

    0001cf3a 00000006 data_path.oer4f (.text:MmwDemo_memPoolReset)

    0001cf40 00000020 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_family_arm_v7r_vim_Hwi_clearInterrupt__E)

    0001cf60 00000020 : BIOS.obj (.text:ti_sysbios_knl_Task_sleepTimeout__I)

    0001cf80 0000001e libmmwave_xwr14xx.aer4f : mmwave_fullcfg.oer4f (.text:MMWave_internalDelChirp)

    0001cf9e 0000001e mmwDemo_monitor.oer4f (.text:mmwDemo_cfgRxSigImgMonitor)

    0001cfbc 0000001c libcrc_xwr14xx.aer4f : crc.oer4f (.text:CRC_releaseTransactionId)

    0001cfd8 0000001c libadcbuf_xwr14xx.aer4f : adcbuf_mmwave.oer4f (.text:CSL_FEXTR)

    0001cff4 0000001c libcbuff_xwr14xx.aer4f : cbuff.oer4f (.text:CSL_FEXTR)

    0001d010 0000001c : cbuff_lvds.oer4f (.text:CSL_FEXTR)

    0001d02c 0000001c libhsiheader_xwr14xx.aer4f : hsiheader.oer4f (.text:CSL_FEXTR)

    0001d048 0000001c libhwa_xwr14xx.aer4f : hwa.oer4f (.text:CSL_FEXTR)

    0001d064 0000001c libmmwave_xwr14xx.aer4f : mmwave.oer4f (.text:CSL_FEXTR)

    0001d080 0000001c libsoc_xwr14xx.aer4f : soc_xwr14xx.oer4f (.text:CSL_FEXTR)

    0001d09c 0000001c libuart_xwr14xx.aer4f : uartsci.oer4f (.text:CSL_FEXTR)

    0001d0b8 0000001c libmmwave_xwr14xx.aer4f : mmwave_listlib.oer4f (.text:MMWave_listRemove)

    0001d0d4 0000001c sensor_mgmt.oer4f (.text:MmwDemo_notifySensorStart)

    0001d0f0 00000008 sysbios.aer4f : BIOS.obj (.tramp.ti_sysbios_knl_Event_post__E.1)

    0001d0f8 0000001c : arm_TaskSupport_asm.obj (.text:_ti_sysbios_family_arm_TaskSupport_glue)

    0001d114 0000001c rtsv7R4_T_le_v3D16_eabi.lib : memccpy.obj (.text)

    0001d130 0000001c sysbios.aer4f : a15_TimestampProvider_asm.obj (.text:ti_sysbios_family_arm_a15_TimestampProvider_initCCNT__I)

    0001d14c 0000001c mmw_per4f.oer4f (.text:ti_sysbios_heaps_HeapMem_Object__get__S)

    0001d168 00000006 libmmwavelink_xwr14xx.aer4f : rl_controller.oer4f (.text:rlGetSubBlockId)

    0001d16e 00000002 --HOLE-- [fill = 0]

    0001d170 0000001c sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Event_Instance_init__E)

    0001d18c 0000001c mmw_per4f.oer4f (.text:xdc_runtime_Startup_exec__I)

    0001d1a8 0000001c ti.targets.arm.rtsarm.aer4f : System.oer4f (.text:xdc_runtime_System_vsnprintf__E)

    0001d1c4 0000001c : Text.oer4f (.text:xdc_runtime_Text_ropeText__E)

    0001d1e0 0000001a libcbuff_xwr14xx.aer4f : cbuff_lvds.oer4f (.text:CBUFF_finalizeLVDSLinkListParams)

    0001d1fa 0000001a libsoc_xwr14xx.aer4f : soc.oer4f (.text:CSL_FEXTR)

    0001d214 0000001a libedma_xwr14xx.aer4f : edma_low_level.oer4f (.text:EDMA3SetPaRAM)

    0001d22e 0000001a libmmwave_xwr14xx.aer4f : mmwave.oer4f (.text:MMWave_encodeError)

    0001d248 0000001a : mmwave_listlib.oer4f (.text:MMWave_listAdd)

    0001d262 0000001a rtsv7R4_T_le_v3D16_eabi.lib : s_copysign.obj (.text)

    0001d27c 00000018 libcbuff_xwr14xx.aer4f : cbuff_transfer.oer4f (.text:CSL_FINSR)

    0001d294 00000018 libedma_xwr14xx.aer4f : edma_low_level.oer4f (.text:EDMA3DisableQdmaEvt)

    0001d2ac 00000018 : edma_low_level.oer4f (.text:EDMA3EnableQdmaEvt)

    0001d2c4 00000018 libmmwave_xwr14xx.aer4f : mmwave_osal.oer4f (.text:MMWave_osalMutexLock)

    0001d2dc 00000018 : mmwave_osal.oer4f (.text:MMWave_osalSemWait)

    0001d2f4 00000018 libuart_xwr14xx.aer4f : UART.oer4f (.text:UART_Params_init)

    0001d30c 00000018 sysbios.aer4f : arm_TaskSupport_asm.obj (.text:_ti_sysbios_family_arm_TaskSupport_swap__E)

    0001d324 00000018 libmmwavelink_xwr14xx.aer4f : rl_device.oer4f (.text:rlDeviceGetRfVersion)

    0001d33c 00000018 : rl_driver.oer4f (.text:rlDriverCalCRC)

    0001d354 00000018 : rl_driver.oer4f (.text:rlDriverFillPayload)

    0001d36c 00000018 : rl_driver.oer4f (.text:rlDriverIsDeviceMapValid)

    0001d384 00000018 rtsv7R4_T_le_v3D16_eabi.lib : args_main.obj (.text)

    0001d39c 00000018 : strcmp.obj (.text)

    0001d3b4 00000006 libmmwavelink_xwr14xx.aer4f : rl_controller.oer4f (.text:rlGetSubBlockLen)

    0001d3ba 00000004 libmmwave_xwr14xx.aer4f : mmwave_xwr14xx.oer4f (.text:MMWave_deviceSyncFxn)

    0001d3be 00000002 --HOLE-- [fill = 0]

    0001d3c0 00000018 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_BIOS_setThreadType__E)

    0001d3d8 00000004 libmmwave_xwr14xx.aer4f : mmwave_link.oer4f (.text:MMWave_disableDevice)

    0001d3dc 00000004 : mmwave_link.oer4f (.text:MMWave_enableDevice)

    0001d3e0 00000018 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_BIOS_start__E)

    0001d3f8 00000018 : BIOS.obj (.text:ti_sysbios_family_arm_v7a_Pmu_initCounters__I)

    0001d410 00000018 : BIOS.obj (.text:ti_sysbios_hal_Hwi_Module_startup__E)

    0001d428 00000018 mmw_per4f.oer4f (.text:ti_sysbios_heaps_HeapBuf_Object__get__S)

    0001d440 00000018 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Idle_loop__E)

    0001d458 00000004 libmmwave_xwr14xx.aer4f : mmwave_listlib.oer4f (.text:MMWave_listGetHead)

    0001d45c 00000004 : mmwave_listlib.oer4f (.text:MMWave_listGetNext)

    0001d460 00000018 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Queue_empty__E)

    0001d478 00000018 mmw_per4f.oer4f (.text:ti_sysbios_knl_Task_Object__get__S)

    0001d490 00000018 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Task_disable__E)

    0001d4a8 00000016 libcbuff_xwr14xx.aer4f : cbuff_transfer.oer4f (.text:CBUFF_shutdownTransfer)

    0001d4be 00000016 data_path.oer4f (.text:MmwDemo_process2D)

    0001d4d4 00000016 rtsv7R4_T_le_v3D16_eabi.lib : strchr.obj (.text)

    0001d4ea 00000016 : strlen.obj (.text)

    0001d500 00000014 libcli_xwr14xx.aer4f : cli_mmwave.oer4f (.text:CLI_getMMWaveExtensionOpenConfig)

    0001d514 00000014 libcbuff_xwr14xx.aer4f : cbuff_csi.oer4f (.text:CSL_FINSR)

    0001d528 00000014 libedma_xwr14xx.aer4f : edma_low_level.oer4f (.text:EDMA3GetIntrStatus)

    0001d53c 00000014 : edma_low_level.oer4f (.text:EDMA3IntrStatusHighGet)

    0001d550 00000014 : edma_low_level.oer4f (.text:EDMA3MapQdmaChToPaRAM)

    0001d564 00000014 libosal_xwr14xx.aer4f : HwiP_tirtos.oer4f (.text:HwiP_Params_init)

    0001d578 00000014 libmmwave_xwr14xx.aer4f : mmwave_fullcfg.oer4f (.text:MMWave_internalDelBpmChirp)

    0001d58c 00000014 : mmwave_fullcfg.oer4f (.text:MMWave_internalDelProfile)

    0001d5a0 00000014 : mmwave_osal.oer4f (.text:MMWave_osalMutexDelete)

    0001d5b4 00000014 : mmwave_osal.oer4f (.text:MMWave_osalSemDelete)

    0001d5c8 00000014 main.oer4f (.text:MmwDemo_dataPathStop)

    0001d5dc 00000014 sensor_mgmt.oer4f (.text:MmwDemo_notifyDathPathStop)

    0001d5f0 00000014 libpinmux_xwr14xx.aer4f : pinmux.oer4f (.text:Pinmux_Lock)

    0001d604 00000014 libosal_xwr14xx.aer4f : DebugP_tirtos.oer4f (.text:_DebugP_assert)

    0001d618 00000008 ti.targets.arm.rtsarm.aer4f : Assert.oer4f (.tramp.xdc_runtime_Assert_raise__I.1)

    0001d620 00000014 libmmwavelink_xwr14xx.aer4f : rl_controller.oer4f (.text:rlAppendDummy)

    0001d634 00000014 rtsv7R4_T_le_v3D16_eabi.lib : _lock.obj (.text)

    0001d648 00000014 : strcpy.obj (.text)

    0001d65c 00000004 libmmwave_xwr14xx.aer4f : mmwave_link.oer4f (.text:MMWave_mboxClose)

    0001d660 00000014 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_family_arm_TaskSupport_checkStack__E)

    0001d674 00000004 libmmwave_xwr14xx.aer4f : mmwave_link.oer4f (.text:MMWave_mboxRead)

    0001d678 00000004 : mmwave_link.oer4f (.text:MMWave_registerInterruptHandler)

    0001d67c 00000004 : mmwave_link.oer4f (.text:MMWave_unmaskHostIRQ)

    0001d680 00000014 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_family_arm_a15_TimestampProvider_Module_startup__E)

    0001d694 00000004 libmmwave_xwr14xx.aer4f : mmwave_link.oer4f (.text:MMWave_waitIRQStatus)

    0001d698 00000004 data_path.oer4f (.text:MmwDemo_hwaInit)

    0001d69c 00000004 main.oer4f (.text:MmwDemo_sleep)

    0001d6a0 00000014 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_family_arm_v7r_vim_Hwi_switchFromBootStack__E)

    0001d6b4 00000004 libuart_xwr14xx.aer4f : uartsci_nodma.oer4f (.text:UartSci_noDMAClose)

    0001d6b8 00000004 : uartsci_nodma.oer4f (.text:UartSci_noDMAIsDMAEnabled)

    0001d6bc 00000004 : uartsci_nodma.oer4f (.text:UartSci_noDMAOpen)

    0001d6c0 00000014 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_gates_GateMutex_Instance_finalize__E)

    0001d6d4 00000004 mmw_per4f.oer4f (.text:ti_sysbios_BIOS_RtsGateProxy_enter__E)

    0001d6d8 00000004 mmw_per4f.oer4f (.text:ti_sysbios_BIOS_RtsGateProxy_leave__E)

    0001d6dc 00000004 mmw_per4f.oer4f (.text:ti_sysbios_BIOS_nullFunc__I)

    0001d6e0 00000014 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Semaphore_Instance_finalize__E)

    0001d6f4 00000014 ti.targets.arm.rtsarm.aer4f : Gate.oer4f (.text:xdc_runtime_Gate_leaveSystem__E)

    0001d708 00000014 mmw_per4f.oer4f (.text:xdc_runtime_IHeap_alloc)

    0001d71c 00000014 mmw_per4f.oer4f (.text:xdc_runtime_IHeap_free)

    0001d730 00000014 ti.targets.arm.rtsarm.aer4f : Memory.oer4f (.text:xdc_runtime_Memory_calloc__E)

    0001d744 00000014 : Memory.oer4f (.text:xdc_runtime_Memory_free__E)

    0001d758 00000012 libedma_xwr14xx.aer4f : edma_low_level.oer4f (.text:EDMA3SetQdmaTrigWord)

    0001d76a 00000012 libosal_xwr14xx.aer4f : MemoryP_tirtos.oer4f (.text:MemoryP_ctrlAlloc)

    0001d77c 00000012 data_path.oer4f (.text:MmwDemo_pow2roundup)

    0001d78e 00000012 libosal_xwr14xx.aer4f : SemaphoreP_tirtos.oer4f (.text:SemaphoreP_pend)

    0001d7a0 00000010 libcli_xwr14xx.aer4f : cli_mmwave.oer4f (.text:CLI_getMMWaveExtensionConfig)

    0001d7b0 00000010 libcrc_xwr14xx.aer4f : crc.oer4f (.text:CRC_getSignatureRegister)

    0001d7c0 00000010 sensor_mgmt.oer4f (.text:MmwDemo_notifyBssSensorStop)

    0001d7d0 00000010 sensor_mgmt.oer4f (.text:MmwDemo_notifySensorStop)

    0001d7e0 00000010 sensor_mgmt.oer4f (.text:MmwDemo_switchPressFxn)

    0001d7f0 00000010 libsoc_xwr14xx.aer4f : soc_xwr14xx.oer4f (.text:SOC_getInAddr_LUTType)

    0001d800 00000010 : soc_xwr14xx.oer4f (.text:SOC_getOutAddr_LUTType)

    0001d810 00000010 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_BIOS_getCpuFreq__E)

    0001d820 0000000c rtsv7R4_T_le_v3D16_eabi.lib : memcpy_t2.obj (.tramp.memcpy.1)

    0001d82c 00000004 mmw_per4f.oer4f (.text:ti_sysbios_family_arm_v7r_vim_Hwi_delete)

    0001d830 00000010 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_family_arm_TaskSupport_getStackAlignment__E)

    0001d840 00000010 : a15_TimestampProvider_asm.obj (.text:ti_sysbios_family_arm_a15_TimestampProvider_getOverflowCCNT__I)

    0001d850 00000010 : BIOS.obj (.text:ti_sysbios_family_arm_exc_Exception_Module_startup__E)

    0001d860 00000010 : BIOS.obj (.text:ti_sysbios_family_arm_v7a_Pmu_disableInterruptI__E)

    0001d870 00000010 : BIOS.obj (.text:ti_sysbios_family_arm_v7a_Pmu_enableInterruptI__E)

    0001d880 00000010 : BIOS.obj (.text:ti_sysbios_family_arm_v7a_Pmu_getNumCounters__E)

    0001d890 00000010 : BIOS.obj (.text:ti_sysbios_family_arm_v7a_Pmu_startCounterI__E)

    0001d8a0 00000010 : BIOS.obj (.text:ti_sysbios_family_arm_v7a_Pmu_stopCounterI__E)

    0001d8b0 00000010 mmw_per4f.oer4f (.text:ti_sysbios_family_arm_v7r_vim_Hwi_Params__init__S)

    0001d8c0 00000010 mmw_per4f.oer4f (.text:ti_sysbios_knl_Queue_Object__get__S)

    0001d8d0 00000010 mmw_per4f.oer4f (.text:ti_sysbios_knl_Semaphore_Params__init__S)

    0001d8e0 00000010 mmw_per4f.oer4f (.text:ti_sysbios_knl_Task_Params__init__S)

    0001d8f0 00000010 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_utils_Load_getCPULoad__E)

    0001d900 00000010 : BIOS.obj (.text:ti_sysbios_utils_Load_taskRegHook__E)

    0001d910 00000010 ti.targets.arm.rtsarm.aer4f : Gate.oer4f (.text:xdc_runtime_Gate_enterSystem__E)

    0001d920 00000010 : Memory.oer4f (.text:xdc_runtime_Memory_getMaxDefaultTypeAlign__E)

    0001d930 00000010 : Startup.oer4f (.text:xdc_runtime_Startup_rtsDone__E)

    0001d940 0000000e libadcbuf_xwr14xx.aer4f : ADCBuf.oer4f (.text:ADCBuf_Params_init)

    0001d94e 0000000e libmmwave_xwr14xx.aer4f : mmwave.oer4f (.text:MMWave_decodeErrorLevel)

    0001d95c 0000000e mmw_cli.oer4f (.text:MmwDemo_CLISensorStop)

    0001d96a 0000000e libsoc_xwr14xx.aer4f : soc_xwr14xx.oer4f (.text:SOC_microDelay)

    0001d978 0000000e libosal_xwr14xx.aer4f : SemaphoreP_tirtos.oer4f (.text:SemaphoreP_delete)

    0001d986 0000000e rtsv7R4_T_le_v3D16_eabi.lib : copy_decompress_none.obj (.text:decompress:none)

    0001d994 00000004 mmw_per4f.oer4f (.text:ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E)

    0001d998 00000004 mmw_per4f.oer4f (.text:ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E)

    0001d99c 00000004 mmw_per4f.oer4f (.text:ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E)

    0001d9a0 0000000c sysbios.aer4f : BIOS.obj (.text:ti_sysbios_family_arm_v7r_vim_Hwi_startup__E)

    0001d9ac 00000004 mmw_per4f.oer4f (.text:ti_sysbios_knl_Semaphore_delete)

    0001d9b0 0000000c sysbios.aer4f : BIOS.obj (.text:ti_sysbios_gates_GateHwi_enter__E)

    0001d9bc 00000004 mmw_per4f.oer4f (.text:xdc_runtime_Startup_reset__I)

    0001d9c0 0000000c sysbios.aer4f : BIOS.obj (.text:ti_sysbios_knl_Queue_Instance_init__E)

    0001d9cc 0000000c rtsv7R4_T_le_v3D16_eabi.lib : fflush.obj (.tramp.fflush.1)

    0001d9d8 00000008 ti.targets.arm.rtsarm.aer4f : Memory.oer4f (.tramp.xdc_runtime_Memory_free__E.1)

    0001d9e0 00000008 sysbios.aer4f : BIOS.obj (.tramp.ti_sysbios_knl_Semaphore_post__E.1)

    0001d9e8 00000004 ti.targets.arm.rtsarm.aer4f : SysStd.oer4f (.text:xdc_runtime_SysStd_putch__E)

    0001d9ec 00000004 mmw_per4f.oer4f (.text:xdc_runtime_System_Module_GateProxy_enter__E)

    0001d9f0 00000008 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_gates_GateHwi_leave__E)

    0001d9f8 00000004 mmw_per4f.oer4f (.text:xdc_runtime_System_Module_GateProxy_leave__E)

    0001d9fc 00000004 ti.targets.arm.rtsarm.aer4f : System.oer4f (.text:xdc_runtime_System_aprintf_va__F)

    0001da00 00000008 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_gates_GateHwi_query__E)

    0001da08 00000004 ti.targets.arm.rtsarm.aer4f : System.oer4f (.text:xdc_runtime_System_printf_va__F)

    0001da0c 00000004 --HOLE-- [fill = 0]

    0001da10 00000008 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_gates_GateMutex_query__E)

    0001da18 00000008 : BIOS.obj (.tramp.ti_sysbios_family_arm_v7r_vim_Hwi_disableInterrupt__E.1)

    0001da20 00000008 : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_isBlocking__E)

    0001da28 00000008 : BIOS.obj (.tramp.ti_sysbios_family_arm_v7r_vim_Hwi_enableInterrupt__E.1)

    0001da30 00000008 : BIOS.obj (.text:ti_sysbios_timers_rti_Timer_getMaxTicks__E)

    0001da38 0000000c rtsv7R4_T_le_v3D16_eabi.lib : fputc.obj (.tramp.putchar.1)

    0001da44 0000000c : cpy_tbl.obj (.tramp.copy_in.1)

    0001da50 00000004 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E)

    0001da54 00000008 libmmwavelink_xwr14xx.aer4f : rl_device.oer4f (.tramp.rlDevicePowerOn.1)

    0001da5c 00000004 --HOLE-- [fill = 0]

    0001da60 00000004 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_gates_GateHwi_Instance_init__E)

    0001da64 0000000c --HOLE-- [fill = 0]

    0001da70 00000004 : BIOS.obj (.text:ti_sysbios_knl_Task_startup__E)

    .const 0 0001da80 00000e81

    0001da80 00000254 libmmwavelink_xwr14xx.aer4f : rl_sensor.oer4f (.const:$O1$$)

    0001dcd4 00000004 libcli_xwr14xx.aer4f : cli.oer4f (.const:.string:$P$T0$1)

    0001dcd8 00000158 rtsv7R4_T_le_v3D16_eabi.lib : k_rem_pio2.obj (.const:$O1$$)

    0001de30 00000101 : ctype.obj (.const:.string:_ctypes_)

    0001df31 00000001 mmw_per4f.oer4f (.const:xdc_runtime_Error_policy__C)

    0001df32 00000002 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_exc_Exception_Module__id__C)

    0001df34 000000a0 libcli_xwr14xx.aer4f : cli_mmwave.oer4f (.const:.string)

    0001dfd4 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_TaskSupport_stackAlignment__C)

    0001dfd8 00000098 rtsv7R4_T_le_v3D16_eabi.lib : s_atan.obj (.const:$O1$$)

    0001e070 00000098 : strtod.obj (.const:$O1$$)

    0001e108 00000080 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_channelMap__A)

    0001e188 00000078 libmmwavelink_xwr14xx.aer4f : rl_driver.oer4f (.const:$O2$$)

    0001e200 00000048 mmw_per4f.oer4f (.const:.string)

    0001e248 0000003c mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_Object__PARAMS__C)

    0001e284 00000030 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_Object__PARAMS__C)

    0001e2b4 0000002c mmw_per4f.oer4f (.const:xdc_runtime_Startup_sfxnTab__A)

    0001e2e0 00000028 libuart_xwr14xx.aer4f : UART.oer4f (.const:UART_defaultParams)

    0001e308 00000028 mmw_per4f.oer4f (.const:ti_sysbios_heaps_HeapMem_Module__FXNS__C)

    0001e330 00000024 mmw_per4f.oer4f (.const:ti_sysbios_gates_GateHwi_Module__FXNS__C)

    0001e354 00000024 mmw_per4f.oer4f (.const:ti_sysbios_gates_GateMutex_Module__FXNS__C)

    0001e378 00000024 mmw_per4f.oer4f (.const:ti_sysbios_heaps_HeapMem_Object__PARAMS__C)

    0001e39c 00000024 mmw_per4f.oer4f (.const:ti_sysbios_knl_Semaphore_Object__PARAMS__C)

    0001e3c0 00000020 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_Object__DESC__C)

    0001e3e0 00000020 mmw_per4f.oer4f (.const:ti_sysbios_gates_GateHwi_Object__DESC__C)

    0001e400 00000020 mmw_per4f.oer4f (.const:ti_sysbios_gates_GateMutex_Object__DESC__C)

    0001e420 00000020 mmw_per4f.oer4f (.const:ti_sysbios_heaps_HeapMem_Object__DESC__C)

    0001e440 00000020 mmw_per4f.oer4f (.const:ti_sysbios_knl_Event_Object__DESC__C)

    0001e460 00000020 mmw_per4f.oer4f (.const:ti_sysbios_knl_Queue_Object__DESC__C)

    0001e480 00000020 mmw_per4f.oer4f (.const:ti_sysbios_knl_Semaphore_Object__DESC__C)

    0001e4a0 00000020 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_Object__DESC__C)

    0001e4c0 0000001c libedma_xwr14xx.aer4f : edma_xwr1xxx.oer4f (.const:gEdmaHwAttrs)

    0001e4dc 00000018 mmw_per4f.oer4f (.const:ti_sysbios_gates_GateHwi_Object__PARAMS__C)

    0001e4f4 00000018 mmw_per4f.oer4f (.const:ti_sysbios_gates_GateMutex_Object__PARAMS__C)

    0001e50c 00000018 mmw_per4f.oer4f (.const:ti_sysbios_knl_Event_Object__PARAMS__C)

    0001e524 00000018 mmw_per4f.oer4f (.const:ti_sysbios_knl_Queue_Object__PARAMS__C)

    0001e53c 00000018 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_hooks__A)

    0001e554 00000016 mmw_per4f.oer4f (.const:xdc_runtime_Startup_sfxnRts__A)

    0001e56a 00000002 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7a_Pmu_Module__id__C)

    0001e56c 00000014 libmailbox_xwr14xx.aer4f : mailbox.oer4f (.const:Mailbox_defaultCfg)

    0001e580 00000014 libadcbuf_xwr14xx.aer4f : adcbuf_mmwave.oer4f (.const:gADCBufFxnTable)

    0001e594 00000010 : adcbuf_xwr1xxx.oer4f (.const:gADCBufHwCfg)

    0001e5a4 00000010 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_intReqEnaSet__A)

    0001e5b4 00000010 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_wakeEnaSet__A)

    0001e5c4 0000000c main.oer4f (.const:$P$T0$1)

    0001e5d0 0000000c mmw_per4f.oer4f (.const:ti_sysbios_knl_Idle_funcList__A)

    0001e5dc 00000008 libadcbuf_xwr14xx.aer4f : ADCBuf.oer4f (.const:ADCBuf_defaultParams)

    0001e5e4 00000008 libedma_xwr14xx.aer4f : edma.oer4f (.const:EDMA_config$1)

    0001e5ec 00000008 mmw_per4f.oer4f (.const:ti_sysbios_knl_Idle_funcList__C)

    0001e5f4 00000008 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_hooks__C)

    0001e5fc 00000008 mmw_per4f.oer4f (.const:xdc_runtime_Startup_firstFxns__A)

    0001e604 00000008 mmw_per4f.oer4f (.const:xdc_runtime_Startup_firstFxns__C)

    0001e60c 00000008 mmw_per4f.oer4f (.const:xdc_runtime_Startup_lastFxns__C)

    0001e614 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_exc_Exception_E_dataAbort__C)

    0001e618 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_exc_Exception_E_prefetchAbort__C)

    0001e61c 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_exc_Exception_E_swi__C)

    0001e620 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_exc_Exception_E_undefinedInstruction__C)

    0001e624 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_exc_Exception_excHookFuncs__A)

    0001e628 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_exc_Exception_excHookFuncs__C)

    0001e62c 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7a_Pmu_A_invalidCounterId__C)

    0001e630 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7a_Pmu_Module__diagsEnabled__C)

    0001e634 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7a_Pmu_Module__diagsIncluded__C)

    0001e638 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7a_Pmu_Module__diagsMask__C)

    0001e63c 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_tms570_Core_E_mismatchedIds__C)

    0001e640 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_tms570_Core_id__C)

    0001e644 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_A_badChannelId__C)

    0001e648 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_E_alreadyDefined__C)

    0001e64c 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_E_badIntNum__C)

    0001e650 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_E_phantomInterrupt__C)

    0001e654 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_E_undefined__C)

    0001e658 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_E_unsupportedMaskingOption__C)

    0001e65c 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_LD_end__C)

    0001e660 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_LM_begin__C)

    0001e664 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_Module__diagsEnabled__C)

    0001e668 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_Module__diagsIncluded__C)

    0001e66c 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_Module__diagsMask__C)

    0001e670 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_Module__loggerFxn1__C)

    0001e674 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_Module__loggerFxn8__C)

    0001e678 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_Module__loggerObj__C)

    0001e67c 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_NUM_INTERRUPTS__C)

    0001e680 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_channelMap__C)

    0001e684 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_intReqEnaSet__C)

    0001e688 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_phantomFunc__C)

    0001e68c 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_taskDisable__C)

    0001e690 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_taskRestoreHwi__C)

    0001e694 00000004 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_wakeEnaSet__C)

    0001e698 00000004 mmw_per4f.oer4f (.const:ti_sysbios_gates_GateMutex_A_badContext__C)

    0001e69c 00000004 mmw_per4f.oer4f (.const:ti_sysbios_gates_GateMutex_Instance_State_sem__O)

    0001e6a0 00000004 mmw_per4f.oer4f (.const:ti_sysbios_gates_GateMutex_Module__diagsEnabled__C)

    0001e6a4 00000004 mmw_per4f.oer4f (.const:ti_sysbios_gates_GateMutex_Module__diagsIncluded__C)

    0001e6a8 00000004 mmw_per4f.oer4f (.const:ti_sysbios_gates_GateMutex_Module__diagsMask__C)

    0001e6ac 00000004 mmw_per4f.oer4f (.const:ti_sysbios_hal_Hwi_E_stackOverflow__C)

    0001e6b0 00000004 mmw_per4f.oer4f (.const:ti_sysbios_heaps_HeapBuf_Instance_State_freeList__O)

    0001e6b4 00000004 mmw_per4f.oer4f (.const:ti_sysbios_heaps_HeapBuf_Object__count__C)

    0001e6b8 00000004 mmw_per4f.oer4f (.const:ti_sysbios_heaps_HeapBuf_numConstructedHeaps__C)

    0001e6bc 00000004 mmw_per4f.oer4f (.const:ti_sysbios_heaps_HeapMem_A_align__C)

    0001e6c0 00000004 mmw_per4f.oer4f (.const:ti_sysbios_heaps_HeapMem_A_heapSize__C)

    0001e6c4 00000004 mmw_per4f.oer4f (.const:ti_sysbios_heaps_HeapMem_A_invalidFree__C)

    0001e6c8 00000004 mmw_per4f.oer4f (.const:ti_sysbios_heaps_HeapMem_A_zeroBlock__C)

    0001e6cc 00000004 mmw_per4f.oer4f (.const:ti_sysbios_heaps_HeapMem_E_memory__C)

    0001e6d0 00000004 mmw_per4f.oer4f (.const:ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C)

    0001e6d4 00000004 mmw_per4f.oer4f (.const:ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C)

    0001e6d8 00000004 mmw_per4f.oer4f (.const:ti_sysbios_heaps_HeapMem_Module__diagsMask__C)

    0001e6dc 00000004 mmw_per4f.oer4f (.const:ti_sysbios_heaps_HeapMem_Module__gateObj__C)

    0001e6e0 00000004 mmw_per4f.oer4f (.const:ti_sysbios_heaps_HeapMem_Object__count__C)

    0001e6e4 00000004 mmw_per4f.oer4f (.const:ti_sysbios_heaps_HeapMem_reqAlign__C)

    0001e6e8 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Clock_LM_begin__C)

    0001e6ec 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Clock_LM_tick__C)

    0001e6f0 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Clock_LW_delayed__C)

    0001e6f4 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Clock_Module_State_clockQ__O)

    0001e6f8 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Clock_Module__diagsEnabled__C)

    0001e6fc 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Clock_Module__diagsIncluded__C)

    0001e700 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Clock_Module__diagsMask__C)

    0001e704 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Clock_Module__loggerFxn1__C)

    0001e708 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Clock_Module__loggerFxn2__C)

    0001e70c 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Clock_Module__loggerObj__C)

    0001e710 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Event_A_badContext__C)

    0001e714 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Event_A_eventInUse__C)

    0001e718 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Event_A_nullEventId__C)

    0001e71c 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Event_A_nullEventMasks__C)

    0001e720 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Event_A_pendTaskDisabled__C)

    0001e724 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Event_Instance_State_pendQ__O)

    0001e728 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Event_LM_pend__C)

    0001e72c 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Event_LM_post__C)

    0001e730 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Event_Module__diagsEnabled__C)

    0001e734 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Event_Module__diagsIncluded__C)

    0001e738 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Event_Module__diagsMask__C)

    0001e73c 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Event_Module__loggerFxn4__C)

    0001e740 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Event_Module__loggerFxn8__C)

    0001e744 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Event_Module__loggerObj__C)

    0001e748 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Semaphore_A_badContext__C)

    0001e74c 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Semaphore_A_noEvents__C)

    0001e750 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Semaphore_A_overflow__C)

    0001e754 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Semaphore_A_pendTaskDisabled__C)

    0001e758 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Semaphore_Instance_State_pendQ__O)

    0001e75c 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Semaphore_LM_pend__C)

    0001e760 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Semaphore_LM_post__C)

    0001e764 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Semaphore_Module__diagsEnabled__C)

    0001e768 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Semaphore_Module__diagsIncluded__C)

    0001e76c 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Semaphore_Module__diagsMask__C)

    0001e770 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Semaphore_Module__loggerFxn2__C)

    0001e774 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Semaphore_Module__loggerFxn4__C)

    0001e778 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Semaphore_Module__loggerObj__C)

    0001e77c 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_A_badPriority__C)

    0001e780 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_A_badTaskState__C)

    0001e784 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_A_badThreadType__C)

    0001e788 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_A_badTimeout__C)

    0001e78c 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_A_noPendElem__C)

    0001e790 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_A_sleepTaskDisabled__C)

    0001e794 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_E_spOutOfBounds__C)

    0001e798 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_E_stackOverflow__C)

    0001e79c 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_LD_block__C)

    0001e7a0 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_LD_exit__C)

    0001e7a4 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_LD_ready__C)

    0001e7a8 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_LM_sleep__C)

    0001e7ac 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_LM_switch__C)

    0001e7b0 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_Module_State_inactiveQ__O)

    0001e7b4 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_Module__diagsEnabled__C)

    0001e7b8 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_Module__diagsIncluded__C)

    0001e7bc 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_Module__diagsMask__C)

    0001e7c0 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_Module__loggerFxn2__C)

    0001e7c4 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_Module__loggerFxn4__C)

    0001e7c8 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_Module__loggerObj__C)

    0001e7cc 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_Object__count__C)

    0001e7d0 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_Object__heap__C)

    0001e7d4 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_allBlockedFunc__C)

    0001e7d8 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_defaultStackHeap__C)

    0001e7dc 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_defaultStackSize__C)

    0001e7e0 00000004 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_numConstructedTasks__C)

    0001e7e4 00000004 mmw_per4f.oer4f (.const:ti_sysbios_timers_rti_Timer_E_cannotSupport__C)

    0001e7e8 00000004 mmw_per4f.oer4f (.const:ti_sysbios_timers_rti_Timer_Module__diagsEnabled__C)

    0001e7ec 00000004 mmw_per4f.oer4f (.const:ti_sysbios_timers_rti_Timer_Module__diagsIncluded__C)

    0001e7f0 00000004 mmw_per4f.oer4f (.const:ti_sysbios_timers_rti_Timer_Module__diagsMask__C)

    0001e7f4 00000004 mmw_per4f.oer4f (.const:ti_sysbios_timers_rti_Timer_numTimerDevices__C)

    0001e7f8 00000004 mmw_per4f.oer4f (.const:ti_sysbios_timers_rti_Timer_startupNeeded__C)

    0001e7fc 00000004 mmw_per4f.oer4f (.const:ti_sysbios_utils_Load_LS_cpuLoad__C)

    0001e800 00000004 mmw_per4f.oer4f (.const:ti_sysbios_utils_Load_LS_taskLoad__C)

    0001e804 00000004 mmw_per4f.oer4f (.const:ti_sysbios_utils_Load_Module_State_taskList__O)

    0001e808 00000004 mmw_per4f.oer4f (.const:ti_sysbios_utils_Load_Module__diagsEnabled__C)

    0001e80c 00000004 mmw_per4f.oer4f (.const:ti_sysbios_utils_Load_Module__diagsIncluded__C)

    0001e810 00000004 mmw_per4f.oer4f (.const:ti_sysbios_utils_Load_Module__diagsMask__C)

    0001e814 00000004 mmw_per4f.oer4f (.const:ti_sysbios_utils_Load_Module__loggerFxn1__C)

    0001e818 00000004 mmw_per4f.oer4f (.const:ti_sysbios_utils_Load_Module__loggerFxn4__C)

    0001e81c 00000004 mmw_per4f.oer4f (.const:ti_sysbios_utils_Load_Module__loggerObj__C)

    0001e820 00000004 mmw_per4f.oer4f (.const:ti_sysbios_utils_Load_postUpdate__C)

    0001e824 00000004 mmw_per4f.oer4f (.const:ti_sysbios_utils_Load_windowInMs__C)

    0001e828 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Assert_E_assertFailed__C)

    0001e82c 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Core_A_initializedParams__C)

    0001e830 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Core_Module__diagsEnabled__C)

    0001e834 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Core_Module__diagsIncluded__C)

    0001e838 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Core_Module__diagsMask__C)

    0001e83c 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Error_E_memory__C)

    0001e840 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Error_Module__diagsEnabled__C)

    0001e844 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Error_Module__diagsIncluded__C)

    0001e848 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Error_Module__diagsMask__C)

    0001e84c 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Error_Module__loggerFxn8__C)

    0001e850 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Error_Module__loggerObj__C)

    0001e854 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Error_policyFxn__C)

    0001e858 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Error_raiseHook__C)

    0001e85c 00000004 mmw_per4f.oer4f (.const:xdc_runtime_IGateProvider_Interface__BASE__C)

    0001e860 00000004 mmw_per4f.oer4f (.const:xdc_runtime_IHeap_Interface__BASE__C)

    0001e864 00000004 mmw_per4f.oer4f (.const:xdc_runtime_IModule_Interface__BASE__C)

    0001e868 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Log_L_error__C)

    0001e86c 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Main_Module__diagsEnabled__C)

    0001e870 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Main_Module__diagsIncluded__C)

    0001e874 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Main_Module__diagsMask__C)

    0001e878 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Main_Module__loggerFxn1__C)

    0001e87c 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Main_Module__loggerFxn2__C)

    0001e880 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Main_Module__loggerFxn4__C)

    0001e884 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Main_Module__loggerObj__C)

    0001e888 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Memory_defaultHeapInstance__C)

    0001e88c 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Startup_execImpl__C)

    0001e890 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Startup_maxPasses__C)

    0001e894 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Startup_sfxnRts__C)

    0001e898 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Startup_sfxnTab__C)

    0001e89c 00000004 mmw_per4f.oer4f (.const:xdc_runtime_System_Module__gateObj__C)

    0001e8a0 00000004 mmw_per4f.oer4f (.const:xdc_runtime_System_abortFxn__C)

    0001e8a4 00000004 mmw_per4f.oer4f (.const:xdc_runtime_System_exitFxn__C)

    0001e8a8 00000004 mmw_per4f.oer4f (.const:xdc_runtime_System_extendFxn__C)

    0001e8ac 00000004 mmw_per4f.oer4f (.const:xdc_runtime_System_maxAtexitHandlers__C)

    0001e8b0 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Text_charTab__C)

    0001e8b4 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Text_nameEmpty__C)

    0001e8b8 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Text_nameStatic__C)

    0001e8bc 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Text_nameUnknown__C)

    0001e8c0 00000004 mmw_per4f.oer4f (.const:xdc_runtime_Text_visitRopeFxn__C)

    0001e8c4 00000002 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_tms570_Core_Module__id__C)

    0001e8c6 00000002 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_Module__id__C)

    0001e8c8 00000002 mmw_per4f.oer4f (.const:ti_sysbios_family_arm_v7r_vim_Hwi_Module__loggerDefined__C)

    0001e8ca 00000002 mmw_per4f.oer4f (.const:ti_sysbios_gates_GateMutex_Module__id__C)

    0001e8cc 00000002 mmw_per4f.oer4f (.const:ti_sysbios_hal_Hwi_Module__id__C)

    0001e8ce 00000002 mmw_per4f.oer4f (.const:ti_sysbios_heaps_HeapMem_Module__id__C)

    0001e8d0 00000002 mmw_per4f.oer4f (.const:ti_sysbios_knl_Clock_Module__id__C)

    0001e8d2 00000002 mmw_per4f.oer4f (.const:ti_sysbios_knl_Clock_Module__loggerDefined__C)

    0001e8d4 00000002 mmw_per4f.oer4f (.const:ti_sysbios_knl_Event_Module__id__C)

    0001e8d6 00000002 mmw_per4f.oer4f (.const:ti_sysbios_knl_Event_Module__loggerDefined__C)

    0001e8d8 00000002 mmw_per4f.oer4f (.const:ti_sysbios_knl_Semaphore_Module__id__C)

    0001e8da 00000002 mmw_per4f.oer4f (.const:ti_sysbios_knl_Semaphore_Module__loggerDefined__C)

    0001e8dc 00000002 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_Module__id__C)

    0001e8de 00000002 mmw_per4f.oer4f (.const:ti_sysbios_knl_Task_Module__loggerDefined__C)

    0001e8e0 00000002 mmw_per4f.oer4f (.const:ti_sysbios_timers_rti_Timer_Module__id__C)

    0001e8e2 00000002 mmw_per4f.oer4f (.const:ti_sysbios_timers_rti_Timer_continueOnSuspend__C)

    0001e8e4 00000002 mmw_per4f.oer4f (.const:ti_sysbios_utils_Load_Module__id__C)

    0001e8e6 00000002 mmw_per4f.oer4f (.const:ti_sysbios_utils_Load_Module__loggerDefined__C)

    0001e8e8 00000002 mmw_per4f.oer4f (.const:ti_sysbios_utils_Load_autoAddTasks__C)

    0001e8ea 00000002 mmw_per4f.oer4f (.const:ti_sysbios_utils_Load_updateInIdle__C)

    0001e8ec 00000002 mmw_per4f.oer4f (.const:xdc_runtime_Core_Module__id__C)

    0001e8ee 00000002 mmw_per4f.oer4f (.const:xdc_runtime_Error_Module__loggerDefined__C)

    0001e8f0 00000002 mmw_per4f.oer4f (.const:xdc_runtime_Error_maxDepth__C)

    0001e8f2 00000002 mmw_per4f.oer4f (.const:xdc_runtime_Main_Module__id__C)

    0001e8f4 00000002 mmw_per4f.oer4f (.const:xdc_runtime_Main_Module__loggerDefined__C)

    0001e8f6 00000002 mmw_per4f.oer4f (.const:xdc_runtime_Memory_Module__id__C)

    0001e8f8 00000002 mmw_per4f.oer4f (.const:xdc_runtime_Text_charCnt__C)

    0001e8fa 00000002 mmw_per4f.oer4f (.const:xdc_runtime_Text_isLoaded__C)

    0001e8fc 00000002 mmw_per4f.oer4f (.const:xdc_runtime_Text_registryModsLastId__C)

    0001e8fe 00000002 mmw_per4f.oer4f (.const:xdc_runtime_Text_unnamedModsLastId__C)

    0001e900 00000001 mmw_per4f.oer4f (.const:xdc_runtime_Text_charTab__A)

    .cinit 0 0001e910 00000470

    0001e910 00000425 (.cinit..data.load) [load image, compression = lzss]

    0001ed35 00000003 --HOLE-- [fill = 0]

    0001ed38 0000000c (__TI_handler_table)

    0001ed44 00000004 --HOLE-- [fill = 0]

    0001ed48 00000008 (.cinit..bss.load) [load image, compression = zero_init]

    0001ed50 00000008 (.cinit..myFiqStack.load) [load image, compression = zero_init]

    0001ed58 00000008 (.cinit.systemHeap.load) [load image, compression = zero_init]

    0001ed60 00000020 (__TI_cinit_table)

    .vecs 0 00000000 0000003c

    00000000 0000003c mmw_per4f.oer4f (.vecs)

    .data 0 08008000 00001d34 UNINITIALIZED

    08008000 00000ca8 main.oer4f (.data:$O1$$)

    08008ca8 000003f0 libmmwavelink_xwr14xx.aer4f : rl_driver.oer4f (.data:$O1$$)

    08009098 00000200 mmw_per4f.oer4f (.data:ti_sysbios_family_arm_v7r_vim_Hwi_Module_State_0_dispatchTable__A)

    08009298 00000190 libcli_xwr14xx.aer4f : cli_mmwave.oer4f (.data:$O1$$)

    08009428 000000f0 rtsv7R4_T_le_v3D16_eabi.lib : defs.obj (.data:_ftable)

    08009518 00000098 mmw_per4f.oer4f (.data:ti_sysbios_utils_Load_Module__state__V)

    080095b0 00000080 mmw_per4f.oer4f (.data:ti_sysbios_knl_Task_Module_State_0_readyQ__A)

    08009630 00000078 rtsv7R4_T_le_v3D16_eabi.lib : write.obj (.data:_device)

    080096a8 00000070 libcbuff_xwr14xx.aer4f : cbuff_xwr14xx.oer4f (.data:gCBUFFHwAttribute)

    08009718 00000054 : cbuff_xwr14xx.oer4f (.data:gCBUFFInterfaceFxn)

    0800976c 00000050 rtsv7R4_T_le_v3D16_eabi.lib : write.obj (.data:_stream)

    080097bc 00000050 libuart_xwr14xx.aer4f : uart_xwr14xx.oer4f (.data:gUartSciHwCfg)

    0800980c 0000004c mmw_per4f.oer4f (.data:ti_sysbios_knl_Task_Object__table__V)

    08009858 00000048 libmailbox_xwr14xx.aer4f : mailbox.oer4f (.data:gMailboxMCB)

    080098a0 00000044 mmw_per4f.oer4f (.data:ti_sysbios_knl_Task_Module__state__V)

    080098e4 00000038 mmw_per4f.oer4f (.data:ti_sysbios_gates_GateMutex_Object__table__V)

    0800991c 00000038 mmw_per4f.oer4f (.data:ti_sysbios_timers_rti_Timer_Object__table__V)

    08009954 00000034 sensor_mgmt.oer4f (.data:$O1$$)

    08009988 00000034 mmw_per4f.oer4f (.data:ti_sysbios_family_arm_v7r_vim_Hwi_Module__state__V)

    080099bc 0000002c mmw_per4f.oer4f (.data:ti_sysbios_family_arm_v7r_vim_Hwi_Object__table__V)

    080099e8 0000002c mmw_per4f.oer4f (.data:ti_sysbios_knl_Clock_Module__state__V)

    08009a14 00000028 libuart_xwr14xx.aer4f : uartsci.oer4f (.data:gUartSciFxnTable)

    08009a3c 00000024 libsoc_xwr14xx.aer4f : soc_xwr14xx.oer4f (.data:SOC_TranslateAddr_LUT)

    08009a60 00000024 libuart_xwr14xx.aer4f : uart_xwr14xx.oer4f (.data:UART_config)

    08009a84 00000024 libhwa_xwr14xx.aer4f : hwa_xwr14xx.oer4f (.data:gHWAHwCfg)

    08009aa8 00000024 mmw_per4f.oer4f (.data:ti_sysbios_BIOS_Module__state__V)

    08009acc 00000020 mmw_per4f.oer4f (.data:ti_sysbios_knl_Clock_Object__table__V)

    08009aec 00000020 mmw_per4f.oer4f (.data:xdc_runtime_Error_IgnoreBlock)

    08009b0c 00000020 mmw_per4f.oer4f (.data:xdc_runtime_System_Module_State_0_atexitHandlers__A)

    08009b2c 0000001c mmw_per4f.oer4f (.data:ti_sysbios_utils_Load_Module_State_0_taskEnv__A)

    08009b48 00000018 libadcbuf_xwr14xx.aer4f : adcbuf_xwr1xxx.oer4f (.data:ADCBuf_config)

    08009b60 00000018 libcbuff_xwr14xx.aer4f : cbuff_xwr14xx.oer4f (.data:gInterleavedTransferFxn)

    08009b78 00000018 libmailbox_xwr14xx.aer4f : mailbox_xwr14xx.oer4f (.data:gMailboxMssBssHwCfg)

    08009b90 00000018 libcbuff_xwr14xx.aer4f : cbuff_xwr14xx.oer4f (.data:gMultipleChirpNonInterleavedTransferFxn)

    08009ba8 00000018 : cbuff_xwr14xx.oer4f (.data:gNonInterleavedTransferFxn)

    08009bc0 00000018 mmw_per4f.oer4f (.data:ti_sysbios_heaps_HeapMem_Object__table__V)

    08009bd8 00000018 mmw_per4f.oer4f (.data:ti_sysbios_timers_rti_Timer_Module_State_0_device__A)

    08009bf0 00000014 mmw_per4f.oer4f (.data:ti_sysbios_family_arm_exc_Exception_Module__state__V)

    08009c04 00000010 libsoc_xwr14xx.aer4f : soc_xwr14xx.oer4f (.data:gSOCHwAttrib)

    08009c14 00000010 rtsv7R4_T_le_v3D16_eabi.lib : defs.obj (.data)

    08009c24 00000010 mmw_per4f.oer4f (.data:ti_sysbios_timers_rti_Timer_Module_State_0_intFreqs__A)

    08009c34 00000010 mmw_per4f.oer4f (.data:ti_sysbios_timers_rti_Timer_Module__state__V)

    08009c44 0000000c rtsv7R4_T_le_v3D16_eabi.lib : exit.obj (.data:$O1$$)

    08009c50 0000000c libesm_xwr14xx.aer4f : esm_xwr1xxx.oer4f (.data:gESMHwCfgAttrs)

    08009c5c 0000000c mmw_per4f.oer4f (.data:ti_sysbios_family_arm_v7a_Pmu_Module__state__V)

    08009c68 00000008 rtsv7R4_T_le_v3D16_eabi.lib : _lock.obj (.data:$O1$$)

    08009c70 00000008 libgpio_xwr14xx.aer4f : gpio_xwr14xx.oer4f (.data:gGPIOHwAtrrib)

    08009c78 00000008 mmw_per4f.oer4f (.data:ti_sysbios_family_arm_v7r_vim_Hwi_Module__root__V)

    08009c80 00000008 mmw_per4f.oer4f (.data:ti_sysbios_gates_GateHwi_Module__root__V)

    08009c88 00000008 mmw_per4f.oer4f (.data:ti_sysbios_gates_GateMutex_Module__root__V)

    08009c90 00000008 mmw_per4f.oer4f (.data:ti_sysbios_hal_Hwi_Object__table__V)

    08009c98 00000008 mmw_per4f.oer4f (.data:ti_sysbios_heaps_HeapMem_Module__root__V)

    08009ca0 00000008 mmw_per4f.oer4f (.data:ti_sysbios_knl_Event_Module__root__V)

    08009ca8 00000008 mmw_per4f.oer4f (.data:ti_sysbios_knl_Queue_Module__root__V)

    08009cb0 00000008 mmw_per4f.oer4f (.data:ti_sysbios_knl_Semaphore_Module__root__V)

    08009cb8 00000008 mmw_per4f.oer4f (.data:ti_sysbios_knl_Task_Module__root__V)

    08009cc0 00000008 mmw_per4f.oer4f (.data:ti_sysbios_timers_rti_Timer_Module_State_0_handles__A)

    08009cc8 00000008 mmw_per4f.oer4f (.data:xdc_runtime_Registry_Module__state__V)

    08009cd0 00000008 mmw_per4f.oer4f (.data:xdc_runtime_Startup_Module__state__V)

    08009cd8 00000008 mmw_per4f.oer4f (.data:xdc_runtime_System_Module__state__V)

    08009ce0 00000004 libadcbuf_xwr14xx.aer4f : ADCBuf.oer4f (.data)

    08009ce4 00000004 libcrc_xwr14xx.aer4f : crc_xwr14xx.oer4f (.data)

    08009ce8 00000004 libedma_xwr14xx.aer4f : edma_low_level.oer4f (.data)

    08009cec 00000004 libpinmux_xwr14xx.aer4f : pinmux_xwr1xxx.oer4f (.data)

    08009cf0 00000004 libuart_xwr14xx.aer4f : UART.oer4f (.data)

    08009cf4 00000004 rtsv7R4_T_le_v3D16_eabi.lib : errno.obj (.data)

    08009cf8 00000004 : fopen.obj (.data)

    08009cfc 00000004 : open.obj (.data)

    08009d00 00000004 : stkdepth_vars.obj (.data)

    08009d04 00000004 : strtok.obj (.data)

    08009d08 00000004 mmw_per4f.oer4f (.data:ti_sysbios_family_arm_a15_TimestampProvider_Module__state__V)

    08009d0c 00000004 mmw_per4f.oer4f (.data:ti_sysbios_family_arm_exc_Exception_Module_State_0_excContext__A)

    08009d10 00000004 mmw_per4f.oer4f (.data:ti_sysbios_family_arm_exc_Exception_Module_State_0_excStackBuffers__A)

    08009d14 00000004 mmw_per4f.oer4f (.data:ti_sysbios_family_arm_exc_Exception_Module_State_0_excStack__A)

    08009d18 00000004 mmw_per4f.oer4f (.data:ti_sysbios_gates_GateHwi_Object__table__V)

    08009d1c 00000004 mmw_per4f.oer4f (.data:ti_sysbios_heaps_HeapBuf_Module__state__V)

    08009d20 00000004 mmw_per4f.oer4f (.data:ti_sysbios_knl_Task_Module_State_0_idleTask__A)

    08009d24 00000004 mmw_per4f.oer4f (.data:ti_sysbios_utils_Load_Module_State_0_runningTask__A)

    08009d28 00000004 mmw_per4f.oer4f (.data:ti_sysbios_utils_Load_Module_State_0_taskStartTime__A)

    08009d2c 00000004 mmw_per4f.oer4f (.data:xdc_runtime_Memory_Module__state__V)

    08009d30 00000002 mmw_per4f.oer4f (.data:ti_sysbios_family_arm_exc_Exception_Module_State_0_excActive__A)

    08009d32 00000002 mmw_per4f.oer4f (.data:xdc_runtime_Error_Module__state__V)

    .bss 0 08009d38 00001bec UNINITIALIZED

    08009d38 00001000 (.common:ti_sysbios_family_arm_exc_Exception_Module_State_0_excStack_0__A)

    0800ad38 00000320 mmw_per4f.oer4f (.bss:taskStackSection)

    0800b058 0000027c libedma_xwr14xx.aer4f : edma.oer4f (.bss:$O1$$)

    0800b2d4 000001a0 (.common:gCLI)

    0800b474 00000120 rtsv7R4_T_le_v3D16_eabi.lib : trgmsg.obj (.bss:_CIOBUF_)

    0800b594 00000114 (.common:gGPIOMCB)

    0800b6a8 000000d4 (.common:gMMWave_MCB)

    0800b77c 000000a0 (.common:__TI_tmpnams)

    0800b81c 00000004 (.common:gHWADriverPtr)

    0800b820 00000088 (.common:gHSIHeaderMCB)

    0800b8a8 00000070 (.common:gEsmMCB)

    0800b918 00000008 (.common:parmbuf)

    0800b920 00000004 (.common:ti_sysbios_knl_Task_Instance_State_0_hookEnv__A)

    .myFiqStack

    * 0 0800b928 00000800 UNINITIALIZED

    0800b928 00000800 mmw_per4f.oer4f (.myFiqStack)

    .stack 0 0800c128 000004b0 UNINITIALIZED

    0800c128 000004b0 --HOLE--

    xdc.meta 0 00000000 000000de COPY SECTION

    00000000 000000de mmw_per4f.oer4f (xdc.meta)

    xdc.noload

    * 0 00000000 00000000 COPY SECTION

    MODULE SUMMARY

    Module code ro data rw data

    ------ ---- ------- -------

    ./

    main.oer4f 6485 12 265384

    data_path.oer4f 7389 0 65536

    config_hwa_util.oer4f 3113 0 0

    mmw_cli.oer4f 2808 0 0

    sensor_mgmt.oer4f 2406 0 52

    mmw_lvds_stream.oer4f 2169 0 0

    post_processing.oer4f 2138 0 0

    config_edma_util.oer4f 1189 0 0

    rx_ch_bias_measure.oer4f 942 0 0

    mmwDemo_monitor.oer4f 130 0 0

    +--+-------------------------------+--------+---------+---------+

    Total: 28769 12 330972

    /home/akd/workspace_v7/mmw_mss_14xx/Release/configPkg/package/cfg/

    mmw_per4f.oer4f 2716 1836 41324

    +--+-------------------------------+--------+---------+---------+

    Total: 2716 1836 41324

    /home/akd/ti/bios_6_53_02_00/packages/ti/targets/arm/rtsarm/lib/auto_init.aer4f

    auto_init.oer4f 236 0 0

    +--+-------------------------------+--------+---------+---------+

    Total: 236 0 0

    /home/akd/ti/bios_6_53_02_00/packages/ti/targets/arm/rtsarm/lib/boot.aer4f

    boot.oer4f 116 0 0

    +--+-------------------------------+--------+---------+---------+

    Total: 116 0 0

    /home/akd/ti/bios_6_53_02_00/packages/ti/targets/arm/rtsarm/lib/ti.targets.arm.rtsarm.aer4f

    System.oer4f 1993 0 0

    Text.oer4f 904 0 0

    Error.oer4f 864 0 0

    Core-mem.oer4f 532 0 0

    Startup.oer4f 500 0 0

    Core-smem.oer4f 324 0 0

    Memory.oer4f 292 0 0

    Assert.oer4f 132 0 0

    Core-params.oer4f 100 0 0

    Core-label.oer4f 92 0 0

    SysStd.oer4f 76 0 0

    Registry.oer4f 52 0 0

    Gate.oer4f 36 0 0

    +--+-------------------------------+--------+---------+---------+

    Total: 5897 0 0

    /home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/control/mmwave/lib/libmmwave_xwr14xx.aer4f

    mmwave_link.oer4f 2416 0 0

    mmwave_fullcfg.oer4f 1874 0 0

    mmwave.oer4f 1036 0 212

    mmwave_osal.oer4f 204 0 0

    mmwave_listlib.oer4f 150 0 0

    mmwave_xwr14xx.oer4f 142 0 0

    +--+-------------------------------+--------+---------+---------+

    Total: 5822 0 212

    /home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/control/mmwavelink/lib/libmmwavelink_xwr14xx.aer4f

    rl_driver.oer4f 4050 120 1008

    rl_sensor.oer4f 1488 596 0

    rl_device.oer4f 472 0 0

    rl_controller.oer4f 146 0 0

    rl_monitoring.oer4f 114 0 0

    +--+-------------------------------+--------+---------+---------+

    Total: 6270 716 1008

    /home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/drivers/adcbuf/lib/libadcbuf_xwr14xx.aer4f

    adcbuf_mmwave.oer4f 1712 20 0

    ADCBuf.oer4f 134 8 4

    adcbuf_xwr1xxx.oer4f 0 16 24

    +--+-------------------------------+--------+---------+---------+

    Total: 1846 44 28

    /home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/drivers/cbuff/lib/libcbuff_xwr14xx.aer4f

    cbuff_transfer.oer4f 3260 0 0

    cbuff.oer4f 2938 0 0

    cbuff_lvds.oer4f 1303 0 0

    cbuff_edma.oer4f 711 0 0

    cbuff_csi.oer4f 508 0 0

    cbuff_xwr14xx.oer4f 0 0 268

    +--+-------------------------------+--------+---------+---------+

    Total: 8720 0 268

    /home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/drivers/crc/lib/libcrc_xwr14xx.aer4f

    crc.oer4f 1272 0 0

    crc_xwr14xx.oer4f 0 0 4

    +--+-------------------------------+--------+---------+---------+

    Total: 1272 0 4

    /home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/drivers/edma/lib/libedma_xwr14xx.aer4f

    edma.oer4f 3072 8 636

    edma_low_level.oer4f 878 0 4

    edma_xwr1xxx.oer4f 0 28 0

    +--+-------------------------------+--------+---------+---------+

    Total: 3950 36 640

    /home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/drivers/esm/lib/libesm_xwr14xx.aer4f

    esm.oer4f 456 0 112

    esm_xwr1xxx.oer4f 0 0 12

    +--+-------------------------------+--------+---------+---------+

    Total: 456 0 124

    /home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/drivers/gpio/lib/libgpio_xwr14xx.aer4f

    gpio.oer4f 1094 0 276

    gpio_xwr14xx.oer4f 0 0 8

    +--+-------------------------------+--------+---------+---------+

    Total: 1094 0 284

    /home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/drivers/hwa/lib/libhwa_xwr14xx.aer4f

    hwa.oer4f 3520 0 0

    hwa_xwr14xx.oer4f 0 0 40

    +--+-------------------------------+--------+---------+---------+

    Total: 3520 0 40

    /home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/drivers/mailbox/lib/libmailbox_xwr14xx.aer4f

    mailbox.oer4f 1546 20 72

    mailbox_xwr14xx.oer4f 0 0 24

    +--+-------------------------------+--------+---------+---------+

    Total: 1546 20 96

    /home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/drivers/osal/lib/libosal_xwr14xx.aer4f

    DebugP_tirtos.oer4f 388 0 0

    HwiP_tirtos.oer4f 258 0 0

    SemaphoreP_tirtos.oer4f 166 0 0

    MemoryP_tirtos.oer4f 44 0 0

    +--+-------------------------------+--------+---------+---------+

    Total: 856 0 0

    /home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/drivers/pinmux/lib/libpinmux_xwr14xx.aer4f

    pinmux.oer4f 406 0 0

    pinmux_xwr1xxx.oer4f 0 0 4

    +--+-------------------------------+--------+---------+---------+

    Total: 406 0 4

    /home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/drivers/soc/lib/libsoc_xwr14xx.aer4f

    soc_xwr14xx.oer4f 908 0 52

    soc.oer4f 734 0 0

    soc_mpu.o 182 0 0

    +--+-------------------------------+--------+---------+---------+

    Total: 1824 0 52

    /home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/drivers/uart/lib/libuart_xwr14xx.aer4f

    uartsci.oer4f 2106 0 40

    UART.oer4f 186 40 4

    uart_xwr14xx.oer4f 0 0 116

    uartsci_nodma.oer4f 92 0 0

    +--+-------------------------------+--------+---------+---------+

    Total: 2384 40 160

    /home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/utils/cli/lib/libcli_xwr14xx.aer4f

    cli_mmwave.oer4f 3921 160 400

    cli.oer4f 824 4 416

    +--+-------------------------------+--------+---------+---------+

    Total: 4745 164 816

    /home/akd/ti/mmwave_sdk_01_02_00_05/packages/ti/utils/hsiheader/lib/libhsiheader_xwr14xx.aer4f

    hsiheader.oer4f 1180 0 136

    +--+-------------------------------+--------+---------+---------+

    Total: 1180 0 136

    /home/akd/ti/ti-cgt-arm_16.9.6.LTS/lib/rtsv7R4_T_le_v3D16_eabi.lib

    _printfi.obj 4218 0 0

    k_rem_pio2.obj 1532 344 0

    s_cos.obj 1012 0 0

    s_sin.obj 1012 0 0

    ull_div32.obj 696 0 0

    strtod.obj 484 152 0

    s_atan.obj 424 152 0

    e_log10.obj 512 0 0

    fopen.obj 456 0 4

    e_atan2.obj 436 0 0

    defs.obj 0 0 416

    trgmsg.obj 108 0 288

    ctype.obj 0 257 0

    write.obj 40 0 200

    s_scalbn.obj 236 0 0

    s_floor.obj 224 0 0

    s_ceil.obj 220 0 0

    setvbuf.obj 220 0 0

    fflush.obj 216 0 0

    open.obj 188 0 4

    k_cos.obj 184 0 0

    memcpy_t2.obj 176 0 0

    _io_perm.obj 174 0 0

    fputc.obj 164 0 0

    k_sin.obj 164 0 0

    fclose.obj 152 0 0

    memset_t2.obj 142 0 0

    vsnprintf.obj 136 0 0

    getdevice.obj 116 0 0

    s_frexp.obj 116 0 0

    copy_decompress_lzss.obj 108 0 0

    hostlseek.obj 104 0 0

    hostrename.obj 104 0 0

    fseek.obj 100 0 0

    hostopen.obj 92 0 8

    sprintf.obj 100 0 0

    exit.obj 80 0 12

    hostread.obj 92 0 0

    close.obj 88 0 0

    cpy_tbl.obj 88 0 0

    hostwrite.obj 88 0 0

    ltoa.obj 84 0 0

    atoi.obj 80 0 0

    u_div32.obj 80 0 0

    hostclose.obj 68 0 0

    hostunlink.obj 68 0 0

    strtok.obj 64 0 4

    strncpy.obj 54 0 0

    e_sqrt.obj 44 0 0

    unlink.obj 44 0 0

    strspn.obj 42 0 0

    lseek.obj 40 0 0

    memcmp.obj 38 0 0

    strcspn.obj 34 0 0

    _lock.obj 20 0 8

    memccpy.obj 28 0 0

    s_copysign.obj 26 0 0

    args_main.obj 24 0 0

    strcmp.obj 24 0 0

    strchr.obj 22 0 0

    strlen.obj 22 0 0

    strcpy.obj 20 0 0

    copy_decompress_none.obj 14 0 0

    copy_zero_init.obj 12 0 0

    errno.obj 0 0 4

    stkdepth_vars.obj 0 0 4

    i_div0.obj 2 0 0

    +--+-------------------------------+--------+---------+---------+

    Total: 15756 905 952

    /home/akd/workspace_v7/mmw_mss_14xx/src/sysbios/sysbios.aer4f

    BIOS.obj 23700 0 0

    exc_Exception_asm.obj 308 0 0

    vim_Hwi_asm.obj 208 0 0

    arm_TaskSupport_asm.obj 176 0 0

    vim_Hwi_asm_switch.obj 152 0 0

    a15_TimestampProvider_asm.obj 52 0 0

    tms570_Core_asm.obj 12 0 0

    +--+-------------------------------+--------+---------+---------+

    Total: 24608 0 0

    Stack: 0 0 1200

    Linker Generated: 0 1129 0

    +--+-------------------------------+--------+---------+---------+

    Grand Total: 123989 4902 378320

    LINKER GENERATED COPY TABLES

    __TI_cinit_table @ 0001ed60 records: 4, size/record: 8, table size: 32

    .data: load addr=0001e910, load size=00000425 bytes, run addr=08008000, run size=00001d34 bytes, compression=lzss

    .bss: load addr=0001ed48, load size=00000008 bytes, run addr=08009d38, run size=00001bec bytes, compression=zero_init

    .myFiqStack: load addr=0001ed50, load size=00000008 bytes, run addr=0800b928, run size=00000800 bytes, compression=zero_init

    systemHeap: load addr=0001ed58, load size=00000008 bytes, run addr=08000000, run size=00008000 bytes, compression=zero_init

    LINKER GENERATED HANDLER TABLE

    __TI_handler_table @ 0001ed38 records: 3, size/record: 4, table size: 12

    index: 0, handler: __TI_zero_init

    index: 1, handler: __TI_decompress_lzss

    index: 2, handler: __TI_decompress_none

    VENEERS

    callee name veneer name

    callee addr veneer addr call addr call info

    -------------- ----------- --------- ----------------

    memset $Ven$AT$L$PI$$memset

    000179f9 0001c850 0001c844 ti.targets.arm.rtsarm.aer4f : Error.oer4f (.text:xdc_runtime_Error_init__E)

    ti_sysbios_knl_Event_post__E $Ven$TA$L$PI$$ti_sysbios_knl_Event_post__E

    00009190 0001d0f0 0001d0e6 sensor_mgmt.oer4f (.text:MmwDemo_notifySensorStart)

    0001d5e6 sensor_mgmt.oer4f (.text:MmwDemo_notifyDathPathStop)

    0001d7c8 sensor_mgmt.oer4f (.text:MmwDemo_notifyBssSensorStop)

    0001d7d8 sensor_mgmt.oer4f (.text:MmwDemo_notifySensorStop)

    0001d7e8 sensor_mgmt.oer4f (.text:MmwDemo_switchPressFxn)

    xdc_runtime_Assert_raise__I $Ven$TA$L$PI$$xdc_runtime_Assert_raise__I

    00017974 0001d618 0001d60c libosal_xwr14xx.aer4f : DebugP_tirtos.oer4f (.text:_DebugP_assert)

    memcpy $Ven$AT$L$PI$$memcpy

    00015fc1 0001d820 0001d818 sysbios.aer4f : BIOS.obj (.text:ti_sysbios_BIOS_getCpuFreq__E)

    fflush $Ven$AT$L$PI$$fflush

    00012d39 0001d9cc 0000f5c8 ti.targets.arm.rtsarm.aer4f : SysStd.oer4f (.text:xdc_runtime_SysStd_exit__E)

    xdc_runtime_Memory_free__E $Ven$TA$L$PI$$xdc_runtime_Memory_free__E

    0001d744 0001d9d8 0000f80c libosal_xwr14xx.aer4f : MemoryP_tirtos.oer4f (.text:MemoryP_ctrlFree)

    ti_sysbios_knl_Semaphore_post__E $Ven$TA$L$PI$$ti_sysbios_knl_Semaphore_post__E

    0000a370 0001d9e0 0000a17a data_path.oer4f (.text:MmwDemo_dataPathHwaDoneIsrCallback)

    ti_sysbios_family_arm_v7r_vim_Hwi_disableInterrupt__E $Ven$TA$L$PI$$ti_sysbios_family_arm_v7r_vim_Hwi_disableInterrupt__E

    0001c020 0001da18 0000e8dc libosal_xwr14xx.aer4f : HwiP_tirtos.oer4f (.text:HwiP_disableInterrupt)

    ti_sysbios_family_arm_v7r_vim_Hwi_enableInterrupt__E $Ven$TA$L$PI$$ti_sysbios_family_arm_v7r_vim_Hwi_enableInterrupt__E

    0001c050 0001da28 0001333c libosal_xwr14xx.aer4f : HwiP_tirtos.oer4f (.text:HwiP_enableInterrupt)

    putchar $Ven$AT$L$PI$$putchar

    000162b3 0001da38 0001d9e8 ti.targets.arm.rtsarm.aer4f : SysStd.oer4f (.text:xdc_runtime_SysStd_putch__E)

    copy_in $Ven$AT$L$PI$$copy_in

    0001a841 0001da44 000114cc auto_init.aer4f : auto_init.oer4f (.text)

    [11 trampolines]

    [15 trampoline calls]

    FAR CALL TRAMPOLINES

    callee name trampoline name

    callee addr tramp addr call addr call info

    -------------- ----------- --------- ----------------

    rlDriverDeInit $Tramp$TT$L$PI$$rlDriverDeInit

    00016521 510209f8 510209cc libmmwavelink_xwr14xx.aer4f : rl_device.oer4f (.text:rlDevicePowerOn)

    rlDriverInit $Tramp$TT$L$PI$$rlDriverInit

    00010af5 51020a00 510209aa libmmwavelink_xwr14xx.aer4f : rl_device.oer4f (.text:rlDevicePowerOn)

    rlDevicePowerOff $Tramp$TT$L$PI$$rlDevicePowerOff

    00018f6d 51020a08 5102098a libmmwavelink_xwr14xx.aer4f : rl_device.oer4f (.text:rlDevicePowerOn)

    rlDriverGetHandle $Tramp$TT$L$PI$$rlDriverGetHandle

    0000dab9 51020a10 5102097a libmmwavelink_xwr14xx.aer4f : rl_device.oer4f (.text:rlDevicePowerOn)

    MemoryP_ctrlFree $Tramp$TT$L$PI$$MemoryP_ctrlFree

    0000f807 51020a18 5102094e libcrc_xwr14xx.aer4f : crc.oer4f (.text:CRC_open)

    CRC_getCRCTypeBitValue $Tramp$TT$L$PI$$CRC_getCRCTypeBitValue

    0001be35 51020a20 51020852 libcrc_xwr14xx.aer4f : crc.oer4f (.text:CRC_open)

    510208ea : crc.oer4f (.text:CRC_open)

    CSL_FINSR $Tramp$TT$L$PI$$CSL_FINSR

    0001b3ed 51020a28 51020848 libcrc_xwr14xx.aer4f : crc.oer4f (.text:CRC_open)

    51020860 : crc.oer4f (.text:CRC_open)

    5102087a : crc.oer4f (.text:CRC_open)

    51020894 : crc.oer4f (.text:CRC_open)

    510208e0 : crc.oer4f (.text:CRC_open)

    510208f8 : crc.oer4f (.text:CRC_open)

    51020912 : crc.oer4f (.text:CRC_open)

    5102092c : crc.oer4f (.text:CRC_open)

    5102093e : crc.oer4f (.text:CRC_open)

    CRC_getCRCDataSelectBitValue $Tramp$TT$L$PI$$CRC_getCRCDataSelectBitValue

    0001be01 51020a30 5102083a libcrc_xwr14xx.aer4f : crc.oer4f (.text:CRC_open)

    510208d2 : crc.oer4f (.text:CRC_open)

    MMWave_initMMWaveLink $Tramp$TT$L$PI$$MMWave_initMMWaveLink

    0000dc15 51020a38 51020746 libmmwave_xwr14xx.aer4f : mmwave_link.oer4f (.text:MMWave_initLink)

    MMWave_listAdd $Tramp$TT$L$PI$$MMWave_listAdd

    0001d249 51020a40 510206e8 libmmwave_xwr14xx.aer4f : mmwave_link.oer4f (.text:MMWave_initLink)

    MMWave_decodeErrorLevel $Tramp$TT$L$PI$$MMWave_decodeErrorLevel

    0001d94f 51020a48 51020682 libmmwave_xwr14xx.aer4f : mmwave.oer4f (.text:MMWave_init)

    MMWave_encodeError $Tramp$TT$L$PI$$MMWave_encodeError

    0001d22f 51020a50 5102067a libmmwave_xwr14xx.aer4f : mmwave.oer4f (.text:MMWave_init)

    51020738 : mmwave_link.oer4f (.text:MMWave_initLink)

    MMWave_deviceInitFxn $Tramp$TT$L$PI$$MMWave_deviceInitFxn

    0001767d 51020a58 51020668 libmmwave_xwr14xx.aer4f : mmwave.oer4f (.text:MMWave_init)

    memcpy $Tramp$TT$L$PI$$memcpy

    00015fc1 51020a60 51020618 libmmwave_xwr14xx.aer4f : mmwave.oer4f (.text:MMWave_init)

    5102099e libmmwavelink_xwr14xx.aer4f : rl_device.oer4f (.text:rlDevicePowerOn)

    HwiP_create $Tramp$TT$L$PI$$HwiP_create

    00017701 51020a68 510205a0 libuart_xwr14xx.aer4f : uartsci.oer4f (.text:UartSci_open)

    HwiP_Params_init $Tramp$TT$L$PI$$HwiP_Params_init

    0001d565 51020a70 5102058e libuart_xwr14xx.aer4f : uartsci.oer4f (.text:UartSci_open)

    CSL_FINSR $Tramp$TT$L$PI$$CSL_FINSR

    0001b561 51020a78 510204b0 libuart_xwr14xx.aer4f : uartsci.oer4f (.text:UartSci_open)

    510204e2 : uartsci.oer4f (.text:UartSci_open)

    510204f8 : uartsci.oer4f (.text:UartSci_open)

    5102050e : uartsci.oer4f (.text:UartSci_open)

    510205b0 : uartsci.oer4f (.text:UartSci_open)

    SemaphoreP_create $Tramp$TT$L$PI$$SemaphoreP_create

    00019165 51020a80 51020460 libuart_xwr14xx.aer4f : uartsci.oer4f (.text:UartSci_open)

    51020474 : uartsci.oer4f (.text:UartSci_open)

    51020634 libmmwave_xwr14xx.aer4f : mmwave.oer4f (.text:MMWave_init)

    51020650 : mmwave.oer4f (.text:MMWave_init)

    SemaphoreP_Params_init $Tramp$TT$L$PI$$SemaphoreP_Params_init

    0000bd39 51020a88 51020450 libuart_xwr14xx.aer4f : uartsci.oer4f (.text:UartSci_open)

    51020468 : uartsci.oer4f (.text:UartSci_open)

    51020624 libmmwave_xwr14xx.aer4f : mmwave.oer4f (.text:MMWave_init)

    5102063e : mmwave.oer4f (.text:MMWave_init)

    MemoryP_ctrlAlloc $Tramp$TT$L$PI$$MemoryP_ctrlAlloc

    0001d76b 51020a90 51020410 libuart_xwr14xx.aer4f : uartsci.oer4f (.text:UartSci_open)

    510207ce libcrc_xwr14xx.aer4f : crc.oer4f (.text:CRC_open)

    _MmwDemo_debugAssert $Tramp$TT$L$PI$$_MmwDemo_debugAssert

    0001cae9 51020a98 510203a4 data_path.oer4f (.text:MmwDemo_edmaInit)

    EDMA_init $Tramp$TT$L$PI$$EDMA_init

    0000f24d 51020aa0 510202fc data_path.oer4f (.text:MmwDemo_edmaInit)

    EDMA_getNumInstances $Tramp$TT$L$PI$$EDMA_getNumInstances

    0000e51d 51020aa8 510202f0 data_path.oer4f (.text:MmwDemo_edmaInit)

    HwiP_restore $Tramp$TT$L$PI$$HwiP_restore

    0001cf35 51020ab0 510202d0 libmailbox_xwr14xx.aer4f : mailbox.oer4f (.text:Mailbox_init)

    HwiP_disable $Tramp$TT$L$PI$$HwiP_disable

    000071c9 51020ab8 5102027e libmailbox_xwr14xx.aer4f : mailbox.oer4f (.text:Mailbox_init)

    _DebugP_assert $Tramp$TT$L$PI$$_DebugP_assert

    0001d605 51020ac0 51020206 main.oer4f (.text:MmwDemo_initTask)

    510203b0 data_path.oer4f (.text:MmwDemo_edmaInit)

    510204d2 libuart_xwr14xx.aer4f : uartsci.oer4f (.text:UartSci_open)

    51020546 : uartsci.oer4f (.text:UartSci_open)

    ti_sysbios_knl_Semaphore_create $Tramp$AA$L$PI$$ti_sysbios_knl_Semaphore_create

    0001a1f4 51020ac8 51020180 main.oer4f (.text:MmwDemo_initTask)

    5102033c data_path.oer4f (.text:MmwDemo_edmaInit)

    51020358 data_path.oer4f (.text:MmwDemo_edmaInit)

    51020376 data_path.oer4f (.text:MmwDemo_edmaInit)

    51020392 data_path.oer4f (.text:MmwDemo_edmaInit)

    ti_sysbios_knl_Semaphore_Params__init__S $Tramp$AA$L$PI$$ti_sysbios_knl_Semaphore_Params__init__S

    0001d8d0 51020ad0 51020172 main.oer4f (.text:MmwDemo_initTask)

    5102032c data_path.oer4f (.text:MmwDemo_edmaInit)

    5102034a data_path.oer4f (.text:MmwDemo_edmaInit)

    51020368 data_path.oer4f (.text:MmwDemo_edmaInit)

    51020384 data_path.oer4f (.text:MmwDemo_edmaInit)

    CLI_write $Tramp$TT$L$PI$$CLI_write

    0001aae9 51020ad8 51020160 main.oer4f (.text:MmwDemo_initTask)

    510201b0 main.oer4f (.text:MmwDemo_initTask)

    510201c2 main.oer4f (.text:MmwDemo_initTask)

    510201d4 main.oer4f (.text:MmwDemo_initTask)

    510201e6 main.oer4f (.text:MmwDemo_initTask)

    510201fa main.oer4f (.text:MmwDemo_initTask)

    SOC_registerSysIntListener $Tramp$TT$L$PI$$SOC_registerSysIntListener

    00015999 51020ae0 51020152 main.oer4f (.text:MmwDemo_initTask)

    MmwDemo_sensorMgmtInit $Tramp$TT$L$PI$$MmwDemo_sensorMgmtInit

    0001371d 51020ae8 51020136 main.oer4f (.text:MmwDemo_initTask)

    MmwDemo_CLIInit $Tramp$TT$L$PI$$MmwDemo_CLIInit

    000066d5 51020af0 51020132 main.oer4f (.text:MmwDemo_initTask)

    ti_sysbios_knl_Task_create $Tramp$AA$L$PI$$ti_sysbios_knl_Task_create

    000175fc 51020af8 5102012e main.oer4f (.text:MmwDemo_initTask)

    510201a2 main.oer4f (.text:MmwDemo_initTask)

    ti_sysbios_knl_Task_Params__init__S $Tramp$AA$L$PI$$ti_sysbios_knl_Task_Params__init__S

    0001d8e0 51020b00 51020118 main.oer4f (.text:MmwDemo_initTask)

    51020190 main.oer4f (.text:MmwDemo_initTask)

    ti_sysbios_family_arm_v7a_Pmu_startCounter__E $Tramp$AA$L$PI$$ti_sysbios_family_arm_v7a_Pmu_startCounter__E

    00011f80 51020b08 5102010c main.oer4f (.text:MmwDemo_initTask)

    ti_sysbios_family_arm_v7a_Pmu_configureCounter__E $Tramp$AA$L$PI$$ti_sysbios_family_arm_v7a_Pmu_configureCounter__E

    0000e8e0 51020b10 51020106 main.oer4f (.text:MmwDemo_initTask)

    MmwDemo_dataPathOpen $Tramp$TT$L$PI$$MmwDemo_dataPathOpen

    0001ceb5 51020b18 510200fc main.oer4f (.text:MmwDemo_initTask)

    MMWave_sync $Tramp$TT$L$PI$$MMWave_sync

    0001a439 51020b20 510200f2 main.oer4f (.text:MmwDemo_initTask)

    memset $Tramp$TT$L$PI$$memset

    000179f9 51020b28 510200c0 main.oer4f (.text:MmwDemo_initTask)

    510202a8 libmailbox_xwr14xx.aer4f : mailbox.oer4f (.text:Mailbox_init)

    510202b4 : mailbox.oer4f (.text:Mailbox_init)

    51020314 data_path.oer4f (.text:MmwDemo_edmaInit)

    51020320 data_path.oer4f (.text:MmwDemo_edmaInit)

    5102041e libuart_xwr14xx.aer4f : uartsci.oer4f (.text:UartSci_open)

    5102060c libmmwave_xwr14xx.aer4f : mmwave.oer4f (.text:MMWave_init)

    510206e0 : mmwave_link.oer4f (.text:MMWave_initLink)

    510207dc libcrc_xwr14xx.aer4f : crc.oer4f (.text:CRC_open)

    MmwDemo_LVDSStreamInit $Tramp$TT$L$PI$$MmwDemo_LVDSStreamInit

    00014185 51020b30 510200ae main.oer4f (.text:MmwDemo_initTask)

    UART_open $Tramp$TT$L$PI$$UART_open

    0001bbed 51020b38 51020066 main.oer4f (.text:MmwDemo_initTask)

    510200a0 main.oer4f (.text:MmwDemo_initTask)

    UART_Params_init $Tramp$TT$L$PI$$UART_Params_init

    0001d2f5 51020b40 5102004e main.oer4f (.text:MmwDemo_initTask)

    5102007c main.oer4f (.text:MmwDemo_initTask)

    Pinmux_Set_FuncSel $Tramp$TT$L$PI$$Pinmux_Set_FuncSel

    00018931 51020b48 51020036 main.oer4f (.text:MmwDemo_initTask)

    51020048 main.oer4f (.text:MmwDemo_initTask)

    Pinmux_Set_OverrideCtrl $Tramp$TT$L$PI$$Pinmux_Set_OverrideCtrl

    00014ff5 51020b50 5102002e main.oer4f (.text:MmwDemo_initTask)

    51020040 main.oer4f (.text:MmwDemo_initTask)

    MmwDemo_dataPathInit $Tramp$TT$L$PI$$MmwDemo_dataPathInit

    0001c5c9 51020b58 51020024 main.oer4f (.text:MmwDemo_initTask)

    GPIO_init $Tramp$TT$L$PI$$GPIO_init

    00016b69 51020b60 51020018 main.oer4f (.text:MmwDemo_initTask)

    UART_init $Tramp$TT$L$PI$$UART_init

    0001b9d1 51020b68 5102000e main.oer4f (.text:MmwDemo_initTask)

    xdc_runtime_System_printf__E $Tramp$AA$L$PI$$xdc_runtime_System_printf__E

    0001c8ac 51020b70 5102000a main.oer4f (.text:MmwDemo_initTask)

    MmwDemo_edmaInit $Tramp$TT$L$PI$$MmwDemo_edmaInit

    510202e9 0001c5f0 0001c5e6 main.oer4f (.text:MmwDemo_dataPathInit)

    rlDevicePowerOn $Tramp$TT$L$PI$$rlDevicePowerOn

    5102096d 0001da54 0000dcbe libmmwave_xwr14xx.aer4f : mmwave_link.oer4f (.text:MMWave_initMMWaveLink)

    [50 trampolines]

    [103 trampoline calls]

    GLOBAL SYMBOLS: SORTED ALPHABETICALLY BY Name

    address name

    ------- ----

    0001b8f1 ADCBUF_MMWave_close

    00003de1 ADCBUF_MMWave_control

    00017a6d ADCBUF_MMWave_getCQBufAddr

    000157b9 ADCBUF_MMWave_getChanBufAddr

    0000117b ADCBUF_MMWave_init

    00012665 ADCBUF_MMWave_open

    0001d941 ADCBuf_Params_init

    08009b48 ADCBuf_config

    00001d07 ADCBuf_control

    0001e5dc ADCBuf_defaultParams

    0000b9f7 ADCBuf_getChanBufAddr

    0001becd ADCBuf_init

    0001bb1d ADCBuf_open

    0001a579 C$$EXIT

    00018a3b C$$IO$$

    0000b361 CBUFF_activateSession

    000060ed CBUFF_closeCSI

    00017159 CBUFF_closeEDMA

    0001afed CBUFF_closeLVDS

    0000ae39 CBUFF_configEDMA

    00005ae5 CBUFF_createSession

    00014685 CBUFF_deactivateSession

    00010bf5 CBUFF_deinit

    0000c37d CBUFF_deinitCSI

    0000cb1d CBUFF_deinitLVDS

    00010cf1 CBUFF_deleteSession

    000138a5 CBUFF_finalizeCSILinkListParams

    0001d1e1 CBUFF_finalizeLVDSLinkListParams

    00007e1d CBUFF_init

    00016a51 CBUFF_initCSI

    00017db5 CBUFF_initCSILinkListParams

    0000aff9 CBUFF_initLVDS

    00017781 CBUFF_initLVDSLinkListParams

    0001cdb5 CBUFF_openCSI

    000084e1 CBUFF_openLVDS

    00017b5d CBUFF_setVC

    00017e29 CBUFF_setupInterleaved_ADC

    00015c19 CBUFF_setupInterleaved_ADC_CP

    00016eb1 CBUFF_setupInterleaved_ADC_USER

    00015859 CBUFF_setupInterleaved_CP_ADC

    00014735 CBUFF_setupInterleaved_CP_ADC_CQ

    000134d1 CBUFF_setupInterleaved_CP_ADC_CQ_USER

    0001648b CBUFF_setupNonInterleaved_ADC

    00012061 CBUFF_setupNonInterleaved_ADC_CP

    00016775 CBUFF_setupNonInterleaved_ADC_USER

    00012e8d CBUFF_setupNonInterleaved_CP_ADC

    00013595 CBUFF_setupNonInterleaved_CP_ADC_CQ

    000128e9 CBUFF_setupNonInterleaved_CP_ADC_CQ_USER

    00013c65 CBUFF_setupTransfer

    0001aa9f CBUFF_setup_USER

    0001d4a9 CBUFF_shutdownTransfer

    00019359 CLI_MMWaveExtensionHandler

    00014d55 CLI_MMWaveExtensionHelp

    0001cdd5 CLI_MMWaveExtensionInit

    0001d7a1 CLI_getMMWaveExtensionConfig

    0001d501 CLI_getMMWaveExtensionOpenConfig

    00011c01 CLI_open

    0001aae9 CLI_write

    00010ded CRC_computeSignature

    0001a399 CRC_getSignature

    0001a049 CRC_getTransactionId

    51020761 CRC_initConfigParams

    51020775 CRC_open

    08008ca8 D2H_SYNC_PATTERN

    00019b0d DebugP_log0

    00019b65 DebugP_log1

    00019779 DebugP_log2

    000197d5 DebugP_log3

    000027b5 EDMA3ChannelToParamMap

    0001a619 EDMA3ClrCCErr

    0001cb35 EDMA3ClrEvt

    0001cb59 EDMA3ClrIntr

    0001b999 EDMA3ClrMissEvt

    0001cdf5 EDMA3DisableDmaEvt

    0001cb7d EDMA3DisableEvtIntr

    0001d295 EDMA3DisableQdmaEvt

    00019bbd EDMA3EnableChInShadowReg

    0001cba1 EDMA3EnableDmaEvt

    0001cbc5 EDMA3EnableEvtIntr

    0001d2ad EDMA3EnableQdmaEvt

    0001af19 EDMA3ErrIntrHighStatusGet

    0001bd25 EDMA3GetCCErrStatus

    0001bd2b EDMA3GetErrIntrStatus

    0001d529 EDMA3GetIntrStatus

    00014dfd EDMA3Init

    0001d53d EDMA3IntrStatusHighGet

    0001a3e9 EDMA3MapChToEvtQ

    0001d551 EDMA3MapQdmaChToPaRAM

    0001ce15 EDMA3QdmaClrMissEvt

    0001c4c9 EDMA3QdmaGetErrIntrStatus

    0001cbe9 EDMA3SetEvt

    0001d215 EDMA3SetPaRAM

    0001d759 EDMA3SetQdmaTrigWord

    0001b711 EDMA_chainChannels

    0000e7a1 EDMA_configChannel

    0001273d EDMA_configErrorMonitoring

    00017e9d EDMA_configParamSet

    0001a711 EDMA_disableChannel

    0001a75d EDMA_enableChannel

    0000e51d EDMA_getNumInstances

    0000f24d EDMA_init

    0001b0b5 EDMA_linkParamSets

    0000ce15 EDMA_open

    00019039 EDMA_startDmaTransfer

    0001451d EDMA_startTransfer

    00005155 EDMAsetRegion

    000106f1 EDMAutil_configHwaContiguous

    00012589 EDMAutil_configHwaOneHotSignature

    0000f6ed EDMAutil_configHwaTranspose

    000105e9 EDMAutil_configSyncAwithChaining

    00019c15 ESM_highpriority_FIQ

    0001533d ESM_init

    0001ce35 ESM_lowpriority_IRQ

    00014aa5 ESM_processInterrupt

    000185d1 GPIO_enableInt

    00016b69 GPIO_init

    000193b9 GPIO_setCallback

    0000cf85 GPIO_setConfig

    00013ddd GPIO_write

    08008cb0 H2D_CNYS_PATTERN

    08008cac H2D_SYNC_PATTERN

    0001adfd HOSTclose

    00018d01 HOSTlseek

    000198e9 HOSTopen

    00019945 HOSTread

    00018d69 HOSTrename

    0001ae41 HOSTunlink

    00019e7d HOSTwrite

    00007461 HSIHeader_createHeader

    0001840d HSIHeader_deleteHeader

    0000e295 HSIHeader_init

    00009bb9 HWA_configCommon

    00001779 HWA_configParamSet

    000163f5 HWA_configRam

    0001b59f HWA_enable

    0001ab79 HWA_enableDoneInterrupt

    00013ae5 HWA_enableParamSetInterrupt

    0001a345 HWA_getDMAconfig

    00003117 HWA_init

    0000c50d HWA_open

    0001abc1 HWA_readCFARPeakCountReg

    0001b02f HWA_reset

    0001b879 HWA_setDMA2ACCManualTrig

    00011699 HWAutil_configAngleEstAzimuth

    00008f79 HWAutil_configAngleEstAzimuthElevation

    0000edad HWAutil_configCFAR

    00002c71 HWAutil_configDopplerFFT

    0000eb51 HWAutil_configDopplerFFTSingleRangeBin

    000095b1 HWAutil_configRangeFFT

    0001d565 HwiP_Params_init

    00017701 HwiP_create

    0001b8b5 HwiP_delete

    000071c9 HwiP_disable

    0000e8dd HwiP_disableInterrupt

    0001333d HwiP_enableInterrupt

    0001cf35 HwiP_restore

    000153e1 MMWave_addBpmChirp

    00012f55 MMWave_addChirp

    000147e5 MMWave_addProfile

    00017f11 MMWave_config

    0001301d MMWave_configBPM

    00015cb5 MMWave_configLink

    0001b0f5 MMWave_decodeError

    0001d94f MMWave_decodeErrorLevel

    00019419 MMWave_deviceCfgAsyncEvent

    0001605d MMWave_deviceCfgFxn

    00008d5f MMWave_deviceEventFxn

    000166dd MMWave_deviceExecuteFxn

    000076e9 MMWave_deviceGetDeviceInfo

    0001767d MMWave_deviceInitFxn

    000184ed MMWave_deviceOpenFxn

    00018aed MMWave_deviceStartFxn

    0001bfed MMWave_deviceStopFxn

    0001d3bb MMWave_deviceSyncFxn

    0001d22f MMWave_encodeError

    00019c6d MMWave_execute

    0001b071 MMWave_executeLink

    000130e5 MMWave_flushCfg

    00014f4d MMWave_getBpmChirpHandle

    000160fd MMWave_getChirpCfg

    000131ad MMWave_getChirpHandle

    000171e1 MMWave_getNumBpmChirp

    00017c4d MMWave_getNumChirps

    00016f39 MMWave_getProfileCfg

    00015d51 MMWave_getProfileHandle

    510205ed MMWave_init

    510206c9 MMWave_initLink

    0001d249 MMWave_listAdd

    0001ce75 MMWave_listCat

    0001d459 MMWave_listGetHead

    0001d45d MMWave_listGetNext

    0001d0b9 MMWave_listRemove

    0001bf2d MMWave_listRemoveNode

    00017cc5 MMWave_open

    000108f5 MMWave_openLink

    0001c201 MMWave_osalMutexCreate

    0001d5a1 MMWave_osalMutexDelete

    0001d2c5 MMWave_osalMutexLock

    000057d5 MMWave_osalMutexUnlock

    0001c22f MMWave_osalSemCreate

    0001d5b5 MMWave_osalSemDelete

    00005de5 MMWave_osalSemSignal

    0001d2dd MMWave_osalSemWait

    00015485 MMWave_start

    000109f5 MMWave_startLink

    00019831 MMWave_stop

    000186a9 MMWave_stopLink

    0001a439 MMWave_sync

    0001cc55 Mailbox_Config_init

    00016805 Mailbox_close

    0001e56c Mailbox_defaultCfg

    51020279 Mailbox_init

    0000d551 Mailbox_open

    0001213d Mailbox_read

    00019101 Mailbox_readFlush

    000103cd Mailbox_write

    0001b74d Mailbox_writeReset

    0001d76b MemoryP_ctrlAlloc

    0000f807 MemoryP_ctrlFree

    0000a555 MmwDemo_ADCBufConfig

    00018ea1 MmwDemo_ADCBufOpen

    000066d5 MmwDemo_CLIInit

    00011b1d MmwDemo_EDMA_CQTransferCompletionCallbackFxn

    0001bf5d MmwDemo_EDMA_errorCallbackFxn

    0001aa09 MmwDemo_EDMA_transferCompletionCallbackFxn

    0001c1d1 MmwDemo_EDMA_transferControllerErrorCallbackFxn

    0001c5a1 MmwDemo_LVDSStreamDelete

    00017f85 MmwDemo_LVDSStreamDeleteHwSession

    00017ff9 MmwDemo_LVDSStreamDeleteSwSession

    00009dad MmwDemo_LVDSStreamHwConfig

    00014185 MmwDemo_LVDSStreamInit

    0000d0f5 MmwDemo_LVDSStreamSwConfig

    00015529 MmwDemo_LVDSStream_EDMAInit

    00008d61 MmwDemo_XYZestimation

    00013965 MmwDemo_azimHeapMapDopplerCompensation

    0000e149 MmwDemo_config1D_EDMA

    00010ee9 MmwDemo_config1D_HWA

    000151ed MmwDemo_config2DSingleBin_EDMA

    00003579 MmwDemo_config2D_EDMA

    00010fe5 MmwDemo_config2D_HWA

    0000fd75 MmwDemo_configAngleEstimation_HWA

    000101b5 MmwDemo_configCFAR_EDMA

    00012219 MmwDemo_configCFAR_HWA

    00013ba5 MmwDemo_configDetectedObj2DFFT_HWA

    00016c81 MmwDemo_configLVDSHwData

    000102c1 MmwDemo_dataPathCfgBuffers

    0000fe85 MmwDemo_dataPathConfig

    0000870d MmwDemo_dataPathConfigCQ

    000122f5 MmwDemo_dataPathConfigCQEdma

    00007971 MmwDemo_dataPathConfigCommon

    0000a179 MmwDemo_dataPathHwaDoneIsrCallback

    0001c5c9 MmwDemo_dataPathInit

    0001ce95 MmwDemo_dataPathObjInit

    0001ceb5 MmwDemo_dataPathOpen

    00015e89 MmwDemo_dataPathStart

    0001d5c9 MmwDemo_dataPathStop

    00007bc9 MmwDemo_dataPathTask

    00018325 MmwDemo_dataPathTrigger1D

    0001a6c1 MmwDemo_dataPathTrigger2D

    0001afa9 MmwDemo_dataPathTrigger2DSingleBin

    0001ba79 MmwDemo_dataPathTriggerAngleEstimation

    0001ad29 MmwDemo_dataPathTriggerCFAR

    00018e39 MmwDemo_dataPathWait1D

    000196b9 MmwDemo_dataPathWait2D

    0001b235 MmwDemo_dataPathWait2DFFTDetObj

    0001b275 MmwDemo_dataPathWaitAngleEstimation

    00019719 MmwDemo_dataPathWaitCFAR

    000082ad MmwDemo_dcRangeSignatureCompensation

    000111dd MmwDemo_dopplerCompensation

    510202e9 MmwDemo_edmaInit

    00016d0d MmwDemo_edmaOpen

    0000c065 MmwDemo_eventCallbackFxn

    0001d699 MmwDemo_hwaInit

    0001b2b5 MmwDemo_hwaOpen

    51020001 MmwDemo_initTask

    00013659 MmwDemo_measurementResultOutput

    0001cd71 MmwDemo_memPoolAlloc

    0001cf3b MmwDemo_memPoolReset

    00019d1d MmwDemo_mmWaveCtrlTask

    0001d7c1 MmwDemo_notifyBssSensorStop

    0001d5dd MmwDemo_notifyDathPathStop

    0001d0d5 MmwDemo_notifySensorStart

    0001d7d1 MmwDemo_notifySensorStop

    00003119 MmwDemo_parseProfileAndChirpConfig

    00008b45 MmwDemo_peakGrouping

    0001d77d MmwDemo_pow2roundup

    0001d4bf MmwDemo_process2D

    000049f5 MmwDemo_processAngle

    0001c5f9 MmwDemo_processCfar

    00013409 MmwDemo_quadFit

    000063ed MmwDemo_rangeBiasRxChPhaseMeasure

    0000d6b1 MmwDemo_rxChanPhaseBiasCompensation

    0001371d MmwDemo_sensorMgmtInit

    00017d3d MmwDemo_sensorStateInit

    08009954 MmwDemo_sensorStateMachine

    00014b51 MmwDemo_sensorStateStart

    00014bfd MmwDemo_sensorStateStop

    0001423d MmwDemo_sensorStateStopPending

    0001c25d MmwDemo_setHsiClk

    0001d69d MmwDemo_sleep

    000155cd MmwDemo_transferLVDSUserData

    00006999 MmwDemo_transmitProcessedOutput

    00019d75 MmwDemo_waitSensorStartComplete

    0001a7a9 MmwDemo_waitSensorStopComplete

    00018931 Pinmux_Set_FuncSel

    00014ff5 Pinmux_Set_OverrideCtrl

    UNDEFED SHT$$INIT_ARRAY$$Base

    UNDEFED SHT$$INIT_ARRAY$$Limit

    0001c4fd SOC_SystemISR

    08009a3c SOC_TranslateAddr_LUT

    0001509d SOC_deregisterSysIntListener

    00008929 SOC_deviceInit

    0001bbb9 SOC_enableHWA

    0001988d SOC_enableLVDS

    0001d7f1 SOC_getInAddr_LUTType

    0001d801 SOC_getOutAddr_LUTType

    0001806d SOC_init

    0001d96b SOC_microDelay

    00015999 SOC_registerSysIntListener

    00016fc1 SOC_translateAddress

    0001b789 SOC_unhaltBSS

    0001c311 SOC_waitBSSPowerUp

    0000bd39 SemaphoreP_Params_init

    00019165 SemaphoreP_create

    0001d979 SemaphoreP_delete

    0001d78f SemaphoreP_pend

    000169b5 SemaphoreP_post

    000169b5 SemaphoreP_postFromClock

    000169b5 SemaphoreP_postFromISR

    0001d2f5 UART_Params_init

    08009a60 UART_config

    0001e2e0 UART_defaultParams

    0001b9d1 UART_init

    0001bbed UART_open

    00018a75 UART_read

    00019ed5 UART_write

    0001ae85 UART_writePolling

    0001d6b5 UartSci_noDMAClose

    0001c621 UartSci_noDMAInitiateRxDMA

    0001c649 UartSci_noDMAInitiateTxDMA

    0001d6b9 UartSci_noDMAIsDMAEnabled

    0001d6bd UartSci_noDMAOpen

    0001d605 _DebugP_assert

    00040000 _L3ram_size

    51020000 _L3ram_start

    0001cae9 _MmwDemo_debugAssert

    00000000 __ASM__

    0800b474 __CIOBUF_

    0000005a __ISA__

    0000006c __PLAT__

    0800c5d8 __STACK_END

    000004b0 __STACK_SIZE

    00000090 __TARG__

    0001ed60 __TI_CINIT_Base

    0001ed80 __TI_CINIT_Limit

    0001ed38 __TI_Handler_Table_Base

    0001ed44 __TI_Handler_Table_Limit

    000114c0 __TI_auto_init

    0000a7ef __TI_cleanup

    08009c44 __TI_cleanup_ptr

    00016195 __TI_closefile

    0001899d __TI_decompress_lzss

    0001d987 __TI_decompress_none

    00012ced __TI_doflush

    08009c48 __TI_dtors_ptr

    08009c4c __TI_enable_exit_profile_output

    08009c14 __TI_ft_end

    ffffffff __TI_pprof_out_hndl

    000008c5 __TI_printfi

    ffffffff __TI_prof_data_size

    ffffffff __TI_prof_data_start

    00014a59 __TI_rd_ok

    00018a3f __TI_readmsg

    0001e910 __TI_static_base__

    0800b77c __TI_tmpnams

    00018a09 __TI_writemsg

    000149f5 __TI_wrt_ok

    00006f15 __TI_zero_init

    000000b6 __TRDR__

    000097b7 __aeabi_idiv0

    000179f1 __aeabi_memclr

    000179f1 __aeabi_memclr4

    000179f1 __aeabi_memclr8

    00015fc1 __aeabi_memcpy

    00015fc1 __aeabi_memcpy4

    00015fc1 __aeabi_memcpy8

    000179f3 __aeabi_memset

    000179f3 __aeabi_memset4

    000179f3 __aeabi_memset8

    08009c20 __aeabi_stderr

    08009c18 __aeabi_stdin

    08009c1c __aeabi_stdout

    0001a5c8 __aeabi_uidiv

    0001a5c8 __aeabi_uidivmod

    00006c5c __aeabi_uldivmod

    ffffffff __binit__

    ffffffff __c_args__

    000143ad __kernel_cos

    0000117d __kernel_rem_pio2

    00015671 __kernel_sin

    0800c128 __stack

    0001d385 _args_main

    000180e0 _c_int00

    0001de30 _ctypes_

    08009630 _device

    08009428 _ftable

    08009c68 _lock

    000144d7 _mpuAreRegionsSeparate_

    000144b7 _mpuDisableBackgroundRegion_

    00014483 _mpuDisable_

    000144a1 _mpuEnableBackgroundRegion_

    00014465 _mpuEnable_

    000144cd _mpuGetNumberOfRegions_

    000144f1 _mpuGetRegionBaseAddress_

    0001450b _mpuGetRegionPermission_

    00014501 _mpuGetRegionType_

    000144e5 _mpuGetRegion_

    000144eb _mpuSetRegionBaseAddress_

    00014515 _mpuSetRegionSizeRegister_

    000144f7 _mpuSetRegionTypeAndPermission_

    000144df _mpuSetRegion_

    0001d643 _nop

    0001d63b _register_lock

    0001d635 _register_unlock

    0800976c _stream

    08009c6c _unlock

    0001a57d abort

    0000bed5 angleEstimationAzimElev

    0000b509 atan

    0000b1ad atan2

    0000b1ad atan2l

    0000b509 atanl

    0001a529 atoi

    ffffffff binit

    00018f07 calcNoiseFloor

    000123d1 ceil

    000123d1 ceill

    00019e25 close

    0001a841 copy_in

    0001d263 copysign

    0001d263 copysignl

    0000420d cos

    0000420d cosl

    0800b058 edmaDbg

    08009cf4 errno

    0001a585 exit

    000161fb fclose

    00012d39 fflush

    0001823d finddevice

    00011dc1 floor

    00011dc1 floorl

    0000a845 fopen

    0001622d fputc

    0001c670 free

    0000a81b freopen

    000182b1 frexp

    000182b1 frexpl

    000191c9 fseek

    0001e580 gADCBufFxnTable

    0001e594 gADCBufHwCfg

    080096a8 gCBUFFHwAttribute

    08009718 gCBUFFInterfaceFxn

    0800b2d4 gCLI

    0800935c gCLIMMWaveControlCfg

    080092b4 gCLIMMWaveExtensionTable

    08009298 gCLIMMWaveOpenCfg

    0800800c gCQRxSatMonMemory

    0800808c gCQRxSigImgMemory

    08009ce4 gCRCRegister

    08009c50 gESMHwCfgAttrs

    0001e4c0 gEdmaHwAttrs

    0800b8a8 gEsmMCB

    08009c70 gGPIOHwAtrrib

    0800b594 gGPIOMCB

    0800b820 gHSIHeaderMCB

    0800b81c gHWADriverPtr

    08009a84 gHWAHwCfg

    08009b60 gInterleavedTransferFxn

    0800b6a8 gMMWave_MCB

    08009858 gMailboxMCB

    08009b78 gMailboxMssBssHwCfg

    52030000 gMmwHwaMemBuf

    51020000 gMmwL3

    08008000 gMmwL3heap

    08008190 gMmwMCB

    08009964 gMmwSessionMgmtMCB

    08009b90 gMultipleChirpNonInterleavedTransferFxn

    08009ba8 gNonInterleavedTransferFxn

    08009cec gPinmuxRegs

    08009c04 gSOCHwAttrib

    08009a14 gUartSciFxnTable

    080097bc gUartSciHwCfg

    0001826b getdevice

    000115ad ldexp

    000115ad ldexpl

    000097b9 log10

    000097b9 log10l

    0001c699 log2Approx

    0001c6e9 lseek

    0001a145 ltoa

    00013275 main

    08009d00 main_func_sp

    00019f98 malloc

    0001d115 memccpy

    0001cac3 memcmp

    00015fc1 memcpy

    000179f9 memset

    0001b697 mmwDemo_cfgAnalogMonitor

    0001c8d5 mmwDemo_cfgRxSaturationMonitor

    0001cf9f mmwDemo_cfgRxSigImgMonitor

    00013f55 open

    0800b918 parmbuf

    0001622d putc

    000162b3 putchar

    08009ce8 regionId

    0001c3c1 remove

    0001d621 rlAppendDummy

    0001bab1 rlAppendSubBlock

    0001c8fb rlDeviceGetMmWaveLinkVersion

    0001c33d rlDeviceGetMssVersion

    0001d325 rlDeviceGetRfVersion

    0001ac09 rlDeviceGetVersion

    0001a489 rlDeviceIdentifyCmdDir

    00018f6d rlDevicePowerOff

    5102096d rlDevicePowerOn

    0001cc79 rlDeviceSetHsiClk

    00018155 rlDriverAsyncEventHandler

    0001d33d rlDriverCalCRC

    00019ab3 rlDriverCalChkSum

    0000bba1 rlDriverCmdInvoke

    0000fa3d rlDriverCmdSendRetry

    0001c6c1 rlDriverConstructInMsg

    00016521 rlDriverDeInit

    0001757d rlDriverExecuteGetApi

    00018c31 rlDriverExecuteSetApi

    0001d355 rlDriverFillPayload

    0000dab9 rlDriverGetHandle

    0000a365 rlDriverGetPlatformId

    00018c99 rlDriverHostIrqHandler

    00010af5 rlDriverInit

    0001d36d rlDriverIsDeviceMapValid

    00016d99 rlDriverMsgCmdReply

    0000f001 rlDriverMsgRead

    000165b5 rlDriverMsgReadCmdCtx

    00019dcd rlDriverMsgReadSpawnCtx

    000142f5 rlDriverMsgWrite

    0001ac51 rlDriverOsiInit

    000181c9 rlDriverProcRdMsg

    000112d5 rlDriverRdVerifyMsg

    0000c81d rlDriverRxHdrRead

    0001b135 rlDriverValidateHdr

    0001a4d9 rlDriverVerifyCRC

    00015a39 rlDriverWaitForResponse

    0001cc9d rlEnableContMode

    0001b7c5 rlGetSubBlock

    0001d169 rlGetSubBlockId

    0001d3b5 rlGetSubBlockLen

    0001c921 rlRfAnaMonConfig

    0001cef5 rlRfInit

    0001c947 rlRfInitCalibConfig

    0001c96d rlRfRunTimeCalibConfig

    0001c993 rlRfRxIfSatMonConfig

    0001c9b9 rlRfRxSigImgMonConfig

    0001c9df rlRfSetCalMonFreqLimitConfig

    0001ccc1 rlRfSetCalMonTimeUnitConfig

    0001ca05 rlRfSetDeviceCfg

    0001bf8d rlSensorStart

    0001c369 rlSensorStop

    0001ca2b rlSetAdcOutConfig

    00015145 rlSetAdvFrameConfig

    0001ca51 rlSetBpmCommonConfig

    0001ca77 rlSetChannelConfig

    00012c21 rlSetChirpConfig

    0001ca9d rlSetContModeConfig

    00013a25 rlSetFrameConfig

    0001cce5 rlSetLowPowerModeConfig

    00012815 rlSetMultiBpmChirpConfig

    00014945 rlSetProfileConfig

    08008db4 rl_rxMsg

    08008cb4 rl_txMsg

    000115ad scalbn

    000115ad scalbnl

    000124ad setvbuf

    00004601 sin

    00004601 sinl

    0001922d sprintf

    0001c395 sqrt

    0001c395 sqrtl

    0001d4d5 strchr

    0001d39d strcmp

    0001d649 strcpy

    0001cd93 strcspn

    0001d4eb strlen

    0001bae7 strncpy

    0001c527 strspn

    00009f95 strtod

    0001b175 strtok

    00009f95 strtold

    08009aa8 ti_sysbios_BIOS_Module__state__V

    0001c444 ti_sysbios_BIOS_RtsGateProxy_Handle__label__S

    0001d6d4 ti_sysbios_BIOS_RtsGateProxy_enter__E

    0001d6d8 ti_sysbios_BIOS_RtsGateProxy_leave__E

    0001da10 ti_sysbios_BIOS_RtsGateProxy_query__E

    0001b1b4 ti_sysbios_BIOS_atExitFunc__I

    0001c3ec ti_sysbios_BIOS_errorRaiseHook__I

    0001cf14 ti_sysbios_BIOS_exitFunc__I

    0001d810 ti_sysbios_BIOS_getCpuFreq__E

    0001da50 ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E

    0001d6dc ti_sysbios_BIOS_nullFunc__I

    0001bc20 ti_sysbios_BIOS_registerRTSLock__I

    0001bc54 ti_sysbios_BIOS_removeRTSLock__I

    0001bfbc ti_sysbios_BIOS_rtsLock__I

    0001c738 ti_sysbios_BIOS_rtsUnlock__I

    0001d3c0 ti_sysbios_BIOS_setThreadType__E

    0001ba08 ti_sysbios_BIOS_startFunc__I

    0001d3e0 ti_sysbios_BIOS_start__E

    0000ea18 ti_sysbios_family_arm_TaskSupport_Module__startupDone__S

    000178f8 ti_sysbios_family_arm_TaskSupport_buildTaskStack

    0001d660 ti_sysbios_family_arm_TaskSupport_checkStack__E

    0001d830 ti_sysbios_family_arm_TaskSupport_getStackAlignment__E

    0001d0f8 ti_sysbios_family_arm_TaskSupport_glue

    0001dfd4 ti_sysbios_family_arm_TaskSupport_stackAlignment__C

    00019ee0 ti_sysbios_family_arm_TaskSupport_start__E

    0001d30c ti_sysbios_family_arm_TaskSupport_swap__E

    08009d08 ti_sysbios_family_arm_a15_TimestampProvider_Module__state__V

    0001d680 ti_sysbios_family_arm_a15_TimestampProvider_Module_startup__E

    0001bff0 ti_sysbios_family_arm_a15_TimestampProvider_autoRefreshFxn__I

    00011868 ti_sysbios_family_arm_a15_TimestampProvider_get32__E

    0001d810 ti_sysbios_family_arm_a15_TimestampProvider_getFreq__E

    0001d840 ti_sysbios_family_arm_a15_TimestampProvider_getOverflowCCNT__I

    0001d130 ti_sysbios_family_arm_a15_TimestampProvider_initCCNT__I

    0001e614 ti_sysbios_family_arm_exc_Exception_E_dataAbort__C

    0001e618 ti_sysbios_family_arm_exc_Exception_E_prefetchAbort__C

    0001e61c ti_sysbios_family_arm_exc_Exception_E_swi__C

    0001e620 ti_sysbios_family_arm_exc_Exception_E_undefinedInstruction__C

    08009d30 ti_sysbios_family_arm_exc_Exception_Module_State_0_excActive__A

    08009d0c ti_sysbios_family_arm_exc_Exception_Module_State_0_excContext__A

    08009d10 ti_sysbios_family_arm_exc_Exception_Module_State_0_excStackBuffers__A

    08009d38 ti_sysbios_family_arm_exc_Exception_Module_State_0_excStack_0__A

    08009d14 ti_sysbios_family_arm_exc_Exception_Module_State_0_excStack__A

    0001df32 ti_sysbios_family_arm_exc_Exception_Module__id__C

    08009bf0 ti_sysbios_family_arm_exc_Exception_Module__state__V

    0001d850 ti_sysbios_family_arm_exc_Exception_Module_startup__E

    00005df0 ti_sysbios_family_arm_exc_Exception_excDumpContext__I

    000129b8 ti_sysbios_family_arm_exc_Exception_excHandlerAsm__I

    00012a20 ti_sysbios_family_arm_exc_Exception_excHandlerDataAsm__I

    000076f0 ti_sysbios_family_arm_exc_Exception_excHandler__I

    0001e624 ti_sysbios_family_arm_exc_Exception_excHookFuncs__A

    0001e628 ti_sysbios_family_arm_exc_Exception_excHookFuncs__C

    00019290 ti_sysbios_family_arm_exc_Exception_initCore0__I

    0001e62c ti_sysbios_family_arm_v7a_Pmu_A_invalidCounterId__C

    0001e630 ti_sysbios_family_arm_v7a_Pmu_Module__diagsEnabled__C

    0001e634 ti_sysbios_family_arm_v7a_Pmu_Module__diagsIncluded__C

    0001e638 ti_sysbios_family_arm_v7a_Pmu_Module__diagsMask__C

    0001e56a ti_sysbios_family_arm_v7a_Pmu_Module__id__C

    08009c5c ti_sysbios_family_arm_v7a_Pmu_Module__state__V

    0001c760 ti_sysbios_family_arm_v7a_Pmu_Module_startup__E

    0000cc94 ti_sysbios_family_arm_v7a_Pmu_configureCounterI__I

    0000e8e0 ti_sysbios_family_arm_v7a_Pmu_configureCounter__E

    0001d860 ti_sysbios_family_arm_v7a_Pmu_disableInterruptI__E

    0001d870 ti_sysbios_family_arm_v7a_Pmu_enableInterruptI__E

    0000d264 ti_sysbios_family_arm_v7a_Pmu_getCountI__E

    00011ea0 ti_sysbios_family_arm_v7a_Pmu_getCount__E

    00012db8 ti_sysbios_family_arm_v7a_Pmu_getEnabled__E

    0001d880 ti_sysbios_family_arm_v7a_Pmu_getNumCounters__E

    0001d3f8 ti_sysbios_family_arm_v7a_Pmu_initCounters__I

    0001d890 ti_sysbios_family_arm_v7a_Pmu_startCounterI__E

    00011f80 ti_sysbios_family_arm_v7a_Pmu_startCounter__E

    0001d8a0 ti_sysbios_family_arm_v7a_Pmu_stopCounterI__E

    0001e63c ti_sysbios_family_arm_v7r_tms570_Core_E_mismatchedIds__C

    0001e8c4 ti_sysbios_family_arm_v7r_tms570_Core_Module__id__C

    000199a0 ti_sysbios_family_arm_v7r_tms570_Core_Module_startup__E

    0000f494 ti_sysbios_family_arm_v7r_tms570_Core_getId__E

    0001e640 ti_sysbios_family_arm_v7r_tms570_Core_id__C

    0001e644 ti_sysbios_family_arm_v7r_vim_Hwi_A_badChannelId__C

    0001e648 ti_sysbios_family_arm_v7r_vim_Hwi_E_alreadyDefined__C

    0001e64c ti_sysbios_family_arm_v7r_vim_Hwi_E_badIntNum__C

    0001e650 ti_sysbios_family_arm_v7r_vim_Hwi_E_phantomInterrupt__C

    0001e654 ti_sysbios_family_arm_v7r_vim_Hwi_E_undefined__C

    0001e658 ti_sysbios_family_arm_v7r_vim_Hwi_E_unsupportedMaskingOption__C

    000137e0 ti_sysbios_family_arm_v7r_vim_Hwi_Instance_finalize__E

    0000c1f0 ti_sysbios_family_arm_v7r_vim_Hwi_Instance_init__E

    0001e65c ti_sysbios_family_arm_v7r_vim_Hwi_LD_end__C

    0001e660 ti_sysbios_family_arm_v7r_vim_Hwi_LM_begin__C

    08009098 ti_sysbios_family_arm_v7r_vim_Hwi_Module_State_0_dispatchTable__A

    0800b928 ti_sysbios_family_arm_v7r_vim_Hwi_Module_State_0_fiqStack__A

    0001e664 ti_sysbios_family_arm_v7r_vim_Hwi_Module__diagsEnabled__C

    0001e668 ti_sysbios_family_arm_v7r_vim_Hwi_Module__diagsIncluded__C

    0001e66c ti_sysbios_family_arm_v7r_vim_Hwi_Module__diagsMask__C

    0001e8c6 ti_sysbios_family_arm_v7r_vim_Hwi_Module__id__C

    0001e8c8 ti_sysbios_family_arm_v7r_vim_Hwi_Module__loggerDefined__C

    0001e670 ti_sysbios_family_arm_v7r_vim_Hwi_Module__loggerFxn1__C

    0001e674 ti_sysbios_family_arm_v7r_vim_Hwi_Module__loggerFxn8__C

    0001e678 ti_sysbios_family_arm_v7r_vim_Hwi_Module__loggerObj__C

    08009c78 ti_sysbios_family_arm_v7r_vim_Hwi_Module__root__V

    0001c788 ti_sysbios_family_arm_v7r_vim_Hwi_Module__startupDone__F

    0001c788 ti_sysbios_family_arm_v7r_vim_Hwi_Module__startupDone__S

    08009988 ti_sysbios_family_arm_v7r_vim_Hwi_Module__state__V

    0000d270 ti_sysbios_family_arm_v7r_vim_Hwi_Module_startup__E

    0001e67c ti_sysbios_family_arm_v7r_vim_Hwi_NUM_INTERRUPTS__C

    0001e3c0 ti_sysbios_family_arm_v7r_vim_Hwi_Object__DESC__C

    0001e284 ti_sysbios_family_arm_v7r_vim_Hwi_Object__PARAMS__C

    0001bc88 ti_sysbios_family_arm_v7r_vim_Hwi_Object__delete__S

    080099bc ti_sysbios_family_arm_v7r_vim_Hwi_Object__table__V

    0001d8b0 ti_sysbios_family_arm_v7r_vim_Hwi_Params__init__S

    0001e108 ti_sysbios_family_arm_v7r_vim_Hwi_channelMap__A

    0001e680 ti_sysbios_family_arm_v7r_vim_Hwi_channelMap__C

    0001cf40 ti_sysbios_family_arm_v7r_vim_Hwi_clearInterrupt__E

    000170d0 ti_sysbios_family_arm_v7r_vim_Hwi_create

    0001d82c ti_sysbios_family_arm_v7r_vim_Hwi_delete

    0001c020 ti_sysbios_family_arm_v7r_vim_Hwi_disableInterrupt__E

    000071d0 ti_sysbios_family_arm_v7r_vim_Hwi_dispatchIRQC__I

    00016648 ti_sysbios_family_arm_v7r_vim_Hwi_dispatchIRQ__I

    0001c050 ti_sysbios_family_arm_v7r_vim_Hwi_enableInterrupt__E

    000184f0 ti_sysbios_family_arm_v7r_vim_Hwi_getStackInfo__E

    0000ba00 ti_sysbios_family_arm_v7r_vim_Hwi_initIntController__I

    0001b800 ti_sysbios_family_arm_v7r_vim_Hwi_init__I

    0001e5a4 ti_sysbios_family_arm_v7r_vim_Hwi_intReqEnaSet__A

    0001e684 ti_sysbios_family_arm_v7r_vim_Hwi_intReqEnaSet__C

    0001e688 ti_sysbios_family_arm_v7r_vim_Hwi_phantomFunc__C

    00018560 ti_sysbios_family_arm_v7r_vim_Hwi_phantomIntHandler__I

    0000a180 ti_sysbios_family_arm_v7r_vim_Hwi_reconfig__E

    0001d9a0 ti_sysbios_family_arm_v7r_vim_Hwi_startup__E

    0001d6a0 ti_sysbios_family_arm_v7r_vim_Hwi_switchFromBootStack__E

    0001e68c ti_sysbios_family_arm_v7r_vim_Hwi_taskDisable__C

    0001e690 ti_sysbios_family_arm_v7r_vim_Hwi_taskRestoreHwi__C

    00000000 ti_sysbios_family_arm_v7r_vim_Hwi_vectors

    fffffdec ti_sysbios_family_arm_v7r_vim_Hwi_vim

    0001e5b4 ti_sysbios_family_arm_v7r_vim_Hwi_wakeEnaSet__A

    0001e694 ti_sysbios_family_arm_v7r_vim_Hwi_wakeEnaSet__C

    00016310 ti_sysbios_family_xxx_Hwi_switchAndRunDispatchC

    000162c4 ti_sysbios_family_xxx_Hwi_switchAndRunFunc

    0001c418 ti_sysbios_gates_GateHwi_Handle__label__S

    0001da60 ti_sysbios_gates_GateHwi_Instance_init__E

    0001e330 ti_sysbios_gates_GateHwi_Module__FXNS__C

    08009c80 ti_sysbios_gates_GateHwi_Module__root__V

    0001e3e0 ti_sysbios_gates_GateHwi_Object__DESC__C

    0001e4dc ti_sysbios_gates_GateHwi_Object__PARAMS__C

    0001a88c ti_sysbios_gates_GateHwi_Object__create__S

    0001c080 ti_sysbios_gates_GateHwi_Object__delete__S

    08009d18 ti_sysbios_gates_GateHwi_Object__table__V

    0001d9b0 ti_sysbios_gates_GateHwi_enter__E

    0001d9f0 ti_sysbios_gates_GateHwi_leave__E

    0001da00 ti_sysbios_gates_GateHwi_query__E

    0001e698 ti_sysbios_gates_GateMutex_A_badContext__C

    0001c444 ti_sysbios_gates_GateMutex_Handle__label__S

    0001e69c ti_sysbios_gates_GateMutex_Instance_State_sem__O

    0001d6c0 ti_sysbios_gates_GateMutex_Instance_finalize__E

    0001c0b0 ti_sysbios_gates_GateMutex_Instance_init__E

    0001e354 ti_sysbios_gates_GateMutex_Module__FXNS__C

    0001e6a0 ti_sysbios_gates_GateMutex_Module__diagsEnabled__C

    0001e6a4 ti_sysbios_gates_GateMutex_Module__diagsIncluded__C

    0001e6a8 ti_sysbios_gates_GateMutex_Module__diagsMask__C

    0001e8ca ti_sysbios_gates_GateMutex_Module__id__C

    08009c88 ti_sysbios_gates_GateMutex_Module__root__V

    0001e400 ti_sysbios_gates_GateMutex_Object__DESC__C

    0001e4f4 ti_sysbios_gates_GateMutex_Object__PARAMS__C

    0001a8d8 ti_sysbios_gates_GateMutex_Object__create__S

    0001bcbc ti_sysbios_gates_GateMutex_Object__delete__S

    080098e4 ti_sysbios_gates_GateMutex_Object__table__V

    0000f370 ti_sysbios_gates_GateMutex_enter__E

    0001c7b0 ti_sysbios_gates_GateMutex_leave__E

    0001da10 ti_sysbios_gates_GateMutex_query__E

    0000f494 ti_sysbios_hal_Core_CoreProxy_getId__E

    0001e6ac ti_sysbios_hal_Hwi_E_stackOverflow__C

    0001c788 ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S

    0001d8b0 ti_sysbios_hal_Hwi_HwiProxy_Params__init__S

    0001cf40 ti_sysbios_hal_Hwi_HwiProxy_clearInterrupt__E

    0001c020 ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E

    0001c050 ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E

    000184f0 ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E

    0001d9a0 ti_sysbios_hal_Hwi_HwiProxy_startup__E

    0001d6a0 ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E

    0001e8cc ti_sysbios_hal_Hwi_Module__id__C

    0001d410 ti_sysbios_hal_Hwi_Module_startup__E

    08009c90 ti_sysbios_hal_Hwi_Object__table__V

    00019f40 ti_sysbios_hal_Hwi_checkStack

    0001cf40 ti_sysbios_hal_Hwi_clearInterrupt__E

    0001c020 ti_sysbios_hal_Hwi_disableInterrupt__E

    0001c050 ti_sysbios_hal_Hwi_enableInterrupt__E

    000184f0 ti_sysbios_hal_Hwi_getStackInfo__E

    0001a1a0 ti_sysbios_hal_Hwi_initStack

    0001d9a0 ti_sysbios_hal_Hwi_startup__E

    0001d6a0 ti_sysbios_hal_Hwi_switchFromBootStack__E

    0001e6b0 ti_sysbios_heaps_HeapBuf_Instance_State_freeList__O

    08009d1c ti_sysbios_heaps_HeapBuf_Module__state__V

    0000cb20 ti_sysbios_heaps_HeapBuf_Module_startup__E

    0001e6b4 ti_sysbios_heaps_HeapBuf_Object__count__C

    0001d428 ti_sysbios_heaps_HeapBuf_Object__get__S

    0001e6b8 ti_sysbios_heaps_HeapBuf_numConstructedHeaps__C

    0001e6bc ti_sysbios_heaps_HeapMem_A_align__C

    0001e6c0 ti_sysbios_heaps_HeapMem_A_heapSize__C

    0001e6c4 ti_sysbios_heaps_HeapMem_A_invalidFree__C

    0001e6c8 ti_sysbios_heaps_HeapMem_A_zeroBlock__C

    0001e6cc ti_sysbios_heaps_HeapMem_E_memory__C

    0001c470 ti_sysbios_heaps_HeapMem_Handle__label__S

    08000000 ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A

    000099c0 ti_sysbios_heaps_HeapMem_Instance_init__E

    0001c444 ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S

    0001d994 ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E

    0001d998 ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E

    0001da10 ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E

    0001e308 ti_sysbios_heaps_HeapMem_Module__FXNS__C

    0001e6d0 ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C

    0001e6d4 ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C

    0001e6d8 ti_sysbios_heaps_HeapMem_Module__diagsMask__C

    0001e6dc ti_sysbios_heaps_HeapMem_Module__gateObj__C

    0001e8ce ti_sysbios_heaps_HeapMem_Module__id__C

    08009c98 ti_sysbios_heaps_HeapMem_Module__root__V

    0001e420 ti_sysbios_heaps_HeapMem_Object__DESC__C

    0001e378 ti_sysbios_heaps_HeapMem_Object__PARAMS__C

    0001e6e0 ti_sysbios_heaps_HeapMem_Object__count__C

    0001a924 ti_sysbios_heaps_HeapMem_Object__create__S

    0001c0e0 ti_sysbios_heaps_HeapMem_Object__delete__S

    0001d14c ti_sysbios_heaps_HeapMem_Object__get__S

    08009bc0 ti_sysbios_heaps_HeapMem_Object__table__V

    000054d0 ti_sysbios_heaps_HeapMem_allocUnprotected__E

    000169c0 ti_sysbios_heaps_HeapMem_alloc__E

    00005160 ti_sysbios_heaps_HeapMem_freeUnprotected__E

    0001ae90 ti_sysbios_heaps_HeapMem_free__E

    000172f0 ti_sysbios_heaps_HeapMem_getStats__E

    00018a80 ti_sysbios_heaps_HeapMem_init__I

    0001da20 ti_sysbios_heaps_HeapMem_isBlocking__E

    0001e6e4 ti_sysbios_heaps_HeapMem_reqAlign__C

    0001e6e8 ti_sysbios_knl_Clock_LM_begin__C

    0001e6ec ti_sysbios_knl_Clock_LM_tick__C

    0001e6f0 ti_sysbios_knl_Clock_LW_delayed__C

    0001e6f4 ti_sysbios_knl_Clock_Module_State_clockQ__O

    0001e6f8 ti_sysbios_knl_Clock_Module__diagsEnabled__C

    0001e6fc ti_sysbios_knl_Clock_Module__diagsIncluded__C

    0001e700 ti_sysbios_knl_Clock_Module__diagsMask__C

    0001e8d0 ti_sysbios_knl_Clock_Module__id__C

    0001e8d2 ti_sysbios_knl_Clock_Module__loggerDefined__C

    0001e704 ti_sysbios_knl_Clock_Module__loggerFxn1__C

    0001e708 ti_sysbios_knl_Clock_Module__loggerFxn2__C

    0001e70c ti_sysbios_knl_Clock_Module__loggerObj__C

    080099e8 ti_sysbios_knl_Clock_Module__state__V

    0001bcf0 ti_sysbios_knl_Clock_Module_startup__E

    08009acc ti_sysbios_knl_Clock_Object__table__V

    0001c800 ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S

    0001d99c ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E

    0000f5d0 ti_sysbios_knl_Clock_TimerProxy_startup__E

    0001ac98 ti_sysbios_knl_Clock_doTick__I

    00016060 ti_sysbios_knl_Clock_logTick__E

    0000aab0 ti_sysbios_knl_Clock_workFunc__E

    0001e710 ti_sysbios_knl_Event_A_badContext__C

    0001e714 ti_sysbios_knl_Event_A_eventInUse__C

    0001e718 ti_sysbios_knl_Event_A_nullEventId__C

    0001e71c ti_sysbios_knl_Event_A_nullEventMasks__C

    0001e720 ti_sysbios_knl_Event_A_pendTaskDisabled__C

    0001e724 ti_sysbios_knl_Event_Instance_State_pendQ__O

    0001d170 ti_sysbios_knl_Event_Instance_init__E

    0001e728 ti_sysbios_knl_Event_LM_pend__C

    0001e72c ti_sysbios_knl_Event_LM_post__C

    0001e730 ti_sysbios_knl_Event_Module__diagsEnabled__C

    0001e734 ti_sysbios_knl_Event_Module__diagsIncluded__C

    0001e738 ti_sysbios_knl_Event_Module__diagsMask__C

    0001e8d4 ti_sysbios_knl_Event_Module__id__C

    0001e8d6 ti_sysbios_knl_Event_Module__loggerDefined__C

    0001e73c ti_sysbios_knl_Event_Module__loggerFxn4__C

    0001e740 ti_sysbios_knl_Event_Module__loggerFxn8__C

    0001e744 ti_sysbios_knl_Event_Module__loggerObj__C

    08009ca0 ti_sysbios_knl_Event_Module__root__V

    0001e440 ti_sysbios_knl_Event_Object__DESC__C

    0001e50c ti_sysbios_knl_Event_Object__PARAMS__C

    0001a970 ti_sysbios_knl_Event_create

    0001a620 ti_sysbios_knl_Event_pendTimeout__I

    00001d10 ti_sysbios_knl_Event_pend__E

    00009190 ti_sysbios_knl_Event_post__E

    0001e5d0 ti_sysbios_knl_Idle_funcList__A

    0001e5ec ti_sysbios_knl_Idle_funcList__C

    0001d440 ti_sysbios_knl_Idle_loop__E

    0001bd30 ti_sysbios_knl_Idle_run__E

    0001d9c0 ti_sysbios_knl_Queue_Instance_init__E

    08009ca8 ti_sysbios_knl_Queue_Module__root__V

    0001e460 ti_sysbios_knl_Queue_Object__DESC__C

    0001e524 ti_sysbios_knl_Queue_Object__PARAMS__C

    0001d8c0 ti_sysbios_knl_Queue_Object__get__S

    0001aed4 ti_sysbios_knl_Queue_construct

    0001c7d8 ti_sysbios_knl_Queue_destruct

    0001d460 ti_sysbios_knl_Queue_empty__E

    0001e748 ti_sysbios_knl_Semaphore_A_badContext__C

    0001e74c ti_sysbios_knl_Semaphore_A_noEvents__C

    0001e750 ti_sysbios_knl_Semaphore_A_overflow__C

    0001e754 ti_sysbios_knl_Semaphore_A_pendTaskDisabled__C

    0001e758 ti_sysbios_knl_Semaphore_Instance_State_pendQ__O

    0001d6e0 ti_sysbios_knl_Semaphore_Instance_finalize__E

    000104e0 ti_sysbios_knl_Semaphore_Instance_init__E

    0001e75c ti_sysbios_knl_Semaphore_LM_pend__C

    0001e760 ti_sysbios_knl_Semaphore_LM_post__C

    0001e764 ti_sysbios_knl_Semaphore_Module__diagsEnabled__C

    0001e768 ti_sysbios_knl_Semaphore_Module__diagsIncluded__C

    0001e76c ti_sysbios_knl_Semaphore_Module__diagsMask__C

    0001e8d8 ti_sysbios_knl_Semaphore_Module__id__C

    0001e8da ti_sysbios_knl_Semaphore_Module__loggerDefined__C

    0001e770 ti_sysbios_knl_Semaphore_Module__loggerFxn2__C

    0001e774 ti_sysbios_knl_Semaphore_Module__loggerFxn4__C

    0001e778 ti_sysbios_knl_Semaphore_Module__loggerObj__C

    08009cb0 ti_sysbios_knl_Semaphore_Module__root__V

    0001e480 ti_sysbios_knl_Semaphore_Object__DESC__C

    0001e39c ti_sysbios_knl_Semaphore_Object__PARAMS__C

    0001bd64 ti_sysbios_knl_Semaphore_Object__delete__S

    0001d8d0 ti_sysbios_knl_Semaphore_Params__init__S

    0001a9bc ti_sysbios_knl_Semaphore_construct

    0001a1f4 ti_sysbios_knl_Semaphore_create

    0001d9ac ti_sysbios_knl_Semaphore_delete

    0001c49c ti_sysbios_knl_Semaphore_destruct

    0001a670 ti_sysbios_knl_Semaphore_pendTimeout__I

    000027c0 ti_sysbios_knl_Semaphore_pend__E

    0000a370 ti_sysbios_knl_Semaphore_post__E

    0001e77c ti_sysbios_knl_Task_A_badPriority__C

    0001e780 ti_sysbios_knl_Task_A_badTaskState__C

    0001e784 ti_sysbios_knl_Task_A_badThreadType__C

    0001e788 ti_sysbios_knl_Task_A_badTimeout__C

    0001e78c ti_sysbios_knl_Task_A_noPendElem__C

    0001e790 ti_sysbios_knl_Task_A_sleepTaskDisabled__C

    0001e794 ti_sysbios_knl_Task_E_spOutOfBounds__C

    0001e798 ti_sysbios_knl_Task_E_stackOverflow__C

    0800b920 ti_sysbios_knl_Task_Instance_State_0_hookEnv__A

    0800ad38 ti_sysbios_knl_Task_Instance_State_0_stack__A

    000039b0 ti_sysbios_knl_Task_Instance_finalize__E

    000060f0 ti_sysbios_knl_Task_Instance_init__E

    0001e79c ti_sysbios_knl_Task_LD_block__C

    0001e7a0 ti_sysbios_knl_Task_LD_exit__C

    0001e7a4 ti_sysbios_knl_Task_LD_ready__C

    0001e7a8 ti_sysbios_knl_Task_LM_sleep__C

    0001e7ac ti_sysbios_knl_Task_LM_switch__C

    08009d20 ti_sysbios_knl_Task_Module_State_0_idleTask__A

    080095b0 ti_sysbios_knl_Task_Module_State_0_readyQ__A

    0001e7b0 ti_sysbios_knl_Task_Module_State_inactiveQ__O

    0001e7b4 ti_sysbios_knl_Task_Module__diagsEnabled__C

    0001e7b8 ti_sysbios_knl_Task_Module__diagsIncluded__C

    0001e7bc ti_sysbios_knl_Task_Module__diagsMask__C

    0001e8dc ti_sysbios_knl_Task_Module__id__C

    0001e8de ti_sysbios_knl_Task_Module__loggerDefined__C

    0001e7c0 ti_sysbios_knl_Task_Module__loggerFxn2__C

    0001e7c4 ti_sysbios_knl_Task_Module__loggerFxn4__C

    0001e7c8 ti_sysbios_knl_Task_Module__loggerObj__C

    08009cb8 ti_sysbios_knl_Task_Module__root__V

    080098a0 ti_sysbios_knl_Task_Module__state__V

    00011870 ti_sysbios_knl_Task_Module_startup__E

    0001e4a0 ti_sysbios_knl_Task_Object__DESC__C

    0001e248 ti_sysbios_knl_Task_Object__PARAMS__C

    0001e7cc ti_sysbios_knl_Task_Object__count__C

    0001d478 ti_sysbios_knl_Task_Object__get__S

    0001e7d0 ti_sysbios_knl_Task_Object__heap__C

    0800980c ti_sysbios_knl_Task_Object__table__V

    0001d8e0 ti_sysbios_knl_Task_Params__init__S

    0000ea18 ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S

    0001d660 ti_sysbios_knl_Task_SupportProxy_checkStack__E

    0001d830 ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E

    00019ee0 ti_sysbios_knl_Task_SupportProxy_start__E

    0001d30c ti_sysbios_knl_Task_SupportProxy_swap__E

    0001e7d4 ti_sysbios_knl_Task_allBlockedFunc__C

    00018af0 ti_sysbios_knl_Task_allBlockedFunction__I

    000110e0 ti_sysbios_knl_Task_blockI__E

    000175fc ti_sysbios_knl_Task_create

    0001e7d8 ti_sysbios_knl_Task_defaultStackHeap__C

    0001e7dc ti_sysbios_knl_Task_defaultStackSize__C

    0001d490 ti_sysbios_knl_Task_disable__E

    0001c4d0 ti_sysbios_knl_Task_enter__I

    0000cca0 ti_sysbios_knl_Task_exit__E

    0001e53c ti_sysbios_knl_Task_hooks__A

    0001e5f4 ti_sysbios_knl_Task_hooks__C

    0001e7e0 ti_sysbios_knl_Task_numConstructedTasks__C

    0000bd40 ti_sysbios_knl_Task_postInit__I

    0001c110 ti_sysbios_knl_Task_restoreHwi__E

    0001ba40 ti_sysbios_knl_Task_restore__E

    00006f20 ti_sysbios_knl_Task_schedule__I

    0001cf60 ti_sysbios_knl_Task_sleepTimeout__I

    000057e0 ti_sysbios_knl_Task_sleep__E

    0000c380 ti_sysbios_knl_Task_startCore__E

    0001da70 ti_sysbios_knl_Task_startup__E

    0000e520 ti_sysbios_knl_Task_unblockI__E

    0001e7e4 ti_sysbios_timers_rti_Timer_E_cannotSupport__C

    08009bd8 ti_sysbios_timers_rti_Timer_Module_State_0_device__A

    08009cc0 ti_sysbios_timers_rti_Timer_Module_State_0_handles__A

    08009c24 ti_sysbios_timers_rti_Timer_Module_State_0_intFreqs__A

    0001e7e8 ti_sysbios_timers_rti_Timer_Module__diagsEnabled__C

    0001e7ec ti_sysbios_timers_rti_Timer_Module__diagsIncluded__C

    0001e7f0 ti_sysbios_timers_rti_Timer_Module__diagsMask__C

    0001e8e0 ti_sysbios_timers_rti_Timer_Module__id__C

    0001c800 ti_sysbios_timers_rti_Timer_Module__startupDone__F

    0001c800 ti_sysbios_timers_rti_Timer_Module__startupDone__S

    08009c34 ti_sysbios_timers_rti_Timer_Module__state__V

    00004de0 ti_sysbios_timers_rti_Timer_Module_startup__E

    0800991c ti_sysbios_timers_rti_Timer_Object__table__V

    0001e8e2 ti_sysbios_timers_rti_Timer_continueOnSuspend__C

    0000ea20 ti_sysbios_timers_rti_Timer_getFreq__E

    0001da30 ti_sysbios_timers_rti_Timer_getMaxTicks__E

    00012dc0 ti_sysbios_timers_rti_Timer_initDevice__I

    0001e7f4 ti_sysbios_timers_rti_Timer_numTimerDevices__C

    0001af20 ti_sysbios_timers_rti_Timer_periodicStub__E

    0001e7f8 ti_sysbios_timers_rti_Timer_startupNeeded__C

    0000f5d0 ti_sysbios_timers_rti_Timer_startup__E

    0001e7fc ti_sysbios_utils_Load_LS_cpuLoad__C

    0001e800 ti_sysbios_utils_Load_LS_taskLoad__C

    08009d24 ti_sysbios_utils_Load_Module_State_0_runningTask__A

    08009b2c ti_sysbios_utils_Load_Module_State_0_taskEnv__A

    08009d28 ti_sysbios_utils_Load_Module_State_0_taskStartTime__A

    0001e804 ti_sysbios_utils_Load_Module_State_taskList__O

    0001e808 ti_sysbios_utils_Load_Module__diagsEnabled__C

    0001e80c ti_sysbios_utils_Load_Module__diagsIncluded__C

    0001e810 ti_sysbios_utils_Load_Module__diagsMask__C

    0001e8e4 ti_sysbios_utils_Load_Module__id__C

    0001e8e6 ti_sysbios_utils_Load_Module__loggerDefined__C

    0001e814 ti_sysbios_utils_Load_Module__loggerFxn1__C

    0001e818 ti_sysbios_utils_Load_Module__loggerFxn4__C

    0001e81c ti_sysbios_utils_Load_Module__loggerObj__C

    08009518 ti_sysbios_utils_Load_Module__state__V

    0001e8e8 ti_sysbios_utils_Load_autoAddTasks__C

    0001d8f0 ti_sysbios_utils_Load_getCPULoad__E

    0000fb50 ti_sysbios_utils_Load_idleFxn__E

    0000f810 ti_sysbios_utils_Load_logLoads__I

    0001e820 ti_sysbios_utils_Load_postUpdate__C

    00013340 ti_sysbios_utils_Load_startup__E

    0000f4a0 ti_sysbios_utils_Load_taskCreateHook__E

    00014010 ti_sysbios_utils_Load_taskDeleteHook__E

    0001d900 ti_sysbios_utils_Load_taskRegHook__E

    00017680 ti_sysbios_utils_Load_taskSwitchHook__E

    000166e0 ti_sysbios_utils_Load_updateCurrentThreadTime__E

    0001e8ea ti_sysbios_utils_Load_updateInIdle__C

    0000d3e0 ti_sysbios_utils_Load_updateLoads__E

    0000dac0 ti_sysbios_utils_Load_updateThreadContexts__E

    0000d3e0 ti_sysbios_utils_Load_update__E

    0001e824 ti_sysbios_utils_Load_windowInMs__C

    0001c3c1 unlink

    00017049 vsnprintf

    0001c711 write

    0001e828 xdc_runtime_Assert_E_assertFailed__C

    00017974 xdc_runtime_Assert_raise__I

    0001e82c xdc_runtime_Core_A_initializedParams__C

    0001e830 xdc_runtime_Core_Module__diagsEnabled__C

    0001e834 xdc_runtime_Core_Module__diagsIncluded__C

    0001e838 xdc_runtime_Core_Module__diagsMask__C

    0001e8ec xdc_runtime_Core_Module__id__C

    000199fc xdc_runtime_Core_assignLabel__I

    000192f4 xdc_runtime_Core_assignParams__I

    0000e3d8 xdc_runtime_Core_constructObject__I

    0000c9a0 xdc_runtime_Core_createObject__I

    0001635c xdc_runtime_Core_deleteObject__I

    0001e83c xdc_runtime_Error_E_memory__C

    08009aec xdc_runtime_Error_IgnoreBlock

    0001e840 xdc_runtime_Error_Module__diagsEnabled__C

    0001e844 xdc_runtime_Error_Module__diagsIncluded__C

    0001e848 xdc_runtime_Error_Module__diagsMask__C

    0001e8ee xdc_runtime_Error_Module__loggerDefined__C

    0001e84c xdc_runtime_Error_Module__loggerFxn8__C

    0001e850 xdc_runtime_Error_Module__loggerObj__C

    08009d32 xdc_runtime_Error_Module__state__V

    0001c140 xdc_runtime_Error_check__E

    000172e8 xdc_runtime_Error_getSite__E

    0001c828 xdc_runtime_Error_init__E

    0001e8f0 xdc_runtime_Error_maxDepth__C

    0000ac74 xdc_runtime_Error_policyDefault__E

    0001e854 xdc_runtime_Error_policyFxn__C

    0001df31 xdc_runtime_Error_policy__C

    00015714 xdc_runtime_Error_print__E

    0001e858 xdc_runtime_Error_raiseHook__C

    0001c170 xdc_runtime_Error_raiseX__E

    00018dd0 xdc_runtime_Error_setX__E

    0001d910 xdc_runtime_Gate_enterSystem__E

    0001d6f4 xdc_runtime_Gate_leaveSystem__E

    0001e85c xdc_runtime_IGateProvider_Interface__BASE__C

    0001e860 xdc_runtime_IHeap_Interface__BASE__C

    0001e864 xdc_runtime_IModule_Interface__BASE__C

    0001e868 xdc_runtime_Log_L_error__C

    0001c418 xdc_runtime_Main_Module_GateProxy_Handle__label__S

    0001da00 xdc_runtime_Main_Module_GateProxy_query__E

    0001e86c xdc_runtime_Main_Module__diagsEnabled__C

    0001e870 xdc_runtime_Main_Module__diagsIncluded__C

    0001e874 xdc_runtime_Main_Module__diagsMask__C

    0001e8f2 xdc_runtime_Main_Module__id__C

    0001e8f4 xdc_runtime_Main_Module__loggerDefined__C

    0001e878 xdc_runtime_Main_Module__loggerFxn1__C

    0001e87c xdc_runtime_Main_Module__loggerFxn2__C

    0001e880 xdc_runtime_Main_Module__loggerFxn4__C

    0001e884 xdc_runtime_Main_Module__loggerObj__C

    0001c470 xdc_runtime_Memory_HeapProxy_Handle__label__S

    0001d708 xdc_runtime_Memory_HeapProxy_alloc__E

    0001d71c xdc_runtime_Memory_HeapProxy_free__E

    0001e8f6 xdc_runtime_Memory_Module__id__C

    08009d2c xdc_runtime_Memory_Module__state__V

    000145d0 xdc_runtime_Memory_alloc__E

    0001d730 xdc_runtime_Memory_calloc__E

    0001e888 xdc_runtime_Memory_defaultHeapInstance__C

    0001d744 xdc_runtime_Memory_free__E

    0001d920 xdc_runtime_Memory_getMaxDefaultTypeAlign__E

    0001c1a0 xdc_runtime_Memory_valloc__E

    08009cc8 xdc_runtime_Registry_Module__state__V

    0001bd98 xdc_runtime_Registry_findById__E

    08009cd0 xdc_runtime_Startup_Module__state__V

    00000001 xdc_runtime_Startup__EXECFXN__C

    00000001 xdc_runtime_Startup__RESETFXN__C

    0001e88c xdc_runtime_Startup_execImpl__C

    00016e24 xdc_runtime_Startup_exec__E

    0001d18c xdc_runtime_Startup_exec__I

    0001e5fc xdc_runtime_Startup_firstFxns__A

    0001e604 xdc_runtime_Startup_firstFxns__C

    0001e60c xdc_runtime_Startup_lastFxns__C

    0001e890 xdc_runtime_Startup_maxPasses__C

    0001d9bc xdc_runtime_Startup_reset__I

    0001d930 xdc_runtime_Startup_rtsDone__E

    0001e554 xdc_runtime_Startup_sfxnRts__A

    0001e894 xdc_runtime_Startup_sfxnRts__C

    0001e2b4 xdc_runtime_Startup_sfxnTab__A

    0001e898 xdc_runtime_Startup_sfxnTab__C

    0000d80c xdc_runtime_Startup_startMods__I

    0001bdcc xdc_runtime_SysStd_abort__E

    0000f5c4 xdc_runtime_SysStd_exit__E

    0001d9e8 xdc_runtime_SysStd_putch__E

    00019f38 xdc_runtime_SysStd_ready__E

    0001c418 xdc_runtime_System_Module_GateProxy_Handle__label__S

    0001d9ec xdc_runtime_System_Module_GateProxy_enter__E

    0001d9f8 xdc_runtime_System_Module_GateProxy_leave__E

    0001da00 xdc_runtime_System_Module_GateProxy_query__E

    08009b0c xdc_runtime_System_Module_State_0_atexitHandlers__A

    0001e89c xdc_runtime_System_Module__gateObj__C

    08009cd8 xdc_runtime_System_Module__state__V

    0001a198 xdc_runtime_System_Module_startup__E

    0001bdcc xdc_runtime_System_SupportProxy_abort__E

    0000f5c4 xdc_runtime_System_SupportProxy_exit__E

    0001d9e8 xdc_runtime_System_SupportProxy_putch__E

    00019f38 xdc_runtime_System_SupportProxy_ready__E

    0001e8a0 xdc_runtime_System_abortFxn__C

    0001a57d xdc_runtime_System_abortStd__E

    0001c85c xdc_runtime_System_abort__E

    0001c884 xdc_runtime_System_aprintf__E

    0001d9fc xdc_runtime_System_aprintf_va__F

    0001a248 xdc_runtime_System_atexit__E

    0001b1f4 xdc_runtime_System_avprintf__E

    00002274 xdc_runtime_System_doPrint__I

    0001e8a4 xdc_runtime_System_exitFxn__C

    0001a585 xdc_runtime_System_exitStd__E

    0001cd08 xdc_runtime_System_exit__E

    0001e8a8 xdc_runtime_System_extendFxn__C

    00015294 xdc_runtime_System_formatNum__I

    0001e8ac xdc_runtime_System_maxAtexitHandlers__C

    0000c694 xdc_runtime_System_printfExtend__I

    0001c8ac xdc_runtime_System_printf__E

    0001da08 xdc_runtime_System_printf_va__F

    0001ace0 xdc_runtime_System_processAtExit__E

    0001a29c xdc_runtime_System_putchar__I

    0001b83c xdc_runtime_System_vprintf__E

    0001d1a8 xdc_runtime_System_vsnprintf__E

    0001e8f8 xdc_runtime_Text_charCnt__C

    0001e900 xdc_runtime_Text_charTab__A

    0001e8b0 xdc_runtime_Text_charTab__C

    0001af64 xdc_runtime_Text_cordText__E

    0001e8fa xdc_runtime_Text_isLoaded__C

    0001e8b4 xdc_runtime_Text_nameEmpty__C

    0001e8b8 xdc_runtime_Text_nameStatic__C

    0001e8bc xdc_runtime_Text_nameUnknown__C

    0001a2f0 xdc_runtime_Text_printVisFxn__I

    00015ad8 xdc_runtime_Text_putLab__E

    00011954 xdc_runtime_Text_putMod__E

    000113cc xdc_runtime_Text_putSite__E

    0001e8fc xdc_runtime_Text_registryModsLastId__C

    0001d1c4 xdc_runtime_Text_ropeText__E

    0001e8fe xdc_runtime_Text_unnamedModsLastId__C

    0001e8c0 xdc_runtime_Text_visitRopeFxn__C

    000104d4 xdc_runtime_Text_visitRope__I

    00019658 xdc_runtime_Text_xprintf__I

    00011868 xdc_runtime_Timestamp_SupportProxy_get32__E

    0001d810 xdc_runtime_Timestamp_SupportProxy_getFreq__E

    00011868 xdc_runtime_Timestamp_get32__E

    0001d810 xdc_runtime_Timestamp_getFreq__E

    GLOBAL SYMBOLS: SORTED BY Symbol Address

    address name

    ------- ----

    00000000 __ASM__

    00000000 ti_sysbios_family_arm_v7r_vim_Hwi_vectors

    00000001 xdc_runtime_Startup__EXECFXN__C

    00000001 xdc_runtime_Startup__RESETFXN__C

    0000005a __ISA__

    0000006c __PLAT__

    00000090 __TARG__

    000000b6 __TRDR__

    000004b0 __STACK_SIZE

    000008c5 __TI_printfi

    0000117b ADCBUF_MMWave_init

    0000117d __kernel_rem_pio2

    00001779 HWA_configParamSet

    00001d07 ADCBuf_control

    00001d10 ti_sysbios_knl_Event_pend__E

    00002274 xdc_runtime_System_doPrint__I

    000027b5 EDMA3ChannelToParamMap

    000027c0 ti_sysbios_knl_Semaphore_pend__E

    00002c71 HWAutil_configDopplerFFT

    00003117 HWA_init

    00003119 MmwDemo_parseProfileAndChirpConfig

    00003579 MmwDemo_config2D_EDMA

    000039b0 ti_sysbios_knl_Task_Instance_finalize__E

    00003de1 ADCBUF_MMWave_control

    0000420d cos

    0000420d cosl

    00004601 sin

    00004601 sinl

    000049f5 MmwDemo_processAngle

    00004de0 ti_sysbios_timers_rti_Timer_Module_startup__E

    00005155 EDMAsetRegion

    00005160 ti_sysbios_heaps_HeapMem_freeUnprotected__E

    000054d0 ti_sysbios_heaps_HeapMem_allocUnprotected__E

    000057d5 MMWave_osalMutexUnlock

    000057e0 ti_sysbios_knl_Task_sleep__E

    00005ae5 CBUFF_createSession

    00005de5 MMWave_osalSemSignal

    00005df0 ti_sysbios_family_arm_exc_Exception_excDumpContext__I

    000060ed CBUFF_closeCSI

    000060f0 ti_sysbios_knl_Task_Instance_init__E

    000063ed MmwDemo_rangeBiasRxChPhaseMeasure

    000066d5 MmwDemo_CLIInit

    00006999 MmwDemo_transmitProcessedOutput

    00006c5c __aeabi_uldivmod

    00006f15 __TI_zero_init

    00006f20 ti_sysbios_knl_Task_schedule__I

    000071c9 HwiP_disable

    000071d0 ti_sysbios_family_arm_v7r_vim_Hwi_dispatchIRQC__I

    00007461 HSIHeader_createHeader

    000076e9 MMWave_deviceGetDeviceInfo

    000076f0 ti_sysbios_family_arm_exc_Exception_excHandler__I

    00007971 MmwDemo_dataPathConfigCommon

    00007bc9 MmwDemo_dataPathTask

    00007e1d CBUFF_init

    000082ad MmwDemo_dcRangeSignatureCompensation

    000084e1 CBUFF_openLVDS

    0000870d MmwDemo_dataPathConfigCQ

    00008929 SOC_deviceInit

    00008b45 MmwDemo_peakGrouping

    00008d5f MMWave_deviceEventFxn

    00008d61 MmwDemo_XYZestimation

    00008f79 HWAutil_configAngleEstAzimuthElevation

    00009190 ti_sysbios_knl_Event_post__E

    000095b1 HWAutil_configRangeFFT

    000097b7 __aeabi_idiv0

    000097b9 log10

    000097b9 log10l

    000099c0 ti_sysbios_heaps_HeapMem_Instance_init__E

    00009bb9 HWA_configCommon

    00009dad MmwDemo_LVDSStreamHwConfig

    00009f95 strtod

    00009f95 strtold

    0000a179 MmwDemo_dataPathHwaDoneIsrCallback

    0000a180 ti_sysbios_family_arm_v7r_vim_Hwi_reconfig__E

    0000a365 rlDriverGetPlatformId

    0000a370 ti_sysbios_knl_Semaphore_post__E

    0000a555 MmwDemo_ADCBufConfig

    0000a7ef __TI_cleanup

    0000a81b freopen

    0000a845 fopen

    0000aab0 ti_sysbios_knl_Clock_workFunc__E

    0000ac74 xdc_runtime_Error_policyDefault__E

    0000ae39 CBUFF_configEDMA

    0000aff9 CBUFF_initLVDS

    0000b1ad atan2

    0000b1ad atan2l

    0000b361 CBUFF_activateSession

    0000b509 atan

    0000b509 atanl

    0000b9f7 ADCBuf_getChanBufAddr

    0000ba00 ti_sysbios_family_arm_v7r_vim_Hwi_initIntController__I

    0000bba1 rlDriverCmdInvoke

    0000bd39 SemaphoreP_Params_init

    0000bd40 ti_sysbios_knl_Task_postInit__I

    0000bed5 angleEstimationAzimElev

    0000c065 MmwDemo_eventCallbackFxn

    0000c1f0 ti_sysbios_family_arm_v7r_vim_Hwi_Instance_init__E

    0000c37d CBUFF_deinitCSI

    0000c380 ti_sysbios_knl_Task_startCore__E

    0000c50d HWA_open

    0000c694 xdc_runtime_System_printfExtend__I

    0000c81d rlDriverRxHdrRead

    0000c9a0 xdc_runtime_Core_createObject__I

    0000cb1d CBUFF_deinitLVDS

    0000cb20 ti_sysbios_heaps_HeapBuf_Module_startup__E

    0000cc94 ti_sysbios_family_arm_v7a_Pmu_configureCounterI__I

    0000cca0 ti_sysbios_knl_Task_exit__E

    0000ce15 EDMA_open

    0000cf85 GPIO_setConfig

    0000d0f5 MmwDemo_LVDSStreamSwConfig

    0000d264 ti_sysbios_family_arm_v7a_Pmu_getCountI__E

    0000d270 ti_sysbios_family_arm_v7r_vim_Hwi_Module_startup__E

    0000d3e0 ti_sysbios_utils_Load_updateLoads__E

    0000d3e0 ti_sysbios_utils_Load_update__E

    0000d551 Mailbox_open

    0000d6b1 MmwDemo_rxChanPhaseBiasCompensation

    0000d80c xdc_runtime_Startup_startMods__I

    0000dab9 rlDriverGetHandle

    0000dac0 ti_sysbios_utils_Load_updateThreadContexts__E

    0000e149 MmwDemo_config1D_EDMA

    0000e295 HSIHeader_init

    0000e3d8 xdc_runtime_Core_constructObject__I

    0000e51d EDMA_getNumInstances

    0000e520 ti_sysbios_knl_Task_unblockI__E

    0000e7a1 EDMA_configChannel

    0000e8dd HwiP_disableInterrupt

    0000e8e0 ti_sysbios_family_arm_v7a_Pmu_configureCounter__E

    0000ea18 ti_sysbios_family_arm_TaskSupport_Module__startupDone__S

    0000ea18 ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S

    0000ea20 ti_sysbios_timers_rti_Timer_getFreq__E

    0000eb51 HWAutil_configDopplerFFTSingleRangeBin

    0000edad HWAutil_configCFAR

    0000f001 rlDriverMsgRead

    0000f24d EDMA_init

    0000f370 ti_sysbios_gates_GateMutex_enter__E

    0000f494 ti_sysbios_family_arm_v7r_tms570_Core_getId__E

    0000f494 ti_sysbios_hal_Core_CoreProxy_getId__E

    0000f4a0 ti_sysbios_utils_Load_taskCreateHook__E

    0000f5c4 xdc_runtime_SysStd_exit__E

    0000f5c4 xdc_runtime_System_SupportProxy_exit__E

    0000f5d0 ti_sysbios_knl_Clock_TimerProxy_startup__E

    0000f5d0 ti_sysbios_timers_rti_Timer_startup__E

    0000f6ed EDMAutil_configHwaTranspose

    0000f807 MemoryP_ctrlFree

    0000f810 ti_sysbios_utils_Load_logLoads__I

    0000fa3d rlDriverCmdSendRetry

    0000fb50 ti_sysbios_utils_Load_idleFxn__E

    0000fd75 MmwDemo_configAngleEstimation_HWA

    0000fe85 MmwDemo_dataPathConfig

    000101b5 MmwDemo_configCFAR_EDMA

    000102c1 MmwDemo_dataPathCfgBuffers

    000103cd Mailbox_write

    000104d4 xdc_runtime_Text_visitRope__I

    000104e0 ti_sysbios_knl_Semaphore_Instance_init__E

    000105e9 EDMAutil_configSyncAwithChaining

    000106f1 EDMAutil_configHwaContiguous

    000108f5 MMWave_openLink

    000109f5 MMWave_startLink

    00010af5 rlDriverInit

    00010bf5 CBUFF_deinit

    00010cf1 CBUFF_deleteSession

    00010ded CRC_computeSignature

    00010ee9 MmwDemo_config1D_HWA

    00010fe5 MmwDemo_config2D_HWA

    000110e0 ti_sysbios_knl_Task_blockI__E

    000111dd MmwDemo_dopplerCompensation

    000112d5 rlDriverRdVerifyMsg

    000113cc xdc_runtime_Text_putSite__E

    000114c0 __TI_auto_init

    000115ad ldexp

    000115ad ldexpl

    000115ad scalbn

    000115ad scalbnl

    00011699 HWAutil_configAngleEstAzimuth

    00011868 ti_sysbios_family_arm_a15_TimestampProvider_get32__E

    00011868 xdc_runtime_Timestamp_SupportProxy_get32__E

    00011868 xdc_runtime_Timestamp_get32__E

    00011870 ti_sysbios_knl_Task_Module_startup__E

    00011954 xdc_runtime_Text_putMod__E

    00011b1d MmwDemo_EDMA_CQTransferCompletionCallbackFxn

    00011c01 CLI_open

    00011dc1 floor

    00011dc1 floorl

    00011ea0 ti_sysbios_family_arm_v7a_Pmu_getCount__E

    00011f80 ti_sysbios_family_arm_v7a_Pmu_startCounter__E

    00012061 CBUFF_setupNonInterleaved_ADC_CP

    0001213d Mailbox_read

    00012219 MmwDemo_configCFAR_HWA

    000122f5 MmwDemo_dataPathConfigCQEdma

    000123d1 ceil

    000123d1 ceill

    000124ad setvbuf

    00012589 EDMAutil_configHwaOneHotSignature

    00012665 ADCBUF_MMWave_open

    0001273d EDMA_configErrorMonitoring

    00012815 rlSetMultiBpmChirpConfig

    000128e9 CBUFF_setupNonInterleaved_CP_ADC_CQ_USER

    000129b8 ti_sysbios_family_arm_exc_Exception_excHandlerAsm__I

    00012a20 ti_sysbios_family_arm_exc_Exception_excHandlerDataAsm__I

    00012c21 rlSetChirpConfig

    00012ced __TI_doflush

    00012d39 fflush

    00012db8 ti_sysbios_family_arm_v7a_Pmu_getEnabled__E

    00012dc0 ti_sysbios_timers_rti_Timer_initDevice__I

    00012e8d CBUFF_setupNonInterleaved_CP_ADC

    00012f55 MMWave_addChirp

    0001301d MMWave_configBPM

    000130e5 MMWave_flushCfg

    000131ad MMWave_getChirpHandle

    00013275 main

    0001333d HwiP_enableInterrupt

    00013340 ti_sysbios_utils_Load_startup__E

    00013409 MmwDemo_quadFit

    000134d1 CBUFF_setupInterleaved_CP_ADC_CQ_USER

    00013595 CBUFF_setupNonInterleaved_CP_ADC_CQ

    00013659 MmwDemo_measurementResultOutput

    0001371d MmwDemo_sensorMgmtInit

    000137e0 ti_sysbios_family_arm_v7r_vim_Hwi_Instance_finalize__E

    000138a5 CBUFF_finalizeCSILinkListParams

    00013965 MmwDemo_azimHeapMapDopplerCompensation

    00013a25 rlSetFrameConfig

    00013ae5 HWA_enableParamSetInterrupt

    00013ba5 MmwDemo_configDetectedObj2DFFT_HWA

    00013c65 CBUFF_setupTransfer

    00013ddd GPIO_write

    00013f55 open

    00014010 ti_sysbios_utils_Load_taskDeleteHook__E

    00014185 MmwDemo_LVDSStreamInit

    0001423d MmwDemo_sensorStateStopPending

    000142f5 rlDriverMsgWrite

    000143ad __kernel_cos

    00014465 _mpuEnable_

    00014483 _mpuDisable_

    000144a1 _mpuEnableBackgroundRegion_

    000144b7 _mpuDisableBackgroundRegion_

    000144cd _mpuGetNumberOfRegions_

    000144d7 _mpuAreRegionsSeparate_

    000144df _mpuSetRegion_

    000144e5 _mpuGetRegion_

    000144eb _mpuSetRegionBaseAddress_

    000144f1 _mpuGetRegionBaseAddress_

    000144f7 _mpuSetRegionTypeAndPermission_

    00014501 _mpuGetRegionType_

    0001450b _mpuGetRegionPermission_

    00014515 _mpuSetRegionSizeRegister_

    0001451d EDMA_startTransfer

    000145d0 xdc_runtime_Memory_alloc__E

    00014685 CBUFF_deactivateSession

    00014735 CBUFF_setupInterleaved_CP_ADC_CQ

    000147e5 MMWave_addProfile

    00014945 rlSetProfileConfig

    000149f5 __TI_wrt_ok

    00014a59 __TI_rd_ok

    00014aa5 ESM_processInterrupt

    00014b51 MmwDemo_sensorStateStart

    00014bfd MmwDemo_sensorStateStop

    00014d55 CLI_MMWaveExtensionHelp

    00014dfd EDMA3Init

    00014f4d MMWave_getBpmChirpHandle

    00014ff5 Pinmux_Set_OverrideCtrl

    0001509d SOC_deregisterSysIntListener

    00015145 rlSetAdvFrameConfig

    000151ed MmwDemo_config2DSingleBin_EDMA

    00015294 xdc_runtime_System_formatNum__I

    0001533d ESM_init

    000153e1 MMWave_addBpmChirp

    00015485 MMWave_start

    00015529 MmwDemo_LVDSStream_EDMAInit

    000155cd MmwDemo_transferLVDSUserData

    00015671 __kernel_sin

    00015714 xdc_runtime_Error_print__E

    000157b9 ADCBUF_MMWave_getChanBufAddr

    00015859 CBUFF_setupInterleaved_CP_ADC

    00015999 SOC_registerSysIntListener

    00015a39 rlDriverWaitForResponse

    00015ad8 xdc_runtime_Text_putLab__E

    00015c19 CBUFF_setupInterleaved_ADC_CP

    00015cb5 MMWave_configLink

    00015d51 MMWave_getProfileHandle

    00015e89 MmwDemo_dataPathStart

    00015fc1 __aeabi_memcpy

    00015fc1 __aeabi_memcpy4

    00015fc1 __aeabi_memcpy8

    00015fc1 memcpy

    0001605d MMWave_deviceCfgFxn

    00016060 ti_sysbios_knl_Clock_logTick__E

    000160fd MMWave_getChirpCfg

    00016195 __TI_closefile

    000161fb fclose

    0001622d fputc

    0001622d putc

    000162b3 putchar

    000162c4 ti_sysbios_family_xxx_Hwi_switchAndRunFunc

    00016310 ti_sysbios_family_xxx_Hwi_switchAndRunDispatchC

    0001635c xdc_runtime_Core_deleteObject__I

    000163f5 HWA_configRam

    0001648b CBUFF_setupNonInterleaved_ADC

    00016521 rlDriverDeInit

    000165b5 rlDriverMsgReadCmdCtx

    00016648 ti_sysbios_family_arm_v7r_vim_Hwi_dispatchIRQ__I

    000166dd MMWave_deviceExecuteFxn

    000166e0 ti_sysbios_utils_Load_updateCurrentThreadTime__E

    00016775 CBUFF_setupNonInterleaved_ADC_USER

    00016805 Mailbox_close

    000169b5 SemaphoreP_post

    000169b5 SemaphoreP_postFromClock

    000169b5 SemaphoreP_postFromISR

    000169c0 ti_sysbios_heaps_HeapMem_alloc__E

    00016a51 CBUFF_initCSI

    00016b69 GPIO_init

    00016c81 MmwDemo_configLVDSHwData

    00016d0d MmwDemo_edmaOpen

    00016d99 rlDriverMsgCmdReply

    00016e24 xdc_runtime_Startup_exec__E

    00016eb1 CBUFF_setupInterleaved_ADC_USER

    00016f39 MMWave_getProfileCfg

    00016fc1 SOC_translateAddress

    00017049 vsnprintf

    000170d0 ti_sysbios_family_arm_v7r_vim_Hwi_create

    00017159 CBUFF_closeEDMA

    000171e1 MMWave_getNumBpmChirp

    000172e8 xdc_runtime_Error_getSite__E

    000172f0 ti_sysbios_heaps_HeapMem_getStats__E

    0001757d rlDriverExecuteGetApi

    000175fc ti_sysbios_knl_Task_create

    0001767d MMWave_deviceInitFxn

    00017680 ti_sysbios_utils_Load_taskSwitchHook__E

    00017701 HwiP_create

    00017781 CBUFF_initLVDSLinkListParams

    000178f8 ti_sysbios_family_arm_TaskSupport_buildTaskStack

    00017974 xdc_runtime_Assert_raise__I

    000179f1 __aeabi_memclr

    000179f1 __aeabi_memclr4

    000179f1 __aeabi_memclr8

    000179f3 __aeabi_memset

    000179f3 __aeabi_memset4

    000179f3 __aeabi_memset8

    000179f9 memset

    00017a6d ADCBUF_MMWave_getCQBufAddr

    00017b5d CBUFF_setVC

    00017c4d MMWave_getNumChirps

    00017cc5 MMWave_open

    00017d3d MmwDemo_sensorStateInit

    00017db5 CBUFF_initCSILinkListParams

    00017e29 CBUFF_setupInterleaved_ADC

    00017e9d EDMA_configParamSet

    00017f11 MMWave_config

    00017f85 MmwDemo_LVDSStreamDeleteHwSession

    00017ff9 MmwDemo_LVDSStreamDeleteSwSession

    0001806d SOC_init

    000180e0 _c_int00

    00018155 rlDriverAsyncEventHandler

    000181c9 rlDriverProcRdMsg

    0001823d finddevice

    0001826b getdevice

    000182b1 frexp

    000182b1 frexpl

    00018325 MmwDemo_dataPathTrigger1D

    0001840d HSIHeader_deleteHeader

    000184ed MMWave_deviceOpenFxn

    000184f0 ti_sysbios_family_arm_v7r_vim_Hwi_getStackInfo__E

    000184f0 ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E

    000184f0 ti_sysbios_hal_Hwi_getStackInfo__E

    00018560 ti_sysbios_family_arm_v7r_vim_Hwi_phantomIntHandler__I

    000185d1 GPIO_enableInt

    000186a9 MMWave_stopLink

    00018931 Pinmux_Set_FuncSel

    0001899d __TI_decompress_lzss

    00018a09 __TI_writemsg

    00018a3b C$$IO$$

    00018a3f __TI_readmsg

    00018a75 UART_read

    00018a80 ti_sysbios_heaps_HeapMem_init__I

    00018aed MMWave_deviceStartFxn

    00018af0 ti_sysbios_knl_Task_allBlockedFunction__I

    00018c31 rlDriverExecuteSetApi

    00018c99 rlDriverHostIrqHandler

    00018d01 HOSTlseek

    00018d69 HOSTrename

    00018dd0 xdc_runtime_Error_setX__E

    00018e39 MmwDemo_dataPathWait1D

    00018ea1 MmwDemo_ADCBufOpen

    00018f07 calcNoiseFloor

    00018f6d rlDevicePowerOff

    00019039 EDMA_startDmaTransfer

    00019101 Mailbox_readFlush

    00019165 SemaphoreP_create

    000191c9 fseek

    0001922d sprintf

    00019290 ti_sysbios_family_arm_exc_Exception_initCore0__I

    000192f4 xdc_runtime_Core_assignParams__I

    00019359 CLI_MMWaveExtensionHandler

    000193b9 GPIO_setCallback

    00019419 MMWave_deviceCfgAsyncEvent

    00019658 xdc_runtime_Text_xprintf__I

    000196b9 MmwDemo_dataPathWait2D

    00019719 MmwDemo_dataPathWaitCFAR

    00019779 DebugP_log2

    000197d5 DebugP_log3

    00019831 MMWave_stop

    0001988d SOC_enableLVDS

    000198e9 HOSTopen

    00019945 HOSTread

    000199a0 ti_sysbios_family_arm_v7r_tms570_Core_Module_startup__E

    000199fc xdc_runtime_Core_assignLabel__I

    00019ab3 rlDriverCalChkSum

    00019b0d DebugP_log0

    00019b65 DebugP_log1

    00019bbd EDMA3EnableChInShadowReg

    00019c15 ESM_highpriority_FIQ

    00019c6d MMWave_execute

    00019d1d MmwDemo_mmWaveCtrlTask

    00019d75 MmwDemo_waitSensorStartComplete

    00019dcd rlDriverMsgReadSpawnCtx

    00019e25 close

    00019e7d HOSTwrite

    00019ed5 UART_write

    00019ee0 ti_sysbios_family_arm_TaskSupport_start__E

    00019ee0 ti_sysbios_knl_Task_SupportProxy_start__E

    00019f38 xdc_runtime_SysStd_ready__E

    00019f38 xdc_runtime_System_SupportProxy_ready__E

    00019f40 ti_sysbios_hal_Hwi_checkStack

    00019f98 malloc

    0001a049 CRC_getTransactionId

    0001a145 ltoa

    0001a198 xdc_runtime_System_Module_startup__E

    0001a1a0 ti_sysbios_hal_Hwi_initStack

    0001a1f4 ti_sysbios_knl_Semaphore_create

    0001a248 xdc_runtime_System_atexit__E

    0001a29c xdc_runtime_System_putchar__I

    0001a2f0 xdc_runtime_Text_printVisFxn__I

    0001a345 HWA_getDMAconfig

    0001a399 CRC_getSignature

    0001a3e9 EDMA3MapChToEvtQ

    0001a439 MMWave_sync

    0001a489 rlDeviceIdentifyCmdDir

    0001a4d9 rlDriverVerifyCRC

    0001a529 atoi

    0001a579 C$$EXIT

    0001a57d abort

    0001a57d xdc_runtime_System_abortStd__E

    0001a585 exit

    0001a585 xdc_runtime_System_exitStd__E

    0001a5c8 __aeabi_uidiv

    0001a5c8 __aeabi_uidivmod

    0001a619 EDMA3ClrCCErr

    0001a620 ti_sysbios_knl_Event_pendTimeout__I

    0001a670 ti_sysbios_knl_Semaphore_pendTimeout__I

    0001a6c1 MmwDemo_dataPathTrigger2D

    0001a711 EDMA_disableChannel

    0001a75d EDMA_enableChannel

    0001a7a9 MmwDemo_waitSensorStopComplete

    0001a841 copy_in

    0001a88c ti_sysbios_gates_GateHwi_Object__create__S

    0001a8d8 ti_sysbios_gates_GateMutex_Object__create__S

    0001a924 ti_sysbios_heaps_HeapMem_Object__create__S

    0001a970 ti_sysbios_knl_Event_create

    0001a9bc ti_sysbios_knl_Semaphore_construct

    0001aa09 MmwDemo_EDMA_transferCompletionCallbackFxn

    0001aa9f CBUFF_setup_USER

    0001aae9 CLI_write

    0001ab79 HWA_enableDoneInterrupt

    0001abc1 HWA_readCFARPeakCountReg

    0001ac09 rlDeviceGetVersion

    0001ac51 rlDriverOsiInit

    0001ac98 ti_sysbios_knl_Clock_doTick__I

    0001ace0 xdc_runtime_System_processAtExit__E

    0001ad29 MmwDemo_dataPathTriggerCFAR

    0001adfd HOSTclose

    0001ae41 HOSTunlink

    0001ae85 UART_writePolling

    0001ae90 ti_sysbios_heaps_HeapMem_free__E

    0001aed4 ti_sysbios_knl_Queue_construct

    0001af19 EDMA3ErrIntrHighStatusGet

    0001af20 ti_sysbios_timers_rti_Timer_periodicStub__E

    0001af64 xdc_runtime_Text_cordText__E

    0001afa9 MmwDemo_dataPathTrigger2DSingleBin

    0001afed CBUFF_closeLVDS

    0001b02f HWA_reset

    0001b071 MMWave_executeLink

    0001b0b5 EDMA_linkParamSets

    0001b0f5 MMWave_decodeError

    0001b135 rlDriverValidateHdr

    0001b175 strtok

    0001b1b4 ti_sysbios_BIOS_atExitFunc__I

    0001b1f4 xdc_runtime_System_avprintf__E

    0001b235 MmwDemo_dataPathWait2DFFTDetObj

    0001b275 MmwDemo_dataPathWaitAngleEstimation

    0001b2b5 MmwDemo_hwaOpen

    0001b59f HWA_enable

    0001b697 mmwDemo_cfgAnalogMonitor

    0001b711 EDMA_chainChannels

    0001b74d Mailbox_writeReset

    0001b789 SOC_unhaltBSS

    0001b7c5 rlGetSubBlock

    0001b800 ti_sysbios_family_arm_v7r_vim_Hwi_init__I

    0001b83c xdc_runtime_System_vprintf__E

    0001b879 HWA_setDMA2ACCManualTrig

    0001b8b5 HwiP_delete

    0001b8f1 ADCBUF_MMWave_close

    0001b999 EDMA3ClrMissEvt

    0001b9d1 UART_init

    0001ba08 ti_sysbios_BIOS_startFunc__I

    0001ba40 ti_sysbios_knl_Task_restore__E

    0001ba79 MmwDemo_dataPathTriggerAngleEstimation

    0001bab1 rlAppendSubBlock

    0001bae7 strncpy

    0001bb1d ADCBuf_open

    0001bbb9 SOC_enableHWA

    0001bbed UART_open

    0001bc20 ti_sysbios_BIOS_registerRTSLock__I

    0001bc54 ti_sysbios_BIOS_removeRTSLock__I

    0001bc88 ti_sysbios_family_arm_v7r_vim_Hwi_Object__delete__S

    0001bcbc ti_sysbios_gates_GateMutex_Object__delete__S

    0001bcf0 ti_sysbios_knl_Clock_Module_startup__E

    0001bd25 EDMA3GetCCErrStatus

    0001bd2b EDMA3GetErrIntrStatus

    0001bd30 ti_sysbios_knl_Idle_run__E

    0001bd64 ti_sysbios_knl_Semaphore_Object__delete__S

    0001bd98 xdc_runtime_Registry_findById__E

    0001bdcc xdc_runtime_SysStd_abort__E

    0001bdcc xdc_runtime_System_SupportProxy_abort__E

    0001becd ADCBuf_init

    0001bf2d MMWave_listRemoveNode

    0001bf5d MmwDemo_EDMA_errorCallbackFxn

    0001bf8d rlSensorStart

    0001bfbc ti_sysbios_BIOS_rtsLock__I

    0001bfed MMWave_deviceStopFxn

    0001bff0 ti_sysbios_family_arm_a15_TimestampProvider_autoRefreshFxn__I

    0001c020 ti_sysbios_family_arm_v7r_vim_Hwi_disableInterrupt__E

    0001c020 ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E

    0001c020 ti_sysbios_hal_Hwi_disableInterrupt__E

    0001c050 ti_sysbios_family_arm_v7r_vim_Hwi_enableInterrupt__E

    0001c050 ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E

    0001c050 ti_sysbios_hal_Hwi_enableInterrupt__E

    0001c080 ti_sysbios_gates_GateHwi_Object__delete__S

    0001c0b0 ti_sysbios_gates_GateMutex_Instance_init__E

    0001c0e0 ti_sysbios_heaps_HeapMem_Object__delete__S

    0001c110 ti_sysbios_knl_Task_restoreHwi__E

    0001c140 xdc_runtime_Error_check__E

    0001c170 xdc_runtime_Error_raiseX__E

    0001c1a0 xdc_runtime_Memory_valloc__E

    0001c1d1 MmwDemo_EDMA_transferControllerErrorCallbackFxn

    0001c201 MMWave_osalMutexCreate

    0001c22f MMWave_osalSemCreate

    0001c25d MmwDemo_setHsiClk

    0001c311 SOC_waitBSSPowerUp

    0001c33d rlDeviceGetMssVersion

    0001c369 rlSensorStop

    0001c395 sqrt

    0001c395 sqrtl

    0001c3c1 remove

    0001c3c1 unlink

    0001c3ec ti_sysbios_BIOS_errorRaiseHook__I

    0001c418 ti_sysbios_gates_GateHwi_Handle__label__S

    0001c418 xdc_runtime_Main_Module_GateProxy_Handle__label__S

    0001c418 xdc_runtime_System_Module_GateProxy_Handle__label__S

    0001c444 ti_sysbios_BIOS_RtsGateProxy_Handle__label__S

    0001c444 ti_sysbios_gates_GateMutex_Handle__label__S

    0001c444 ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S

    0001c470 ti_sysbios_heaps_HeapMem_Handle__label__S

    0001c470 xdc_runtime_Memory_HeapProxy_Handle__label__S

    0001c49c ti_sysbios_knl_Semaphore_destruct

    0001c4c9 EDMA3QdmaGetErrIntrStatus

    0001c4d0 ti_sysbios_knl_Task_enter__I

    0001c4fd SOC_SystemISR

    0001c527 strspn

    0001c5a1 MmwDemo_LVDSStreamDelete

    0001c5c9 MmwDemo_dataPathInit

    0001c5f9 MmwDemo_processCfar

    0001c621 UartSci_noDMAInitiateRxDMA

    0001c649 UartSci_noDMAInitiateTxDMA

    0001c670 free

    0001c699 log2Approx

    0001c6c1 rlDriverConstructInMsg

    0001c6e9 lseek

    0001c711 write

    0001c738 ti_sysbios_BIOS_rtsUnlock__I

    0001c760 ti_sysbios_family_arm_v7a_Pmu_Module_startup__E

    0001c788 ti_sysbios_family_arm_v7r_vim_Hwi_Module__startupDone__F

    0001c788 ti_sysbios_family_arm_v7r_vim_Hwi_Module__startupDone__S

    0001c788 ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S

    0001c7b0 ti_sysbios_gates_GateMutex_leave__E

    0001c7d8 ti_sysbios_knl_Queue_destruct

    0001c800 ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S

    0001c800 ti_sysbios_timers_rti_Timer_Module__startupDone__F

    0001c800 ti_sysbios_timers_rti_Timer_Module__startupDone__S

    0001c828 xdc_runtime_Error_init__E

    0001c85c xdc_runtime_System_abort__E

    0001c884 xdc_runtime_System_aprintf__E

    0001c8ac xdc_runtime_System_printf__E

    0001c8d5 mmwDemo_cfgRxSaturationMonitor

    0001c8fb rlDeviceGetMmWaveLinkVersion

    0001c921 rlRfAnaMonConfig

    0001c947 rlRfInitCalibConfig

    0001c96d rlRfRunTimeCalibConfig

    0001c993 rlRfRxIfSatMonConfig

    0001c9b9 rlRfRxSigImgMonConfig

    0001c9df rlRfSetCalMonFreqLimitConfig

    0001ca05 rlRfSetDeviceCfg

    0001ca2b rlSetAdcOutConfig

    0001ca51 rlSetBpmCommonConfig

    0001ca77 rlSetChannelConfig

    0001ca9d rlSetContModeConfig

    0001cac3 memcmp

    0001cae9 _MmwDemo_debugAssert

    0001cb35 EDMA3ClrEvt

    0001cb59 EDMA3ClrIntr

    0001cb7d EDMA3DisableEvtIntr

    0001cba1 EDMA3EnableDmaEvt

    0001cbc5 EDMA3EnableEvtIntr

    0001cbe9 EDMA3SetEvt

    0001cc55 Mailbox_Config_init

    0001cc79 rlDeviceSetHsiClk

    0001cc9d rlEnableContMode

    0001ccc1 rlRfSetCalMonTimeUnitConfig

    0001cce5 rlSetLowPowerModeConfig

    0001cd08 xdc_runtime_System_exit__E

    0001cd71 MmwDemo_memPoolAlloc

    0001cd93 strcspn

    0001cdb5 CBUFF_openCSI

    0001cdd5 CLI_MMWaveExtensionInit

    0001cdf5 EDMA3DisableDmaEvt

    0001ce15 EDMA3QdmaClrMissEvt

    0001ce35 ESM_lowpriority_IRQ

    0001ce75 MMWave_listCat

    0001ce95 MmwDemo_dataPathObjInit

    0001ceb5 MmwDemo_dataPathOpen

    0001cef5 rlRfInit

    0001cf14 ti_sysbios_BIOS_exitFunc__I

    0001cf35 HwiP_restore

    0001cf3b MmwDemo_memPoolReset

    0001cf40 ti_sysbios_family_arm_v7r_vim_Hwi_clearInterrupt__E

    0001cf40 ti_sysbios_hal_Hwi_HwiProxy_clearInterrupt__E

    0001cf40 ti_sysbios_hal_Hwi_clearInterrupt__E

    0001cf60 ti_sysbios_knl_Task_sleepTimeout__I

    0001cf9f mmwDemo_cfgRxSigImgMonitor

    0001d0b9 MMWave_listRemove

    0001d0d5 MmwDemo_notifySensorStart

    0001d0f8 ti_sysbios_family_arm_TaskSupport_glue

    0001d115 memccpy

    0001d130 ti_sysbios_family_arm_a15_TimestampProvider_initCCNT__I

    0001d14c ti_sysbios_heaps_HeapMem_Object__get__S

    0001d169 rlGetSubBlockId

    0001d170 ti_sysbios_knl_Event_Instance_init__E

    0001d18c xdc_runtime_Startup_exec__I

    0001d1a8 xdc_runtime_System_vsnprintf__E

    0001d1c4 xdc_runtime_Text_ropeText__E

    0001d1e1 CBUFF_finalizeLVDSLinkListParams

    0001d215 EDMA3SetPaRAM

    0001d22f MMWave_encodeError

    0001d249 MMWave_listAdd

    0001d263 copysign

    0001d263 copysignl

    0001d295 EDMA3DisableQdmaEvt

    0001d2ad EDMA3EnableQdmaEvt

    0001d2c5 MMWave_osalMutexLock

    0001d2dd MMWave_osalSemWait

    0001d2f5 UART_Params_init

    0001d30c ti_sysbios_family_arm_TaskSupport_swap__E

    0001d30c ti_sysbios_knl_Task_SupportProxy_swap__E

    0001d325 rlDeviceGetRfVersion

    0001d33d rlDriverCalCRC

    0001d355 rlDriverFillPayload

    0001d36d rlDriverIsDeviceMapValid

    0001d385 _args_main

    0001d39d strcmp

    0001d3b5 rlGetSubBlockLen

    0001d3bb MMWave_deviceSyncFxn

    0001d3c0 ti_sysbios_BIOS_setThreadType__E

    0001d3e0 ti_sysbios_BIOS_start__E

    0001d3f8 ti_sysbios_family_arm_v7a_Pmu_initCounters__I

    0001d410 ti_sysbios_hal_Hwi_Module_startup__E

    0001d428 ti_sysbios_heaps_HeapBuf_Object__get__S

    0001d440 ti_sysbios_knl_Idle_loop__E

    0001d459 MMWave_listGetHead

    0001d45d MMWave_listGetNext

    0001d460 ti_sysbios_knl_Queue_empty__E

    0001d478 ti_sysbios_knl_Task_Object__get__S

    0001d490 ti_sysbios_knl_Task_disable__E

    0001d4a9 CBUFF_shutdownTransfer

    0001d4bf MmwDemo_process2D

    0001d4d5 strchr

    0001d4eb strlen

    0001d501 CLI_getMMWaveExtensionOpenConfig

    0001d529 EDMA3GetIntrStatus

    0001d53d EDMA3IntrStatusHighGet

    0001d551 EDMA3MapQdmaChToPaRAM

    0001d565 HwiP_Params_init

    0001d5a1 MMWave_osalMutexDelete

    0001d5b5 MMWave_osalSemDelete

    0001d5c9 MmwDemo_dataPathStop

    0001d5dd MmwDemo_notifyDathPathStop

    0001d605 _DebugP_assert

    0001d621 rlAppendDummy

    0001d635 _register_unlock

    0001d63b _register_lock

    0001d643 _nop

    0001d649 strcpy

    0001d660 ti_sysbios_family_arm_TaskSupport_checkStack__E

    0001d660 ti_sysbios_knl_Task_SupportProxy_checkStack__E

    0001d680 ti_sysbios_family_arm_a15_TimestampProvider_Module_startup__E

    0001d699 MmwDemo_hwaInit

    0001d69d MmwDemo_sleep

    0001d6a0 ti_sysbios_family_arm_v7r_vim_Hwi_switchFromBootStack__E

    0001d6a0 ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E

    0001d6a0 ti_sysbios_hal_Hwi_switchFromBootStack__E

    0001d6b5 UartSci_noDMAClose

    0001d6b9 UartSci_noDMAIsDMAEnabled

    0001d6bd UartSci_noDMAOpen

    0001d6c0 ti_sysbios_gates_GateMutex_Instance_finalize__E

    0001d6d4 ti_sysbios_BIOS_RtsGateProxy_enter__E

    0001d6d8 ti_sysbios_BIOS_RtsGateProxy_leave__E

    0001d6dc ti_sysbios_BIOS_nullFunc__I

    0001d6e0 ti_sysbios_knl_Semaphore_Instance_finalize__E

    0001d6f4 xdc_runtime_Gate_leaveSystem__E

    0001d708 xdc_runtime_Memory_HeapProxy_alloc__E

    0001d71c xdc_runtime_Memory_HeapProxy_free__E

    0001d730 xdc_runtime_Memory_calloc__E

    0001d744 xdc_runtime_Memory_free__E

    0001d759 EDMA3SetQdmaTrigWord

    0001d76b MemoryP_ctrlAlloc

    0001d77d MmwDemo_pow2roundup

    0001d78f SemaphoreP_pend

    0001d7a1 CLI_getMMWaveExtensionConfig

    0001d7c1 MmwDemo_notifyBssSensorStop

    0001d7d1 MmwDemo_notifySensorStop

    0001d7f1 SOC_getInAddr_LUTType

    0001d801 SOC_getOutAddr_LUTType

    0001d810 ti_sysbios_BIOS_getCpuFreq__E

    0001d810 ti_sysbios_family_arm_a15_TimestampProvider_getFreq__E

    0001d810 xdc_runtime_Timestamp_SupportProxy_getFreq__E

    0001d810 xdc_runtime_Timestamp_getFreq__E

    0001d82c ti_sysbios_family_arm_v7r_vim_Hwi_delete

    0001d830 ti_sysbios_family_arm_TaskSupport_getStackAlignment__E

    0001d830 ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E

    0001d840 ti_sysbios_family_arm_a15_TimestampProvider_getOverflowCCNT__I

    0001d850 ti_sysbios_family_arm_exc_Exception_Module_startup__E

    0001d860 ti_sysbios_family_arm_v7a_Pmu_disableInterruptI__E

    0001d870 ti_sysbios_family_arm_v7a_Pmu_enableInterruptI__E

    0001d880 ti_sysbios_family_arm_v7a_Pmu_getNumCounters__E

    0001d890 ti_sysbios_family_arm_v7a_Pmu_startCounterI__E

    0001d8a0 ti_sysbios_family_arm_v7a_Pmu_stopCounterI__E

    0001d8b0 ti_sysbios_family_arm_v7r_vim_Hwi_Params__init__S

    0001d8b0 ti_sysbios_hal_Hwi_HwiProxy_Params__init__S

    0001d8c0 ti_sysbios_knl_Queue_Object__get__S

    0001d8d0 ti_sysbios_knl_Semaphore_Params__init__S

    0001d8e0 ti_sysbios_knl_Task_Params__init__S

    0001d8f0 ti_sysbios_utils_Load_getCPULoad__E

    0001d900 ti_sysbios_utils_Load_taskRegHook__E

    0001d910 xdc_runtime_Gate_enterSystem__E

    0001d920 xdc_runtime_Memory_getMaxDefaultTypeAlign__E

    0001d930 xdc_runtime_Startup_rtsDone__E

    0001d941 ADCBuf_Params_init

    0001d94f MMWave_decodeErrorLevel

    0001d96b SOC_microDelay

    0001d979 SemaphoreP_delete

    0001d987 __TI_decompress_none

    0001d994 ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E

    0001d998 ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E

    0001d99c ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E

    0001d9a0 ti_sysbios_family_arm_v7r_vim_Hwi_startup__E

    0001d9a0 ti_sysbios_hal_Hwi_HwiProxy_startup__E

    0001d9a0 ti_sysbios_hal_Hwi_startup__E

    0001d9ac ti_sysbios_knl_Semaphore_delete

    0001d9b0 ti_sysbios_gates_GateHwi_enter__E

    0001d9bc xdc_runtime_Startup_reset__I

    0001d9c0 ti_sysbios_knl_Queue_Instance_init__E

    0001d9e8 xdc_runtime_SysStd_putch__E

    0001d9e8 xdc_runtime_System_SupportProxy_putch__E

    0001d9ec xdc_runtime_System_Module_GateProxy_enter__E

    0001d9f0 ti_sysbios_gates_GateHwi_leave__E

    0001d9f8 xdc_runtime_System_Module_GateProxy_leave__E

    0001d9fc xdc_runtime_System_aprintf_va__F

    0001da00 ti_sysbios_gates_GateHwi_query__E

    0001da00 xdc_runtime_Main_Module_GateProxy_query__E

    0001da00 xdc_runtime_System_Module_GateProxy_query__E

    0001da08 xdc_runtime_System_printf_va__F

    0001da10 ti_sysbios_BIOS_RtsGateProxy_query__E

    0001da10 ti_sysbios_gates_GateMutex_query__E

    0001da10 ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E

    0001da20 ti_sysbios_heaps_HeapMem_isBlocking__E

    0001da30 ti_sysbios_timers_rti_Timer_getMaxTicks__E

    0001da50 ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E

    0001da60 ti_sysbios_gates_GateHwi_Instance_init__E

    0001da70 ti_sysbios_knl_Task_startup__E

    0001de30 _ctypes_

    0001df31 xdc_runtime_Error_policy__C

    0001df32 ti_sysbios_family_arm_exc_Exception_Module__id__C

    0001dfd4 ti_sysbios_family_arm_TaskSupport_stackAlignment__C

    0001e108 ti_sysbios_family_arm_v7r_vim_Hwi_channelMap__A

    0001e248 ti_sysbios_knl_Task_Object__PARAMS__C

    0001e284 ti_sysbios_family_arm_v7r_vim_Hwi_Object__PARAMS__C

    0001e2b4 xdc_runtime_Startup_sfxnTab__A

    0001e2e0 UART_defaultParams

    0001e308 ti_sysbios_heaps_HeapMem_Module__FXNS__C

    0001e330 ti_sysbios_gates_GateHwi_Module__FXNS__C

    0001e354 ti_sysbios_gates_GateMutex_Module__FXNS__C

    0001e378 ti_sysbios_heaps_HeapMem_Object__PARAMS__C

    0001e39c ti_sysbios_knl_Semaphore_Object__PARAMS__C

    0001e3c0 ti_sysbios_family_arm_v7r_vim_Hwi_Object__DESC__C

    0001e3e0 ti_sysbios_gates_GateHwi_Object__DESC__C

    0001e400 ti_sysbios_gates_GateMutex_Object__DESC__C

    0001e420 ti_sysbios_heaps_HeapMem_Object__DESC__C

    0001e440 ti_sysbios_knl_Event_Object__DESC__C

    0001e460 ti_sysbios_knl_Queue_Object__DESC__C

    0001e480 ti_sysbios_knl_Semaphore_Object__DESC__C

    0001e4a0 ti_sysbios_knl_Task_Object__DESC__C

    0001e4c0 gEdmaHwAttrs

    0001e4dc ti_sysbios_gates_GateHwi_Object__PARAMS__C

    0001e4f4 ti_sysbios_gates_GateMutex_Object__PARAMS__C

    0001e50c ti_sysbios_knl_Event_Object__PARAMS__C

    0001e524 ti_sysbios_knl_Queue_Object__PARAMS__C

    0001e53c ti_sysbios_knl_Task_hooks__A

    0001e554 xdc_runtime_Startup_sfxnRts__A

    0001e56a ti_sysbios_family_arm_v7a_Pmu_Module__id__C

    0001e56c Mailbox_defaultCfg

    0001e580 gADCBufFxnTable

    0001e594 gADCBufHwCfg

    0001e5a4 ti_sysbios_family_arm_v7r_vim_Hwi_intReqEnaSet__A

    0001e5b4 ti_sysbios_family_arm_v7r_vim_Hwi_wakeEnaSet__A

    0001e5d0 ti_sysbios_knl_Idle_funcList__A

    0001e5dc ADCBuf_defaultParams

    0001e5ec ti_sysbios_knl_Idle_funcList__C

    0001e5f4 ti_sysbios_knl_Task_hooks__C

    0001e5fc xdc_runtime_Startup_firstFxns__A

    0001e604 xdc_runtime_Startup_firstFxns__C

    0001e60c xdc_runtime_Startup_lastFxns__C

    0001e614 ti_sysbios_family_arm_exc_Exception_E_dataAbort__C

    0001e618 ti_sysbios_family_arm_exc_Exception_E_prefetchAbort__C

    0001e61c ti_sysbios_family_arm_exc_Exception_E_swi__C

    0001e620 ti_sysbios_family_arm_exc_Exception_E_undefinedInstruction__C

    0001e624 ti_sysbios_family_arm_exc_Exception_excHookFuncs__A

    0001e628 ti_sysbios_family_arm_exc_Exception_excHookFuncs__C

    0001e62c ti_sysbios_family_arm_v7a_Pmu_A_invalidCounterId__C

    0001e630 ti_sysbios_family_arm_v7a_Pmu_Module__diagsEnabled__C

    0001e634 ti_sysbios_family_arm_v7a_Pmu_Module__diagsIncluded__C

    0001e638 ti_sysbios_family_arm_v7a_Pmu_Module__diagsMask__C

    0001e63c ti_sysbios_family_arm_v7r_tms570_Core_E_mismatchedIds__C

    0001e640 ti_sysbios_family_arm_v7r_tms570_Core_id__C

    0001e644 ti_sysbios_family_arm_v7r_vim_Hwi_A_badChannelId__C

    0001e648 ti_sysbios_family_arm_v7r_vim_Hwi_E_alreadyDefined__C

    0001e64c ti_sysbios_family_arm_v7r_vim_Hwi_E_badIntNum__C

    0001e650 ti_sysbios_family_arm_v7r_vim_Hwi_E_phantomInterrupt__C

    0001e654 ti_sysbios_family_arm_v7r_vim_Hwi_E_undefined__C

    0001e658 ti_sysbios_family_arm_v7r_vim_Hwi_E_unsupportedMaskingOption__C

    0001e65c ti_sysbios_family_arm_v7r_vim_Hwi_LD_end__C

    0001e660 ti_sysbios_family_arm_v7r_vim_Hwi_LM_begin__C

    0001e664 ti_sysbios_family_arm_v7r_vim_Hwi_Module__diagsEnabled__C

    0001e668 ti_sysbios_family_arm_v7r_vim_Hwi_Module__diagsIncluded__C

    0001e66c ti_sysbios_family_arm_v7r_vim_Hwi_Module__diagsMask__C

    0001e670 ti_sysbios_family_arm_v7r_vim_Hwi_Module__loggerFxn1__C

    0001e674 ti_sysbios_family_arm_v7r_vim_Hwi_Module__loggerFxn8__C

    0001e678 ti_sysbios_family_arm_v7r_vim_Hwi_Module__loggerObj__C

    0001e67c ti_sysbios_family_arm_v7r_vim_Hwi_NUM_INTERRUPTS__C

    0001e680 ti_sysbios_family_arm_v7r_vim_Hwi_channelMap__C

    0001e684 ti_sysbios_family_arm_v7r_vim_Hwi_intReqEnaSet__C

    0001e688 ti_sysbios_family_arm_v7r_vim_Hwi_phantomFunc__C

    0001e68c ti_sysbios_family_arm_v7r_vim_Hwi_taskDisable__C

    0001e690 ti_sysbios_family_arm_v7r_vim_Hwi_taskRestoreHwi__C

    0001e694 ti_sysbios_family_arm_v7r_vim_Hwi_wakeEnaSet__C

    0001e698 ti_sysbios_gates_GateMutex_A_badContext__C

    0001e69c ti_sysbios_gates_GateMutex_Instance_State_sem__O

    0001e6a0 ti_sysbios_gates_GateMutex_Module__diagsEnabled__C

    0001e6a4 ti_sysbios_gates_GateMutex_Module__diagsIncluded__C

    0001e6a8 ti_sysbios_gates_GateMutex_Module__diagsMask__C

    0001e6ac ti_sysbios_hal_Hwi_E_stackOverflow__C

    0001e6b0 ti_sysbios_heaps_HeapBuf_Instance_State_freeList__O

    0001e6b4 ti_sysbios_heaps_HeapBuf_Object__count__C

    0001e6b8 ti_sysbios_heaps_HeapBuf_numConstructedHeaps__C

    0001e6bc ti_sysbios_heaps_HeapMem_A_align__C

    0001e6c0 ti_sysbios_heaps_HeapMem_A_heapSize__C

    0001e6c4 ti_sysbios_heaps_HeapMem_A_invalidFree__C

    0001e6c8 ti_sysbios_heaps_HeapMem_A_zeroBlock__C

    0001e6cc ti_sysbios_heaps_HeapMem_E_memory__C

    0001e6d0 ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C

    0001e6d4 ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C

    0001e6d8 ti_sysbios_heaps_HeapMem_Module__diagsMask__C

    0001e6dc ti_sysbios_heaps_HeapMem_Module__gateObj__C

    0001e6e0 ti_sysbios_heaps_HeapMem_Object__count__C

    0001e6e4 ti_sysbios_heaps_HeapMem_reqAlign__C

    0001e6e8 ti_sysbios_knl_Clock_LM_begin__C

    0001e6ec ti_sysbios_knl_Clock_LM_tick__C

    0001e6f0 ti_sysbios_knl_Clock_LW_delayed__C

    0001e6f4 ti_sysbios_knl_Clock_Module_State_clockQ__O

    0001e6f8 ti_sysbios_knl_Clock_Module__diagsEnabled__C

    0001e6fc ti_sysbios_knl_Clock_Module__diagsIncluded__C

    0001e700 ti_sysbios_knl_Clock_Module__diagsMask__C

    0001e704 ti_sysbios_knl_Clock_Module__loggerFxn1__C

    0001e708 ti_sysbios_knl_Clock_Module__loggerFxn2__C

    0001e70c ti_sysbios_knl_Clock_Module__loggerObj__C

    0001e710 ti_sysbios_knl_Event_A_badContext__C

    0001e714 ti_sysbios_knl_Event_A_eventInUse__C

    0001e718 ti_sysbios_knl_Event_A_nullEventId__C

    0001e71c ti_sysbios_knl_Event_A_nullEventMasks__C

    0001e720 ti_sysbios_knl_Event_A_pendTaskDisabled__C

    0001e724 ti_sysbios_knl_Event_Instance_State_pendQ__O

    0001e728 ti_sysbios_knl_Event_LM_pend__C

    0001e72c ti_sysbios_knl_Event_LM_post__C

    0001e730 ti_sysbios_knl_Event_Module__diagsEnabled__C

    0001e734 ti_sysbios_knl_Event_Module__diagsIncluded__C

    0001e738 ti_sysbios_knl_Event_Module__diagsMask__C

    0001e73c ti_sysbios_knl_Event_Module__loggerFxn4__C

    0001e740 ti_sysbios_knl_Event_Module__loggerFxn8__C

    0001e744 ti_sysbios_knl_Event_Module__loggerObj__C

    0001e748 ti_sysbios_knl_Semaphore_A_badContext__C

    0001e74c ti_sysbios_knl_Semaphore_A_noEvents__C

    0001e750 ti_sysbios_knl_Semaphore_A_overflow__C

    0001e754 ti_sysbios_knl_Semaphore_A_pendTaskDisabled__C

    0001e758 ti_sysbios_knl_Semaphore_Instance_State_pendQ__O

    0001e75c ti_sysbios_knl_Semaphore_LM_pend__C

    0001e760 ti_sysbios_knl_Semaphore_LM_post__C

    0001e764 ti_sysbios_knl_Semaphore_Module__diagsEnabled__C

    0001e768 ti_sysbios_knl_Semaphore_Module__diagsIncluded__C

    0001e76c ti_sysbios_knl_Semaphore_Module__diagsMask__C

    0001e770 ti_sysbios_knl_Semaphore_Module__loggerFxn2__C

    0001e774 ti_sysbios_knl_Semaphore_Module__loggerFxn4__C

    0001e778 ti_sysbios_knl_Semaphore_Module__loggerObj__C

    0001e77c ti_sysbios_knl_Task_A_badPriority__C

    0001e780 ti_sysbios_knl_Task_A_badTaskState__C

    0001e784 ti_sysbios_knl_Task_A_badThreadType__C

    0001e788 ti_sysbios_knl_Task_A_badTimeout__C

    0001e78c ti_sysbios_knl_Task_A_noPendElem__C

    0001e790 ti_sysbios_knl_Task_A_sleepTaskDisabled__C

    0001e794 ti_sysbios_knl_Task_E_spOutOfBounds__C

    0001e798 ti_sysbios_knl_Task_E_stackOverflow__C

    0001e79c ti_sysbios_knl_Task_LD_block__C

    0001e7a0 ti_sysbios_knl_Task_LD_exit__C

    0001e7a4 ti_sysbios_knl_Task_LD_ready__C

    0001e7a8 ti_sysbios_knl_Task_LM_sleep__C

    0001e7ac ti_sysbios_knl_Task_LM_switch__C

    0001e7b0 ti_sysbios_knl_Task_Module_State_inactiveQ__O

    0001e7b4 ti_sysbios_knl_Task_Module__diagsEnabled__C

    0001e7b8 ti_sysbios_knl_Task_Module__diagsIncluded__C

    0001e7bc ti_sysbios_knl_Task_Module__diagsMask__C

    0001e7c0 ti_sysbios_knl_Task_Module__loggerFxn2__C

    0001e7c4 ti_sysbios_knl_Task_Module__loggerFxn4__C

    0001e7c8 ti_sysbios_knl_Task_Module__loggerObj__C

    0001e7cc ti_sysbios_knl_Task_Object__count__C

    0001e7d0 ti_sysbios_knl_Task_Object__heap__C

    0001e7d4 ti_sysbios_knl_Task_allBlockedFunc__C

    0001e7d8 ti_sysbios_knl_Task_defaultStackHeap__C

    0001e7dc ti_sysbios_knl_Task_defaultStackSize__C

    0001e7e0 ti_sysbios_knl_Task_numConstructedTasks__C

    0001e7e4 ti_sysbios_timers_rti_Timer_E_cannotSupport__C

    0001e7e8 ti_sysbios_timers_rti_Timer_Module__diagsEnabled__C

    0001e7ec ti_sysbios_timers_rti_Timer_Module__diagsIncluded__C

    0001e7f0 ti_sysbios_timers_rti_Timer_Module__diagsMask__C

    0001e7f4 ti_sysbios_timers_rti_Timer_numTimerDevices__C

    0001e7f8 ti_sysbios_timers_rti_Timer_startupNeeded__C

    0001e7fc ti_sysbios_utils_Load_LS_cpuLoad__C

    0001e800 ti_sysbios_utils_Load_LS_taskLoad__C

    0001e804 ti_sysbios_utils_Load_Module_State_taskList__O

    0001e808 ti_sysbios_utils_Load_Module__diagsEnabled__C

    0001e80c ti_sysbios_utils_Load_Module__diagsIncluded__C

    0001e810 ti_sysbios_utils_Load_Module__diagsMask__C

    0001e814 ti_sysbios_utils_Load_Module__loggerFxn1__C

    0001e818 ti_sysbios_utils_Load_Module__loggerFxn4__C

    0001e81c ti_sysbios_utils_Load_Module__loggerObj__C

    0001e820 ti_sysbios_utils_Load_postUpdate__C

    0001e824 ti_sysbios_utils_Load_windowInMs__C

    0001e828 xdc_runtime_Assert_E_assertFailed__C

    0001e82c xdc_runtime_Core_A_initializedParams__C

    0001e830 xdc_runtime_Core_Module__diagsEnabled__C

    0001e834 xdc_runtime_Core_Module__diagsIncluded__C

    0001e838 xdc_runtime_Core_Module__diagsMask__C

    0001e83c xdc_runtime_Error_E_memory__C

    0001e840 xdc_runtime_Error_Module__diagsEnabled__C

    0001e844 xdc_runtime_Error_Module__diagsIncluded__C

    0001e848 xdc_runtime_Error_Module__diagsMask__C

    0001e84c xdc_runtime_Error_Module__loggerFxn8__C

    0001e850 xdc_runtime_Error_Module__loggerObj__C

    0001e854 xdc_runtime_Error_policyFxn__C

    0001e858 xdc_runtime_Error_raiseHook__C

    0001e85c xdc_runtime_IGateProvider_Interface__BASE__C

    0001e860 xdc_runtime_IHeap_Interface__BASE__C

    0001e864 xdc_runtime_IModule_Interface__BASE__C

    0001e868 xdc_runtime_Log_L_error__C

    0001e86c xdc_runtime_Main_Module__diagsEnabled__C

    0001e870 xdc_runtime_Main_Module__diagsIncluded__C

    0001e874 xdc_runtime_Main_Module__diagsMask__C

    0001e878 xdc_runtime_Main_Module__loggerFxn1__C

    0001e87c xdc_runtime_Main_Module__loggerFxn2__C

    0001e880 xdc_runtime_Main_Module__loggerFxn4__C

    0001e884 xdc_runtime_Main_Module__loggerObj__C

    0001e888 xdc_runtime_Memory_defaultHeapInstance__C

    0001e88c xdc_runtime_Startup_execImpl__C

    0001e890 xdc_runtime_Startup_maxPasses__C

    0001e894 xdc_runtime_Startup_sfxnRts__C

    0001e898 xdc_runtime_Startup_sfxnTab__C

    0001e89c xdc_runtime_System_Module__gateObj__C

    0001e8a0 xdc_runtime_System_abortFxn__C

    0001e8a4 xdc_runtime_System_exitFxn__C

    0001e8a8 xdc_runtime_System_extendFxn__C

    0001e8ac xdc_runtime_System_maxAtexitHandlers__C

    0001e8b0 xdc_runtime_Text_charTab__C

    0001e8b4 xdc_runtime_Text_nameEmpty__C

    0001e8b8 xdc_runtime_Text_nameStatic__C

    0001e8bc xdc_runtime_Text_nameUnknown__C

    0001e8c0 xdc_runtime_Text_visitRopeFxn__C

    0001e8c4 ti_sysbios_family_arm_v7r_tms570_Core_Module__id__C

    0001e8c6 ti_sysbios_family_arm_v7r_vim_Hwi_Module__id__C

    0001e8c8 ti_sysbios_family_arm_v7r_vim_Hwi_Module__loggerDefined__C

    0001e8ca ti_sysbios_gates_GateMutex_Module__id__C

    0001e8cc ti_sysbios_hal_Hwi_Module__id__C

    0001e8ce ti_sysbios_heaps_HeapMem_Module__id__C

    0001e8d0 ti_sysbios_knl_Clock_Module__id__C

    0001e8d2 ti_sysbios_knl_Clock_Module__loggerDefined__C

    0001e8d4 ti_sysbios_knl_Event_Module__id__C

    0001e8d6 ti_sysbios_knl_Event_Module__loggerDefined__C

    0001e8d8 ti_sysbios_knl_Semaphore_Module__id__C

    0001e8da ti_sysbios_knl_Semaphore_Module__loggerDefined__C

    0001e8dc ti_sysbios_knl_Task_Module__id__C

    0001e8de ti_sysbios_knl_Task_Module__loggerDefined__C

    0001e8e0 ti_sysbios_timers_rti_Timer_Module__id__C

    0001e8e2 ti_sysbios_timers_rti_Timer_continueOnSuspend__C

    0001e8e4 ti_sysbios_utils_Load_Module__id__C

    0001e8e6 ti_sysbios_utils_Load_Module__loggerDefined__C

    0001e8e8 ti_sysbios_utils_Load_autoAddTasks__C

    0001e8ea ti_sysbios_utils_Load_updateInIdle__C

    0001e8ec xdc_runtime_Core_Module__id__C

    0001e8ee xdc_runtime_Error_Module__loggerDefined__C

    0001e8f0 xdc_runtime_Error_maxDepth__C

    0001e8f2 xdc_runtime_Main_Module__id__C

    0001e8f4 xdc_runtime_Main_Module__loggerDefined__C

    0001e8f6 xdc_runtime_Memory_Module__id__C

    0001e8f8 xdc_runtime_Text_charCnt__C

    0001e8fa xdc_runtime_Text_isLoaded__C

    0001e8fc xdc_runtime_Text_registryModsLastId__C

    0001e8fe xdc_runtime_Text_unnamedModsLastId__C

    0001e900 xdc_runtime_Text_charTab__A

    0001e910 __TI_static_base__

    0001ed38 __TI_Handler_Table_Base

    0001ed44 __TI_Handler_Table_Limit

    0001ed60 __TI_CINIT_Base

    0001ed80 __TI_CINIT_Limit

    00040000 _L3ram_size

    08000000 ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A

    08008000 gMmwL3heap

    0800800c gCQRxSatMonMemory

    0800808c gCQRxSigImgMemory

    08008190 gMmwMCB

    08008ca8 D2H_SYNC_PATTERN

    08008cac H2D_SYNC_PATTERN

    08008cb0 H2D_CNYS_PATTERN

    08008cb4 rl_txMsg

    08008db4 rl_rxMsg

    08009098 ti_sysbios_family_arm_v7r_vim_Hwi_Module_State_0_dispatchTable__A

    08009298 gCLIMMWaveOpenCfg

    080092b4 gCLIMMWaveExtensionTable

    0800935c gCLIMMWaveControlCfg

    08009428 _ftable

    08009518 ti_sysbios_utils_Load_Module__state__V

    080095b0 ti_sysbios_knl_Task_Module_State_0_readyQ__A

    08009630 _device

    080096a8 gCBUFFHwAttribute

    08009718 gCBUFFInterfaceFxn

    0800976c _stream

    080097bc gUartSciHwCfg

    0800980c ti_sysbios_knl_Task_Object__table__V

    08009858 gMailboxMCB

    080098a0 ti_sysbios_knl_Task_Module__state__V

    080098e4 ti_sysbios_gates_GateMutex_Object__table__V

    0800991c ti_sysbios_timers_rti_Timer_Object__table__V

    08009954 MmwDemo_sensorStateMachine

    08009964 gMmwSessionMgmtMCB

    08009988 ti_sysbios_family_arm_v7r_vim_Hwi_Module__state__V

    080099bc ti_sysbios_family_arm_v7r_vim_Hwi_Object__table__V

    080099e8 ti_sysbios_knl_Clock_Module__state__V

    08009a14 gUartSciFxnTable

    08009a3c SOC_TranslateAddr_LUT

    08009a60 UART_config

    08009a84 gHWAHwCfg

    08009aa8 ti_sysbios_BIOS_Module__state__V

    08009acc ti_sysbios_knl_Clock_Object__table__V

    08009aec xdc_runtime_Error_IgnoreBlock

    08009b0c xdc_runtime_System_Module_State_0_atexitHandlers__A

    08009b2c ti_sysbios_utils_Load_Module_State_0_taskEnv__A

    08009b48 ADCBuf_config

    08009b60 gInterleavedTransferFxn

    08009b78 gMailboxMssBssHwCfg

    08009b90 gMultipleChirpNonInterleavedTransferFxn

    08009ba8 gNonInterleavedTransferFxn

    08009bc0 ti_sysbios_heaps_HeapMem_Object__table__V

    08009bd8 ti_sysbios_timers_rti_Timer_Module_State_0_device__A

    08009bf0 ti_sysbios_family_arm_exc_Exception_Module__state__V

    08009c04 gSOCHwAttrib

    08009c14 __TI_ft_end

    08009c18 __aeabi_stdin

    08009c1c __aeabi_stdout

    08009c20 __aeabi_stderr

    08009c24 ti_sysbios_timers_rti_Timer_Module_State_0_intFreqs__A

    08009c34 ti_sysbios_timers_rti_Timer_Module__state__V

    08009c44 __TI_cleanup_ptr

    08009c48 __TI_dtors_ptr

    08009c4c __TI_enable_exit_profile_output

    08009c50 gESMHwCfgAttrs

    08009c5c ti_sysbios_family_arm_v7a_Pmu_Module__state__V

    08009c68 _lock

    08009c6c _unlock

    08009c70 gGPIOHwAtrrib

    08009c78 ti_sysbios_family_arm_v7r_vim_Hwi_Module__root__V

    08009c80 ti_sysbios_gates_GateHwi_Module__root__V

    08009c88 ti_sysbios_gates_GateMutex_Module__root__V

    08009c90 ti_sysbios_hal_Hwi_Object__table__V

    08009c98 ti_sysbios_heaps_HeapMem_Module__root__V

    08009ca0 ti_sysbios_knl_Event_Module__root__V

    08009ca8 ti_sysbios_knl_Queue_Module__root__V

    08009cb0 ti_sysbios_knl_Semaphore_Module__root__V

    08009cb8 ti_sysbios_knl_Task_Module__root__V

    08009cc0 ti_sysbios_timers_rti_Timer_Module_State_0_handles__A

    08009cc8 xdc_runtime_Registry_Module__state__V

    08009cd0 xdc_runtime_Startup_Module__state__V

    08009cd8 xdc_runtime_System_Module__state__V

    08009ce4 gCRCRegister

    08009ce8 regionId

    08009cec gPinmuxRegs

    08009cf4 errno

    08009d00 main_func_sp

    08009d08 ti_sysbios_family_arm_a15_TimestampProvider_Module__state__V

    08009d0c ti_sysbios_family_arm_exc_Exception_Module_State_0_excContext__A

    08009d10 ti_sysbios_family_arm_exc_Exception_Module_State_0_excStackBuffers__A

    08009d14 ti_sysbios_family_arm_exc_Exception_Module_State_0_excStack__A

    08009d18 ti_sysbios_gates_GateHwi_Object__table__V

    08009d1c ti_sysbios_heaps_HeapBuf_Module__state__V

    08009d20 ti_sysbios_knl_Task_Module_State_0_idleTask__A

    08009d24 ti_sysbios_utils_Load_Module_State_0_runningTask__A

    08009d28 ti_sysbios_utils_Load_Module_State_0_taskStartTime__A

    08009d2c xdc_runtime_Memory_Module__state__V

    08009d30 ti_sysbios_family_arm_exc_Exception_Module_State_0_excActive__A

    08009d32 xdc_runtime_Error_Module__state__V

    08009d38 ti_sysbios_family_arm_exc_Exception_Module_State_0_excStack_0__A

    0800ad38 ti_sysbios_knl_Task_Instance_State_0_stack__A

    0800b058 edmaDbg

    0800b2d4 gCLI

    0800b474 __CIOBUF_

    0800b594 gGPIOMCB

    0800b6a8 gMMWave_MCB

    0800b77c __TI_tmpnams

    0800b81c gHWADriverPtr

    0800b820 gHSIHeaderMCB

    0800b8a8 gEsmMCB

    0800b918 parmbuf

    0800b920 ti_sysbios_knl_Task_Instance_State_0_hookEnv__A

    0800b928 ti_sysbios_family_arm_v7r_vim_Hwi_Module_State_0_fiqStack__A

    0800c128 __stack

    0800c5d8 __STACK_END

    51020000 _L3ram_start

    51020000 gMmwL3

    51020001 MmwDemo_initTask

    51020279 Mailbox_init

    510202e9 MmwDemo_edmaInit

    510205ed MMWave_init

    510206c9 MMWave_initLink

    51020761 CRC_initConfigParams

    51020775 CRC_open

    5102096d rlDevicePowerOn

    52030000 gMmwHwaMemBuf

    fffffdec ti_sysbios_family_arm_v7r_vim_Hwi_vim

    ffffffff __TI_pprof_out_hndl

    ffffffff __TI_prof_data_size

    ffffffff __TI_prof_data_start

    ffffffff __binit__

    ffffffff __c_args__

    ffffffff binit

    UNDEFED SHT$$INIT_ARRAY$$Base

    UNDEFED SHT$$INIT_ARRAY$$Limit

    [1167 symbols]

    p { margin-bottom: 0.1in; direction: ltr; color: rgb(0, 0, 10); line-height: 120%; text-align: left; }p.western { font-family: "Liberation Serif", serif; font-size: 12pt; }p.cjk { font-family: "Source Han Sans CN Regular"; font-size: 12pt; }p.ctl { font-family: "Lohit Devanagari"; font-size: 12pt; } p { margin-bottom: 0.1in; direction: ltr; color: rgb(0, 0, 10); line-height: 120%; text-align: left; }p.western { font-family: "Liberation Serif", serif; font-size: 12pt; }p.cjk { font-family: "Source Han Sans CN Regular"; font-size: 12pt; }p.ctl { font-family: "Lohit Devanagari"; font-size: 12pt; }

  • Hi Nitin,

    There clearly is mud in my face.  The binary does produce an operational part.  I do not understand what did in the past so it did not.  Thank you for your time and help.  Sorry I wasted your time on this.

    Al

  • Glad it worked out !

    Regards
    -Nitin