Fix compiler warning: unused parameter 'calib'
This commit is contained in:
parent
790ae9f0ce
commit
ebfd4b2f47
|
|
@ -483,8 +483,6 @@ void force_high_power_mode(bool start_high_power_section);
|
||||||
#endif //TMC2130
|
#endif //TMC2130
|
||||||
|
|
||||||
// G-codes
|
// G-codes
|
||||||
void gcode_G28(bool home_x_axis, long home_x_value, bool home_y_axis, long home_y_value, bool home_z_axis, long home_z_value, bool calib, bool without_mbl);
|
|
||||||
void gcode_G28(bool home_x_axis, bool home_y_axis, bool home_z_axis);
|
|
||||||
|
|
||||||
bool gcode_M45(bool onlyZ, int8_t verbosity_level);
|
bool gcode_M45(bool onlyZ, int8_t verbosity_level);
|
||||||
void gcode_M114();
|
void gcode_M114();
|
||||||
|
|
|
||||||
|
|
@ -2439,11 +2439,12 @@ void force_high_power_mode(bool start_high_power_section) {
|
||||||
}
|
}
|
||||||
#endif //TMC2130
|
#endif //TMC2130
|
||||||
|
|
||||||
void gcode_G28(bool home_x_axis, bool home_y_axis, bool home_z_axis) {
|
#ifdef TMC2130
|
||||||
gcode_G28(home_x_axis, 0, home_y_axis, 0, home_z_axis, 0, false, true);
|
static void gcode_G28(bool home_x_axis, long home_x_value, bool home_y_axis, long home_y_value, bool home_z_axis, long home_z_value, bool calib, bool without_mbl)
|
||||||
}
|
#else
|
||||||
|
static void gcode_G28(bool home_x_axis, long home_x_value, bool home_y_axis, long home_y_value, bool home_z_axis, long home_z_value, bool without_mbl)
|
||||||
void gcode_G28(bool home_x_axis, long home_x_value, bool home_y_axis, long home_y_value, bool home_z_axis, long home_z_value, bool calib, bool without_mbl) {
|
#endif //TMC2130
|
||||||
|
{
|
||||||
st_synchronize();
|
st_synchronize();
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
|
|
@ -2728,6 +2729,15 @@ void gcode_G28(bool home_x_axis, long home_x_value, bool home_y_axis, long home_
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void gcode_G28(bool home_x_axis, bool home_y_axis, bool home_z_axis)
|
||||||
|
{
|
||||||
|
#ifdef TMC2130
|
||||||
|
gcode_G28(home_x_axis, 0, home_y_axis, 0, home_z_axis, 0, false, true);
|
||||||
|
#else
|
||||||
|
gcode_G28(home_x_axis, 0, home_y_axis, 0, home_z_axis, 0, true);
|
||||||
|
#endif //TMC2130
|
||||||
|
}
|
||||||
|
|
||||||
void adjust_bed_reset()
|
void adjust_bed_reset()
|
||||||
{
|
{
|
||||||
eeprom_update_byte((unsigned char*)EEPROM_BED_CORRECTION_VALID, 1);
|
eeprom_update_byte((unsigned char*)EEPROM_BED_CORRECTION_VALID, 1);
|
||||||
|
|
@ -3834,8 +3844,12 @@ if((eSoundMode==e_SOUND_MODE_LOUD)||(eSoundMode==e_SOUND_MODE_ONCE))
|
||||||
home_z_value = code_value_long();
|
home_z_value = code_value_long();
|
||||||
bool without_mbl = code_seen('W');
|
bool without_mbl = code_seen('W');
|
||||||
// calibrate?
|
// calibrate?
|
||||||
|
#ifdef TMC2130
|
||||||
bool calib = code_seen('C');
|
bool calib = code_seen('C');
|
||||||
gcode_G28(home_x, home_x_value, home_y, home_y_value, home_z, home_z_value, calib, without_mbl);
|
gcode_G28(home_x, home_x_value, home_y, home_y_value, home_z, home_z_value, calib, without_mbl);
|
||||||
|
#else
|
||||||
|
gcode_G28(home_x, home_x_value, home_y, home_y_value, home_z, home_z_value, without_mbl);
|
||||||
|
#endif //TMC2130
|
||||||
if ((home_x || home_y || without_mbl || home_z) == false) {
|
if ((home_x || home_y || without_mbl || home_z) == false) {
|
||||||
// Push the commands to the front of the message queue in the reverse order!
|
// Push the commands to the front of the message queue in the reverse order!
|
||||||
// There shall be always enough space reserved for these commands.
|
// There shall be always enough space reserved for these commands.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue