void RTC_ITConfig(uint16_t RTC_IT, FunctionalState NewState )
RTC_IT_OW | オーバーフロー割込 |
RTC_IT_ALR | アラーム割込 |
RTC_IT_SEC | 秒割込 |
ENABLE | 有効にします。 |
DISABLE | 無効にします。 |
/* Enable the RTC Second */ RTC_ITConfig(RTC_IT_SEC, ENABLE); /* Wait until last write operation on RTC registers has finished */ RTC_WaitForLastTask();