]> sigrok.org Git - libsigrok.git/blame - src/hardware/rdtech-tc/protocol.h
rdtech-tc: use size_t for memory sizes and indices
[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
36struct dev_context {
37 struct rdtech_dev_info dev_info;
38 const struct binary_analog_channel *channels;
39 struct sr_sw_limits limits;
cae33a58 40 uint8_t buf[RDTECH_TC_BUFSIZE];
63f46e3e 41 size_t buflen;
cae33a58
AS
42 int64_t cmd_sent_at;
43};
44
5955b58c 45SR_PRIV int rdtech_tc_probe(struct sr_serial_dev_inst *serial, struct dev_context *devc);
cae33a58
AS
46SR_PRIV int rdtech_tc_receive_data(int fd, int revents, void *cb_data);
47SR_PRIV int rdtech_tc_poll(const struct sr_dev_inst *sdi);
48
49#endif