Hello,
I would like to use the RS232 pins to send data to an Arduino. These pins are numbered 5 and 7 (for Tx and Rx, respectively) on the J6 header on the EVM board. These pins are also named N5 and N4, respectively, in the data sheet. The arduino has a library using which I can configure the serial. But in the mmWave SDK, I could not find any references to RS232. So I assumed that the UART driver may be what I was looking for. I also noticed that in the mmWave demo, UART A was configured to pins N5 and N4:
Pinmux_Set_OverrideCtrl(SOC_XWR16XX_PINN5_PADBE, PINMUX_OUTEN_RETAIN_HW_CTRL, PINMUX_INPEN_RETAIN_HW_CTRL); Pinmux_Set_FuncSel(SOC_XWR16XX_PINN5_PADBE, SOC_XWR16XX_PINN5_PADBE_MSS_UARTA_TX); Pinmux_Set_OverrideCtrl(SOC_XWR16XX_PINN4_PADBD, PINMUX_OUTEN_RETAIN_HW_CTRL, PINMUX_INPEN_RETAIN_HW_CTRL); Pinmux_Set_FuncSel(SOC_XWR16XX_PINN4_PADBD, SOC_XWR16XX_PINN4_PADBD_MSS_UARTA_RX);
I then hoped to connect Arduino TX and RX lines to pins 5 and 7 on J6 of EVM at baud rate 115200 and 8N1 configuration to control the sensor. I tried sending the "sensorStop\r\n" command; however this did not work.
Is there anything I'm missing?
Thanks.