summaryrefslogtreecommitdiff
path: root/pjrc/usb_extra.h
diff options
context:
space:
mode:
Diffstat (limited to 'pjrc/usb_extra.h')
-rw-r--r--pjrc/usb_extra.h17
1 files changed, 3 insertions, 14 deletions
diff --git a/pjrc/usb_extra.h b/pjrc/usb_extra.h
index d6f9e8ba0a..b9128314f6 100644
--- a/pjrc/usb_extra.h
+++ b/pjrc/usb_extra.h
@@ -13,22 +13,11 @@
#define EXTRA_INTERFACE 3
#define EXTRA_ENDPOINT 4
-#define EXTRA_SIZE 2
+#define EXTRA_SIZE 8
#define EXTRA_BUFFER EP_DOUBLE_BUFFER
-// Consumer Page(0x0C) Consumer Control(0x01)
-#define AUDIO_VOL_UP (1<<0)
-#define AUDIO_VOL_DOWN (1<<1)
-#define AUDIO_MUTE (1<<2)
-
-// Generic Desktop Page(0x01) System Control(0x80)
-#define SYSTEM_POWER_DOWN (1<<0)
-#define SYSTEM_SLEEP (1<<1)
-#define SYSTEM_WAKE_UP (1<<2)
-
-
-int8_t usb_extra_audio_send(uint8_t bits);
-int8_t usb_extra_system_send(uint8_t bits);
+int8_t usb_extra_consumer_send(uint16_t bits);
+int8_t usb_extra_system_send(uint16_t bits);
#endif