Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
SystemPeripherals_RTC.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef SYSTEMPERIPHERALS_RTC_H
4#define SYSTEMPERIPHERALS_RTC_H
5
7
8#include "SystemMemoryMap.h"
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
23typedef struct {
24 uint32_t volatile CRH;
25 uint32_t volatile CRL;
26 uint32_t volatile PRLH;
27 uint32_t volatile PRLL;
28 uint32_t volatile DIVH;
29 uint32_t volatile DIVL;
30 uint32_t volatile CNTH;
31 uint32_t volatile CNTL;
32 uint32_t volatile ALRH;
33 uint32_t volatile ALRL;
35
36#define RTC ((RTC_ModuleRegisters*)RTC_BASE)
37
41typedef struct {
43 uint32_t volatile DR1;
44 uint32_t volatile DR2;
45 uint32_t volatile DR3;
46 uint32_t volatile DR4;
47 uint32_t volatile DR5;
48 uint32_t volatile DR6;
49 uint32_t volatile DR7;
50 uint32_t volatile DR8;
51 uint32_t volatile DR9;
52 uint32_t volatile DR10;
53 uint32_t volatile RTCCR;
54 uint32_t volatile CR;
55 uint32_t volatile CSR;
56 uint32_t RESERVED13[2];
57 uint32_t volatile DR11;
58 uint32_t volatile DR12;
59 uint32_t volatile DR13;
60 uint32_t volatile DR14;
61 uint32_t volatile DR15;
62 uint32_t volatile DR16;
63 uint32_t volatile DR17;
64 uint32_t volatile DR18;
65 uint32_t volatile DR19;
66 uint32_t volatile DR20;
67 uint32_t volatile DR21;
68 uint32_t volatile DR22;
69 uint32_t volatile DR23;
70 uint32_t volatile DR24;
71 uint32_t volatile DR25;
72 uint32_t volatile DR26;
73 uint32_t volatile DR27;
74 uint32_t volatile DR28;
75 uint32_t volatile DR29;
76 uint32_t volatile DR30;
77 uint32_t volatile DR31;
78 uint32_t volatile DR32;
79 uint32_t volatile DR33;
80 uint32_t volatile DR34;
81 uint32_t volatile DR35;
82 uint32_t volatile DR36;
83 uint32_t volatile DR37;
84 uint32_t volatile DR38;
85 uint32_t volatile DR39;
86 uint32_t volatile DR40;
87 uint32_t volatile DR41;
88 uint32_t volatile DR42;
90
91#define BKP ((BKP_ModuleRegisters*)BKP_BASE)
92
93// Bit definition for BKP_RTCCR register
94#define BKP_RTCCR_CCO ((uint32_t)0x00000080) // Calibration Clock Output
95#define BKP_RTCCR_ASOE ((uint32_t)0x00000100) // Alarm or Second Output Enable
96#define BKP_RTCCR_ASOS ((uint32_t)0x00000200) // Alarm or Second Output Selection
97
98#define RTC_AUTO_1_SECOND 0xFFFFFFFFU
99
103typedef struct {
104 uint8_t Hours; // Specifies the RTC Time Hour. This parameter must be a number between Min_Data = 0 and Max_Data = 23
105 uint8_t Minutes; // Specifies the RTC Time Minutes. This parameter must be a number between Min_Data = 0 and Max_Data = 59
106 uint8_t Seconds; // Specifies the RTC Time Seconds. This parameter must be a number between Min_Data = 0 and Max_Data = 59
107} RTC_Time;
108
112typedef enum {
113 RTC_STATE_RESET = 0x00U, // RTC not yet initialized or disabled
114 RTC_STATE_READY = 0x01U, // RTC initialized and ready for use
115 RTC_STATE_BUSY = 0x02U, // RTC process is ongoing
116 RTC_STATE_TIMEOUT = 0x03U, // RTC timeout state
117 RTC_STATE_ERROR = 0x04U // RTC error state
119
123typedef enum {
129
133typedef struct {
134 uint32_t AsynchPrediv; // Specifies the RTC Asynchronous Predivider value.
135 // This parameter must be a number between Min_Data = 0x00 and Max_Data = 0xFFFFF or RTC_AUTO_1_SECOND
136 // If RTC_AUTO_1_SECOND is selected, AsynchPrediv will be set automatically to get 1sec timebase
137 RTC_OutputSource OutPut; // Specifies which signal will be routed to the RTC Tamper pin.
138 // This parameter can be a value of @ref RTC_output_source_to_output_on_the_Tamper_pin
139} RTC_Config;
140
144typedef enum {
158
162typedef enum {
171
175typedef struct {
176 RTC_Weekday WeekDay; // Specifies the RTC Date WeekDay (not necessary for HAL_RTC_SetDate).
177 uint8_t Month; // Specifies the RTC Date Month (in BCD format).
178 uint8_t Day; // Specifies the RTC Date Day.
179 uint8_t Year; // Specifies the RTC Date Year.
180} RTC_Date;
181
185typedef enum {
187 RTC_LOCKED = 0x01U
189
193typedef struct {
194 RTC_ModuleRegisters* Instance; // Register base address
195 RTC_Config Init; // RTC required parameters
196 RTC_Date DateToUpdate; // Current date set by user and updated automatically
197 RTC_Lock Lock; // RTC locking object
198 RTC_RTCState volatile State; // Time communication state
199} RTC_Handle;
200
204typedef enum {
210
214typedef enum {
215 RTC_FORMAT_BIN = 0x000000000U,
216 RTC_FORMAT_BCD = 0x000000001U
218
225
232
241
250
259
268
274
280
281#ifdef __cplusplus
282}
283#endif
284
285#endif /* SYSTEMPERIPHERALS_RTC_H */
RTC_OutputSource
Enumeration of RTC output source structures definition.
@ RTC_OUTPUTSOURCE_SECOND
@ RTC_OUTPUTSOURCE_NONE
@ RTC_OUTPUTSOURCE_ALARM
@ RTC_OUTPUTSOURCE_CALIBCLOCK
RTC_Status RTC_DeInit(RTC_Handle *hrtc)
De-Initializes the RTC peripheral.
RTC_Month
Enumeration of RTC Month structures definition, coded in BCD format.
@ RTC_MONTH_AUGUST
@ RTC_MONTH_APRIL
@ RTC_MONTH_FEBRUARY
@ RTC_MONTH_SEPTEMBER
@ RTC_MONTH_MARCH
@ RTC_MONTH_DECEMBER
@ RTC_MONTH_NOVEMBER
@ RTC_MONTH_JANUARY
@ RTC_MONTH_OCTOBER
RTC_Status RTC_GetTime(RTC_Handle *hrtc, RTC_Time *sTime, RTC_Format Format)
Gets RTC current time.
void RTC_StoreDateIntoBkpReg(RTC_Date const *dateRtc)
Store date information into backup register.
RTC_Format
Enumeration of RTC format structures definition.
RTC_Status RTC_GetDate(RTC_Handle *hrtc, RTC_Date *sDate, RTC_Format Format)
Gets RTC current date.
RTC_RTCState
RTC State structures definition.
@ RTC_STATE_TIMEOUT
@ RTC_STATE_RESET
@ RTC_STATE_ERROR
@ RTC_STATE_READY
#define BKP_RTCCR_CCO
RTC_Status RTC_Init(RTC_Handle *hrtc)
Initializes the RTC peripheral.
RTC_Weekday
Enumeration of RTC Month structures definition.
@ RTC_WEEKDAY_SUNDAY
@ RTC_WEEKDAY_MONDAY
@ RTC_WEEKDAY_THURSDAY
@ RTC_WEEKDAY_SATURDAY
@ RTC_WEEKDAY_WEDNESDAY
@ RTC_WEEKDAY_FRIDAY
@ RTC_WEEKDAY_TUESDAY
void RTC_LoadDateFromBkpReg(RTC_Date *dateRtc)
Load date information from backup register.
#define BKP_RTCCR_ASOS
RTC_Lock
RTC Lock structures definition.
#define BKP_RTCCR_ASOE
RTC_Status RTC_SetDate(RTC_Handle *hrtc, RTC_Date *sDate, RTC_Format Format)
Sets RTC current date.
RTC_Status
Enumeration of RTC Status structures definition.
RTC_Status RTC_SetTime(RTC_Handle *hrtc, RTC_Time *sTime, RTC_Format Format)
Sets RTC current time.
unsigned __int32 uint32_t
Definition stdint.h:64
unsigned __int8 uint8_t
Definition stdint.h:62
RTC Configuration Structure definition.
RTC_OutputSource OutPut
RTC Date structure definition.
RTC_Weekday WeekDay
RTC Time Handle Structure definition.
RTC_RTCState volatile State
RTC_ModuleRegisters * Instance
Init and configure RTC.
RTC Time structure definition.