mmWave SDK

请问mmWave SDK使用手册中的下边的这种程序是怎么运行的?

Building component in windows

cd %MMWAVE_SDK_INSTALL_PATH%/ti/<component_path_under_ti>

gmake clean

gmake all

 

REM The command will create the following file

REM     lib<component>_<device_type>.aer4f library under ti/<component_path_under_ti>/lib folder

REM If the module has unit test, it will also create

REM     <device_type>_<component>_mss.xer4f unit test binary under ti/<component_path_under_ti>/test/<device_type>

folder

REM If the device has a DSP and the driver supports DSP then the command will also create

REM     lib<component>_<device_type>.ae674 library for DSS under ti/<component_path_under_ti>/lib folder

REM If the module has unit test, it will also create

REM     <device_type>_<component>_dss.xe674 unit test binary for DSS under ti/<component_path_under_ti>/test

/<device_type> folder

REM Above paths are relative to %MMWAVE_SDK_INSTALL_PATH%/

REM For example to build the adcbuf lib and unit test

cd %MMWAVE_SDK_INSTALL_PATH%/ti/drivers/adcbuf

gmake clean

gmake all

REM For example to build the mmwavelink lib and unit test

cd %MMWAVE_SDK_INSTALL_PATH%/ti/control/mmwavelink

gmake clean

gmake all

REM For example to build the aoaproc dpu lib

cd %MMWAVE_SDK_INSTALL_PATH%/ti/datapath/dpc/dpu/aoaproc

gmake clean

gmake all

REM Additional build options for each component can be found by invoking make help

gmake help