voilier-team-1/implementation/rtc.h

10 lines
207 B
C
Raw Normal View History

#ifndef GPIODRIVER_H
#define GPIODRIVER_H
#include "stm32f10x.h"
#include "MyI2C.h"
void MyRTC_Init();
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