voilier-team-1/implementation/rtc.h

10 lines
201 B
C
Raw Normal View History

2023-04-07 13:53:08 +02:00
#ifndef MYRTC_H
#define MYRTC_H
#include "stm32f10x.h"
#include "MyI2C.h"
2023-04-07 13:53:08 +02:00
void MyRTC_Init(void);
2023-04-05 08:25:25 +02:00
void MyRTC_GetTime(int* sec, int* min, int* hour, int* day, int* date, int* month, int* year);
#endif