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,4 +1,5 @@
#include "AsciiConverter.h"
#include "fsfw/globalfunctions/AsciiConverter.h"
#include <limits>
#include <cmath>

View File

@ -1,4 +1,4 @@
#include "CRC.h"
#include "fsfw/globalfunctions/CRC.h"
#include <math.h>
const uint16_t CRC::crc16ccitt_table[256] = {

View File

@ -1,4 +1,4 @@
#include "../globalfunctions/DleEncoder.h"
#include "fsfw/globalfunctions/DleEncoder.h"
DleEncoder::DleEncoder() {}

View File

@ -1,4 +1,4 @@
#include "PeriodicOperationDivider.h"
#include "fsfw/globalfunctions/PeriodicOperationDivider.h"
PeriodicOperationDivider::PeriodicOperationDivider(uint32_t divider,

View File

@ -1,5 +1,5 @@
#include "Type.h"
#include "../serialize/SerializeAdapter.h"
#include "fsfw/globalfunctions/Type.h"
#include "fsfw/serialize/SerializeAdapter.h"
Type::Type() :
actualType(UNKNOWN_TYPE) {

View File

@ -1,5 +1,6 @@
#include "arrayprinter.h"
#include "../serviceinterface/ServiceInterface.h"
#include "fsfw/globalfunctions/arrayprinter.h"
#include "fsfw/serviceinterface/ServiceInterface.h"
#include <bitset>

View File

@ -1,4 +1,4 @@
#include "bitutility.h"
#include "fsfw/globalfunctions/bitutility.h"
void bitutil::bitSet(uint8_t *byte, uint8_t position) {
if(position > 7) {

View File

@ -1,5 +1,5 @@
#include "QuaternionOperations.h"
#include "VectorOperations.h"
#include "fsfw/globalfunctions/math/QuaternionOperations.h"
#include "fsfw/globalfunctions/math/VectorOperations.h"
#include <cmath>
#include <cstring>

View File

@ -1,4 +1,4 @@
#include "timevalOperations.h"
#include "fsfw/globalfunctions/timevalOperations.h"
timeval& operator+=(timeval& lhs, const timeval& rhs) {
int64_t sum = lhs.tv_sec * 1000000. + lhs.tv_usec;