1
0
forked from fsfw/fsfw

cleaned up a bit

This commit is contained in:
2021-06-14 10:19:01 +02:00
parent dadba69272
commit 56d2af9d25
49 changed files with 173 additions and 196 deletions

View File

@ -0,0 +1,20 @@
#include "TcPacketBase.h"
#include "../../../globalfunctions/CRC.h"
#include "../../../globalfunctions/arrayprinter.h"
#include "../../../serviceinterface/ServiceInterface.h"
#include <cstring>
TcPacketBase::TcPacketBase(const uint8_t* setData): SpacePacketBase(setData) {}
TcPacketBase::~TcPacketBase() {}
void TcPacketBase::print() {
#if FSFW_CPP_OSTREAM_ENABLED == 1
sif::info << "TcPacketBase::print:" << std::endl;
#else
sif::printInfo("TcPacketBase::print:\n");
#endif
arrayprinter::print(getWholeData(), getFullSize());
}