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.
charactercode.h@0:226550611f0d, 2016-12-12 (annotated)
- Committer:
- Stephen_NewVistas
- Date:
- Mon Dec 12 23:06:58 2016 +0000
- Revision:
- 0:226550611f0d
Got system working on bus, calling registered functions with ACK/NACK/RESPONSE. Need to clean up.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Stephen_NewVistas | 0:226550611f0d | 1 | #ifndef CHARACTERCODE_H |
Stephen_NewVistas | 0:226550611f0d | 2 | #define CHARACTERCODE_H |
Stephen_NewVistas | 0:226550611f0d | 3 | |
Stephen_NewVistas | 0:226550611f0d | 4 | #define STARTPACKET 0x7F |
Stephen_NewVistas | 0:226550611f0d | 5 | #define STARTPOLL 0x8F |
Stephen_NewVistas | 0:226550611f0d | 6 | #define FLAGBYTE 0x8E |
Stephen_NewVistas | 0:226550611f0d | 7 | #define NAKCHAR 0x8C |
Stephen_NewVistas | 0:226550611f0d | 8 | #define ACKCHAR 0x8D |
Stephen_NewVistas | 0:226550611f0d | 9 | |
Stephen_NewVistas | 0:226550611f0d | 10 | #define STX 0x55 |
Stephen_NewVistas | 0:226550611f0d | 11 | #define ETX 0x04 |
Stephen_NewVistas | 0:226550611f0d | 12 | #define ENQ 0x05 |
Stephen_NewVistas | 0:226550611f0d | 13 | |
Stephen_NewVistas | 0:226550611f0d | 14 | #endif |