forked from Archive/PX4-Autopilot
do not read out home position in gcs (home position is still displayed)
This commit is contained in:
parent
8f1c46be92
commit
480c41d835
|
@ -1408,7 +1408,7 @@ int commander_thread_main(int argc, char *argv[])
|
||||||
home.alt = global_position.alt;
|
home.alt = global_position.alt;
|
||||||
|
|
||||||
warnx("home: lat = %.7f, lon = %.7f, alt = %.2f ", home.lat, home.lon, (double)home.alt);
|
warnx("home: lat = %.7f, lon = %.7f, alt = %.2f ", home.lat, home.lon, (double)home.alt);
|
||||||
mavlink_log_info(mavlink_fd, "#audio: home: %.7f, %.7f, %.2f", home.lat, home.lon, (double)home.alt);
|
mavlink_log_info(mavlink_fd, "home: %.7f, %.7f, %.2f", home.lat, home.lon, (double)home.alt);
|
||||||
|
|
||||||
/* announce new home position */
|
/* announce new home position */
|
||||||
if (home_pub > 0) {
|
if (home_pub > 0) {
|
||||||
|
|
Loading…
Reference in New Issue