Add fan module and implement fan_max switch

This commit is contained in:
Jeremy Soller
2020-10-05 09:44:05 -06:00
committed by Jeremy Soller
parent e01e712745
commit a8f5fc5ec0
5 changed files with 41 additions and 16 deletions

View File

@ -0,0 +1,8 @@
#include <board/fan.h>
bool fan_max = false;
void fan_reset(void) {
// Do not manually set fans to maximum speed
fan_max = false;
}