1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-02-21 15:54:39 +01:00

Fixed windows drivers (usb-serial)

This commit is contained in:
Cristian Maglie 2011-11-09 19:23:05 +01:00 committed by David A. Mellis
parent 17adbbcfc5
commit 1e9baf7a46
6 changed files with 634 additions and 528 deletions

View File

@ -1,106 +1,106 @@
;************************************************************ ;************************************************************
; Windows USB CDC ACM Setup File ; Windows USB CDC ACM Setup File
; Copyright (c) 2000 Microsoft Corporation ; Copyright (c) 2000 Microsoft Corporation
[Version] [Version]
Signature="$Windows NT$" Signature="$Windows NT$"
Class=Ports Class=Ports
ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318} ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318}
Provider=%MFGNAME% Provider=%MFGNAME%
LayoutFile=layout.inf LayoutFile=layout.inf
CatalogFile=%MFGFILENAME%.cat CatalogFile=%MFGFILENAME%.cat
DriverVer=11/15/2007,5.1.2600.0 DriverVer=11/15/2007,5.1.2600.0
[Manufacturer] [Manufacturer]
%MFGNAME%=DeviceList, NTamd64 %MFGNAME%=DeviceList, NTamd64
[DestinationDirs] [DestinationDirs]
DefaultDestDir=12 DefaultDestDir=12
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; Windows 2000/XP/Vista-32bit Sections ; Windows 2000/XP/Vista-32bit Sections
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
[DriverInstall.nt] [DriverInstall.nt]
include=mdmcpq.inf include=mdmcpq.inf
CopyFiles=DriverCopyFiles.nt CopyFiles=DriverCopyFiles.nt
AddReg=DriverInstall.nt.AddReg AddReg=DriverInstall.nt.AddReg
[DriverCopyFiles.nt] [DriverCopyFiles.nt]
usbser.sys,,,0x20 usbser.sys,,,0x20
[DriverInstall.nt.AddReg] [DriverInstall.nt.AddReg]
HKR,,DevLoader,,*ntkern HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider" HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
[DriverInstall.nt.Services] [DriverInstall.nt.Services]
AddService=usbser, 0x00000002, DriverService.nt AddService=usbser, 0x00000002, DriverService.nt
[DriverService.nt] [DriverService.nt]
DisplayName=%SERVICE% DisplayName=%SERVICE%
ServiceType=1 ServiceType=1
StartType=3 StartType=3
ErrorControl=1 ErrorControl=1
ServiceBinary=%12%\%DRIVERFILENAME%.sys ServiceBinary=%12%\%DRIVERFILENAME%.sys
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; Vista-64bit Sections ; Vista-64bit Sections
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
[DriverInstall.NTamd64] [DriverInstall.NTamd64]
include=mdmcpq.inf include=mdmcpq.inf
CopyFiles=DriverCopyFiles.NTamd64 CopyFiles=DriverCopyFiles.NTamd64
AddReg=DriverInstall.NTamd64.AddReg AddReg=DriverInstall.NTamd64.AddReg
[DriverCopyFiles.NTamd64] [DriverCopyFiles.NTamd64]
%DRIVERFILENAME%.sys,,,0x20 %DRIVERFILENAME%.sys,,,0x20
[DriverInstall.NTamd64.AddReg] [DriverInstall.NTamd64.AddReg]
HKR,,DevLoader,,*ntkern HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider" HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
[DriverInstall.NTamd64.Services] [DriverInstall.NTamd64.Services]
AddService=usbser, 0x00000002, DriverService.NTamd64 AddService=usbser, 0x00000002, DriverService.NTamd64
[DriverService.NTamd64] [DriverService.NTamd64]
DisplayName=%SERVICE% DisplayName=%SERVICE%
ServiceType=1 ServiceType=1
StartType=3 StartType=3
ErrorControl=1 ErrorControl=1
ServiceBinary=%12%\%DRIVERFILENAME%.sys ServiceBinary=%12%\%DRIVERFILENAME%.sys
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; Vendor and Product ID Definitions ; Vendor and Product ID Definitions
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; When developing your USB device, the VID and PID used in the PC side ; When developing your USB device, the VID and PID used in the PC side
; application program and the firmware on the microcontroller must match. ; application program and the firmware on the microcontroller must match.
; Modify the below line to use your VID and PID. Use the format as shown below. ; Modify the below line to use your VID and PID. Use the format as shown below.
; Note: One INF file can be used for multiple devices with different VID and PIDs. ; Note: One INF file can be used for multiple devices with different VID and PIDs.
; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line. ; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line.
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
[SourceDisksFiles] [SourceDisksFiles]
[SourceDisksNames] [SourceDisksNames]
[DeviceList] [DeviceList]
%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0042 %DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0042
[DeviceList.NTamd64] [DeviceList.NTamd64]
%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0042 %DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0042
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; String Definitions ; String Definitions
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
;Modify these strings to customize your device ;Modify these strings to customize your device
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
[Strings] [Strings]
MFGFILENAME="CDC_vista" MFGFILENAME="CDC_vista"
DRIVERFILENAME ="usbser" DRIVERFILENAME ="usbser"
MFGNAME="Arduino LLC (www.arduino.cc)" MFGNAME="Arduino LLC (www.arduino.cc)"
INSTDISK="Arduino Mega 2560 R3 Driver Installer" INSTDISK="Arduino Mega 2560 R3 Driver Installer"
DESCRIPTION="Arduino Mega 2560 R3" DESCRIPTION="Arduino Mega 2560 R3"
SERVICE="USB RS-232 Emulation Driver" SERVICE="USB RS-232 Emulation Driver"

