Is it possible to chane I2C pin to UART pin in LPC824?

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Is it possible to chane I2C pin to UART pin in LPC824?

819 Views
signalssystems
Contributor I

Hi,

Now  I am using LPC824 microcontroller.

I want to configure PIO0_10 as the UART1_TX pin.

The default fuction of PIO0_10 pin is I2C_SCL.

In my code i disabled that function and make that pin as uart_tx.but i did not get the proper output in uart terminal.

Is it possible to configure I2C pin as UART pin.

my configuration is,

void Init_UART_PinMux(void)
{
/* Enable the clock to the Switch Matrix */
LPC_SYSCTL->SYSAHBCLKCTRL |= (1<<7);

Chip_Clock_SetUARTClockDiv(1); /* divided by 1 */

Chip_SWM_DisableFixedPin(SWM_FIXED_SWCLK); //Uart1_rx pin
Chip_SWM_DisableFixedPin(SWM_FIXED_I2C0_SCL); //Uart1_tx pin

Chip_SWM_MovablePinAssign(SWM_U1_RXD_I, 3); //rx_uart1
Chip_SWM_MovablePinAssign(SWM_U1_TXD_O, 10);//tx_uart1

/* Disable the clock to the Switch Matrix to save power */
LPC_SYSCTL->SYSAHBCLKCTRL &= ~(1<<7);

}

thanks in advance.

Tags (1)
0 Kudos
1 Reply

471 Views
Carlos_Mendoza
NXP Employee
NXP Employee

Hi,

This question seems to be duplicated, please see my response on your other thread:

https://community.nxp.com/thread/455521 

Best Regards!
Carlos Mendoza
Technical Support Engineer

0 Kudos