fsfw/globalfunctions/printer.h

13 lines
244 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 {
void print(uint8_t *data, size_t size);
}
#endif /* FRAMEWORK_GLOBALFUNCTIONS_PRINTER_H_ */