View File

@ -1,106 +1,106 @@
;************************************************************ ;************************************************************
; Windows USB CDC ACM Setup File ; Windows USB CDC ACM Setup File
; Copyright (c) 2000 Microsoft Corporation ; Copyright (c) 2000 Microsoft Corporation
[Version] [Version]
Signature="$Windows NT$" Signature="$Windows NT$"
Class=Ports Class=Ports
ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318} ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318}
Provider=%MFGNAME% Provider=%MFGNAME%
LayoutFile=layout.inf LayoutFile=layout.inf
CatalogFile=%MFGFILENAME%.cat CatalogFile=%MFGFILENAME%.cat
DriverVer=11/15/2007,5.1.2600.0 DriverVer=11/15/2007,5.1.2600.0
[Manufacturer] [Manufacturer]
%MFGNAME%=DeviceList, NTamd64 %MFGNAME%=DeviceList, NTamd64
[DestinationDirs] [DestinationDirs]
DefaultDestDir=12 DefaultDestDir=12
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; Windows 2000/XP/Vista-32bit Sections ; Windows 2000/XP/Vista-32bit Sections
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
[DriverInstall.nt] [DriverInstall.nt]
include=mdmcpq.inf include=mdmcpq.inf
CopyFiles=DriverCopyFiles.nt CopyFiles=DriverCopyFiles.nt
AddReg=DriverInstall.nt.AddReg AddReg=DriverInstall.nt.AddReg
[DriverCopyFiles.nt] [DriverCopyFiles.nt]
usbser.sys,,,0x20 usbser.sys,,,0x20
[DriverInstall.nt.AddReg] [DriverInstall.nt.AddReg]
HKR,,DevLoader,,*ntkern HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider" HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
[DriverInstall.nt.Services] [DriverInstall.nt.Services]
AddService=usbser, 0x00000002, DriverService.nt AddService=usbser, 0x00000002, DriverService.nt
[DriverService.nt] [DriverService.nt]
DisplayName=%SERVICE% DisplayName=%SERVICE%
ServiceType=1 ServiceType=1
StartType=3 StartType=3
ErrorControl=1 ErrorControl=1
ServiceBinary=%12%\%DRIVERFILENAME%.sys ServiceBinary=%12%\%DRIVERFILENAME%.sys
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; Vista-64bit Sections ; Vista-64bit Sections
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
[DriverInstall.NTamd64] [DriverInstall.NTamd64]
include=mdmcpq.inf include=mdmcpq.inf
CopyFiles=DriverCopyFiles.NTamd64 CopyFiles=DriverCopyFiles.NTamd64
AddReg=DriverInstall.NTamd64.AddReg AddReg=DriverInstall.NTamd64.AddReg
[DriverCopyFiles.NTamd64] [DriverCopyFiles.NTamd64]
%DRIVERFILENAME%.sys,,,0x20 %DRIVERFILENAME%.sys,,,0x20
[DriverInstall.NTamd64.AddReg] [DriverInstall.NTamd64.AddReg]
HKR,,DevLoader,,*ntkern HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider" HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
[DriverInstall.NTamd64.Services] [DriverInstall.NTamd64.Services]
AddService=usbser, 0x00000002, DriverService.NTamd64 AddService=usbser, 0x00000002, DriverService.NTamd64
[DriverService.NTamd64] [DriverService.NTamd64]
DisplayName=%SERVICE% DisplayName=%SERVICE%
ServiceType=1 ServiceType=1
StartType=3 StartType=3
ErrorControl=1 ErrorControl=1
ServiceBinary=%12%\%DRIVERFILENAME%.sys ServiceBinary=%12%\%DRIVERFILENAME%.sys
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; Vendor and Product ID Definitions ; Vendor and Product ID Definitions
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; When developing your USB device, the VID and PID used in the PC side ; When developing your USB device, the VID and PID used in the PC side
; application program and the firmware on the microcontroller must match. ; application program and the firmware on the microcontroller must match.
; Modify the below line to use your VID and PID. Use the format as shown below. ; Modify the below line to use your VID and PID. Use the format as shown below.
; Note: One INF file can be used for multiple devices with different VID and PIDs. ; Note: One INF file can be used for multiple devices with different VID and PIDs.
; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line. ; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line.
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
[SourceDisksFiles] [SourceDisksFiles]
[SourceDisksNames] [SourceDisksNames]
[DeviceList] [DeviceList]
%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0010 %DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0010
[DeviceList.NTamd64] [DeviceList.NTamd64]
%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0010 %DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0010
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; String Definitions ; String Definitions
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
;Modify these strings to customize your device ;Modify these strings to customize your device
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
[Strings] [Strings]
MFGFILENAME="CDC_vista" MFGFILENAME="CDC_vista"
DRIVERFILENAME ="usbser" DRIVERFILENAME ="usbser"
MFGNAME="Arduino LLC (www.arduino.cc)" MFGNAME="Arduino LLC (www.arduino.cc)"
INSTDISK="Arduino Mega 2560 Driver Installer" INSTDISK="Arduino Mega 2560 Driver Installer"
DESCRIPTION="Arduino Mega 2560" DESCRIPTION="Arduino Mega 2560"
SERVICE="USB RS-232 Emulation Driver" SERVICE="USB RS-232 Emulation Driver"

