7 #ifndef __MSP430WARE_SFR_H__ 8 #define __MSP430WARE_SFR_H__ 10 #include "inc/hw_memmap.h" 12 #ifdef __MSP430_HAS_SFR__ 34 #define SFR_NMI_PIN_INTERRUPT NMIIE 35 #define SFR_OSCILLATOR_FAULT_INTERRUPT OFIE 36 #define SFR_WATCHDOG_INTERRUPT WDTIE 37 #define SFR_FLASH_ACCESS_VIOLATION_INTERRUPT ACCVIE 38 #define SFR_EXTERNAL_RESET_INTERRUPT RSTIFG 39 #define SFR_BROWN_OUT_RESET_INTERRUPT BORIFG 151 #endif // __MSP430WARE_SFR_H__ void SFR_disableInterrupt(uint8_t interruptMask)
Disables selected SFR interrupt sources.
Definition: sfr.c:26
uint8_t SFR_getInterruptStatus(uint8_t interruptFlagMask)
Returns the status of the selected SFR interrupt flags.
Definition: sfr.c:31
void SFR_enableInterrupt(uint8_t interruptMask)
Enables selected SFR interrupt sources.
Definition: sfr.c:21
void SFR_clearInterrupt(uint8_t interruptFlagMask)
Clears the selected SFR interrupt flags.
Definition: sfr.c:36