Renamed

Dependencies:   mbed

bin_file.h

Committer:
ffxx68
Date:
2022-02-21
Revision:
2:dff96be9617e
Parent:
1:9289febf4ae9
Child:
5:062962db7a48

File content as of revision 2:dff96be9617e:

#ifndef BIN_FILE_SIZE
#define BIN_FILE_SIZE  40 // need to set manually (does NOT include closing 0xFF)
char bin_file_name[] = "HELLO";
// Byte stream from file generated with BAS2IMG (PocketTools)
char bin_file_bytes[] =
{ 
0x00, 0x01, 0x0D, 0xD7, 0x48, 0x65, 0x6C, 0x6C, 
0x6F, 0x20, 0x57, 0x6F, 0x72, 0x6C, 0x64, 0x0D, 
0x00, 0x0A, 0x10, 0xDE, 0x22, 0x48, 0x65, 0x6C, 
0x6C, 0x6F, 0x20, 0x57, 0x6F, 0x72, 0x6C, 0x64, 
0x21, 0x22, 0x0D, 0x00, 0x14, 0x02, 0xD8, 0x0D,
0xFF // BAS_NEW_EOF
};
#endif