]> sigrok.org Git - libsigrok.git/blame - src/hardware/asix-omega-rtm-cli/protocol.h
asix-omega-rtm-cli: add support for "probe names" scan option
[libsigrok.git] / src / hardware / asix-omega-rtm-cli / protocol.h
CommitLineData
13f6da67
GS
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2021 Gerhard Sittig <gerhard.sittig@gmx.net>
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_ASIX_OMEGA_RTM_CLI_PROTOCOL_H
21#define LIBSIGROK_HARDWARE_ASIX_OMEGA_RTM_CLI_PROTOCOL_H
22
13f6da67
GS
23#include <glib.h>
24#include <libsigrok/libsigrok.h>
1cadb5ec
GS
25#include <stdint.h>
26
13f6da67
GS
27#include "libsigrok-internal.h"
28
29#define LOG_PREFIX "asix-omega-rtm-cli"
30
1cadb5ec
GS
31#define RTMCLI_STDOUT_CHUNKSIZE (1024 * 1024)
32#define FEED_QUEUE_DEPTH (256 * 1024)
33
13f6da67 34struct dev_context {
c18f4891 35 char **channel_names;
1cadb5ec
GS
36 struct sr_sw_limits limits;
37 struct {
38 gchar **argv;
39 GSpawnFlags flags;
40 gboolean running;
41 GPid pid;
42 gint fd_stdin_write;
43 gint fd_stdout_read;
44 } child;
45 struct {
46 uint8_t buff[RTMCLI_STDOUT_CHUNKSIZE];
47 size_t fill;
48 } rawdata;
49 struct {
50 struct feed_queue_logic *queue;
51 uint8_t last_sample[sizeof(uint16_t)];
52 uint64_t remain_count;
53 gboolean check_count;
54 } samples;
13f6da67
GS
55};
56
1cadb5ec
GS
57SR_PRIV int omega_rtm_cli_open(const struct sr_dev_inst *sdi);
58SR_PRIV int omega_rtm_cli_close(const struct sr_dev_inst *sdi);
59SR_PRIV int omega_rtm_cli_receive_data(int fd, int revents, void *cb_data);
13f6da67
GS
60
61#endif