]> sigrok.org Git - libsigrok.git/blame - src/hardware/uni-t-dmm/protocol.h
scpi-pps: Add a missing "break" in config_get().
[libsigrok.git] / src / hardware / uni-t-dmm / protocol.h
CommitLineData
79081ec8 1/*
50985c20 2 * This file is part of the libsigrok project.
79081ec8 3 *
bc653a56 4 * Copyright (C) 2012-2013 Uwe Hermann <uwe@hermann-uwe.de>
79081ec8
UH
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
2ea1fdf1 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
79081ec8
UH
18 */
19
20#ifndef LIBSIGROK_HARDWARE_UNI_T_DMM_PROTOCOL_H
21#define LIBSIGROK_HARDWARE_UNI_T_DMM_PROTOCOL_H
22
23#include <stdint.h>
24#include <glib.h>
25#include <libusb.h>
c1aae900 26#include <libsigrok/libsigrok.h>
79081ec8
UH
27#include "libsigrok-internal.h"
28
3544f848 29#define LOG_PREFIX "uni-t-dmm"
79081ec8 30
c8852687 31struct dmm_info {
f0540611 32 struct sr_dev_driver di;
2c240774
UH
33 const char *vendor;
34 const char *device;
c8852687
UH
35 uint32_t baudrate;
36 int packet_size;
c8852687
UH
37 gboolean (*packet_valid)(const uint8_t *);
38 int (*packet_parse)(const uint8_t *, float *,
dff60e3c
UH
39 struct sr_datafeed_analog *, void *);
40 void (*dmm_details)(struct sr_datafeed_analog *, void *);
f0540611 41 gsize info_size;
c8852687
UH
42};
43
79081ec8 44#define CHUNK_SIZE 8
bc653a56
UH
45
46#define DMM_BUFSIZE 256
79081ec8 47
79081ec8 48struct dev_context {
8a63a406 49 struct sr_sw_limits limits;
c5ffac41 50
bc653a56
UH
51 gboolean first_run;
52
53 uint8_t protocol_buf[DMM_BUFSIZE];
54 uint8_t bufoffset;
55 uint8_t buflen;
79081ec8
UH
56};
57
f0540611 58SR_PRIV int uni_t_dmm_receive_data(int fd, int revents, void *cb_data);
79081ec8
UH
59
60#endif