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.
Dependencies: FatFileSystem TB6612FNG2 mbed
usb/UsbBaseClass.h@0:de03cbbcd0ff, 2015-11-30 (annotated)
- Committer:
- mbed_Cookbook_SE
- Date:
- Mon Nov 30 09:32:15 2015 +0000
- Revision:
- 0:de03cbbcd0ff
??
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 1 | #ifndef _USB_BASE_CLASS_H_ |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 2 | #define _USB_BASE_CLASS_H_ |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 3 | #include "UsbHostMgr.h" |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 4 | |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 5 | class UsbBaseClass { |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 6 | public: |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 7 | UsbBaseClass(); |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 8 | protected: |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 9 | UsbErr Usb_poll(int timeout = 15000, int timeout2 = 2000); |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 10 | static UsbHostMgr* m_pHost; |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 11 | }; |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 12 | |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 13 | #endif //_USB_BASE_CLASS_H_ |