Basic Suunto EON Steel downloading copied from my test application. This parses all the core dive data, including sample data (time, depth, cylinder pressure, deco information etc). The deco information returns ceiling and TTS rather than ceiling and "time at ceiling", because that's what the dive computer has, and I don't see any other way to return the information. We don't report any events yet, though. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
33 lines
1.0 KiB
C
33 lines
1.0 KiB
C
/*
|
|
* libdivecomputer
|
|
*
|
|
* Copyright (C) 2008 Jef Driesen
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
* MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef SUUNTO_H
|
|
#define SUUNTO_H
|
|
|
|
#include "suunto_solution.h"
|
|
#include "suunto_eon.h"
|
|
#include "suunto_vyper.h"
|
|
#include "suunto_vyper2.h"
|
|
#include "suunto_d9.h"
|
|
#include "suunto_eonsteel.h"
|
|
|
|
#endif /* SUUNTO_H */
|