/ * @brief * Enable one or more LETIMER interrupts. * * @note * Depending on the use, a pending interrupt may already be set prior to * enabling the interrupt. Consider using LETIMER_IntClear() prior to enabling * if such a pending interrupt should be ignored. * * @param[in] letimer * Pointer to LETIMER peripheral register block. * * @param[in] flags * LETIMER interrupt sou
| 206 | * valid interrupt flags for the LETIMER module (LETIMER_IF_nnn). |
| 207 | ******************************************************************************/ |
| 208 | __STATIC_INLINE void LETIMER_IntEnable(LETIMER_TypeDef *letimer, uint32_t flags) |
| 209 | { |
| 210 | letimer->IEN |= flags; |
| 211 | } |
| 212 | |
| 213 | |
| 214 | /***************************************************************************//** |
no outgoing calls
no test coverage detected