timekeeper.cpp: fix dcf77 #ifdef

This commit is contained in:
cyberman54 2022-03-02 10:52:13 +01:00
parent 7d70b0d024
commit a08a2a92a4

View File

@ -259,6 +259,10 @@ void clock_loop(void *taskparameter) { // ClockTask
#ifdef HAS_TWO_LED
static bool led1_state = false;
#endif
#ifdef HAS_DCF77
uint64_t ClockPulse = 0;
int8_t ClockMinute = -1;
#endif
// output the next second's pulse/telegram after pps arrived
for (;;) {
@ -293,9 +297,6 @@ void clock_loop(void *taskparameter) { // ClockTask
#elif defined HAS_DCF77
uint64_t ClockPulse = 0;
int8_t ClockMinute = -1;
// load new frame if second 59 is reached
if (t.tm_sec == 0) {
ClockMinute = t.tm_min;