1
0
forked from fsfw/fsfw

added stdio pinters

This commit is contained in:
2021-01-03 01:02:07 +01:00
parent 7759b19961
commit b30405fee7
4 changed files with 149 additions and 3 deletions

View File

@ -2,6 +2,7 @@
#define FRAMEWORK_SERVICEINTERFACE_SERVICEINTERFACEBUFFER_H_
#include "../returnvalues/HasReturnvaluesIF.h"
#include <FSFWConfig.h>
#include <iostream>
#include <sstream>
#include <iomanip>
@ -54,7 +55,7 @@ private:
bool errStream;
//! Needed for buffered mode.
static size_t const BUF_SIZE = 128;
static size_t const BUF_SIZE = fsfwconfig::FSFW_PRINT_BUFFER_SIZE;
char buf[BUF_SIZE];
//! In this function, the characters are parsed.