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.

IWR6843AOP: pcount3D_cli Disable UART echo

Part Number: IWR6843AOP

We are using the pcount3D_cli to configure the device. But the UART port echo is bothering us.

Can we disable the port echo as we type/send the characters?

  • Hi Bob,

    Can you try setting UART_ECHO_OFF as shown in the example below in mss_main.c around line 2500.

    UART_Params_init(&uartParams);
    uartParams.writeDataMode = UART_DATA_BINARY;
    uartParams.readDataMode = UART_DATA_BINARY;
    uartParams.clockFrequency = gMmwMssMCB.cfg.platformCfg.sysClockFrequency;
    uartParams.baudRate = gMmwMssMCB.cfg.platformCfg.loggingBaudRate;
    uartParams.isPinMuxDone = 1U;
    uartParams.readEcho = UART_ECHO_OFF;
    uartParams.dmaHandle = dmaHandle;
    uartParams.txDMAChannel = UART_DMA_TX_CHANNEL;
    uartParams.rxDMAChannel = UART_DMA_RX_CHANNEL;

    Best,

    Nate