From a6abeb697f2352e877780f8bf967ea8f19f99e20 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 16 May 2022 15:09:02 +0200 Subject: [PATCH] comment --- linux/devices/ploc/PlocMPSoCHandler.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/linux/devices/ploc/PlocMPSoCHandler.h b/linux/devices/ploc/PlocMPSoCHandler.h index 17014270..e2950885 100644 --- a/linux/devices/ploc/PlocMPSoCHandler.h +++ b/linux/devices/ploc/PlocMPSoCHandler.h @@ -108,6 +108,9 @@ class PlocMPSoCHandler : public DeviceHandlerBase, public CommandsActionsIF { MessageQueueIF* eventQueue = nullptr; MessageQueueIF* commandActionHelperQueue = nullptr; + // Initiate the sequence count with the maximum value. It is incremented before + // a packet is sent, so the first value will be 0 accordingly using + // the wrap around of the counter. SourceSequenceCounter sequenceCount = SourceSequenceCounter(SpacePacketBase::LIMIT_SEQUENCE_COUNT - 1);