/ * @brief * Clear one or more pending ACMP interrupts. * * @param[in] acmp * Pointer to ACMP peripheral register block. * * @param[in] flags * Pending ACMP interrupt source to clear. Use a bitwise logic OR combination * of valid interrupt flags for the ACMP module (ACMP_IF_nnn). ******************************************************************************/
| 278 | * of valid interrupt flags for the ACMP module (ACMP_IF_nnn). |
| 279 | ******************************************************************************/ |
| 280 | __STATIC_INLINE void ACMP_IntClear(ACMP_TypeDef *acmp, uint32_t flags) |
| 281 | { |
| 282 | acmp->IFC = flags; |
| 283 | } |
| 284 | |
| 285 | |
| 286 | /***************************************************************************//** |