forked from flyingk/kVIS3_bsp_ardupilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBSP_ID.m
50 lines (38 loc) · 1.53 KB
/
BSP_ID.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
% kVIS3 Data Visualisation
%
% Copyright (C) 2012 - present Kai Lehmkuehler, Matt Anderson and
% contributors
%
% Contact: [email protected]
%
% This program is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with this program. If not, see <http://www.gnu.org/licenses/>.
function [BSP_Info] = BSP_ID()
% BSP ID function
% Name of BSP
BSP_Info.Name = 'ArduPilot';
BSP_Info.Version = '001';
% Data import function name
BSP_Info.importFcn = {'APM .bin File' , 'import_APM_file' ;
'APM .bin Folder' , 'import_APM_folder' ;
'Export .csv Single', 'export_csv_single' ;
'Export .csv All' , 'export_csv_all' };
% a custom plot definition for a single axes plot to be shown on the main
% axes after import of data
BSP_Info.importPlot = '';
BSP_Info.armedChannel = '';
BSP_Info.flightModeChannel = '';
BSP_Info.mapChannels = {};
BSP_Info.aircraftVisualModelFile = '';
BSP_Info.customTabs = {};
BSP_Info.addOns = {'Create SIDPAC file','','fill_fdata_Callback'};