Fix VERBOSITY

This commit is contained in:
Alex Voinea 2019-12-16 15:21:55 +02:00
parent d4fab1a713
commit a8e6020238
No known key found for this signature in database
GPG Key ID: F5034E7CFCF2F973

View File

@ -4840,7 +4840,7 @@ if(eSoundMode!=e_SOUND_MODE_SILENT)
#ifdef SUPPORT_VERBOSITY
if (verbosity_level >= 1) {
clamped = world2machine_clamp(current_position[X_AXIS], current_position[Y_AXIS]);
bool clamped = world2machine_clamp(current_position[X_AXIS], current_position[Y_AXIS]);
SERIAL_PROTOCOL(mesh_point);
clamped ? SERIAL_PROTOCOLPGM(": xy clamped.\n") : SERIAL_PROTOCOLPGM(": no xy clamping\n");
}