mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-20 20:03:47 +00:00
ENH: do not use_open_ssl for engineer machine
Change-Id: Ie4b8384324c25f9f402aa78b19e1140492dbef19 Signed-off-by: Stone Li <stone.li@bambulab.com>
This commit is contained in:
@@ -1379,10 +1379,18 @@ void MachineObject::parse_version_func()
|
|||||||
is_support_ai_monitoring = true;
|
is_support_ai_monitoring = true;
|
||||||
is_support_ams_humidity = true;
|
is_support_ams_humidity = true;
|
||||||
}
|
}
|
||||||
|
if (firmware_type == PrinterFirmwareType::FIRMWARE_TYPE_ENGINEER)
|
||||||
|
local_use_ssl = false;
|
||||||
|
else {
|
||||||
local_use_ssl = ota_version->second.sw_ver.compare("01.03.01.04") >= 0;
|
local_use_ssl = ota_version->second.sw_ver.compare("01.03.01.04") >= 0;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
} else if (printer_type == "C11") {
|
} else if (printer_type == "C11") {
|
||||||
|
if (firmware_type == PrinterFirmwareType::FIRMWARE_TYPE_ENGINEER)
|
||||||
|
local_use_ssl = false;
|
||||||
|
else {
|
||||||
local_use_ssl = true;
|
local_use_ssl = true;
|
||||||
|
}
|
||||||
is_cloud_print_only = true;
|
is_cloud_print_only = true;
|
||||||
if (ota_version != module_vers.end()) {
|
if (ota_version != module_vers.end()) {
|
||||||
is_support_send_to_sdcard = ota_version->second.sw_ver.compare("01.02.00.00") >= 0;
|
is_support_send_to_sdcard = ota_version->second.sw_ver.compare("01.02.00.00") >= 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user