We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6932fc commit 8dbe6dbCopy full SHA for 8dbe6db
zephyr/program/lotus/lotus/src/project_diagnostics.c
@@ -35,10 +35,10 @@ void check_device_deferred(void)
35
/* force turn on the fan for diagnostic */
36
dptf_set_fan_duty_target(5);
37
38
- if (!(fan_get_rpm_actual(0) > 100))
+ if (!(fan_get_rpm_actual(0) > 100) && !get_standalone_mode())
39
set_diagnostic(DIAGNOSTICS_NO_RIGHT_FAN, true);
40
41
- if (!(fan_get_rpm_actual(1) > 100))
+ if (!(fan_get_rpm_actual(1) > 100) && !get_standalone_mode())
42
set_diagnostic(DIAGNOSTICS_NO_LEFT_FAN, true);
43
44
/* Exit the duty mode and let thermal to control the fan */
0 commit comments