pybcdc.inf 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. ; Windows USB CDC ACM Setup File
  2. ; Based on INF files which were:
  3. ; Copyright (c) 2000 Microsoft Corporation
  4. ; Copyright (C) 2007 Microchip Technology Inc.
  5. ; Likely to be covered by the MLPL as found at:
  6. ; <http://msdn.microsoft.com/en-us/cc300389.aspx#MLPL>.
  7. [Version]
  8. Signature="$Windows NT$"
  9. Class=Ports
  10. ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318}
  11. Provider=%MFGNAME%
  12. LayoutFile=layout.inf
  13. DriverVer=03/11/2010,5.1.2600.3
  14. [Manufacturer]
  15. %MFGNAME%=DeviceList, NTamd64
  16. [DestinationDirs]
  17. DefaultDestDir=12
  18. ;---------------------------------------------------------------------
  19. ; Windows 2000/XP/Server2003/Vista/Server2008/7 - 32bit Sections
  20. [DriverInstall.nt]
  21. include=mdmcpq.inf
  22. CopyFiles=DriverCopyFiles.nt
  23. AddReg=DriverInstall.nt.AddReg
  24. [DriverCopyFiles.nt]
  25. usbser.sys,,,0x20
  26. [DriverInstall.nt.AddReg]
  27. HKR,,DevLoader,,*ntkern
  28. HKR,,NTMPDriver,,usbser.sys
  29. HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
  30. [DriverInstall.nt.Services]
  31. AddService=usbser, 0x00000002, DriverService.nt
  32. [DriverService.nt]
  33. DisplayName=%SERVICE%
  34. ServiceType=1
  35. StartType=3
  36. ErrorControl=1
  37. ServiceBinary=%12%\usbser.sys
  38. ;---------------------------------------------------------------------
  39. ; Windows XP/Server2003/Vista/Server2008/7 - 64bit Sections
  40. [DriverInstall.NTamd64]
  41. include=mdmcpq.inf
  42. CopyFiles=DriverCopyFiles.NTamd64
  43. AddReg=DriverInstall.NTamd64.AddReg
  44. [DriverCopyFiles.NTamd64]
  45. usbser.sys,,,0x20
  46. [DriverInstall.NTamd64.AddReg]
  47. HKR,,DevLoader,,*ntkern
  48. HKR,,NTMPDriver,,usbser.sys
  49. HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
  50. [DriverInstall.NTamd64.Services]
  51. AddService=usbser, 0x00000002, DriverService.NTamd64
  52. [DriverService.NTamd64]
  53. DisplayName=%SERVICE%
  54. ServiceType=1
  55. StartType=3
  56. ErrorControl=1
  57. ServiceBinary=%12%\usbser.sys
  58. ;---------------------------------------------------------------------
  59. ; Vendor and Product ID Definitions
  60. [SourceDisksFiles]
  61. [SourceDisksNames]
  62. [DeviceList]
  63. %DESCRIPTION%=DriverInstall, USB\VID_f055&PID_9800&MI_00, USB\VID_f055&PID_9800&MI_01
  64. [DeviceList.NTamd64]
  65. %DESCRIPTION%=DriverInstall, USB\VID_f055&PID_9800&MI_00, USB\VID_f055&PID_9800&MI_01
  66. ;---------------------------------------------------------------------
  67. ; String Definitions
  68. [Strings]
  69. MFGFILENAME="pybcdc"
  70. MFGNAME="Micro Python"
  71. DESCRIPTION="Pyboard USB Comm Port"
  72. SERVICE="USB Serial Driver"