diff options
| author | Keith Packard <keithp@keithp.com> | 2009-09-05 22:45:49 -0700 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2009-09-05 22:45:49 -0700 | 
| commit | 6d018ab933832e2d80bb1564c339d9fb18b57be2 (patch) | |
| tree | 918ddb35a65374c6dd52fe726ae9989e12876bcd /ao-tools/lib/cc.h | |
| parent | c46e832b28820d7c5be4efaacbbd7c0607927fe5 (diff) | |
Handle vageries of .telem files in ao-postflight
Telem files have multiple entries of the same state, and sometimes
long gaps between recordings. Deal with this as best as possible.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'ao-tools/lib/cc.h')
| -rw-r--r-- | ao-tools/lib/cc.h | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/ao-tools/lib/cc.h b/ao-tools/lib/cc.h index 3975cf1b..57f80b8d 100644 --- a/ao-tools/lib/cc.h +++ b/ao-tools/lib/cc.h @@ -75,6 +75,7 @@ struct cc_timedata {  	int			num;  	int			size;  	struct cc_timedataelt	*data; +	double			time_offset;  }; @@ -92,8 +93,8 @@ struct cc_gpselt {  struct cc_gpsdata {  	int			num;  	int			size; -	double			time_offset;  	struct cc_gpselt	*data; +	double			time_offset;  };  /*  | 
