-
I read that there is |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Right now there's no easy way to do this. With the test tool from this distribution, Set fan 0 duty% to 0x00000064, or 100%
Set fan 0 RPM target to 4000 (0x00000FA0) directly
Restore fan 0x00 to automatic thermal control
I've been testing a build of |
Beta Was this translation helpful? Give feedback.
-
I've got good news! I brought the upstream Builds are available over there. Just check out the latest |
Beta Was this translation helpful? Give feedback.
Right now there's no easy way to do this.
With the test tool from this distribution,
FauxECTool
, you can sort of accomplish it with raw commands (as fauxectool doesn't support symbolic commands 😄)Set fan 0 duty% to 0x00000064, or 100%
0x24
isEC_CMD_PWM_SET_FAN_DUTY
Set fan 0 RPM target to 4000 (0x00000FA0) directly
0x21
isEC_CMD_PWM_SET_FAN_TARGET_RPM
Restore fan 0x00 to automatic thermal control
0x52
isEC_CMD_THERMAL_AUTO_FAN_CTRL
I've been testing a build…