/ * @brief * Enable one or more TIMER interrupts. * * @note * Depending on the use, a pending interrupt may already be set prior to * enabling the interrupt. Consider using TIMER_IntClear() prior to enabling * if such a pending interrupt should be ignored. * * @param[in] timer * Pointer to TIMER peripheral register block. * * @param[in] flags * TIMER interrupt source(s) to
| 501 | * interrupt flags for the TIMER module (TIMER_IF_nnn) OR'ed together. |
| 502 | ******************************************************************************/ |
| 503 | __STATIC_INLINE void TIMER_IntEnable(TIMER_TypeDef *timer, uint32_t flags) |
| 504 | { |
| 505 | timer->IEN |= flags; |
| 506 | } |
| 507 | |
| 508 | |
| 509 | /***************************************************************************//** |
no outgoing calls
no test coverage detected