BLE demo for mbed Ported RunningElectronics's SBDBT firmware for BLE. It can communicate with iOS

Dependencies:   FatFileSystem mbed

Fork of BTstack by Norimasa Okamoto

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers UsbBaseClass.h Source File

UsbBaseClass.h

00001 #ifndef _USB_BASE_CLASS_H_
00002 #define _USB_BASE_CLASS_H_
00003 #include "UsbHostMgr.h"
00004 
00005 class UsbBaseClass {
00006 public:
00007     UsbBaseClass();
00008 protected:
00009     UsbErr Usb_poll(int timeout = 15000, int timeout2 = 2000);
00010     static UsbHostMgr* m_pHost;
00011 };
00012 
00013 #endif //_USB_BASE_CLASS_H_