Hello,
I've tried to setup UART2 (PD6 & PD7) on an EK-LM4F120XL REV B Launchpad eval board. I've set the port up for transmit and receive interrupts, which are working. However, when I look at the transmit pin (PD7) I don't see any serial packets being transmitted. I'm wondering if it's possible to use PD6 & PD7 on the eval board? I don't have much of an I/O selection since I'm using the Kentec LCD touchscreen display, which is consuming a lot of I/O.
Here is a clip of my serial initialization routine:
ROM_SysCtlPeripheralEnable(SYSCTL_PERIPH_UART2);
ROM_SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOD);
GPIOPinConfigure(GPIO_PD6_U2RX);
GPIOPinConfigure(GPIO_PD7_U2TX);
UARTStdioInit(2);
UARTFlowControlSet(GPIO_PORTD_BASE, UART_FLOWCONTROL_NONE);
// Enable the UART interrupt.
UARTFIFODisable(UART2_BASE);
ROM_IntEnable(INT_UART2);
ROM_UARTIntEnable(UART2_BASE, UART_INT_RX | UART_INT_TX);