Merge pull request #270 from cyberman54/development

bugfix IF482 RTC start
This commit is contained in:
Verkehrsrot 2019-02-10 16:45:51 +01:00 committed by GitHub
commit 616d2bd8de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 20 additions and 8 deletions

View File

@ -6,5 +6,7 @@
int if482_init(void); int if482_init(void);
void if482_loop(void *pvParameters); void if482_loop(void *pvParameters);
TickType_t tx_time(unsigned long baud, uint32_t config, int8_t rxPin,
int8_t txPins);
#endif #endif

View File

@ -39,6 +39,7 @@ int dcf77_init(void) {
pinMode(HAS_DCF77, OUTPUT); pinMode(HAS_DCF77, OUTPUT);
set_DCF77_pin(dcf_low); set_DCF77_pin(dcf_low);
timepulse_init(PPS); // setup timepulse
xTaskCreatePinnedToCore(dcf77_loop, // task function xTaskCreatePinnedToCore(dcf77_loop, // task function
"dcf77loop", // name of task "dcf77loop", // name of task
@ -49,8 +50,6 @@ int dcf77_init(void) {
0); // CPU core 0); // CPU core
assert(ClockTask); // has clock task started? assert(ClockTask); // has clock task started?
timepulse_init(PPS); // setup pulse
DCF_Out(sync_clock(now())); // sync DCF time on next second DCF_Out(sync_clock(now())); // sync DCF time on next second
timepulse_start(); // start pulse timepulse_start(); // start pulse

View File

@ -107,6 +107,8 @@ int if482_init(void) {
// open serial interface // open serial interface
IF482.begin(HAS_IF482); IF482.begin(HAS_IF482);
// setup timepulse
timepulse_init(PPS);
// start if482 serial output feed task // start if482 serial output feed task
xTaskCreatePinnedToCore(if482_loop, // task function xTaskCreatePinnedToCore(if482_loop, // task function
@ -118,8 +120,6 @@ int if482_init(void) {
0); // CPU core 0); // CPU core
assert(ClockTask); // has clock task started? assert(ClockTask); // has clock task started?
timepulse_init(PPS); // setup pulse
timepulse_start(); // start pulse timepulse_start(); // start pulse
return 1; // success return 1; // success
@ -161,7 +161,7 @@ void if482_loop(void *pvParameters) {
TickType_t wakeTime; TickType_t wakeTime;
const TickType_t timeOffset = const TickType_t timeOffset =
pdMS_TO_TICKS(IF482_OFFSET); // duration of telegram transmit tx_time(HAS_IF482); // duration of telegram transmit
const TickType_t startTime = xTaskGetTickCount(); // now const TickType_t startTime = xTaskGetTickCount(); // now
sync_clock(now()); // wait until begin of a new second sync_clock(now()); // wait until begin of a new second
@ -196,4 +196,15 @@ void if482_loop(void *pvParameters) {
} }
} // if482_loop() } // if482_loop()
// helper function to calculate IF482 telegram serial tx time from serial
// settings
TickType_t tx_time(unsigned long baud, uint32_t config, int8_t rxPin,
int8_t txPins) {
uint32_t datenbits = ((config & 0x0c) >> 2) + 5;
uint32_t startbits = ((config & 0x20) >> 5) + 1;
return pdMS_TO_TICKS(
round(((datenbits + startbits + 1) * IF482_FRAME_SIZE * 1000.0 / baud)));
}
#endif // HAS_IF482 #endif // HAS_IF482

View File

@ -82,12 +82,11 @@
#define RESPONSE_TIMEOUT_MS 60000 // firmware binary server connection timeout [milliseconds] #define RESPONSE_TIMEOUT_MS 60000 // firmware binary server connection timeout [milliseconds]
// settings for syncing time of node and external time sources // settings for syncing time of node and external time sources
#define TIME_SYNC_INTERVAL_GPS 60 // sync time each .. minutes from source GPS [default = 60], comment out means off #define TIME_SYNC_INTERVAL_GPS 5 // sync time each .. minutes from source GPS [default = 5], comment out means off
#define TIME_SYNC_INTERVAL_RTC 60 // sync time each .. minutes from RTC [default = 60], comment out means off #define TIME_SYNC_INTERVAL_RTC 60 // sync time each .. minutes from RTC [default = 60], comment out means off
#define TIME_WRITE_INTERVAL_RTC 60 // write time each .. minutes from GPS/LORA to RTC [default = 60], comment out means off #define TIME_WRITE_INTERVAL_RTC 60 // write time each .. minutes from GPS/LORA to RTC [default = 60], comment out means off
//#define TIME_SYNC_INTERVAL_LORA 60 // sync time each .. minutes from LORA network [default = 60], comment out means off //#define TIME_SYNC_INTERVAL_LORA 60 // sync time each .. minutes from LORA network [default = 60], comment out means off
#define TIME_SYNC_INTERVAL_DCF 60 // sync DCF signal time each .. minutes from internal time [default = 60], comment out means off #define TIME_SYNC_INTERVAL_DCF 60 // sync DCF signal time each .. minutes from internal time [default = 60], comment out means off
#define IF482_OFFSET 16 // IF482 serial transmit time [ms]: e.g. 9 bits * 17 bytes * 1/9600 bps = 16ms
// time zone, see https://github.com/JChristensen/Timezone/blob/master/examples/WorldClock/WorldClock.ino // time zone, see https://github.com/JChristensen/Timezone/blob/master/examples/WorldClock/WorldClock.ino
#define DAYLIGHT_TIME {"CEST", Last, Sun, Mar, 2, 120} // Central European Summer Time #define DAYLIGHT_TIME {"CEST", Last, Sun, Mar, 2, 120} // Central European Summer Time

View File

@ -136,6 +136,7 @@ int timepulse_init(uint32_t pulse_period_ms) {
Rtc.SetSquareWavePinClockFrequency(DS3231SquareWaveClock_1kHz); Rtc.SetSquareWavePinClockFrequency(DS3231SquareWaveClock_1kHz);
break; break;
default: default:
I2C_MUTEX_UNLOCK();
goto pulse_period_error; goto pulse_period_error;
} }
Rtc.SetSquareWavePin(DS3231SquareWavePin_ModeClock); Rtc.SetSquareWavePin(DS3231SquareWavePin_ModeClock);