Skip to content

Commit

Permalink
core: ardupilot-manager: Fix default GCS Link endpoint
Browse files Browse the repository at this point in the history
Now pointing as a UDP Client to `192.168.2.1:14550`, as was original companion, to allow automatically QGroundControl detection.
  • Loading branch information
rafaellehmkuhl committed May 20, 2021
1 parent 115a817 commit 7aa698c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/services/ardupilot_manager/ArduPilotManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def start_serial(self, device: str) -> None:
def start_mavlink_manager(self, device: Endpoint) -> None:
try:
self.add_new_endpoints(
{Endpoint("GCS Link", self.settings.app_name, "udpin", "0.0.0.0", 14550, protected=True)}
{Endpoint("GCS Link", self.settings.app_name, "udpout", "192.168.2.1", 14550, protected=True)}
)
except Exception as error:
warn(f"Could not create default GCS endpoint: {error}")
Expand Down

0 comments on commit 7aa698c

Please sign in to comment.