mavlink/MAVSDK-docs

Noticed potentially outdated documentation within MAVSDK on C++

Closed this issue · 4 comments

I recently updated MAVSDK on my project and noticed that using mavsdk within my project does not match the documentation.

The documentation recommends initialization like:

`
Mavsdk mavsdk;

ConnectionResult connection_result = mavsdk.add_any_connection("udp://:14540");
`

but the above code does not work anymore because the default constructor has been deleted. Reading through the repo I was able to resolve my issue, but just wanted to make sure that the documentation is outdated and I am using MAVSDK correctly. If the documentation is outdated, I am open to spending sometime refining portions of the documentation.

Thanks. Contributions to fix it are always welcome.

Probably a few places: https://github.com/search?q=repo%3Amavlink%2FMAVSDK-docs%20Mavsdk%20mavsdk%3B&type=code

Created a PR - #286

Merged, thanks!