I'm working with AWR1843BOOST module in which I'm running automated_parking_18xx_mss.
I do flash the binary on the AWR1843BOOST module,
After flashing the binary I do up the application on AWR1843BOOST using the vizuliser link :
dev.ti.com/.../
And get the expected data.
Now, I am trying to automate the process of bringing up the application on the AWR1843BOOST module, supplying power, and sending the data.
For that I found some commands while debuging of which it is calling , are as bellow :
Making up through GUI :
/* Open the CLI: */
if (CLI_open (&cliCfg) < 0)
{
System_printf ("Error: Unable to open the CLI\n");
return;
}
System_printf ("Debug: CLI is operational\n");
To Make it up without GUI I have called the following :
gMmwMssMCB.sensorState = MmwDemo_SensorState_OPENED;
//Task_sleep(1);
MmwDemo_CLISensorStop(1, CLISensorStopArgs);
//Task_sleep(1);
MmwDemo_CLIGuiMonSel(8, CLIGuiMonSelArgs);
//Task_sleep(1);
MmwDemo_CLISensorStart(1, CLISensorStartArgs);
Can someone help me in this, How to make it run without GUI : dev.ti.com/.../
?