summaryrefslogtreecommitdiffstats
path: root/protocol/lufa/lufa.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocol/lufa/lufa.h')
-rw-r--r--protocol/lufa/lufa.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/protocol/lufa/lufa.h b/protocol/lufa/lufa.h
index efb8c3837..71c279b0d 100644
--- a/protocol/lufa/lufa.h
+++ b/protocol/lufa/lufa.h
@@ -1,3 +1,10 @@
+/*
+ * Copyright 2012 Jun Wako <wakojun@gmail.com>
+ * This file is based on:
+ * LUFA-120219/Demos/Device/Lowlevel/KeyboardMouse
+ * LUFA-120219/Demos/Device/Lowlevel/GenericHID
+ */
+
/*
LUFA Library
Copyright (C) Dean Camera, 2012.
@@ -32,7 +39,6 @@
#ifndef _LUFA_H_
#define _LUFA_H_
- /* Includes: */
#include <avr/io.h>
#include <avr/wdt.h>
#include <avr/power.h>
@@ -42,4 +48,11 @@
#include <LUFA/Version.h>
#include <LUFA/Drivers/USB/USB.h>
+
+/* extra report structure */
+typedef struct {
+ uint8_t report_id;
+ uint16_t usage;
+} __attribute__ ((packed)) report_extra_t;
+
#endif