Hello.
I tried to compile the ROM_SysCtlClockFreqSet(..) command using the TIVAWARE 2.1.2.156 rom.h from the driverlib/ area but compiler issued an error to this definition.
I checked into the file rom.h and as you can verify the needed #define ROM_SysCtlClockFreqSet((uint32_t (*)(uint32_t ui32Config, uint32_t ui32SysClock))ROM_SYSCTLTABLE[48]) does not exist.
Is it O.K. if I just add in this file a definition like
#if defined(TARGET_IS_TM4C129_RA0) || defined(TARGET_IS_TM4C129_RA1) || defined(TARGET_IS_TM4C129_RA2)
#define ROM_SysCtlClockFreqSet((uint32_t (*)(uint32_t ui32Config, uint32_t ui32SysClock))ROM_SYSCTLTABLE[48])
#endif
Thank you,
John