2010-11-17 08:06:20 +01:00
|
|
|
#ifndef USB_EXTRA_H
|
|
|
|
#define USB_EXTRA_H 1
|
2011-01-04 16:04:25 +01:00
|
|
|
/*
|
|
|
|
* Enhanced keyboard features for Windows:
|
|
|
|
* Audio control and System control
|
|
|
|
*
|
|
|
|
* http://www.microsoft.com/whdc/archive/w2kbd.mspx
|
|
|
|
*/
|
2010-11-17 08:06:20 +01:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "usb.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define EXTRA_INTERFACE 3
|
|
|
|
#define EXTRA_ENDPOINT 4
|
2011-05-31 14:17:56 +02:00
|
|
|
#define EXTRA_SIZE 8
|
2010-11-17 08:06:20 +01:00
|
|
|
#define EXTRA_BUFFER EP_DOUBLE_BUFFER
|
|
|
|
|
2011-01-04 16:04:25 +01:00
|
|
|
|
2011-05-31 14:17:56 +02:00
|
|
|
int8_t usb_extra_consumer_send(uint16_t bits);
|
|
|
|
int8_t usb_extra_system_send(uint16_t bits);
|
2010-11-17 08:06:20 +01:00
|
|
|
|
|
|
|
#endif
|