/ * @brief * Clear one or more pending LETIMER interrupts. * * @param[in] letimer * Pointer to LETIMER peripheral register block. * * @param[in] flags * Pending LETIMER interrupt source to clear. Use a bitwise logic OR * combination of valid interrupt flags for the LETIMER module * (LETIMER_IF_nnn). *****************************************************************************
| 167 | * (LETIMER_IF_nnn). |
| 168 | ******************************************************************************/ |
| 169 | __STATIC_INLINE void LETIMER_IntClear(LETIMER_TypeDef *letimer, uint32_t flags) |
| 170 | { |
| 171 | letimer->IFC = flags; |
| 172 | } |
| 173 | |
| 174 | |
| 175 | /***************************************************************************//** |
no outgoing calls
no test coverage detected