ArduPilot / MissionPlanner

Mission Planner Ground Control Station for ArduPilot (c# .net)
http://ardupilot.org/planner/
GNU General Public License v3.0
1.79k stars 2.41k forks source link

Dataflash viewer missing some events #2099

Open rmackay9 opened 5 years ago

rmackay9 commented 5 years ago

I think MP's display of events is missing some recent additions that are available in Copter-3.6 including

DATA_GPS_PRIMARY_CHANGED = 67,
DATA_WINCH_RELAXED = 68,
DATA_WINCH_LENGTH_CONTROL = 69,
DATA_WINCH_RATE_CONTROL = 70,
DATA_ZIGZAG_STORE_A = 71,
DATA_ZIGZAG_STORE_B = 72,
DATA_LAND_REPO_ACTIVE = 73,

the list can be found here in AP_Logger.h and is now shared across all vehicles.

Here is a screen shot showing the issue. As a side note I think we should actually remove the "DATA_" part at the front because I don't think this is very useful. mp-missing-event

rmackay9 commented 4 years ago

It seems like all events are missing in MP's beta firmware when used with Copter-4.0.3. image

meee1 commented 4 years ago

traced this to the filtered view only. the main view is evaluating the extra data. the filtered view was not.

rmackay9 commented 4 years ago

Ah, excellent, thanks!