aboutsummaryrefslogtreecommitdiff
path: root/usb_extra.h
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2010-11-17 16:06:20 +0900
committertmk <nobody@nowhere>2010-11-17 16:06:20 +0900
commit02d955e9fecda610e9cb7f5317262b907614bf31 (patch)
tree01a32f36bb17574f46c0d1848d87b0f750afdedc /usb_extra.h
parent8240e606d4571624c7967d6acfa562d70ff3ab97 (diff)
downloadqmk_firmware-02d955e9fecda610e9cb7f5317262b907614bf31.tar.gz
qmk_firmware-02d955e9fecda610e9cb7f5317262b907614bf31.zip
add audio controls from consumer page(HID)
Diffstat (limited to 'usb_extra.h')
-rw-r--r--usb_extra.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/usb_extra.h b/usb_extra.h
new file mode 100644
index 000000000..499e6b2fb
--- /dev/null
+++ b/usb_extra.h
@@ -0,0 +1,20 @@
1#ifndef USB_EXTRA_H
2#define USB_EXTRA_H 1
3
4#include <stdint.h>
5#include "usb.h"
6
7
8#define EXTRA_INTERFACE 3
9#define EXTRA_ENDPOINT 4
10#define EXTRA_SIZE 2
11#define EXTRA_BUFFER EP_DOUBLE_BUFFER
12
13#define AUDIO_VOL_UP (1<<0)
14#define AUDIO_VOL_DOWN (1<<1)
15#define AUDIO_MUTE (1<<2)
16
17
18int8_t usb_extra_send(uint8_t bits);
19
20#endif