MCPcopy Create free account
hub / github.com/RT-Thread/rt-thread / LETIMER_IntEnable

Function LETIMER_IntEnable

bsp/efm32/Libraries/emlib/inc/em_letimer.h:208–211  ·  view source on GitHub ↗

/ * @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

Source from the content-addressed store, hash-verified

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/***************************************************************************//**

Callers 1

SysTick_ConfigurationFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected