From 596fcb0f690c757ea0b198975ece33d0133cbde6 Mon Sep 17 00:00:00 2001 From: "xun.zhang" Date: Mon, 4 Sep 2023 22:11:38 +0800 Subject: [PATCH] ENH: add filement type pps-cf jira: STUDIO-3518 Change-Id: Ifebaa96ca2e8336bf5449d7c9bd053ab00ab8041 --- resources/profiles/BBL/filament/Generic PPS-CF @base.json | 3 +++ src/libslic3r/PrintConfig.cpp | 2 ++ 2 files changed, 5 insertions(+) diff --git a/resources/profiles/BBL/filament/Generic PPS-CF @base.json b/resources/profiles/BBL/filament/Generic PPS-CF @base.json index d15d6eba9a..887d276e2d 100644 --- a/resources/profiles/BBL/filament/Generic PPS-CF @base.json +++ b/resources/profiles/BBL/filament/Generic PPS-CF @base.json @@ -14,6 +14,9 @@ "filament_max_volumetric_speed": [ "3" ], + "filament_type": [ + "PPS-CF" + ], "nozzle_temperature_range_high": [ "350" ], diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index e92254cc12..dc51f5db16 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -1357,6 +1357,8 @@ void PrintConfigDef::init_fff_params() def->enum_values.push_back("PVA"); def->enum_values.push_back("HIPS"); def->enum_values.push_back("PLA-AERO"); + def->enum_values.push_back("PPS"); + def->enum_values.push_back("PPS-CF"); def->mode = comSimple; def->set_default_value(new ConfigOptionStrings { "PLA" });