Add support for Distance Sensor in ArduPilot#2920
Add support for Distance Sensor in ArduPilot#2920rajat2004 wants to merge 4 commits intomicrosoft:masterfrom
Conversation
626675a to
4a2dfd5
Compare
|
@madratman @saihv @ironclownfish @jonyMarino Just asking, would it be possible to have the packaged Blocks binary from the Azure Pipelines available to download? Described here https://docs.microsoft.com/en-us/azure/devops/pipelines/artifacts/artifacts-overview?view=azure-devops (I haven't myself gone through it completely) |
Just a follow-up, could an API call like this work - https://docs.microsoft.com/en-us/rest/api/azure/devops/build/artifacts/get?view=azure-devops-rest-4.1? |
c041335 to
a6c62f7
Compare
|
Replaced by #3364 |
Changes -
Win Blocks binary - https://drive.google.com/file/d/1eLaC58nnh0ms9BhHqvVMnXo9o_xiH3pr/view?usp=sharing
TODO:
Corresponding AP PR - ArduPilot/ardupilot#15007
Follow-up after #2807
Code duplication, any ideas on how this can be reduced?
Second-last commit fixes a style inconsistency, camel case is not used for variables there, also no idea why I used
shared_ptr, maybe a remanent of earlier copy-paste from PX4 backend.Last one updates C++ standard used in Unity to C++14, required for
make_unique(see https://en.cppreference.com/w/cpp/memory/unique_ptr/make_unique), otherwise this happensHowever, AirLib is built with C++17 standard in UE, which can cause problems later on. Should it be updated further to 17? (Tested it to be working locally)