]> git.sur5r.net Git - freertos/blob - FreeRTOS-Plus/Demo/FreeRTOS_Plus_UDP_and_CLI_LPC1830_GCC/ThirdParty/USB_CDC/include/usbdesc.h
6f00e0fb29fab3bd457d48896ec965a8e8d0ffef
[freertos] / FreeRTOS-Plus / Demo / FreeRTOS_Plus_UDP_and_CLI_LPC1830_GCC / ThirdParty / USB_CDC / include / usbdesc.h
1 /*----------------------------------------------------------------------------
2  *      U S B  -  K e r n e l
3  *----------------------------------------------------------------------------
4  * Name:    usbdesc.h
5  * Purpose: USB Descriptors Definitions
6  * Version: V1.20
7  *----------------------------------------------------------------------------
8  *      This software is supplied "AS IS" without any warranties, express,
9  *      implied or statutory, including but not limited to the implied
10  *      warranties of fitness for purpose, satisfactory quality and
11  *      noninfringement. Keil extends you a royalty-free right to reproduce
12  *      and distribute executable files created using this software for use
13  *      on NXP Semiconductors LPC microcontroller devices only. Nothing else 
14  *      gives you the right to use this software.
15  *
16  * Copyright (c) 2009 Keil - An ARM Company. All rights reserved.
17  *---------------------------------------------------------------------------*/
18
19 #ifndef __USBDESC_H__
20 #define __USBDESC_H__
21
22
23 #define WBVAL(x) (x & 0xFF),((x >> 8) & 0xFF)
24
25 #define USB_DEVICE_DESC_SIZE        (sizeof(USB_DEVICE_DESCRIPTOR))
26 #define USB_CONFIGUARTION_DESC_SIZE (sizeof(USB_CONFIGURATION_DESCRIPTOR))
27 #define USB_INTERFACE_DESC_SIZE     (sizeof(USB_INTERFACE_DESCRIPTOR))
28 #define USB_ENDPOINT_DESC_SIZE      (sizeof(USB_ENDPOINT_DESCRIPTOR))
29 #define USB_DEVICE_QUALI_SIZE       (sizeof(USB_DEVICE_QUALIFIER_DESCRIPTOR))
30 #define USB_OTHER_SPEED_CONF_SIZE   (sizeof(USB_OTHER_SPEED_CONFIGURATION))
31
32 extern const uint8_t USB_DeviceDescriptor[];
33 extern const uint8_t USB_FSConfigDescriptor[];
34 extern const uint8_t USB_HSConfigDescriptor[];
35 extern const uint8_t USB_StringDescriptor[];
36 extern const uint8_t USB_DeviceQualifier[];
37 extern const uint8_t USB_FSOtherSpeedConfiguration[];
38 extern const uint8_t USB_HSOtherSpeedConfiguration[];
39
40
41 #endif  /* __USBDESC_H__ */