]> sigrok.org Git - libsigrok.git/blame - src/hardware/teleinfo/api.c
uni-t-ut181a: silence compiler warning, use of uninitialized variable
[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
05199c0a 32static const uint32_t drvopts[] = {
5542bee6 33 SR_CONF_ENERGYMETER,
05199c0a
UH
34};
35
36static const uint32_t devopts[] = {
5542bee6 37 SR_CONF_CONTINUOUS,
5827f61b
BV
38 SR_CONF_LIMIT_SAMPLES | SR_CONF_SET,
39 SR_CONF_LIMIT_MSEC | SR_CONF_SET,
5542bee6
AJ
40};
41
4f840ce9 42static GSList *scan(struct sr_dev_driver *di, GSList *options)
8e796cb4 43{
5542bee6
AJ
44 struct dev_context *devc;
45 struct sr_serial_dev_inst *serial;
46 struct sr_dev_inst *sdi;
5542bee6
AJ
47 GSList *devices = NULL, *l;
48 const char *conn = NULL, *serialcomm = NULL;
49 uint8_t buf[292];
dafafb0e
UH
50 size_t len;
51 struct sr_config *src;
52
53 len = sizeof(buf);
5542bee6
AJ
54
55 for (l = options; l; l = l->next) {
dafafb0e 56 src = l->data;
5542bee6
AJ
57 switch (src->key) {
58 case SR_CONF_CONN:
59 conn = g_variant_get_string(src->data, NULL);
60 break;
61 case SR_CONF_SERIALCOMM:
62 serialcomm = g_variant_get_string(src->data, NULL);
63 break;
64 }
65 }
66 if (!conn)
67 return NULL;
68 if (!serialcomm)
69 serialcomm = "1200/7e1";
70
91219afc
UH
71 serial = sr_serial_dev_inst_new(conn, serialcomm);
72
9333691a 73 if (serial_open(serial, SERIAL_RDONLY) != SR_OK)
5542bee6 74 return NULL;
8e796cb4 75
5542bee6 76 sr_info("Probing serial port %s.", conn);
8e796cb4 77
5542bee6
AJ
78 /* Let's get a bit of data and see if we can find a packet. */
79 if (serial_stream_detect(serial, buf, &len, len,
1a7adeac 80 teleinfo_packet_valid, NULL, NULL, 3000) != SR_OK)
5542bee6
AJ
81 goto scan_cleanup;
82
83 sr_info("Found device on port %s.", conn);
84
aac29cc1 85 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
86 sdi->status = SR_ST_INACTIVE;
87 sdi->vendor = g_strdup("EDF");
88 sdi->model = g_strdup("Teleinfo");
f57d8ffe 89 devc = g_malloc0(sizeof(struct dev_context));
5542bee6 90 devc->optarif = teleinfo_get_optarif(buf);
5542bee6
AJ
91 sdi->inst_type = SR_INST_SERIAL;
92 sdi->conn = serial;
93 sdi->priv = devc;
5542bee6 94
5e23fcab 95 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "P");
5542bee6
AJ
96
97 if (devc->optarif == OPTARIF_BASE) {
5e23fcab 98 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "BASE");
5542bee6 99 } else if (devc->optarif == OPTARIF_HC) {
5e23fcab
ML
100 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "HP");
101 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "HC");
5542bee6 102 } else if (devc->optarif == OPTARIF_EJP) {
5e23fcab
ML
103 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "HN");
104 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "HPM");
5542bee6 105 } else if (devc->optarif == OPTARIF_BBR) {
5e23fcab
ML
106 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "HPJB");
107 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "HPJW");
108 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "HPJR");
109 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "HCJB");
110 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "HCJW");
111 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "HCJR");
5542bee6
AJ
112 }
113
5e23fcab
ML
114 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "IINST");
115 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "PAPP");
5542bee6 116
5542bee6
AJ
117 devices = g_slist_append(devices, sdi);
118
119scan_cleanup:
120 serial_close(serial);
8e796cb4 121
15a5bfe4 122 return std_scan_complete(di, devices);
8e796cb4
AJ
123}
124
dd7a72ea
UH
125static int config_set(uint32_t key, GVariant *data,
126 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
8e796cb4 127{
5542bee6 128 struct dev_context *devc;
8e796cb4 129
53b4680f 130 (void)cg;
d3c74a6f 131
b0baddef 132 devc = sdi->priv;
5542bee6 133
ffa5f177 134 return sr_sw_limits_config_set(&devc->sw_limits, key, data);
8e796cb4
AJ
135}
136
dd7a72ea
UH
137static int config_list(uint32_t key, GVariant **data,
138 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
8e796cb4 139{
05199c0a 140 return STD_CONFIG_LIST(key, data, sdi, cg, scanopts, drvopts, devopts);
8e796cb4
AJ
141}
142
695dc859 143static int dev_acquisition_start(const struct sr_dev_inst *sdi)
8e796cb4 144{
5542bee6
AJ
145 struct sr_serial_dev_inst *serial = sdi->conn;
146 struct dev_context *devc;
8e796cb4 147
208c1d35 148 devc = sdi->priv;
8e796cb4 149
ffa5f177 150 sr_sw_limits_acquisition_start(&devc->sw_limits);
8e796cb4 151
bee2b016 152 std_session_send_df_header(sdi);
8e796cb4 153
102f1239
BV
154 serial_source_add(sdi->session, serial, G_IO_IN, 50,
155 teleinfo_receive_data, (void *)sdi);
8e796cb4
AJ
156
157 return SR_OK;
158}
159
dd5c48a6 160static struct sr_dev_driver teleinfo_driver_info = {
8e796cb4
AJ
161 .name = "teleinfo",
162 .longname = "Teleinfo",
163 .api_version = 1,
c2fdcc25 164 .init = std_init,
700d6b64 165 .cleanup = std_cleanup,
8e796cb4 166 .scan = scan,
c01bf34c 167 .dev_list = std_dev_list,
f778bf02 168 .dev_clear = std_dev_clear,
dafafb0e 169 .config_get = NULL,
8e796cb4
AJ
170 .config_set = config_set,
171 .config_list = config_list,
854434de 172 .dev_open = std_serial_dev_open,
bf2c987f 173 .dev_close = std_serial_dev_close,
8e796cb4 174 .dev_acquisition_start = dev_acquisition_start,
4b1a9d5d 175 .dev_acquisition_stop = std_serial_dev_acquisition_stop,
41812aca 176 .context = NULL,
8e796cb4 177};
dd5c48a6 178SR_REGISTER_DEV_DRIVER(teleinfo_driver_info);