ENH: save bed type in 3mf for first layer scan

Change-Id: Id3d83a58f0cca4899e3247b5854500af79cf1b34
(cherry picked from commit d192ae2d8c7d404048e980cfaa0846be48c5fbad)
This commit is contained in:
Arthur 2022-11-08 20:43:03 +08:00 committed by Lane.Wei
parent f9793be848
commit 7bdba58b98
3 changed files with 8 additions and 3 deletions

View file

@ -192,13 +192,14 @@ static std::string bed_type_to_gcode_string(const BedType type)
type_str = "cool_plate";
break;
case btEP:
type_str = "engineering_plate";
type_str = "eng_plate";
break;
case btPEI:
type_str = "high_temp_plate";
type_str = "hot_plate";
break;
case btPTE:
type_str = "frosted_plate";
type_str = "textured_plate";
break;
default:
type_str = "unknown";
break;