View File

@ -1,106 +1,106 @@
;************************************************************ ;************************************************************
; Windows USB CDC ACM Setup File ; Windows USB CDC ACM Setup File
; Copyright (c) 2000 Microsoft Corporation ; Copyright (c) 2000 Microsoft Corporation
[Version] [Version]
Signature="$Windows NT$" Signature="$Windows NT$"
Class=Ports Class=Ports
ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318} ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318}
Provider=%MFGNAME% Provider=%MFGNAME%
LayoutFile=layout.inf LayoutFile=layout.inf
CatalogFile=%MFGFILENAME%.cat CatalogFile=%MFGFILENAME%.cat
DriverVer=11/15/2007,5.1.2600.0 DriverVer=11/15/2007,5.1.2600.0
[Manufacturer] [Manufacturer]
%MFGNAME%=DeviceList, NTamd64 %MFGNAME%=DeviceList, NTamd64
[DestinationDirs] [DestinationDirs]
DefaultDestDir=12 DefaultDestDir=12
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; Windows 2000/XP/Vista-32bit Sections ; Windows 2000/XP/Vista-32bit Sections
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
[DriverInstall.nt] [DriverInstall.nt]
include=mdmcpq.inf include=mdmcpq.inf
CopyFiles=DriverCopyFiles.nt CopyFiles=DriverCopyFiles.nt
AddReg=DriverInstall.nt.AddReg AddReg=DriverInstall.nt.AddReg
[DriverCopyFiles.nt] [DriverCopyFiles.nt]
usbser.sys,,,0x20 usbser.sys,,,0x20
[DriverInstall.nt.AddReg] [DriverInstall.nt.AddReg]
HKR,,DevLoader,,*ntkern HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider" HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
[DriverInstall.nt.Services] [DriverInstall.nt.Services]
AddService=usbser, 0x00000002, DriverService.nt AddService=usbser, 0x00000002, DriverService.nt
[DriverService.nt] [DriverService.nt]
DisplayName=%SERVICE% DisplayName=%SERVICE%
ServiceType=1 ServiceType=1
StartType=3 StartType=3
ErrorControl=1 ErrorControl=1
ServiceBinary=%12%\%DRIVERFILENAME%.sys ServiceBinary=%12%\%DRIVERFILENAME%.sys
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; Vista-64bit Sections ; Vista-64bit Sections
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
[DriverInstall.NTamd64] [DriverInstall.NTamd64]
include=mdmcpq.inf include=mdmcpq.inf
CopyFiles=DriverCopyFiles.NTamd64 CopyFiles=DriverCopyFiles.NTamd64
AddReg=DriverInstall.NTamd64.AddReg AddReg=DriverInstall.NTamd64.AddReg
[DriverCopyFiles.NTamd64] [DriverCopyFiles.NTamd64]
%DRIVERFILENAME%.sys,,,0x20 %DRIVERFILENAME%.sys,,,0x20
[DriverInstall.NTamd64.AddReg] [DriverInstall.NTamd64.AddReg]
HKR,,DevLoader,,*ntkern HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider" HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
[DriverInstall.NTamd64.Services] [DriverInstall.NTamd64.Services]
AddService=usbser, 0x00000002, DriverService.NTamd64 AddService=usbser, 0x00000002, DriverService.NTamd64
[DriverService.NTamd64] [DriverService.NTamd64]
DisplayName=%SERVICE% DisplayName=%SERVICE%
ServiceType=1 ServiceType=1
StartType=3 StartType=3
ErrorControl=1 ErrorControl=1
ServiceBinary=%12%\%DRIVERFILENAME%.sys ServiceBinary=%12%\%DRIVERFILENAME%.sys
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; Vendor and Product ID Definitions ; Vendor and Product ID Definitions
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; When developing your USB device, the VID and PID used in the PC side ; When developing your USB device, the VID and PID used in the PC side
; application program and the firmware on the microcontroller must match. ; application program and the firmware on the microcontroller must match.
; Modify the below line to use your VID and PID. Use the format as shown below. ; Modify the below line to use your VID and PID. Use the format as shown below.
; Note: One INF file can be used for multiple devices with different VID and PIDs. ; Note: One INF file can be used for multiple devices with different VID and PIDs.
; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line. ; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line.
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
[SourceDisksFiles] [SourceDisksFiles]
[SourceDisksNames] [SourceDisksNames]
[DeviceList] [DeviceList]
%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0044 %DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0044
[DeviceList.NTamd64] [DeviceList.NTamd64]
%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0044 %DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0044
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; String Definitions ; String Definitions
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
;Modify these strings to customize your device ;Modify these strings to customize your device
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
[Strings] [Strings]
MFGFILENAME="CDC_vista" MFGFILENAME="CDC_vista"
DRIVERFILENAME ="usbser" DRIVERFILENAME ="usbser"
MFGNAME="Arduino LLC (www.arduino.cc)" MFGNAME="Arduino LLC (www.arduino.cc)"
INSTDISK="Arduino Mega ADK R3 Driver Installer" INSTDISK="Arduino Mega ADK R3 Driver Installer"
DESCRIPTION="Arduino Mega ADK R3" DESCRIPTION="Arduino Mega ADK R3"
SERVICE="USB RS-232 Emulation Driver" SERVICE="USB RS-232 Emulation Driver"

