Allow default_bed_type to be defined in machine profile

update some profiles
This commit is contained in:
SoftFever
2025-08-09 10:17:00 +08:00
parent b84fe5561a
commit aacbcab468
22 changed files with 27 additions and 59 deletions

View File

@@ -839,6 +839,14 @@ void PrintConfigDef::init_fff_params()
def->enum_labels.emplace_back(L("Cool Plate (SuperTack)"));
def->set_default_value(new ConfigOptionEnum<BedType>(btPC));
// Orca: allow profile maker to set default bed type in machine profile
// This option won't be shown in the UI
def = this->add("default_bed_type", coString);
def->label = L("Default bed type");
def->tooltip = L("Default bed type for the printer (supports both numeric and string format).");
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionString());
// BBS
def = this->add("first_layer_print_sequence", coInts);
def->label = L("First layer print sequence");