1
0
forked from fsfw/fsfw

printer improvements and fixes

tc packet stored getter function
This commit is contained in:
2020-05-19 20:24:58 +02:00
parent e2418d61a6
commit 1aef000eff
4 changed files with 23 additions and 8 deletions

View File

@ -10,10 +10,10 @@ enum class OutputType {
HEX
};
void print(uint8_t* data, size_t size, OutputType type = OutputType::HEX,
void print(const uint8_t* data, size_t size, OutputType type = OutputType::HEX,
bool printInfo = true, size_t maxCharPerLine = 12);
void printHex(uint8_t* data, size_t size, size_t maxCharPerLine = 12);
void printDec(uint8_t* data, size_t size, size_t maxCharPerLine = 12);
void printHex(const uint8_t* data, size_t size, size_t maxCharPerLine = 12);
void printDec(const uint8_t* data, size_t size, size_t maxCharPerLine = 12);
}
#endif /* FRAMEWORK_GLOBALFUNCTIONS_PRINTER_H_ */