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:
parent
461eaa13aa
commit
a713573544
|
@ -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.01.00.13",
|
"version": "01.01.00.14",
|
||||||
"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 @@
|
||||||
"25.4"
|
"25.4"
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"filament_flow_ratio": [
|
||||||
"0.96"
|
"0.98"
|
||||||
],
|
],
|
||||||
"filament_density": [
|
"filament_density": [
|
||||||
"1.26"
|
"1.26"
|
||||||
|
|
|
@ -15,6 +15,6 @@
|
||||||
"1.32"
|
"1.32"
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"filament_flow_ratio": [
|
||||||
"0.95"
|
"0.98"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
"40"
|
"40"
|
||||||
],
|
],
|
||||||
"slow_down_min_speed": [
|
"slow_down_min_speed": [
|
||||||
"40"
|
"20"
|
||||||
],
|
],
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"8"
|
"8"
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"inherits": "fdm_filament_pla",
|
"inherits": "fdm_filament_pla",
|
||||||
"filament_flow_ratio": [
|
"filament_flow_ratio": [
|
||||||
"0.95"
|
"0.98"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"12"
|
"12"
|
||||||
|
|
|
@ -15,6 +15,6 @@
|
||||||
"1.24"
|
"1.24"
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"filament_flow_ratio": [
|
||||||
"0.95"
|
"0.98"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -74,7 +74,7 @@
|
||||||
"230"
|
"230"
|
||||||
],
|
],
|
||||||
"slow_down_min_speed": [
|
"slow_down_min_speed": [
|
||||||
"50"
|
"20"
|
||||||
],
|
],
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"4"
|
"4"
|
||||||
|
|
|
@ -13,6 +13,9 @@
|
||||||
"nozzle_diameter": [
|
"nozzle_diameter": [
|
||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
|
"extruder_offset": [
|
||||||
|
"0x2"
|
||||||
|
],
|
||||||
"bed_exclude_area": [
|
"bed_exclude_area": [
|
||||||
"0x0",
|
"0x0",
|
||||||
"18x0",
|
"18x0",
|
||||||
|
|
|
@ -13,6 +13,9 @@
|
||||||
"nozzle_diameter": [
|
"nozzle_diameter": [
|
||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
|
"extruder_offset": [
|
||||||
|
"0x2"
|
||||||
|
],
|
||||||
"bed_exclude_area": [
|
"bed_exclude_area": [
|
||||||
"0x0",
|
"0x0",
|
||||||
"18x0",
|
"18x0",
|
||||||
|
|
|
@ -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("min_layer_height", "", extruder_idx);
|
||||||
optgroup->append_single_option_line("max_layer_height", "", extruder_idx);
|
optgroup->append_single_option_line("max_layer_height", "", extruder_idx);
|
||||||
|
|
||||||
#if 0
|
optgroup = page->new_optgroup(L("Position"), -1, true);
|
||||||
//optgroup = page->new_optgroup(L("Position (for multi-extruder printers)"), -1, true);
|
optgroup->append_single_option_line("extruder_offset", "", extruder_idx);
|
||||||
//optgroup->append_single_option_line("extruder_offset", "", extruder_idx);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//BBS: don't show retract related config menu in machine page
|
//BBS: don't show retract related config menu in machine page
|
||||||
optgroup = page->new_optgroup(L("Retraction"));
|
optgroup = page->new_optgroup(L("Retraction"));
|
||||||
|
|
Loading…
Reference in New Issue