Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
radio.h
- Committer:
- Cheroukee
- Date:
- 2017-10-11
- Revision:
- 1:5fc0c0996264
- Parent:
- 0:5999fed1929b
- Child:
- 2:fdb34827d964
File content as of revision 1:5fc0c0996264:
#define HEADER_DELIMITER 0b01010101 #define HEADER_START 0b11111110 #define FOOTER_END 0b11111110 #define MAX_MESSAGE_LENGTH 80 typedef byte char; typedef struct { byte preambule; byte start; byte options; byte length; byte[MAX_MESSAGE_LENGTH] data; byte control; byte end; } radio_message_t; // Private // API