Browse Source

SendMavCommandWithSignallingTest.cc: ignore MAV_CMD_REQUEST_MESSAGE:

gimbal controller sends some message requests when receiving a
hearbeat, and the cmd results collide with this test, so we filter
out MAV_CMD_REQUEST_MESSAGE from gimbal controller
QGC4.4
davidsastresas 1 year ago committed by Julian Oes
parent
commit
00fbb1a73e
No known key found for this signature in database
GPG Key ID: F0ED380FEA56DE41
  1. 10
      src/Vehicle/SendMavCommandWithSignallingTest.cc

10
src/Vehicle/SendMavCommandWithSignallingTest.cc

@ -38,6 +38,16 @@ void SendMavCommandWithSignallingTest::_testCaseWorker(TestCase_t& testCase) @@ -38,6 +38,16 @@ void SendMavCommandWithSignallingTest::_testCaseWorker(TestCase_t& testCase)
QCOMPARE(spyResult.wait(10000), true);
QList<QVariant> arguments = spyResult.takeFirst();
// Gimbal controler requests MAVLINK_MSG_ID_GIMBAL_MANAGER_INFORMATION on vehicle connection,
// and that messes with this test, as it receives response to that command instead. So if we
// are taking the response to that MAV_CMD_REQUEST_MESSAGE, we discard it and take the next
while (arguments.at(2).toInt() == MAV_CMD_REQUEST_MESSAGE) {
qDebug() << "Received response to MAV_CMD_REQUEST_MESSAGE(512), ignoring, waiting for: " << testCase.command;
QCOMPARE(spyResult.wait(10000), true);
arguments = spyResult.takeFirst();
}
QCOMPARE(arguments.count(), 5);
QCOMPARE(arguments.at(0).toInt(), vehicle->id());
QCOMPARE(arguments.at(1).toInt(), MAV_COMP_ID_AUTOPILOT1);

Loading…
Cancel
Save