]> sigrok.org Git - libsigrok.git/blame - src/hardware/lecroy-xstream/protocol.h
lecroy-xstream: Minor whitespace and consistency fixes.
[libsigrok.git] / src / hardware / lecroy-xstream / protocol.h
CommitLineData
e3b83c5e
SS
1/*
2 * This file is part of the libsigrok project.
3 *
3f2c7c94 4 * Copyright (C) 2013 poljar (Damir Jelić) <poljarinho@gmail.com>
e3b83c5e
SS
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_LECROY_XSTREAM_PROTOCOL_H
21#define LIBSIGROK_HARDWARE_LECROY_XSTREAM_PROTOCOL_H
22
e3b83c5e 23#include <glib.h>
3f2c7c94
SS
24#include <stdint.h>
25#include <string.h>
e3b83c5e
SS
26#include <libsigrok/libsigrok.h>
27#include "libsigrok-internal.h"
28
29#define LOG_PREFIX "lecroy-xstream"
30
3f2c7c94
SS
31#define MAX_INSTRUMENT_VERSIONS 10
32#define MAX_COMMAND_SIZE 48
33#define MAX_ANALOG_CHANNEL_COUNT 4
34
35struct scope_config {
36 const char *name[MAX_INSTRUMENT_VERSIONS];
37 const uint8_t analog_channels;
38
39 const char *(*analog_names)[];
40
41 const uint32_t (*devopts)[];
42 const uint8_t num_devopts;
43
44 const uint32_t (*analog_devopts)[];
45 const uint8_t num_analog_devopts;
46
47 const char *(*coupling_options)[];
48 const uint8_t num_coupling_options;
49
50 const char *(*trigger_sources)[];
51 const uint8_t num_trigger_sources;
52
53 const char *(*trigger_slopes)[];
54
55 const struct sr_rational *timebases;
56 const uint8_t num_timebases;
57
58 const struct sr_rational *vdivs;
59 const uint8_t num_vdivs;
60
61 const uint8_t num_xdivs;
62 const uint8_t num_ydivs;
63};
64
65struct analog_channel_state {
66 int coupling;
67
68 int vdiv;
69 float vertical_offset;
70
71 gboolean state;
72};
73
74struct scope_state {
75 struct analog_channel_state *analog_channels;
76
77 int timebase;
78 float horiz_triggerpos;
79
80 int trigger_source;
81 int trigger_slope;
82 uint64_t sample_rate;
83};
84
e3b83c5e
SS
85/** Private, per-device-instance driver context. */
86struct dev_context {
3f2c7c94
SS
87 const void *model_config;
88 void *model_state;
e3b83c5e 89
3f2c7c94 90 struct sr_channel_group **analog_groups;
e3b83c5e 91
3f2c7c94
SS
92 GSList *enabled_channels;
93 GSList *current_channel;
94 uint64_t num_frames;
e3b83c5e 95
3f2c7c94 96 uint64_t frame_limit;
e3b83c5e
SS
97};
98
3f2c7c94
SS
99SR_PRIV int lecroy_xstream_init_device(struct sr_dev_inst *sdi);
100SR_PRIV int lecroy_xstream_request_data(const struct sr_dev_inst *sdi);
e3b83c5e
SS
101SR_PRIV int lecroy_xstream_receive_data(int fd, int revents, void *cb_data);
102
3f2c7c94
SS
103SR_PRIV struct scope_state *lecroy_xstream_state_new(struct scope_config *config);
104SR_PRIV void lecroy_xstream_state_free(struct scope_state *state);
105SR_PRIV int lecroy_xstream_state_get(struct sr_dev_inst *sdi);
106SR_PRIV int lecroy_xstream_update_sample_rate(const struct sr_dev_inst *sdi);
107
e3b83c5e 108#endif