LUFA CDC Bootloader.inf 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. ;************************************************************
  2. ; Windows USB CDC ACM Setup File
  3. ; Copyright (c) 2000 Microsoft Corporation
  4. ;************************************************************
  5. [DefaultInstall]
  6. CopyINF="LUFA CDC Bootloader.inf"
  7. [Version]
  8. Signature="$Windows NT$"
  9. Class=Ports
  10. ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318}
  11. Provider=%MFGNAME%
  12. DriverVer=7/1/2012,10.0.0.0
  13. [Manufacturer]
  14. %MFGNAME%=DeviceList, NTx86, NTamd64, NTia64
  15. [SourceDisksNames]
  16. [SourceDisksFiles]
  17. [DestinationDirs]
  18. DefaultDestDir=12
  19. [DriverInstall]
  20. Include=mdmcpq.inf
  21. CopyFiles=FakeModemCopyFileSection
  22. AddReg=DriverInstall.AddReg
  23. [DriverInstall.Services]
  24. Include=mdmcpq.inf
  25. AddService=usbser, 0x00000002, LowerFilter_Service_Inst
  26. [DriverInstall.AddReg]
  27. HKR,,EnumPropPages32,,"msports.dll,SerialPortPropPageProvider"
  28. ;------------------------------------------------------------------------------
  29. ; Vendor and Product ID Definitions
  30. ;------------------------------------------------------------------------------
  31. ; When developing your USB device, the VID and PID used in the PC side
  32. ; application program and the firmware on the microcontroller must match.
  33. ; Modify the below line to use your VID and PID. Use the format as shown below.
  34. ; Note: One INF file can be used for multiple devices with different VID and PIDs.
  35. ; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line.
  36. ;------------------------------------------------------------------------------
  37. [DeviceList]
  38. %DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_204A
  39. [DeviceList.NTx86]
  40. %DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_204A
  41. [DeviceList.NTamd64]
  42. %DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_204A
  43. [DeviceList.NTia64]
  44. %DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_204A
  45. ;------------------------------------------------------------------------------
  46. ; String Definitions
  47. ;------------------------------------------------------------------------------
  48. ;Modify these strings to customize your device
  49. ;------------------------------------------------------------------------------
  50. [Strings]
  51. MFGNAME="http://www.lufa-lib.org"
  52. DESCRIPTION="LUFA CDC Class Bootloader"