1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/blob/blob_module/blob.c

13 lines
231 B
C

#include "fmt.h"
#include "blob/blobtest.bin.h"
void blobtest_bin_print(void)
{
for (size_t n = 0; n < blobtest_bin_len; n++) {
print("0x", 2);
print_byte_hex(blobtest_bin[n]);
print("\n", 1);
}
}