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.

IWR6843ISK: IWR6843ISK - 3D_People_Counting: Getting an Output over UART

Part Number: IWR6843ISK

Hey,

We are trying to detect the amount of people in front of the Sensor and send this information over the UART to a Terminal. For this we are using Tera Term.

Our questions are:

- Is there already a variable that has the amount of people infront of the sensor?

- Is this the correct way to send information over the UART:

UART_Handle uartHandle;
char out = 'M';
uartHandle = gMmwMssMCB.loggingUartHandle;
UART_write(uartHandle, (uint8_t*)&out, sizeof(char));

we just wanted to output a "M" on the terminal, but it did not work.

Regards,

Sven