Minor adjustments to temperature controls (and a typo fix).

This commit is contained in:
Rob Giseburt
2017-02-01 20:58:29 -06:00
parent 1350523c37
commit 2a092bf03f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -82,7 +82,7 @@
// TEMP_MIN_RISE_TIME milliseconds, then it's a failure (the sensor is likely
// physically dislocated.)
#ifndef TEMP_MIN_RISE_DEGREES_OVER_TIME
#define TEMP_MIN_RISE_DEGREES_OVER_TIME (float)5.0
#define TEMP_MIN_RISE_DEGREES_OVER_TIME (float)10.0
#endif
#ifndef TEMP_MIN_RISE_TIME
#define TEMP_MIN_RISE_TIME (float)(60.0 * 1000.0) // 20 seconds
+1 -1
View File
@@ -53,7 +53,7 @@ stat_t cm_get_pid_d(nvObj_t* nv);
float cm_get_set_temperature(const uint8_t heater);
stat_t cm_get_set_temperature(nvObj_t* nv);
void cm_set_set_temperature(const uint8_t heater, const float valoue);
void cm_set_set_temperature(const uint8_t heater, const float value);
stat_t cm_set_set_temperature(nvObj_t* nv);
float cm_get_fan_power(const uint8_t heater);