-
Notifications
You must be signed in to change notification settings - Fork 0
/
lpc134x-vcom_64.inf
127 lines (95 loc) · 4.03 KB
/
lpc134x-vcom_64.inf
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
;---------------------------------------------------------------------------------------
; Windows USB CDC Driver Setup File for ATMEL AT91SAM products
; Improved by Pavel K, [email protected]
;---------------------------------------------------------------------------------------
[Version]
Signature= "$Windows NT$"; Windows 200 and later versions
Class= Ports; This is a serial port driver
ClassGuid= {4D36E978-E325-11CE-BFC1-08002BE10318}
Provider= %Keil%
DriverVer= 09/25/2009,1.0.0.0; Driver version 1.0.0.0 published on 25 September 2009
[Manufacturer]
%DriverProvider%= DeviceList, NT, NTia64, NTamd64
[DestinationDirs]
DefaultDestDir= 12; Default install directory is \drivers or \IOSubSys
[DeviceList.NT]
%Description%= DriverInstall,USB\VID_03EB&PID_6124
%Description%= LPC134xUSB, USB\VID_239A&PID_1002
[DeviceList.NTia64]
%Description%= DriverInstall,USB\VID_03EB&PID_6124
%Description%= LPC134xUSB, USB\VID_239A&PID_1002
[DeviceList.NTamd64]
%Description%= DriverInstall,USB\VID_03EB&PID_6124
%Description%= LPC134xUSB, USB\VID_239A&PID_1002
;---------------------------------------------------------------------------------------
; 32 bit section for Windows 2000/2003/XP/Vista/7
;---------------------------------------------------------------------------------------
[LPC134xUSB.nt]
include=mdmcpq.inf
CopyFiles=DriverCopyFiles
AddReg=LPC134xUSB.nt.AddReg
[DriverCopyFiles]
usbser.sys,,,0x20
[LPC134xUSB.nt.AddReg]
HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,usbser.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
[LPC134xUSB.nt.Services]
include=mdmcpq.inf
AddService=usbser, 0x00000002, DriverService
[LPC134xUSB.nt.HW]
include=mdmcpq.inf
[DriverService]
DisplayName=%DESCRIPTION%
ServiceType=1
StartType=3
ErrorControl=1
ServiceBinary=%12%\usbser.sys
;---------------------------------------------------------------------------------------
; 64 bit section for Intel Itanium based systems
;---------------------------------------------------------------------------------------
[DriverInstall.NTia64]
include= mdmcpq.inf
CopyFiles= DriverInstall.NTia64.Files
AddReg= DriverInstall.NTia64.AddReg
[DriverInstall.NTia64.Files]
usbser.sys,,,0x20
[DriverInstall.NTia64.AddReg]
HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,usbser.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
[DriverInstall.NTia64.Services]
AddService=usbser,0x00000002,usbser_sys_service
;---------------------------------------------------------------------------------------
; 64 bit section for AMD64 and Intel EM64T based systems
;---------------------------------------------------------------------------------------
[DriverInstall.NTamd64]
include= mdmcpq.inf
CopyFiles= DriverInstall.NTamd64.Files
AddReg= DriverInstall.NTamd64.AddReg
[DriverInstall.NTamd64.Files]
usbser.sys,,,0x20
[DriverInstall.NTamd64.AddReg]
HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,usbser.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
[DriverInstall.NTamd64.Services]
AddService= usbser,0x00000002,usbser_sys_service
;---------------------------------------------------------------------------------------
; usbser.sys service
;---------------------------------------------------------------------------------------
[usbser_sys_service]
DisplayName= %ServiceDescription%
ServiceType= 1; SERVICE_KERNEL_DRIVER, Service kernel driver
StartType= 3; SERVICE_DEMAND_START, Driver is started by the PnP manager
ErrorControl= 1; SERVICE_ERROR_NORMAL, Warn about errors
ServiceBinary= %12%\usbser.sys
LoadOrderGroup = Base
;---------------------------------------------------------------------------------------
; strings
;---------------------------------------------------------------------------------------
[Strings]
DriverProvider= "Microsoft"
NXP="NXP - Founded by Philips"
DESCRIPTION="LPC134x USB VCom Port"
;---------------------------------------------------------------------------------------