Radio Structures in OOP

Dependencies:   mbed mbed-rtos

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers USBLink.h Source File

USBLink.h

00001 #if 0
00002 
00003 #ifndef USB_LINK_H
00004 #define USB_LINK_H
00005 
00006 #include "mbed.h"
00007 #include "CommLink.h"
00008 #include "cmsis_os.h"
00009 #include "RTP.h"
00010 #include "ThreadHelper.h"
00011 
00012 class USBLink : public CommLink
00013 {
00014 public:
00015     USBLink();
00016     virtual ~USBLink();
00017 
00018     virtual uint32_t sendPacket(RTP_t*);
00019     virtual uint32_t receivePacket(RTP_t*);
00020     virtual uint32_t reset(void);
00021     virtual uint32_t selfTest(void);
00022     virtual bool isConnected(void);
00023 
00024 protected:
00025 
00026 
00027 private:
00028 
00029 
00030 };
00031 
00032 #endif  // USB_LINK_H
00033 
00034 #endif