fsfw/src/fsfw/globalfunctions/arrayprinter.h

20 lines
640 B
C
Raw Normal View History

2020-06-05 16:44:00 +02:00
#ifndef FRAMEWORK_GLOBALFUNCTIONS_ARRAYPRINTER_H_
#define FRAMEWORK_GLOBALFUNCTIONS_ARRAYPRINTER_H_
2021-01-15 16:32:25 +01:00
2020-05-11 12:22:06 +02:00
#include <cstddef>
2022-02-02 10:29:30 +01:00
#include <cstdint>
2020-05-11 12:22:06 +02:00
2022-02-02 10:29:30 +01:00
enum class OutputType { DEC, HEX, BIN };
2020-05-11 12:22:06 +02:00
2020-06-05 16:44:00 +02:00
namespace arrayprinter {
2021-01-15 16:32:25 +01:00
2020-05-19 20:26:12 +02:00
void print(const uint8_t* data, size_t size, OutputType type = OutputType::HEX,
2022-02-02 10:29:30 +01:00
bool printInfo = true, size_t maxCharPerLine = 10);
2021-01-15 18:07:32 +01:00
void printHex(const uint8_t* data, size_t size, size_t maxCharPerLine = 10);
void printDec(const uint8_t* data, size_t size, size_t maxCharPerLine = 10);
2020-05-19 23:08:17 +02:00
void printBin(const uint8_t* data, size_t size);
2021-01-15 16:32:25 +01:00
2022-02-02 10:29:30 +01:00
} // namespace arrayprinter
2020-05-11 12:22:06 +02:00
2020-06-05 16:44:00 +02:00
#endif /* FRAMEWORK_GLOBALFUNCTIONS_ARRAYPRINTER_H_ */