forked from ARK-Electronics/ark_companion_scripts
-
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.
Mavlink-router only for DEXI initial image
- Loading branch information
Showing
1 changed file
with
28 additions
and
28 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 |
---|---|---|
|
@@ -3,9 +3,9 @@ | |
# Prompt for sudo password at the start to cache it | ||
sudo true | ||
|
||
INSTALL_DDS_AGENT="y" | ||
INSTALL_LOGLOADER="y" | ||
INSTALL_POLARIS="y" | ||
INSTALL_DDS_AGENT="n" | ||
INSTALL_LOGLOADER="n" | ||
INSTALL_POLARIS="n" | ||
POLARIS_API_KEY="" | ||
USER_EMAIL="[email protected]" | ||
UPLOAD_TO_FLIGHT_REVIEW="n" | ||
|
@@ -60,31 +60,31 @@ if [ "$#" -gt 0 ]; then | |
;; | ||
esac | ||
done | ||
else | ||
echo "Do you want to install micro-xrce-dds-agent? (y/n)" | ||
read -r INSTALL_DDS_AGENT | ||
|
||
echo "Do you want to install logloader? (y/n)" | ||
read -r INSTALL_LOGLOADER | ||
|
||
if [ "$INSTALL_LOGLOADER" = "y" ]; then | ||
echo "Please enter your email: " | ||
read -r USER_EMAIL | ||
|
||
echo "Do you want to auto upload to PX4 Flight Review? (y/n)" | ||
read -r UPLOAD_TO_FLIGHT_REVIEW | ||
if [ "$UPLOAD_TO_FLIGHT_REVIEW" = "y" ]; then | ||
echo "Do you want your logs to be public? (y/n)" | ||
read -r PUBLIC_LOGS | ||
fi | ||
fi | ||
|
||
echo "Do you want to install the polaris-client-mavlink? (y/n)" | ||
read -r INSTALL_POLARIS | ||
if [ "$INSTALL_POLARIS" = "y" ]; then | ||
echo "Enter API key: " | ||
read -r POLARIS_API_KEY | ||
fi | ||
# else | ||
# echo "Do you want to install micro-xrce-dds-agent? (y/n)" | ||
# read -r INSTALL_DDS_AGENT | ||
|
||
# echo "Do you want to install logloader? (y/n)" | ||
# read -r INSTALL_LOGLOADER | ||
|
||
# if [ "$INSTALL_LOGLOADER" = "y" ]; then | ||
# echo "Please enter your email: " | ||
# read -r USER_EMAIL | ||
|
||
# echo "Do you want to auto upload to PX4 Flight Review? (y/n)" | ||
# read -r UPLOAD_TO_FLIGHT_REVIEW | ||
# if [ "$UPLOAD_TO_FLIGHT_REVIEW" = "y" ]; then | ||
# echo "Do you want your logs to be public? (y/n)" | ||
# read -r PUBLIC_LOGS | ||
# fi | ||
# fi | ||
|
||
# echo "Do you want to install the polaris-client-mavlink? (y/n)" | ||
# read -r INSTALL_POLARIS | ||
# if [ "$INSTALL_POLARIS" = "y" ]; then | ||
# echo "Enter API key: " | ||
# read -r POLARIS_API_KEY | ||
# fi | ||
|
||
fi | ||
|
||
|