#include #include #include "tm4c123gh6pm.h" void UART0_Init(void); void UART0_Write(char data); char UART0_Read(void); void PortF_Init(void); void LED_Control(char); int main(void) { SYSCTL_RCGCUART_R |= 0x80; // Enable clock to UART7 SYSCTL_RCGCGPIO_R |= 0x10; // Enable port E for uart 7 }