Home
last modified time | relevance | path

Searched refs:interruptMask (Results 1 – 4 of 4) sorted by relevance

/hal_ti-3.4.0/simplelink/source/ti/drivers/capture/
DCaptureCC32XX.c136 uint32_t interruptMask; in CaptureCC32XX_hwiIntFunction() local
163 interruptMask = object->timer & (TIMER_CAPB_EVENT | TIMER_CAPA_EVENT); in CaptureCC32XX_hwiIntFunction()
164 TimerIntClear(baseAddress, interruptMask); in CaptureCC32XX_hwiIntFunction()
290 uint32_t interruptMask; in CaptureCC32XX_start() local
293 interruptMask = object->timer & (TIMER_CAPB_EVENT | TIMER_CAPA_EVENT); in CaptureCC32XX_start()
309 TimerIntClear(baseAddress, interruptMask); in CaptureCC32XX_start()
310 TimerIntEnable(baseAddress, interruptMask); in CaptureCC32XX_start()
327 uint32_t interruptMask; in CaptureCC32XX_stop() local
330 interruptMask = object->timer & (TIMER_CAPB_EVENT | TIMER_CAPA_EVENT); in CaptureCC32XX_stop()
339 TimerIntDisable(baseAddress, interruptMask); in CaptureCC32XX_stop()
/hal_ti-3.4.0/simplelink/source/ti/devices/msp432p4xx/driverlib/
Drtc_c.c204 void RTC_C_enableInterrupt(uint8_t interruptMask) in RTC_C_enableInterrupt() argument
206 if (interruptMask in RTC_C_enableInterrupt()
212 | (interruptMask in RTC_C_enableInterrupt()
218 if (interruptMask & RTC_C_PRESCALE_TIMER0_INTERRUPT) in RTC_C_enableInterrupt()
223 if (interruptMask & RTC_C_PRESCALE_TIMER1_INTERRUPT) in RTC_C_enableInterrupt()
229 void RTC_C_disableInterrupt(uint8_t interruptMask) in RTC_C_disableInterrupt() argument
234 if (interruptMask & allIntMask) in RTC_C_disableInterrupt()
237 & ~((interruptMask & allIntMask) | RTC_C_CTL0_KEY_MASK)) in RTC_C_disableInterrupt()
243 if (interruptMask & RTC_C_PRESCALE_TIMER0_INTERRUPT) in RTC_C_disableInterrupt()
248 if (interruptMask & RTC_C_PRESCALE_TIMER1_INTERRUPT) in RTC_C_disableInterrupt()
Drtc_c.h476 extern void RTC_C_enableInterrupt(uint8_t interruptMask);
505 extern void RTC_C_disableInterrupt(uint8_t interruptMask);
/hal_ti-3.4.0/simplelink/source/ti/drivers/timer/
DTimerCC32XX.c374 uint32_t interruptMask; in TimerCC32XX_hwiIntFunction() local
377 interruptMask = object->timer & (TIMER_TIMA_TIMEOUT | TIMER_TIMB_TIMEOUT); in TimerCC32XX_hwiIntFunction()
378 TimerIntClear(hwAttrs->baseAddress, interruptMask); in TimerCC32XX_hwiIntFunction()
588 uint32_t interruptMask; in TimerCC32XX_start() local
591 interruptMask = object->timer & (TIMER_TIMB_TIMEOUT | TIMER_TIMA_TIMEOUT); in TimerCC32XX_start()
606 TimerIntEnable(hwAttrs->baseAddress, interruptMask); in TimerCC32XX_start()
639 uint32_t interruptMask; in TimerCC32XX_stop() local
643 interruptMask = object->timer & (TIMER_TIMB_TIMEOUT | TIMER_TIMA_TIMEOUT); in TimerCC32XX_stop()
657 TimerIntDisable(hwAttrs->baseAddress, interruptMask); in TimerCC32XX_stop()