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/AWR1642BOOST: Executing the Unit Test code provided in SRR Use case application provided in mmwave_sdk_01_02_00_05

Part Number: AWR1642BOOST

Tool/software: Code Composer Studio

Hi,

We would like to execute the unit test codes provided in the mmwave sdk ----> mmwave_sdk_01_02_00_05/packages/ti/control/mmwave/test/xwr16xx/full.

Can someone please elaborate how can we run these Unit Tests on the AWR1642BOOST EVM in CCS?

We are able to execute various use case like SRR provided in CCS -- Resource Explorer.

Thanks and Regards,

Ganesh

  • Hi,

    I flashed the pre-built binaries given in the folder via CCS ----> C:\ti\mmwave_sdk_01_02_00_05\packages\ti\control\mmwave\test\xwr16xx\full
    namely xwr16xx_mmwave_full_dss.xe674 and xwr16xx_mmwave_full_mss.xer4f .
    The unit tests execute fine!

    But I would like to modify the main_full_mss.c and main_full_dss.c and add my own test cases to it and compile them. Any idea how can I compile & build them and generate the new binaries ?

    Thanks,
    Ganesh
  • Hello Ganesh,

    All the drivers/ libraries can build along with test application by single command 'gmake all'.

    Although if you want to build only test application then in mmwave case you need to run

    -  'gmake test'  : to build all the test app together.

    In case you want to build only MSS/DSS Full/Minimal test app then you need to modify 'ti\control\mmwave\makefile'

    testClean: mssFullTestClean dssFullTestClean mssMinimalTestClean dssMinimalTestClean
    test: mssFullTest dssFullTest mssMinimalTest dssMinimalTest

    Regards,

    Jitendra

  • Hi Jitendra,

    Thanks for your answer! I will try doing that.

    Regards,

    Ganesh