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/DuetM
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2019-10-08 21:01:06 +0300
committerDavid Crocker <dcrocker@eschertech.com>2019-10-08 21:01:06 +0300
commitad9f1d3e8e3585d286a9042b0e071a15f477825e (patch)
tree875bd94696c05814c495cdcb1faff67f7fe36486 /src/DuetM
parent4248a4e898a846c3fbfdcc2d6c2177f3b37e55e2 (diff)
Various
Support fan tachos on expansion boards Fix SHA1 value display bug Add DotStar support to Duet 3 v0.6 Support CRC32 checking of uploaded files Include spindle speeds in restore points Reduced memory usage in Duet 2 builds Minor improvements to thermistor handling FansManager class is no longer attached to Platform Removed duplicate CRC32 functionality Fixed W5500 network code startup issue
Diffstat (limited to 'src/DuetM')
-rw-r--r--src/DuetM/Pins_DuetM.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/DuetM/Pins_DuetM.h b/src/DuetM/Pins_DuetM.h
index 15cf38e0..c3cd3b6f 100644
--- a/src/DuetM/Pins_DuetM.h
+++ b/src/DuetM/Pins_DuetM.h
@@ -120,7 +120,8 @@ constexpr float EXT_BETA = 4388.0;
constexpr float EXT_SHC = 0.0;
// Thermistor series resistor value in Ohms
-constexpr float THERMISTOR_SERIES_RS = 2200.0;
+constexpr float DefaultThermistorSeriesR = 2200.0;
+constexpr float MinVrefLoadR = DefaultThermistorSeriesR / 4; // there are 4 temperature sensing channels
// Number of SPI temperature sensors to support
constexpr size_t MaxSpiTempSensors = 2;