Tracker: mark log messages as streaming

This commit is contained in:
Andrew Tridgell 2021-07-27 18:48:09 +10:00
parent b83c7f3025
commit 0c60e741ed
1 changed files with 2 additions and 2 deletions

View File

@ -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()