aboutsummaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorLorenz Meier <lm@inf.ethz.ch>2014-07-08 11:42:46 +0200
committerLorenz Meier <lm@inf.ethz.ch>2014-07-08 11:42:46 +0200
commitd6999384ceb905f82896b99dda6341c7b615ba7c (patch)
treeb7a700afe3d79570b2f691f34ed3ea2285c9540f /Tools
parent07855120268cef79e9d23d7cd091c526fa4622af (diff)
downloadpx4-firmware-d6999384ceb905f82896b99dda6341c7b615ba7c.tar.gz
px4-firmware-d6999384ceb905f82896b99dda6341c7b615ba7c.tar.bz2
px4-firmware-d6999384ceb905f82896b99dda6341c7b615ba7c.zip
Improve modem manager warning to avoid having smart people tell us we have Linux compatibility issues while we actually do not.
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/px_uploader.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/px_uploader.py b/Tools/px_uploader.py
index a113f5628..cd7884f6d 100755
--- a/Tools/px_uploader.py
+++ b/Tools/px_uploader.py
@@ -452,9 +452,9 @@ args = parser.parse_args()
# warn people about ModemManager which interferes badly with Pixhawk
if os.path.exists("/usr/sbin/ModemManager"):
- print("=======================================================================")
- print("WARNING: You should uninstall ModemManager as it conflicts with Pixhawk")
- print("=======================================================================")
+ print("==========================================================================================================")
+ print("WARNING: You should uninstall ModemManager as it conflicts with any non-modem serial device (like Pixhawk)")
+ print("==========================================================================================================")
# Load the firmware file
fw = firmware(args.firmware)