]> sigrok.org Git - libsigrok.git/blame - src/hardware/scpi-dmm/protocol.h
scpi-dmm: Implement support for Agilent 34405A, prepare others
[libsigrok.git] / src / hardware / scpi-dmm / protocol.h
CommitLineData
7a396ff5
GS
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2018 Gerhard Sittig <gerhard.sittig@gmx.net>
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_SCPI_DMM_PROTOCOL_H
21#define LIBSIGROK_HARDWARE_SCPI_DMM_PROTOCOL_H
22
3cdad416 23#include <config.h>
7a396ff5 24#include <glib.h>
3cdad416
GS
25#include <stdint.h>
26#include <stdlib.h>
7a396ff5
GS
27#include <libsigrok/libsigrok.h>
28#include "libsigrok-internal.h"
3cdad416 29#include "scpi.h"
7a396ff5
GS
30
31#define LOG_PREFIX "scpi-dmm"
32
3cdad416
GS
33#define SCPI_DMM_MAX_CHANNELS 1
34
35enum scpi_dmm_cmdcode {
36 DMM_CMD_SETUP_REMOTE,
37 DMM_CMD_SETUP_FUNC,
38 DMM_CMD_QUERY_FUNC,
39 DMM_CMD_START_ACQ,
40 DMM_CMD_STOP_ACQ,
41 DMM_CMD_QUERY_VALUE,
42 DMM_CMD_QUERY_PREC,
43};
44
45struct mqopt_item {
46 enum sr_mq mq;
47 enum sr_mqflag mqflag;
48 const char *scpi_func_setup;
49 const char *scpi_func_query;
50 int default_precision;
51};
52#define NO_DFLT_PREC -99
53
54struct scpi_dmm_model {
55 const char *vendor;
56 const char *model;
57 size_t num_channels;
58 ssize_t digits;
59 const struct scpi_command *cmdset;
60 const struct mqopt_item *mqopts;
61 size_t mqopt_size;
62 int (*get_measurement)(const struct sr_dev_inst *sdi, size_t ch);
63};
64
7a396ff5 65struct dev_context {
3cdad416
GS
66 size_t num_channels;
67 const struct scpi_command *cmdset;
68 const struct scpi_dmm_model *model;
69 struct sr_sw_limits limits;
70 struct {
71 enum sr_mq curr_mq;
72 enum sr_mqflag curr_mqflag;
73 } start_acq_mq;
74 struct scpi_dmm_acq_info {
75 float f_value;
76 double d_value;
77 struct sr_datafeed_packet packet;
78 struct sr_datafeed_analog analog[SCPI_DMM_MAX_CHANNELS];
79 struct sr_analog_encoding encoding[SCPI_DMM_MAX_CHANNELS];
80 struct sr_analog_meaning meaning[SCPI_DMM_MAX_CHANNELS];
81 struct sr_analog_spec spec[SCPI_DMM_MAX_CHANNELS];
82 } run_acq_info;
7a396ff5
GS
83};
84
3cdad416
GS
85SR_PRIV void scpi_dmm_cmd_delay(struct sr_scpi_dev_inst *scpi);
86SR_PRIV const struct mqopt_item *scpi_dmm_lookup_mq_number(
87 const struct sr_dev_inst *sdi, enum sr_mq mq, enum sr_mqflag flag);
88SR_PRIV const struct mqopt_item *scpi_dmm_lookup_mq_text(
89 const struct sr_dev_inst *sdi, const char *text);
90SR_PRIV int scpi_dmm_get_mq(const struct sr_dev_inst *sdi,
91 enum sr_mq *mq, enum sr_mqflag *flag, char **rsp);
92SR_PRIV int scpi_dmm_set_mq(const struct sr_dev_inst *sdi,
93 enum sr_mq mq, enum sr_mqflag flag);
94SR_PRIV int scpi_dmm_get_meas_agilent(const struct sr_dev_inst *sdi, size_t ch);
7a396ff5
GS
95SR_PRIV int scpi_dmm_receive_data(int fd, int revents, void *cb_data);
96
3cdad416
GS
97SR_PRIV struct sr_dev_driver scpi_dmm_driver_info;
98
7a396ff5 99#endif