]> sigrok.org Git - libsigrok.git/blame - src/hardware/siglent-sds/protocol.h
siglent-sds: Fixed timebase problem where NS could not be selected
[libsigrok.git] / src / hardware / siglent-sds / protocol.h
CommitLineData
89f5fab9 1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2018 mhooijboer <marchelh@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_SIGLENT_SDS_PROTOCOL_H
21#define LIBSIGROK_HARDWARE_SIGLENT_SDS_PROTOCOL_H
22
b3360671 23#include <stdbool.h>
89f5fab9 24#include <stdint.h>
25#include <glib.h>
26#include <libsigrok/libsigrok.h>
27#include "libsigrok-internal.h"
28
29#define LOG_PREFIX "siglent-sds"
30
b3360671 31/* Size of acquisition buffers */
32//#define ACQ_BUFFER_SIZE (6000000)
33#define ACQ_BUFFER_SIZE (18000000)
34
35/* Maximum number of samples to retrieve at once. */
36#define ACQ_BLOCK_SIZE (30 * 1000)
37
38#define MAX_ANALOG_CHANNELS 4
39#define MAX_DIGITAL_CHANNELS 16
40
41#define DEVICE_STATE_STOPPED 0 /* Scope is in stopped state */
42#define DEVICE_STATE_DATA_ACQ 1 /* A new signal has been acquired */
43#define DEVICE_STATE_TRIG_RDY 8192 /* Trigger is ready */
44
45enum protocol_version {
46 SPO_MODEL,
47 NON_SPO_MODEL,
48};
49
b3360671 50enum data_source {
51 DATA_SOURCE_SCREEN,
52 DATA_SOURCE_HISTORY,
53};
54
55struct siglent_sds_vendor {
56 const char *name;
57 const char *full_name;
b3360671 58};
59
60struct siglent_sds_series {
61 const struct siglent_sds_vendor *vendor;
62 const char *name;
63 enum protocol_version protocol;
64 uint64_t max_timebase[2];
65 uint64_t min_vdiv[2];
66 int num_horizontal_divs;
67 int num_vertical_divs;
68 int buffer_samples;
69};
70
71struct siglent_sds_model {
72 const struct siglent_sds_series *series;
73 const char *name;
74 uint64_t min_timebase[2];
75 unsigned int analog_channels;
76 bool has_digital;
77 unsigned int digital_channels;
78};
79
80enum wait_events {
81 WAIT_NONE, /* Don't wait */
82 WAIT_TRIGGER, /* Wait for trigger */
83 WAIT_BLOCK, /* Wait for block data (only when reading sample mem) */
84 WAIT_STOP, /* Wait for scope stopping (only single shots) */
85};
86
89f5fab9 87struct dev_context {
b3360671 88 /* Device model */
89 const struct siglent_sds_model *model;
90
91 /* Device properties */
92 const uint64_t (*timebases)[2];
93 uint64_t num_timebases;
94 const uint64_t (*vdivs)[2];
95 uint64_t num_vdivs;
96
97 /* Channel groups */
98 struct sr_channel_group **analog_groups;
99 struct sr_channel_group *digital_group;
100
101 /* Acquisition settings */
102 GSList *enabled_channels;
103 uint64_t limit_frames;
104 enum data_source data_source;
105 uint64_t analog_frame_size;
106 uint64_t digital_frame_size;
107 uint64_t num_samples;
e5896840
UH
108 long block_header_size;
109 float samplerate;
b3360671 110
111 /* Device settings */
112 gboolean analog_channels[MAX_ANALOG_CHANNELS];
113 gboolean digital_channels[MAX_DIGITAL_CHANNELS];
114 gboolean la_enabled;
115 float timebase;
116 float attenuation[MAX_ANALOG_CHANNELS];
117 float vdiv[MAX_ANALOG_CHANNELS];
118 int vert_reference[MAX_ANALOG_CHANNELS];
119 float vert_offset[MAX_ANALOG_CHANNELS];
120 char *trigger_source;
121 float horiz_triggerpos;
122 char *trigger_slope;
123 float trigger_level;
124 char *coupling[MAX_ANALOG_CHANNELS];
125
126 /* Operational state */
127
128 /* Number of frames received in total. */
129 uint64_t num_frames;
130 /* GSList entry for the current channel. */
131 GSList *channel_entry;
132 /* Number of bytes received for current channel. */
133 uint64_t num_channel_bytes;
3e7fb88f 134 /* Number of bytes of block header read. */
b3360671 135 uint64_t num_header_bytes;
3e7fb88f 136 /* Number of bytes in current data block, if 0 block header expected. */
b3360671 137 uint64_t num_block_bytes;
3e7fb88f 138 /* Number of data block bytes already read. */
b3360671 139 uint64_t num_block_read;
3e7fb88f 140 /* What to wait for in *_receive. */
b3360671 141 enum wait_events wait_event;
3e7fb88f 142 /* Trigger/block copying/stop waiting status. */
b3360671 143 int wait_status;
3e7fb88f 144 /* Acq buffers used for reading from the scope and sending data to app. */
b3360671 145 unsigned char *buffer;
146 float *data;
89f5fab9 147};
148
b3360671 149SR_PRIV int siglent_sds_config_set(const struct sr_dev_inst *sdi,
150 const char *format, ...);
151SR_PRIV int siglent_sds_capture_start(const struct sr_dev_inst *sdi);
152SR_PRIV int siglent_sds_channel_start(const struct sr_dev_inst *sdi);
153SR_PRIV int siglent_sds_receive(int fd, int revents, void *cb_data);
154SR_PRIV int siglent_sds_get_dev_cfg(const struct sr_dev_inst *sdi);
155SR_PRIV int siglent_sds_get_dev_cfg_vertical(const struct sr_dev_inst *sdi);
156SR_PRIV int siglent_sds_get_dev_cfg_horizontal(const struct sr_dev_inst *sdi);
89f5fab9 157
158#endif