From 8af9470c402ccb4e165ba3ed83729363a0516422 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Sun, 5 Apr 2020 13:15:48 -0600 Subject: [PATCH] lemp9: lower fan curve maximum temperature to 80C --- src/board/system76/lemp9/peci.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/board/system76/lemp9/peci.c b/src/board/system76/lemp9/peci.c index 945a6b2..e58bd96 100644 --- a/src/board/system76/lemp9/peci.c +++ b/src/board/system76/lemp9/peci.c @@ -33,10 +33,9 @@ struct FanPoint { // Fan curve with temperature in degrees C, duty cycle in percent struct FanPoint __code FAN_POINTS[] = { FAN_POINT(65, 40), - FAN_POINT(70, 45), - FAN_POINT(75, 55), - FAN_POINT(80, 75), - FAN_POINT(84, 100) + FAN_POINT(70, 55), + FAN_POINT(75, 75), + FAN_POINT(80, 100) }; // Get duty cycle based on temperature, adapted from