]> sigrok.org Git - libsigrok.git/blame - src/hardware/teleinfo/api.c
Don't reset instance list in scan() callback
[libsigrok.git] / src / hardware / teleinfo / api.c
CommitLineData
8e796cb4
AJ
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2013 Aurelien Jacobs <aurel@gnuage.org>
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>
5542bee6
AJ
21#include <stdlib.h>
22#include <glib.h>
c1aae900 23#include <libsigrok/libsigrok.h>
5542bee6 24#include "libsigrok-internal.h"
8e796cb4
AJ
25#include "protocol.h"
26
a0e0bb41 27static const uint32_t scanopts[] = {
5542bee6
AJ
28 SR_CONF_CONN,
29 SR_CONF_SERIALCOMM,
30};
31
f254bc4b 32static const uint32_t devopts[] = {
5542bee6 33 SR_CONF_ENERGYMETER,
5542bee6 34 SR_CONF_CONTINUOUS,
5827f61b
BV
35 SR_CONF_LIMIT_SAMPLES | SR_CONF_SET,
36 SR_CONF_LIMIT_MSEC | SR_CONF_SET,
5542bee6
AJ
37};
38
4f840ce9 39static GSList *scan(struct sr_dev_driver *di, GSList *options)
8e796cb4
AJ
40{
41 struct drv_context *drvc;
5542bee6
AJ
42 struct dev_context *devc;
43 struct sr_serial_dev_inst *serial;
44 struct sr_dev_inst *sdi;
5542bee6
AJ
45 GSList *devices = NULL, *l;
46 const char *conn = NULL, *serialcomm = NULL;
47 uint8_t buf[292];
dafafb0e
UH
48 size_t len;
49 struct sr_config *src;
50
51 len = sizeof(buf);
5542bee6
AJ
52
53 for (l = options; l; l = l->next) {
dafafb0e 54 src = l->data;
5542bee6
AJ
55 switch (src->key) {
56 case SR_CONF_CONN:
57 conn = g_variant_get_string(src->data, NULL);
58 break;
59 case SR_CONF_SERIALCOMM:
60 serialcomm = g_variant_get_string(src->data, NULL);
61 break;
62 }
63 }
64 if (!conn)
65 return NULL;
66 if (!serialcomm)
67 serialcomm = "1200/7e1";
68
91219afc
UH
69 serial = sr_serial_dev_inst_new(conn, serialcomm);
70
9333691a 71 if (serial_open(serial, SERIAL_RDONLY) != SR_OK)
5542bee6 72 return NULL;
8e796cb4 73
5542bee6 74 sr_info("Probing serial port %s.", conn);
8e796cb4 75
41812aca 76 drvc = di->context;
5542bee6
AJ
77 serial_flush(serial);
78
79 /* Let's get a bit of data and see if we can find a packet. */
80 if (serial_stream_detect(serial, buf, &len, len,
81 teleinfo_packet_valid, 3000, 1200) != SR_OK)
82 goto scan_cleanup;
83
84 sr_info("Found device on port %s.", conn);
85
aac29cc1 86 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
87 sdi->status = SR_ST_INACTIVE;
88 sdi->vendor = g_strdup("EDF");
89 sdi->model = g_strdup("Teleinfo");
f57d8ffe 90 devc = g_malloc0(sizeof(struct dev_context));
5542bee6 91 devc->optarif = teleinfo_get_optarif(buf);
5542bee6
AJ
92 sdi->inst_type = SR_INST_SERIAL;
93 sdi->conn = serial;
94 sdi->priv = devc;
95 sdi->driver = di;
96
5e23fcab 97 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "P");
5542bee6
AJ
98
99 if (devc->optarif == OPTARIF_BASE) {
5e23fcab 100 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "BASE");
5542bee6 101 } else if (devc->optarif == OPTARIF_HC) {
5e23fcab
ML
102 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "HP");
103 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "HC");
5542bee6 104 } else if (devc->optarif == OPTARIF_EJP) {
5e23fcab
ML
105 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "HN");
106 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "HPM");
5542bee6 107 } else if (devc->optarif == OPTARIF_BBR) {
5e23fcab
ML
108 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "HPJB");
109 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "HPJW");
110 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "HPJR");
111 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "HCJB");
112 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "HCJW");
113 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "HCJR");
5542bee6
AJ
114 }
115
5e23fcab
ML
116 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "IINST");
117 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "PAPP");
5542bee6
AJ
118
119 drvc->instances = g_slist_append(drvc->instances, sdi);
120 devices = g_slist_append(devices, sdi);
121
122scan_cleanup:
123 serial_close(serial);
8e796cb4
AJ
124
125 return devices;
126}
127
584560f1 128static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 129 const struct sr_channel_group *cg)
8e796cb4 130{
5542bee6 131 struct dev_context *devc;
8e796cb4 132
53b4680f 133 (void)cg;
d3c74a6f 134
8e796cb4
AJ
135 if (sdi->status != SR_ST_ACTIVE)
136 return SR_ERR_DEV_CLOSED;
137
b0baddef 138 devc = sdi->priv;
5542bee6 139
ffa5f177 140 return sr_sw_limits_config_set(&devc->sw_limits, key, data);
8e796cb4
AJ
141}
142
584560f1 143static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 144 const struct sr_channel_group *cg)
8e796cb4 145{
8e796cb4 146 (void)sdi;
53b4680f 147 (void)cg;
8e796cb4 148
8e796cb4 149 switch (key) {
5542bee6 150 case SR_CONF_SCAN_OPTIONS:
584560f1 151 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
a0e0bb41 152 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
5542bee6
AJ
153 break;
154 case SR_CONF_DEVICE_OPTIONS:
584560f1 155 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
f254bc4b 156 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
5542bee6 157 break;
8e796cb4
AJ
158 default:
159 return SR_ERR_NA;
160 }
161
5542bee6 162 return SR_OK;
8e796cb4
AJ
163}
164
695dc859 165static int dev_acquisition_start(const struct sr_dev_inst *sdi)
8e796cb4 166{
5542bee6
AJ
167 struct sr_serial_dev_inst *serial = sdi->conn;
168 struct dev_context *devc;
8e796cb4
AJ
169
170 if (sdi->status != SR_ST_ACTIVE)
171 return SR_ERR_DEV_CLOSED;
172
208c1d35 173 devc = sdi->priv;
8e796cb4 174
ffa5f177 175 sr_sw_limits_acquisition_start(&devc->sw_limits);
8e796cb4 176
695dc859 177 std_session_send_df_header(sdi, LOG_PREFIX);
8e796cb4 178
5542bee6 179 /* Poll every 50ms, or whenever some data comes in. */
102f1239
BV
180 serial_source_add(sdi->session, serial, G_IO_IN, 50,
181 teleinfo_receive_data, (void *)sdi);
8e796cb4
AJ
182
183 return SR_OK;
184}
185
695dc859 186static int dev_acquisition_stop(struct sr_dev_inst *sdi)
5542bee6 187{
6525d819 188 return std_serial_dev_acquisition_stop(sdi,
dafafb0e 189 std_serial_dev_close, sdi->conn, LOG_PREFIX);
5542bee6
AJ
190}
191
dd5c48a6 192static struct sr_dev_driver teleinfo_driver_info = {
8e796cb4
AJ
193 .name = "teleinfo",
194 .longname = "Teleinfo",
195 .api_version = 1,
c2fdcc25 196 .init = std_init,
700d6b64 197 .cleanup = std_cleanup,
8e796cb4 198 .scan = scan,
c01bf34c 199 .dev_list = std_dev_list,
a6630742 200 .dev_clear = NULL,
dafafb0e 201 .config_get = NULL,
8e796cb4
AJ
202 .config_set = config_set,
203 .config_list = config_list,
854434de 204 .dev_open = std_serial_dev_open,
bf2c987f 205 .dev_close = std_serial_dev_close,
8e796cb4
AJ
206 .dev_acquisition_start = dev_acquisition_start,
207 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 208 .context = NULL,
8e796cb4 209};
dd5c48a6 210SR_REGISTER_DEV_DRIVER(teleinfo_driver_info);