Prepare to add support for other Suunto dive computers.

This commit is contained in:
Jef Driesen 2007-12-19 09:15:12 +00:00
parent e67d470c11
commit ec04cc516c
3 changed files with 40 additions and 34 deletions

View File

@ -1,36 +1,6 @@
#ifndef SUUNTO_VYPER_H
#define SUUNTO_VYPER_H
#ifndef SUUNTO_H
#define SUUNTO_H
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#include "suunto_vyper.h"
typedef struct vyper vyper;
#define SUUNTO_VYPER_MEMORY_SIZE 0x2000
#define SUUNTO_VYPER_PACKET_SIZE 32
#define SUUNTO_VYPER_SUCCESS 0
#define SUUNTO_VYPER_ERROR -1
#define SUUNTO_VYPER_ERROR_IO -2
#define SUUNTO_VYPER_ERROR_MEMORY -3
#define SUUNTO_VYPER_ERROR_PROTOCOL -4
#define SUUNTO_VYPER_ERROR_TIMEOUT -5
int suunto_vyper_open (vyper **device, const char* name);
int suunto_vyper_close (vyper *device);
int suunto_vyper_detect_interface (vyper *device);
int suunto_vyper_read_dive (vyper *device, unsigned char data[], unsigned int size, int init);
int suunto_vyper_read_memory (vyper *device, unsigned int address, unsigned char data[], unsigned int size);
int suunto_vyper_write_memory (vyper *device, unsigned int address, const unsigned char data[], unsigned int size);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* SUUNTO_VYPER_H */
#endif /* SUUNTO_H */

36
suunto_vyper.h Normal file
View File

@ -0,0 +1,36 @@
#ifndef SUUNTO_VYPER_H
#define SUUNTO_VYPER_H
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
typedef struct vyper vyper;
#define SUUNTO_VYPER_MEMORY_SIZE 0x2000
#define SUUNTO_VYPER_PACKET_SIZE 32
#define SUUNTO_VYPER_SUCCESS 0
#define SUUNTO_VYPER_ERROR -1
#define SUUNTO_VYPER_ERROR_IO -2
#define SUUNTO_VYPER_ERROR_MEMORY -3
#define SUUNTO_VYPER_ERROR_PROTOCOL -4
#define SUUNTO_VYPER_ERROR_TIMEOUT -5
int suunto_vyper_open (vyper **device, const char* name);
int suunto_vyper_close (vyper *device);
int suunto_vyper_detect_interface (vyper *device);
int suunto_vyper_read_dive (vyper *device, unsigned char data[], unsigned int size, int init);
int suunto_vyper_read_memory (vyper *device, unsigned int address, unsigned char data[], unsigned int size);
int suunto_vyper_write_memory (vyper *device, unsigned int address, const unsigned char data[], unsigned int size);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* SUUNTO_VYPER_H */