mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
AP_Logger: correctly read file header for block logger
This commit is contained in:
parent
e3159429cc
commit
5234a75037
@ -205,7 +205,7 @@ uint16_t AP_Logger_Block::ReadHeaders()
|
||||
// we are at the start of a file, read the file header
|
||||
if (df_FilePage == 1) {
|
||||
struct FileHeader fh;
|
||||
BlockRead(0, &fh, sizeof(fh));
|
||||
BlockRead(sizeof(ph), &fh, sizeof(fh));
|
||||
df_FileTime = fh.utc_secs;
|
||||
df_Read_BufferIdx += sizeof(fh);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user