Jelle Raes / Mbed 2 deprecated VLC_decoder_finished

Dependencies:   mbed

Fork of VLC_decoder_copy_copy_omdatetkan by Jelle Raes

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers manchester.h Source File

manchester.h

00001 #ifndef MANCHESTER_H
00002 #define MANCHESTER_H
00003 
00004 #define DELAY 80
00005 class manchester
00006 {
00007 public:
00008     manchester(void);
00009     int decode();
00010     
00011 private:
00012     int getDirection(int*);
00013     void isTimedOut();
00014     bool getStopCode(int*);
00015 };
00016 #endif