-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2649 from microsoft/clovett/mavlink_update
Fix AirSim so it works with PX4 master bits as of 5/1/2020
- Loading branch information
Showing
10 changed files
with
6,767 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,10 @@ | ||
@echo off | ||
set SCRIPT_PATH=%~dp0 | ||
cd %~dp0 | ||
if "%1" == "" goto :usage | ||
msbuild MavLinkComGenerator.csproj | ||
|
||
bin\Debug\MavLinkComGenerator.exe -xml:%1 -out:%SCRIPT_PATH%\..\include | ||
bin\Debug\MavLinkComGenerator.exe -xml:%SCRIPT_PATH%\..\mavlink\message_definitions\common.xml -out:%SCRIPT_PATH%\..\include | ||
copy ..\include\MavLinkMessages.cpp ..\src | ||
del ..\include\MavLinkMessages.cpp | ||
|
||
goto :eof | ||
|
||
:usage | ||
echo we need the location of the mavlink 2.0 "common.xml" as input argument |
Oops, something went wrong.