1
0
forked from fsfw/fsfw

Relative Paths

This commit is contained in:
2020-08-13 20:53:35 +02:00
parent e535bc1427
commit d5dedce294
384 changed files with 2477 additions and 2477 deletions

View File

@ -1,5 +1,5 @@
#include "AbstractTemperatureSensor.h"
#include <framework/ipc/QueueFactory.h>
#include "../ipc/QueueFactory.h"
AbstractTemperatureSensor::AbstractTemperatureSensor(object_id_t setObjectid,
ThermalModuleIF *thermalModule) :

View File

@ -1,12 +1,12 @@
#ifndef ABSTRACTSENSOR_H_
#define ABSTRACTSENSOR_H_
#include <framework/health/HasHealthIF.h>
#include <framework/health/HealthHelper.h>
#include <framework/objectmanager/SystemObject.h>
#include <framework/tasks/ExecutableObjectIF.h>
#include <framework/parameters/ParameterHelper.h>
#include <framework/ipc/MessageQueueIF.h>
#include "../health/HasHealthIF.h"
#include "../health/HealthHelper.h"
#include "../objectmanager/SystemObject.h"
#include "../tasks/ExecutableObjectIF.h"
#include "../parameters/ParameterHelper.h"
#include "../ipc/MessageQueueIF.h"
#include "ThermalModuleIF.h"
#include "tcsDefinitions.h"

View File

@ -1,12 +1,12 @@
#ifndef MISSION_CONTROLLERS_TCS_CORECOMPONENT_H_
#define MISSION_CONTROLLERS_TCS_CORECOMPONENT_H_
#include <framework/datapool/DataSet.h>
#include <framework/datapool/PoolVariable.h>
#include <framework/thermal/ThermalComponentIF.h>
#include <framework/thermal/AbstractTemperatureSensor.h>
#include <framework/thermal/ThermalModule.h>
#include <framework/thermal/ThermalMonitor.h>
#include "../datapool/DataSet.h"
#include "../datapool/PoolVariable.h"
#include "ThermalComponentIF.h"
#include "AbstractTemperatureSensor.h"
#include "ThermalModule.h"
#include "ThermalMonitor.h"
class CoreComponent: public ThermalComponentIF {
public:

View File

@ -1,8 +1,8 @@
#include <framework/devicehandlers/DeviceHandlerFailureIsolation.h>
#include "../devicehandlers/DeviceHandlerFailureIsolation.h"
#include "Heater.h"
#include <framework/power/Fuse.h>
#include <framework/ipc/QueueFactory.h>
#include "../power/Fuse.h"
#include "../ipc/QueueFactory.h"
Heater::Heater(uint32_t objectId, uint8_t switch0, uint8_t switch1) :
HealthDevice(objectId, 0), internalState(STATE_OFF), powerSwitcher(

View File

@ -1,11 +1,11 @@
#ifndef FRAMEWORK_THERMAL_HEATER_H_
#define FRAMEWORK_THERMAL_HEATER_H_
#include <framework/devicehandlers/HealthDevice.h>
#include <framework/parameters/ParameterHelper.h>
#include <framework/power/PowerSwitchIF.h>
#include <framework/returnvalues/HasReturnvaluesIF.h>
#include <framework/timemanager/Countdown.h>
#include "../devicehandlers/HealthDevice.h"
#include "../parameters/ParameterHelper.h"
#include "../power/PowerSwitchIF.h"
#include "../returnvalues/HasReturnvaluesIF.h"
#include "../timemanager/Countdown.h"
#include <stdint.h>
//class RedundantHeater;

View File

@ -1,7 +1,7 @@
#ifndef REDUNDANTHEATER_H_
#define REDUNDANTHEATER_H_
#include <framework/thermal/Heater.h>
#include "Heater.h"
class RedundantHeater {
public:

View File

@ -1,9 +1,9 @@
#ifndef TEMPERATURESENSOR_H_
#define TEMPERATURESENSOR_H_
#include <framework/datapool/DataSet.h>
#include "../datapool/DataSet.h"
#include "AbstractTemperatureSensor.h"
#include <framework/monitoring/LimitMonitor.h>
#include "../monitoring/LimitMonitor.h"
template<typename T>
class TemperatureSensor: public AbstractTemperatureSensor {

View File

@ -1,10 +1,10 @@
#ifndef THERMALCOMPONENTIF_H_
#define THERMALCOMPONENTIF_H_
#include <framework/events/Event.h>
#include <framework/parameters/HasParametersIF.h>
#include <framework/returnvalues/HasReturnvaluesIF.h>
#include <framework/objectmanager/SystemObjectIF.h>
#include "../events/Event.h"
#include "../parameters/HasParametersIF.h"
#include "../returnvalues/HasReturnvaluesIF.h"
#include "../objectmanager/SystemObjectIF.h"
class ThermalComponentIF : public HasParametersIF {
public:

View File

@ -1,5 +1,5 @@
#include <framework/monitoring/LimitViolationReporter.h>
#include <framework/monitoring/MonitoringMessageContent.h>
#include "../monitoring/LimitViolationReporter.h"
#include "../monitoring/MonitoringMessageContent.h"
#include "ThermalModule.h"
#include "AbstractTemperatureSensor.h"

View File

@ -1,10 +1,10 @@
#ifndef THERMALMODULE_H_
#define THERMALMODULE_H_
#include <framework/datapool/DataSet.h>
#include <framework/datapool/PoolVariable.h>
#include <framework/devicehandlers/HealthDevice.h>
#include <framework/events/EventReportingProxyIF.h>
#include "../datapool/DataSet.h"
#include "../datapool/PoolVariable.h"
#include "../devicehandlers/HealthDevice.h"
#include "../events/EventReportingProxyIF.h"
#include "ThermalModuleIF.h"
#include <list>
#include "tcsDefinitions.h"

View File

@ -1,6 +1,6 @@
#include <framework/thermal/ThermalMonitor.h>
#include <framework/thermal/ThermalComponentIF.h>
#include <framework/monitoring/MonitoringIF.h>
#include "ThermalMonitor.h"
#include "ThermalComponentIF.h"
#include "../monitoring/MonitoringIF.h"
ThermalMonitor::~ThermalMonitor() {
}

View File

@ -1,8 +1,8 @@
#ifndef FRAMEWORK_THERMAL_THERMALMONITOR_H_
#define FRAMEWORK_THERMAL_THERMALMONITOR_H_
#include <framework/monitoring/MonitorReporter.h>
#include <framework/thermal/ThermalComponentIF.h>
#include "../monitoring/MonitorReporter.h"
#include "ThermalComponentIF.h"
class ThermalMonitor: public MonitorReporter<float> {
public: