Skip to content

Commit

Permalink
Merge branch 'ArduPilot:master' into pynmeagps-no-formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
richahert authored Feb 27, 2024
2 parents 34fc192 + 2f83d16 commit 1a5ec63
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions MAVProxy/tools/mavflightview.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,8 +374,8 @@ def mavflightview_mav(mlog, options=None, flightmode_selections=[]):
# may only be present for colour-source expressions to work
continue

if type == 'GPS' and hasattr(m,'I'):
type = 'GPS[%u]' % m.I
if type in ['GPS','VEH'] and hasattr(m,'I'):
type = '%s[%u]' % (type, m.I)

if not all_false and len(flightmode_selections) > 0 and idx < len(options._flightmodes) and m._timestamp >= options._flightmodes[idx][2]:
idx += 1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup
import os, platform, sys

version = "1.8.69"
version = "1.8.70"

def package_files(directory):
paths = []
Expand Down

0 comments on commit 1a5ec63

Please # to comment.