🐛 Fix AnyCubic Vyper ProcessPanelRequest

Followup to #25405
This commit is contained in:
Scott Lahteine 2023-03-26 21:36:40 -05:00
parent c2decc3e2e
commit 08675612d5

View file

@ -1004,7 +1004,7 @@ namespace Anycubic {
if (0x83 == data_buf[0]) {
control_index = uint16_t(data_buf[1] << 8) | uint16_t(data_buf[2]);
if (control_index == KEY_ADDRESS) { // is KEY
if ((control_index & 0xF000) == KEY_ADDRESS) { // is KEY
//key_index = control_index;
key_value = (uint16_t(data_buf[4]) << 8) | uint16_t(data_buf[5]);
}
@ -1102,7 +1102,7 @@ namespace Anycubic {
}
*/
}
else if (data_buf[0] == 0x82) {
else if (0x82 == data_buf[0]) {
// send_cmd_to_pc(cmd ,start );
}
}