]> sigrok.org Git - libsigrok.git/blame - hardware/rigol-ds1xx2/protocol.h
probe_groups: Add a name field to sr_probe_group.
[libsigrok.git] / hardware / rigol-ds1xx2 / 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
21#ifndef LIBSIGROK_HARDWARE_RIGOL_DS1XX2_PROTOCOL_H
22#define LIBSIGROK_HARDWARE_RIGOL_DS1XX2_PROTOCOL_H
23
24#include <stdint.h>
25#include "libsigrok.h"
26#include "libsigrok-internal.h"
27
29a27196
UH
28/* Message logging helpers with subsystem-specific prefix string. */
29#define LOG_PREFIX "rigol-ds1xx2: "
30#define sr_log(l, s, args...) sr_log(l, LOG_PREFIX s, ## args)
31#define sr_spew(s, args...) sr_spew(LOG_PREFIX s, ## args)
32#define sr_dbg(s, args...) sr_dbg(LOG_PREFIX s, ## args)
33#define sr_info(s, args...) sr_info(LOG_PREFIX s, ## args)
34#define sr_warn(s, args...) sr_warn(LOG_PREFIX s, ## args)
35#define sr_err(s, args...) sr_err(LOG_PREFIX s, ## args)
f4816ac6 36
6bb192bc
ML
37#define ANALOG_WAVEFORM_SIZE 600
38#define DIGITAL_WAVEFORM_SIZE 1210
e0b7d23c 39
f4816ac6
ML
40/** Private, per-device-instance driver context. */
41struct dev_context {
6bb192bc
ML
42 /* Device features */
43 gboolean has_digital;
44
254dd102 45 /* Acquisition settings */
6bb192bc
ML
46 GSList *enabled_analog_probes;
47 GSList *enabled_digital_probes;
e0b7d23c 48 uint64_t limit_frames;
f4816ac6
ML
49 void *cb_data;
50
254dd102 51 /* Device settings */
6bb192bc
ML
52 gboolean analog_channels[2];
53 gboolean digital_channels[16];
254dd102
BV
54 float timebase;
55 float vdiv[2];
56 float vert_offset[2];
57 char *trigger_source;
58 float horiz_triggerpos;
59 char *trigger_slope;
60 char *coupling[2];
61
62 /* Operational state */
254dd102 63 uint64_t num_frames;
ee7e9bee 64 uint64_t num_frame_bytes;
254dd102 65 struct sr_probe *channel_frame;
f4816ac6
ML
66};
67
254dd102 68SR_PRIV int rigol_ds1xx2_receive(int fd, int revents, void *cb_data);
9bd4c956 69SR_PRIV int rigol_ds1xx2_send(const struct sr_dev_inst *sdi, const char *format, ...);
254dd102 70SR_PRIV int rigol_ds1xx2_get_dev_cfg(const struct sr_dev_inst *sdi);
e0b7d23c 71
f4816ac6 72#endif