feat: add is_support_remote_dry flag parsing from firmware

Parses fun2 bit 5 from printer firmware to enable remote drying support.
This commit is contained in:
Noisyfox
2026-07-07 13:27:39 +08:00
parent 22d9765348
commit ec913eaf30

View File

@@ -5031,6 +5031,7 @@ void MachineObject::parse_new_info(json print)
// fun2 may have infinite length, use get_flag_bits_no_border
if (!fun2.empty()) {
is_support_print_with_emmc = get_flag_bits_no_border(fun2, 0) == 1;
is_support_remote_dry = (get_flag_bits_no_border(fun2, 5) == 1);
}
/*aux*/