Learning how Device Handlers do not work (yet)

This commit is contained in:
Paul Nehlich
2023-10-19 07:26:44 +02:00
parent 96de564b2b
commit fa432e50a3
5 changed files with 71 additions and 4 deletions

View File

@ -7,6 +7,8 @@
#include <mission/controller/PrintController.h>
#include <mission/controller/BlinkController.h>
#include <mission/devices/LightHandler.h>
#include "fsfw/events/EventManager.h"
#include "fsfw/health/HealthTable.h"
#include "fsfw/internalerror/InternalErrorReporter.h"
@ -63,4 +65,7 @@ void ObjectFactory::produce(void *args) {
new PrintController(123);
new BlinkController(124);
new LightHandler(125, new ComIF(), *CookieIF);
}