Skip to content

Add drivers originally bundled with Java IDE directly in the core #442

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Dec 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added drivers/AdafruitCircuitPlayground.cat
Binary file not shown.
109 changes: 109 additions & 0 deletions drivers/AdafruitCircuitPlayground.inf
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
;************************************************************
; Windows USB CDC ACM Setup File
; Copyright (c) 2000 Microsoft Corporation
; For Adafruit Circuit Playground Board by Adafruit Industries LLC 2016

[Version]
Signature="$Windows NT$"
Class=Ports
ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318}
Provider=%MFGNAME%
LayoutFile=layout.inf
CatalogFile=%MFGFILENAME%.cat
DriverVer=02/25/2016,6.2.2600.0

[Manufacturer]
%MFGNAME%=DeviceList, NTamd64

[DestinationDirs]
DefaultDestDir=12

[DefaultInstall]
CopyINF="AdafruitCircuitPlayground.inf"

;------------------------------------------------------------------------------
; Windows 2000/XP/Vista/Win7/Win8/Win8.1/Win10 32 bit Sections
;------------------------------------------------------------------------------

[DriverInstall.nt]
include=mdmcpq.inf
CopyFiles=DriverCopyFiles.nt
AddReg=DriverInstall.nt.AddReg

[DriverCopyFiles.nt]
usbser.sys,,,0x20

[DriverInstall.nt.AddReg]
HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"

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

[DriverService.nt]
DisplayName=%SERVICE%
ServiceType=1
StartType=3
ErrorControl=1
ServiceBinary=%12%\%DRIVERFILENAME%.sys

;------------------------------------------------------------------------------
; Vista/Win7/Win8/Win8.1/Win10 64 bit Sections
;------------------------------------------------------------------------------

[DriverInstall.NTamd64]
include=mdmcpq.inf
CopyFiles=DriverCopyFiles.NTamd64
AddReg=DriverInstall.NTamd64.AddReg

[DriverCopyFiles.NTamd64]
%DRIVERFILENAME%.sys,,,0x20

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

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

[DriverService.NTamd64]
DisplayName=%SERVICE%
ServiceType=1
StartType=3
ErrorControl=1
ServiceBinary=%12%\%DRIVERFILENAME%.sys

;------------------------------------------------------------------------------
; Vendor and Product ID Definitions
;------------------------------------------------------------------------------
; When developing your USB device, the VID and PID used in the PC side
; application program and the firmware on the microcontroller must match.
; Modify the below line to use your VID and PID. Use the format as shown below.
; Note: One INF file can be used for multiple devices with different VID and PIDs.
; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line.
;------------------------------------------------------------------------------
[SourceDisksFiles]
[SourceDisksNames]
[DeviceList]
%DESCRIPTION%=DriverInstall, USB\VID_239A&PID_0011
%DESCRIPTION%=DriverInstall, USB\VID_239A&PID_8011&MI_00

[DeviceList.NTamd64]
%DESCRIPTION%=DriverInstall, USB\VID_239A&PID_0011
%DESCRIPTION%=DriverInstall, USB\VID_239A&PID_8011&MI_00

;------------------------------------------------------------------------------
; String Definitions
;------------------------------------------------------------------------------
; Modify these strings to customize your device
; NOTE: Do not put spaces in %MFGFILENAME% to maintain Windows 7 compatibility
;------------------------------------------------------------------------------
[Strings]
MFGFILENAME="AdafruitCircuitPlayground"
DRIVERFILENAME ="usbser"
MFGNAME="Adafruit Industries LLC"
INSTDISK="Circuit Playground Board Driver Installer"
DESCRIPTION="Adafruit Circuit Playground"
SERVICE="USB RS-232 Emulation Driver"
Binary file added drivers/FTDI USB Drivers/Static/amd64/ftd2xx.lib
Binary file not shown.
Binary file added drivers/FTDI USB Drivers/Static/i386/ftd2xx.lib
Binary file not shown.
Binary file added drivers/FTDI USB Drivers/amd64/ftbusui.dll
Binary file not shown.
Binary file added drivers/FTDI USB Drivers/amd64/ftcserco.dll
Binary file not shown.
Binary file added drivers/FTDI USB Drivers/amd64/ftd2xx.lib
Binary file not shown.
Binary file added drivers/FTDI USB Drivers/amd64/ftd2xx64.dll
Binary file not shown.
Binary file added drivers/FTDI USB Drivers/amd64/ftdibus.sys
Binary file not shown.
Binary file added drivers/FTDI USB Drivers/amd64/ftlang.dll
Binary file not shown.
Binary file added drivers/FTDI USB Drivers/amd64/ftser2k.sys
Binary file not shown.
Binary file added drivers/FTDI USB Drivers/amd64/ftserui2.dll
Binary file not shown.
Loading