1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

pps_ts: re-add missing variable

This commit is contained in:
Steffen Vogel 2021-07-20 13:37:19 +02:00
parent 6c6489f7b3
commit fc6434c66c

View file

@ -42,6 +42,8 @@ protected:
HORIZON,
} mode;
uint64_t lastSequence;
double lastValue;
double threshold;
@ -63,6 +65,7 @@ public:
PpsTsHook(struct vpath *p, struct vnode *n, int fl, int prio, bool en = true) :
SingleSignalHook(p, n, fl, prio, en),
mode(Mode::SIMPLE),
lastSequence(0),
lastValue(0),
threshold(1.5),
isSynced(false),