1
0
forked from fsfw/fsfw

separate messages for success/failure

This commit is contained in:
2020-09-19 21:36:12 +02:00
parent cad08e1ea9
commit 40db85e73f
2 changed files with 9 additions and 4 deletions

View File

@ -30,7 +30,8 @@ public:
static ReturnValue_t setReadCommand(CommandMessage* message, store_address_t storageID);
static ReturnValue_t setReadReply(CommandMessage* message, store_address_t storageID);
static store_address_t getStoreId( const CommandMessage* message );
static void setCompletionReply(CommandMessage* message, Command_t completionStatus);
static void setSuccessReply(CommandMessage* message);
static void setFailureReply(CommandMessage* message, ReturnValue_t errorCode);
};
#endif /* FSFW_MEMORY_FILESYSTEMMESSAGE_H_ */