ESP32-PaxCounter/src/if482.cpp

115 lines
3.5 KiB
C++
Raw Normal View History

#if defined HAS_IF482 && defined HAS_RTC
/*
IF482 Generator to control clocks with IF482 timeframe input (e.g. BÜRK BU190)
Example IF482 timeframe: "OAL160806F170400"
IF482 Specification:
https://www.buerk-mobatime.de/cfc/shop.cfc?method=deliverShopDoc&id=509
Standard Zeittelegramm (IF 482) mit lokaler Zeit
Definition: Zeittelegramm (ASCII), endend auf die im Telegramm bezeichnete
Sekunde: 9600 Bit/s, 7 Datenbits, gerade Parität, 1 Stoppbit. Jitter < 50ms.
Format:
Byte Bedeutung Zeichen HEX Code
1 Startzeichen O 4F
2 Überwachung* A 41
3 Lokale Zeit** (durch die Uhr angezeigt) L 4C
4 Jahr Zehner 0 .. 9 30 .. 39
5 Jahr Einer 0 .. 9 30 .. 39
6 Monat Zehner 0 oder 1 30 oder 31
7 Monat Einer 0 .. 9 30 .. 39
8 Tag Zehner 0 .. 3 30 .. 33
9 Tag Einer 0 .. 9 30 .. 39
10 nicht verwendet F 46
11 Stunden Zehner 0 .. 2 30 .. 32
12 Stunden Einer 0 .. 9 30 .. 39
13 Minuten Zehner 0 .. 5 30 .. 35
14 Minuten Einer 0 .. 9 30 .. 39
15 Sekunden Zehner 0 .. 5 30 .. 35
16 Sekunden Einer 0 .. 9 30 .. 39
17 Ende des Telegramms CR 0D
*) Überwachung:
'A': Korrekter Zeitempfang des Sendegerätes
'M': Sendegerät hat mehr als 12 Stunden kein Zeitsignal empfangen
Zeit wird bei 'A' und 'M' vom Uhrwerk übernommen.
**) Lokale Zeit:
'W': Winterzeit
'S': Sommerzeit
'L': Lokalzeit
Wird überprüft, jedoch nicht vom Uhrwerk ausgewertet.
*/
#include "if482.h"
// Local logging tag
static const char TAG[] = "main";
HardwareSerial IF482(IF482_PORT); // serial port 1
// initialize and configure GPS
void if482_init(void) {
IF482.begin(HAS_IF482);
ESP_LOGI(TAG, "IF482 serial port opened");
// use rtc 1Hz clock for triggering IF482 telegram send
Rtc.SetSquareWavePinClockFrequency(DS3231SquareWaveClock_1Hz);
Rtc.SetSquareWavePin(DS3231SquareWavePin_ModeClock);
// setup external interupt for active low RTC INT pin
attachInterrupt(RTC_INT, IF482IRQ, FALLING);
} // if482_init
char * if482Telegram(time_t t) {
static char out[17] = {0}; // 16 bytes IF482 telegram plus null termination char
char buf[14] = {0};
strcat_P(out, "O"); // <STX>
switch (timeStatus()) { // indicates if time has been set and recently synced
case timeSet: // time is set and is synced
strcat_P(out, "A");
break;
case timeNeedsSync: // time had been set but sync attempt did not succeed
strcat_P(out, "M");
break;
default: // time not set, no valid time
strcat_P(out, "?");
break;
} // switch
strcat_P(out, "L"); // local time
if (!timeNotSet) { // do we have valid time?
sprintf(buf, "%02u%02u%02uF%02u%02u%02u", year(t), month(t), day(t), hour(t),
minute(t), second(t));
strcat(out, buf);
} else {
strcat_P(out, "000000F000000");
}
strcat_P(out, "\r"); // <ETX>
return out;
}
// interrupt triggered routine
void sendIF482(time_t t) {
IF482.write(if482Telegram(t));
}
#endif // HAS_IF482