eive-obsw/mission/utility/DummySdCardManager.h
Robin Mueller 9c217ad91e
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
now hosted should compile again
2022-12-14 09:53:38 +01:00

19 lines
628 B
C++

#ifndef BSP_LINUX_BOARD_RPISDCARDMANAGER_H_
#define BSP_LINUX_BOARD_RPISDCARDMANAGER_H_
#include <mission/memory/SdCardMountedIF.h>
class DummySdCardManager : public SdCardMountedIF {
public:
DummySdCardManager(std::string prefix);
const std::string& getCurrentMountPrefix() const override;
bool isSdCardUsable(std::optional<sd::SdCard> sdCard) override;
std::optional<sd::SdCard> getPreferredSdCard() const override;
void setActiveSdCard(sd::SdCard sdCard) override;
std::optional<sd::SdCard> getActiveSdCard() const override;
private:
std::string prefix;
};
#endif /* BSP_LINUX_BOARD_RPISDCARDMANAGER_H_ */