]> sigrok.org Git - libsigrok.git/blame - hardware/rigol-ds1xx2/protocol.h
rigol-ds1xx2: fix channel numbers
[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
28/* Message logging helpers with driver-specific prefix string. */
29#define DRIVER_LOG_DOMAIN "rigol-ds1xx2: "
30#define sr_log(l, s, args...) sr_log(l, DRIVER_LOG_DOMAIN s, ## args)
31#define sr_spew(s, args...) sr_spew(DRIVER_LOG_DOMAIN s, ## args)
32#define sr_dbg(s, args...) sr_dbg(DRIVER_LOG_DOMAIN s, ## args)
33#define sr_info(s, args...) sr_info(DRIVER_LOG_DOMAIN s, ## args)
34#define sr_warn(s, args...) sr_warn(DRIVER_LOG_DOMAIN s, ## args)
35#define sr_err(s, args...) sr_err(DRIVER_LOG_DOMAIN s, ## args)
36
e0b7d23c
ML
37#define WAVEFORM_SIZE 600
38
f4816ac6
ML
39/** Private, per-device-instance driver context. */
40struct dev_context {
333bf022 41 /** The current frame limit. */
e0b7d23c
ML
42 uint64_t limit_frames;
43
f4816ac6
ML
44 /** The current sampling limit (in number of samples). */
45 uint64_t limit_samples;
46
47 /** The current sampling limit (in ms). */
48 uint64_t limit_msec;
49
50 /** Opaque pointer passed in by the frontend. */
51 void *cb_data;
52
e0b7d23c
ML
53 /** The current number of already received frames. */
54 uint64_t num_frames;
55
75d8a4e5
BV
56 /** The current number of samples received in this frame. */
57 uint64_t num_frame_samples;
e0b7d23c
ML
58
59 /** Current scale setting. */
60 float scale;
61
62 /** Current offset setting. */
63 float offset;
64
fb6e5ba8
ML
65 /** Path to USBTMC character device file. */
66 char *device;
67
e0b7d23c
ML
68 /** USBTMC character device file descriptor. */
69 int fd;
69e19dd7
BV
70
71 GSList *enabled_probes;
f4816ac6
ML
72};
73
74SR_PRIV int rigol_ds1xx2_receive_data(int fd, int revents, void *cb_data);
75
e0b7d23c
ML
76SR_PRIV int rigol_ds1xx2_send_data(int fd, const char *format, ...);
77
f4816ac6 78#endif