Renamed

Dependencies:   mbed

Committer:
ffxx68
Date:
Tue Feb 15 15:37:06 2022 +0000
Revision:
0:07819bc70660
Child:
1:9289febf4ae9
Communication with a Sharp PC (a Pocket Computer from the '80s)

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ffxx68 0:07819bc70660 1 #ifndef BIN_FILE_SIZE
ffxx68 0:07819bc70660 2 #define BIN_FILE_SIZE 40 // need to set manually
ffxx68 0:07819bc70660 3 char bin_file_name[] = "HELLO";
ffxx68 0:07819bc70660 4 // Byte stream from file generated with BAS2IMG (PocketTools)
ffxx68 0:07819bc70660 5 char bin_file_bytes[] =
ffxx68 0:07819bc70660 6 {
ffxx68 0:07819bc70660 7 0x00, 0x01, 0x0D, 0xD7, 0x48, 0x65, 0x6C, 0x6C, 0x6F, 0x20, 0x57, 0x6F, 0x72, 0x6C, 0x64, 0x0D,
ffxx68 0:07819bc70660 8 0x00, 0x0A, 0x10, 0xDE, 0x22, 0x48, 0x65, 0x6C, 0x6C, 0x6F, 0x20, 0x57, 0x6F, 0x72, 0x6C, 0x64,
ffxx68 0:07819bc70660 9 0x21, 0x22, 0x0D, 0x00, 0x14, 0x02, 0xD8, 0x0D,
ffxx68 0:07819bc70660 10 26 // EOF ??
ffxx68 0:07819bc70660 11 };
ffxx68 0:07819bc70660 12 #endif