Skip to content

Commit

Permalink
🩹 Init fan speed at boot (#23181)
Browse files Browse the repository at this point in the history
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
  • Loading branch information
robbycandra and thinkyhead committed Dec 25, 2021
1 parent c781ecc commit f3e372c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/module/planner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1309,7 +1309,7 @@ void Planner::check_axes_activity() {
#endif

#if HAS_TAIL_FAN_SPEED
static uint8_t tail_fan_speed[FAN_COUNT];
static uint8_t tail_fan_speed[FAN_COUNT] = ARRAY_N_1(FAN_COUNT, 255);
bool fans_need_update = false;
#endif

Expand Down

0 comments on commit f3e372c

Please sign in to comment.