diff options
Diffstat (limited to 'lib/usbhost/USB_Host_Shield_2.0/Usb.h')
-rw-r--r-- | lib/usbhost/USB_Host_Shield_2.0/Usb.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/lib/usbhost/USB_Host_Shield_2.0/Usb.h b/lib/usbhost/USB_Host_Shield_2.0/Usb.h new file mode 100644 index 000000000..47bd626cc --- /dev/null +++ b/lib/usbhost/USB_Host_Shield_2.0/Usb.h | |||
@@ -0,0 +1,41 @@ | |||
1 | /* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved. | ||
2 | |||
3 | This software may be distributed and modified under the terms of the GNU | ||
4 | General Public License version 2 (GPL2) as published by the Free Software | ||
5 | Foundation and appearing in the file GPL2.TXT included in the packaging of | ||
6 | this file. Please note that GPL2 Section 2[b] requires that all works based | ||
7 | on this software must also be made publicly available under the terms of | ||
8 | the GPL2 ("Copyleft"). | ||
9 | |||
10 | Contact information | ||
11 | ------------------- | ||
12 | |||
13 | Circuits At Home, LTD | ||
14 | Web : http://www.circuitsathome.com | ||
15 | e-mail : support@circuitsathome.com | ||
16 | */ | ||
17 | /* USB functions */ | ||
18 | #ifndef _usb_h_ | ||
19 | #define _usb_h_ | ||
20 | |||
21 | // WARNING: Do not change the order of includes, or stuff will break! | ||
22 | #include <inttypes.h> | ||
23 | #include <stddef.h> | ||
24 | #include <stdio.h> | ||
25 | |||
26 | // None of these should ever be included by a driver, or a user's sketch. | ||
27 | #include "settings.h" | ||
28 | #include "printhex.h" | ||
29 | #include "message.h" | ||
30 | #include "hexdump.h" | ||
31 | #include "sink_parser.h" | ||
32 | #include "max3421e.h" | ||
33 | #include "address.h" | ||
34 | #include "avrpins.h" | ||
35 | #include "usb_ch9.h" | ||
36 | #include "usbhost.h" | ||
37 | #include "UsbCore.h" | ||
38 | #include "parsetools.h" | ||
39 | #include "confdescparser.h" | ||
40 | |||
41 | #endif //_usb_h_ | ||