timesync(experimental)
This commit is contained in:
parent
c64f087faa
commit
7ab0d8fcd6
@ -5,15 +5,14 @@
|
||||
#include "timesync.h"
|
||||
#include "timekeeper.h"
|
||||
|
||||
#define TIME_SYNC_SAMPLES 3 // number of time requests for averaging
|
||||
#define TIME_SYNC_CYCLE 20 // seconds between two time requests
|
||||
#define TIME_SYNC_TIMEOUT 180 // timeout seconds waiting for timeserver answer
|
||||
#define TIME_SYNC_THRESHOLD \
|
||||
1.0f // time deviation threshold triggering time sync
|
||||
#define TIME_SYNC_START_OPCODE 0x90 // start time sync on node
|
||||
#define TIME_SYNC_STOP_OPCODE 0x91 // stop time sync on node
|
||||
#define TIME_SYNC_REQ_OPCODE 0x92 // node request at timeserver
|
||||
#define TIME_SYNC_ANS_OPCODE 0x93 // timeserver answer to node
|
||||
#define TIME_SYNC_SAMPLES 1 // number of time requests for averaging
|
||||
#define TIME_SYNC_CYCLE 60 // seconds between two time requests
|
||||
#define TIME_SYNC_TIMEOUT 120 // timeout seconds waiting for timeserver answer
|
||||
#define TIME_SYNC_TRIGGER 1.0f // time deviation threshold triggering time sync
|
||||
#define TIME_SYNC_START_OPCODE 0x90 // start time sync (server -> node)
|
||||
#define TIME_SYNC_STEP_OPCODE 0x91 // step to next sync request (node -> server)
|
||||
#define TIME_SYNC_REQ_OPCODE 0x92 // node request at timeserver (node -> server)
|
||||
#define TIME_SYNC_ANS_OPCODE 0x93 // timeserver answer to node (server -> node)
|
||||
|
||||
typedef struct {
|
||||
uint32_t seconds;
|
||||
@ -22,11 +21,11 @@ typedef struct {
|
||||
|
||||
extern time_sync_message_t time_sync_messages[], time_sync_answers[];
|
||||
extern uint8_t time_sync_seqNo;
|
||||
extern bool time_sync_pending;
|
||||
|
||||
void send_Servertime_req(void);
|
||||
void recv_Servertime_ans(uint8_t val[]);
|
||||
void process_Servertime_sync_req(void *taskparameter);
|
||||
void process_Servertime_sync_ans(void *taskparameter);
|
||||
void force_Servertime_sync(uint8_t val[]);
|
||||
void store_time_sync_req(time_t secs, uint32_t micros);
|
||||
|
||||
|
@ -63,6 +63,18 @@ function Decoder(bytes, port) {
|
||||
return decode(bytes, [uint16], ['voltage']);
|
||||
}
|
||||
|
||||
if (port === 9) {
|
||||
// timesync request
|
||||
if (bytes.length === 1) {
|
||||
decoded.timesync_opcode = bytes[0];
|
||||
}
|
||||
if (bytes.length === 2) {
|
||||
decoded.timesync_opcode = bytes[0];
|
||||
decoded.timesync_seqno = bytes[1];
|
||||
}
|
||||
return decoded;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
@ -40,8 +40,16 @@ void SendPayload(uint8_t port, sendprio_t prio) {
|
||||
|
||||
// enqueue message in device's send queues
|
||||
#ifdef HAS_LORA
|
||||
/*
|
||||
// pause send any data but timeport data, while timesync handshake is ongoing
|
||||
if (port != TIMEPORT) {
|
||||
if (!time_sync_pending)
|
||||
lora_enqueuedata(&SendBuffer, prio);
|
||||
} else
|
||||
*/
|
||||
lora_enqueuedata(&SendBuffer, prio);
|
||||
#endif
|
||||
|
||||
#ifdef HAS_SPI
|
||||
spi_enqueuedata(&SendBuffer, prio);
|
||||
#endif
|
||||
|
139
src/timesync.cpp
139
src/timesync.cpp
@ -17,42 +17,31 @@ patent holder.
|
||||
// Local logging tag
|
||||
static const char TAG[] = __FILE__;
|
||||
|
||||
TaskHandle_t timeSyncReqTask, timeSyncAnsTask;
|
||||
time_sync_message_t
|
||||
time_sync_messages[TIME_SYNC_SAMPLES + 1] = {0},
|
||||
time_sync_answers[TIME_SYNC_SAMPLES +
|
||||
1] = {0};
|
||||
uint8_t time_sync_seqNo = 0; // used in lorawan.cpp to store timestamp
|
||||
TaskHandle_t timeSyncReqTask;
|
||||
time_sync_message_t time_sync_messages[TIME_SYNC_SAMPLES] = {0},
|
||||
time_sync_answers[TIME_SYNC_SAMPLES] = {0};
|
||||
uint8_t time_sync_seqNo = 0;
|
||||
bool time_sync_pending = false;
|
||||
|
||||
// send time request message
|
||||
void send_Servertime_req() {
|
||||
|
||||
// if a timesync handshake is pending then exit
|
||||
if ((timeSyncAnsTask) || (timeSyncReqTask)) {
|
||||
ESP_LOGI(TAG, "Timesync sync request already running");
|
||||
if (time_sync_pending) {
|
||||
ESP_LOGI(TAG, "Timeserver sync request already running");
|
||||
return;
|
||||
} else {
|
||||
ESP_LOGI(TAG, "Timeserver sync request started");
|
||||
|
||||
time_sync_pending = true;
|
||||
|
||||
// clear timestamp array
|
||||
for (uint8_t i = 0; i <= TIME_SYNC_SAMPLES + 1; i++) {
|
||||
time_sync_messages[i].seconds = time_sync_answers[i].seconds = 0;
|
||||
time_sync_messages[i].fractions = time_sync_answers[i].fractions = 0;
|
||||
}
|
||||
|
||||
time_sync_seqNo = 0;
|
||||
|
||||
// create temporary task for processing sync answers if not already active
|
||||
if (!timeSyncAnsTask)
|
||||
xTaskCreatePinnedToCore(process_Servertime_sync_ans, // task function
|
||||
"timesync_ans", // name of task
|
||||
2048, // stack size of task
|
||||
(void *)1, // task parameter
|
||||
0, // priority of the task
|
||||
&timeSyncAnsTask, // task handle
|
||||
1); // CPU core
|
||||
|
||||
// create temporary task sending sync requests
|
||||
// kick off temporary task for timeserver handshake processing
|
||||
if (!timeSyncReqTask)
|
||||
xTaskCreatePinnedToCore(process_Servertime_sync_req, // task function
|
||||
"timesync_req", // name of task
|
||||
@ -68,7 +57,7 @@ void send_Servertime_req() {
|
||||
void recv_Servertime_ans(uint8_t val[]) {
|
||||
|
||||
// if no timesync handshake is pending then exit
|
||||
if (!time_sync_seqNo)
|
||||
if (!time_sync_pending)
|
||||
return;
|
||||
|
||||
uint8_t seq_no = val[0];
|
||||
@ -78,65 +67,68 @@ void recv_Servertime_ans(uint8_t val[]) {
|
||||
timestamp_sec = (timestamp_sec << 8) | val[i];
|
||||
time_sync_answers[seq_no].seconds = timestamp_sec;
|
||||
}
|
||||
time_sync_answers[seq_no].fractions = val[5];
|
||||
timestamp_ms = 4 * val[5];
|
||||
time_sync_answers[seq_no].fractions = timestamp_ms;
|
||||
|
||||
ESP_LOGD(TAG, "Timeserver timestamp #%d received: time=%d.%d", seq_no,
|
||||
ESP_LOGD(TAG, "Timeserver answer #%d received: timestamp=%d.%03d", seq_no,
|
||||
timestamp_sec, timestamp_ms);
|
||||
|
||||
// inform processing task
|
||||
if (timeSyncAnsTask)
|
||||
xTaskNotify(timeSyncAnsTask, seq_no, eSetBits);
|
||||
if (timeSyncReqTask)
|
||||
xTaskNotify(timeSyncReqTask, seq_no, eSetBits);
|
||||
}
|
||||
|
||||
// task for sending time sync requests
|
||||
void process_Servertime_sync_req(void *taskparameter) {
|
||||
// enqueue timestamp samples in lora sendqueue
|
||||
for (uint8_t i = 1; i <= TIME_SYNC_SAMPLES; i++) {
|
||||
time_sync_seqNo++;
|
||||
payload.reset();
|
||||
payload.addWord(TIME_SYNC_REQ_OPCODE | time_sync_seqNo << 8);
|
||||
SendPayload(TIMEPORT, prio_high);
|
||||
ESP_LOGD(TAG, "Timeserver request #%d sent", time_sync_seqNo);
|
||||
// Wait for the next cycle
|
||||
vTaskDelay(pdMS_TO_TICKS(TIME_SYNC_CYCLE * 1000));
|
||||
}
|
||||
payload.reset();
|
||||
payload.addByte(TIME_SYNC_STOP_OPCODE);
|
||||
SendPayload(TIMEPORT, prio_high); // necessary to receive last timestamp
|
||||
timeSyncReqTask = NULL;
|
||||
vTaskDelete(NULL); // end task
|
||||
}
|
||||
|
||||
// task for processing a timesync handshake
|
||||
void process_Servertime_sync_ans(void *taskparameter) {
|
||||
|
||||
uint32_t seq_no = 0, time_diff_sec = 0, time_diff_ms = 0;
|
||||
time_t time_to_set = 0;
|
||||
float time_offset = 0.0f;
|
||||
|
||||
// collect incoming timestamp samples notified by rcommand
|
||||
// enqueue timestamp samples in lora sendqueue
|
||||
for (uint8_t i = 1; i <= TIME_SYNC_SAMPLES; i++) {
|
||||
|
||||
// wrap around seqNo 0 .. 254
|
||||
time_sync_seqNo = (time_sync_seqNo >= 255) ? 0 : time_sync_seqNo + 1;
|
||||
|
||||
// send sync request to server
|
||||
payload.reset();
|
||||
payload.addWord(TIME_SYNC_REQ_OPCODE | time_sync_seqNo << 8);
|
||||
SendPayload(TIMEPORT, prio_high);
|
||||
ESP_LOGD(TAG, "Timeserver request #%d enqeued", time_sync_seqNo);
|
||||
|
||||
// send dummy packet to trigger receive answer
|
||||
payload.reset();
|
||||
payload.addByte(TIME_SYNC_STEP_OPCODE);
|
||||
SendPayload(TIMEPORT, prio_low); // open receive slot for answer
|
||||
|
||||
// process answer
|
||||
if ((xTaskNotifyWait(0x00, ULONG_MAX, &seq_no,
|
||||
(TIME_SYNC_CYCLE + TIME_SYNC_TIMEOUT) * 1000 /
|
||||
portTICK_PERIOD_MS) == pdFALSE) ||
|
||||
(seq_no != i)) {
|
||||
ESP_LOGW(TAG, "Timesync handshake timeout");
|
||||
goto finish; // no valid sequence received before timeout
|
||||
} else // calculate time diff from set of collected timestamps
|
||||
{
|
||||
time_diff_sec += time_sync_messages[seq_no].seconds -
|
||||
time_sync_answers[seq_no].seconds;
|
||||
time_diff_ms += 4 * (time_sync_messages[seq_no].fractions -
|
||||
time_sync_answers[seq_no].fractions);
|
||||
TIME_SYNC_TIMEOUT * 1000 / portTICK_PERIOD_MS) ==
|
||||
pdFALSE) ||
|
||||
(seq_no != time_sync_seqNo)) {
|
||||
ESP_LOGW(TAG, "Timeserver handshake error");
|
||||
goto finish;
|
||||
} // no valid sequence received before timeout
|
||||
|
||||
else { // calculate time diff from set of collected timestamps
|
||||
uint8_t k = seq_no % TIME_SYNC_SAMPLES;
|
||||
time_diff_sec +=
|
||||
time_sync_messages[k].seconds - time_sync_answers[k].seconds;
|
||||
time_diff_ms += 4 * (time_sync_messages[k].fractions -
|
||||
time_sync_answers[k].fractions);
|
||||
}
|
||||
}
|
||||
} // for
|
||||
|
||||
time_offset = (time_diff_sec + time_diff_ms / 1000.0) / TIME_SYNC_SAMPLES;
|
||||
// calculate time offset and set time if necessary
|
||||
time_offset =
|
||||
(time_diff_sec + time_diff_ms / 1000.0f) / (TIME_SYNC_SAMPLES * 1.0f);
|
||||
|
||||
ESP_LOGD(TAG, "Timesync finished, time offset=%.4f seconds", time_offset);
|
||||
// ESP_LOGD(TAG, "Timesync time offset=%.3f", time_offset);
|
||||
ESP_LOGD(TAG, "Timesync time offset=%d.%03d", time_diff_sec / TIME_SYNC_SAMPLES,
|
||||
time_diff_ms / TIME_SYNC_SAMPLES);
|
||||
|
||||
// check time diff and if necessary set time
|
||||
if (time_offset >= TIME_SYNC_THRESHOLD) {
|
||||
if (time_offset >= TIME_SYNC_TRIGGER) {
|
||||
|
||||
// wait until top of second
|
||||
if (time_diff_ms > 0) {
|
||||
@ -147,11 +139,10 @@ void process_Servertime_sync_ans(void *taskparameter) {
|
||||
time_diff_sec++;
|
||||
}
|
||||
|
||||
time_to_set = time_t(now() - time_diff_sec);
|
||||
|
||||
time_to_set = time_t(now() + time_diff_sec);
|
||||
ESP_LOGD(TAG, "Time to set = %d", time_to_set);
|
||||
|
||||
// Update system time with time read from the network
|
||||
// adjust system time
|
||||
if (timeIsValid(time_to_set)) {
|
||||
setTime(time_to_set);
|
||||
SyncToPPS();
|
||||
@ -166,21 +157,19 @@ void process_Servertime_sync_ans(void *taskparameter) {
|
||||
|
||||
finish:
|
||||
|
||||
time_sync_seqNo = 0;
|
||||
timeSyncAnsTask = NULL;
|
||||
time_sync_pending = false;
|
||||
timeSyncReqTask = NULL;
|
||||
vTaskDelete(NULL); // end task
|
||||
}
|
||||
|
||||
// called from lorawan.cpp when tine_sync_req was sent
|
||||
// called from lorawan.cpp immediately after time_sync_req was sent
|
||||
void store_time_sync_req(time_t secs, uint32_t micros) {
|
||||
uint8_t k = time_sync_seqNo % TIME_SYNC_SAMPLES;
|
||||
time_sync_messages[k].seconds = secs;
|
||||
time_sync_messages[k].fractions = micros / 250; // 4ms resolution
|
||||
|
||||
time_sync_messages[time_sync_seqNo].seconds = secs;
|
||||
time_sync_messages[time_sync_seqNo].fractions =
|
||||
micros / 250; // 4ms resolution
|
||||
|
||||
ESP_LOGD(TAG, "Timeserver request #%d was sent at %d.%d", time_sync_seqNo,
|
||||
time_sync_messages[time_sync_seqNo].seconds,
|
||||
time_sync_messages[time_sync_seqNo].fractions);
|
||||
ESP_LOGD(TAG, "Timeserver request #%d sent at %d.%03d", time_sync_seqNo,
|
||||
time_sync_messages[k].seconds, time_sync_messages[k].fractions);
|
||||
}
|
||||
|
||||
void force_Servertime_sync(uint8_t val[]) {
|
||||
|
Loading…
Reference in New Issue
Block a user