Hi all.
Probably this is a question for TI stuff, but I think probably the asnwer will be interesting ofr many people.
I am starting to work with the new EK-TM4C1294XL launchpad, trying to port some code from a Tiva TM4C123GXL and I have found some issues with the new libraries (Tivaware 2.1) and silicon (which is a XM4C).
The one about the library, is that the function ROM_SysCtlClockGet() does not exist anymore for this silicon. However the function SysCtlClockGet() is callable. Why?
On the other hand, I have also found that if I call ROM_UARTConfigSetExpClk for setting up the Uart ports, when I try to write on that port, the program get stuck in the line:
// // Wait until space is available. // while(HWREG(ui32Base + UART_O_FR) & UART_FR_TXFF) { }
of the function UARTCharPut.
Instead of that, if the uart com port is set with SysCtlClockGet(), everything works fine.
Has this been noticed before?
Thank you