View File

@ -0,0 +1,106 @@
;************************************************************
; Windows USB CDC ACM Setup File
; Copyright (c) 2000 Microsoft Corporation
[Version]
Signature="$Windows NT$"
Class=Ports
ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318}
Provider=%MFGNAME%
LayoutFile=layout.inf
CatalogFile=%MFGFILENAME%.cat
DriverVer=11/15/2007,5.1.2600.0
[Manufacturer]
%MFGNAME%=DeviceList, NTamd64
[DestinationDirs]
DefaultDestDir=12
;------------------------------------------------------------------------------
; Windows 2000/XP/Vista-32bit Sections
;------------------------------------------------------------------------------
[DriverInstall.nt]
include=mdmcpq.inf
CopyFiles=DriverCopyFiles.nt
AddReg=DriverInstall.nt.AddReg
[DriverCopyFiles.nt]
usbser.sys,,,0x20
[DriverInstall.nt.AddReg]
HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
[DriverInstall.nt.Services]
AddService=usbser, 0x00000002, DriverService.nt
[DriverService.nt]
DisplayName=%SERVICE%
ServiceType=1
StartType=3
ErrorControl=1
ServiceBinary=%12%\%DRIVERFILENAME%.sys
;------------------------------------------------------------------------------
; Vista-64bit Sections
;------------------------------------------------------------------------------
[DriverInstall.NTamd64]
include=mdmcpq.inf
CopyFiles=DriverCopyFiles.NTamd64
AddReg=DriverInstall.NTamd64.AddReg
[DriverCopyFiles.NTamd64]
%DRIVERFILENAME%.sys,,,0x20
[DriverInstall.NTamd64.AddReg]
HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
[DriverInstall.NTamd64.Services]
AddService=usbser, 0x00000002, DriverService.NTamd64
[DriverService.NTamd64]
DisplayName=%SERVICE%
ServiceType=1
StartType=3
ErrorControl=1
ServiceBinary=%12%\%DRIVERFILENAME%.sys
;------------------------------------------------------------------------------
; Vendor and Product ID Definitions
;------------------------------------------------------------------------------
; When developing your USB device, the VID and PID used in the PC side
; application program and the firmware on the microcontroller must match.
; Modify the below line to use your VID and PID. Use the format as shown below.
; Note: One INF file can be used for multiple devices with different VID and PIDs.
; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line.
;------------------------------------------------------------------------------
[SourceDisksFiles]
[SourceDisksNames]
[DeviceList]
%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_003F
[DeviceList.NTamd64]
%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_003F
;------------------------------------------------------------------------------
; String Definitions
;------------------------------------------------------------------------------
;Modify these strings to customize your device
;------------------------------------------------------------------------------
[Strings]
MFGFILENAME="CDC_vista"
DRIVERFILENAME ="usbser"
MFGNAME="Arduino LLC (www.arduino.cc)"
INSTDISK="Arduino Mega ADK Driver Installer"
DESCRIPTION="Arduino Mega ADK"
SERVICE="USB RS-232 Emulation Driver"

