ENH:update PETG/PTEG-CF fan_threshold
Change-Id: Iffdffd936f249dd763ab7ebad0b7622d1eb504af
This commit is contained in:
parent
3a0334869d
commit
6e34ecd749
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "Bambulab",
|
"name": "Bambulab",
|
||||||
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
|
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
|
||||||
"version": "01.06.00.09",
|
"version": "01.06.00.10",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "the initial version of BBL configurations",
|
"description": "the initial version of BBL configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
"90"
|
"90"
|
||||||
],
|
],
|
||||||
"overhang_fan_threshold": [
|
"overhang_fan_threshold": [
|
||||||
"25%"
|
"10%"
|
||||||
],
|
],
|
||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"40"
|
"40"
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
"75"
|
"75"
|
||||||
],
|
],
|
||||||
"overhang_fan_threshold": [
|
"overhang_fan_threshold": [
|
||||||
"25%"
|
"10%"
|
||||||
],
|
],
|
||||||
"overhang_fan_speed": [
|
"overhang_fan_speed": [
|
||||||
"90"
|
"90"
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
"90"
|
"90"
|
||||||
],
|
],
|
||||||
"overhang_fan_threshold": [
|
"overhang_fan_threshold": [
|
||||||
"25%"
|
"10%"
|
||||||
],
|
],
|
||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"90"
|
"90"
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
"75"
|
"75"
|
||||||
],
|
],
|
||||||
"overhang_fan_threshold": [
|
"overhang_fan_threshold": [
|
||||||
"25%"
|
"10%"
|
||||||
],
|
],
|
||||||
"overhang_fan_speed": [
|
"overhang_fan_speed": [
|
||||||
"90"
|
"90"
|
||||||
|
|
|
@ -264,7 +264,7 @@ CONFIG_OPTION_ENUM_DEFINE_STATIC_MAPS(ForwardCompatibilitySubstitutionRule)
|
||||||
|
|
||||||
static const t_config_enum_values s_keys_map_OverhangFanThreshold = {
|
static const t_config_enum_values s_keys_map_OverhangFanThreshold = {
|
||||||
{ "0%", Overhang_threshold_none },
|
{ "0%", Overhang_threshold_none },
|
||||||
{ "5%", Overhang_threshold_1_4 },
|
{ "10%", Overhang_threshold_1_4 },
|
||||||
{ "25%", Overhang_threshold_2_4 },
|
{ "25%", Overhang_threshold_2_4 },
|
||||||
{ "50%", Overhang_threshold_3_4 },
|
{ "50%", Overhang_threshold_3_4 },
|
||||||
{ "75%", Overhang_threshold_4_4 },
|
{ "75%", Overhang_threshold_4_4 },
|
||||||
|
@ -655,7 +655,7 @@ void PrintConfigDef::init_fff_params()
|
||||||
def->enum_keys_map = &ConfigOptionEnum<OverhangFanThreshold>::get_enum_values();
|
def->enum_keys_map = &ConfigOptionEnum<OverhangFanThreshold>::get_enum_values();
|
||||||
def->mode = comAdvanced;
|
def->mode = comAdvanced;
|
||||||
def->enum_values.emplace_back("0%");
|
def->enum_values.emplace_back("0%");
|
||||||
def->enum_values.emplace_back("5%");
|
def->enum_values.emplace_back("10%");
|
||||||
def->enum_values.emplace_back("25%");
|
def->enum_values.emplace_back("25%");
|
||||||
def->enum_values.emplace_back("50%");
|
def->enum_values.emplace_back("50%");
|
||||||
def->enum_values.emplace_back("75%");
|
def->enum_values.emplace_back("75%");
|
||||||
|
@ -4021,6 +4021,8 @@ void PrintConfigDef::handle_legacy(t_config_option_key &opt_key, std::string &va
|
||||||
ReplaceString(value, split_key, copy_key);
|
ReplaceString(value, split_key, copy_key);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else if (opt_key == "overhang_fan_threshold" && value == "5%") {
|
||||||
|
value = "10%";
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ignore the following obsolete configuration keys:
|
// Ignore the following obsolete configuration keys:
|
||||||
|
|
Loading…
Reference in New Issue