a lot of internal include replacements
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
#include "AsciiConverter.h"
|
||||
#include "fsfw/globalfunctions/AsciiConverter.h"
|
||||
|
||||
#include <limits>
|
||||
#include <cmath>
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "CRC.h"
|
||||
#include "fsfw/globalfunctions/CRC.h"
|
||||
#include <math.h>
|
||||
|
||||
const uint16_t CRC::crc16ccitt_table[256] = {
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../globalfunctions/DleEncoder.h"
|
||||
#include "fsfw/globalfunctions/DleEncoder.h"
|
||||
|
||||
DleEncoder::DleEncoder() {}
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "PeriodicOperationDivider.h"
|
||||
#include "fsfw/globalfunctions/PeriodicOperationDivider.h"
|
||||
|
||||
|
||||
PeriodicOperationDivider::PeriodicOperationDivider(uint32_t divider,
|
||||
|
@ -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) {
|
||||
|
@ -1,5 +1,6 @@
|
||||
#include "arrayprinter.h"
|
||||
#include "../serviceinterface/ServiceInterface.h"
|
||||
#include "fsfw/globalfunctions/arrayprinter.h"
|
||||
#include "fsfw/serviceinterface/ServiceInterface.h"
|
||||
|
||||
#include <bitset>
|
||||
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "bitutility.h"
|
||||
#include "fsfw/globalfunctions/bitutility.h"
|
||||
|
||||
void bitutil::bitSet(uint8_t *byte, uint8_t position) {
|
||||
if(position > 7) {
|
||||
|
@ -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>
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user