USB Host Shield 2.0
Loading...
Searching...
No Matches
Usb.h
Go to the documentation of this file.
1/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
2
3This program is free software; you can redistribute it and/or modify
4it under the terms of the GNU General Public License as published by
5the Free Software Foundation; either version 2 of the License, or
6(at your option) any later version.
7
8This program is distributed in the hope that it will be useful,
9but WITHOUT ANY WARRANTY; without even the implied warranty of
10MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11GNU General Public License for more details.
12
13You should have received a copy of the GNU General Public License
14along with this program; if not, write to the Free Software
15Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16
17Contact information
18-------------------
19
20Circuits At Home, LTD
21Web : http://www.circuitsathome.com
22e-mail : support@circuitsathome.com
23 */
24/* USB functions */
25#ifndef _usb_h_
26#define _usb_h_
27
28// WARNING: Do not change the order of includes, or stuff will break!
29#include <inttypes.h>
30#include <stddef.h>
31#include <stdio.h>
32
33// None of these should ever be included by a driver, or a user's sketch.
34#include "settings.h"
35#include "printhex.h"
36#include "message.h"
37#include "hexdump.h"
38#include "sink_parser.h"
39#include "max3421e.h"
40#include "address.h"
41#include "avrpins.h"
42#include "usb_ch9.h"
43#include "usbhost.h"
44#include "UsbCore.h"
45#include "parsetools.h"
46#include "confdescparser.h"
47
48#endif //_usb_h_