2019-02-04 20:02:30 +01:00
|
|
|
/*
|
|
|
|
// Emulate a DCF77 radio receiver
|
2019-02-03 21:19:08 +01:00
|
|
|
//
|
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/
|
|
|
|
//
|
2019-02-03 21:19:08 +01:00
|
|
|
*/
|
|
|
|
|
2019-02-08 21:48:56 +01:00
|
|
|
#if defined HAS_DCF77
|
2019-02-03 21:19:08 +01:00
|
|
|
|
|
|
|
#include "dcf77.h"
|
|
|
|
|
|
|
|
// Local logging tag
|
|
|
|
static const char TAG[] = "main";
|
|
|
|
|
2019-02-07 07:32:55 +01:00
|
|
|
#define DCF77_FRAME_SIZE (60)
|
|
|
|
#define DCF77_PULSE_DURATION (100)
|
2019-02-03 21:19:08 +01:00
|
|
|
|
|
|
|
// array of dcf pulses for three minutes
|
|
|
|
uint8_t DCFtimeframe[DCF77_FRAME_SIZE];
|
|
|
|
|
|
|
|
// initialize and configure DCF77 output
|
|
|
|
int dcf77_init(void) {
|
|
|
|
|
2019-02-04 23:42:17 +01:00
|
|
|
BitsPending = false;
|
|
|
|
|
2019-02-03 21:19:08 +01:00
|
|
|
pinMode(HAS_DCF77, OUTPUT);
|
2019-02-05 23:50:05 +01:00
|
|
|
set_DCF77_pin(dcf_low);
|
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
|
|
|
|
|
2019-02-07 23:05:26 +01:00
|
|
|
assert(ClockTask); // has clock task started?
|
2019-02-07 20:39:32 +01:00
|
|
|
|
2019-02-08 21:48:56 +01:00
|
|
|
#if defined RTC_INT && (RTC_CLK == DCF77_PULSE_DURATION)
|
|
|
|
pps_init(); // use pps clock
|
|
|
|
#else
|
|
|
|
pps_init(DCF77_PULSE_DURATION); // use esp32 clock
|
|
|
|
#endif
|
|
|
|
|
2019-02-07 23:05:26 +01:00
|
|
|
DCF_Out(sync_clock(now())); // sync DCF time on next second
|
|
|
|
pps_start(); // start pulse
|
2019-02-03 21:19:08 +01:00
|
|
|
|
|
|
|
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-07 07:32:55 +01:00
|
|
|
void DCF_Out(uint8_t startOffset) {
|
2019-02-04 20:02:30 +01:00
|
|
|
|
2019-02-07 07:32:55 +01:00
|
|
|
static uint8_t bit = startOffset;
|
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-05 23:50:05 +01:00
|
|
|
// prepare frame to send for next minute
|
2019-02-07 20:39:32 +01:00
|
|
|
generateTimeframe(now() + DCF77_FRAME_SIZE + 1);
|
2019-02-04 23:42:17 +01:00
|
|
|
// start blinking symbol on display and kick off timer
|
2019-02-04 20:02:30 +01:00
|
|
|
BitsPending = true;
|
|
|
|
}
|
|
|
|
|
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-03 21:19:08 +01:00
|
|
|
|
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-03 21:19:08 +01:00
|
|
|
|
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-03 21:19:08 +01:00
|
|
|
|
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-03 21:19:08 +01:00
|
|
|
|
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(now()); // in second 58,90x -> waiting for second 59
|
|
|
|
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-03 21:19:08 +01:00
|
|
|
|
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-03 21:19:08 +01:00
|
|
|
|
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-08 21:48:56 +01:00
|
|
|
#if !defined RTC_CLK || (RTC_CLK == DCF77_PULSE_DURATION) // we don't need clock rescaling
|
2019-02-07 23:05:26 +01:00
|
|
|
DCF_Out(0);
|
2019-02-07 07:32:55 +01:00
|
|
|
#else // we need clock rescaling by software timer
|
2019-02-08 21:48:56 +01:00
|
|
|
for (uint8_t i = 1; i <= RTC_CLK / 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-07 07:32:55 +01:00
|
|
|
#endif
|
|
|
|
} // 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
|
|
|
|
|
2019-02-03 21:19:08 +01:00
|
|
|
#endif // HAS_DCF77
|