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.

IWR6843AOPEVM: IWR6843AOPEVM with only one UART

Part Number: IWR6843AOPEVM

Hello,
I have IWR6843AOPEVM but in final aplication I will able to use only one UART for data and CLI. I try to simulate it so I changed in pcount3D_cli.c

changed cliCfg.cliUartHandle = gMmwMssMCB.commandUartHandle;
cliCfg.usePolledMode = true;

to

cliCfg.cliUartHandle = gMmwMssMCB.loggingUartHandle;
cliCfg.usePolledMode = false;

But It didnt work.

Am I missing some other place to change CLI setting?

CCS: 11.1.0.00011, SDK 3.5.0.04, ITB 4.10.1, OverHead People Counting demo

  • Hello,

    This might cause other issues by just changing simply in the code, since the port might get opened or initialized multiple times. Do you see any response from the CLI driver on the new port?

    I think it will be easier to leave the CLI driver as is and modify the logging uart port to also output on the CLI port. Since the CLI driver is a more complicated setup, and the data output is a simple UART write.

    Regards,

    Jackson