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_copy_copy_omdatetkan by
manchester.h@5:a9d2050d7a12, 2018-05-16 (annotated)
- Committer:
- JelleRaes
- Date:
- Wed May 16 08:19:42 2018 +0000
- Revision:
- 5:a9d2050d7a12
- Parent:
- 3:4fad63952e4c
implemented stopcode;
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 | 5:a9d2050d7a12 | 10 | |
| JelleRaes | 5:a9d2050d7a12 | 11 | private: |
| JelleRaes | 0:dad9d23791db | 12 | int getDirection(int*); |
| JelleRaes | 3:4fad63952e4c | 13 | void isTimedOut(); |
| JelleRaes | 5:a9d2050d7a12 | 14 | bool getStopCode(int*); |
| JelleRaes | 0:dad9d23791db | 15 | }; |
| JelleRaes | 0:dad9d23791db | 16 | #endif |
