From 7861caf482584afcc19ad235bcbedf26386c05dd Mon Sep 17 00:00:00 2001 From: Lorenz Meier Date: Thu, 8 Aug 2013 11:24:57 +0200 Subject: Hotfix: Cleanup / revision of log conversion scripts --- Tools/logconv.m | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Tools/logconv.m') diff --git a/Tools/logconv.m b/Tools/logconv.m index f7c291b48..f2ae6e5f3 100644 --- a/Tools/logconv.m +++ b/Tools/logconv.m @@ -16,7 +16,7 @@ close all % ************************************************************************ % Set the path to your sysvector.bin file here -filePath = 'log_second_flight.bin'; +filePath = 'log001.bin'; % Set the minimum and maximum times to plot here [in seconds] mintime=0; %The minimum time/timestamp to display, as set by the user [0 for first element / start] @@ -111,6 +111,7 @@ function ImportPX4LogData() time_us = sysvector.TIME_StartTime(end) - sysvector.TIME_StartTime(1); time_s = uint64(time_us*1e-6); time_m = uint64(time_s/60); + time_s = time_s - time_m * 60 disp([sprintf('Flight log duration: %d:%d (minutes:seconds)', time_m, time_s)]); -- cgit v1.2.3