Current Progress -- Save to switch computer

This commit is contained in:
Paul Nehlich
2023-10-26 07:10:20 +02:00
parent fa4cfd517f
commit 5641f1afad
5 changed files with 62 additions and 2 deletions

View File

@ -8,6 +8,8 @@
#include <mission/controller/BlinkController.h>
#include <mission/devices/LightHandler.h>
#include <bsp_z7/objects/communication/GpioCommIF.h>
#include <bsp_z7/objects/communication/GpioCookie.h>
#include "fsfw/events/EventManager.h"
#include "fsfw/health/HealthTable.h"
@ -66,6 +68,7 @@ void ObjectFactory::produce(void *args) {
new PrintController(123);
new BlinkController(124);
new LightHandler(125, new ComIF(), *CookieIF);
static GpioIF gpioIF = new GpioIF(220);
new LightHandler(124, gpioIF);
}