Version 1.19beta4

Disabled open load detection
This commit is contained in:
David Crocker 2017-06-01 10:14:20 +01:00
parent eac261c6a2
commit b57915b7c6
4 changed files with 3 additions and 3 deletions

View file

@ -1393,7 +1393,7 @@ void Platform::Spin()
bool reported = false; bool reported = false;
ReportDrivers(shortToGroundDrivers, "Error: Short-to-ground", reported); ReportDrivers(shortToGroundDrivers, "Error: Short-to-ground", reported);
ReportDrivers(temperatureShutdownDrivers, "Error: Over temperature shutdown", reported); ReportDrivers(temperatureShutdownDrivers, "Error: Over temperature shutdown", reported);
ReportDrivers(openLoadDrivers, "Error: Open load", reported); // ReportDrivers(openLoadDrivers, "Error: Open load", reported);
// Don't want about a hot driver if we recently turned on a fan to cool it // Don't want about a hot driver if we recently turned on a fan to cool it
if (temperatureWarningDrivers != 0) if (temperatureWarningDrivers != 0)

View file

@ -9,11 +9,11 @@
#define SRC_VERSION_H_ #define SRC_VERSION_H_
#ifndef VERSION #ifndef VERSION
# define VERSION "1.19beta3" # define VERSION "1.19beta4"
#endif #endif
#ifndef DATE #ifndef DATE
# define DATE "2017-05-31" # define DATE "2017-06-01"
#endif #endif
#define AUTHORS "reprappro, dc42, chrishamm, t3p3, dnewman" #define AUTHORS "reprappro, dc42, chrishamm, t3p3, dnewman"