]> sigrok.org Git - libsigrok.git/blame - hardware/rigol-ds/protocol.h
rigol-ds: Use correct live waveform size for Agilent DSO1000 series.
[libsigrok.git] / hardware / rigol-ds / protocol.h
CommitLineData
f4816ac6
ML
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2012 Martin Ling <martin-git@earth.li>
88e429c9 5 * Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
f4816ac6
ML
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
3086efdd
ML
21#ifndef LIBSIGROK_HARDWARE_RIGOL_DS_PROTOCOL_H
22#define LIBSIGROK_HARDWARE_RIGOL_DS_PROTOCOL_H
f4816ac6
ML
23
24#include <stdint.h>
bafd4890 25#include <stdbool.h>
f4816ac6
ML
26#include "libsigrok.h"
27#include "libsigrok-internal.h"
28
3544f848 29#define LOG_PREFIX "rigol-ds"
f4816ac6 30
babab622
ML
31#define DS1000_ANALOG_LIVE_WAVEFORM_SIZE 600
32#define DS2000_ANALOG_LIVE_WAVEFORM_SIZE 1400
962af1a3 33#define VS5000_ANALOG_LIVE_WAVEFORM_SIZE 2048
0d9f5a12 34#define DSO1000_ANALOG_LIVE_WAVEFORM_SIZE 600
babab622
ML
35/* Needs to be made configurable later */
36#define DS2000_ANALOG_MEM_WAVEFORM_SIZE_1C 14000
37#define DS2000_ANALOG_MEM_WAVEFORM_SIZE_2C 7000
6bb192bc 38#define DIGITAL_WAVEFORM_SIZE 1210
babab622
ML
39/* Size of acquisition buffers */
40#define ACQ_BUFFER_SIZE 32768
41
42enum rigol_ds_series {
43 RIGOL_DS1000,
44 RIGOL_DS1000Z,
45 RIGOL_DS2000,
46 RIGOL_DS4000,
47 RIGOL_DS6000,
962af1a3 48 RIGOL_VS5000,
10afee13 49 AGILENT_DSO1000,
babab622
ML
50};
51
52enum rigol_protocol_flavor {
962af1a3 53 /* Used by DS1000 and VS5000 series */
babab622
ML
54 PROTOCOL_LEGACY,
55 /* Used by DS2000, DS4000, DS6000, ... series */
56 PROTOCOL_IEEE488_2,
57};
58
59enum data_source {
60 DATA_SOURCE_LIVE,
61 DATA_SOURCE_MEMORY,
62 DATA_SOURCE_SEGMENTED,
63};
e0b7d23c 64
bafd4890 65struct rigol_ds_model {
10afee13 66 char *vendor;
bafd4890 67 char *name;
babab622
ML
68 enum rigol_ds_series series;
69 enum rigol_protocol_flavor protocol;
bafd4890
ML
70 uint64_t min_timebase[2];
71 uint64_t max_timebase[2];
72 uint64_t min_vdiv[2];
73 bool has_digital;
babab622
ML
74 int num_horizontal_divs;
75};
76
77enum wait_events {
78 WAIT_NONE, /* Don't wait */
79 WAIT_TRIGGER, /* Wait for trigger (only live capture) */
80 WAIT_BLOCK, /* Wait for block data (only when reading sample mem) */
81 WAIT_STOP, /* Wait for scope stopping (only single shots) */
bafd4890
ML
82};
83
f4816ac6
ML
84/** Private, per-device-instance driver context. */
85struct dev_context {
bafd4890
ML
86 /* Device model */
87 const struct rigol_ds_model *model;
88
89 /* Device properties */
90 const uint64_t (*timebases)[2];
91 uint64_t num_timebases;
92 const uint64_t (*vdivs)[2];
93 uint64_t num_vdivs;
6bb192bc 94
3d3a601e
ML
95 /* Probe groups */
96 struct sr_probe_group analog_groups[2];
97 struct sr_probe_group digital_group;
98
254dd102 99 /* Acquisition settings */
6bb192bc
ML
100 GSList *enabled_analog_probes;
101 GSList *enabled_digital_probes;
e0b7d23c 102 uint64_t limit_frames;
f4816ac6 103 void *cb_data;
babab622
ML
104 enum data_source data_source;
105 uint64_t analog_frame_size;
f4816ac6 106
254dd102 107 /* Device settings */
6bb192bc
ML
108 gboolean analog_channels[2];
109 gboolean digital_channels[16];
254dd102
BV
110 float timebase;
111 float vdiv[2];
bafd4890 112 int vert_reference[2];
254dd102
BV
113 float vert_offset[2];
114 char *trigger_source;
115 float horiz_triggerpos;
116 char *trigger_slope;
117 char *coupling[2];
118
119 /* Operational state */
0d87bd93
ML
120
121 /* Number of frames received in total. */
254dd102 122 uint64_t num_frames;
0d87bd93
ML
123 /* The channel we are currently receiving data for. */
124 struct sr_probe *channel;
125 /* Number of samples received in current frame. */
126 uint64_t num_frame_samples;
bafd4890
ML
127 /* Number of bytes in current data block, if 0 block header expected */
128 uint64_t num_block_bytes;
129 /* Number of data block bytes already read */
130 uint64_t num_block_read;
babab622
ML
131 /* What to wait for in *_receive */
132 enum wait_events wait_event;
133 /* Trigger/block copying/stop waiting status */
134 int wait_status;
135 /* Acq buffers used for reading from the scope and sending data to app */
136 unsigned char *buffer;
137 float *data;
f4816ac6
ML
138};
139
babab622 140SR_PRIV int rigol_ds_capture_start(const struct sr_dev_inst *sdi);
677f85d0 141SR_PRIV int rigol_ds_channel_start(const struct sr_dev_inst *sdi);
3086efdd 142SR_PRIV int rigol_ds_receive(int fd, int revents, void *cb_data);
3086efdd 143SR_PRIV int rigol_ds_get_dev_cfg(const struct sr_dev_inst *sdi);
e0b7d23c 144
f4816ac6 145#endif