Rtc/Inc/Rtc.h

17 lines
328 B
C

//
// Created by cfif on 11.09.22.
//
#ifndef RTC_H
#define RTC_H
#include "RtcIO.h"
#include <time.h>
uint16_t RtcGet(tRtcIO *io, time_t *timestamp);
uint16_t RtcSet(tRtcIO *io, time_t *timestamp);
uint16_t RtcGetTM(tRtcIO *io, struct tm *timestampTM);
uint16_t RtcSetTM(tRtcIO *io, struct tm *timestampTM);
#endif //RTC_H