FIX: support cali for X1E printer type

Change-Id: I977af6804bbe5667c1534d50c880c216ac05accf
(cherry picked from commit 7a8e3a14a1998023639ddbb2ebde3c40559c50ea)
This commit is contained in:
zhimin.zeng 2023-08-24 09:15:11 +08:00 committed by Lane.Wei
parent b9cc020fea
commit 527c11067f

View file

@ -461,7 +461,7 @@ bool MachineObject::is_high_printer_type()
PrinterSeries MachineObject::get_printer_series() const
{
if (printer_type == "BL-P001" || printer_type == "BL-P002")
if (printer_type == "BL-P001" || printer_type == "BL-P002" || printer_type == "C13")
return PrinterSeries::SERIES_X1;
else if (printer_type == "C11" || printer_type == "C12")
return PrinterSeries::SERIES_P1P;