Fix compiler warning: sketch/mesh_bed_calibration.cpp:205:34: warning: unused parameter 'verbosity_level' [-Wunused-parameter]
This commit is contained in:
parent
95d13cbb59
commit
523c9cd737
|
|
@ -209,7 +209,10 @@ BedSkewOffsetDetectionResultType calculate_machine_skew_and_offset_LS(
|
||||||
float *vec_x,
|
float *vec_x,
|
||||||
float *vec_y,
|
float *vec_y,
|
||||||
float *cntr,
|
float *cntr,
|
||||||
int8_t verbosity_level
|
int8_t
|
||||||
|
#ifdef SUPPORT_VERBOSITY
|
||||||
|
verbosity_level
|
||||||
|
#endif //SUPPORT_VERBOSITY
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
float angleDiff;
|
float angleDiff;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue