From 451a60fc1d8e1ffd78161a727d145814ce253152 Mon Sep 17 00:00:00 2001 From: "hu.wang" Date: Thu, 2 Nov 2023 14:17:28 +0800 Subject: [PATCH] NEW:p1 and x1 series added motor noise calibration JIRA: 5085 Change-Id: Id73cc2d34b6130f215d81ffcdc39ba6b241445bf --- src/slic3r/GUI/DeviceManager.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/slic3r/GUI/DeviceManager.cpp b/src/slic3r/GUI/DeviceManager.cpp index 4bc2f6d59..eba67110e 100644 --- a/src/slic3r/GUI/DeviceManager.cpp +++ b/src/slic3r/GUI/DeviceManager.cpp @@ -1358,6 +1358,11 @@ void MachineObject::parse_status(int flag) xcam_filament_tangle_detect = ((flag >> 20) & 0x1) != 0; } + if(!is_support_motor_noise_cali){ + is_support_motor_noise_cali = ((flag >> 21) & 0x1) != 0; + } + + sdcard_state = MachineObject::SdcardState((flag >> 8) & 0x11); network_wired = ((flag >> 18) & 0x1) != 0;