-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathmEDBG_Virtual_Com_Port.inf
93 lines (73 loc) · 2.65 KB
/
mEDBG_Virtual_Com_Port.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
; Windows 2000, XP & Vista setup File for XPLAINED Boards.
; Copyright (c) 2000 Microsoft Corporation
; Copyright (C) 2007 ATMEL, Inc.
[Version]
Signature="$Windows NT$"
Class=Ports
ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318}
CatalogFile=atmelinf.cat
Provider=%ATMEL%
DriverVer=06/14/2013,6.0.0.1
;----------------------------------------------------------
; Targets
;----------------------------------------------------------
[Manufacturer]
%ATMEL%=ATMEL, NTamd64
[ATMEL]
%ATMEL_CDC%=Reader, USB\VID_03EB&PID_2145&MI_01
%ARDUINO_NANO_EVERY_CDC%=Reader, USB\VID_2341&PID_0058
[ATMEL.NTamd64]
%ATMEL_CDC%=DriverInstall, USB\VID_03EB&PID_2145&MI_01
%ARDUINO_NANO_EVERY_CDC%=Reader, USB\VID_2341&PID_0058
;----------------------------------------------------------
; Windows 2K, XP, and Vista32
;----------------------------------------------------------
[DestinationDirs]
DefaultDestDir=12
FakeModemCopyFileSection=12
[Reader.NT]
include=mdmcpq.inf
CopyFiles=FakeModemCopyFileSection
AddReg=Reader.NT.AddReg
[Reader.NT.AddReg]
HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,usbser.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
HKR,,Properties, 1, 80,01,00,00, ff,00,00,00, ff,00,00,00, 07,00,00,00, 0f,00,00,00, f7,03,00,00, 40,4b,4c,00, 40,4b,4c,00
[Reader.NT.Services]
AddService = usbser, 0x00000002, Service_Inst
[Service_Inst]
DisplayName = %Serial.SvcDesc%
ServiceType = 1 ; SERVICE_KERNEL_DRIVER
StartType = 3 ; SERVICE_DEMAND_START
ErrorControl = 1 ; SERVICE_ERROR_NORMAL
ServiceBinary = %12%\usbser.sys
LoadOrderGroup = Base
;----------------------------------------------------------
; Vista64
;----------------------------------------------------------
[DriverInstall.NTamd64]
include=mdmcpq.inf
CopyFiles=FakeModemCopyFileSection
AddReg=DriverInstall.NTamd64.AddReg
[DriverInstall.NTamd64.AddReg]
HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,usbser.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
HKR,,Properties, 1, 80,01,00,00, ff,00,00,00, ff,00,00,00, 07,00,00,00, 0f,00,00,00, f7,03,00,00, 40,4b,4c,00, 40,4b,4c,00
[DriverInstall.NTamd64.Services]
AddService=usbser, 0x00000002, DriverService.NTamd64
[DriverService.NTamd64]
DisplayName=%Serial.SvcDesc%
ServiceType=1
StartType=3
ErrorControl=1
ServiceBinary=%12%\usbser.sys
;----------------------------------------------------------
; String
;----------------------------------------------------------
[Strings]
ATMEL = "Atmel Corp."
ATMEL_CDC = "mEDBG Virtual COM Port"
ARDUINO_NANO_EVERY_CDC = "Arduino NANO Every"
Serial.SvcDesc = "USB Serial emulation driver"