fsfw/globalfunctions/arrayprinter.h

21 lines
604 B
C
Raw Normal View History

2020-06-05 16:44:00 +02:00
#ifndef FRAMEWORK_GLOBALFUNCTIONS_ARRAYPRINTER_H_
#define FRAMEWORK_GLOBALFUNCTIONS_ARRAYPRINTER_H_
2020-05-11 12:22:06 +02:00
#include <cstdint>
#include <cstddef>
2020-05-15 18:47:46 +02:00
enum class OutputType {
DEC,
2020-05-19 23:08:17 +02:00
HEX,
BIN
2020-05-15 18:47:46 +02:00
};
2020-05-11 12:22:06 +02:00
2020-06-05 16:44:00 +02:00
namespace arrayprinter {
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-19 23:08:17 +02:00
void printBin(const uint8_t* data, size_t size);
2020-05-15 18:47:46 +02:00
}
2020-05-11 12:22:06 +02:00
2020-06-05 16:44:00 +02:00
#endif /* FRAMEWORK_GLOBALFUNCTIONS_ARRAYPRINTER_H_ */