FIX: modify the default value of extruder_id for cali
jira: none Change-Id: I7aba99d5264d900c7a0795ff13442c62c34ae392
This commit is contained in:
parent
9e2bfb7d7e
commit
a894ec9e55
|
@ -51,7 +51,7 @@ class X1CCalibInfos
|
|||
public:
|
||||
struct X1CCalibInfo
|
||||
{
|
||||
int extruder_id = -1;
|
||||
int extruder_id = 0;
|
||||
int tray_id;
|
||||
int ams_id = 0;
|
||||
int slot_id = 0;
|
||||
|
@ -111,7 +111,7 @@ public:
|
|||
CALI_RESULT_PROBLEM = 1,
|
||||
CALI_RESULT_FAILED = 2,
|
||||
};
|
||||
int extruder_id = -1;
|
||||
int extruder_id = 0;
|
||||
NozzleVolumeType nozzle_volume_type;
|
||||
int tray_id = 0;
|
||||
int ams_id = 0;
|
||||
|
@ -128,7 +128,7 @@ public:
|
|||
|
||||
struct PACalibIndexInfo
|
||||
{
|
||||
int extruder_id = -1;
|
||||
int extruder_id = 0;
|
||||
NozzleVolumeType nozzle_volume_type;
|
||||
int tray_id = 0;
|
||||
int ams_id = 0;
|
||||
|
@ -140,7 +140,7 @@ struct PACalibIndexInfo
|
|||
|
||||
struct PACalibExtruderInfo
|
||||
{
|
||||
int extruder_id = -1;
|
||||
int extruder_id = 0;
|
||||
NozzleVolumeType nozzle_volume_type;
|
||||
float nozzle_diameter;
|
||||
std::string filament_id = "";
|
||||
|
|
Loading…
Reference in New Issue