]> sigrok.org Git - libsigrok.git/blame - src/hardware/rdtech-um/protocol.h
rdtech-um: rephrase checksum verification routines
[libsigrok.git] / src / hardware / rdtech-um / protocol.h
CommitLineData
8b607a24
AS
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2018-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_UM_PROTOCOL_H
21#define LIBSIGROK_HARDWARE_RDTECH_UM_PROTOCOL_H
22
23#include <libsigrok/libsigrok.h>
24#include "libsigrok-internal.h"
25
26#define LOG_PREFIX "rdtech-um"
27
28#define RDTECH_UM_BUFSIZE 256
29
30enum rdtech_um_model_id {
31 RDTECH_UM24C = 0x0963,
32 RDTECH_UM25C = 0x09c9,
33 RDTECH_UM34C = 0x0d4c,
34};
35
8b607a24
AS
36/* Supported device profiles */
37struct rdtech_um_profile {
38 const char *model_name;
39 enum rdtech_um_model_id model_id;
40 const struct binary_analog_channel *channels;
85accbc2 41 gboolean (*csum_ok)(const uint8_t *buf, size_t len);
8b607a24
AS
42};
43
44struct dev_context {
45 const struct rdtech_um_profile *profile;
46 struct sr_sw_limits limits;
85accbc2
GS
47 uint8_t buf[RDTECH_UM_BUFSIZE];
48 size_t buflen;
8b607a24
AS
49 int64_t cmd_sent_at;
50};
51
52SR_PRIV const struct rdtech_um_profile *rdtech_um_probe(struct sr_serial_dev_inst *serial);
53SR_PRIV int rdtech_um_receive_data(int fd, int revents, void *cb_data);
54SR_PRIV int rdtech_um_poll(const struct sr_dev_inst *sdi);
55
56#endif