forked from ROMEO/obsw
zedboard working
This commit is contained in:
@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
#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;
|
||||
};
|
Reference in New Issue
Block a user