Other Parts Discussed in Thread: IWR6843
Hello,
I’m using IWR6843AOP chip in my project and need to modify the original “overhead_3d_people_counting” project file, which is part of “mmwave_industrial_toolbox_4_7_0\labs\people_counting” lab package, to activate the Rx path of the high-speed UART.
In the project’s original code to map UART’s Tx (Pin E2), the GPIO is configured as in below,
Pinmux_Set_OverrideCtrl(SOC_XWR68XX_PINF14_PADAJ, PINMUX_OUTEN_RETAIN_HW_CTRL, PINMUX_INPEN_RETAIN_HW_CTRL);
Pinmux_Set_FuncSel(SOC_XWR68XX_PINF14_PADAJ, SOC_XWR68XX_PINF14_PADAJ_MSS_UARTB_TX);
Apparently the configured pins in the original code are based on IWR6843 chip not IWR6843AOP.
So the question is if the below lines of code will map IWR6843AOP UART’s Rx to pin U12 in the same project,
Pinmux_Set_OverrideCtrl(SOC_XWR68XX_PINP4_PADBB, PINMUX_OUTEN_RETAIN_HW_CTRL, PINMUX_INPEN_RETAIN_HW_CTRL);
Pinmux_Set_FuncSel(SOC_XWR68XX_PINP4_PADBB, SOC_XWR68XX_PINP4_PADBB_MSS_UARTB_RX);
Tanks,
Kai