1 //*****************************************************************************
2 //
3 // usb-ids.h - Definitions of VIDs and PIDs used by Stellaris USB examples.
4 //
5 // Copyright (c) 2008-2010 Texas Instruments Incorporated.  All rights reserved.
6 // Software License Agreement
7 //
8 // Texas Instruments (TI) is supplying this software for use solely and
9 // exclusively on TI's microcontroller products. The software is owned by
10 // TI and/or its suppliers, and is protected under applicable copyright
11 // laws. You may not combine this software with "viral" open-source
12 // software in order to form a larger program.
13 //
14 // THIS SOFTWARE IS PROVIDED "AS IS" AND WITH ALL FAULTS.
15 // NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT
16 // NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
17 // A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. TI SHALL NOT, UNDER ANY
18 // CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR CONSEQUENTIAL
19 // DAMAGES, FOR ANY REASON WHATSOEVER.
20 //
21 // This is part of revision 6288 of the Stellaris USB Library.
22 //
23 //*****************************************************************************
24 
25 #ifndef __USBIDS_H__
26 #define __USBIDS_H__
27 
28 //*****************************************************************************
29 //
30 // TI Vendor ID.
31 //
32 //*****************************************************************************
33 #define USB_VID_TI       0x0000
34 
35 //*****************************************************************************
36 //
37 // Product IDs.
38 //
39 //*****************************************************************************
40 #define USB_PID_MOUSE           0x0000
41 #define USB_PID_KEYBOARD        0x0001
42 #define USB_PID_SERIAL          0x0000
43 #define USB_PID_BULK            0x0003
44 #define USB_PID_SCOPE           0x0004
45 #define USB_PID_MSC             0x0005
46 #define USB_PID_AUDIO           0x0006
47 #define USB_PID_COMP_SERIAL     0x0007
48 #define USB_PID_COMP_AUDIO_HID  0x0008
49 #define USB_PID_COMP_HID_SER    0x0009
50 #define USB_PID_DFU             0x00FF
51 
52 
53 #endif /* __USBIDS_H__ */
54