/ * @brief * Clear one or more pending TIMER interrupts. * * @param[in] timer * Pointer to TIMER peripheral register block. * * @param[in] flags * Pending TIMER interrupt source(s) to clear. Use one or more valid * interrupt flags for the TIMER module (TIMER_IF_nnn) OR'ed together. ******************************************************************************/
| 462 | * interrupt flags for the TIMER module (TIMER_IF_nnn) OR'ed together. |
| 463 | ******************************************************************************/ |
| 464 | __STATIC_INLINE void TIMER_IntClear(TIMER_TypeDef *timer, uint32_t flags) |
| 465 | { |
| 466 | timer->IFC = flags; |
| 467 | } |
| 468 | |
| 469 | |
| 470 | /***************************************************************************//** |
no outgoing calls
no test coverage detected