We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As discussed here: mavlink/MAVSDK#314. Depends on this PR: mavlink/MAVSDK#316
From a docs perspective this pretty much involves doing a global search->replace of "&device" to device where the device is used:
auto telemetry = std::make_shared<Telemetry>(&device);
TO
auto telemetry = std::make_shared<Telemetry>(device);
BUT cannot do a pure replace, because we still create the reference in the same way:
Device &device = dc.device();
Will also need to rebuild API reference.
The text was updated successfully, but these errors were encountered:
Will be fixed by #107
Sorry, something went wrong.
hamishwillee
No branches or pull requests
As discussed here: mavlink/MAVSDK#314. Depends on this PR: mavlink/MAVSDK#316
From a docs perspective this pretty much involves doing a global search->replace of "&device" to device where the device is used:
TO
BUT cannot do a pure replace, because we still create the reference in the same way:
Will also need to rebuild API reference.
The text was updated successfully, but these errors were encountered: