How do you go about setting up the BOR? I would like for it to cause an interrupt, which is supposedly the default, but which ISR vector do I need to configure? How do I configure the SysCtl registers to receive this interrupt? What I have done:
SysCtlResetBehaviorSet(SYSCTL_ONRST_BOR_SYS);
SysCtlVoltageEventConfig(SYSCTL_VEVENT_VDDCBO_INT | SYSCTL_VEVENT_VDDABO_INT | SYSCTL_VEVENT_VDDBO_INT);
But now what? What interrupt to I need to enable/configure? The data sheet says the reset handler, where is this? I don't see it listed in the SysCtlPeriperal list, which is how I am used to setting up interrupts.
Please help.
TM4C129 BTW