Lines Matching refs:ChannelIndex
85 void IPCC_MaskInterrupt(uint32_t ChannelIndex, IPCC_CHANNELDirTypeDef ChannelDir);
86 void IPCC_UnmaskInterrupt(uint32_t ChannelIndex, IPCC_CHANNELDirTypeDef ChannelDir);
310 HAL_StatusTypeDef HAL_IPCC_ActivateNotification(IPCC_HandleTypeDef *hipcc, uint32_t ChannelIndex, I… in HAL_IPCC_ActivateNotification() argument
326 hipcc->ChannelCallbackTx[ChannelIndex] = cb; in HAL_IPCC_ActivateNotification()
327 hipcc->callbackRequest |= (IPCC_MR_CH1FM_Msk << (ChannelIndex & CHANNEL_INDEX_Msk)); in HAL_IPCC_ActivateNotification()
331 hipcc->ChannelCallbackRx[ChannelIndex] = cb; in HAL_IPCC_ActivateNotification()
332 hipcc->callbackRequest |= (IPCC_MR_CH1OM_Msk << (ChannelIndex & CHANNEL_INDEX_Msk)); in HAL_IPCC_ActivateNotification()
338 IPCC_UnmaskInterrupt(ChannelIndex, ChannelDir); in HAL_IPCC_ActivateNotification()
367 HAL_StatusTypeDef HAL_IPCC_DeActivateNotification(IPCC_HandleTypeDef *hipcc, uint32_t ChannelIndex,… in HAL_IPCC_DeActivateNotification() argument
383 hipcc->ChannelCallbackTx[ChannelIndex] = HAL_IPCC_TxCallback; in HAL_IPCC_DeActivateNotification()
384 hipcc->callbackRequest &= ~(IPCC_MR_CH1FM_Msk << (ChannelIndex & CHANNEL_INDEX_Msk)); in HAL_IPCC_DeActivateNotification()
388 hipcc->ChannelCallbackRx[ChannelIndex] = HAL_IPCC_RxCallback; in HAL_IPCC_DeActivateNotification()
389 hipcc->callbackRequest &= ~(IPCC_MR_CH1OM_Msk << (ChannelIndex & CHANNEL_INDEX_Msk)); in HAL_IPCC_DeActivateNotification()
393 IPCC_MaskInterrupt(ChannelIndex, ChannelDir); in HAL_IPCC_DeActivateNotification()
421 …IPCC_GetChannelStatus(IPCC_HandleTypeDef const *const hipcc, uint32_t ChannelIndex, IPCC_CHANNELDi… in HAL_IPCC_GetChannelStatus() argument
438 … channel_state = (currentInstance->SR) & (IPCC_SR_CH1F_Msk << (ChannelIndex & CHANNEL_INDEX_Msk)); in HAL_IPCC_GetChannelStatus()
442 channel_state = (otherInstance->SR) & (IPCC_SR_CH1F_Msk << (ChannelIndex & CHANNEL_INDEX_Msk)); in HAL_IPCC_GetChannelStatus()
462 HAL_StatusTypeDef HAL_IPCC_NotifyCPU(IPCC_HandleTypeDef const *const hipcc, uint32_t ChannelIndex, … in HAL_IPCC_NotifyCPU() argument
479 …annelDir == IPCC_CHANNEL_DIR_TX) ? IPCC_SCR_CH1S : IPCC_SCR_CH1C) << (ChannelIndex & CHANNEL_INDEX… in HAL_IPCC_NotifyCPU()
482 … == IPCC_CHANNEL_DIR_TX) ? IPCC_MR_CH1FM_Msk : IPCC_MR_CH1OM_Msk) << (ChannelIndex & CHANNEL_INDEX… in HAL_IPCC_NotifyCPU()
485 IPCC_UnmaskInterrupt(ChannelIndex, ChannelDir); in HAL_IPCC_NotifyCPU()
595 __weak void HAL_IPCC_RxCallback(IPCC_HandleTypeDef *hipcc, uint32_t ChannelIndex, IPCC_CHANNELDirTy… in HAL_IPCC_RxCallback() argument
599 UNUSED(ChannelIndex); in HAL_IPCC_RxCallback()
620 __weak void HAL_IPCC_TxCallback(IPCC_HandleTypeDef *hipcc, uint32_t ChannelIndex, IPCC_CHANNELDirTy… in HAL_IPCC_TxCallback() argument
624 UNUSED(ChannelIndex); in HAL_IPCC_TxCallback()
685 void IPCC_MaskInterrupt(uint32_t ChannelIndex, IPCC_CHANNELDirTypeDef ChannelDir) in IPCC_MaskInterrupt() argument
695 currentInstance->MR |= (IPCC_MR_CH1FM_Msk << (ChannelIndex & CHANNEL_INDEX_Msk)); in IPCC_MaskInterrupt()
700 currentInstance->MR |= (IPCC_MR_CH1OM_Msk << (ChannelIndex & CHANNEL_INDEX_Msk)); in IPCC_MaskInterrupt()
715 void IPCC_UnmaskInterrupt(uint32_t ChannelIndex, IPCC_CHANNELDirTypeDef ChannelDir) in IPCC_UnmaskInterrupt() argument
725 currentInstance->MR &= ~(IPCC_MR_CH1FM_Msk << (ChannelIndex & CHANNEL_INDEX_Msk)); in IPCC_UnmaskInterrupt()
730 currentInstance->MR &= ~(IPCC_MR_CH1OM_Msk << (ChannelIndex & CHANNEL_INDEX_Msk)); in IPCC_UnmaskInterrupt()