View File

@ -1,106 +1,106 @@
;************************************************************ ;************************************************************
; Windows USB CDC ACM Setup File ; Windows USB CDC ACM Setup File
; Copyright (c) 2000 Microsoft Corporation ; Copyright (c) 2000 Microsoft Corporation
[Version] [Version]
Signature="$Windows NT$" Signature="$Windows NT$"
Class=Ports Class=Ports
ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318} ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318}
Provider=%MFGNAME% Provider=%MFGNAME%
LayoutFile=layout.inf LayoutFile=layout.inf
CatalogFile=%MFGFILENAME%.cat CatalogFile=%MFGFILENAME%.cat
DriverVer=11/15/2007,5.1.2600.0 DriverVer=11/15/2007,5.1.2600.0
[Manufacturer] [Manufacturer]
%MFGNAME%=DeviceList, NTamd64 %MFGNAME%=DeviceList, NTamd64
[DestinationDirs] [DestinationDirs]
DefaultDestDir=12 DefaultDestDir=12
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; Windows 2000/XP/Vista-32bit Sections ; Windows 2000/XP/Vista-32bit Sections
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
[DriverInstall.nt] [DriverInstall.nt]
include=mdmcpq.inf include=mdmcpq.inf
CopyFiles=DriverCopyFiles.nt CopyFiles=DriverCopyFiles.nt
AddReg=DriverInstall.nt.AddReg AddReg=DriverInstall.nt.AddReg
[DriverCopyFiles.nt] [DriverCopyFiles.nt]
usbser.sys,,,0x20 usbser.sys,,,0x20
[DriverInstall.nt.AddReg] [DriverInstall.nt.AddReg]
HKR,,DevLoader,,*ntkern HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider" HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
[DriverInstall.nt.Services] [DriverInstall.nt.Services]
AddService=usbser, 0x00000002, DriverService.nt AddService=usbser, 0x00000002, DriverService.nt
[DriverService.nt] [DriverService.nt]
DisplayName=%SERVICE% DisplayName=%SERVICE%
ServiceType=1 ServiceType=1
StartType=3 StartType=3
ErrorControl=1 ErrorControl=1
ServiceBinary=%12%\%DRIVERFILENAME%.sys ServiceBinary=%12%\%DRIVERFILENAME%.sys
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; Vista-64bit Sections ; Vista-64bit Sections
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
[DriverInstall.NTamd64] [DriverInstall.NTamd64]
include=mdmcpq.inf include=mdmcpq.inf
CopyFiles=DriverCopyFiles.NTamd64 CopyFiles=DriverCopyFiles.NTamd64
AddReg=DriverInstall.NTamd64.AddReg AddReg=DriverInstall.NTamd64.AddReg
[DriverCopyFiles.NTamd64] [DriverCopyFiles.NTamd64]
%DRIVERFILENAME%.sys,,,0x20 %DRIVERFILENAME%.sys,,,0x20
[DriverInstall.NTamd64.AddReg] [DriverInstall.NTamd64.AddReg]
HKR,,DevLoader,,*ntkern HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider" HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
[DriverInstall.NTamd64.Services] [DriverInstall.NTamd64.Services]
AddService=usbser, 0x00000002, DriverService.NTamd64 AddService=usbser, 0x00000002, DriverService.NTamd64
[DriverService.NTamd64] [DriverService.NTamd64]
DisplayName=%SERVICE% DisplayName=%SERVICE%
ServiceType=1 ServiceType=1
StartType=3 StartType=3
ErrorControl=1 ErrorControl=1
ServiceBinary=%12%\%DRIVERFILENAME%.sys ServiceBinary=%12%\%DRIVERFILENAME%.sys
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; Vendor and Product ID Definitions ; Vendor and Product ID Definitions
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; When developing your USB device, the VID and PID used in the PC side ; When developing your USB device, the VID and PID used in the PC side
; application program and the firmware on the microcontroller must match. ; application program and the firmware on the microcontroller must match.
; Modify the below line to use your VID and PID. Use the format as shown below. ; Modify the below line to use your VID and PID. Use the format as shown below.
; Note: One INF file can be used for multiple devices with different VID and PIDs. ; Note: One INF file can be used for multiple devices with different VID and PIDs.
; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line. ; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line.
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
[SourceDisksFiles] [SourceDisksFiles]
[SourceDisksNames] [SourceDisksNames]
[DeviceList] [DeviceList]
%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0043 %DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0043
[DeviceList.NTamd64] [DeviceList.NTamd64]
%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0043 %DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0043
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; String Definitions ; String Definitions
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
;Modify these strings to customize your device ;Modify these strings to customize your device
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
[Strings] [Strings]
MFGFILENAME="CDC_vista" MFGFILENAME="CDC_vista"
DRIVERFILENAME ="usbser" DRIVERFILENAME ="usbser"
MFGNAME="Arduino LLC (www.arduino.cc)" MFGNAME="Arduino LLC (www.arduino.cc)"
INSTDISK="Arduino UNO R3 Driver Installer" INSTDISK="Arduino UNO R3 Driver Installer"
DESCRIPTION="Arduino UNO R3" DESCRIPTION="Arduino UNO R3"
SERVICE="USB RS-232 Emulation Driver" SERVICE="USB RS-232 Emulation Driver"

