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
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2017-10-02 22:29:20 +0300
committerDavid Crocker <dcrocker@eschertech.com>2017-10-02 22:29:39 +0300
commitf437e684e7dd4c991b29ffb2b93db7595c5da05e (patch)
tree83147e0042716b8d3e94249aefb517b5e7457549 /src/Configuration.h
parenta81c95e559cf98e37da3105debccb75f63693ee6 (diff)
Version 1.20beta1
Added support for M3, M4, M5 and M450-M453 Added support for DHT11, DHT21 and DHT22 temperature/humidity sensors (thanks chrishamm) Some additional events are now logged The grid defined by M557 is now stored separately from the grid loaded by G29 S1 so that they don't overwrite each other The resurrect.g file is no longer created or deleted during a simulated print SCARA prints are simulated without segmentation so that the simulation runs much faster. In tests, the difference in the simulation time with/without segmentation was negligible. The change to fast PID parameters is now made when the temperature is within 3C of the target instead of when within 1C M408 S1/2/3 responses now include dummy values for the bed heater if there is no bed heater The commands to resume printing that are written to resurrect.g now move the head to 2mm above the printing height, then sideways, then down Bug fixes: If a Duet3D filament sensor was connected and congfigured but flashing an error code instead of sending filament data, the error recovery code running on the Duet caused short pauses in the print On a delta printer if you created additonal axes, when you tried to home them it ran homedelta.g instead of e.g. homeu.g On a delta printer with additional axes, you can now do XYZ moves as soon as the towers have been homed Fixed a possible race condition if the time and date were set at midnight The 4-leadscrew auto/4-screw manual bed levelling code didn't work properly The P parameter was missing from G10 commands written to resurrect.g Arm angle limits are now applied when converting Cartesian to SCARA coordinates The correction limit is no longer applied when computing manual bed levelling screw corrections SCARA arm mode changes are now only permitted in uncoordinated (G0) moves
Diffstat (limited to 'src/Configuration.h')
-rw-r--r--src/Configuration.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Configuration.h b/src/Configuration.h
index dc4b369d..5d641841 100644
--- a/src/Configuration.h
+++ b/src/Configuration.h
@@ -111,6 +111,8 @@ constexpr unsigned int FirstMax31855ThermocoupleChannel = 100; // Temperature se
constexpr unsigned int FirstMax31856ThermocoupleChannel = 150; // Temperature sensor channels 150... are MAX31856 thermocouples
constexpr unsigned int FirstRtdChannel = 200; // Temperature sensor channels 200... are RTDs
constexpr unsigned int FirstLinearAdcChannel = 300; // Temperature sensor channels 300... use an ADC that provides a linear output over a temperature range
+constexpr unsigned int DhtTemperatureChannel = 400; // Temperature sensor channel 400 for DHTxx temperature
+constexpr unsigned int DhtHumidityChannel = 401; // Temperature sensor channel 401 for DHTxx humidity
constexpr unsigned int CpuTemperatureSenseChannel = 1000; // Sensor 1000 is the MCJU's own temperature sensor
constexpr unsigned int FirstTmcDriversSenseChannel = 1001; // Sensors 1001..1002 are the TMC2660 driver temperature sense
constexpr unsigned int NumTmcDriversSenseChannels = 2; // Sensors 1001..1002 are the TMC2660 driver temperature sense
@@ -198,6 +200,10 @@ constexpr float FILAMENT_WIDTH = 1.75; // Millimetres
constexpr unsigned int MaxStackDepth = 5; // Maximum depth of stack
+// CNC and laser support
+constexpr float DefaultMaxSpindleRpm = 10000; // Default spindle RPM at full PWM
+constexpr float DefaultMaxLaserPower = 255.0; // Power setting in M3 command for full power
+
// Webserver stuff
#define DEFAULT_PASSWORD "reprap" // Default machine password