forked from Auterion/px4-simulation-ignition
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
simplify to only transfer needed sensor and groundtruth msg; support …
…only TCP and UDP; clean up unused features
- Loading branch information
1 parent
d889d93
commit 330314f
Showing
6 changed files
with
246 additions
and
985 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,21 @@ | ||
#!/bin/bash | ||
|
||
# present working directory | ||
PWD=$(pwd) | ||
|
||
# Clone c_library_v2 commit matching with current px4-firmware mavlink commit | ||
# => mavlink/c_library_v2:fbdb7c29 is built from mavlink/mavlink:08112084 | ||
git clone -q https://github.com/mavlink/c_library_v2.git ${PWD}/mavlink && \ | ||
cd ${PWD}/mavlink && git checkout -q fbdb7c29e47902d44eeaa58b4395678a9b78f3ae && \ | ||
rm -rf ${PWD}/mavlink/.git && cd ${PWD} | ||
|
||
export _MAVLINK_INCLUDE_DIR=${PWD}/mavlink | ||
|
||
|
||
if [ ! -e build ]; then | ||
mkdir build | ||
fi | ||
cd build | ||
cmake .. | ||
make | ||
cpack -G DEB | ||
|
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
Oops, something went wrong.