fsfw/globalfunctions/printer.h

20 lines
512 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 19:52:35 +02:00
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);
2020-05-15 18:47:46 +02:00
}
2020-05-11 12:22:06 +02:00
#endif /* FRAMEWORK_GLOBALFUNCTIONS_PRINTER_H_ */