ESP32-PaxCounter/include/timekeeper.h

36 lines
823 B
C
Raw Normal View History

2019-02-24 01:44:55 +01:00
#ifndef _timekeeper_H
#define _timekeeper_H
2019-02-21 23:17:01 +01:00
#include "globals.h"
#include "rtctime.h"
2019-03-02 13:32:02 +01:00
#include "TimeLib.h"
#include "irqhandler.h"
2019-02-21 23:17:01 +01:00
#if (HAS_GPS)
2019-02-21 23:17:01 +01:00
#include "gpsread.h"
#endif
2019-02-21 23:17:01 +01:00
#ifdef HAS_IF482
#include "if482.h"
#elif defined HAS_DCF77
#include "dcf77.h"
#endif
2019-02-24 15:08:41 +01:00
extern const char timeSetSymbols[];
extern Ticker timesyncer;
2019-02-23 21:51:24 +01:00
2019-02-24 01:44:55 +01:00
void IRAM_ATTR CLOCKIRQ(void);
2019-02-21 23:17:01 +01:00
void clock_init(void);
void clock_loop(void *pvParameters);
void timepulse_start(void);
void timeSync(void);
2019-02-24 01:44:55 +01:00
uint8_t timepulse_init(void);
2019-03-02 13:32:02 +01:00
time_t timeIsValid(time_t const t);
time_t timeProvider(void);
2019-02-22 22:28:35 +01:00
time_t compiledUTC(void);
TickType_t tx_Ticks(uint32_t framesize, unsigned long baud, uint32_t config,
int8_t rxPin, int8_t txPins);
2019-03-06 23:21:46 +01:00
time_t TimeSyncAns(uint8_t seqNo, uint64_t unixTime);
void TimeSyncReq(uint8_t seqNo);
2019-02-21 23:17:01 +01:00
2019-02-24 01:44:55 +01:00
#endif // _timekeeper_H