improved printer

This commit is contained in:
Robin Müller 2020-05-19 19:52:35 +02:00
parent d6cc089261
commit 5482b71b3c
2 changed files with 21 additions and 10 deletions

View File

@ -1,36 +1,46 @@
#include <framework/globalfunctions/printer.h>
#include <framework/serviceinterface/ServiceInterfaceStream.h>
void printer::print(uint8_t *data, size_t size, OutputType type) {
sif::info << "Printing data with size " << size << ": [";
void printer::print(uint8_t *data, size_t size, OutputType type, bool printInfo,
size_t maxCharPerLine) {
if(printInfo) {
sif::info << "Printing data with size " << size << ": ";
}
sif::info << "[";
if(type == OutputType::HEX) {
printer::printHex(data, size);
printer::printHex(data, size, maxCharPerLine);
}
else {
printer::printDec(data, size);
printer::printDec(data, size, maxCharPerLine);
}
}
void printer::printHex(uint8_t *data, size_t size) {
void printer::printHex(uint8_t *data, size_t size, size_t maxCharPerLine) {
sif::info << std::hex;
for(size_t i = 0; i < size; i++) {
sif::info << "0x" << static_cast<int>(data[i]);
if(i < size - 1){
sif::info << " , ";
if(i > 0 and i % maxCharPerLine == 0) {
sif::info << std::endl;
}
}
}
sif::info << std::dec;
sif::info << "]" << std::endl;
}
void printer::printDec(uint8_t *data, size_t size) {
void printer::printDec(uint8_t *data, size_t size, size_t maxCharPerLine) {
sif::info << std::dec;
for(size_t i = 0; i < size; i++) {
sif::info << "0x" << static_cast<int>(data[i]);
if(i < size - 1){
sif::info << " , ";
if(i > 0 and i % maxCharPerLine == 0) {
sif::info << std::endl;
}
}
}
sif::info << "]" << std::endl;
}

View File

@ -10,9 +10,10 @@ enum class OutputType {
HEX
};
void print(uint8_t* data, size_t size, OutputType type = OutputType::HEX);
void printHex(uint8_t* data, size_t size);
void printDec(uint8_t* data, size_t size);
void print(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);
}
#endif /* FRAMEWORK_GLOBALFUNCTIONS_PRINTER_H_ */