I am following the sample as listed in the API guide at following link.
software-dl.ti.com/.../group__hibernate__api.html
There the example listed below is what I am following.
"The following example shows how to use the Hibernation module RTC for a TM4C123x device to generate an interrupt at a certain time"
I needed to run the interrupt continuously, and therefore added the the two lines to the interrupt handler.
HibernateRTCMatchSet(0, HibernateRTCGet() + 0);
If I just portion of the above as below, the it would generate an interrupt every send.
HibernateRTCMatchSet(0, HibernateRTCGet() + 1);