Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/Duet
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2016-11-12 21:40:20 +0300
committerDavid Crocker <dcrocker@eschertech.com>2016-11-12 21:40:28 +0300
commit35a9a1a7074858f7784c362bc291809a88ea5f4a (patch)
tree162fbbb796a6820d76e4c64aad508b49d9295337 /src/Duet
parent500a5df6f117802473b61259725f9e3c413e7d9a (diff)
Version 1.17-dev1
Support R and S parameters in M109 and M190 as Marlin does Added support for M191 Added support for Steinhart-Hart C parameter Thermistor disconnected threshold now depends on thermistor parameters
Diffstat (limited to 'src/Duet')
-rw-r--r--src/Duet/Pins_Duet.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Duet/Pins_Duet.h b/src/Duet/Pins_Duet.h
index 6e2a2d91..c097a01a 100644
--- a/src/Duet/Pins_Duet.h
+++ b/src/Duet/Pins_Duet.h
@@ -38,10 +38,8 @@ const size_t NUM_SERIAL_CHANNELS = 3; // The number of serial IO channels (USB
// DRIVES
const Pin ENABLE_PINS[DRIVES] = { 29, 27, X1, X0, 37, X8, 50, 47, X13 };
-const bool ENABLE_VALUES[DRIVES] = { false, false, false, false, false, false, false, false, false }; // What to send to enable a drive
const Pin STEP_PINS[DRIVES] = { 14, 25, 5, X2, 41, 39, X4, 49, X10 };
const Pin DIRECTION_PINS[DRIVES] = { 15, 26, 4, X3, 35, 53, 51, 48, X11 };
-const bool DIRECTIONS[DRIVES] = { BACKWARDS, FORWARDS, FORWARDS, FORWARDS, FORWARDS, FORWARDS, FORWARDS, FORWARDS, FORWARDS }; // What each axis needs to make it go forwards - defaults
// Endstops
// RepRapFirmware only has a single endstop per axis.
@@ -67,11 +65,13 @@ const Pin HEAT_ON_PINS[HEATERS] = { 6, X5, X7, 7, 8, 9, X17 }; // Heater Chann
// Hot end thermistor: http://www.digikey.co.uk/product-search/en?x=20&y=11&KeyWords=480-3137-ND
const float BED_R25 = 10000.0;
const float BED_BETA = 3988.0;
+const float BED_SHC = 0.0;
const float EXT_R25 = 100000.0;
-const float EXT_BETA = 4138.0;
+const float EXT_BETA = 4388.0;
+const float EXT_SHC = 0.0;
// Thermistor series resistor value in Ohms
-const float THERMISTOR_SERIES_RS = 1000.0;
+const float THERMISTOR_SERIES_RS = 4700.0;
// Number of SPI temperature sensors to support