Lines Matching refs:ChannelIndex

87 void IPCC_MaskInterrupt(uint32_t ChannelIndex, IPCC_CHANNELDirTypeDef ChannelDir);
88 void IPCC_UnmaskInterrupt(uint32_t ChannelIndex, IPCC_CHANNELDirTypeDef ChannelDir);
305 … uint32_t ChannelIndex, IPCC_CHANNELDirTypeDef ChannelDir, in HAL_IPCC_ActivateNotification() argument
322 hipcc->ChannelCallbackTx[ChannelIndex] = cb; in HAL_IPCC_ActivateNotification()
323 hipcc->callbackRequest |= (IPCC_MR_CH1FM_Msk << (ChannelIndex & CHANNEL_INDEX_MASK)); in HAL_IPCC_ActivateNotification()
327 hipcc->ChannelCallbackRx[ChannelIndex] = cb; in HAL_IPCC_ActivateNotification()
328 hipcc->callbackRequest |= (IPCC_MR_CH1OM_Msk << (ChannelIndex & CHANNEL_INDEX_MASK)); in HAL_IPCC_ActivateNotification()
334 IPCC_UnmaskInterrupt(ChannelIndex, ChannelDir); in HAL_IPCC_ActivateNotification()
364 … uint32_t ChannelIndex, IPCC_CHANNELDirTypeDef ChannelDir) in HAL_IPCC_DeActivateNotification() argument
380 hipcc->ChannelCallbackTx[ChannelIndex] = HAL_IPCC_TxCallback; in HAL_IPCC_DeActivateNotification()
381 hipcc->callbackRequest &= ~(IPCC_MR_CH1FM_Msk << (ChannelIndex & CHANNEL_INDEX_MASK)); in HAL_IPCC_DeActivateNotification()
385 hipcc->ChannelCallbackRx[ChannelIndex] = HAL_IPCC_RxCallback; in HAL_IPCC_DeActivateNotification()
386 hipcc->callbackRequest &= ~(IPCC_MR_CH1OM_Msk << (ChannelIndex & CHANNEL_INDEX_MASK)); in HAL_IPCC_DeActivateNotification()
390 IPCC_MaskInterrupt(ChannelIndex, ChannelDir); in HAL_IPCC_DeActivateNotification()
419 … uint32_t ChannelIndex, IPCC_CHANNELDirTypeDef ChannelDir) in HAL_IPCC_GetChannelStatus() argument
431 … channel_state = (currentInstance->SR) & (IPCC_SR_CH1F_Msk << (ChannelIndex & CHANNEL_INDEX_MASK)); in HAL_IPCC_GetChannelStatus()
435 channel_state = (otherInstance->SR) & (IPCC_SR_CH1F_Msk << (ChannelIndex & CHANNEL_INDEX_MASK)); in HAL_IPCC_GetChannelStatus()
456 uint32_t ChannelIndex, IPCC_CHANNELDirTypeDef ChannelDir) in HAL_IPCC_NotifyCPU() argument
471 << (ChannelIndex & CHANNEL_INDEX_MASK); in HAL_IPCC_NotifyCPU()
475 IPCC_MR_CH1OM_Msk) << (ChannelIndex & CHANNEL_INDEX_MASK); in HAL_IPCC_NotifyCPU()
478 IPCC_UnmaskInterrupt(ChannelIndex, ChannelDir); in HAL_IPCC_NotifyCPU()
579 __weak void HAL_IPCC_RxCallback(IPCC_HandleTypeDef *hipcc, uint32_t ChannelIndex, IPCC_CHANNELDirTy… in HAL_IPCC_RxCallback() argument
583 UNUSED(ChannelIndex); in HAL_IPCC_RxCallback()
604 __weak void HAL_IPCC_TxCallback(IPCC_HandleTypeDef *hipcc, uint32_t ChannelIndex, IPCC_CHANNELDirTy… in HAL_IPCC_TxCallback() argument
608 UNUSED(ChannelIndex); in HAL_IPCC_TxCallback()
669 void IPCC_MaskInterrupt(uint32_t ChannelIndex, IPCC_CHANNELDirTypeDef ChannelDir) in IPCC_MaskInterrupt() argument
675 currentInstance->MR |= (IPCC_MR_CH1FM_Msk << (ChannelIndex & CHANNEL_INDEX_MASK)); in IPCC_MaskInterrupt()
680 currentInstance->MR |= (IPCC_MR_CH1OM_Msk << (ChannelIndex & CHANNEL_INDEX_MASK)); in IPCC_MaskInterrupt()
695 void IPCC_UnmaskInterrupt(uint32_t ChannelIndex, IPCC_CHANNELDirTypeDef ChannelDir) in IPCC_UnmaskInterrupt() argument
701 currentInstance->MR &= ~(IPCC_MR_CH1FM_Msk << (ChannelIndex & CHANNEL_INDEX_MASK)); in IPCC_UnmaskInterrupt()
706 currentInstance->MR &= ~(IPCC_MR_CH1OM_Msk << (ChannelIndex & CHANNEL_INDEX_MASK)); in IPCC_UnmaskInterrupt()