eive-obsw/linux/devices/ScexUartReader.h
Irini Kosmidou df712c7100
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
scex reader task started
2022-03-25 17:48:38 +01:00

19 lines
460 B
C++

#ifndef LINUX_DEVICES_SCEXUARTREADER_H_
#define LINUX_DEVICES_SCEXUARTREADER_H_
#include <fsfw/objectmanager/SystemObject.h>
#include <fsfw/tasks/ExecutableObjectIF.h>
class ScexUartReader: public SystemObject, //strg+shift+n
public ExecutableObjectIF,
public HasReturnvaluesIF {
public:
ScexUartReader(object_id_t objectId);
private:
ReturnValue_t performOperation(uint8_t operationCode = 0) override;
};
#endif /* LINUX_DEVICES_SCEXUARTREADER_H_ */