/ * @brief * Clear one or more pending RTC interrupts. * * @param[in] flags * RTC interrupt sources to clear. Use a set of interrupt flags OR-ed * together to clear multiple interrupt sources for the RTC module * (RTC_IFS_nnn). ******************************************************************************/
| 104 | * (RTC_IFS_nnn). |
| 105 | ******************************************************************************/ |
| 106 | __STATIC_INLINE void RTC_IntClear(uint32_t flags) |
| 107 | { |
| 108 | RTC->IFC = flags; |
| 109 | } |
| 110 | |
| 111 | |
| 112 | /***************************************************************************//** |