summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--board/hatch/board.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/board/hatch/board.c b/board/hatch/board.c
index e6cf4dfafa..21ff639892 100644
--- a/board/hatch/board.c
+++ b/board/hatch/board.c
@@ -143,7 +143,12 @@ const struct temp_sensor_t temp_sensors[] = {
BUILD_ASSERT(ARRAY_SIZE(temp_sensors) == TEMP_SENSOR_COUNT);
-/* Nami/Vayne Remote 1, 2 */
+/* Hatch Temperature sensors */
+/*
+ * TODO(b/124316213): These setting need to be reviewed and set appropriately
+ * for Hatch. They matter when the EC is controlling the fan as opposed to DPTF
+ * control.
+ */
const static struct ec_thermal_config thermal_a = {
.temp_host = {
[EC_TEMP_THRESH_WARN] = 0,
@@ -155,7 +160,7 @@ const static struct ec_thermal_config thermal_a = {
[EC_TEMP_THRESH_HIGH] = C_TO_K(65),
[EC_TEMP_THRESH_HALT] = 0,
},
- .temp_fan_off = C_TO_K(39),
+ .temp_fan_off = C_TO_K(25),
.temp_fan_max = C_TO_K(50),
};