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.

RTOS/AMIC110: UART1 fails when ICSS pinmux is enabled

Part Number: AMIC110

Tool/software: TI-RTOS

Hi Team, 

My customer is using the PDK RTOS 1.0.8 with AMIC110 device. 

In the application, we follow the design document of  to change the UART0 console to the UART1 with below example application:

C:\ti\pdk_am335x_1_0_8\packages\MyExampleProjects\UART_BasicExample_iceAMIC110_armExampleProject

It worked well, however, when we tried to enable the BOARD_INIT_ICSS_PINMUX configuration, it would fail working. 

The main change is as below, in the file

C:\ti\pdk_am335x_1_0_8\packages\ti\drv\uart\example\sample\src\main_uart_example.c

In line 95~97, Board_initUART function

boardCfg = BOARD_INIT_PINMUX_CONFIG |
BOARD_INIT_MODULE_CLOCK |
BOARD_INIT_UART_STDIO;

if we add the BOARD_INIT_ICSS_PINMUX, it failed with UART console output. 

boardCfg = BOARD_INIT_PINMUX_CONFIG |
BOARD_INIT_MODULE_CLOCK |
BOARD_INIT_UART_STDIO | BOARD_INIT_ICSS_PINMUX;

But I checked the PINMUX carefully, adding the BOARD_INIT_ICSS_PINMUX doesn't affect the UART1's pinmux on UART1_RX & UART1_TX. 

So i'm wondering why the BOARD_INIT_ICSS_PINMUX configuration would affect the UART1's console output.