Fix compiler warning (#15642)
This commit is contained in:
parent
4183b900e5
commit
92754080f3
|
@ -1169,8 +1169,11 @@ void Planner::recalculate() {
|
||||||
* Maintain fans, paste extruder pressure,
|
* Maintain fans, paste extruder pressure,
|
||||||
*/
|
*/
|
||||||
void Planner::check_axes_activity() {
|
void Planner::check_axes_activity() {
|
||||||
unsigned char axis_active[NUM_AXIS] = { 0 },
|
uint8_t axis_active[NUM_AXIS] = { 0 };
|
||||||
tail_fan_speed[FAN_COUNT];
|
|
||||||
|
#if FAN_COUNT > 0
|
||||||
|
uint8_t tail_fan_speed[FAN_COUNT] = { 0 };
|
||||||
|
#endif
|
||||||
|
|
||||||
#if ENABLED(BARICUDA)
|
#if ENABLED(BARICUDA)
|
||||||
#if HAS_HEATER_1
|
#if HAS_HEATER_1
|
||||||
|
|
Loading…
Reference in New Issue