Files
2026-04-17 14:55:32 -04:00

142 lines
4.6 KiB
INI

; DDR Virtual COM Port Installation file for Win2000/XP/Vista/7
[Version]
Signature="$Windows NT$"
Class=Ports
ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318}
Provider=%MFGNAME%
CatalogFile=%MFGFILENAME%.cat
DriverVer=01/11/2019,1.3
[Manufacturer]
%MFGNAME%=DeviceList, NTx86, NTamd64
[DestinationDirs]
DefaultDestDir=12
;------------------------------------------------------------------------------
; Windows 2000/XP/Vista-32bit Sections
;------------------------------------------------------------------------------
[DriverInstall.NT]
include=mdmcpq.inf
AddReg=DriverInstall.NT.AddReg
[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.NTx86]
include=mdmcpq.inf
AddReg=DriverInstall.NTx86.AddReg
[DriverInstall.NTx86.AddReg]
HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
[DriverInstall.NTx86.Services]
AddService=usbser, 0x00000002, DriverService.NTx86
[DriverService.NTx86]
DisplayName=%SERVICE%
ServiceType=1
StartType=3
ErrorControl=1
ServiceBinary=%12%\%DRIVERFILENAME%.sys
;------------------------------------------------------------------------------
; Vista-64bit Sections
;------------------------------------------------------------------------------
[DriverInstall.NTamd64]
include=mdmcpq.inf
AddReg=DriverInstall.NTamd64.AddReg
[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.NT]
%DESCRIPTION_D0%=DriverInstall, USB\VID_1CB9&PID_000D&MI_00
%DESCRIPTION_D2%=DriverInstall, USB\VID_1CB9&PID_000D&MI_02
%DESCRIPTION_C0%=DriverInstall, USB\VID_1CB9&PID_000E&MI_00
%DESCRIPTION_C2%=DriverInstall, USB\VID_1CB9&PID_000E&MI_02
%DESCRIPTION_C4%=DriverInstall, USB\VID_1CB9&PID_000E&MI_04
[DeviceList.NTx86]
%DESCRIPTION_D0%=DriverInstall, USB\VID_1CB9&PID_000D&MI_00
%DESCRIPTION_D2%=DriverInstall, USB\VID_1CB9&PID_000D&MI_02
%DESCRIPTION_C0%=DriverInstall, USB\VID_1CB9&PID_000E&MI_00
%DESCRIPTION_C2%=DriverInstall, USB\VID_1CB9&PID_000E&MI_02
%DESCRIPTION_C4%=DriverInstall, USB\VID_1CB9&PID_000E&MI_04
[DeviceList.NTamd64]
%DESCRIPTION_D0%=DriverInstall, USB\VID_1CB9&PID_000D&MI_00
%DESCRIPTION_D2%=DriverInstall, USB\VID_1CB9&PID_000D&MI_02
%DESCRIPTION_C0%=DriverInstall, USB\VID_1CB9&PID_000E&MI_00
%DESCRIPTION_C2%=DriverInstall, USB\VID_1CB9&PID_000E&MI_02
%DESCRIPTION_C4%=DriverInstall, USB\VID_1CB9&PID_000E&MI_04
;------------------------------------------------------------------------------
; String Definitions
;------------------------------------------------------------------------------
;Modify these strings to customize your device
;------------------------------------------------------------------------------
[Strings]
MFGFILENAME="DTS_DDR"
DRIVERFILENAME ="usbser"
MFGNAME="Diversified Technical Systems, Inc."
INSTDISK="DTS DDR Driver Installer"
DESCRIPTION_D0="DDR Mouthpiece"
DESCRIPTION_D2="DDR Mouthpiece Debug"
DESCRIPTION_C0="DDR Mouthpiece Bridge"
DESCRIPTION_C2="DDR Charger"
DESCRIPTION_C4="DDR Charger Debug"
SERVICE="DTS Dynamic Data Recorder (DDR)"