Other Parts Discussed in Thread: EK-TM4C1294XL
Tool/software: Code Composer Studio
Hi
I am new to TM4C1294. I am learing how to print output to a terminal such as extraputty using the UART0 on the microcontroller. When I use printf statement, it hangs and when I pause It halts at FaultISR routine.
static void
FaultISR(void)
{
//
// Enter an infinite loop.
//
while(1)
{
}
}
How can i use the printf statement to a terminal?. can we use printf this way?
I had copied the example from one of from Daniel Valvano.
UART is intialized and is able to communicate to the extraputty terminal.
Thanks for your help