mirror of https://github.com/ArduPilot/ardupilot
Tracker: mark log messages as streaming
This commit is contained in:
parent
b83c7f3025
commit
0c60e741ed
|
@ -87,9 +87,9 @@ void Tracker::Log_Write_Vehicle_Pos(int32_t lat, int32_t lng, int32_t alt, const
|
|||
const struct LogStructure Tracker::log_structure[] = {
|
||||
LOG_COMMON_STRUCTURES,
|
||||
{LOG_V_BAR_MSG, sizeof(log_Vehicle_Baro),
|
||||
"VBAR", "Qff", "TimeUS,Press,AltDiff", "sPm", "F00" },
|
||||
"VBAR", "Qff", "TimeUS,Press,AltDiff", "sPm", "F00" , true },
|
||||
{LOG_V_POS_MSG, sizeof(log_Vehicle_Pos),
|
||||
"VPOS", "QLLefff", "TimeUS,Lat,Lng,Alt,VelX,VelY,VelZ", "sddmnnn", "FGGB000" }
|
||||
"VPOS", "QLLefff", "TimeUS,Lat,Lng,Alt,VelX,VelY,VelZ", "sddmnnn", "FGGB000", true }
|
||||
};
|
||||
|
||||
void Tracker::Log_Write_Vehicle_Startup_Messages()
|
||||
|
|
Loading…
Reference in New Issue