From 935f49094f2f87415b6d59307f87db72e51a60ac Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Sun, 26 Mar 2023 16:58:05 +0200 Subject: [PATCH] fix host build as well --- bsp_hosted/ObjectFactory.cpp | 10 +++++----- bsp_hosted/scheduling.cpp | 2 +- unittest/controller/testThermalController.cpp | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bsp_hosted/ObjectFactory.cpp b/bsp_hosted/ObjectFactory.cpp index eb633339..b49bbf61 100644 --- a/bsp_hosted/ObjectFactory.cpp +++ b/bsp_hosted/ObjectFactory.cpp @@ -4,7 +4,7 @@ #include #include #include -#include +#include #include #include @@ -37,10 +37,10 @@ #include "devices/gpioIds.h" #include "fsfw_hal/linux/gpio/Gpio.h" -#include "linux/devices/ploc/PlocMPSoCHandler.h" -#include "linux/devices/ploc/PlocMPSoCHelper.h" -#include "linux/devices/ploc/PlocSupervisorHandler.h" -#include "linux/devices/ploc/PlocSupvUartMan.h" +#include "linux/payload/PlocMpsocHandler.h" +#include "linux/payload/PlocMpsocHelper.h" +#include "linux/payload/PlocSupervisorHandler.h" +#include "linux/payload/PlocSupvUartMan.h" #include "test/gpio/DummyGpioIF.h" #endif diff --git a/bsp_hosted/scheduling.cpp b/bsp_hosted/scheduling.cpp index 9f859b6c..350b706d 100644 --- a/bsp_hosted/scheduling.cpp +++ b/bsp_hosted/scheduling.cpp @@ -14,7 +14,7 @@ #include "OBSWConfig.h" #include "ObjectFactory.h" -#include "mission/core/scheduling.h" +#include "mission/scheduling.h" #include "scheduling.h" #ifdef LINUX diff --git a/unittest/controller/testThermalController.cpp b/unittest/controller/testThermalController.cpp index 0772018e..85e81a71 100644 --- a/unittest/controller/testThermalController.cpp +++ b/unittest/controller/testThermalController.cpp @@ -9,7 +9,7 @@ #include "../testEnvironment.h" #include "dummies/TemperatureSensorInserter.h" -#include "mission/core/GenericFactory.h" +#include "mission/genericFactory.h" #include "test/gpio/DummyGpioIF.h" TEST_CASE("Thermal Controller", "[ThermalController]") {