Nut/OS  5.0.5
API Reference
RTC_clock_source
Collaboration diagram for RTC_clock_source:

Defines

#define RCC_RTCCLKSource_LSE   ((uint32_t)0x00000100)
#define RCC_RTCCLKSource_LSI   ((uint32_t)0x00000200)
#define RCC_RTCCLKSource_HSE_Div128   ((uint32_t)0x00000300)
#define IS_RCC_RTCCLK_SOURCE(SOURCE)

Define Documentation

#define RCC_RTCCLKSource_LSE   ((uint32_t)0x00000100)
#define RCC_RTCCLKSource_LSI   ((uint32_t)0x00000200)
#define RCC_RTCCLKSource_HSE_Div128   ((uint32_t)0x00000300)

Referenced by Stm32RtcInit().

#define IS_RCC_RTCCLK_SOURCE (   SOURCE)
Value:
(((SOURCE) == RCC_RTCCLKSource_LSE) || \
                                      ((SOURCE) == RCC_RTCCLKSource_LSI) || \
                                      ((SOURCE) == RCC_RTCCLKSource_HSE_Div128))

Referenced by RCC_RTCCLKConfig().