mirror of
https://git.mirrors.martin98.com/https://github.com/bambulab/BambuStudio.git
synced 2025-09-29 01:33:15 +08:00
FIX: update the hold impl of PrintOptionDialog
jira: [STUDIO-10972] Change-Id: Ie62d0f4ec7e08087c422ddb38768df99c1f0d5f9
This commit is contained in:
parent
ff62a7fe61
commit
4f14441703
@ -757,8 +757,10 @@ bool MachineObject::check_valid_ip()
|
|||||||
|
|
||||||
void MachineObject::_parse_print_option_ack(int option)
|
void MachineObject::_parse_print_option_ack(int option)
|
||||||
{
|
{
|
||||||
|
if (time(nullptr) - xcam_auto_recovery_hold_start > HOLD_TIME_3SEC) {
|
||||||
xcam_auto_recovery_step_loss = ((option >> (int)PRINT_OP_AUTO_RECOVERY) & 0x01) != 0;
|
xcam_auto_recovery_step_loss = ((option >> (int)PRINT_OP_AUTO_RECOVERY) & 0x01) != 0;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
bool MachineObject::is_in_extrusion_cali()
|
bool MachineObject::is_in_extrusion_cali()
|
||||||
{
|
{
|
||||||
@ -1566,9 +1568,7 @@ void MachineObject::parse_state_changed_event()
|
|||||||
void MachineObject::parse_status(int flag)
|
void MachineObject::parse_status(int flag)
|
||||||
{
|
{
|
||||||
is_220V_voltage = ((flag >> 3) & 0x1) != 0;
|
is_220V_voltage = ((flag >> 3) & 0x1) != 0;
|
||||||
if (xcam_auto_recovery_hold_count > 0)
|
if (time(nullptr) - xcam_auto_recovery_hold_start > HOLD_TIME_3SEC) {
|
||||||
xcam_auto_recovery_hold_count--;
|
|
||||||
else {
|
|
||||||
xcam_auto_recovery_step_loss = ((flag >> 4) & 0x1) != 0;
|
xcam_auto_recovery_step_loss = ((flag >> 4) & 0x1) != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1581,7 +1581,7 @@ void MachineObject::parse_status(int flag)
|
|||||||
|
|
||||||
sdcard_state = MachineObject::SdcardState(get_flag_bits(flag, 8, 2));
|
sdcard_state = MachineObject::SdcardState(get_flag_bits(flag, 8, 2));
|
||||||
|
|
||||||
if (time(nullptr) - ams_switch_filament_start > HOLD_TIME_MAX)
|
if (time(nullptr) - ams_switch_filament_start > HOLD_TIME_3SEC)
|
||||||
{
|
{
|
||||||
ams_auto_switch_filament_flag = ((flag >> 10) & 0x1) != 0;
|
ams_auto_switch_filament_flag = ((flag >> 10) & 0x1) != 0;
|
||||||
}
|
}
|
||||||
@ -1591,18 +1591,14 @@ void MachineObject::parse_status(int flag)
|
|||||||
|
|
||||||
is_support_pa_calibration = ((flag >> 16) & 0x1) != 0;
|
is_support_pa_calibration = ((flag >> 16) & 0x1) != 0;
|
||||||
|
|
||||||
if (xcam_prompt_sound_hold_count > 0)
|
if (time(nullptr) - xcam_prompt_sound_hold_start > HOLD_TIME_3SEC) {
|
||||||
xcam_prompt_sound_hold_count--;
|
|
||||||
else {
|
|
||||||
xcam_allow_prompt_sound = ((flag >> 17) & 0x1) != 0;
|
xcam_allow_prompt_sound = ((flag >> 17) & 0x1) != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
is_support_prompt_sound = ((flag >> 18) & 0x1) != 0;
|
is_support_prompt_sound = ((flag >> 18) & 0x1) != 0;
|
||||||
is_support_filament_tangle_detect = ((flag >> 19) & 0x1) != 0;
|
is_support_filament_tangle_detect = ((flag >> 19) & 0x1) != 0;
|
||||||
|
|
||||||
if (xcam_filament_tangle_detect_count > 0)
|
if (time(nullptr) - xcam_filament_tangle_detect_hold_start > HOLD_TIME_3SEC) {
|
||||||
xcam_filament_tangle_detect_count--;
|
|
||||||
else {
|
|
||||||
xcam_filament_tangle_detect = ((flag >> 20) & 0x1) != 0;
|
xcam_filament_tangle_detect = ((flag >> 20) & 0x1) != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1614,7 +1610,10 @@ void MachineObject::parse_status(int flag)
|
|||||||
is_support_user_preset = ((flag >> 22) & 0x1) != 0;
|
is_support_user_preset = ((flag >> 22) & 0x1) != 0;
|
||||||
|
|
||||||
is_support_nozzle_blob_detection = ((flag >> 25) & 0x1) != 0;
|
is_support_nozzle_blob_detection = ((flag >> 25) & 0x1) != 0;
|
||||||
|
|
||||||
|
if (time(nullptr) - nozzle_blob_detection_hold_start > HOLD_TIME_3SEC) {
|
||||||
nozzle_blob_detection_enabled = ((flag >> 24) & 0x1) != 0;
|
nozzle_blob_detection_enabled = ((flag >> 24) & 0x1) != 0;
|
||||||
|
}
|
||||||
|
|
||||||
is_support_air_print_detection = ((flag >> 29) & 0x1) != 0;
|
is_support_air_print_detection = ((flag >> 29) & 0x1) != 0;
|
||||||
ams_air_print_status = ((flag >> 28) & 0x1) != 0;
|
ams_air_print_status = ((flag >> 28) & 0x1) != 0;
|
||||||
@ -2481,6 +2480,7 @@ int MachineObject::command_nozzle_blob_detect(bool nozzle_blob_detect)
|
|||||||
j["print"]["sequence_id"] = std::to_string(MachineObject::m_sequence_id++);
|
j["print"]["sequence_id"] = std::to_string(MachineObject::m_sequence_id++);
|
||||||
j["print"]["nozzle_blob_detect"] = nozzle_blob_detect;
|
j["print"]["nozzle_blob_detect"] = nozzle_blob_detect;
|
||||||
nozzle_blob_detection_enabled = nozzle_blob_detect;
|
nozzle_blob_detection_enabled = nozzle_blob_detect;
|
||||||
|
nozzle_blob_detection_hold_start = time(nullptr);
|
||||||
return this->publish_json(j.dump());
|
return this->publish_json(j.dump());
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2873,35 +2873,35 @@ int MachineObject::command_xcam_control_ai_monitoring(bool on_off, std::string l
|
|||||||
int MachineObject::command_xcam_control_buildplate_marker_detector(bool on_off)
|
int MachineObject::command_xcam_control_buildplate_marker_detector(bool on_off)
|
||||||
{
|
{
|
||||||
xcam_buildplate_marker_detector = on_off;
|
xcam_buildplate_marker_detector = on_off;
|
||||||
xcam_buildplate_marker_hold_count = HOLD_COUNT_MAX;
|
xcam_buildplate_marker_hold_start = time(nullptr);
|
||||||
return command_xcam_control("buildplate_marker_detector", on_off);
|
return command_xcam_control("buildplate_marker_detector", on_off);
|
||||||
}
|
}
|
||||||
|
|
||||||
int MachineObject::command_xcam_control_first_layer_inspector(bool on_off, bool print_halt)
|
int MachineObject::command_xcam_control_first_layer_inspector(bool on_off, bool print_halt)
|
||||||
{
|
{
|
||||||
xcam_first_layer_inspector = on_off;
|
xcam_first_layer_inspector = on_off;
|
||||||
xcam_first_layer_hold_count = HOLD_COUNT_MAX;
|
xcam_first_layer_hold_start = time(nullptr);
|
||||||
return command_xcam_control("first_layer_inspector", on_off);
|
return command_xcam_control("first_layer_inspector", on_off);
|
||||||
}
|
}
|
||||||
|
|
||||||
int MachineObject::command_xcam_control_auto_recovery_step_loss(bool on_off)
|
int MachineObject::command_xcam_control_auto_recovery_step_loss(bool on_off)
|
||||||
{
|
{
|
||||||
xcam_auto_recovery_step_loss = on_off;
|
xcam_auto_recovery_step_loss = on_off;
|
||||||
xcam_auto_recovery_hold_count = HOLD_COUNT_MAX;
|
xcam_auto_recovery_hold_start = time(nullptr);
|
||||||
return command_set_printing_option(on_off);
|
return command_set_printing_option(on_off);
|
||||||
}
|
}
|
||||||
|
|
||||||
int MachineObject::command_xcam_control_allow_prompt_sound(bool on_off)
|
int MachineObject::command_xcam_control_allow_prompt_sound(bool on_off)
|
||||||
{
|
{
|
||||||
xcam_allow_prompt_sound = on_off;
|
xcam_allow_prompt_sound = on_off;
|
||||||
xcam_prompt_sound_hold_count = HOLD_COUNT_MAX;
|
xcam_prompt_sound_hold_start = time(nullptr);
|
||||||
return command_set_prompt_sound(on_off);
|
return command_set_prompt_sound(on_off);
|
||||||
}
|
}
|
||||||
|
|
||||||
int MachineObject::command_xcam_control_filament_tangle_detect(bool on_off)
|
int MachineObject::command_xcam_control_filament_tangle_detect(bool on_off)
|
||||||
{
|
{
|
||||||
xcam_filament_tangle_detect = on_off;
|
xcam_filament_tangle_detect = on_off;
|
||||||
xcam_filament_tangle_detect_count = HOLD_COUNT_MAX;
|
xcam_filament_tangle_detect_hold_start = time(nullptr);
|
||||||
return command_set_filament_tangle_detect(on_off);
|
return command_set_filament_tangle_detect(on_off);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -4284,7 +4284,7 @@ int MachineObject::parse_json(std::string payload, bool key_field_only)
|
|||||||
if (jj.contains("ipcam")) {
|
if (jj.contains("ipcam")) {
|
||||||
json const & ipcam = jj["ipcam"];
|
json const & ipcam = jj["ipcam"];
|
||||||
if (ipcam.contains("ipcam_record")) {
|
if (ipcam.contains("ipcam_record")) {
|
||||||
if (time(nullptr) - camera_recording_ctl_start > HOLD_TIME_MAX) {
|
if (time(nullptr) - camera_recording_ctl_start > HOLD_TIME_3SEC) {
|
||||||
if (ipcam["ipcam_record"].get<std::string>() == "enable") {
|
if (ipcam["ipcam_record"].get<std::string>() == "enable") {
|
||||||
camera_recording_when_printing = true;
|
camera_recording_when_printing = true;
|
||||||
}
|
}
|
||||||
@ -4355,7 +4355,7 @@ int MachineObject::parse_json(std::string payload, bool key_field_only)
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
if (jj.contains("xcam")) {
|
if (jj.contains("xcam")) {
|
||||||
if (time(nullptr) - xcam_ai_monitoring_hold_start > HOLD_TIME_MAX) {
|
if (time(nullptr) - xcam_ai_monitoring_hold_start > HOLD_TIME_3SEC) {
|
||||||
if (jj["xcam"].contains("printing_monitor")) {
|
if (jj["xcam"].contains("printing_monitor")) {
|
||||||
// new protocol
|
// new protocol
|
||||||
xcam_ai_monitoring = jj["xcam"]["printing_monitor"].get<bool>();
|
xcam_ai_monitoring = jj["xcam"]["printing_monitor"].get<bool>();
|
||||||
@ -4374,17 +4374,13 @@ int MachineObject::parse_json(std::string payload, bool key_field_only)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (xcam_first_layer_hold_count > 0)
|
if (time(nullptr) - xcam_first_layer_hold_start > HOLD_TIME_3SEC) {
|
||||||
xcam_first_layer_hold_count--;
|
|
||||||
else {
|
|
||||||
if (jj["xcam"].contains("first_layer_inspector")) {
|
if (jj["xcam"].contains("first_layer_inspector")) {
|
||||||
xcam_first_layer_inspector = jj["xcam"]["first_layer_inspector"].get<bool>();
|
xcam_first_layer_inspector = jj["xcam"]["first_layer_inspector"].get<bool>();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (xcam_buildplate_marker_hold_count > 0)
|
if (time(nullptr) - xcam_buildplate_marker_hold_start > HOLD_TIME_3SEC) {
|
||||||
xcam_buildplate_marker_hold_count--;
|
|
||||||
else {
|
|
||||||
if (jj["xcam"].contains("buildplate_marker_detector")) {
|
if (jj["xcam"].contains("buildplate_marker_detector")) {
|
||||||
xcam_buildplate_marker_detector = jj["xcam"]["buildplate_marker_detector"].get<bool>();
|
xcam_buildplate_marker_detector = jj["xcam"]["buildplate_marker_detector"].get<bool>();
|
||||||
is_support_build_plate_marker_detect = true;
|
is_support_build_plate_marker_detect = true;
|
||||||
@ -4497,7 +4493,7 @@ int MachineObject::parse_json(std::string payload, bool key_field_only)
|
|||||||
|
|
||||||
if (jj["ams"].contains("insert_flag") || jj["ams"].contains("power_on_flag")
|
if (jj["ams"].contains("insert_flag") || jj["ams"].contains("power_on_flag")
|
||||||
|| jj["ams"].contains("calibrate_remain_flag")) {
|
|| jj["ams"].contains("calibrate_remain_flag")) {
|
||||||
if (time(nullptr) - ams_user_setting_start > HOLD_TIME_MAX)
|
if (time(nullptr) - ams_user_setting_start > HOLD_TIME_3SEC)
|
||||||
{
|
{
|
||||||
if (jj["ams"].contains("insert_flag")) {
|
if (jj["ams"].contains("insert_flag")) {
|
||||||
ams_insert_flag = jj["ams"]["insert_flag"].get<bool>();
|
ams_insert_flag = jj["ams"]["insert_flag"].get<bool>();
|
||||||
@ -5010,15 +5006,17 @@ int MachineObject::parse_json(std::string payload, bool key_field_only)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (jj["module_name"].get<std::string>() == "first_layer_inspector") {
|
if (jj["module_name"].get<std::string>() == "first_layer_inspector") {
|
||||||
|
if (time(nullptr) - xcam_first_layer_hold_start > HOLD_TIME_3SEC) {
|
||||||
xcam_first_layer_inspector = enable;
|
xcam_first_layer_inspector = enable;
|
||||||
xcam_first_layer_hold_count = HOLD_COUNT_MAX;
|
}
|
||||||
}
|
}
|
||||||
else if (jj["module_name"].get<std::string>() == "buildplate_marker_detector") {
|
else if (jj["module_name"].get<std::string>() == "buildplate_marker_detector") {
|
||||||
|
if (time(nullptr) - xcam_buildplate_marker_hold_start > HOLD_TIME_3SEC) {
|
||||||
xcam_buildplate_marker_detector = enable;
|
xcam_buildplate_marker_detector = enable;
|
||||||
xcam_buildplate_marker_hold_count = HOLD_COUNT_MAX;
|
}
|
||||||
}
|
}
|
||||||
else if (jj["module_name"].get<std::string>() == "printing_monitor") {
|
else if (jj["module_name"].get<std::string>() == "printing_monitor") {
|
||||||
if (time(nullptr) - xcam_ai_monitoring_hold_start > HOLD_TIME_MAX) {
|
if (time(nullptr) - xcam_ai_monitoring_hold_start > HOLD_TIME_3SEC) {
|
||||||
xcam_ai_monitoring = enable;
|
xcam_ai_monitoring = enable;
|
||||||
if (jj.contains("halt_print_sensitivity")) {
|
if (jj.contains("halt_print_sensitivity")) {
|
||||||
xcam_ai_monitoring_sensitivity = jj["halt_print_sensitivity"].get<std::string>();
|
xcam_ai_monitoring_sensitivity = jj["halt_print_sensitivity"].get<std::string>();
|
||||||
@ -5026,7 +5024,7 @@ int MachineObject::parse_json(std::string payload, bool key_field_only)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (jj["module_name"].get<std::string>() == "spaghetti_detector") {
|
else if (jj["module_name"].get<std::string>() == "spaghetti_detector") {
|
||||||
if (time(nullptr) - xcam_ai_monitoring_hold_start > HOLD_TIME_MAX) {
|
if (time(nullptr) - xcam_ai_monitoring_hold_start > HOLD_TIME_3SEC) {
|
||||||
// old protocol
|
// old protocol
|
||||||
xcam_ai_monitoring = enable;
|
xcam_ai_monitoring = enable;
|
||||||
if (jj.contains("print_halt")) {
|
if (jj.contains("print_halt")) {
|
||||||
@ -5046,10 +5044,13 @@ int MachineObject::parse_json(std::string payload, bool key_field_only)
|
|||||||
_parse_print_option_ack(option);
|
_parse_print_option_ack(option);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (time(nullptr) - xcam_auto_recovery_hold_start > HOLD_TIME_3SEC) {
|
||||||
if (jj.contains("auto_recovery")) {
|
if (jj.contains("auto_recovery")) {
|
||||||
xcam_auto_recovery_step_loss = jj["auto_recovery"].get<bool>();
|
xcam_auto_recovery_step_loss = jj["auto_recovery"].get<bool>();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
catch(...) {
|
catch(...) {
|
||||||
}
|
}
|
||||||
} else if (jj["command"].get<std::string>() == "extrusion_cali" || jj["command"].get<std::string>() == "flowrate_cali") {
|
} else if (jj["command"].get<std::string>() == "extrusion_cali" || jj["command"].get<std::string>() == "flowrate_cali") {
|
||||||
@ -5413,7 +5414,7 @@ int MachineObject::parse_json(std::string payload, bool key_field_only)
|
|||||||
BOOST_LOG_TRIVIAL(info) << "ack of timelapse = " << camera_timelapse;
|
BOOST_LOG_TRIVIAL(info) << "ack of timelapse = " << camera_timelapse;
|
||||||
}
|
}
|
||||||
} else if (j["camera"]["command"].get<std::string>() == "ipcam_record_set") {
|
} else if (j["camera"]["command"].get<std::string>() == "ipcam_record_set") {
|
||||||
if (time(nullptr) - camera_recording_ctl_start > HOLD_TIME_MAX) {
|
if (time(nullptr) - camera_recording_ctl_start > HOLD_TIME_3SEC) {
|
||||||
if (j["camera"]["control"].get<std::string>() == "enable") this->camera_recording_when_printing = true;
|
if (j["camera"]["control"].get<std::string>() == "enable") this->camera_recording_when_printing = true;
|
||||||
if (j["camera"]["control"].get<std::string>() == "disable") this->camera_recording_when_printing = false;
|
if (j["camera"]["control"].get<std::string>() == "disable") this->camera_recording_when_printing = false;
|
||||||
BOOST_LOG_TRIVIAL(info) << "ack of ipcam_record_set " << camera_recording_when_printing;
|
BOOST_LOG_TRIVIAL(info) << "ack of ipcam_record_set " << camera_recording_when_printing;
|
||||||
@ -6093,10 +6094,6 @@ void MachineObject::parse_new_info(json print)
|
|||||||
if (camera_resolution_hold_count > 0) camera_resolution_hold_count--;
|
if (camera_resolution_hold_count > 0) camera_resolution_hold_count--;
|
||||||
if (camera_timelapse_hold_count > 0) camera_timelapse_hold_count--;
|
if (camera_timelapse_hold_count > 0) camera_timelapse_hold_count--;
|
||||||
//if (xcam_buildplate_marker_hold_count > 0) xcam_buildplate_marker_hold_count--;first_layer_inspector
|
//if (xcam_buildplate_marker_hold_count > 0) xcam_buildplate_marker_hold_count--;first_layer_inspector
|
||||||
if (xcam_first_layer_hold_count > 0) xcam_first_layer_hold_count--;
|
|
||||||
if (xcam_auto_recovery_hold_count > 0) xcam_auto_recovery_hold_count--;
|
|
||||||
if (xcam_prompt_sound_hold_count > 0) xcam_prompt_sound_hold_count--;
|
|
||||||
if (xcam_filament_tangle_detect_count > 0)xcam_filament_tangle_detect_count--;
|
|
||||||
if (nozzle_setting_hold_count > 0)nozzle_setting_hold_count--;
|
if (nozzle_setting_hold_count > 0)nozzle_setting_hold_count--;
|
||||||
|
|
||||||
|
|
||||||
@ -6136,7 +6133,9 @@ void MachineObject::parse_new_info(json print)
|
|||||||
printing_speed_lvl = (PrintingSpeedLevel)get_flag_bits(cfg, 8, 3);
|
printing_speed_lvl = (PrintingSpeedLevel)get_flag_bits(cfg, 8, 3);
|
||||||
//is_support_build_plate_marker_detect = get_flag_bits(cfg, 12); todo yangcong
|
//is_support_build_plate_marker_detect = get_flag_bits(cfg, 12); todo yangcong
|
||||||
|
|
||||||
|
if (time(nullptr) - xcam_first_layer_hold_start > HOLD_TIME_3SEC) {
|
||||||
xcam_first_layer_inspector = get_flag_bits(cfg, 12);
|
xcam_first_layer_inspector = get_flag_bits(cfg, 12);
|
||||||
|
}
|
||||||
|
|
||||||
if (time(nullptr) - xcam_ai_monitoring_hold_start > HOLD_COUNT_MAX)
|
if (time(nullptr) - xcam_ai_monitoring_hold_start > HOLD_COUNT_MAX)
|
||||||
{
|
{
|
||||||
@ -6152,31 +6151,38 @@ void MachineObject::parse_new_info(json print)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (time(nullptr) - xcam_auto_recovery_hold_start > HOLD_COUNT_MAX) {
|
||||||
xcam_auto_recovery_step_loss = get_flag_bits(cfg, 16);
|
xcam_auto_recovery_step_loss = get_flag_bits(cfg, 16);
|
||||||
|
}
|
||||||
|
|
||||||
if (time(nullptr) - ams_user_setting_start > HOLD_COUNT_MAX)
|
if (time(nullptr) - ams_user_setting_start > HOLD_COUNT_MAX){
|
||||||
{
|
|
||||||
ams_calibrate_remain_flag = get_flag_bits(cfg, 17);
|
ams_calibrate_remain_flag = get_flag_bits(cfg, 17);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (time(nullptr) - ams_switch_filament_start > HOLD_TIME_MAX)
|
if (time(nullptr) - ams_switch_filament_start > HOLD_TIME_3SEC){
|
||||||
{
|
|
||||||
ams_auto_switch_filament_flag = get_flag_bits(cfg, 18);
|
ams_auto_switch_filament_flag = get_flag_bits(cfg, 18);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (time(nullptr) - xcam__save_remote_print_file_to_storage_start_time > HOLD_TIME_MAX)
|
if (time(nullptr) - xcam__save_remote_print_file_to_storage_start_time > HOLD_TIME_3SEC){
|
||||||
{
|
|
||||||
xcam__save_remote_print_file_to_storage = get_flag_bits(cfg, 19);
|
xcam__save_remote_print_file_to_storage = get_flag_bits(cfg, 19);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (time(nullptr) - xcam_door_open_check_start_time > HOLD_TIME_MAX)
|
if (time(nullptr) - xcam_door_open_check_start_time > HOLD_TIME_3SEC){
|
||||||
{
|
|
||||||
xcam_door_open_check = (DoorOpenCheckState) get_flag_bits(cfg, 20, 2);
|
xcam_door_open_check = (DoorOpenCheckState) get_flag_bits(cfg, 20, 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (time(nullptr) - xcam_prompt_sound_hold_start > HOLD_TIME_3SEC) {
|
||||||
xcam_allow_prompt_sound = get_flag_bits(cfg, 22);
|
xcam_allow_prompt_sound = get_flag_bits(cfg, 22);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (time(nullptr) - xcam_filament_tangle_detect_hold_start > HOLD_TIME_3SEC){
|
||||||
xcam_filament_tangle_detect = get_flag_bits(cfg, 23);
|
xcam_filament_tangle_detect = get_flag_bits(cfg, 23);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (time(nullptr) - nozzle_blob_detection_hold_start > HOLD_TIME_3SEC) {
|
||||||
nozzle_blob_detection_enabled = get_flag_bits(cfg, 24);
|
nozzle_blob_detection_enabled = get_flag_bits(cfg, 24);
|
||||||
|
}
|
||||||
|
|
||||||
installed_upgrade_kit = get_flag_bits(cfg, 25);
|
installed_upgrade_kit = get_flag_bits(cfg, 25);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -39,8 +39,8 @@
|
|||||||
#define HOLD_COUNT_MAX 3
|
#define HOLD_COUNT_MAX 3
|
||||||
#define HOLD_COUNT_CAMERA 6
|
#define HOLD_COUNT_CAMERA 6
|
||||||
|
|
||||||
#define HOLD_TIME_MAX 3 // 3 seconds
|
#define HOLD_TIME_3SEC 3 // 3 seconds
|
||||||
#define HOLD_TIME_SWITCHING 6 // 6 seconds
|
#define HOLD_TIME_6SEC 6 // 6 seconds
|
||||||
|
|
||||||
#define GET_VERSION_RETRYS 10
|
#define GET_VERSION_RETRYS 10
|
||||||
#define RETRY_INTERNAL 2000
|
#define RETRY_INTERNAL 2000
|
||||||
@ -888,6 +888,7 @@ public:
|
|||||||
int total_layers = 0;
|
int total_layers = 0;
|
||||||
bool is_support_layer_num { false };
|
bool is_support_layer_num { false };
|
||||||
bool nozzle_blob_detection_enabled{ false };
|
bool nozzle_blob_detection_enabled{ false };
|
||||||
|
time_t nozzle_blob_detection_hold_start = 0;
|
||||||
|
|
||||||
int last_cali_version = -1;
|
int last_cali_version = -1;
|
||||||
int cali_version = -1;
|
int cali_version = -1;
|
||||||
@ -966,7 +967,7 @@ public:
|
|||||||
std::string camera_resolution = "";
|
std::string camera_resolution = "";
|
||||||
std::vector<std::string> camera_resolution_supported;
|
std::vector<std::string> camera_resolution_supported;
|
||||||
bool xcam_first_layer_inspector { false };
|
bool xcam_first_layer_inspector { false };
|
||||||
int xcam_first_layer_hold_count = 0;
|
time_t xcam_first_layer_hold_start = 0;
|
||||||
std::string local_rtsp_url;
|
std::string local_rtsp_url;
|
||||||
std::string tutk_state;
|
std::string tutk_state;
|
||||||
enum LiveviewLocal {
|
enum LiveviewLocal {
|
||||||
@ -1022,13 +1023,13 @@ public:
|
|||||||
time_t xcam_ai_monitoring_hold_start = 0;
|
time_t xcam_ai_monitoring_hold_start = 0;
|
||||||
std::string xcam_ai_monitoring_sensitivity;
|
std::string xcam_ai_monitoring_sensitivity;
|
||||||
bool xcam_buildplate_marker_detector{ false };
|
bool xcam_buildplate_marker_detector{ false };
|
||||||
int xcam_buildplate_marker_hold_count = 0;
|
time_t xcam_buildplate_marker_hold_start = 0;
|
||||||
bool xcam_auto_recovery_step_loss{ false };
|
bool xcam_auto_recovery_step_loss{ false };
|
||||||
bool xcam_allow_prompt_sound{ false };
|
bool xcam_allow_prompt_sound{ false };
|
||||||
bool xcam_filament_tangle_detect{ false };
|
bool xcam_filament_tangle_detect{ false };
|
||||||
int xcam_auto_recovery_hold_count = 0;
|
time_t xcam_auto_recovery_hold_start = 0;
|
||||||
int xcam_prompt_sound_hold_count = 0;
|
time_t xcam_prompt_sound_hold_start = 0;
|
||||||
int xcam_filament_tangle_detect_count = 0;
|
time_t xcam_filament_tangle_detect_hold_start = 0;
|
||||||
int nozzle_selected_count = 0;
|
int nozzle_selected_count = 0;
|
||||||
bool flag_update_nozzle = {true};
|
bool flag_update_nozzle = {true};
|
||||||
|
|
||||||
|
@ -414,7 +414,7 @@ void ExtruderSwithingStatus::updateBy(MachineObject *obj)
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
/*do not display while command sended in a mean while*/
|
/*do not display while command sended in a mean while*/
|
||||||
if ((time(nullptr) - m_last_ctrl_time) > HOLD_TIME_SWITCHING)
|
if ((time(nullptr) - m_last_ctrl_time) > HOLD_TIME_6SEC)
|
||||||
{
|
{
|
||||||
updateBy(obj->m_extder_data);
|
updateBy(obj->m_extder_data);
|
||||||
}
|
}
|
||||||
@ -5029,10 +5029,12 @@ void StatusPanel::on_show_print_options(wxCommandEvent& event)
|
|||||||
if (print_options_dlg == nullptr) {
|
if (print_options_dlg == nullptr) {
|
||||||
print_options_dlg = new PrintOptionsDialog(this);
|
print_options_dlg = new PrintOptionsDialog(this);
|
||||||
print_options_dlg->update_machine_obj(obj);
|
print_options_dlg->update_machine_obj(obj);
|
||||||
|
print_options_dlg->update_options(obj);
|
||||||
print_options_dlg->ShowModal();
|
print_options_dlg->ShowModal();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
print_options_dlg->update_machine_obj(obj);
|
print_options_dlg->update_machine_obj(obj);
|
||||||
|
print_options_dlg->update_options(obj);
|
||||||
print_options_dlg->ShowModal();
|
print_options_dlg->ShowModal();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user