Lines Matching refs:InterruptRequest
221 static void SMBUS_Enable_IRQ(SMBUS_HandleTypeDef *hsmbus, uint32_t InterruptRequest);
222 static void SMBUS_Disable_IRQ(SMBUS_HandleTypeDef *hsmbus, uint32_t InterruptRequest);
2411 static void SMBUS_Enable_IRQ(SMBUS_HandleTypeDef *hsmbus, uint32_t InterruptRequest) in SMBUS_Enable_IRQ() argument
2415 if ((InterruptRequest & SMBUS_IT_ALERT) == SMBUS_IT_ALERT) in SMBUS_Enable_IRQ()
2421 if ((InterruptRequest & SMBUS_IT_ADDR) == SMBUS_IT_ADDR) in SMBUS_Enable_IRQ()
2427 if ((InterruptRequest & SMBUS_IT_TX) == SMBUS_IT_TX) in SMBUS_Enable_IRQ()
2433 if ((InterruptRequest & SMBUS_IT_RX) == SMBUS_IT_RX) in SMBUS_Enable_IRQ()
2451 static void SMBUS_Disable_IRQ(SMBUS_HandleTypeDef *hsmbus, uint32_t InterruptRequest) in SMBUS_Disable_IRQ() argument
2456 …if ((tmpstate == HAL_SMBUS_STATE_READY) && ((InterruptRequest & SMBUS_IT_ALERT) == SMBUS_IT_ALERT)) in SMBUS_Disable_IRQ()
2462 if ((InterruptRequest & SMBUS_IT_TX) == SMBUS_IT_TX) in SMBUS_Disable_IRQ()
2481 if ((InterruptRequest & SMBUS_IT_RX) == SMBUS_IT_RX) in SMBUS_Disable_IRQ()
2500 if ((InterruptRequest & SMBUS_IT_ADDR) == SMBUS_IT_ADDR) in SMBUS_Disable_IRQ()