usb-ids.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. #ifndef __USBIDS_H__
  25. #define __USBIDS_H__
  26. //*****************************************************************************
  27. //
  28. // TI Vendor ID.
  29. //
  30. //*****************************************************************************
  31. #define USB_VID_TI 0x0000
  32. //*****************************************************************************
  33. //
  34. // Product IDs.
  35. //
  36. //*****************************************************************************
  37. #define USB_PID_MOUSE 0x0000
  38. #define USB_PID_KEYBOARD 0x0001
  39. #define USB_PID_SERIAL 0x0000
  40. #define USB_PID_BULK 0x0003
  41. #define USB_PID_SCOPE 0x0004
  42. #define USB_PID_MSC 0x0005
  43. #define USB_PID_AUDIO 0x0006
  44. #define USB_PID_COMP_SERIAL 0x0007
  45. #define USB_PID_COMP_AUDIO_HID 0x0008
  46. #define USB_PID_COMP_HID_SER 0x0009
  47. #define USB_PID_DFU 0x00FF
  48. #endif /* __USBIDS_H__ */