]> sigrok.org Git - libsigrok.git/blame - src/scpi/scpi_serial.c
serial_hid: implement serial over HID transport
[libsigrok.git] / src / scpi / scpi_serial.c
CommitLineData
23f43dff
ML
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2013 poljar (Damir Jelić) <poljarinho@gmail.com>
5 * Copyright (C) 2013 Martin Ling <martin-sigrok@earth.li>
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
6ec6c43b 21#include <config.h>
23f43dff 22#include <glib.h>
b541f837 23#include <stdlib.h>
23f43dff 24#include <string.h>
c1aae900 25#include <libsigrok/libsigrok.h>
515ab088 26#include "libsigrok-internal.h"
5a1afc09 27#include "scpi.h"
23f43dff 28
3544f848 29#define LOG_PREFIX "scpi_serial"
23f43dff 30
48b7c346
GS
31#ifdef HAVE_SERIAL_COMM
32
05c644ea
ML
33struct scpi_serial {
34 struct sr_serial_dev_inst *serial;
35bb2fce 35 gboolean got_newline;
05c644ea
ML
36};
37
329733d9 38static const struct {
b541f837
AJ
39 uint16_t vendor_id;
40 uint16_t product_id;
41 const char *serialcomm;
42} scpi_serial_usb_ids[] = {
43 { 0x0403, 0xed72, "115200/8n1/flow=1" }, /* Hameg HO720 */
44 { 0x0403, 0xed73, "115200/8n1/flow=1" }, /* Hameg HO730 */
d38f4e7a 45 { 0x0aad, 0x0118, "115200/8n1" }, /* R&S HMO1002 */
b541f837
AJ
46};
47
48static GSList *scpi_serial_scan(struct drv_context *drvc)
49{
50 GSList *l, *r, *resources = NULL;
51 gchar *res;
52 unsigned i;
53
54 (void)drvc;
55
56 for (i = 0; i < ARRAY_SIZE(scpi_serial_usb_ids); i++) {
98fec29e
UH
57 if (!(l = sr_serial_find_usb(scpi_serial_usb_ids[i].vendor_id,
58 scpi_serial_usb_ids[i].product_id)))
b541f837
AJ
59 continue;
60 for (r = l; r; r = r->next) {
61 if (scpi_serial_usb_ids[i].serialcomm)
62 res = g_strdup_printf("%s:%s", (char *) r->data,
63 scpi_serial_usb_ids[i].serialcomm);
64 else
65 res = g_strdup(r->data);
66 resources = g_slist_append(resources, res);
67 }
68 g_slist_free_full(l, g_free);
69 }
70
71 return resources;
72}
73
17bdda58
AJ
74static int scpi_serial_dev_inst_new(void *priv, struct drv_context *drvc,
75 const char *resource, char **params, const char *serialcomm)
f754c146
AJ
76{
77 struct scpi_serial *sscpi = priv;
78
17bdda58 79 (void)drvc;
f754c146
AJ
80 (void)params;
81
91219afc 82 sscpi->serial = sr_serial_dev_inst_new(resource, serialcomm);
f754c146
AJ
83
84 return SR_OK;
85}
86
04229f7b 87static int scpi_serial_open(struct sr_scpi_dev_inst *scpi)
23f43dff 88{
04229f7b 89 struct scpi_serial *sscpi = scpi->priv;
05c644ea 90 struct sr_serial_dev_inst *serial = sscpi->serial;
23f43dff 91
406e0c79 92 if (serial_open(serial, SERIAL_RDWR) != SR_OK)
9dfeb81b
ML
93 return SR_ERR;
94
95 if (serial_flush(serial) != SR_OK)
96 return SR_ERR;
97
35bb2fce 98 sscpi->got_newline = FALSE;
8943049c 99
9dfeb81b 100 return SR_OK;
23f43dff
ML
101}
102
8107a9a6
FS
103static int scpi_serial_connection_id(struct sr_scpi_dev_inst *scpi,
104 char **connection_id)
105{
106 struct scpi_serial *sscpi = scpi->priv;
107 struct sr_serial_dev_inst *serial = sscpi->serial;
108
109 *connection_id = g_strdup(serial->port);
110
111 return SR_OK;
112}
113
102f1239
BV
114static int scpi_serial_source_add(struct sr_session *session, void *priv,
115 int events, int timeout, sr_receive_data_callback cb, void *cb_data)
23f43dff 116{
05c644ea
ML
117 struct scpi_serial *sscpi = priv;
118 struct sr_serial_dev_inst *serial = sscpi->serial;
23f43dff 119
102f1239 120 return serial_source_add(session, serial, events, timeout, cb, cb_data);
23f43dff
ML
121}
122
102f1239 123static int scpi_serial_source_remove(struct sr_session *session, void *priv)
23f43dff 124{
05c644ea
ML
125 struct scpi_serial *sscpi = priv;
126 struct sr_serial_dev_inst *serial = sscpi->serial;
23f43dff 127
102f1239 128 return serial_source_remove(session, serial);
23f43dff
ML
129}
130
d87c1766 131static int scpi_serial_send(void *priv, const char *command)
23f43dff 132{
379e95c5 133 int result;
05c644ea
ML
134 struct scpi_serial *sscpi = priv;
135 struct sr_serial_dev_inst *serial = sscpi->serial;
23f43dff 136
379e95c5
UH
137 result = serial_write_blocking(serial, command, strlen(command), 0);
138 if (result < 0) {
0c8aedb5
UH
139 sr_err("Error while sending SCPI command '%s': %d.",
140 command, result);
379e95c5 141 return SR_ERR;
23f43dff
ML
142 }
143
144 sr_spew("Successfully sent SCPI command: '%s'.", command);
145
146 return SR_OK;
147}
148
d87c1766 149static int scpi_serial_read_begin(void *priv)
05c644ea 150{
9ea4018f 151 struct scpi_serial *sscpi = priv;
35bb2fce 152 sscpi->got_newline = FALSE;
05c644ea
ML
153
154 return SR_OK;
155}
156
d87c1766 157static int scpi_serial_read_data(void *priv, char *buf, int maxlen)
bc03a7cc 158{
05c644ea 159 struct scpi_serial *sscpi = priv;
9ea4018f 160 int ret;
8943049c 161
9ea4018f
SB
162 /* Try to read new data into the buffer. */
163 ret = serial_read_nonblocking(sscpi->serial, buf, maxlen);
05c644ea 164
9ea4018f
SB
165 if (ret < 0)
166 return ret;
05c644ea 167
9ea4018f 168 if (ret > 0) {
9ea4018f 169 if (buf[ret - 1] == '\n') {
35bb2fce 170 sscpi->got_newline = TRUE;
9ea4018f
SB
171 sr_spew("Received terminator");
172 } else {
35bb2fce 173 sscpi->got_newline = FALSE;
8943049c 174 }
8943049c
ML
175 }
176
9ea4018f 177 return ret;
bc03a7cc 178}
05c644ea 179
d87c1766 180static int scpi_serial_read_complete(void *priv)
05c644ea
ML
181{
182 struct scpi_serial *sscpi = priv;
183
9ea4018f 184 return sscpi->got_newline;
05c644ea
ML
185}
186
04229f7b 187static int scpi_serial_close(struct sr_scpi_dev_inst *scpi)
bc03a7cc 188{
04229f7b 189 struct scpi_serial *sscpi = scpi->priv;
05c644ea 190
f754c146 191 return serial_close(sscpi->serial);
bc03a7cc 192}
05c644ea 193
bc03a7cc
BV
194static void scpi_serial_free(void *priv)
195{
05c644ea 196 struct scpi_serial *sscpi = priv;
05c644ea 197
f754c146 198 sr_serial_dev_inst_free(sscpi->serial);
bc03a7cc
BV
199}
200
f754c146
AJ
201SR_PRIV const struct sr_scpi_dev_inst scpi_serial_dev = {
202 .name = "serial",
203 .prefix = "",
87aa1e63 204 .transport = SCPI_TRANSPORT_SERIAL,
f754c146 205 .priv_size = sizeof(struct scpi_serial),
b541f837 206 .scan = scpi_serial_scan,
f754c146
AJ
207 .dev_inst_new = scpi_serial_dev_inst_new,
208 .open = scpi_serial_open,
8107a9a6 209 .connection_id = scpi_serial_connection_id,
f754c146
AJ
210 .source_add = scpi_serial_source_add,
211 .source_remove = scpi_serial_source_remove,
212 .send = scpi_serial_send,
213 .read_begin = scpi_serial_read_begin,
214 .read_data = scpi_serial_read_data,
215 .read_complete = scpi_serial_read_complete,
216 .close = scpi_serial_close,
217 .free = scpi_serial_free,
218};
48b7c346
GS
219
220#endif