summaryrefslogtreecommitdiff
path: root/usb_extra.h
blob: 499e6b2fb340bd6f15dac9d1588373a281eb7e16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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

#define AUDIO_VOL_UP		(1<<0)
#define AUDIO_VOL_DOWN		(1<<1)
#define AUDIO_MUTE		(1<<2)


int8_t usb_extra_send(uint8_t bits);

#endif