Lines Matching refs:ChannelIndex

87 void IPCC_MaskInterrupt(uint32_t ChannelIndex, IPCC_CHANNELDirTypeDef ChannelDir);
88 void IPCC_UnmaskInterrupt(uint32_t ChannelIndex, IPCC_CHANNELDirTypeDef ChannelDir);
312 HAL_StatusTypeDef HAL_IPCC_ActivateNotification(IPCC_HandleTypeDef *hipcc, uint32_t ChannelIndex, I… in HAL_IPCC_ActivateNotification() argument
328 hipcc->ChannelCallbackTx[ChannelIndex] = cb; in HAL_IPCC_ActivateNotification()
329 hipcc->callbackRequest |= (IPCC_MR_CH1FM_Msk << (ChannelIndex & CHANNEL_INDEX_Msk)); in HAL_IPCC_ActivateNotification()
333 hipcc->ChannelCallbackRx[ChannelIndex] = cb; in HAL_IPCC_ActivateNotification()
334 hipcc->callbackRequest |= (IPCC_MR_CH1OM_Msk << (ChannelIndex & CHANNEL_INDEX_Msk)); in HAL_IPCC_ActivateNotification()
340 IPCC_UnmaskInterrupt(ChannelIndex, ChannelDir); in HAL_IPCC_ActivateNotification()
369 HAL_StatusTypeDef HAL_IPCC_DeActivateNotification(IPCC_HandleTypeDef *hipcc, uint32_t ChannelIndex,… in HAL_IPCC_DeActivateNotification() argument
385 hipcc->ChannelCallbackTx[ChannelIndex] = HAL_IPCC_TxCallback; in HAL_IPCC_DeActivateNotification()
386 hipcc->callbackRequest &= ~(IPCC_MR_CH1FM_Msk << (ChannelIndex & CHANNEL_INDEX_Msk)); in HAL_IPCC_DeActivateNotification()
390 hipcc->ChannelCallbackRx[ChannelIndex] = HAL_IPCC_RxCallback; in HAL_IPCC_DeActivateNotification()
391 hipcc->callbackRequest &= ~(IPCC_MR_CH1OM_Msk << (ChannelIndex & CHANNEL_INDEX_Msk)); in HAL_IPCC_DeActivateNotification()
395 IPCC_MaskInterrupt(ChannelIndex, ChannelDir); in HAL_IPCC_DeActivateNotification()
423 …IPCC_GetChannelStatus(IPCC_HandleTypeDef const *const hipcc, uint32_t ChannelIndex, IPCC_CHANNELDi… in HAL_IPCC_GetChannelStatus() argument
440 … channel_state = (currentInstance->SR) & (IPCC_SR_CH1F_Msk << (ChannelIndex & CHANNEL_INDEX_Msk)); in HAL_IPCC_GetChannelStatus()
444 channel_state = (otherInstance->SR) & (IPCC_SR_CH1F_Msk << (ChannelIndex & CHANNEL_INDEX_Msk)); in HAL_IPCC_GetChannelStatus()
464 HAL_StatusTypeDef HAL_IPCC_NotifyCPU(IPCC_HandleTypeDef const *const hipcc, uint32_t ChannelIndex, … in HAL_IPCC_NotifyCPU() argument
481 …annelDir == IPCC_CHANNEL_DIR_TX) ? IPCC_SCR_CH1S : IPCC_SCR_CH1C) << (ChannelIndex & CHANNEL_INDEX… in HAL_IPCC_NotifyCPU()
484 … == IPCC_CHANNEL_DIR_TX) ? IPCC_MR_CH1FM_Msk : IPCC_MR_CH1OM_Msk) << (ChannelIndex & CHANNEL_INDEX… in HAL_IPCC_NotifyCPU()
487 IPCC_UnmaskInterrupt(ChannelIndex, ChannelDir); in HAL_IPCC_NotifyCPU()
597 __weak void HAL_IPCC_RxCallback(IPCC_HandleTypeDef *hipcc, uint32_t ChannelIndex, IPCC_CHANNELDirTy… in HAL_IPCC_RxCallback() argument
601 UNUSED(ChannelIndex); in HAL_IPCC_RxCallback()
622 __weak void HAL_IPCC_TxCallback(IPCC_HandleTypeDef *hipcc, uint32_t ChannelIndex, IPCC_CHANNELDirTy… in HAL_IPCC_TxCallback() argument
626 UNUSED(ChannelIndex); in HAL_IPCC_TxCallback()
687 void IPCC_MaskInterrupt(uint32_t ChannelIndex, IPCC_CHANNELDirTypeDef ChannelDir) in IPCC_MaskInterrupt() argument
697 currentInstance->MR |= (IPCC_MR_CH1FM_Msk << (ChannelIndex & CHANNEL_INDEX_Msk)); in IPCC_MaskInterrupt()
702 currentInstance->MR |= (IPCC_MR_CH1OM_Msk << (ChannelIndex & CHANNEL_INDEX_Msk)); in IPCC_MaskInterrupt()
717 void IPCC_UnmaskInterrupt(uint32_t ChannelIndex, IPCC_CHANNELDirTypeDef ChannelDir) in IPCC_UnmaskInterrupt() argument
727 currentInstance->MR &= ~(IPCC_MR_CH1FM_Msk << (ChannelIndex & CHANNEL_INDEX_Msk)); in IPCC_UnmaskInterrupt()
732 currentInstance->MR &= ~(IPCC_MR_CH1OM_Msk << (ChannelIndex & CHANNEL_INDEX_Msk)); in IPCC_UnmaskInterrupt()