Revision 8, 1.3 kB
(checked in by phil, 15 years ago)
|
Added Examples etc. from CD
|
Line | |
---|
1 |
/*---------------------------------------------------------------------------- |
---|
2 |
* U S B - K e r n e l |
---|
3 |
*---------------------------------------------------------------------------- |
---|
4 |
* Name: USBDESC.H |
---|
5 |
* Purpose: USB Descriptors Definitions |
---|
6 |
* Version: V1.10 |
---|
7 |
*---------------------------------------------------------------------------- |
---|
8 |
* This file is part of the uVision/ARM development tools. |
---|
9 |
* This software may only be used under the terms of a valid, current, |
---|
10 |
* end user licence from KEIL for a compatible version of KEIL software |
---|
11 |
* development tools. Nothing else gives you the right to use it. |
---|
12 |
* |
---|
13 |
* Copyright (c) 2005-2007 Keil Software. |
---|
14 |
*---------------------------------------------------------------------------*/ |
---|
15 |
|
---|
16 |
#ifndef __USBDESC_H__ |
---|
17 |
#define __USBDESC_H__ |
---|
18 |
|
---|
19 |
|
---|
20 |
#define WBVAL(x) (x & 0xFF),((x >> 8) & 0xFF) |
---|
21 |
|
---|
22 |
#define USB_DEVICE_DESC_SIZE (sizeof(USB_DEVICE_DESCRIPTOR)) |
---|
23 |
#define USB_CONFIGUARTION_DESC_SIZE (sizeof(USB_CONFIGURATION_DESCRIPTOR)) |
---|
24 |
#define USB_INTERFACE_DESC_SIZE (sizeof(USB_INTERFACE_DESCRIPTOR)) |
---|
25 |
#define USB_ENDPOINT_DESC_SIZE (sizeof(USB_ENDPOINT_DESCRIPTOR)) |
---|
26 |
|
---|
27 |
extern const BYTE USB_DeviceDescriptor[]; |
---|
28 |
extern const BYTE USB_ConfigDescriptor[]; |
---|
29 |
extern const BYTE USB_StringDescriptor[]; |
---|
30 |
|
---|
31 |
|
---|
32 |
#endif /* __USBDESC_H__ */ |
---|