Welcome to mirror list, hosted at ThFree Co, Russian Federation.

duet.inf « Driver - github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d28a81f71f4db263f7508d666469eea339620208 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
; Windows 2000, XP, Vista, 7 and 8 (x32 and x64) setup file for Duet 3D printer control electronics

[Strings] 
Provider = "Escher 3D"
DriverPackageDisplayName = "Duet3D USB driver"
DUET = "Duet 3D printer control electronics with pre-1.18 firmware"
DUET06 = "Duet 06 or 085 3D printer control electronics"
DUETNG = "Duet WiFi or Ethernet 3D printer control electronics"
Serial.SvcDesc = "USB Serial emulation driver" 
BOSSAPORT = "Bossa Program Port"

[DefaultInstall]
CopyINF = duet.inf

[Version] 
Signature   = "$Windows NT$" 
Class       = Ports 
ClassGuid   = {4D36E978-E325-11CE-BFC1-08002BE10318} 
DriverPackageDisplayName = %DriverPackageDisplayName%
Provider    = %Provider% 
CatalogFile = duetinf.cat
DriverVer   = 04/07/2017,1.18.0.0	; date in US format

[Manufacturer] 
%Provider% = DeviceList, NTAMD64, NT 

[DestinationDirs] 
DefaultDestDir = 12 
FakeModemCopyFileSection = 12 

[DeviceList] 
%BOSSAPORT% = DriverInstall, USB\VID_03EB&PID_6124
%DUET% = DriverInstall, USB\VID_03EB&PID_2404 
%DUET06% = DriverInstall, USB\VID_1209&PID_60EC 
%DUETNG% = DriverInstall, USB\VID_1209&PID_60ED 

[DeviceList.NTAMD64]
%BOSSAPORT% = DriverInstall, USB\VID_03EB&PID_6124
%DUET% = DriverInstall.NTamd64, USB\VID_03EB&PID_2404 
%DUET06% = DriverInstall.NTamd64, USB\VID_1209&PID_60EC 
%DUETNG% = DriverInstall.NTamd64, USB\VID_1209&PID_60ED 

[DeviceList.NT]
%BOSSAPORT% = DriverInstall, USB\VID_03EB&PID_6124
%DUET% = DriverInstall.NT, USB\VID_03EB&PID_2404 
%DUET06% = DriverInstall.NT, USB\VID_1209&PID_60EC 
%DUETNG% = DriverInstall.NT, USB\VID_1209&PID_60ED 

;------------------------------------------------------------
; Windows XP, Vista, Windows 7, Windows 8, Windows 10 - 32bit
;------------------------------------------------------------
[DriverInstall.NT] 
include = mdmcpq.inf,usb.inf
CopyFiles = FakeModemCopyFileSection
AddReg = DriverInstall.NT.AddReg 

[DriverInstall.NT.AddReg]
HKR,,DevLoader,,*ntkern 
HKR,,NTMPDriver,,usbser.sys 
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider" 

[DriverInstall.NT.Services] 
AddService = usbser, 0x00000002, DriverService.NT 

[DriverService.NT] 
DisplayName = %Serial.SvcDesc% 
ServiceType = 1 ; SERVICE_KERNEL_DRIVER 
StartType = 3 ; SERVICE_DEMAND_START 
ErrorControl = 1 ; SERVICE_ERROR_NORMAL 
ServiceBinary = %12%\usbser.sys 
LoadOrderGroup = Base 

;------------------------------------------------------------
; Windows XP, Vista, Windows 7, Windows 8, Windows 10 - 64bit
;------------------------------------------------------------
[DriverInstall.NTamd64]
include = mdmcpq.inf,usb.inf
CopyFiles = FakeModemCopyFileSection
AddReg = DriverInstall.NTamd64.AddReg

[DriverInstall.NTamd64.AddReg]
HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,usbser.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"

[DriverInstall.NTamd64.Services]
AddService = usbser, 0x00000002, DriverService.NTamd64

[DriverService.NTamd64]
DisplayName = %Serial.SvcDesc%
ServiceType = 1 ; SERVICE_KERNEL_DRIVER 
StartType = 3 ; SERVICE_DEMAND_START 
ErrorControl = 1 ; SERVICE_ERROR_NORMAL 
ServiceBinary = %12%\usbser.sys

; End