I was calling the following in TivaWare 1.0, set for debugging so that uses the driverlib library compiled with assert checks enabled:
Which caused the following ASSERT to fail:MAP_HibernateClockConfig (HIBERNATE_OSC_HIGHDRIVE);
The ASSERT looks wrong since it will fail when passed valid arguments (as in this case).void
HibernateClockConfig(uint32_t ui32Config)
{
uint32_t ui32HIBCtl;
ASSERT((ui32Config & (HIBERNATE_OSC_HIGHDRIVE | HIBERNATE_OSC_LOWDRIVE |
HIBERNATE_OSC_DISABLE)) == 0);