Skip to content

Commit

Permalink
Merge CE commit '4c00afc40f7565d375677e3086d7384021084eda'
Browse files Browse the repository at this point in the history
  • Loading branch information
chaoflow committed Jul 14, 2019
2 parents 0010155 + 4c00afc commit 9012cea
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions code/marv-robotics/marv_robotics/gnss.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,12 @@ def gnss_plots(gps, orientation):
gtitle = gps.title

gps = yield marv.pull(gps) # There is only one message

# Check whether there are any valid messages left
if gps is None:
log.error('No valid gps messages')
raise marv.Abort()

gps = gps['values']
if orientation is not None:
otitle = orientation.title
Expand Down

0 comments on commit 9012cea

Please sign in to comment.