Added the initial implementation for the Reefnet Sensus Pro.
This commit is contained in:
parent
8faae14591
commit
3918ca99c5
13
reefnet.h
Normal file
13
reefnet.h
Normal file
@ -0,0 +1,13 @@
|
||||
#ifndef REEFNET_H
|
||||
#define REEFNET_H
|
||||
|
||||
#define REEFNET_SUCCESS 0
|
||||
#define REEFNET_ERROR -1
|
||||
#define REEFNET_ERROR_IO -2
|
||||
#define REEFNET_ERROR_MEMORY -3
|
||||
#define REEFNET_ERROR_PROTOCOL -4
|
||||
#define REEFNET_ERROR_TIMEOUT -5
|
||||
|
||||
#include "reefnet_sensuspro.h"
|
||||
|
||||
#endif /* REEFNET_H */
|
||||
266
reefnet_sensuspro.c
Normal file
266
reefnet_sensuspro.c
Normal file
@ -0,0 +1,266 @@
|
||||
#include <string.h> // memcmp, memcpy
|
||||
#include <stdlib.h> // malloc, free
|
||||
|
||||
#include "reefnet.h"
|
||||
#include "serial.h"
|
||||
#include "utils.h"
|
||||
|
||||
#define WARNING(expr) \
|
||||
{ \
|
||||
message ("%s:%d: %s\n", __FILE__, __LINE__, expr); \
|
||||
}
|
||||
|
||||
#define EXITCODE(rc, n) \
|
||||
( \
|
||||
rc == -1 ? \
|
||||
REEFNET_ERROR_IO : \
|
||||
(rc != n ? REEFNET_ERROR_TIMEOUT : REEFNET_ERROR_PROTOCOL) \
|
||||
)
|
||||
|
||||
|
||||
struct sensuspro {
|
||||
struct serial *port;
|
||||
};
|
||||
|
||||
|
||||
int
|
||||
reefnet_sensuspro_open (sensuspro **out, const char* name)
|
||||
{
|
||||
if (out == NULL)
|
||||
return REEFNET_ERROR;
|
||||
|
||||
// Allocate memory.
|
||||
struct sensuspro *device = malloc (sizeof (struct sensuspro));
|
||||
if (device == NULL) {
|
||||
WARNING ("Failed to allocate memory.");
|
||||
return REEFNET_ERROR_MEMORY;
|
||||
}
|
||||
|
||||
// Set the default values.
|
||||
device->port = NULL;
|
||||
|
||||
// Open the device.
|
||||
int rc = serial_open (&device->port, name);
|
||||
if (rc == -1) {
|
||||
WARNING ("Failed to open the serial port.");
|
||||
free (device);
|
||||
return REEFNET_ERROR_IO;
|
||||
}
|
||||
|
||||
// Set the serial communication protocol (19200 8N1).
|
||||
rc = serial_configure (device->port, 19200, 8, SERIAL_PARITY_NONE, 1, SERIAL_FLOWCONTROL_NONE);
|
||||
if (rc == -1) {
|
||||
WARNING ("Failed to set the terminal attributes.");
|
||||
serial_close (device->port);
|
||||
free (device);
|
||||
return REEFNET_ERROR_IO;
|
||||
}
|
||||
|
||||
// Set the timeout for receiving data (3000ms).
|
||||
if (serial_set_timeout (device->port, 3000) == -1) {
|
||||
WARNING ("Failed to set the timeout.");
|
||||
serial_close (device->port);
|
||||
free (device);
|
||||
return REEFNET_ERROR_IO;
|
||||
}
|
||||
|
||||
// Make sure everything is in a sane state.
|
||||
serial_flush (device->port, SERIAL_QUEUE_BOTH);
|
||||
|
||||
*out = device;
|
||||
|
||||
return REEFNET_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
int
|
||||
reefnet_sensuspro_close (sensuspro *device)
|
||||
{
|
||||
if (device == NULL)
|
||||
return REEFNET_SUCCESS;
|
||||
|
||||
// Close the device.
|
||||
if (serial_close (device->port) == -1) {
|
||||
free (device);
|
||||
return REEFNET_ERROR_IO;
|
||||
}
|
||||
|
||||
// Free memory.
|
||||
free (device);
|
||||
|
||||
return REEFNET_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
static unsigned short
|
||||
reefnet_sensuspro_checksum (unsigned char *data, unsigned int size)
|
||||
{
|
||||
static unsigned short crc_ccitt_table[] = {
|
||||
0x0000, 0x1021, 0x2042, 0x3063, 0x4084, 0x50a5, 0x60c6, 0x70e7,
|
||||
0x8108, 0x9129, 0xa14a, 0xb16b, 0xc18c, 0xd1ad, 0xe1ce, 0xf1ef,
|
||||
0x1231, 0x0210, 0x3273, 0x2252, 0x52b5, 0x4294, 0x72f7, 0x62d6,
|
||||
0x9339, 0x8318, 0xb37b, 0xa35a, 0xd3bd, 0xc39c, 0xf3ff, 0xe3de,
|
||||
0x2462, 0x3443, 0x0420, 0x1401, 0x64e6, 0x74c7, 0x44a4, 0x5485,
|
||||
0xa56a, 0xb54b, 0x8528, 0x9509, 0xe5ee, 0xf5cf, 0xc5ac, 0xd58d,
|
||||
0x3653, 0x2672, 0x1611, 0x0630, 0x76d7, 0x66f6, 0x5695, 0x46b4,
|
||||
0xb75b, 0xa77a, 0x9719, 0x8738, 0xf7df, 0xe7fe, 0xd79d, 0xc7bc,
|
||||
0x48c4, 0x58e5, 0x6886, 0x78a7, 0x0840, 0x1861, 0x2802, 0x3823,
|
||||
0xc9cc, 0xd9ed, 0xe98e, 0xf9af, 0x8948, 0x9969, 0xa90a, 0xb92b,
|
||||
0x5af5, 0x4ad4, 0x7ab7, 0x6a96, 0x1a71, 0x0a50, 0x3a33, 0x2a12,
|
||||
0xdbfd, 0xcbdc, 0xfbbf, 0xeb9e, 0x9b79, 0x8b58, 0xbb3b, 0xab1a,
|
||||
0x6ca6, 0x7c87, 0x4ce4, 0x5cc5, 0x2c22, 0x3c03, 0x0c60, 0x1c41,
|
||||
0xedae, 0xfd8f, 0xcdec, 0xddcd, 0xad2a, 0xbd0b, 0x8d68, 0x9d49,
|
||||
0x7e97, 0x6eb6, 0x5ed5, 0x4ef4, 0x3e13, 0x2e32, 0x1e51, 0x0e70,
|
||||
0xff9f, 0xefbe, 0xdfdd, 0xcffc, 0xbf1b, 0xaf3a, 0x9f59, 0x8f78,
|
||||
0x9188, 0x81a9, 0xb1ca, 0xa1eb, 0xd10c, 0xc12d, 0xf14e, 0xe16f,
|
||||
0x1080, 0x00a1, 0x30c2, 0x20e3, 0x5004, 0x4025, 0x7046, 0x6067,
|
||||
0x83b9, 0x9398, 0xa3fb, 0xb3da, 0xc33d, 0xd31c, 0xe37f, 0xf35e,
|
||||
0x02b1, 0x1290, 0x22f3, 0x32d2, 0x4235, 0x5214, 0x6277, 0x7256,
|
||||
0xb5ea, 0xa5cb, 0x95a8, 0x8589, 0xf56e, 0xe54f, 0xd52c, 0xc50d,
|
||||
0x34e2, 0x24c3, 0x14a0, 0x0481, 0x7466, 0x6447, 0x5424, 0x4405,
|
||||
0xa7db, 0xb7fa, 0x8799, 0x97b8, 0xe75f, 0xf77e, 0xc71d, 0xd73c,
|
||||
0x26d3, 0x36f2, 0x0691, 0x16b0, 0x6657, 0x7676, 0x4615, 0x5634,
|
||||
0xd94c, 0xc96d, 0xf90e, 0xe92f, 0x99c8, 0x89e9, 0xb98a, 0xa9ab,
|
||||
0x5844, 0x4865, 0x7806, 0x6827, 0x18c0, 0x08e1, 0x3882, 0x28a3,
|
||||
0xcb7d, 0xdb5c, 0xeb3f, 0xfb1e, 0x8bf9, 0x9bd8, 0xabbb, 0xbb9a,
|
||||
0x4a75, 0x5a54, 0x6a37, 0x7a16, 0x0af1, 0x1ad0, 0x2ab3, 0x3a92,
|
||||
0xfd2e, 0xed0f, 0xdd6c, 0xcd4d, 0xbdaa, 0xad8b, 0x9de8, 0x8dc9,
|
||||
0x7c26, 0x6c07, 0x5c64, 0x4c45, 0x3ca2, 0x2c83, 0x1ce0, 0x0cc1,
|
||||
0xef1f, 0xff3e, 0xcf5d, 0xdf7c, 0xaf9b, 0xbfba, 0x8fd9, 0x9ff8,
|
||||
0x6e17, 0x7e36, 0x4e55, 0x5e74, 0x2e93, 0x3eb2, 0x0ed1, 0x1ef0
|
||||
};
|
||||
|
||||
unsigned short crc = 0xffff;
|
||||
for (unsigned int i = 0; i < size; ++i)
|
||||
crc = (crc << 8) ^ crc_ccitt_table[(crc >> 8) ^ data[i]];
|
||||
|
||||
return crc;
|
||||
}
|
||||
|
||||
|
||||
int
|
||||
reefnet_sensuspro_handshake (sensuspro *device, unsigned char *data, unsigned int size)
|
||||
{
|
||||
if (device == NULL)
|
||||
return REEFNET_ERROR;
|
||||
|
||||
// Assert a break condition.
|
||||
serial_set_break (device->port, 1);
|
||||
|
||||
// Receive the handshake from the dive computer.
|
||||
unsigned char handshake[REEFNET_SENSUSPRO_HANDSHAKE_SIZE + 2] = {0};
|
||||
int rc = serial_read (device->port, handshake, sizeof (handshake));
|
||||
if (rc != sizeof (handshake)) {
|
||||
WARNING ("Failed to receive the handshake.");
|
||||
return EXITCODE (rc, sizeof (handshake));
|
||||
}
|
||||
|
||||
// Clear the break condition again.
|
||||
serial_set_break (device->port, 0);
|
||||
|
||||
// Verify the checksum of the handshake packet.
|
||||
unsigned short crc = handshake[10] + (handshake[11] << 8);
|
||||
unsigned short ccrc = reefnet_sensuspro_checksum (handshake, sizeof (handshake) - 2);
|
||||
if (crc != ccrc) {
|
||||
WARNING ("Unexpected answer CRC.");
|
||||
return REEFNET_ERROR_PROTOCOL;
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
message (
|
||||
"Product Code: %u\n"
|
||||
"Version Code: %u\n"
|
||||
"Battery Voltage: %u\n"
|
||||
"Sample Interval: %u\n"
|
||||
"Device ID: %u\n"
|
||||
"Current Time: %u\n",
|
||||
handshake[0], handshake[1],
|
||||
handshake[2], handshake[3],
|
||||
handshake[4] + (handshake[5] << 8),
|
||||
handshake[6] + (handshake[7] << 8) + (handshake[8] << 16) + (handshake[9] << 24));
|
||||
#endif
|
||||
|
||||
if (size >= sizeof (handshake) - 2)
|
||||
memcpy (data, handshake, sizeof (handshake) - 2);
|
||||
else
|
||||
WARNING ("Insufficient buffer space available.");
|
||||
|
||||
serial_sleep (10);
|
||||
|
||||
return REEFNET_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
int
|
||||
reefnet_sensuspro_read (sensuspro *device, unsigned char *data, unsigned int size)
|
||||
{
|
||||
if (device == NULL)
|
||||
return REEFNET_ERROR;
|
||||
|
||||
unsigned char command = 0xB4;
|
||||
int rc = serial_write (device->port, &command, 1);
|
||||
if (rc != 1) {
|
||||
WARNING ("Failed to send the command.");
|
||||
return EXITCODE (rc, 1);
|
||||
}
|
||||
|
||||
unsigned int nbytes = 0;
|
||||
unsigned char answer[REEFNET_SENSUSPRO_MEMORY_SIZE + 2] = {0};
|
||||
while (nbytes < sizeof (answer)) {
|
||||
unsigned int len = sizeof (answer) - nbytes;
|
||||
if (len > 256)
|
||||
len = 256;
|
||||
|
||||
int rc = serial_read (device->port, answer + nbytes, len);
|
||||
if (rc != len) {
|
||||
WARNING ("Failed to receive the answer.");
|
||||
return EXITCODE (rc, len);
|
||||
}
|
||||
|
||||
nbytes += len;
|
||||
}
|
||||
|
||||
unsigned short crc =
|
||||
answer[REEFNET_SENSUSPRO_MEMORY_SIZE + 0] +
|
||||
(answer[REEFNET_SENSUSPRO_MEMORY_SIZE + 1] << 8);
|
||||
unsigned short ccrc = reefnet_sensuspro_checksum (answer, REEFNET_SENSUSPRO_MEMORY_SIZE);
|
||||
if (crc != ccrc) {
|
||||
WARNING ("Unexpected answer CRC.");
|
||||
return REEFNET_ERROR_PROTOCOL;
|
||||
}
|
||||
|
||||
if (size >= REEFNET_SENSUSPRO_MEMORY_SIZE)
|
||||
memcpy (data, answer, REEFNET_SENSUSPRO_MEMORY_SIZE);
|
||||
else
|
||||
WARNING ("Insufficient buffer space available.");
|
||||
|
||||
return REEFNET_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
int
|
||||
reefnet_sensuspro_write_interval (sensuspro *device, unsigned char interval)
|
||||
{
|
||||
if (device == NULL)
|
||||
return REEFNET_ERROR;
|
||||
|
||||
if (interval < 1 || interval > 127)
|
||||
return REEFNET_ERROR;
|
||||
|
||||
unsigned char command = 0xB5;
|
||||
int rc = serial_write (device->port, &command, 1);
|
||||
if (rc != 1) {
|
||||
WARNING ("Failed to send the command.");
|
||||
return EXITCODE (rc, 1);
|
||||
}
|
||||
|
||||
serial_sleep (10);
|
||||
|
||||
rc = serial_write (device->port, &interval, 1);
|
||||
if (rc != 1) {
|
||||
WARNING ("Failed to send the new value.");
|
||||
return EXITCODE (rc, 1);
|
||||
}
|
||||
|
||||
return REEFNET_SUCCESS;
|
||||
}
|
||||
26
reefnet_sensuspro.h
Normal file
26
reefnet_sensuspro.h
Normal file
@ -0,0 +1,26 @@
|
||||
#ifndef REEFNET_SENSUSPRO_H
|
||||
#define REEFNET_SENSUSPRO_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif /* __cplusplus */
|
||||
|
||||
typedef struct sensuspro sensuspro;
|
||||
|
||||
#define REEFNET_SENSUSPRO_MEMORY_SIZE 56320
|
||||
#define REEFNET_SENSUSPRO_HANDSHAKE_SIZE 10
|
||||
|
||||
int reefnet_sensuspro_open (sensuspro **device, const char* name);
|
||||
|
||||
int reefnet_sensuspro_close (sensuspro *device);
|
||||
|
||||
int reefnet_sensuspro_handshake (sensuspro *device, unsigned char data[], unsigned int size);
|
||||
|
||||
int reefnet_sensuspro_read (sensuspro *device, unsigned char data[], unsigned int size);
|
||||
|
||||
int reefnet_sensuspro_write_interval (sensuspro *device, unsigned char interval);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif /* __cplusplus */
|
||||
#endif /* REEFNET_SENSUSPRO_H */
|
||||
110
reefnet_sensuspro_test.c
Normal file
110
reefnet_sensuspro_test.c
Normal file
@ -0,0 +1,110 @@
|
||||
#include <stdio.h> // fopen, fwrite, fclose
|
||||
#include <time.h> // time
|
||||
|
||||
#include "reefnet.h"
|
||||
#include "utils.h"
|
||||
|
||||
#define WARNING(expr) \
|
||||
{ \
|
||||
message ("%s:%d: %s\n", __FILE__, __LINE__, expr); \
|
||||
}
|
||||
|
||||
int test_dump_memory (const char* name, const char* filename)
|
||||
{
|
||||
sensuspro *device = NULL;
|
||||
unsigned char data[REEFNET_SENSUSPRO_MEMORY_SIZE] = {0};
|
||||
unsigned char handshake[REEFNET_SENSUSPRO_HANDSHAKE_SIZE] = {0};
|
||||
|
||||
message ("reefnet_sensuspro_open\n");
|
||||
int rc = reefnet_sensuspro_open (&device, name);
|
||||
if (rc != REEFNET_SUCCESS) {
|
||||
WARNING ("Error opening serial port.");
|
||||
return rc;
|
||||
}
|
||||
|
||||
message ("reefnet_sensuspro_handshake\n");
|
||||
rc = reefnet_sensuspro_handshake (device, handshake, sizeof (handshake));
|
||||
if (rc != REEFNET_SUCCESS) {
|
||||
WARNING ("Cannot read handshake.");
|
||||
reefnet_sensuspro_close (device);
|
||||
return rc;
|
||||
}
|
||||
|
||||
time_t now = time (NULL);
|
||||
unsigned char datetime[21] = {0};
|
||||
strftime (datetime, sizeof (datetime), "%Y-%m-%dT%H:%M:%SZ", gmtime (&now));
|
||||
message ("time=%lu (%s)\n", (unsigned long)now, datetime);
|
||||
|
||||
message ("reefnet_sensuspro_read\n");
|
||||
rc = reefnet_sensuspro_read (device, data, sizeof (data));
|
||||
if (rc != REEFNET_SUCCESS) {
|
||||
WARNING ("Cannot read memory.");
|
||||
reefnet_sensuspro_close (device);
|
||||
return rc;
|
||||
}
|
||||
|
||||
message ("Dumping data\n");
|
||||
FILE* fp = fopen (filename, "wb");
|
||||
if (fp != NULL) {
|
||||
fwrite (data, sizeof (unsigned char), sizeof (data), fp);
|
||||
fclose (fp);
|
||||
}
|
||||
|
||||
message ("reefnet_sensuspro_close\n");
|
||||
rc = reefnet_sensuspro_close (device);
|
||||
if (rc != REEFNET_SUCCESS) {
|
||||
WARNING ("Cannot close device.");
|
||||
return rc;
|
||||
}
|
||||
|
||||
return REEFNET_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
const char* errmsg (int rc)
|
||||
{
|
||||
switch (rc) {
|
||||
case REEFNET_SUCCESS:
|
||||
return "Success";
|
||||
case REEFNET_ERROR:
|
||||
return "Generic error";
|
||||
case REEFNET_ERROR_IO:
|
||||
return "Input/output error";
|
||||
case REEFNET_ERROR_MEMORY:
|
||||
return "Memory error";
|
||||
case REEFNET_ERROR_PROTOCOL:
|
||||
return "Protocol error";
|
||||
case REEFNET_ERROR_TIMEOUT:
|
||||
return "Timeout";
|
||||
default:
|
||||
return "Unknown error";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
message_set_logfile ("SENSUSPRO.LOG");
|
||||
|
||||
#ifdef _WIN32
|
||||
const char* name = "COM1";
|
||||
#else
|
||||
const char* name = "/dev/ttyS0";
|
||||
#endif
|
||||
|
||||
if (argc > 1) {
|
||||
name = argv[1];
|
||||
}
|
||||
|
||||
message ("DEVICE=%s\n", name);
|
||||
|
||||
int a = test_dump_memory (name, "SENSUSPRO.DMP");
|
||||
|
||||
message ("SUMMARY\n");
|
||||
message ("-------\n");
|
||||
message ("test_dump_memory: %s\n", errmsg (a));
|
||||
|
||||
message_set_logfile (NULL);
|
||||
|
||||
return 0;
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user