]> sigrok.org Git - libsigrok.git/blame - src/hardware/scpi-pps/protocol.c
scpi-pps: Disable beeper during session.
[libsigrok.git] / src / hardware / scpi-pps / protocol.c
CommitLineData
ca1a7cb5
BV
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2014 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
9e45cd41
BV
20#include <string.h>
21#include <stdarg.h>
ca1a7cb5
BV
22#include "protocol.h"
23
478c8d92 24SR_PRIV char *scpi_cmd_get(const struct sr_dev_inst *sdi, int command)
9e45cd41 25{
9e45cd41 26 struct dev_context *devc;
9e45cd41 27 unsigned int i;
9e45cd41
BV
28 char *cmd;
29
30 devc = sdi->priv;
31 cmd = NULL;
32 for (i = 0; i < devc->device->num_commands; i++) {
33 if (devc->device->commands[i].command == command) {
34 cmd = devc->device->commands[i].string;
35 break;
36 }
37 }
478c8d92
BV
38
39 return cmd;
40}
41
42SR_PRIV int scpi_cmd(const struct sr_dev_inst *sdi, int command, ...)
43{
44 struct sr_scpi_dev_inst *scpi;
45 va_list args;
46 int ret;
47 char *cmd;
48
49 if (!(cmd = scpi_cmd_get(sdi, command))) {
9e45cd41
BV
50 /* Device does not implement this command, that's OK. */
51 return SR_OK_CONTINUE;
52 }
53
54 scpi = sdi->conn;
55 va_start(args, command);
56 ret = sr_scpi_send_variadic(scpi, cmd, args);
57 va_end(args);
58
59 return ret;
60}
61
478c8d92
BV
62SR_PRIV int scpi_cmd_resp(const struct sr_dev_inst *sdi, GVariant **gvar,
63 const GVariantType *gvtype, int command, ...)
64{
65 struct sr_scpi_dev_inst *scpi;
66 va_list args;
67 double d;
68 int ret;
69 char *cmd, *s;
70
71 if (!(cmd = scpi_cmd_get(sdi, command))) {
72 /* Device does not implement this command, that's OK. */
73 return SR_OK_CONTINUE;
74 }
75
76 scpi = sdi->conn;
77 va_start(args, command);
78 ret = sr_scpi_send_variadic(scpi, cmd, args);
79 va_end(args);
80 if (ret != SR_OK)
81 return ret;
82
83 if (g_variant_type_equal(gvtype, G_VARIANT_TYPE_BOOLEAN)) {
84 if ((ret = sr_scpi_get_string(scpi, NULL, &s)) != SR_OK)
85 return ret;
86 if (!strcasecmp(s, "ON") || !strcasecmp(s, "1") || !strcasecmp(s, "YES"))
87 *gvar = g_variant_new_boolean(TRUE);
88 else if (!strcasecmp(s, "OFF") || !strcasecmp(s, "0") || !strcasecmp(s, "NO"))
89 *gvar = g_variant_new_boolean(FALSE);
90 else
91 ret = SR_ERR;
92 } if (g_variant_type_equal(gvtype, G_VARIANT_TYPE_DOUBLE)) {
93 if ((ret = sr_scpi_get_double(scpi, NULL, &d)) == SR_OK)
94 *gvar = g_variant_new_double(d);
95 } if (g_variant_type_equal(gvtype, G_VARIANT_TYPE_STRING)) {
96 if ((ret = sr_scpi_get_string(scpi, NULL, &s)) == SR_OK)
97 *gvar = g_variant_new_string(s);
98 }
99
100 return ret;
101}
102
60475cd7
BV
103SR_PRIV int select_channel(const struct sr_dev_inst *sdi, struct sr_channel *ch)
104{
105 struct dev_context *devc;
106 struct pps_channel *pch;
107 int ret;
108
109 if (g_slist_length(sdi->channels) == 1)
110 return SR_OK;
111
112 devc = sdi->priv;
113 if (ch == devc->cur_channel)
114 return SR_OK;
115
116 pch = ch->priv;
117 if ((ret = scpi_cmd(sdi, SCPI_CMD_SELECT_CHANNEL, pch->hwname)) == SR_OK)
118 devc->cur_channel = ch;
119
120 return ret;
121}
122
ca1a7cb5
BV
123SR_PRIV int scpi_pps_receive_data(int fd, int revents, void *cb_data)
124{
ca1a7cb5 125 struct dev_context *devc;
9e45cd41
BV
126 struct sr_datafeed_packet packet;
127 struct sr_datafeed_analog analog;
128 const struct sr_dev_inst *sdi;
60475cd7 129 struct sr_channel *next_channel;
9e45cd41 130 struct sr_scpi_dev_inst *scpi;
01b0257a 131 struct pps_channel *pch;
9e45cd41
BV
132 GSList *l;
133 float f;
01b0257a 134 int cmd;
ca1a7cb5
BV
135
136 (void)fd;
9e45cd41 137 (void)revents;
ca1a7cb5
BV
138
139 if (!(sdi = cb_data))
140 return TRUE;
141
142 if (!(devc = sdi->priv))
143 return TRUE;
144
9e45cd41
BV
145 scpi = sdi->conn;
146
147 /* Retrieve requested value for this state. */
148 if (sr_scpi_get_float(scpi, NULL, &f) == SR_OK) {
01b0257a 149 pch = devc->cur_channel->priv;
9e45cd41
BV
150 packet.type = SR_DF_ANALOG;
151 packet.payload = &analog;
152 analog.channels = g_slist_append(NULL, devc->cur_channel);
153 analog.num_samples = 1;
01b0257a
BV
154 analog.mq = pch->mq;
155 if (pch->mq == SR_MQ_VOLTAGE)
9e45cd41 156 analog.unit = SR_UNIT_VOLT;
01b0257a 157 else if (pch->mq == SR_MQ_CURRENT)
9e45cd41 158 analog.unit = SR_UNIT_AMPERE;
01b0257a
BV
159 else if (pch->mq == SR_MQ_POWER)
160 analog.unit = SR_UNIT_WATT;
9e45cd41
BV
161 analog.mqflags = SR_MQFLAG_DC;
162 analog.data = &f;
163 sr_session_send(sdi, &packet);
164 g_slist_free(analog.channels);
165 }
166
60475cd7
BV
167 if (g_slist_length(sdi->channels) > 1) {
168 /* Find next enabled channel. */
169 next_channel = devc->cur_channel;
170 do {
171 l = g_slist_find(sdi->channels, next_channel);
172 if (l->next)
173 next_channel = l->next->data;
174 else
175 next_channel = sdi->channels->data;
176 } while (!next_channel->enabled);
177 select_channel(sdi, next_channel);
178 if (devc->cur_channel != next_channel) {
179 sr_err("Failed to select channel %s", next_channel->name);
180 return FALSE;
181 }
182 }
01b0257a
BV
183
184 pch = devc->cur_channel->priv;
185 if (pch->mq == SR_MQ_VOLTAGE)
186 cmd = SCPI_CMD_GET_MEAS_VOLTAGE;
187 else if (pch->mq == SR_MQ_CURRENT)
188 cmd = SCPI_CMD_GET_MEAS_CURRENT;
189 else if (pch->mq == SR_MQ_POWER)
190 cmd = SCPI_CMD_GET_MEAS_POWER;
191 else
192 return SR_ERR;
193 scpi_cmd(sdi, cmd, pch->hwname);
ca1a7cb5
BV
194
195 return TRUE;
196}