add system controls(power down/wake up) from generic desktop page(HID)

This commit is contained in:
tmk 2010-11-18 22:35:49 +09:00
parent 02d955e9fe
commit 9019c901dd
7 changed files with 140 additions and 51 deletions

View file

@ -10,11 +10,17 @@
#define EXTRA_SIZE 2
#define EXTRA_BUFFER EP_DOUBLE_BUFFER
// http://www.microsoft.com/whdc/archive/w2kbd.mspx
#define AUDIO_VOL_UP (1<<0)
#define AUDIO_VOL_DOWN (1<<1)
#define AUDIO_MUTE (1<<2)
#define SYSTEM_POWER_DOWN (1<<0)
#define SYSTEM_SLEEP (1<<1)
#define SYSTEM_WAKE_UP (1<<2)
int8_t usb_extra_send(uint8_t bits);
int8_t usb_extra_audio_send(uint8_t bits);
int8_t usb_extra_system_send(uint8_t bits);
#endif