ENH: add skippable part time for other printers
1. also add a new type: head wrap detect jira: NONE Signed-off-by: xun.zhang <xun.zhang@bambulab.com> Change-Id: I8d3056676958245d44171870b6d21ec0ea8bdfe0
This commit is contained in:
parent
96c2cff282
commit
ec2b5bf690
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "Bambulab",
|
||||
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
|
||||
"version": "02.00.00.38",
|
||||
"version": "02.00.00.39",
|
||||
"force_update": "0",
|
||||
"description": "the initial version of BBL configurations",
|
||||
"machine_model_list": [
|
||||
|
@ -4143,4 +4143,4 @@
|
|||
"sub_path": "machine/Bambu Lab H2D 0.8 nozzle.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -45,12 +45,14 @@ namespace Slic3r {
|
|||
enum SkipType
|
||||
{
|
||||
stTimelapse,
|
||||
stHeadWrapDetect,
|
||||
stOther,
|
||||
stNone
|
||||
};
|
||||
|
||||
const std::unordered_map<std::string_view, SkipType> skip_type_map {
|
||||
{"timelapse", SkipType::stTimelapse}
|
||||
const std::unordered_map<std::string_view, SkipType> skip_type_map{
|
||||
{"timelapse", SkipType::stTimelapse},
|
||||
{"head_wrap_detect", SkipType::stHeadWrapDetect}
|
||||
};
|
||||
struct PrintEstimatedStatistics
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue