-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into r2axz-config-interface
- Loading branch information
Showing
7 changed files
with
99 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,3 +30,6 @@ jobs: | |
path: | | ||
*.hex | ||
*.bin | ||
inf/*.inf | ||
inf/*.cat | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,3 +32,5 @@ jobs: | |
README.md | ||
*.bin | ||
*.hex | ||
inf/*.inf | ||
inf/*.cat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,3 +31,5 @@ jobs: | |
README.md | ||
*.bin | ||
*.hex | ||
inf/*.inf | ||
inf/*.cat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
; Windows USB CDC ACM Setup File | ||
|
||
; Based on INF template which was: | ||
; Copyright (c) 2000 Microsoft Corporation | ||
; Copyright (c) 2007 Microchip Technology Inc. | ||
; likely to be covered by the MLPL as found at: | ||
; <http://msdn.microsoft.com/en-us/cc300389.aspx#MLPL>. | ||
; For use only on Windows operating systems. | ||
|
||
[Version] | ||
Signature = "$Windows NT$" | ||
Class = Ports | ||
ClassGuid = {4D36E978-E325-11CE-BFC1-08002BE10318} | ||
Provider = %PROVIDER% | ||
CatalogFile = bluepill-serial-monster.cat | ||
DriverVer = 11/19/2020,1.0.0.0 | ||
PnpLockdown = 1 | ||
|
||
[SourceDisksNames] | ||
|
||
[SourceDisksFiles] | ||
|
||
[Manufacturer] | ||
%MANUFACTURER% = DeviceList,NT,NTamd64 | ||
|
||
[DestinationDirs] | ||
DefaultDestDir = 12 | ||
|
||
[DeviceList.NT] | ||
%DESCRIPTION% = DriverInstall,USB\VID_1209&PID_FFFE&MI_00 | ||
%DESCRIPTION% = DriverInstall,USB\VID_1209&PID_FFFE&MI_02 | ||
%DESCRIPTION% = DriverInstall,USB\VID_1209&PID_FFFE&MI_04 | ||
|
||
[DeviceList.NTamd64] | ||
%DESCRIPTION% = DriverInstall,USB\VID_1209&PID_FFFE&MI_00 | ||
%DESCRIPTION% = DriverInstall,USB\VID_1209&PID_FFFE&MI_02 | ||
%DESCRIPTION% = DriverInstall,USB\VID_1209&PID_FFFE&MI_04 | ||
|
||
[DriverInstall.NT] | ||
Include = mdmcpq.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, DriverServiceInstall | ||
|
||
[DriverServiceInstall] | ||
DisplayName = %SERVICE% | ||
ServiceType = 1 | ||
StartType = 3 | ||
ErrorControl = 1 | ||
ServiceBinary = %12%\usbser.sys | ||
LoadOrderGroup = Base | ||
|
||
[FakeModemCopyFileSection] | ||
|
||
[Strings] | ||
PROVIDER = "Kirill Kotyagin" | ||
MANUFACTURER = "Kirill Kotyagin" | ||
DESCRIPTION = "Blue Pill Serial Monster" | ||
SERVICE = "Blue Pill Serial Monster" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters