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