2019-02-16 15:02:07 +01:00
|
|
|
#ifndef _CLOCKCONTROLLER_H
|
|
|
|
#define _CLOCKCONTROLLER_H
|
|
|
|
|
|
|
|
#include "globals.h"
|
|
|
|
|
|
|
|
#ifdef HAS_IF482
|
|
|
|
#include "if482.h"
|
|
|
|
#elif defined HAS_DCF77
|
|
|
|
#include "dcf77.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void clock_init(void);
|
|
|
|
void clock_loop(void *pvParameters);
|
2019-02-17 19:21:08 +01:00
|
|
|
time_t telegram_time(void);
|
2019-02-16 15:02:07 +01:00
|
|
|
|
|
|
|
#endif // _CLOCKCONTROLLER_H
|