JD profiles from Marlin repo (#13241)

This commit is contained in:
Ian Bassi
2026-04-16 21:19:16 -03:00
committed by GitHub
parent 80ef058aaa
commit 3816a519ae
79 changed files with 343 additions and 35 deletions

View File

@@ -3063,7 +3063,7 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("Marlin Firmware Junction Deviation (replaces the traditional XY Jerk setting).");
def->sidetext = L("mm"); // milimeters, CIS languages need translation
def->min = 0.f;
def->max = 0.5f;
def->max = 0.3f;
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionFloat(0.f));
@@ -4218,7 +4218,7 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("Maximum junction deviation (M205 J, only apply if JD > 0 for Marlin Firmware\nIf your Marlin 2 printer uses Classic Jerk set this value to 0.)");
def->sidetext = L("mm"); // milimeters, CIS languages need translation
def->min = 0.f;
def->max = 0.5f;
def->max = 0.3f;
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionFloats{ 0.01f });