ENH: add extruder offset for X1 and X1 carbon

The extruder offset of X1 and X1C is (0,2).
All generated gcode should minus this value.

Also change the min speed of cooling buffer for
better cooling for small area(from pineapple)

Signed-off-by: salt.wei <salt.wei@bambulab.com>
Change-Id: I06e58a26f8736ae24fa9da02477a9d19114daeca
This commit is contained in:
salt.wei 2022-07-27 18:19:11 +08:00 committed by Lane.Wei
parent 461eaa13aa
commit a713573544
10 changed files with 15 additions and 11 deletions

View File

@ -1,7 +1,7 @@
{
"name": "Bambulab",
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
"version": "01.01.00.13",
"version": "01.01.00.14",
"force_update": "0",
"description": "the initial version of BBL configurations",
"machine_model_list": [

View File

@ -12,7 +12,7 @@
"25.4"
],
"filament_flow_ratio": [
"0.96"
"0.98"
],
"filament_density": [
"1.26"

View File

@ -15,6 +15,6 @@
"1.32"
],
"filament_flow_ratio": [
"0.95"
"0.98"
]
}

View File

@ -28,7 +28,7 @@
"40"
],
"slow_down_min_speed": [
"40"
"20"
],
"slow_down_layer_time": [
"8"

View File

@ -7,7 +7,7 @@
"instantiation": "true",
"inherits": "fdm_filament_pla",
"filament_flow_ratio": [
"0.95"
"0.98"
],
"filament_max_volumetric_speed": [
"12"

View File

@ -15,6 +15,6 @@
"1.24"
],
"filament_flow_ratio": [
"0.95"
"0.98"
]
}

View File

@ -74,7 +74,7 @@
"230"
],
"slow_down_min_speed": [
"50"
"20"
],
"slow_down_layer_time": [
"4"

View File

@ -13,6 +13,9 @@
"nozzle_diameter": [
"0.4"
],
"extruder_offset": [
"0x2"
],
"bed_exclude_area": [
"0x0",
"18x0",

View File

@ -13,6 +13,9 @@
"nozzle_diameter": [
"0.4"
],
"extruder_offset": [
"0x2"
],
"bed_exclude_area": [
"0x0",
"18x0",

View File

@ -3173,10 +3173,8 @@ void TabPrinter::build_unregular_pages(bool from_initial_build/* = false*/)
optgroup->append_single_option_line("min_layer_height", "", extruder_idx);
optgroup->append_single_option_line("max_layer_height", "", extruder_idx);
#if 0
//optgroup = page->new_optgroup(L("Position (for multi-extruder printers)"), -1, true);
//optgroup->append_single_option_line("extruder_offset", "", extruder_idx);
#endif
optgroup = page->new_optgroup(L("Position"), -1, true);
optgroup->append_single_option_line("extruder_offset", "", extruder_idx);
//BBS: don't show retract related config menu in machine page
optgroup = page->new_optgroup(L("Retraction"));