]> sigrok.org Git - libsigrok.git/blame - src/hardware/brymen-dmm/api.c
brymen-dmm: style nits, apply comm param defaults, low battery warning
[libsigrok.git] / src / hardware / brymen-dmm / api.c
CommitLineData
20cbc785
AG
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.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
6ec6c43b 20#include <config.h>
20cbc785
AG
21#include "protocol.h"
22
a0e0bb41 23static const uint32_t scanopts[] = {
601fb67c
AG
24 SR_CONF_CONN,
25 SR_CONF_SERIALCOMM,
601fb67c
AG
26};
27
05199c0a 28static const uint32_t drvopts[] = {
601fb67c 29 SR_CONF_MULTIMETER,
05199c0a
UH
30};
31
32static const uint32_t devopts[] = {
601fb67c 33 SR_CONF_CONTINUOUS,
5827f61b
BV
34 SR_CONF_LIMIT_SAMPLES | SR_CONF_SET,
35 SR_CONF_LIMIT_MSEC | SR_CONF_SET,
601fb67c
AG
36};
37
e32862eb
LPC
38static GSList *brymen_scan(struct sr_dev_driver *di, const char *conn,
39 const char *serialcomm)
20cbc785 40{
601fb67c
AG
41 struct sr_dev_inst *sdi;
42 struct dev_context *devc;
601fb67c 43 struct sr_serial_dev_inst *serial;
648f32d1 44 int rts_toggle_delay_us;
601fb67c
AG
45 GSList *devices;
46 int ret;
c5d6f5cc
UH
47 uint8_t buf[128];
48 size_t len;
20cbc785 49
91219afc 50 serial = sr_serial_dev_inst_new(conn, serialcomm);
601fb67c 51
ca4266a0 52 if (serial_open(serial, SERIAL_RDWR) != SR_OK)
601fb67c 53 return NULL;
648f32d1
GS
54 /*
55 * The device requires an RTS *pulse* before communication.
56 * The vendor's documentation recommends the following sequence:
57 * Open the COM port, wait for 100ms, set RTS=1, wait for 100ms,
58 * set RTS=0, wait for 100ms, set RTS=1, configure bitrate and
59 * frame format, transmit request data, receive response data.
60 */
61 rts_toggle_delay_us = 100 * 1000; /* 100ms */
62 g_usleep(rts_toggle_delay_us);
63 serial_set_handshake(serial, 1, -1);
64 g_usleep(rts_toggle_delay_us);
65 serial_set_handshake(serial, 0, -1);
66 g_usleep(rts_toggle_delay_us);
67 serial_set_handshake(serial, 1, -1);
68 g_usleep(rts_toggle_delay_us);
601fb67c
AG
69
70 sr_info("Probing port %s.", conn);
71
72 devices = NULL;
73
74 /* Request reading */
c5d6f5cc
UH
75 if ((ret = brymen_packet_request(serial)) < 0) {
76 sr_err("Unable to send command: %d.", ret);
601fb67c 77 goto scan_cleanup;
20cbc785
AG
78 }
79
00ed77f2 80 len = sizeof(buf);
601fb67c
AG
81 ret = brymen_stream_detect(serial, buf, &len, brymen_packet_length,
82 brymen_packet_is_valid, 1000, 9600);
83 if (ret != SR_OK)
84 goto scan_cleanup;
20cbc785 85
601fb67c
AG
86 sr_info("Found device on port %s.", conn);
87
aac29cc1 88 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
89 sdi->status = SR_ST_INACTIVE;
90 sdi->vendor = g_strdup("Brymen");
91 sdi->model = g_strdup("BM85x");
f57d8ffe 92 devc = g_malloc0(sizeof(struct dev_context));
dcba0c41 93 sr_sw_limits_init(&devc->sw_limits);
d9a7c349
UH
94 sdi->inst_type = SR_INST_SERIAL;
95 sdi->conn = serial;
601fb67c 96 sdi->priv = devc;
5e23fcab 97 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "P1");
601fb67c
AG
98 devices = g_slist_append(devices, sdi);
99
601fb67c
AG
100scan_cleanup:
101 serial_close(serial);
102
15a5bfe4 103 return std_scan_complete(di, devices);
20cbc785
AG
104}
105
4f840ce9 106static GSList *scan(struct sr_dev_driver *di, GSList *options)
20cbc785 107{
601fb67c
AG
108 struct sr_config *src;
109 GSList *devices, *l;
110 const char *conn, *serialcomm;
20cbc785 111
20cbc785 112 devices = NULL;
20cbc785 113
11addc89
GS
114 /*
115 * BEWARE! Default 'conn' is not desirable when the device cannot
116 * reliably get detected. Insist that users specify the port.
117 */
118 conn = NULL;
119 serialcomm = "9600/8n1/dtr=1/rts=1";
601fb67c
AG
120 for (l = options; l; l = l->next) {
121 src = l->data;
122 switch (src->key) {
c5d6f5cc 123 case SR_CONF_CONN:
510b3e69 124 conn = g_variant_get_string(src->data, NULL);
c5d6f5cc
UH
125 break;
126 case SR_CONF_SERIALCOMM:
510b3e69 127 serialcomm = g_variant_get_string(src->data, NULL);
c5d6f5cc 128 break;
601fb67c
AG
129 }
130 }
d9a7c349 131 if (!conn)
601fb67c 132 return NULL;
601fb67c 133
11addc89 134 devices = brymen_scan(di, conn, serialcomm);
20cbc785
AG
135
136 return devices;
137}
138
dd7a72ea
UH
139static int config_set(uint32_t key, GVariant *data,
140 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
20cbc785 141{
601fb67c 142 struct dev_context *devc;
20cbc785 143
53b4680f 144 (void)cg;
8f996b89 145
b0baddef 146 devc = sdi->priv;
601fb67c 147
dcba0c41 148 return sr_sw_limits_config_set(&devc->sw_limits, key, data);
20cbc785
AG
149}
150
dd7a72ea
UH
151static int config_list(uint32_t key, GVariant **data,
152 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
510b3e69 153{
05199c0a 154 return STD_CONFIG_LIST(key, data, sdi, cg, scanopts, drvopts, devopts);
510b3e69
BV
155}
156
695dc859 157static int dev_acquisition_start(const struct sr_dev_inst *sdi)
20cbc785 158{
601fb67c 159 struct dev_context *devc;
d9a7c349 160 struct sr_serial_dev_inst *serial;
601fb67c 161
208c1d35 162 devc = sdi->priv;
601fb67c 163
dcba0c41 164 sr_sw_limits_acquisition_start(&devc->sw_limits);
bee2b016 165 std_session_send_df_header(sdi);
601fb67c 166
d9a7c349 167 serial = sdi->conn;
102f1239
BV
168 serial_source_add(sdi->session, serial, G_IO_IN, 50,
169 brymen_dmm_receive_data, (void *)sdi);
20cbc785
AG
170
171 return SR_OK;
172}
173
dd5c48a6 174static struct sr_dev_driver brymen_bm857_driver_info = {
c5d6f5cc
UH
175 .name = "brymen-bm857",
176 .longname = "Brymen BM857",
20cbc785 177 .api_version = 1,
c2fdcc25 178 .init = std_init,
700d6b64 179 .cleanup = std_cleanup,
6078d2c9 180 .scan = scan,
c01bf34c 181 .dev_list = std_dev_list,
f778bf02 182 .dev_clear = std_dev_clear,
6fab7b8f
UH
183 .config_get = NULL,
184 .config_set = config_set,
185 .config_list = config_list,
854434de 186 .dev_open = std_serial_dev_open,
bf2c987f 187 .dev_close = std_serial_dev_close,
6078d2c9 188 .dev_acquisition_start = dev_acquisition_start,
4b1a9d5d 189 .dev_acquisition_stop = std_serial_dev_acquisition_stop,
41812aca 190 .context = NULL,
20cbc785 191};
dd5c48a6 192SR_REGISTER_DEV_DRIVER(brymen_bm857_driver_info);