Tool/software: Code Composer Studio
software:CCSv7
program in use:ti\mmwave_sdk_01_00_00_05\packages\ti\demo\xwr16xx\mmw
Question:After loading the progarm,use SensorStop/Start button of mmWave Demo Visualizer to stop and start the sensor, then set a breakpoint in 'mss_main.c'
if (MMWave_start (gMmwMssMCB.ctrlHandle, &calibrationCfg, &errCode) < 0)
{
/* Error: Unable to start the mmWave control */
System_printf ("Error: MMWDemoMSS mmWave Start failed [Error code %d]\n", errCode);
return -1;
}
System_printf ("Debug: MMWDemoMSS mmWave Start succeeded \n");
return
// the breakpoint is set at the second print function
// the hint is S/W BP disabel
how can i set a breakpoint resonably and use the breakpoint to debug the program?