fsfw/globalfunctions/printer.h

20 lines
530 B
C
Raw Normal View History

2020-05-11 12:22:06 +02:00
#ifndef FRAMEWORK_GLOBALFUNCTIONS_PRINTER_H_
#define FRAMEWORK_GLOBALFUNCTIONS_PRINTER_H_
#include <cstdint>
#include <cstddef>
namespace printer {
enum class OutputType {
DEC,
HEX
};
2020-05-11 12:22:06 +02:00
void print(const uint8_t* data, size_t size, OutputType type = OutputType::HEX,
2020-05-19 19:53:10 +02:00
bool printInfo = true, 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);
}
2020-05-11 12:22:06 +02:00
#endif /* FRAMEWORK_GLOBALFUNCTIONS_PRINTER_H_ */