Advertisement
Guest User

Untitled

a guest
Apr 28th, 2012
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.31 KB | None | 0 0
  1. ;
  2. ; Windows USB CDC Driver Setup File for AVR-CDC (XP/Vista/7 x32)
  3. ;
  4. ; (c) Copyright 2008-2009 Recursion Co., Ltd.
  5. ;
  6.  
  7. [Version]
  8. Signature = "$Windows NT$"
  9. Provider = %COMPANY%
  10. DriverVer = 08/24/2009,1.0.1.3
  11.  
  12. Class = Ports
  13. ClassGuid = {4D36E978-E325-11CE-BFC1-08002BE10318}
  14.  
  15. [Manufacturer]
  16. %MFGNAME% = Devices,NT
  17.  
  18. ;--------------------------------------------------------------------------
  19. ; Files
  20. ;--------------------------------------------------------------------------
  21.  
  22. [DestinationDirs]
  23. DefaultDestDir = 12
  24.  
  25. ;--------------------------------------------------------------------------
  26. ; Device driver
  27. ;--------------------------------------------------------------------------
  28.  
  29. [DriverInstall.NT]
  30. Include = mdmcpq.inf
  31. CopyFiles = DriverInstall.NT.CopyFiles
  32. AddReg = DriverInstall.NT.AddReg
  33.  
  34. [DriverInstall.NT.CopyFiles]
  35. usbser.sys
  36. lowcdc.sys
  37.  
  38. [DriverInstall.NT.Services]
  39. AddService = usbser, 0x00000002, DriverServiceInst
  40. AddService = lowcdc, 0x00000000, DriverLower.AddService
  41.  
  42. [DriverInstall.NT.AddReg]
  43. HKR,,DevLoader,,*ntkern
  44. HKR,,NTMPDriver,,usbser.sys
  45. HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
  46.  
  47. [DriverInstall.NT.HW]
  48. AddReg=DriverLower.HW
  49.  
  50. [DriverLower.HW]
  51. HKR,,LowerFilters, 0x00010000, "lowcdc"
  52.  
  53. ;--------------------------------------------------------------------------
  54. ; Services
  55. ;--------------------------------------------------------------------------
  56.  
  57. [DriverServiceInst]
  58. DisplayName = %SERVICE%
  59. ServiceType = 1
  60. StartType = 3
  61. ErrorControl = 1
  62. ServiceBinary = %12%\usbser.sys
  63. LoadOrderGroup = PNP Filter
  64.  
  65. [DriverLower.AddService]
  66. DisplayName = %SERVICE2%
  67. ServiceType = 1
  68. StartType = 3
  69. ErrorControl = 1
  70. ServiceBinary = %12%\lowcdc.sys
  71.  
  72. ;--------------------------------------------------------------------------
  73. ; Devices
  74. ;--------------------------------------------------------------------------
  75.  
  76. [Devices.NT]
  77. %DESCRIPTION% = DriverInstall,USB\VID_16C0&PID_05E1
  78.  
  79. ;--------------------------------------------------------------------------
  80. ; Strings
  81. ;--------------------------------------------------------------------------
  82.  
  83. [Strings]
  84. COMPANY = "Recursion Co., Ltd."
  85. MFGNAME = "www.recursion.jp"
  86. DESCRIPTION = "Virtual Communications Port"
  87. SERVICE = "USB RS-232 Emulation Driver"
  88. SERVICE2 = "Low-Speed CDC Transfer Interface"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement