Hi, I tried to setup watchdog timer ISR for my app which is running under SYS/BIOS on F28377x board. It works fine before BIOS_start(), if I added code to wait in a while loop after WDT is enabled and linked to an ISR. But if I simply enable WDT and call BIOS_start(), nothing will happens even I don't service the dog. I suspect that SYS/BIOS disables the watchdog (although the manua says that watchdoog is enabled by default). I checked app.cfg but not sure where to set up watchdog in UI. There is a setting in Boot->xdc.runtime called "disableWatchdog" which is set to false (as default). Do I have to use Hwi and Swi to setup watchdog instead of simply linking it to an ISR (interrupt function)? Is there any example code or app note to use watchdog with SYS/BIOS? Thanks in advance!