forked from ROMEO/obsw
20 lines
443 B
C++
20 lines
443 B
C++
#pragma once
|
|
|
|
#include <xgpiops.h>
|
|
|
|
#include <fsfw/objectmanager/SystemObject.h>
|
|
#include <fsfw/tasks/ExecutableObjectIF.h>
|
|
|
|
|
|
class PrintController: public SystemObject, public ExecutableObjectIF {
|
|
public:
|
|
PrintController(object_id_t setObjectId);
|
|
virtual ~PrintController() = default;
|
|
|
|
ReturnValue_t initialize() override;
|
|
|
|
ReturnValue_t performOperation(uint8_t operationCode) override;
|
|
|
|
private:
|
|
XGpioPs gpio;
|
|
}; |