]> sigrok.org Git - libsigrok.git/blame - src/hardware/rdtech-tc/protocol.h
rdtech-tc: rename "buflen" variable, it's "read length"
[libsigrok.git] / src / hardware / rdtech-tc / protocol.h
CommitLineData
cae33a58
AS
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2020 Andreas Sandberg <andreas@sandberg.pp.se>
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 3 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
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef LIBSIGROK_HARDWARE_RDTECH_TC_PROTOCOL_H
21#define LIBSIGROK_HARDWARE_RDTECH_TC_PROTOCOL_H
22
23#include <libsigrok/libsigrok.h>
24#include "libsigrok-internal.h"
25
26#define LOG_PREFIX "rdtech-tc"
27
28#define RDTECH_TC_BUFSIZE 256
29
30struct rdtech_dev_info {
31 char *model_name;
32 char *fw_ver;
33 uint32_t serial_num;
34};
35
b3df7668
GS
36struct rdtech_tc_channel_desc {
37 const char *name;
38 struct binary_value_spec spec;
39 struct sr_rational scale;
40 int digits;
41 enum sr_mq mq;
42 enum sr_unit unit;
43};
44
cae33a58
AS
45struct dev_context {
46 struct rdtech_dev_info dev_info;
b3df7668
GS
47 const struct rdtech_tc_channel_desc *channels;
48 size_t channel_count;
49 struct feed_queue_analog **feeds;
cae33a58 50 struct sr_sw_limits limits;
cae33a58 51 uint8_t buf[RDTECH_TC_BUFSIZE];
e2bcf2e3 52 size_t rdlen;
cae33a58
AS
53 int64_t cmd_sent_at;
54};
55
5955b58c 56SR_PRIV int rdtech_tc_probe(struct sr_serial_dev_inst *serial, struct dev_context *devc);
cae33a58 57SR_PRIV int rdtech_tc_receive_data(int fd, int revents, void *cb_data);
a82490b6 58SR_PRIV int rdtech_tc_poll(const struct sr_dev_inst *sdi, gboolean force);
cae33a58
AS
59
60#endif