ESP32-PaxCounter/src/dcf77.cpp

257 lines
7.2 KiB
C++
Raw Normal View History

2019-02-04 20:02:30 +01:00
/*
// Emulate a DCF77 radio receiver
//
2019-02-04 20:02:30 +01:00
// parts of this code werde adapted from source:
https://www.elektormagazine.com/labs/dcf77-emulator-with-esp8266-elektor-labs-version-150713
//
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/
//
*/
#if defined HAS_DCF77
#include "dcf77.h"
// Local logging tag
static const char TAG[] = "main";
TaskHandle_t DCF77Task;
hw_timer_t *dcfCycle = NULL;
2019-02-07 07:32:55 +01:00
#define DCF77_FRAME_SIZE (60)
#define DCF77_PULSE_DURATION (100)
// array of dcf pulses for three minutes
uint8_t DCFtimeframe[DCF77_FRAME_SIZE];
// initialize and configure DCF77 output
int dcf77_init(void) {
2019-02-05 23:50:05 +01:00
time_t t, tt;
2019-02-04 23:42:17 +01:00
BitsPending = false;
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
&DCF77Task, // task handle
0); // CPU core
assert(DCF77Task); // has dcf77 task started?
2019-02-07 07:32:55 +01:00
// if we have hardware pps signal we use it as precise time base
#ifdef RTC_INT
#ifndef RTC_CLK // assure we know external clock freq
#error "External clock cycle not defined in board hal file"
#endif
// setup external interupt for active low RTC INT pin
pinMode(RTC_INT, INPUT_PULLUP);
// setup external rtc 1Hz clock for triggering DCF77 telegram
ESP_LOGI(TAG, "Time base external clock");
if (I2C_MUTEX_LOCK()) {
Rtc.SetSquareWavePinClockFrequency(DS3231SquareWaveClock_1Hz);
Rtc.SetSquareWavePin(DS3231SquareWavePin_ModeClock);
I2C_MUTEX_UNLOCK();
} else {
ESP_LOGE(TAG, "I2c bus busy - RTC initialization error");
return 0; // failure
}
// if we don't have pps signal from RTC we emulate it using ESP32 hardware timer
#else
#define RTC_CLK (DCF77_PULSE_DURATION) // setup clock cycle
ESP_LOGI(TAG, "Time base ESP32 clock");
2019-02-04 20:02:30 +01:00
dcfCycle = timerBegin(1, 8000, true); // set 80 MHz prescaler to 1/10000 sec
timerAttachInterrupt(dcfCycle, &DCF77IRQ, true);
2019-02-07 07:32:55 +01:00
timerAlarmWrite(dcfCycle, 10 * RTC_CLK, true); // RTC_CLK / 1sec = 100ms
#endif
2019-02-04 23:42:17 +01:00
2019-02-05 23:50:05 +01:00
// wait until beginning of next second, then kick off first DCF pulse and
2019-02-07 07:32:55 +01:00
// start clock signal
2019-02-05 23:50:05 +01:00
t = tt = now();
2019-02-04 23:42:17 +01:00
do {
2019-02-05 23:50:05 +01:00
tt = now();
} while (t == tt);
DCF_Out(second(tt));
2019-02-07 07:32:55 +01:00
#ifdef RTC_INT // start external clock
attachInterrupt(digitalPinToInterrupt(RTC_INT), DCF77IRQ, FALLING);
#else // start internal clock
2019-02-04 20:02:30 +01:00
timerAlarmEnable(dcfCycle);
2019-02-07 07:32:55 +01:00
#endif
return 1; // success
} // ifdcf77_init
2019-02-05 23:50:05 +01:00
void generateTimeframe(time_t tt) {
uint8_t ParityCount;
2019-02-05 23:50:05 +01:00
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;
2019-02-04 20:02:30 +01:00
// !! missing code here for leap second !!
2019-02-04 23:42:17 +01:00
/*
// 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);
*/
}
// 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;
if (!BitsPending) {
2019-02-05 23:50:05 +01:00
// prepare frame to send for next minute
generateTimeframe(now() + 61);
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-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;
};
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-07 07:32:55 +01:00
#if (!defined RTC_INT) || (RTC_CLK == DCF77_PULSE_DURATION)
DCF_Out(0); // we don't need clock rescaling
#else // we need clock rescaling by software timer
for (uint8_t i = 1; i <= RTC_CLK / DCF77_PULSE_DURATION; i++) {
DCF_Out(0);
vTaskDelayUntil(&wakeTime, pdMS_TO_TICKS(DCF77_PULSE_DURATION));
} // for
#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;
}
// 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-07 07:32:55 +01:00
// interrupt service routine triggered by external interrupt or internal timer
void IRAM_ATTR DCF77IRQ() {
xTaskNotifyFromISR(DCF77Task, xTaskGetTickCountFromISR(), eSetBits, NULL);
portYIELD_FROM_ISR();
}
#endif // HAS_DCF77