zedboard working

This commit is contained in:
2023-09-15 17:37:58 +02:00
parent fb8f4a68e7
commit 5a61af053b
13 changed files with 149 additions and 183 deletions

View File

@ -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;
};