I2S Interrupt
- group x3e_I2S_Interrupt
Defines
-
I2S_MCU_INT_TX_IDLE BIT22
I2S interrupt for TX is working, but FIFO_0 is empty.
-
I2S_MCU_INT_RX_EMPTY BIT21
I2S interrupt for RX FIFO_0 is empty (MIC path).
-
I2S_MCU_INT_TX_EMPTY BIT20
I2S interrupt for TX FIFO_0 is empty (SPK path).
-
I2S_MCU_INT_RX_FULL BIT19
I2S interrupt for RX FIFO_0 is full (MIC path).
-
I2S_MCU_INT_TX_FULL BIT18
I2S interrupt for TX FIFO_0 is full (SPK path).
-
I2S_MCU_INT_RX_READY BIT17
I2S interrupt for ready to receive data (MIC path).
-
I2S_MCU_INT_TX_READY BIT16
I2S interrupt for ready to send data out (SPK path).
-
IS_I2S_MCU_INT_CONFIG(INT) (((INT) == I2S_MCU_INT_TX_IDLE
) || \
((INT) ==
I2S_MCU_INT_RX_EMPTY) || \
((INT) ==
I2S_MCU_INT_TX_EMPTY) || \
((INT) ==
I2S_MCU_INT_RX_FULL) || \
((INT) ==
I2S_MCU_INT_TX_FULL) || \
((INT) ==
I2S_MCU_INT_RX_READY) || \
((INT) ==
I2S_MCU_INT_TX_READY)) Check whether is the I2S interrupt.
-
I2S_MCU_INT_TX_IDLE BIT22