I had code running just fine on the TM4C1294 Launchpad (using the TM4C1294NCPDT processor). Once I switched over to a custom board using the TM4C129ENCPDT processor, I loose certain functionality. It looks to me like some of the interrupts are not working anymore. In particular, the USB0 and UART4 interrupts are not occurring at all. I have breakpoints set in the ISRs and it never gets there.
Assuming my interrupt table is wrong in the startup file, I would most likely end up in the default ISR. I set a breakpoint there as well and it never gets there either.
Any ideas what could cause these issues when switching from the TM4C1294NCPDT to the TM4C129ENCPDT??? From what I understand the differences between those two parts is only additional security features. Is there anything else I need to do to enable interrupts? I'm using either ROM or TivaWare library functions.
Any feedback would be appreciated. I'm getting to the point where I don't know what else to try...
By the way: I am running freeRTOS and use the sysTick interrupt to blink an LED every second. This is working and the program is running, just not getting any other ISRs.