mirror of https://github.com/ArduPilot/ardupilot
AP_Mount: siyi a8 fix for gimbal-config-info message
Siyi A8 uses a different format from Z10 for this message
This commit is contained in:
parent
17e21fed22
commit
2c366bf3d7
|
@ -376,7 +376,8 @@ void AP_Mount_Siyi::process_packet()
|
|||
break;
|
||||
|
||||
case SiyiCommandId::ACQUIRE_GIMBAL_CONFIG_INFO: {
|
||||
if (_parsed_msg.data_bytes_received != 5) {
|
||||
if (_parsed_msg.data_bytes_received != 5 && // ZR10 firmware version reply is 5 bytes
|
||||
_parsed_msg.data_bytes_received != 7) { // A8 firmware version reply is 7 bytes
|
||||
unexpected_len = true;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue