25 lines
962 B
C
25 lines
962 B
C
|
#ifndef _TIME_SYNC_TIMESERVER_H
|
||
|
#define _TIME_SYNC_TIMESERVER_H
|
||
|
|
||
|
#include "globals.h"
|
||
|
#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 30 // timeout seconds waiting for timeserver answer
|
||
|
#define TIME_SYNC_THRESHOLD 1 // time deviation threshold triggering time sync
|
||
|
#define TIME_SYNC_START_OPCODE 0x90 // force time sync on node
|
||
|
#define TIME_SYNC_REQ_OPCODE 0x92 // node requests time at server
|
||
|
#define TIME_SYNC_ANS_OPCODE 0x93 // server answers time to node
|
||
|
|
||
|
extern uint32_t time_sync_messages[], time_sync_answers[];
|
||
|
extern uint8_t volatile time_sync_seqNo;
|
||
|
|
||
|
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[]);
|
||
|
|
||
|
#endif
|