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 {
2020-05-15 18:47:46 +02:00
enum class OutputType {
DEC,
HEX
};
2020-05-11 12:22:06 +02:00
2020-05-19 20:26:12 +02:00
void print(const uint8_t* data, size_t size, OutputType type = OutputType::HEX,
2020-05-19 19:52:35 +02:00
bool printInfo = true, size_t maxCharPerLine = 12);
2020-05-19 20:26:12 +02:00
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-15 18:47:46 +02:00
}
2020-05-11 12:22:06 +02:00
#endif /* FRAMEWORK_GLOBALFUNCTIONS_PRINTER_H_ */