include improvements
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
EIVE/eive-obsw/pipeline/head This commit looks good

This commit is contained in:
Robin Müller 2022-04-19 17:24:04 +02:00
parent 23730349b0
commit 850722eae5
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
5 changed files with 5 additions and 5 deletions

View File

@ -8,7 +8,7 @@
#include "fsfw/serviceinterface/ServiceInterface.h" #include "fsfw/serviceinterface/ServiceInterface.h"
#include "fsfw/timemanager/Stopwatch.h" #include "fsfw/timemanager/Stopwatch.h"
#include "fsfw/version.h" #include "fsfw/version.h"
#include "watchdogConf.h" #include "watchdog/definitions.h"
#if OBSW_USE_TMTC_TCP_BRIDGE == 0 #if OBSW_USE_TMTC_TCP_BRIDGE == 0
#include "fsfw/osal/common/UdpTmTcBridge.h" #include "fsfw/osal/common/UdpTmTcBridge.h"
#else #else

View File

@ -8,7 +8,7 @@
#include "OBSWVersion.h" #include "OBSWVersion.h"
#include "fsfw/tasks/TaskFactory.h" #include "fsfw/tasks/TaskFactory.h"
#include "fsfw/version.h" #include "fsfw/version.h"
#include "watchdogConf.h" #include "watchdog/definitions.h"
static int OBSW_ALREADY_RUNNING = -2; static int OBSW_ALREADY_RUNNING = -2;

View File

@ -1,5 +1,5 @@
#include "Watchdog.h" #include "Watchdog.h"
#include "watchdogConf.h" #include "definitions.h"
#include <errno.h> #include <errno.h>
#include <sys/types.h> #include <sys/types.h>

View File

@ -1,6 +1,8 @@
#ifndef WATCHDOG_DEFINITIONS_H_ #ifndef WATCHDOG_DEFINITIONS_H_
#define WATCHDOG_DEFINITIONS_H_ #define WATCHDOG_DEFINITIONS_H_
#include <watchdogConf.h>
namespace watchdog { namespace watchdog {
// Suspend watchdog operations temporarily // Suspend watchdog operations temporarily

View File

@ -1,8 +1,6 @@
#include <cstdint> #include <cstdint>
#include <string> #include <string>
#include "watchdog/definitions.h"
#define WATCHDOG_VERBOSE_LEVEL 1 #define WATCHDOG_VERBOSE_LEVEL 1
/** /**
* This flag instructs the watchdog to create a special file in /tmp if the OBSW is running * This flag instructs the watchdog to create a special file in /tmp if the OBSW is running