View File

@ -1,106 +1,106 @@
;************************************************************ ;************************************************************
; Windows USB CDC ACM Setup File ; Windows USB CDC ACM Setup File
; Copyright (c) 2000 Microsoft Corporation ; Copyright (c) 2000 Microsoft Corporation
[Version] [Version]
Signature="$Windows NT$" Signature="$Windows NT$"
Class=Ports Class=Ports
ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318} ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318}
Provider=%MFGNAME% Provider=%MFGNAME%
LayoutFile=layout.inf LayoutFile=layout.inf
CatalogFile=%MFGFILENAME%.cat CatalogFile=%MFGFILENAME%.cat
DriverVer=11/15/2007,5.1.2600.0 DriverVer=11/15/2007,5.1.2600.0
[Manufacturer] [Manufacturer]
%MFGNAME%=DeviceList, NTamd64 %MFGNAME%=DeviceList, NTamd64
[DestinationDirs] [DestinationDirs]
DefaultDestDir=12 DefaultDestDir=12
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; Windows 2000/XP/Vista-32bit Sections ; Windows 2000/XP/Vista-32bit Sections
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
[DriverInstall.nt] [DriverInstall.nt]
include=mdmcpq.inf include=mdmcpq.inf
CopyFiles=DriverCopyFiles.nt CopyFiles=DriverCopyFiles.nt
AddReg=DriverInstall.nt.AddReg AddReg=DriverInstall.nt.AddReg
[DriverCopyFiles.nt] [DriverCopyFiles.nt]
usbser.sys,,,0x20 usbser.sys,,,0x20
[DriverInstall.nt.AddReg] [DriverInstall.nt.AddReg]
HKR,,DevLoader,,*ntkern HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider" HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
[DriverInstall.nt.Services] [DriverInstall.nt.Services]
AddService=usbser, 0x00000002, DriverService.nt AddService=usbser, 0x00000002, DriverService.nt
[DriverService.nt] [DriverService.nt]
DisplayName=%SERVICE% DisplayName=%SERVICE%
ServiceType=1 ServiceType=1
StartType=3 StartType=3
ErrorControl=1 ErrorControl=1
ServiceBinary=%12%\%DRIVERFILENAME%.sys ServiceBinary=%12%\%DRIVERFILENAME%.sys
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; Vista-64bit Sections ; Vista-64bit Sections
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
[DriverInstall.NTamd64] [DriverInstall.NTamd64]
include=mdmcpq.inf include=mdmcpq.inf
CopyFiles=DriverCopyFiles.NTamd64 CopyFiles=DriverCopyFiles.NTamd64
AddReg=DriverInstall.NTamd64.AddReg AddReg=DriverInstall.NTamd64.AddReg
[DriverCopyFiles.NTamd64] [DriverCopyFiles.NTamd64]
%DRIVERFILENAME%.sys,,,0x20 %DRIVERFILENAME%.sys,,,0x20
[DriverInstall.NTamd64.AddReg] [DriverInstall.NTamd64.AddReg]
HKR,,DevLoader,,*ntkern HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider" HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
[DriverInstall.NTamd64.Services] [DriverInstall.NTamd64.Services]
AddService=usbser, 0x00000002, DriverService.NTamd64 AddService=usbser, 0x00000002, DriverService.NTamd64
[DriverService.NTamd64] [DriverService.NTamd64]
DisplayName=%SERVICE% DisplayName=%SERVICE%
ServiceType=1 ServiceType=1
StartType=3 StartType=3
ErrorControl=1 ErrorControl=1
ServiceBinary=%12%\%DRIVERFILENAME%.sys ServiceBinary=%12%\%DRIVERFILENAME%.sys
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; Vendor and Product ID Definitions ; Vendor and Product ID Definitions
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; When developing your USB device, the VID and PID used in the PC side ; When developing your USB device, the VID and PID used in the PC side
; application program and the firmware on the microcontroller must match. ; application program and the firmware on the microcontroller must match.
; Modify the below line to use your VID and PID. Use the format as shown below. ; Modify the below line to use your VID and PID. Use the format as shown below.
; Note: One INF file can be used for multiple devices with different VID and PIDs. ; Note: One INF file can be used for multiple devices with different VID and PIDs.
; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line. ; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line.
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
[SourceDisksFiles] [SourceDisksFiles]
[SourceDisksNames] [SourceDisksNames]
[DeviceList] [DeviceList]
%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0001 %DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0001
[DeviceList.NTamd64] [DeviceList.NTamd64]
%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0001 %DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0001
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; String Definitions ; String Definitions
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
;Modify these strings to customize your device ;Modify these strings to customize your device
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
[Strings] [Strings]
MFGFILENAME="CDC_vista" MFGFILENAME="CDC_vista"
DRIVERFILENAME ="usbser" DRIVERFILENAME ="usbser"
MFGNAME="Arduino LLC (www.arduino.cc)" MFGNAME="http://www.arduino.cc"
INSTDISK="Arduino UNO Driver Installer" INSTDISK="Arduino UNO Driver Installer"
DESCRIPTION="Arduino UNO" DESCRIPTION="Communications Port"
SERVICE="USB RS-232 Emulation Driver" SERVICE="USB RS-232 Emulation Driver"