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,9 +1,9 @@
#include <framework/monitoring/LimitViolationReporter.h>
#include <framework/monitoring/MonitoringMessageContent.h>
#include <framework/objectmanager/ObjectManagerIF.h>
#include <framework/power/Fuse.h>
#include <framework/serialize/SerialFixedArrayListAdapter.h>
#include <framework/ipc/QueueFactory.h>
#include "../monitoring/LimitViolationReporter.h"
#include "../monitoring/MonitoringMessageContent.h"
#include "../objectmanager/ObjectManagerIF.h"
#include "Fuse.h"
#include "../serialize/SerialFixedArrayListAdapter.h"
#include "../ipc/QueueFactory.h"
object_id_t Fuse::powerSwitchId = 0;

View File

@ -1,14 +1,14 @@
#ifndef FUSE_H_
#define FUSE_H_
#include <framework/datapool/DataSet.h>
#include <framework/datapool/PIDReader.h>
#include <framework/devicehandlers/HealthDevice.h>
#include <framework/monitoring/AbsLimitMonitor.h>
#include <framework/power/PowerComponentIF.h>
#include <framework/power/PowerSwitchIF.h>
#include <framework/returnvalues/HasReturnvaluesIF.h>
#include <framework/parameters/ParameterHelper.h>
#include "../datapool/DataSet.h"
#include "../datapool/PIDReader.h"
#include "../devicehandlers/HealthDevice.h"
#include "../monitoring/AbsLimitMonitor.h"
#include "PowerComponentIF.h"
#include "PowerSwitchIF.h"
#include "../returnvalues/HasReturnvaluesIF.h"
#include "../parameters/ParameterHelper.h"
#include <list>
namespace Factory {

View File

@ -5,7 +5,7 @@
* @author baetz
*/
#include <framework/power/PowerComponent.h>
#include "PowerComponent.h"
PowerComponent::PowerComponent() :
deviceObjectId(0), switchId1(0xFF), switchId2(0xFF), doIHaveTwoSwitches(

View File

@ -1,8 +1,8 @@
#ifndef POWERCOMPONENT_H_
#define POWERCOMPONENT_H_
#include <framework/objectmanager/SystemObjectIF.h>
#include <framework/power/PowerComponentIF.h>
#include "../objectmanager/SystemObjectIF.h"
#include "PowerComponentIF.h"
class PowerComponent: public PowerComponentIF {
public:

View File

@ -1,8 +1,8 @@
#ifndef POWERCOMPONENTIF_H_
#define POWERCOMPONENTIF_H_
#include <framework/serialize/SerializeIF.h>
#include <framework/parameters/HasParametersIF.h>
#include "../serialize/SerializeIF.h"
#include "../parameters/HasParametersIF.h"
class PowerComponentIF : public SerializeIF, public HasParametersIF {
public:

View File

@ -1,5 +1,5 @@
#include <framework/power/PowerSensor.h>
#include <framework/ipc/QueueFactory.h>
#include "PowerSensor.h"
#include "../ipc/QueueFactory.h"
PowerSensor::PowerSensor(object_id_t setId, VariableIds ids,
DefaultLimits limits, SensorEvents events, uint16_t confirmationCount) :

View File

@ -1,14 +1,14 @@
#ifndef POWERSENSOR_H_
#define POWERSENSOR_H_
#include <framework/datapool/DataSet.h>
#include <framework/datapool/PIDReader.h>
#include <framework/datapool/PoolVariable.h>
#include <framework/devicehandlers/HealthDevice.h>
#include <framework/monitoring/LimitMonitor.h>
#include <framework/parameters/ParameterHelper.h>
#include <framework/objectmanager/SystemObject.h>
#include <framework/ipc/MessageQueueIF.h>
#include "../datapool/DataSet.h"
#include "../datapool/PIDReader.h"
#include "../datapool/PoolVariable.h"
#include "../devicehandlers/HealthDevice.h"
#include "../monitoring/LimitMonitor.h"
#include "../parameters/ParameterHelper.h"
#include "../objectmanager/SystemObject.h"
#include "../ipc/MessageQueueIF.h"
class PowerController;

View File

@ -8,8 +8,8 @@
#ifndef POWERSWITCHIF_H_
#define POWERSWITCHIF_H_
#include <framework/events/Event.h>
#include <framework/returnvalues/HasReturnvaluesIF.h>
#include "../events/Event.h"
#include "../returnvalues/HasReturnvaluesIF.h"
/**
* This interface defines a connection to a device that is capable of turning on and off
* switches of devices identified by a switch ID.

View File

@ -1,6 +1,6 @@
#include <framework/objectmanager/ObjectManagerIF.h>
#include <framework/power/PowerSwitcher.h>
#include <framework/serviceinterface/ServiceInterfaceStream.h>
#include "../objectmanager/ObjectManagerIF.h"
#include "PowerSwitcher.h"
#include "../serviceinterface/ServiceInterfaceStream.h"
PowerSwitcher::PowerSwitcher(uint8_t setSwitch1, uint8_t setSwitch2,
PowerSwitcher::State_t setStartState) :

View File

@ -1,8 +1,8 @@
#ifndef POWERSWITCHER_H_
#define POWERSWITCHER_H_
#include <framework/power/PowerSwitchIF.h>
#include <framework/returnvalues/HasReturnvaluesIF.h>
#include <framework/timemanager/Countdown.h>
#include "PowerSwitchIF.h"
#include "../returnvalues/HasReturnvaluesIF.h"
#include "../timemanager/Countdown.h"
class PowerSwitcher : public HasReturnvaluesIF {
public: