24 lines
447 B
C
24 lines
447 B
C
#ifndef SUUNTO_D9_H
|
|
#define SUUNTO_D9_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
#include "device.h"
|
|
|
|
#define SUUNTO_D9_MEMORY_SIZE 0x8000
|
|
#define SUUNTO_D9_PACKET_SIZE 0x78
|
|
#define SUUNTO_D9_VERSION_SIZE 0x04
|
|
|
|
device_status_t
|
|
suunto_d9_device_open (device_t **device, const char* name);
|
|
|
|
device_status_t
|
|
suunto_d9_device_reset_maxdepth (device_t *device);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
#endif /* SUUNTO_D9_H */
|