FIX: modify the picture of pa line calibration

and do not checkout nozzle type for p1p/s when sending calibration

Change-Id: I4e7e684b5fbf09c8968a376ad7db9e228fdd89d7
This commit is contained in:
zhimin.zeng 2024-01-19 15:27:04 +08:00 committed by Lane.Wei
parent 26140050ec
commit ece959dcca
4 changed files with 4 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 230 KiB

After

Width:  |  Height:  |  Size: 396 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 261 KiB

After

Width:  |  Height:  |  Size: 395 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 254 KiB

After

Width:  |  Height:  |  Size: 395 KiB

View File

@ -149,6 +149,10 @@ static bool check_nozzle_diameter_and_type(const DynamicPrintConfig &full_config
return false;
}
// only check for X1 series printer
if (obj->get_printer_series() != PrinterSeries::SERIES_X1)
return true;
// P1P/S
if (obj->nozzle_type.empty())
return true;