ESP32-PaxCounter/src/dcf77.cpp

222 lines
6.3 KiB
C++
Raw Normal View History

2019-02-04 20:02:30 +01:00
/*
// Emulate a DCF77 radio receiver
//
2019-02-05 23:50:05 +01:00
// a nice & free logic test program for DCF77 can be found here:
https://www-user.tu-chemnitz.de/~heha/viewzip.cgi/hs/Funkuhr.zip/
//
*/
#ifdef HAS_DCF77
#ifdef IF_482
2019-02-09 15:46:44 +01:00
#error You must define at most one of IF482 or DCF77!
#endif
#include "dcf77.h"
// Local logging tag
static const char TAG[] = "main";
bool volatile BitsPending = false;
2019-02-07 07:32:55 +01:00
#define DCF77_FRAME_SIZE (60)
#define DCF77_PULSE_DURATION (100)
2019-02-08 23:08:14 +01:00
// array of dcf pulses for three minutes
uint8_t DCFtimeframe[DCF77_FRAME_SIZE];
// initialize and configure DCF77 output
int dcf77_init(void) {
pinMode(HAS_DCF77, OUTPUT);
2019-02-05 23:50:05 +01:00
set_DCF77_pin(dcf_low);
2019-02-15 14:08:27 +01:00
timepulse_init(); // setup timepulse
2019-02-04 20:02:30 +01:00
xTaskCreatePinnedToCore(dcf77_loop, // task function
"dcf77loop", // name of task
2048, // stack size of task
(void *)1, // parameter of the task
3, // priority of the task
2019-02-07 23:05:26 +01:00
&ClockTask, // task handle
2019-02-04 20:02:30 +01:00
0); // CPU core
assert(ClockTask); // has clock task started?
2019-02-13 00:00:05 +01:00
DCF_Out(second(now())); // sync DCF time on next second
timepulse_start(); // start pulse
return 1; // success
} // ifdcf77_init
2019-02-04 23:42:17 +01:00
// called every 100msec by hardware timer to pulse out DCF signal
2019-02-13 00:00:05 +01:00
void DCF_Out(uint8_t startOffset_sec) {
2019-02-04 20:02:30 +01:00
2019-02-13 00:00:05 +01:00
static uint8_t bit = startOffset_sec;
2019-02-04 20:02:30 +01:00
static uint8_t pulse = 0;
2019-02-07 20:39:32 +01:00
#ifdef TIME_SYNC_INTERVAL_DCF
static uint32_t nextDCFsync = millis() + TIME_SYNC_INTERVAL_DCF * 60000;
#endif
2019-02-04 20:02:30 +01:00
if (!BitsPending) {
2019-02-08 23:08:14 +01:00
// do we have confident time/date?
if ((timeStatus() == timeSet) || (timeStatus() == timeNeedsSync)) {
// prepare frame to send for next minute
generateTimeframe(now() + DCF77_FRAME_SIZE + 1);
// kick off output of telegram
2019-02-08 23:08:14 +01:00
BitsPending = true;
} else
return;
2019-02-04 20:02:30 +01:00
}
2019-02-04 23:42:17 +01:00
// ticker out current DCF frame
if (BitsPending) {
2019-02-04 20:02:30 +01:00
switch (pulse++) {
2019-02-04 20:02:30 +01:00
case 0: // start of second -> start of timeframe for logic signal
if (DCFtimeframe[bit] != dcf_off)
2019-02-05 23:50:05 +01:00
set_DCF77_pin(dcf_low);
2019-02-04 23:42:17 +01:00
break;
2019-02-04 20:02:30 +01:00
case 1: // 100ms after start of second -> end of timeframe for logic 0
if (DCFtimeframe[bit] == dcf_zero)
2019-02-05 23:50:05 +01:00
set_DCF77_pin(dcf_high);
2019-02-04 23:42:17 +01:00
break;
2019-02-04 20:02:30 +01:00
case 2: // 200ms after start of second -> end of timeframe for logic 1
2019-02-05 23:50:05 +01:00
set_DCF77_pin(dcf_high);
2019-02-04 23:42:17 +01:00
break;
2019-02-07 07:32:55 +01:00
case 9: // 900ms after start -> last pulse before next second starts
2019-02-04 20:02:30 +01:00
pulse = 0;
2019-02-04 23:42:17 +01:00
if (bit++ == (DCF77_FRAME_SIZE - 1)) // end of DCF77 frame (59th second)
{
2019-02-04 20:02:30 +01:00
bit = 0;
BitsPending = false;
2019-02-07 20:39:32 +01:00
// recalibrate clock after a fixed timespan, do this in 59th second
#ifdef TIME_SYNC_INTERVAL_DCF
if ((millis() >= nextDCFsync)) {
sync_clock(); // waiting for second 59
2019-02-07 20:39:32 +01:00
nextDCFsync = millis() + TIME_SYNC_INTERVAL_DCF *
60000; // set up next time sync period
}
#endif
2019-02-04 20:02:30 +01:00
};
break;
2019-02-04 20:02:30 +01:00
}; // switch
2019-02-04 23:42:17 +01:00
}; // if
2019-02-04 20:02:30 +01:00
} // DCF_Out()
2019-02-04 20:02:30 +01:00
void dcf77_loop(void *pvParameters) {
configASSERT(((uint32_t)pvParameters) == 1); // FreeRTOS check
2019-02-07 07:32:55 +01:00
TickType_t wakeTime;
2019-02-04 20:02:30 +01:00
// task remains in blocked state until it is notified by isr
for (;;) {
xTaskNotifyWait(
2019-02-07 07:32:55 +01:00
0x00, // don't clear any bits on entry
ULONG_MAX, // clear all bits on exit
&wakeTime, // receives moment of call from isr
2019-02-04 20:02:30 +01:00
portMAX_DELAY); // wait forever (missing error handling here...)
2019-02-15 14:08:27 +01:00
// select clock scale
#if (PPS == DCF77_PULSE_DURATION) // we don't need clock rescaling
2019-02-07 23:05:26 +01:00
DCF_Out(0);
2019-02-08 23:08:14 +01:00
#elif (PPS > DCF77_PULSE_DURATION) // we need upclocking
for (uint8_t i = 1; i <= PPS / DCF77_PULSE_DURATION; i++) {
2019-02-07 07:32:55 +01:00
DCF_Out(0);
vTaskDelayUntil(&wakeTime, pdMS_TO_TICKS(DCF77_PULSE_DURATION));
2019-02-07 20:39:32 +01:00
}
2019-02-15 14:08:27 +01:00
#else // we need downclocking, not yet implemented
#error Timepulse too fast for DCF77 emulator
2019-02-07 07:32:55 +01:00
#endif
2019-02-15 14:08:27 +01:00
2019-02-07 07:32:55 +01:00
} // for
2019-02-04 20:02:30 +01:00
} // dcf77_loop()
2019-02-05 23:50:05 +01:00
// helper function to convert decimal to bcd digit
uint8_t dec2bcd(uint8_t dec, uint8_t startpos, uint8_t endpos,
uint8_t pArray[]) {
uint8_t data = (dec < 10) ? dec : ((dec / 10) << 4) + (dec % 10);
uint8_t parity = 0;
for (uint8_t n = startpos; n <= endpos; n++) {
pArray[n] = (data & 1) ? dcf_one : dcf_zero;
parity += (data & 1);
data >>= 1;
}
return parity;
}
2019-02-07 20:39:32 +01:00
void generateTimeframe(time_t tt) {
uint8_t ParityCount;
time_t t = myTZ.toLocal(tt); // convert to local time
// ENCODE HEAD
// bits 0..19 initialized with zeros
for (int n = 0; n <= 19; n++)
DCFtimeframe[n] = dcf_zero;
// bits 17..18: adjust for DayLightSaving
DCFtimeframe[18 - (myTZ.locIsDST(t) ? 1 : 0)] = dcf_one;
// bit 20: must be 1 to indicate time active
DCFtimeframe[20] = dcf_one;
// ENCODE MINUTE (bits 21..28)
ParityCount = dec2bcd(minute(t), 21, 27, DCFtimeframe);
DCFtimeframe[28] = (ParityCount & 1) ? dcf_one : dcf_zero;
// ENCODE HOUR (bits 29..35)
ParityCount = dec2bcd(hour(t), 29, 34, DCFtimeframe);
DCFtimeframe[35] = (ParityCount & 1) ? dcf_one : dcf_zero;
// ENCODE DATE (bits 36..58)
ParityCount = dec2bcd(day(t), 36, 41, DCFtimeframe);
ParityCount +=
dec2bcd((weekday(t) - 1) ? (weekday(t) - 1) : 7, 42, 44, DCFtimeframe);
ParityCount += dec2bcd(month(t), 45, 49, DCFtimeframe);
ParityCount +=
dec2bcd(year(t) - 2000, 50, 57,
DCFtimeframe); // yes, we have a millenium 3000 bug here ;-)
DCFtimeframe[58] = (ParityCount & 1) ? dcf_one : dcf_zero;
// ENCODE TAIL (bit 59)
DCFtimeframe[59] = dcf_off;
// !! missing code here for leap second !!
/*
// for debug: print the DCF77 frame buffer
char out[DCF77_FRAME_SIZE + 1];
uint8_t i;
for (i = 0; i < DCF77_FRAME_SIZE; i++) {
out[i] = DCFtimeframe[i] + '0'; // convert int digit to printable ascii
}
out[DCF77_FRAME_SIZE] = '\0'; // string termination char
ESP_LOGD(TAG, "DCF Timeframe = %s", out);
*/
}
2019-02-05 23:50:05 +01:00
// helper function to switch GPIO line with DCF77 signal
void set_DCF77_pin(dcf_pinstate state) {
switch (state) {
case dcf_low:
#ifdef DCF77_ACTIVE_LOW
digitalWrite(HAS_DCF77, HIGH);
#else
digitalWrite(HAS_DCF77, LOW);
#endif
break;
case dcf_high:
#ifdef DCF77_ACTIVE_LOW
digitalWrite(HAS_DCF77, LOW);
#else
digitalWrite(HAS_DCF77, HIGH);
#endif
break;
} // switch
} // DCF77_pulse
#endif // HAS_DCF77