Lines Matching refs:interrupt
456 #define CY_PDM_PCM_IS_INTR_MASK_VALID(interrupt) (0UL == ((interrupt) & ((uint32_t) ~CY_PDM_PCM_IN… argument
484 __STATIC_INLINE void Cy_PDM_PCM_SetInterruptMask(PDM_Type * base, uint32_t interrupt);
488 __STATIC_INLINE void Cy_PDM_PCM_ClearInterrupt(PDM_Type * base, uint32_t interrupt);
489 __STATIC_INLINE void Cy_PDM_PCM_SetInterrupt(PDM_Type * base, uint32_t interrupt);
562 __STATIC_INLINE void Cy_PDM_PCM_SetInterruptMask(PDM_Type * base, uint32_t interrupt) in Cy_PDM_PCM_SetInterruptMask() argument
564 CY_ASSERT_L2(CY_PDM_PCM_IS_INTR_MASK_VALID(interrupt)); in Cy_PDM_PCM_SetInterruptMask()
565 PDM_PCM_INTR_MASK(base) = interrupt; in Cy_PDM_PCM_SetInterruptMask()
629 __STATIC_INLINE void Cy_PDM_PCM_ClearInterrupt(PDM_Type * base, uint32_t interrupt) in Cy_PDM_PCM_ClearInterrupt() argument
631 CY_ASSERT_L2(CY_PDM_PCM_IS_INTR_MASK_VALID(interrupt)); in Cy_PDM_PCM_ClearInterrupt()
632 PDM_PCM_INTR(base) = interrupt; in Cy_PDM_PCM_ClearInterrupt()
649 __STATIC_INLINE void Cy_PDM_PCM_SetInterrupt(PDM_Type * base, uint32_t interrupt) in Cy_PDM_PCM_SetInterrupt() argument
651 CY_ASSERT_L2(CY_PDM_PCM_IS_INTR_MASK_VALID(interrupt)); in Cy_PDM_PCM_SetInterrupt()
652 PDM_PCM_INTR_SET(base) = interrupt; in Cy_PDM_PCM_SetInterrupt()