FIX:fixed the incorrect upper limit of bed temperature

jira:[STUDIO-8650]

Change-Id: Ib9270caa57f4ce63f0ac1a0ace5c2a51b3b6fc14
This commit is contained in:
tao wang 2024-12-21 17:44:17 +08:00 committed by lane.wei
parent 9d6cc9c37f
commit 7ff9b96837
1 changed files with 1 additions and 1 deletions

View File

@ -5639,7 +5639,7 @@ void MachineObject::parse_new_info(json print)
is_support_agora = get_flag_bits(fun, 1); is_support_agora = get_flag_bits(fun, 1);
if (is_support_agora) is_support_tunnel_mqtt = false; if (is_support_agora) is_support_tunnel_mqtt = false;
is_220V_voltage = get_flag_bits(fun, 3) == 0?false:true; is_220V_voltage = get_flag_bits(fun, 2) == 0?false:true;
is_support_flow_calibration = get_flag_bits(fun, 6); is_support_flow_calibration = get_flag_bits(fun, 6);
is_support_pa_calibration = get_flag_bits(fun, 7); is_support_pa_calibration = get_flag_bits(fun, 7);
is_support_prompt_sound = get_flag_bits(fun, 8); is_support_prompt_sound = get_flag_bits(fun, 8);