Tool/software:
With the release of Radar Toolbox 03.20.00.04 comes documentation and software to support Radar within Edge AI Studio's Model Composer.
There is currently a typo in the Surface Classification project that is imported into Code Composer Studio, used for the integration and live preview features of Model Composer. This typo prevents compilation due to a syntax error, and must be fixed for the project to compile properly.
This is due to motion_detect.c found within surface_classification_demo_edgeai_xwrL64xx-GRASS-NOT. The fix can be done as follows
Before:
// Line 1688 CLI_write ("Error: mmWave Open failed [Error code: %d Subsystem: %d]\n", // mmWaveErrorCode, subsysErrorCode); return -1; ... // Line 1719 CLI_write ("Error: mmWave Config failed [Error code: %d Subsystem: %d]\n", // mmWaveErrorCode, subsysErrorCode); goto exit;
After:
// Line 1688 CLI_write ("Error: mmWave Open failed [Error code: %d Subsystem: %d]\n", mmWaveErrorCode, subsysErrorCode); return -1; ... // Line 1719 CLI_write ("Error: mmWave Config failed [Error code: %d Subsystem: %d]\n", mmWaveErrorCode, subsysErrorCode); goto exit;