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.

Linux: UART1 in DM385



Tool/software: Linux

Hi Sirs,

Originally we connect UART2 via UART2_TXD/I2C[3]_SDA and UART2_RXD/I2C[3]_SCL.
Now we would like to change to UART1 via GPMC_A[12]/UART1_RXD and GPMC_A[13]/UART1_TXD
If we modify the initiation function.Is it correct?

static void dm38x_uart2_pin_mux(void)
{
//sprintf(mux_name, "uart2_rxd_mux2");
//omap_mux_init_signal("uart2_rxd_mux2", TI814X_PULL_DIS | TI814X_INPUT_EN);
omap_mux_init_signal("uart1_rxd_mux1", TI814X_PULL_DIS | TI814X_INPUT_EN); //Modify


//sprintf(mux_name, "uart2_txd_mux2");
//omap_mux_init_signal("uart2_txd_mux2", TI814X_PULL_UP );
omap_mux_init_signal("uart1_txd_mux1", TI814X_PULL_UP ); //Modify
}

Best Regards,

Byron