15 lines
172 B
C
15 lines
172 B
C
|
|
|
|
#ifndef RTC_H__
|
|
#define RTC_H__
|
|
|
|
#include "stdint.h"
|
|
|
|
typedef struct {
|
|
void (*delay_ms)(uint32_t);
|
|
} RTC_InitStruct;
|
|
|
|
int RTC_InitNormal(RTC_InitStruct *init);
|
|
|
|
#endif
|