mpsoc sequence count restructured

This commit is contained in:
Jakob Meier
2022-01-10 16:18:18 +01:00
parent 45c7f9555d
commit 0f0f5e2fcb
13 changed files with 151 additions and 76 deletions

View File

@ -1,6 +1,7 @@
#ifndef BSP_Q7S_MEMORY_FILESYSTEMHELPER_H_
#define BSP_Q7S_MEMORY_FILESYSTEMHELPER_H_
#include <string>
#include "fsfw/returnvalues/HasReturnvaluesIF.h"
/**
@ -32,7 +33,7 @@ public:
* Return error code if path points to SD card and the corresponding SD card is not
* mounted.
*/
static const ReturnValue_t checkPath(std::string path);
static ReturnValue_t checkPath(std::string path);
/**
* @brief Checks if the file exists on the filesystem.
@ -41,7 +42,7 @@ public:
*
* @return RETURN_OK if fiel exists, otherwise return error code.
*/
static const ReturnValue_t fileExists(std::string file);
static ReturnValue_t fileExists(std::string file);
};
#endif /* BSP_Q7S_MEMORY_FILESYSTEMHELPER_H_ */