Skip to content

Commit

Permalink
Console: Ignore MAV_COMP_ID_PERIPHERAL heartbeats
Browse files Browse the repository at this point in the history
  • Loading branch information
stephendade committed Oct 31, 2022
1 parent 327254a commit 24f39f3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion MAVProxy/modules/mavproxy_console.py
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,8 @@ def mavlink_packet(self, msg):
if msg.get_srcComponent() in [mavutil.mavlink.MAV_COMP_ID_ADSB,
mavutil.mavlink.MAV_COMP_ID_ODID_TXRX_1,
mavutil.mavlink.MAV_COMP_ID_ODID_TXRX_2,
mavutil.mavlink.MAV_COMP_ID_ODID_TXRX_3]:
mavutil.mavlink.MAV_COMP_ID_ODID_TXRX_3,
mavutil.mavlink.MAV_COMP_ID_PERIPHERAL]:
# ignore these
return

Expand Down

0 comments on commit 24f39f3

Please sign in to comment.