aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/Keyboard/Keyboard.h
diff options
context:
space:
mode:
Diffstat (limited to 'Demos/Device/Keyboard/Keyboard.h')
-rw-r--r--Demos/Device/Keyboard/Keyboard.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/Demos/Device/Keyboard/Keyboard.h b/Demos/Device/Keyboard/Keyboard.h
index 76b770582..c73701905 100644
--- a/Demos/Device/Keyboard/Keyboard.h
+++ b/Demos/Device/Keyboard/Keyboard.h
@@ -54,6 +54,9 @@
#include <LUFA/Drivers/Board/LEDs.h> // LEDs driver
/* Macros: */
+ /** Idle period indicating that reports should be sent only when the inputs have changed */
+ #define HID_IDLE_CHANGESONLY 0
+
/** HID Class specific request to get the next HID report from the device. */
#define REQ_GetReport 0x01
@@ -114,8 +117,8 @@
/* Function Prototypes: */
void CreateKeyboardReport(USB_KeyboardReport_Data_t* ReportData);
void ProcessLEDReport(uint8_t LEDReport);
- static inline void SendNextReport(void);
- static inline void ReceiveNextReport(void);
+ void SendNextReport(void);
+ void ReceiveNextReport(void);
void UpdateStatus(uint8_t CurrentStatus);
#endif