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.
Fork of VLC_decoder_with_timeout by
manchester.h@3:4fad63952e4c, 2018-05-15 (annotated)
- Committer:
- JelleRaes
- Date:
- Tue May 15 08:05:16 2018 +0000
- Revision:
- 3:4fad63952e4c
- Parent:
- 1:b89430efe68e
- Child:
- 5:a9d2050d7a12
test
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
JelleRaes | 0:dad9d23791db | 1 | #ifndef MANCHESTER_H |
JelleRaes | 0:dad9d23791db | 2 | #define MANCHESTER_H |
JelleRaes | 0:dad9d23791db | 3 | |
JelleRaes | 0:dad9d23791db | 4 | #define DELAY 80 |
JelleRaes | 0:dad9d23791db | 5 | class manchester |
JelleRaes | 0:dad9d23791db | 6 | { |
JelleRaes | 0:dad9d23791db | 7 | public: |
JelleRaes | 0:dad9d23791db | 8 | manchester(void); |
JelleRaes | 0:dad9d23791db | 9 | int decode(); |
JelleRaes | 0:dad9d23791db | 10 | int getDirection(int*); |
JelleRaes | 1:b89430efe68e | 11 | bool vlcDetected(); |
JelleRaes | 3:4fad63952e4c | 12 | void isTimedOut(); |
JelleRaes | 3:4fad63952e4c | 13 | void printetwuk(); |
JelleRaes | 0:dad9d23791db | 14 | }; |
JelleRaes | 0:dad9d23791db | 15 | #endif |