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>2019-02-16 16:16:47 +0300
committerDavid Crocker <dcrocker@eschertech.com>2019-02-16 16:16:47 +0300
commit4ee7439bc98318a8bafcd10eec0067a0a2459bb4 (patch)
treed287806742abe6977111850a2fdb093e84d945df /src/Heating/TemperatureError.h
parent60a88389fc12b5a1948b392972818ac64d31e728 (diff)
Changes for 2.03beta2
Fixed 12864 display scrolling when the folder included filenames starting with '.' Fixed remaining M105 status response when M997 S1 sent from USB Fixed firmware update messages getting erased on PanelDue during M997 S1 Increased temperature samplinf rate to 4 samples/sec Removed M135 command M203 Inn sets minimum movement speed M203 now reports speeds in mm/sec M208 reports error if min >= max Allow hex inputs anywhere in G/M code parameters where an unsigned value is required Requested fan speed is now scaled by the M106 X parameter Bug fix: M408 Sn was hanging for N>5 Fix leadscrew adjustment bug introduced in 2.03beta1 Shrunk the DDA and Tool structures to reduce RAM usage M111 Sn for n != 0 now requires a P parameter M574 allows endstop input numbers to be configured (C parameter). Currently only the first input number specified for each axis is monitored.
Diffstat (limited to 'src/Heating/TemperatureError.h')
-rw-r--r--src/Heating/TemperatureError.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Heating/TemperatureError.h b/src/Heating/TemperatureError.h
index 4f7aa241..3fa5cb1f 100644
--- a/src/Heating/TemperatureError.h
+++ b/src/Heating/TemperatureError.h
@@ -21,12 +21,15 @@ enum class TemperatureError : uint8_t
timeout,
ioError,
hardwareError,
+ notReady,
busBusy,
badResponse,
unknownChannel,
notInitialised,
unknownHeater,
- overOrUnderVoltage
+ overOrUnderVoltage,
+ badVref,
+ badVssa
};
const char* TemperatureErrorString(TemperatureError err);