diff --git a/tests/jitter/src/main.cpp b/tests/jitter/src/main.cpp index 79c157c298..5ece1b8e86 100644 --- a/tests/jitter/src/main.cpp +++ b/tests/jitter/src/main.cpp @@ -110,6 +110,8 @@ void runSend(const char* addressOption, int port, int gap, int size, int report) timeGaps.update(gapDifferece); timeGapsPerReport.update(gapDifferece); stDev.addValue(gapDifferece); + stDev30s.addValue(gapDifferece); + stDevReportInterval.addValue(gapDifferece); last = now; if (now - lastReport >= (report * MSEC_TO_USEC)) { @@ -208,6 +210,8 @@ void runReceive(const char* addressOption, int port, int gap, int size, int repo timeGaps.update(gapDifferece); timeGapsPerReport.update(gapDifferece); stDev.addValue(gapDifferece); + stDev30s.addValue(gapDifferece); + stDevReportInterval.addValue(gapDifferece); last = now; if (now - lastReport >= (report * MSEC_TO_USEC)) {