]> sigrok.org Git - libsigrok.git/blob - src/hardware/serial-dmm/protocol.c
serial-dmm: Convert to SR_DF_ANALOG.
[libsigrok.git] / src / hardware / serial-dmm / protocol.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com>
5  * Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.de>
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 #include <config.h>
22 #include <stdlib.h>
23 #include <math.h>
24 #include <string.h>
25 #include <glib.h>
26 #include <libsigrok/libsigrok.h>
27 #include "libsigrok-internal.h"
28 #include "protocol.h"
29
30 static void log_dmm_packet(const uint8_t *buf)
31 {
32         sr_dbg("DMM packet: %02x %02x %02x %02x %02x %02x %02x "
33                "%02x %02x %02x %02x %02x %02x %02x %02x %02x "
34                "%02x %02x %02x %02x %02x %02x %02x",
35                buf[0], buf[1], buf[2], buf[3], buf[4], buf[5], buf[6],
36                buf[7], buf[8], buf[9], buf[10], buf[11], buf[12], buf[13],
37                buf[14], buf[15], buf[16], buf[17], buf[18], buf[19], buf[20],
38                buf[21], buf[22]);
39 }
40
41 static void handle_packet(const uint8_t *buf, struct sr_dev_inst *sdi,
42                           void *info)
43 {
44         struct dmm_info *dmm;
45         float floatval;
46         struct sr_datafeed_packet packet;
47         struct sr_datafeed_analog analog;
48         struct sr_analog_encoding encoding;
49         struct sr_analog_meaning meaning;
50         struct sr_analog_spec spec;
51         struct dev_context *devc;
52
53         dmm = (struct dmm_info *)sdi->driver;
54
55         log_dmm_packet(buf);
56         devc = sdi->priv;
57
58         sr_analog_init(&analog, &encoding, &meaning, &spec, 0);
59
60         analog.meaning->channels = sdi->channels;
61         analog.num_samples = 1;
62         analog.meaning->mq = 0;
63
64         dmm->packet_parse(buf, &floatval, &analog, info);
65         analog.data = &floatval;
66
67         /* If this DMM needs additional handling, call the resp. function. */
68         if (dmm->dmm_details)
69                 dmm->dmm_details(&analog, info);
70
71         if (analog.meaning->mq != 0) {
72                 /* Got a measurement. */
73                 packet.type = SR_DF_ANALOG;
74                 packet.payload = &analog;
75                 sr_session_send(sdi, &packet);
76                 sr_sw_limits_update_samples_read(&devc->limits, 1);
77         }
78 }
79
80 /** Request packet, if required. */
81 SR_PRIV int req_packet(struct sr_dev_inst *sdi)
82 {
83         struct dmm_info *dmm;
84         struct dev_context *devc;
85         struct sr_serial_dev_inst *serial;
86         int ret;
87
88         dmm = (struct dmm_info *)sdi->driver;
89
90         if (!dmm->packet_request)
91                 return SR_OK;
92
93         devc = sdi->priv;
94         serial = sdi->conn;
95
96         if (devc->req_next_at && (devc->req_next_at > g_get_monotonic_time())) {
97                 sr_spew("Not requesting new packet yet, %" PRIi64 " ms left.",
98                         ((devc->req_next_at - g_get_monotonic_time()) / 1000));
99                 return SR_OK;
100         }
101
102         ret = dmm->packet_request(serial);
103         if (ret < 0) {
104                 sr_err("Failed to request packet: %d.", ret);
105                 return ret;
106         }
107
108         if (dmm->req_timeout_ms)
109                 devc->req_next_at = g_get_monotonic_time() + (dmm->req_timeout_ms * 1000);
110
111         return SR_OK;
112 }
113
114 static void handle_new_data(struct sr_dev_inst *sdi, void *info)
115 {
116         struct dmm_info *dmm;
117         struct dev_context *devc;
118         int len, i, offset = 0;
119         struct sr_serial_dev_inst *serial;
120
121         dmm = (struct dmm_info *)sdi->driver;
122
123         devc = sdi->priv;
124         serial = sdi->conn;
125
126         /* Try to get as much data as the buffer can hold. */
127         len = DMM_BUFSIZE - devc->buflen;
128         len = serial_read_nonblocking(serial, devc->buf + devc->buflen, len);
129         if (len == 0)
130                 return; /* No new bytes, nothing to do. */
131         if (len < 0) {
132                 sr_err("Serial port read error: %d.", len);
133                 return;
134         }
135         devc->buflen += len;
136
137         /* Now look for packets in that data. */
138         while ((devc->buflen - offset) >= dmm->packet_size) {
139                 if (dmm->packet_valid(devc->buf + offset)) {
140                         handle_packet(devc->buf + offset, sdi, info);
141                         offset += dmm->packet_size;
142
143                         /* Request next packet, if required. */
144                         if (!dmm->packet_request)
145                                 break;
146                         if (dmm->req_timeout_ms || dmm->req_delay_ms)
147                                 devc->req_next_at = g_get_monotonic_time() +
148                                         dmm->req_delay_ms * 1000;
149                         req_packet(sdi);
150                 } else {
151                         offset++;
152                 }
153         }
154
155         /* If we have any data left, move it to the beginning of our buffer. */
156         for (i = 0; i < devc->buflen - offset; i++)
157                 devc->buf[i] = devc->buf[offset + i];
158         devc->buflen -= offset;
159 }
160
161 int receive_data(int fd, int revents, void *cb_data)
162 {
163         struct sr_dev_inst *sdi;
164         struct dev_context *devc;
165         struct dmm_info *dmm;
166         void *info;
167
168         (void)fd;
169
170         if (!(sdi = cb_data))
171                 return TRUE;
172
173         if (!(devc = sdi->priv))
174                 return TRUE;
175
176         dmm = (struct dmm_info *)sdi->driver;
177
178         if (revents == G_IO_IN) {
179                 /* Serial data arrived. */
180                 info = g_malloc(dmm->info_size);
181                 handle_new_data(sdi, info);
182                 g_free(info);
183         } else {
184                 /* Timeout; send another packet request if DMM needs it. */
185                 if (dmm->packet_request && (req_packet(sdi) < 0))
186                         return FALSE;
187         }
188
189         if (sr_sw_limits_check(&devc->limits))
190                 sdi->driver->dev_acquisition_stop(sdi);
191
192         return TRUE;
193 }