]> sigrok.org Git - libsigrok.git/blob - src/hardware/rdtech-tc/protocol.h
rdtech-tc: migrate to feed queue helper
[libsigrok.git] / src / hardware / rdtech-tc / protocol.h
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
30 struct rdtech_dev_info {
31         char *model_name;
32         char *fw_ver;
33         uint32_t serial_num;
34 };
35
36 struct 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
45 struct dev_context {
46         struct rdtech_dev_info dev_info;
47         const struct rdtech_tc_channel_desc *channels;
48         size_t channel_count;
49         struct feed_queue_analog **feeds;
50         struct sr_sw_limits limits;
51         uint8_t buf[RDTECH_TC_BUFSIZE];
52         size_t buflen;
53         int64_t cmd_sent_at;
54 };
55
56 SR_PRIV int rdtech_tc_probe(struct sr_serial_dev_inst *serial, struct dev_context *devc);
57 SR_PRIV int rdtech_tc_receive_data(int fd, int revents, void *cb_data);
58 SR_PRIV int rdtech_tc_poll(const struct sr_dev_inst *sdi, gboolean force);
59
60 #endif