Skip to content

Commit 0ef853c

Browse files
committed
Add configuration to status command
1 parent d166d54 commit 0ef853c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

MAVProxy/modules/mavproxy_DGPS.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,11 @@ def cmd_start(self):
7979
def dgps_status(self):
8080
'''show dgps status'''
8181
now = time.time()
82+
print("DGPS Configuration:")
83+
print("Connection Type: %s" % self.dgps_settings.conntype)
84+
print("IP Address: %s" % self.dgps_settings.ip)
85+
print("Port: %s" % self.dgps_settings.port)
86+
8287
if self.port is None:
8388
print("DGPS: Not started")
8489
return

0 commit comments

Comments
 (0)