1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
30
31
32
35
36
37
38
39
40
41
42
43
/* ... */
#ifndef __RTC_H
#define __RTC_H
#ifdef __cplusplus
extern "C" {
#endif
#include "main.h"
#include "DIALOG.h"
Includes
extern RTC_HandleTypeDef RtcHandle;Exported macros
void RTC_Init(void);
void BACKUP_SaveParameter(uint32_t address, uint32_t data);
uint32_t BACKUP_RestoreParameter(uint32_t address);
#ifdef __cplusplus
}extern "C" { ... }
#endif
/* ... */
#endif