]> sigrok.org Git - libsigrok.git/blame - src/hardware/beaglelogic/protocol.h
output/csv: use intermediate time_t var, silence compiler warning
[libsigrok.git] / src / hardware / beaglelogic / protocol.h
CommitLineData
bb993797
KA
1/*
2 * This file is part of the libsigrok project.
3 *
07182332 4 * Copyright (C) 2014-2017 Kumar Abhishek <abhishek@theembeddedkitchen.net>
bb993797
KA
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_BEAGLELOGIC_PROTOCOL_H
21#define LIBSIGROK_HARDWARE_BEAGLELOGIC_PROTOCOL_H
22
23#include <stdint.h>
24#include <glib.h>
c1aae900 25#include <libsigrok/libsigrok.h>
bb993797
KA
26#include "libsigrok-internal.h"
27
28#define LOG_PREFIX "beaglelogic"
29
ad9dbc1c
KA
30/* Maximum possible input channels */
31#define NUM_CHANNELS 14
32
33#define SAMPLEUNIT_TO_BYTES(x) ((x) == 1 ? 1 : 2)
34
9b2b3ef9
KA
35#define TCP_BUFFER_SIZE (128 * 1024)
36
37/** Private, per-device-instance driver context. */
bb993797 38struct dev_context {
ad9dbc1c
KA
39 int max_channels;
40 uint32_t fw_ver;
bb993797 41
0bca2e75
KA
42 /* Operations */
43 const struct beaglelogic_ops *beaglelogic;
44
9b2b3ef9
KA
45 /* TCP Settings */
46 char *address;
47 char *port;
48 int socket;
49 unsigned int read_timeout;
50 unsigned char *tcp_buffer;
51
0bca2e75 52 /* Acquisition settings: see beaglelogic.h */
ad9dbc1c
KA
53 uint64_t cur_samplerate;
54 uint64_t limit_samples;
55 uint32_t sampleunit;
56 uint32_t triggerflags;
e743a47d 57 uint64_t capture_ratio;
ad9dbc1c
KA
58
59 /* Buffers: size of each buffer block and the total buffer area */
60 uint32_t bufunitsize;
61 uint32_t buffersize;
bb993797 62
ad9dbc1c
KA
63 int fd;
64 GPollFD pollfd;
65 int last_error;
66
67 uint64_t bytes_read;
68 uint64_t sent_samples;
69 uint32_t offset;
70 uint8_t *sample_buf; /* mmap'd kernel buffer here */
bb993797 71
ad9dbc1c
KA
72 /* Trigger logic */
73 struct soft_trigger_logic *stl;
74 gboolean trigger_fired;
bb993797
KA
75};
76
9b2b3ef9
KA
77SR_PRIV int beaglelogic_native_receive_data(int fd, int revents, void *cb_data);
78SR_PRIV int beaglelogic_tcp_receive_data(int fd, int revents, void *cb_data);
bb993797
KA
79
80#endif