Hi,
I have 2 different boards with the same microprocessor (TM4C1290NCDPT) . An older version of the code runs file on the new board but with the most recent version, the code gets stuck in the following procedure. (turn the clock enable bit). Keep in mind that the portions of the code that are at play here between the old version and the new version are the same. Not much difference.
void
HibernateEnableExpClk(uint32_t ui32HibClk)
{
//
// Turn on the clock enable bit.
//
HWREG(HIB_CTL) |= HIB_CTL_CLK32EN;
//
// Wait for write complete following register load (above).
//
_HibernateWriteComplete();
}