EIVE FSFW Update #430

Merged
meierj merged 51 commits from eive/fsfw:eive/develop into development 2021-06-12 15:44:32 +02:00
1 changed files with 9 additions and 0 deletions
Showing only changes of commit 92f249dc62 - Show all commits

View File

@ -5,6 +5,15 @@
void arrayprinter::print(const uint8_t *data, size_t size, OutputType type,
bool printInfo, size_t maxCharPerLine) {
if(size == 0) {
#if FSFW_CPP_OSTREAM_ENABLED == 1
sif::info << "Size is zero, nothing to print" << std::endl;
#else
sif::printInfo("Size is zero, nothing to print\n");
#endif
return;
}
#if FSFW_CPP_OSTREAM_ENABLED == 1
if(printInfo) {
sif::info << "Printing data with size " << size << ": " << std::endl;