zed goes blink

This commit is contained in:
2023-09-20 12:50:48 +02:00
parent 03298b4876
commit 95c26b34c7
6 changed files with 41 additions and 2 deletions

View File

@ -1,5 +1,7 @@
#pragma once
#include <xgpiops.h>
#include <fsfw/objectmanager/SystemObject.h>
#include <fsfw/tasks/ExecutableObjectIF.h>
@ -12,4 +14,7 @@ class PrintController: public SystemObject, public ExecutableObjectIF {
ReturnValue_t initialize() override;
ReturnValue_t performOperation(uint8_t operationCode) override;
private:
XGpioPs gpio;
};