if i called this function for uart1(portb b0----rx and b1 .....tx)
ROM_UARTConfigSetExpClk(UART1_BASE, ROM_SysCtlClockGet(), 115200,
(UART_CONFIG_WLEN_8 | UART_CONFIG_STOP_ONE |
UART_CONFIG_PAR_NONE));
y the data is not displayed on to the terminal.......if i used the function like UARTStdioConfig(0, 115200, 16000000); then it throws an error in the uart echo exapmle.....but i thought ROM_UARTConfigSetExpClk() function was internally called the
UARTStdioConfig(0, 115200, 16000000) function; ......then what is the problem to display on the terminal...please help about this issue.....thank u
and if i used for portA then it is displayed on to the terminal,what i send. In the uart echo example program