Merge pull request #54 from system76/fan-curve

lemp9: lower maximum fan speed
This commit is contained in:
WatchMkr 2020-04-18 16:10:52 -06:00 committed by GitHub
commit 0cb4c20cff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,10 +35,11 @@ struct FanPoint {
// Fan curve with temperature in degrees C, duty cycle in percent // Fan curve with temperature in degrees C, duty cycle in percent
struct FanPoint __code FAN_POINTS[] = { struct FanPoint __code FAN_POINTS[] = {
FAN_POINT(65, 40), FAN_POINT(70, 40),
FAN_POINT(70, 55), FAN_POINT(75, 50),
FAN_POINT(75, 75), FAN_POINT(80, 60),
FAN_POINT(80, 100) FAN_POINT(85, 65),
FAN_POINT(90, 65)
}; };
// Get duty cycle based on temperature, adapted from // Get duty cycle based on temperature, adapted from