summaryrefslogtreecommitdiff
path: root/digital/avr/modules/usb/usb.h
diff options
context:
space:
mode:
authorNicolas Schodet2009-04-10 01:16:22 +0200
committerNicolas Schodet2009-04-10 01:16:22 +0200
commitffaa7447d3b0c0d9effbc83400031144bf9745f3 (patch)
tree4f59b922c90b67f2cdd21ddade56dddf024c36e1 /digital/avr/modules/usb/usb.h
parent23cee4f9ac0e293f6e32c0215879aedb4c151718 (diff)
* digital/avr/modules/usb:
- do it more the AVR modules way.
Diffstat (limited to 'digital/avr/modules/usb/usb.h')
-rw-r--r--digital/avr/modules/usb/usb.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/digital/avr/modules/usb/usb.h b/digital/avr/modules/usb/usb.h
new file mode 100644
index 00000000..3d07f57b
--- /dev/null
+++ b/digital/avr/modules/usb/usb.h
@@ -0,0 +1,29 @@
+#ifndef usb_h
+#define usb_h
+/* usb.h */
+/* usb - USB device module using LUFA. {{{
+ *
+ * Copyright (C) 2009 Nicolas Schodet
+ *
+ * APBTeam:
+ * Web: http://apbteam.org/
+ * Email: team AT apbteam DOT org
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * }}} */
+#include <LUFA/Drivers/USB/USB.h>
+
+#endif /* usb_h */