FIX:fixed the incorrect upper limit of bed temperature

jira:[STUDIO-8650]

Change-Id: Ib9270caa57f4ce63f0ac1a0ace5c2a51b3b6fc14
(cherry picked from commit 7ff9b96837d29bfed1ca21b448332feafa3a96a7)
This commit is contained in:
tao wang 2024-12-21 17:44:17 +08:00 committed by Noisyfox
parent b48d0861b7
commit 40e53b587c

View file

@ -5703,7 +5703,7 @@ void MachineObject::parse_new_info(json print)
is_support_agora = get_flag_bits(fun, 1);
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_pa_calibration = get_flag_bits(fun, 7);
is_support_prompt_sound = get_flag_bits(fun, 8);