eive-obsw/mission/devices/ScexDeviceHandler.h

53 lines
2.0 KiB
C
Raw Normal View History

2022-04-29 15:46:16 +02:00
#ifndef MISSION_DEVICES_SCEXDEVICEHANDLER_H_
#define MISSION_DEVICES_SCEXDEVICEHANDLER_H_
#include <fsfw/devicehandlers/DeviceHandlerBase.h>
#include <linux/devices/ScexHelper.h>
#include <linux/devices/ScexUartReader.h>
2022-05-19 11:56:59 +02:00
class SdCardMountedIF;
2022-04-29 15:46:16 +02:00
class ScexDeviceHandler : public DeviceHandlerBase {
public:
2022-05-19 09:59:33 +02:00
// ctor vervollst<73>ndigen
2022-05-19 11:56:59 +02:00
ScexDeviceHandler(object_id_t objectId, ScexUartReader &reader, CookieIF *cookie,
SdCardMountedIF *sdcMan);
2022-05-19 09:59:33 +02:00
virtual ~ScexDeviceHandler();
2022-04-29 15:46:16 +02:00
private:
std::array<uint8_t, 64> cmdBuf = {};
2022-05-19 11:56:59 +02:00
std::string fileId = "";
std::string fileName = "";
bool fileNameSet = false;
bool debugMode = true;
scex::Cmds currCmd = scex::Cmds::PING;
SdCardMountedIF *sdcMan = nullptr;
Countdown finishCountdown = Countdown(180 * 1000);
std::string random_string(std::string::size_type length);
2022-04-29 15:46:16 +02:00
// DeviceHandlerBase private function implementation
void doStartUp() override;
void doShutDown() override;
ScexHelper helper;
2022-05-19 09:59:33 +02:00
ScexUartReader &reader;
2022-04-29 15:46:16 +02:00
ReturnValue_t buildNormalDeviceCommand(DeviceCommandId_t *id) override;
ReturnValue_t buildTransitionDeviceCommand(DeviceCommandId_t *id) override;
2022-05-19 11:56:59 +02:00
ReturnValue_t buildCommandFromCommand(DeviceCommandId_t deviceCommand, const uint8_t *commandData,
2022-04-29 15:46:16 +02:00
size_t commandDataLen) override;
void fillCommandAndReplyMap() override;
ReturnValue_t scanForReply(const uint8_t *start, size_t remainingSize, DeviceCommandId_t *foundId,
size_t *foundLen) override;
ReturnValue_t interpretDeviceReply(DeviceCommandId_t id, const uint8_t *packet) override;
uint32_t getTransitionDelayMs(Mode_t modeFrom, Mode_t modeTo) override;
ReturnValue_t getSwitches(const uint8_t **switches, uint8_t *numberOfSwitches) override;
ReturnValue_t initializeLocalDataPool(localpool::DataPool &localDataPoolMap,
LocalDataPoolManager &poolManager) override;
void modeChanged() override;
};
#endif /* MISSION_DEVICES_SCEXDEVICEHANDLER_H_ */