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.

uratprintf() not functioning at all in tiva ware seriers

int main(void) 

{
SysCtlClockSet(SYSCTL_SYSDIV_1 | SYSCTL_USE_OSC| SYSCTL_OSC_MAIN | SYSCTL_XTAL_8MHZ);

SysCtlPeripheralEnable(SYSCTL_PERIPH_UART7);
SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOE);
GPIOPinConfigure(GPIO_PE0_U7RX);
GPIOPinConfigure(GPIO_PE1_U7TX);
GPIOPinTypeUART(GPIO_PORTE_BASE, GPIO_PIN_0 | GPIO_PIN_1);



UARTConfigSetExpClk(UART7_BASE, SysCtlClockGet(),9600,(UART_CONFIG_WLEN_8 | UART_CONFIG_STOP_ONE | UART_CONFIG_PAR_NONE));


UARTEnable(UART7_BASE);

val = UARTCharGet(UART7_BASE);

UARTCharPut(UART7_BASE, 'R');
UARTCharPut(UART7_BASE, 'A');

UARTCharPut(UART7_BASE, 'S');

UARTCharPut(UART7_BASE, 'H');

UARTCharPut(UART7_BASE, 'U');


UARTprintf("***Project Name : Data Logger***\n");



while(1);


}

please help me..