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

Function TIMER_IntClear

bsp/efm32/Libraries/emlib/inc/em_timer.h:464–467  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

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

Callers 1

rt_hw_timer_unit_initFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected