Fix compiler warning: sketch/mesh_bed_calibration.cpp:966:13: warning: unused parameter 'verbosity_level' [-Wunused-parameter]
This commit is contained in:
parent
523c9cd737
commit
0d35451544
@ -963,7 +963,11 @@ static inline void update_current_position_z()
|
||||
}
|
||||
|
||||
// At the current position, find the Z stop.
|
||||
inline bool find_bed_induction_sensor_point_z(float minimum_z, uint8_t n_iter, int verbosity_level)
|
||||
inline bool find_bed_induction_sensor_point_z(float minimum_z, uint8_t n_iter, int
|
||||
#ifdef SUPPORT_VERBOSITY
|
||||
verbosity_level
|
||||
#endif //SUPPORT_VERBOSITY
|
||||
)
|
||||
{
|
||||
#ifdef TMC2130
|
||||
FORCE_HIGH_POWER_START;
|
||||
|
Loading…
Reference in New Issue
Block a user