From 91db9c362eb214741b46969864bd63f8fd9fedfb Mon Sep 17 00:00:00 2001 From: "Robin.Mueller" Date: Tue, 2 Mar 2021 12:35:19 +0100 Subject: [PATCH] added additional returnvalues --- memory/HasFileSystemIF.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/memory/HasFileSystemIF.h b/memory/HasFileSystemIF.h index 52360f0c..cb4ca930 100644 --- a/memory/HasFileSystemIF.h +++ b/memory/HasFileSystemIF.h @@ -32,6 +32,11 @@ public: //! [EXPORT] : P1: Sequence number missing static constexpr ReturnValue_t SEQUENCE_PACKET_MISSING_READ = MAKE_RETURN_CODE(8); + //! [EXPORT] : File system is currently busy + static constexpr ReturnValue_t IS_BUSY = MAKE_RETURN_CODE(9); + //! [EXPORT] : Invalid parameters like file name or repository path + static constexpr ReturnValue_t INVALID_PARAMETERS = MAKE_RETURN_CODE(10); + virtual ~HasFileSystemIF() {} /** * Function to get the MessageQueueId_t of the implementing object