DHCOM_HAL
Hardware-abstraction library (HAL) for multiple targets, including DHCOM modules
 All Data Structures Files Functions Enumerations Macros Groups
usb_fs.h
Go to the documentation of this file.
1 /*
2  * usb_fs.h
3  *
4  * Created on: 09.11.2012
5  * Author: devel
6  */
7 
8 #ifndef USB_FS_H_
9 #define USB_FS_H_
10 
11 
12 
13 class UsbFs
14 {
15 public:
16  enum Device
17  {
18  DEVICE_USB1,
19  DEVICE_USB2,
20  DEVICE_OTG
21  };
22 
23  UsbFs(Device device);
24  virtual ~UsbFs();
25 
26  virtual const char *getPath() const;
27 };
28 
29 
39 #endif /* USB_FS_H_ */