From 46cf2a538f3c48ad7aba4cfad2a47b406733f365 Mon Sep 17 00:00:00 2001 From: Lorenz Meier Date: Thu, 10 Jan 2013 12:57:09 +0100 Subject: Included workaround for MacOS timestamp issue --- ROMFS/logging/logconv.m | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'ROMFS') diff --git a/ROMFS/logging/logconv.m b/ROMFS/logging/logconv.m index 263298dbc..b53d0ae39 100644 --- a/ROMFS/logging/logconv.m +++ b/ROMFS/logging/logconv.m @@ -9,6 +9,13 @@ close all % Set the path to your sysvector.bin file here filePath = 'sysvector.bin'; +% Work around a Matlab bug (not related to PX4) +% where timestamps from 1.1.1970 do not allow to +% read the file's size +if ismac + system('touch -t 201212121212.12 sysvector.bin'); +end + %%%%%%%%%%%%%%%%%%%%%%% % SYSTEM VECTOR % @@ -105,5 +112,3 @@ if exist(filePath, 'file') else disp(['file: ' filePath ' does not exist' char(10)]); end - - -- cgit v1.2.3