forked from Duet3D/RepRapFirmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enhancements ========= Added support for RTD temperature sensors When cancelling a print, if cancel.g exists then run it instead of turning heaters off Improved file upload speed over the web interface Chamber heater is now exempted from timeout Pressure advance now reduces maximum extruder jerk setting by a smaller amount when the extruder steps/mm is high The Duet no longer reports itself as an Arduino Due and has its own Windows driver Added experimental "maximum average printing acceleration" feature Try to improve speed of getting file information in Print Monitor Bug fixes ====== Simulation mode was not working properly External driver support code sometimes failed to enable the associated drives Fixed potential overflow if a user attempted to use non-existent driver 9 on a Duet 0.6 M408 status requests were not handled when in simulation mode Removed hard coded PATH in project
- Loading branch information
Showing
21 changed files
with
325 additions
and
110 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
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
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
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,86 @@ | ||
; Windows 2000, XP, Vista, 7 and 8 (x32 and x64) setup file for Duet 3D printer control electronics | ||
; Copyright (c) 2000-2013 ATMEL, Inc. | ||
|
||
[Version] | ||
Signature = "$Windows NT$" | ||
Class = Ports | ||
ClassGuid = {4D36E978-E325-11CE-BFC1-08002BE10318} | ||
|
||
Provider = %Provider% | ||
CatalogFile = duetinf.cat | ||
DriverVer = 05/01/2016,1.12.0.0 | ||
|
||
;---------------------------------------------------------- | ||
; Targets | ||
;---------------------------------------------------------- | ||
[Manufacturer] | ||
%Provider%=DeviceList, NTAMD64, NT | ||
|
||
[DeviceList] | ||
%DUET%=DriverInstall, USB\VID_03EB&PID_2404 | ||
|
||
[DeviceList.NTAMD64] | ||
%DUET%=DriverInstall.NTamd64, USB\VID_03EB&PID_2404 | ||
|
||
[DeviceList.NT] | ||
%DUET%=DriverInstall.NT, USB\VID_03EB&PID_2404 | ||
|
||
;------------------------------------------------------------ | ||
; Windows XP, Vista, Windows 7, Windows 8, Windows 10 - 32bit | ||
;------------------------------------------------------------ | ||
[DestinationDirs] | ||
DefaultDestDir=12 | ||
FakeModemCopyFileSection=12 | ||
|
||
[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, DriverService.NT | ||
|
||
[DriverService.NT] | ||
DisplayName = %Serial.SvcDesc% | ||
ServiceType = 1 ; SERVICE_KERNEL_DRIVER | ||
StartType = 3 ; SERVICE_DEMAND_START | ||
ErrorControl = 1 ; SERVICE_ERROR_NORMAL | ||
ServiceBinary = %12%\usbser.sys | ||
LoadOrderGroup = Base | ||
|
||
;------------------------------------------------------------ | ||
; Windows XP, Vista, Windows 7, Windows 8, Windows 10 - 64bit | ||
;------------------------------------------------------------ | ||
[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" | ||
|
||
[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] | ||
Provider = "Duet 3D printer electronics driver" | ||
DUET = "Duet 3D printer control electronics" | ||
Serial.SvcDesc = "USB Serial emulation driver" | ||
|
Binary file not shown.
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,6 @@ | ||
rem CD to the RepRapFirmware root directory before running this | ||
"C:\Program Files (x86)\Windows Kits\10\bin\x86\Inf2Cat.exe" /driver:Driver /os:XP_X86,Vista_X86,Vista_X64,7_X86,7_X64,8_X86,8_X64,6_3_X86,6_3_X64,10_X86,10_X64 | ||
set PASSWORD= | ||
set /P PASSWORD=Private key password: %=% | ||
"C:\Program Files (x86)\Windows Kits\10\bin\x86\signtool.exe" sign /f g:\EscherTechnologies.p12 /p %PASSWORD% /tr http://timestamp.comodoca.com /v Driver/duetinf.cat | ||
"C:\Program Files (x86)\Windows Kits\10\bin\x86\signtool.exe" verify /pa /tw Driver/duetinf.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
Oops, something went wrong.