2 * visomat-data-downloader - download data from Visomat Double Comfort
4 * The Visomat Double Comfort is a blood pressure meter with a USB port.
6 * Copyright (C) 2013 Antonio Ospite <ospite@studenti.unina.it>
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
31 #define DEVICE_VID 0x1247
32 #define DEVICE_PID 0x00f8
37 #define BASE_YEAR 2000
40 VISOMAT_CMD_DUMP_EEPROM,
41 VISOMAT_CMD_UNKNOWN1, /* maybe the firmware revision */
42 VISOMAT_CMD_GET_DATETIME,
43 VISOMAT_CMD_START_MEASURE1,
44 VISOMAT_CMD_UNKNOWN2, /* XXX transmission hangs */
48 static char command_codes[][3] = {
49 [VISOMAT_CMD_DUMP_EEPROM] = "R00",
50 [VISOMAT_CMD_UNKNOWN1] = "R01",
51 [VISOMAT_CMD_GET_DATETIME] = "R02",
52 [VISOMAT_CMD_START_MEASURE1] = "R03",
53 [VISOMAT_CMD_UNKNOWN2] = "R04",
54 [VISOMAT_CMD_UNKNOWN3] = "R05",
66 unsigned int systolic;
67 unsigned int diastolic;
71 static inline int extract_datetime(unsigned char *buffer, struct datetime *d)
75 ret = sscanf((char *)buffer, "%02u%02u%02u%02u%02u",
90 * NOTE: the CSV output is meant to be compatible with one from the Windows
91 * program, which uses the %d/%m/%Y date format, so that's not my fault.
93 static void print_record_csv_compat(struct datetime *d, struct pressure *p)
95 unsigned int pulse_pressure;
97 printf("%02u/%02u/%04u;%02u.%02u;",
98 d->day, d->month, d->year, d->hour, d->minute);
100 printf("%u;%u;%u;", p->systolic, p->diastolic, p->pulses);
102 pulse_pressure = p->systolic - p->diastolic;
103 printf("%u;", pulse_pressure);
106 printf("tachycardia");
107 else if (p->pulses < 60)
108 printf("bradycardia");
113 /* TODO separate better decoding data from printing it */
114 static int decode_eeprom(unsigned char *buffer, unsigned int len)
120 unsigned int user_id;
121 unsigned int num_records;
125 if (buffer[0] != STX || buffer[1] != 'M' || buffer[len - 1] != ETX)
128 /* skip the initial STX */
131 /* and the final ETX */
135 /* Each user record begins with 'M', maybe for "Memory" */
136 if (buffer[i] == 'M') {
137 /* i tracks the bytes consumed */
141 ret = sscanf((char *)(buffer + i), "%1u%02u",
142 &user_id, &num_records);
146 /* user_id and num_records take 3 bytes */
149 printf("# User: %d\n", user_id);
151 for (j = 0; j < num_records; j++) {
152 ret = extract_datetime(buffer + i, &d);
156 /* datetime takes 10 bytes */
159 ret = sscanf((char *)(buffer + i),
167 /* pressure data is 10 bytes */
170 print_record_csv_compat(&d, &p);
178 static int decode_datetime(unsigned char *buffer, unsigned int len)
181 unsigned char code[4] = { 0 };
183 unsigned char *pbuffer = buffer;
192 ret = extract_datetime(pbuffer + 4, &d);
196 printf("# (%s) Date: %04d/%02d/%02d %02d:%02d\n",
197 code, d.year, d.month, d.day, d.hour, d.minute);
202 static int send_command(libusb_device_handle *dev, visomat_command cmd)
206 unsigned char request[5];
209 request[1] = command_codes[cmd][0];
210 request[2] = command_codes[cmd][1];
211 request[3] = command_codes[cmd][2];
215 ret = libusb_bulk_transfer(dev, EP_OUT, request, sizeof(request), &transferred, 0);
216 if (ret != 0 || transferred != sizeof(request)) {
217 fprintf(stderr, "Error: sending request: %d (%s)\ttransferred: %d (expected %zu)\n",
218 ret, libusb_error_name(ret), transferred, sizeof(request));
224 static int get_response(libusb_device_handle *dev,
225 unsigned char *buffer,
230 unsigned char response[64] = { 0 };
238 ret = libusb_bulk_transfer(dev, EP_IN, response, sizeof(response), &transferred, 5000);
240 fprintf(stderr, "Error getting response: %d (%s)\ttransferred: %d (expected %zu)\n",
241 ret, libusb_error_name(ret), transferred, sizeof(response));
245 for (j = 0; j < (unsigned int)transferred; j++) {
246 buffer[i] = response[j];
250 } while (buffer[i - 1] != ETX && i < len);
252 /* Check the buffer is a valid response packet */
253 if (buffer[0] != STX || buffer[i - 1] != ETX)
259 /* Candidates for a future public API, if a shared library will ever be made */
260 #define visomat_device libusb_device_handle
261 static int visomat_dump_eeprom(visomat_device *dev)
263 /* Assuming an EEPROM of 1 KiB */
264 unsigned char buffer[1024] = { 0 };
267 ret = send_command(dev, VISOMAT_CMD_DUMP_EEPROM);
271 ret = get_response(dev, buffer, sizeof(buffer));
275 ret = decode_eeprom(buffer, ret);
282 static int visomat_get_datetime(visomat_device *dev)
284 unsigned char buffer[255] = { 0 };
287 ret = send_command(dev, VISOMAT_CMD_GET_DATETIME);
291 ret = get_response(dev, buffer, sizeof(buffer));
295 ret = decode_datetime(buffer, ret);
305 libusb_device_handle *dev;
308 libusb_set_debug(NULL, LIBUSB_LOG_LEVEL_INFO);
310 dev = libusb_open_device_with_vid_pid(NULL, DEVICE_VID, DEVICE_PID);
312 fprintf(stderr, "Couldn't open device.\n");
314 goto out_libusb_exit;
317 libusb_set_configuration(dev, 1);
318 libusb_claim_interface(dev, 1);
319 libusb_detach_kernel_driver(dev, 1);
321 ret = visomat_get_datetime(dev);
325 ret = visomat_dump_eeprom(dev);