From 53d4c31798b261c82b4ada43c1bb444bfb5491f7 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Fri, 17 Apr 2020 15:27:33 -0600 Subject: [PATCH 1/2] lemp9: lower maximum fan speed --- src/board/system76/common/peci.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/board/system76/common/peci.c b/src/board/system76/common/peci.c index 235c3c9..7110922 100644 --- a/src/board/system76/common/peci.c +++ b/src/board/system76/common/peci.c @@ -35,10 +35,10 @@ 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, 55), - FAN_POINT(75, 75), - FAN_POINT(80, 100) + FAN_POINT(70, 40), + FAN_POINT(75, 50), + FAN_POINT(80, 60), + FAN_POINT(90, 60) }; // Get duty cycle based on temperature, adapted from From 3a3112162531bb521235c8bad14f88fff2e19f27 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Sat, 18 Apr 2020 15:58:36 -0600 Subject: [PATCH 2/2] Add another fan point of 65% at 85C --- src/board/system76/common/peci.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/board/system76/common/peci.c b/src/board/system76/common/peci.c index 7110922..04d9a66 100644 --- a/src/board/system76/common/peci.c +++ b/src/board/system76/common/peci.c @@ -38,7 +38,8 @@ struct FanPoint __code FAN_POINTS[] = { FAN_POINT(70, 40), FAN_POINT(75, 50), FAN_POINT(80, 60), - FAN_POINT(90, 60) + FAN_POINT(85, 65), + FAN_POINT(90, 65) }; // Get duty cycle based on temperature, adapted from