Zoltan Hudak / UsbHostMAX3421E

Dependents:   UsbHostMAX3421E_Hello

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Usb.h Source File

Usb.h

00001 /* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
00002 
00003 This program is free software; you can redistribute it and/or modify
00004 it under the terms of the GNU General Public License as published by
00005 the Free Software Foundation; either version 2 of the License, or
00006 (at your option) any later version.
00007 
00008 This program is distributed in the hope that it will be useful,
00009 but WITHOUT ANY WARRANTY; without even the implied warranty of
00010 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00011 GNU General Public License for more details.
00012 
00013 You should have received a copy of the GNU General Public License
00014 along with this program; if not, write to the Free Software
00015 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00016 
00017 Contact information
00018 -------------------
00019 
00020 Circuits At Home, LTD
00021 Web      :  http://www.circuitsathome.com
00022 e-mail   :  support@circuitsathome.com
00023  */
00024 /* USB functions */
00025 #ifndef _usb_h_
00026 #define _usb_h_
00027 
00028 // WARNING: Do not change the order of includes, or stuff will break!
00029 #include <inttypes.h>
00030 #include <stddef.h>
00031 #include <stdio.h>
00032 
00033 // None of these should ever be included by a driver, or a user's sketch.
00034 #include "settings.h"
00035 #include "printhex.h"
00036 #include "message.h"
00037 #include "hexdump.h"
00038 #include "sink_parser.h"
00039 #include "MAX3421E.h"
00040 #include "address.h"
00041 #include "usb_ch9.h"
00042 #include "UsbCore.h"
00043 #include "parsetools.h"
00044 #include "confdescparser.h"
00045 #include "millis.h"
00046 
00047 #endif //_usb_h_