I want to receive .cfg file through CANFD to start radar.The reception of CANFD is tested and can be used normally
I found cli.c in SDK and mss_main.c seems to run separately.I added System_printf() to both files.Only when mmwave demo visualizer sends cfg file,System_printf() in CLI_task() of cli.c in SDK is displayed.For the rest of time, only System_printf() in mss_main.c is displayed.
I tried to change cliCfg.cliUartHandle = gMmwMssMCB.commandUartHandle to cliCfg.cliUartHandle = canHandle and change the data type.Then I configure CANFD_createMsgObject() in CLI_task() of cli.c in SDK.I tried to start the radar with CANFD, but it didn't work
How does the program enter the CLI_task() of cli.c in SDK? Serial port interrupt or something else?
Where can I make changes to replace UART_read() with CANFD?
Thank you