AP_Baro: mark logger Write() calls as streaming where appropriate

This commit is contained in:
Andrew Tridgell 2021-08-17 19:57:41 +10:00 committed by Peter Barker
parent d9ee2b3c6c
commit c80a2c2ef6

View File

@ -349,7 +349,7 @@ void AP_Baro_ICM20789::update()
// @Field: Praw: raw pressure from sensor
// @Field: P: pressure
// @Field: T: temperature
AP::logger().Write("ICMB", "TimeUS,Traw,Praw,P,T", "QIIff",
AP::logger().WriteStreaming("ICMB", "TimeUS,Traw,Praw,P,T", "QIIff",
AP_HAL::micros64(),
dd.Traw, dd.Praw, dd.P, dd.T);
#endif