Skip to content

Commit

Permalink
MAVExplorer: decode devid for all param 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 5402fbe commit 97403e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MAVProxy/tools/MAVExplorer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1246,7 +1246,7 @@ def cmd_devid(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(params[p], p)
if p.startswith('INS_') and p.endswith('_ID'):
if p.startswith('INS') and p.endswith('_ID'):
mp_util.decode_devid(params[p], p)
if p.startswith('GND_BARO') and p.endswith('_ID'):
mp_util.decode_devid(params[p], p)
Expand Down

0 comments on commit 97403e4

Please # to comment.