From 687e124929f367f8009b517450e8f61322bb0613 Mon Sep 17 00:00:00 2001 From: "Robin.Mueller" Date: Sun, 23 Aug 2020 21:52:44 +0200 Subject: [PATCH] doc added --- datapoollocal/LocalDataPoolManager.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/datapoollocal/LocalDataPoolManager.h b/datapoollocal/LocalDataPoolManager.h index 9403911b..8700fd38 100644 --- a/datapoollocal/LocalDataPoolManager.h +++ b/datapoollocal/LocalDataPoolManager.h @@ -140,11 +140,12 @@ public: * full dataset updates. */ enum class ReportingType: uint8_t { - // Periodic generation of HK packets. + //! Periodic generation of HK packets. PERIODIC, + //! Update notification will be sent out as message. UPDATE_NOTIFICATION, - // Notification will be sent out as message. - // Data is accessed via shared data set or multiple local data sets. + //! Notification will be sent out as message and a snapshot of the + //! current data will be generated. UPDATE_SNAPSHOT, };