]> sigrok.org Git - libsigrok.git/blame - src/hardware/tondaj-sl-814/protocol.c
device.c: Whitespace/cosmetics and typo fixes.
[libsigrok.git] / src / hardware / tondaj-sl-814 / protocol.c
CommitLineData
aa2af324 1/*
50985c20 2 * This file is part of the libsigrok project.
aa2af324
UH
3 *
4 * Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.de>
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 2 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, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
6ec6c43b 21#include <config.h>
c073af80 22#include <string.h>
aa2af324 23#include <glib.h>
c1aae900 24#include <libsigrok/libsigrok.h>
aa2af324
UH
25#include "libsigrok-internal.h"
26#include "protocol.h"
27
c073af80
UH
28/* States */
29enum {
30 SEND_INIT,
31 GET_INIT_REPLY,
32 SEND_PACKET_REQUEST,
33 GET_PACKET,
34};
35
36static void parse_packet(const uint8_t *buf, float *floatval,
c68ade3c 37 struct sr_datafeed_analog *analog)
c073af80
UH
38{
39 gboolean is_a, is_fast;
40 uint16_t intval;
41 uint8_t level = 0, level_bits;
42
43 /* Byte 0 [7:7]: 0 = A, 1 = C */
44 is_a = ((buf[0] & (1 << 7)) == 0);
45
46 /* Byte 0 [6:6]: Unknown/unused? */
47
48 /* Byte 0 [5:4]: Level (00 = 40, 01 = 60, 10 = 80, 11 = 100) */
49 level_bits = (buf[0] >> 4) & 0x03;
50 if (level_bits == 0)
51 level = 40;
52 else if (level_bits == 1)
53 level = 60;
54 else if (level_bits == 2)
55 level = 80;
56 else if (level_bits == 3)
57 level = 100;
58
59 /* Byte 0 [3:3]: 0 = fast, 1 = slow */
60 is_fast = ((buf[0] & (1 << 3)) == 0);
61
62 /* Byte 0 [2:0]: value[10..8] */
63 /* Byte 1 [7:0]: value[7..0] */
64 intval = (buf[0] & 0x7) << 8;
65 intval |= buf[1];
66
67 *floatval = (float)intval;
68
69 /* The value on the display always has one digit after the comma. */
70 *floatval /= 10;
71
c68ade3c
UH
72 analog->meaning->mq = SR_MQ_SOUND_PRESSURE_LEVEL;
73 analog->meaning->unit = SR_UNIT_DECIBEL_SPL;
c073af80
UH
74
75 if (is_a)
c68ade3c 76 analog->meaning->mqflags |= SR_MQFLAG_SPL_FREQ_WEIGHT_A;
c073af80 77 else
c68ade3c 78 analog->meaning->mqflags |= SR_MQFLAG_SPL_FREQ_WEIGHT_C;
c073af80
UH
79
80 if (is_fast)
c68ade3c 81 analog->meaning->mqflags |= SR_MQFLAG_SPL_TIME_WEIGHT_F;
c073af80 82 else
c68ade3c 83 analog->meaning->mqflags |= SR_MQFLAG_SPL_TIME_WEIGHT_S;
c073af80
UH
84
85 /* TODO: How to handle level? */
86 (void)level;
87}
88
69e19dd7 89static void decode_packet(struct sr_dev_inst *sdi)
aa2af324 90{
c073af80 91 struct sr_datafeed_packet packet;
c68ade3c
UH
92 struct sr_datafeed_analog analog;
93 struct sr_analog_encoding encoding;
94 struct sr_analog_meaning meaning;
95 struct sr_analog_spec spec;
69e19dd7 96 struct dev_context *devc;
c073af80
UH
97 float floatval;
98
69e19dd7 99 devc = sdi->priv;
c68ade3c 100
d043b29d 101 sr_analog_init(&analog, &encoding, &meaning, &spec, 1);
c073af80
UH
102
103 parse_packet(devc->buf, &floatval, &analog);
104
105 /* Send a sample packet with one analog value. */
c68ade3c 106 analog.meaning->channels = sdi->channels;
c073af80
UH
107 analog.num_samples = 1;
108 analog.data = &floatval;
c68ade3c 109 packet.type = SR_DF_ANALOG;
c073af80 110 packet.payload = &analog;
695dc859 111 sr_session_send(sdi, &packet);
c073af80 112
2630f97e 113 sr_sw_limits_update_samples_read(&devc->limits, 1);
c073af80
UH
114}
115
e8be6169 116SR_PRIV int tondaj_sl_814_receive_data(int fd, int revents, void *cb_data)
c073af80
UH
117{
118 struct sr_dev_inst *sdi;
aa2af324 119 struct dev_context *devc;
a5e44c32 120 struct sr_serial_dev_inst *serial;
c073af80
UH
121 uint8_t buf[3];
122 int ret;
123
f4284934 124 (void)fd;
c073af80
UH
125 (void)revents;
126
127 sdi = cb_data;
a5e44c32 128 serial = sdi->conn;
c073af80 129 devc = sdi->priv;
aa2af324 130
c073af80 131 /* TODO: Parts of this code need to be improved later. */
aa2af324 132
c073af80
UH
133 /* State machine. */
134 if (devc->state == SEND_INIT) {
135 /* On the first run, send the "init" command. */
136 buf[0] = 0x10;
137 buf[1] = 0x04;
138 buf[2] = 0x0d;
139 sr_spew("Sending init command: %02x %02x %02x.",
140 buf[0], buf[1], buf[2]);
32c45845
UH
141 if ((ret = serial_write_blocking(serial, buf, 3,
142 serial_timeout(serial, 3))) < 0) {
c073af80
UH
143 sr_err("Error sending init command: %d.", ret);
144 return FALSE;
145 }
146 devc->state = GET_INIT_REPLY;
147 } else if (devc->state == GET_INIT_REPLY) {
148 /* If we just sent the "init" command, get its reply. */
eead2782 149 if ((ret = serial_read_blocking(serial, buf, 2, 0)) < 0) {
c073af80
UH
150 sr_err("Error reading init reply: %d.", ret);
151 return FALSE;
152 }
153 sr_spew("Received init reply: %02x %02x.", buf[0], buf[1]);
154 /* Expected reply: 0x05 0x0d */
155 if (buf[0] != 0x05 || buf[1] != 0x0d) {
156 sr_err("Received incorrect init reply, retrying.");
157 devc->state = SEND_INIT;
158 return TRUE;
159 }
160 devc->state = SEND_PACKET_REQUEST;
161 } else if (devc->state == SEND_PACKET_REQUEST) {
162 /* Request a packet (send 0x30 ZZ 0x0d). */
163 buf[0] = 0x30;
164 buf[1] = 0x00; /* ZZ */
165 buf[2] = 0x0d;
166 sr_spew("Sending data request command: %02x %02x %02x.",
167 buf[0], buf[1], buf[2]);
32c45845
UH
168 if ((ret = serial_write_blocking(serial, buf, 3,
169 serial_timeout(serial, 3))) < 0) {
c073af80
UH
170 sr_err("Error sending request command: %d.", ret);
171 return FALSE;
172 }
173 devc->buflen = 0;
174 devc->state = GET_PACKET;
175 } else if (devc->state == GET_PACKET) {
176 /* Read a packet from the device. */
47d98603 177 ret = serial_read_nonblocking(serial, devc->buf + devc->buflen,
c073af80
UH
178 4 - devc->buflen);
179 if (ret < 0) {
180 sr_err("Error reading packet: %d.", ret);
181 return TRUE;
182 }
183
184 devc->buflen += ret;
185
186 /* Didn't receive all 4 bytes, yet. */
187 if (devc->buflen != 4)
188 return TRUE;
189
190 sr_spew("Received packet: %02x %02x %02x %02x.", devc->buf[0],
191 devc->buf[1], devc->buf[2], devc->buf[3]);
192
193 /* Expected reply: AA BB ZZ+1 0x0d */
194 if (devc->buf[2] != 0x01 || devc->buf[3] != 0x0d) {
195 sr_err("Received incorrect request reply, retrying.");
196 devc->state = SEND_PACKET_REQUEST;
197 return TRUE;
198 }
199
69e19dd7 200 decode_packet(sdi);
c073af80
UH
201
202 devc->state = SEND_PACKET_REQUEST;
203 } else {
204 sr_err("Invalid state: %d.", devc->state);
205 return FALSE;
206 }
aa2af324 207
2630f97e 208 if (sr_sw_limits_check(&devc->limits))
695dc859 209 sdi->driver->dev_acquisition_stop(sdi);
aa2af324
UH
210
211 return TRUE;
212}