a lot of internal include replacements

This commit is contained in:
2021-07-13 20:22:54 +02:00
parent ca297a7dcd
commit 936d0e9f0c
163 changed files with 558 additions and 563 deletions

View File

@ -1,5 +1,6 @@
#include "CCSDSTime.h"
#include <FSFWConfig.h>
#include "fsfw/FSFW.h"
#include "fsfw/timemanager/CCSDSTime.h"
#include <cstdio>
#include <cinttypes>
#include <cmath>

View File

@ -1,5 +1,5 @@
#include "Clock.h"
#include "../ipc/MutexGuard.h"
#include "fsfw/timemanager/Clock.h"
#include "fsfw/ipc/MutexGuard.h"
ReturnValue_t Clock::convertUTCToTT(timeval utc, timeval *tt) {
uint16_t leapSeconds;

View File

@ -1,4 +1,4 @@
#include "Countdown.h"
#include "fsfw/timemanager/Countdown.h"
Countdown::Countdown(uint32_t initialTimeout): timeout(initialTimeout) {
}

View File

@ -1,5 +1,5 @@
#include "Stopwatch.h"
#include "../serviceinterface/ServiceInterface.h"
#include "fsfw/timemanager/Stopwatch.h"
#include "fsfw/serviceinterface/ServiceInterface.h"
#if FSFW_CPP_OSTREAM_ENABLED == 1
#include <iomanip>