]> sigrok.org Git - libsigrok.git/blame - src/scpi.h
scpi-pps: Add init_acquisition() and update_status() for device specific
[libsigrok.git] / src / scpi.h
CommitLineData
5a1afc09
BV
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2015 Bert Vermeulen <bert@biot.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/** @file
21 * @internal
22 */
23
24#ifndef LIBSIGROK_SCPI_H
25#define LIBSIGROK_SCPI_H
26
27#include <stdint.h>
28#include <glib.h>
29#include <libsigrok/libsigrok.h>
30#include "libsigrok-internal.h"
31
32#define SCPI_CMD_IDN "*IDN?"
33#define SCPI_CMD_OPC "*OPC?"
34
35enum {
36 SCPI_CMD_SET_TRIGGER_SOURCE = 1,
37 SCPI_CMD_SET_TIMEBASE,
38 SCPI_CMD_SET_VERTICAL_DIV,
39 SCPI_CMD_SET_TRIGGER_SLOPE,
40 SCPI_CMD_SET_COUPLING,
41 SCPI_CMD_SET_HORIZ_TRIGGERPOS,
42 SCPI_CMD_GET_ANALOG_CHAN_STATE,
43 SCPI_CMD_GET_DIG_CHAN_STATE,
44 SCPI_CMD_GET_TIMEBASE,
45 SCPI_CMD_GET_VERTICAL_DIV,
46 SCPI_CMD_GET_VERTICAL_OFFSET,
47 SCPI_CMD_GET_TRIGGER_SOURCE,
48 SCPI_CMD_GET_HORIZ_TRIGGERPOS,
49 SCPI_CMD_GET_TRIGGER_SLOPE,
50 SCPI_CMD_GET_COUPLING,
51 SCPI_CMD_SET_ANALOG_CHAN_STATE,
52 SCPI_CMD_SET_DIG_CHAN_STATE,
53 SCPI_CMD_GET_DIG_POD_STATE,
54 SCPI_CMD_SET_DIG_POD_STATE,
55 SCPI_CMD_GET_ANALOG_DATA,
56 SCPI_CMD_GET_DIG_DATA,
57 SCPI_CMD_GET_SAMPLE_RATE,
58 SCPI_CMD_GET_SAMPLE_RATE_LIVE,
2d7da5df
SB
59 SCPI_CMD_GET_DATA_FORMAT,
60 SCPI_CMD_GET_PROBE_FACTOR,
61 SCPI_CMD_SET_PROBE_FACTOR,
62 SCPI_CMD_GET_PROBE_UNIT,
63 SCPI_CMD_SET_PROBE_UNIT,
64 SCPI_CMD_GET_ANALOG_CHAN_NAME,
65 SCPI_CMD_GET_DIG_CHAN_NAME,
5a1afc09
BV
66};
67
91ef511d
BV
68struct scpi_command {
69 int command;
70 const char *string;
71};
72
5a1afc09
BV
73struct sr_scpi_hw_info {
74 char *manufacturer;
75 char *model;
76 char *serial_number;
77 char *firmware_version;
78};
79
80struct sr_scpi_dev_inst {
81 const char *name;
82 const char *prefix;
83 int priv_size;
84 GSList *(*scan)(struct drv_context *drvc);
85 int (*dev_inst_new)(void *priv, struct drv_context *drvc,
86 const char *resource, char **params, const char *serialcomm);
04229f7b 87 int (*open)(struct sr_scpi_dev_inst *scpi);
8107a9a6 88 int (*connection_id)(struct sr_scpi_dev_inst *scpi, char **connection_id);
5a1afc09
BV
89 int (*source_add)(struct sr_session *session, void *priv, int events,
90 int timeout, sr_receive_data_callback cb, void *cb_data);
91 int (*source_remove)(struct sr_session *session, void *priv);
92 int (*send)(void *priv, const char *command);
93 int (*read_begin)(void *priv);
94 int (*read_data)(void *priv, char *buf, int maxlen);
b6be55ce 95 int (*write_data)(void *priv, char *buf, int len);
5a1afc09 96 int (*read_complete)(void *priv);
04229f7b 97 int (*close)(struct sr_scpi_dev_inst *scpi);
5a1afc09 98 void (*free)(void *priv);
37ef582d 99 unsigned int read_timeout_us;
5a1afc09 100 void *priv;
de285cce
BV
101 /* Only used for quirk workarounds, notably the Rigol DS1000 series. */
102 uint64_t firmware_version;
fd20e59c 103 GMutex scpi_mutex;
3d118722 104 char *actual_channel_name;
5a1afc09
BV
105};
106
107SR_PRIV GSList *sr_scpi_scan(struct drv_context *drvc, GSList *options,
108 struct sr_dev_inst *(*probe_device)(struct sr_scpi_dev_inst *scpi));
109SR_PRIV struct sr_scpi_dev_inst *scpi_dev_inst_new(struct drv_context *drvc,
110 const char *resource, const char *serialcomm);
111SR_PRIV int sr_scpi_open(struct sr_scpi_dev_inst *scpi);
8107a9a6
FS
112SR_PRIV int sr_scpi_connection_id(struct sr_scpi_dev_inst *scpi,
113 char **connection_id);
5a1afc09
BV
114SR_PRIV int sr_scpi_source_add(struct sr_session *session,
115 struct sr_scpi_dev_inst *scpi, int events, int timeout,
116 sr_receive_data_callback cb, void *cb_data);
117SR_PRIV int sr_scpi_source_remove(struct sr_session *session,
118 struct sr_scpi_dev_inst *scpi);
119SR_PRIV int sr_scpi_send(struct sr_scpi_dev_inst *scpi,
120 const char *format, ...);
121SR_PRIV int sr_scpi_send_variadic(struct sr_scpi_dev_inst *scpi,
122 const char *format, va_list args);
123SR_PRIV int sr_scpi_read_begin(struct sr_scpi_dev_inst *scpi);
124SR_PRIV int sr_scpi_read_data(struct sr_scpi_dev_inst *scpi, char *buf, int maxlen);
b6be55ce 125SR_PRIV int sr_scpi_write_data(struct sr_scpi_dev_inst *scpi, char *buf, int len);
5a1afc09
BV
126SR_PRIV int sr_scpi_read_complete(struct sr_scpi_dev_inst *scpi);
127SR_PRIV int sr_scpi_close(struct sr_scpi_dev_inst *scpi);
128SR_PRIV void sr_scpi_free(struct sr_scpi_dev_inst *scpi);
129
d64be25b
SB
130SR_PRIV int sr_scpi_read_response(struct sr_scpi_dev_inst *scpi,
131 GString *response, gint64 abs_timeout_us);
5a1afc09
BV
132SR_PRIV int sr_scpi_get_string(struct sr_scpi_dev_inst *scpi,
133 const char *command, char **scpi_response);
134SR_PRIV int sr_scpi_get_bool(struct sr_scpi_dev_inst *scpi,
135 const char *command, gboolean *scpi_response);
136SR_PRIV int sr_scpi_get_int(struct sr_scpi_dev_inst *scpi,
137 const char *command, int *scpi_response);
138SR_PRIV int sr_scpi_get_float(struct sr_scpi_dev_inst *scpi,
139 const char *command, float *scpi_response);
140SR_PRIV int sr_scpi_get_double(struct sr_scpi_dev_inst *scpi,
141 const char *command, double *scpi_response);
142SR_PRIV int sr_scpi_get_opc(struct sr_scpi_dev_inst *scpi);
143SR_PRIV int sr_scpi_get_floatv(struct sr_scpi_dev_inst *scpi,
144 const char *command, GArray **scpi_response);
145SR_PRIV int sr_scpi_get_uint8v(struct sr_scpi_dev_inst *scpi,
146 const char *command, GArray **scpi_response);
ff01b0ea
SB
147SR_PRIV int sr_scpi_get_data(struct sr_scpi_dev_inst *scpi,
148 const char *command, GString **scpi_response);
149SR_PRIV int sr_scpi_get_block(struct sr_scpi_dev_inst *scpi,
150 const char *command, GByteArray **scpi_response);
5a1afc09
BV
151SR_PRIV int sr_scpi_get_hw_id(struct sr_scpi_dev_inst *scpi,
152 struct sr_scpi_hw_info **scpi_response);
153SR_PRIV void sr_scpi_hw_info_free(struct sr_scpi_hw_info *hw_info);
154
a019bc48
GS
155SR_PRIV const char *sr_scpi_unquote_string(char *s);
156
91ef511d 157SR_PRIV const char *sr_vendor_alias(const char *raw_vendor);
17a82e83
FS
158SR_PRIV const char *sr_scpi_cmd_get(const struct scpi_command *cmdtable,
159 int command);
fd20e59c 160SR_PRIV int sr_scpi_cmd(const struct sr_dev_inst *sdi,
17a82e83
FS
161 const struct scpi_command *cmdtable,
162 int channel_command, const char *channel_name,
163 int command, ...);
fd20e59c 164SR_PRIV int sr_scpi_cmd_resp(const struct sr_dev_inst *sdi,
91ef511d 165 const struct scpi_command *cmdtable,
17a82e83 166 int channel_command, const char *channel_name,
91ef511d
BV
167 GVariant **gvar, const GVariantType *gvtype, int command, ...);
168
02d4db35
FS
169/*--- GPIB only functions ---------------------------------------------------*/
170
171#ifdef HAVE_LIBGPIB
172SR_PRIV int sr_scpi_gpib_spoll(struct sr_scpi_dev_inst *scpi, char *buf);
173#endif
174
5a1afc09 175#endif