Skip to content

Commit

Permalink
Start adding logmessage command
Browse files Browse the repository at this point in the history
  • Loading branch information
shancock884 committed Jan 17, 2024
1 parent 2d3479e commit d0b0091
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions MAVProxy/tools/MAVExplorer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1122,6 +1122,10 @@ def cmd_paramchange(args):
vmap[pname] = pvalue
mestate.mlog.rewind()

def cmd_logmessage(args):
'''show log message information'''
pass

def cmd_mission(args):
'''show mission'''
if (len(args) == 1):
Expand Down Expand Up @@ -1409,6 +1413,7 @@ def main_loop():
'dump' : (cmd_dump, 'dump messages from log'),
'file' : (cmd_file, 'show files'),
'mission' : (cmd_mission, 'show mission'),
'logmessage' : (cmd_logmessage, 'show log message information'),
}

def progress_bar(pct):
Expand Down

0 comments on commit d0b0091

Please sign in to comment.