From 5fadb8f86de9fadf3a6563a1f64be8c5cd8ffcdb Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 14 Dec 2021 17:35:21 +0100 Subject: [PATCH] moved heater handler --- bsp_hosted/fsfwconfig/devices/gpioIds.h | 2 -- .../fsfwconfig => common/config}/devices/heaterSwitcherList.h | 0 linux/devices/CMakeLists.txt | 1 - mission/devices/CMakeLists.txt | 1 + {linux => mission}/devices/HeaterHandler.cpp | 0 {linux => mission}/devices/HeaterHandler.h | 0 6 files changed, 1 insertion(+), 3 deletions(-) rename {linux/fsfwconfig => common/config}/devices/heaterSwitcherList.h (100%) rename {linux => mission}/devices/HeaterHandler.cpp (100%) rename {linux => mission}/devices/HeaterHandler.h (100%) diff --git a/bsp_hosted/fsfwconfig/devices/gpioIds.h b/bsp_hosted/fsfwconfig/devices/gpioIds.h index 1ab55d08..a4b4ac81 100644 --- a/bsp_hosted/fsfwconfig/devices/gpioIds.h +++ b/bsp_hosted/fsfwconfig/devices/gpioIds.h @@ -1,8 +1,6 @@ #ifndef FSFWCONFIG_DEVICES_GPIOIDS_H_ #define FSFWCONFIG_DEVICES_GPIOIDS_H_ -#include - namespace gpioIds { enum gpioId_t { HEATER_0, diff --git a/linux/fsfwconfig/devices/heaterSwitcherList.h b/common/config/devices/heaterSwitcherList.h similarity index 100% rename from linux/fsfwconfig/devices/heaterSwitcherList.h rename to common/config/devices/heaterSwitcherList.h diff --git a/linux/devices/CMakeLists.txt b/linux/devices/CMakeLists.txt index 6c529d8e..bf0a556e 100644 --- a/linux/devices/CMakeLists.txt +++ b/linux/devices/CMakeLists.txt @@ -1,5 +1,4 @@ target_sources(${TARGET_NAME} PRIVATE - HeaterHandler.cpp SolarArrayDeploymentHandler.cpp SusHandler.cpp StarTrackerHandler.cpp diff --git a/mission/devices/CMakeLists.txt b/mission/devices/CMakeLists.txt index cbfbe4a5..ed811ed3 100644 --- a/mission/devices/CMakeLists.txt +++ b/mission/devices/CMakeLists.txt @@ -10,6 +10,7 @@ target_sources(${TARGET_NAME} PUBLIC SyrlinksHkHandler.cpp Max31865PT1000Handler.cpp IMTQHandler.cpp + HeaterHandler.cpp PlocMPSoCHandler.cpp RadiationSensorHandler.cpp GyroADIS1650XHandler.cpp diff --git a/linux/devices/HeaterHandler.cpp b/mission/devices/HeaterHandler.cpp similarity index 100% rename from linux/devices/HeaterHandler.cpp rename to mission/devices/HeaterHandler.cpp diff --git a/linux/devices/HeaterHandler.h b/mission/devices/HeaterHandler.h similarity index 100% rename from linux/devices/HeaterHandler.h rename to mission/devices/HeaterHandler.h