Lines Matching refs:ITFlags

439 static void I2C_ITAddrCplt(I2C_HandleTypeDef *hi2c, uint32_t ITFlags);
442 static void I2C_ITMasterCplt(I2C_HandleTypeDef *hi2c, uint32_t ITFlags);
443 static void I2C_ITSlaveCplt(I2C_HandleTypeDef *hi2c, uint32_t ITFlags);
444 static void I2C_ITListenCplt(I2C_HandleTypeDef *hi2c, uint32_t ITFlags);
456 static HAL_StatusTypeDef I2C_Master_ISR_IT(struct __I2C_HandleTypeDef *hi2c, uint32_t ITFlags,
458 static HAL_StatusTypeDef I2C_Slave_ISR_IT(struct __I2C_HandleTypeDef *hi2c, uint32_t ITFlags,
460 static HAL_StatusTypeDef I2C_Master_ISR_DMA(struct __I2C_HandleTypeDef *hi2c, uint32_t ITFlags,
462 static HAL_StatusTypeDef I2C_Slave_ISR_DMA(struct __I2C_HandleTypeDef *hi2c, uint32_t ITFlags,
5048 static HAL_StatusTypeDef I2C_Master_ISR_IT(struct __I2C_HandleTypeDef *hi2c, uint32_t ITFlags, in I2C_Master_ISR_IT() argument
5052 uint32_t tmpITFlags = ITFlags; in I2C_Master_ISR_IT()
5194 static HAL_StatusTypeDef I2C_Slave_ISR_IT(struct __I2C_HandleTypeDef *hi2c, uint32_t ITFlags, in I2C_Slave_ISR_IT() argument
5198 uint32_t tmpITFlags = ITFlags; in I2C_Slave_ISR_IT()
5335 static HAL_StatusTypeDef I2C_Master_ISR_DMA(struct __I2C_HandleTypeDef *hi2c, uint32_t ITFlags, in I2C_Master_ISR_DMA() argument
5344 if ((I2C_CHECK_FLAG(ITFlags, I2C_FLAG_AF) != RESET) && \ in I2C_Master_ISR_DMA()
5361 else if ((I2C_CHECK_FLAG(ITFlags, I2C_FLAG_TCR) != RESET) && \ in I2C_Master_ISR_DMA()
5423 else if ((I2C_CHECK_FLAG(ITFlags, I2C_FLAG_TC) != RESET) && \ in I2C_Master_ISR_DMA()
5450 else if ((I2C_CHECK_FLAG(ITFlags, I2C_FLAG_STOPF) != RESET) && \ in I2C_Master_ISR_DMA()
5454 I2C_ITMasterCplt(hi2c, ITFlags); in I2C_Master_ISR_DMA()
5475 static HAL_StatusTypeDef I2C_Slave_ISR_DMA(struct __I2C_HandleTypeDef *hi2c, uint32_t ITFlags, in I2C_Slave_ISR_DMA() argument
5486 if ((I2C_CHECK_FLAG(ITFlags, I2C_FLAG_STOPF) != RESET) && \ in I2C_Slave_ISR_DMA()
5490 I2C_ITSlaveCplt(hi2c, ITFlags); in I2C_Slave_ISR_DMA()
5493 if ((I2C_CHECK_FLAG(ITFlags, I2C_FLAG_AF) != RESET) && \ in I2C_Slave_ISR_DMA()
5558 I2C_ITListenCplt(hi2c, ITFlags); in I2C_Slave_ISR_DMA()
5616 else if ((I2C_CHECK_FLAG(ITFlags, I2C_FLAG_ADDR) != RESET) && \ in I2C_Slave_ISR_DMA()
5619 I2C_ITAddrCplt(hi2c, ITFlags); in I2C_Slave_ISR_DMA()
5748 static void I2C_ITAddrCplt(I2C_HandleTypeDef *hi2c, uint32_t ITFlags) in I2C_ITAddrCplt() argument
5756 UNUSED(ITFlags); in I2C_ITAddrCplt()
5970 static void I2C_ITMasterCplt(I2C_HandleTypeDef *hi2c, uint32_t ITFlags) in I2C_ITMasterCplt() argument
5973 uint32_t tmpITFlags = ITFlags; in I2C_ITMasterCplt()
6113 static void I2C_ITSlaveCplt(I2C_HandleTypeDef *hi2c, uint32_t ITFlags) in I2C_ITSlaveCplt() argument
6116 uint32_t tmpITFlags = ITFlags; in I2C_ITSlaveCplt()
6284 static void I2C_ITListenCplt(I2C_HandleTypeDef *hi2c, uint32_t ITFlags) in I2C_ITListenCplt() argument
6294 if (I2C_CHECK_FLAG(ITFlags, I2C_FLAG_RXNE) != RESET) in I2C_ITListenCplt()