Tweak profiles

1. Fix Voron Trident printable height issue #1641
2. Revamp Qidi X3 printer profiles
3. Turn on accel_to_decel_enable for klipper machine by default
4. Many other profiles tweaks
This commit is contained in:
SoftFever 2023-07-31 18:48:25 +08:00
parent 58e24dd270
commit aaefc400e1
124 changed files with 390 additions and 965 deletions

View file

@ -1579,7 +1579,7 @@ void PrintConfigDef::init_fff_params()
def->label = L("Enable accel_to_decel");
def->tooltip = L("Klipper's max_accel_to_decel will be adjusted automatically");
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionBool(false));
def->set_default_value(new ConfigOptionBool(true));
def = this->add("accel_to_decel_factor", coPercent);
def->label = L("accel_to_decel");
@ -2712,7 +2712,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm or %");
def->min = 0;
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionFloatOrPercent(15,true));
def->set_default_value(new ConfigOptionFloatOrPercent(10,true));
def = this->add("role_based_wipe_speed", coBool);
def->label = L("Role base wipe speed");