2010-11-17 02:06:20 -05:00
|
|
|
#ifndef USB_EXTRA_H
|
|
|
|
#define USB_EXTRA_H 1
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "usb.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define EXTRA_INTERFACE 3
|
|
|
|
#define EXTRA_ENDPOINT 4
|
|
|
|
#define EXTRA_SIZE 2
|
|
|
|
#define EXTRA_BUFFER EP_DOUBLE_BUFFER
|
|
|
|
|
2010-11-18 08:35:49 -05:00
|
|
|
// http://www.microsoft.com/whdc/archive/w2kbd.mspx
|
2010-11-17 02:06:20 -05:00
|
|
|
#define AUDIO_VOL_UP (1<<0)
|
|
|
|
#define AUDIO_VOL_DOWN (1<<1)
|
|
|
|
#define AUDIO_MUTE (1<<2)
|
|
|
|
|
2010-11-18 08:35:49 -05:00
|
|
|
#define SYSTEM_POWER_DOWN (1<<0)
|
|
|
|
#define SYSTEM_SLEEP (1<<1)
|
|
|
|
#define SYSTEM_WAKE_UP (1<<2)
|
2010-11-17 02:06:20 -05:00
|
|
|
|
2010-11-18 08:35:49 -05:00
|
|
|
|
|
|
|
int8_t usb_extra_audio_send(uint8_t bits);
|
|
|
|
int8_t usb_extra_system_send(uint8_t bits);
|
2010-11-17 02:06:20 -05:00
|
|
|
|
|
|
|
#endif
|