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 by
Diff: manchester.cpp
- Revision:
- 1:b89430efe68e
- Parent:
- 0:dad9d23791db
- Child:
- 2:487a58ce256c
diff -r dad9d23791db -r b89430efe68e manchester.cpp --- a/manchester.cpp Wed May 09 15:09:57 2018 +0000 +++ b/manchester.cpp Mon May 14 09:18:22 2018 +0000 @@ -91,3 +91,12 @@ } return direction; } +bool manchester::vlcDetected(){ + int i = 0; + while(i<DELAY){ + if(signal.read() != 0){ + i = 0; + } + wait_us(100) + } +}