mirror of
https://github.com/sjlongland/cluster-powerctl.git
synced 2025-09-13 20:13:16 +10:00
setpoints: Tweak default set points.
- Thermal setpoint: the SOIC version of the microcontroller reads a little higher than the DIP version, so make it a little more forgiving. - Delta voltage can be a more forgiving too.
This commit is contained in:
parent
723d226399
commit
dd0f371b7c
@ -37,7 +37,7 @@
|
||||
* Temperature ranges and fan PWM settings
|
||||
*/
|
||||
#define TEMP_MIN (270 << 6) /*!< ~20°C, approx ADC reading */
|
||||
#define TEMP_MAX (300 << 6) /*!< ~30°C, approx ADC reading */
|
||||
#define TEMP_MAX (350 << 6) /*!< ~30°C, approx ADC reading */
|
||||
#define FAN_PWM_MIN (88) /*!< Minimum PWM value */
|
||||
#define FAN_PWM_MAX (255) /*!< Maximum PWM value */
|
||||
|
||||
@ -67,7 +67,7 @@
|
||||
* High battery voltage. If we reach this voltage and the charger
|
||||
* stops, just switch to discharge mode, consider the job done.
|
||||
*/
|
||||
#define V_H_MV (14600)
|
||||
#define V_H_MV (14000)
|
||||
|
||||
/*!
|
||||
* Low battery voltage. If the voltage dips to or below this level, we
|
||||
@ -87,7 +87,7 @@
|
||||
* the battery to have increased by before we consider flagging a
|
||||
* warning.
|
||||
*/
|
||||
#define V_DELTA_MV (250)
|
||||
#define V_DELTA_MV (50)
|
||||
|
||||
/* --- Timeouts --- */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user