Skip to content

Commit 123c231

Browse files
committed
Fixed driver signature for Adafruit Playground
See #5762
1 parent 548320f commit 123c231

File tree

3 files changed

+108
-106
lines changed

3 files changed

+108
-106
lines changed
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,107 +1,109 @@
1-
;************************************************************
2-
; Windows USB CDC ACM Setup File
3-
; Copyright (c) 2000 Microsoft Corporation
4-
5-
6-
[Version]
7-
Signature="$Windows NT$"
8-
Class=Ports
9-
ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318}
10-
Provider=%MFGNAME%
11-
LayoutFile=layout.inf
12-
CatalogFile=%MFGFILENAME%.cat
13-
DriverVer=11/15/2007,5.1.2600.0
14-
15-
[Manufacturer]
16-
%MFGNAME%=DeviceList, NTamd64
17-
18-
[DestinationDirs]
19-
DefaultDestDir=12
20-
21-
22-
;------------------------------------------------------------------------------
23-
; Windows 2000/XP/Vista-32bit Sections
24-
;------------------------------------------------------------------------------
25-
26-
[DriverInstall.nt]
27-
include=mdmcpq.inf
28-
CopyFiles=DriverCopyFiles.nt
29-
AddReg=DriverInstall.nt.AddReg
30-
31-
[DriverCopyFiles.nt]
32-
usbser.sys,,,0x20
33-
34-
[DriverInstall.nt.AddReg]
35-
HKR,,DevLoader,,*ntkern
36-
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
37-
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
38-
39-
[DriverInstall.nt.Services]
40-
AddService=usbser, 0x00000002, DriverService.nt
41-
42-
[DriverService.nt]
43-
DisplayName=%SERVICE%
44-
ServiceType=1
45-
StartType=3
46-
ErrorControl=1
47-
ServiceBinary=%12%\%DRIVERFILENAME%.sys
48-
49-
;------------------------------------------------------------------------------
50-
; Vista-64bit Sections
51-
;------------------------------------------------------------------------------
52-
53-
[DriverInstall.NTamd64]
54-
include=mdmcpq.inf
55-
CopyFiles=DriverCopyFiles.NTamd64
56-
AddReg=DriverInstall.NTamd64.AddReg
57-
58-
[DriverCopyFiles.NTamd64]
59-
%DRIVERFILENAME%.sys,,,0x20
60-
61-
[DriverInstall.NTamd64.AddReg]
62-
HKR,,DevLoader,,*ntkern
63-
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
64-
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
65-
66-
[DriverInstall.NTamd64.Services]
67-
AddService=usbser, 0x00000002, DriverService.NTamd64
68-
69-
[DriverService.NTamd64]
70-
DisplayName=%SERVICE%
71-
ServiceType=1
72-
StartType=3
73-
ErrorControl=1
74-
ServiceBinary=%12%\%DRIVERFILENAME%.sys
75-
76-
77-
;------------------------------------------------------------------------------
78-
; Vendor and Product ID Definitions
79-
;------------------------------------------------------------------------------
80-
; When developing your USB device, the VID and PID used in the PC side
81-
; application program and the firmware on the microcontroller must match.
82-
; Modify the below line to use your VID and PID. Use the format as shown below.
83-
; Note: One INF file can be used for multiple devices with different VID and PIDs.
84-
; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line.
85-
;------------------------------------------------------------------------------
86-
[SourceDisksFiles]
87-
[SourceDisksNames]
88-
[DeviceList]
89-
%DESCRIPTION%=DriverInstall, USB\VID_239A&PID_0011
90-
%DESCRIPTION%=DriverInstall, USB\VID_239A&PID_8011&MI_00
91-
92-
[DeviceList.NTamd64]
93-
%DESCRIPTION%=DriverInstall, USB\VID_239A&PID_0011
94-
%DESCRIPTION%=DriverInstall, USB\VID_239A&PID_8011&MI_00
95-
96-
;------------------------------------------------------------------------------
97-
; String Definitions
98-
;------------------------------------------------------------------------------
99-
;Modify these strings to customize your device
100-
;------------------------------------------------------------------------------
101-
[Strings]
102-
MFGFILENAME="CDC_vista"
103-
DRIVERFILENAME ="usbser"
104-
MFGNAME="Adafruit Industries LLC"
105-
INSTDISK="Circuit Playground Driver Installer"
106-
DESCRIPTION="Adafruit Circuit Playground"
1+
;************************************************************
2+
; Windows USB CDC ACM Setup File
3+
; Copyright (c) 2000 Microsoft Corporation
4+
; For Adafruit Circuit Playground Board by Adafruit Industries LLC 2016
5+
6+
[Version]
7+
Signature="$Windows NT$"
8+
Class=Ports
9+
ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318}
10+
Provider=%MFGNAME%
11+
LayoutFile=layout.inf
12+
CatalogFile=%MFGFILENAME%.cat
13+
DriverVer=02/25/2016,6.2.2600.0
14+
15+
[Manufacturer]
16+
%MFGNAME%=DeviceList, NTamd64
17+
18+
[DestinationDirs]
19+
DefaultDestDir=12
20+
21+
[DefaultInstall]
22+
CopyINF="AdafruitCircuitPlayground.inf"
23+
24+
;------------------------------------------------------------------------------
25+
; Windows 2000/XP/Vista/Win7/Win8/Win8.1/Win10 32 bit Sections
26+
;------------------------------------------------------------------------------
27+
28+
[DriverInstall.nt]
29+
include=mdmcpq.inf
30+
CopyFiles=DriverCopyFiles.nt
31+
AddReg=DriverInstall.nt.AddReg
32+
33+
[DriverCopyFiles.nt]
34+
usbser.sys,,,0x20
35+
36+
[DriverInstall.nt.AddReg]
37+
HKR,,DevLoader,,*ntkern
38+
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
39+
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
40+
41+
[DriverInstall.nt.Services]
42+
AddService=usbser, 0x00000002, DriverService.nt
43+
44+
[DriverService.nt]
45+
DisplayName=%SERVICE%
46+
ServiceType=1
47+
StartType=3
48+
ErrorControl=1
49+
ServiceBinary=%12%\%DRIVERFILENAME%.sys
50+
51+
;------------------------------------------------------------------------------
52+
; Vista/Win7/Win8/Win8.1/Win10 64 bit Sections
53+
;------------------------------------------------------------------------------
54+
55+
[DriverInstall.NTamd64]
56+
include=mdmcpq.inf
57+
CopyFiles=DriverCopyFiles.NTamd64
58+
AddReg=DriverInstall.NTamd64.AddReg
59+
60+
[DriverCopyFiles.NTamd64]
61+
%DRIVERFILENAME%.sys,,,0x20
62+
63+
[DriverInstall.NTamd64.AddReg]
64+
HKR,,DevLoader,,*ntkern
65+
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
66+
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
67+
68+
[DriverInstall.NTamd64.Services]
69+
AddService=usbser, 0x00000002, DriverService.NTamd64
70+
71+
[DriverService.NTamd64]
72+
DisplayName=%SERVICE%
73+
ServiceType=1
74+
StartType=3
75+
ErrorControl=1
76+
ServiceBinary=%12%\%DRIVERFILENAME%.sys
77+
78+
;------------------------------------------------------------------------------
79+
; Vendor and Product ID Definitions
80+
;------------------------------------------------------------------------------
81+
; When developing your USB device, the VID and PID used in the PC side
82+
; application program and the firmware on the microcontroller must match.
83+
; Modify the below line to use your VID and PID. Use the format as shown below.
84+
; Note: One INF file can be used for multiple devices with different VID and PIDs.
85+
; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line.
86+
;------------------------------------------------------------------------------
87+
[SourceDisksFiles]
88+
[SourceDisksNames]
89+
[DeviceList]
90+
%DESCRIPTION%=DriverInstall, USB\VID_239A&PID_0011
91+
%DESCRIPTION%=DriverInstall, USB\VID_239A&PID_8011&MI_00
92+
93+
[DeviceList.NTamd64]
94+
%DESCRIPTION%=DriverInstall, USB\VID_239A&PID_0011
95+
%DESCRIPTION%=DriverInstall, USB\VID_239A&PID_8011&MI_00
96+
97+
;------------------------------------------------------------------------------
98+
; String Definitions
99+
;------------------------------------------------------------------------------
100+
; Modify these strings to customize your device
101+
; NOTE: Do not put spaces in %MFGFILENAME% to maintain Windows 7 compatibility
102+
;------------------------------------------------------------------------------
103+
[Strings]
104+
MFGFILENAME="AdafruitCircuitPlayground"
105+
DRIVERFILENAME ="usbser"
106+
MFGNAME="Adafruit Industries LLC"
107+
INSTDISK="Circuit Playground Board Driver Installer"
108+
DESCRIPTION="Adafruit Circuit Playground"
107109
SERVICE="USB RS-232 Emulation Driver"
-6.93 KB
Binary file not shown.

0 commit comments

Comments
 (0)