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