aboutsummaryrefslogtreecommitdiff
path: root/usb_extra.h
diff options
context:
space:
mode:
Diffstat (limited to 'usb_extra.h')
-rw-r--r--usb_extra.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/usb_extra.h b/usb_extra.h
index 499e6b2fb..202f3223b 100644
--- a/usb_extra.h
+++ b/usb_extra.h
@@ -10,11 +10,17 @@
10#define EXTRA_SIZE 2 10#define EXTRA_SIZE 2
11#define EXTRA_BUFFER EP_DOUBLE_BUFFER 11#define EXTRA_BUFFER EP_DOUBLE_BUFFER
12 12
13// http://www.microsoft.com/whdc/archive/w2kbd.mspx
13#define AUDIO_VOL_UP (1<<0) 14#define AUDIO_VOL_UP (1<<0)
14#define AUDIO_VOL_DOWN (1<<1) 15#define AUDIO_VOL_DOWN (1<<1)
15#define AUDIO_MUTE (1<<2) 16#define AUDIO_MUTE (1<<2)
16 17
18#define SYSTEM_POWER_DOWN (1<<0)
19#define SYSTEM_SLEEP (1<<1)
20#define SYSTEM_WAKE_UP (1<<2)
17 21
18int8_t usb_extra_send(uint8_t bits); 22
23int8_t usb_extra_audio_send(uint8_t bits);
24int8_t usb_extra_system_send(uint8_t bits);
19 25
20#endif 26#endif