Skip to content

Commit 5992145

Browse files
committed
mavproxy_link.py: add bytes-available-to-read counter in link stats output
1 parent 8c15c9d commit 5992145

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

MAVProxy/modules/mavproxy_link.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,18 @@ def show_link(self):
306306
except AttributeError:
307307
# some mav objects may not have a "signing" attribute
308308
pass
309-
print("link %s %s (%u packets, %u bytes, %.2fs delay, %u lost, %.1f%% loss, rate:%uB/s%s)" % (
309+
310+
# add an entry for bytes-available-to-read:
311+
bytes_available = ""
312+
try:
313+
import fcntl
314+
sock = master.port
315+
bytes_available = struct.unpack('I', fcntl.ioctl(sock, 0x541B, struct.pack('I', 0)))[0]
316+
bytes_available = f" avail={bytes_available}"
317+
except AttributeError:
318+
pass
319+
320+
print("link %s %s (%u packets, %u bytes, %.2fs delay, %u lost, %.1f%% loss, rate:%uB/s%s%s)" % (
310321
self.link_label(master),
311322
status,
312323
self.status.counters['MasterIn'][master.linknum],
@@ -316,6 +327,7 @@ def show_link(self):
316327
master.packet_loss(),
317328
self.status.bytecounters['MasterIn'][master.linknum].rate(),
318329
sign_string,
330+
bytes_available
319331
))
320332

321333
def reset_link_stats(self):

0 commit comments

Comments
 (0)