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

Function RTC_IntEnable

bsp/efm32/Libraries/emlib/inc/em_rtc.h:141–144  ·  view source on GitHub ↗

/ * @brief * Enable one or more RTC interrupts. * * @note * Depending on the use, a pending interrupt may already be set prior to * enabling the interrupt. Consider using RTC_IntClear() prior to enabling * if such a pending interrupt should be ignored. * * @param[in] flags * RTC interrupt sources to enable. Use a set of interrupt flags OR-ed * together to set multiple interru

Source from the content-addressed store, hash-verified

139 * (RTC_IFS_nnn).
140 ******************************************************************************/
141__STATIC_INLINE void RTC_IntEnable(uint32_t flags)
142{
143 RTC->IEN |= flags;
144}
145
146
147/***************************************************************************//**

Callers 1

rt_hw_rtc_initFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected