From e12a8cfa292085c1ec2e1092f02ec5f722bf667d Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 8 Apr 2024 13:31:21 +0200 Subject: [PATCH] make this change downwards compatible --- src/fsfw/pus/Service9TimeManagement.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/fsfw/pus/Service9TimeManagement.h b/src/fsfw/pus/Service9TimeManagement.h index 33c71e23..87fcab75 100644 --- a/src/fsfw/pus/Service9TimeManagement.h +++ b/src/fsfw/pus/Service9TimeManagement.h @@ -12,10 +12,12 @@ class Service9TimeManagement : public PusServiceBase { //!< Clock has been set. P1: old timeval seconds. P2: new timeval seconds. static constexpr Event CLOCK_SET = MAKE_EVENT(0, severity::INFO); - //!< Clock dump event. P1: timeval seconds P2: timeval microseconds. - static constexpr Event CLOCK_DUMP = MAKE_EVENT(1, severity::INFO); + //!< Clock dump event. P1: timeval seconds P2: timeval milliseconds. + static constexpr Event CLOCK_DUMP_LEGACY = MAKE_EVENT(1, severity::INFO); //!< Clock could not be set. P1: Returncode. static constexpr Event CLOCK_SET_FAILURE = MAKE_EVENT(2, severity::LOW); + //!< Clock dump event. P1: timeval seconds P2: timeval microseconds. + static constexpr Event CLOCK_DUMP = MAKE_EVENT(3, severity::INFO); static constexpr uint8_t CLASS_ID = CLASS_ID::PUS_SERVICE_9;