Skip to content

Commit

Permalink
misc: decode devid for all params starting with INS
Browse files Browse the repository at this point in the history
  • Loading branch information
joshanne authored and peterbarker committed Mar 25, 2024
1 parent 3192cae commit 5402fbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MAVProxy/modules/mavproxy_misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ def cmd_devid(self, args):
if p.startswith('COMPASS_DEV_ID') or p.startswith('COMPASS_PRIO') or (
p.startswith('COMPASS') and p.endswith('DEV_ID')):
mp_util.decode_devid(self.mav_param[p], p)
if p.startswith('INS_') and p.endswith('_ID'):
if p.startswith('INS') and p.endswith('_ID'):
mp_util.decode_devid(self.mav_param[p], p)
if p.startswith('GND_BARO') and p.endswith('_ID'):
mp_util.decode_devid(self.mav_param[p], p)
Expand Down

0 comments on commit 5402fbe

Please # to comment.