Skip to content

Commit

Permalink
Fix MMU unload issue after a fan check issue has been solved
Browse files Browse the repository at this point in the history
  • Loading branch information
3d-gussner committed Sep 23, 2024
1 parent 91af967 commit 0bbe7f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Firmware/fancheck.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ void checkFanSpeed()
lcd_reset_alert_level(); //for another fan speed error
lcd_setstatuspgm(MSG_WELCOME); // Reset the status line message to visually show the error is gone
}
if (fans_check_enabled && (fan_check_error == EFCE_OK))
if (fans_check_enabled && (fan_check_error != EFCE_REPORTED))
{
for (uint8_t fan = 0; fan < 2; fan++)
{
Expand Down

0 comments on commit 0bbe7f6

Please sign in to comment.