sigrok-cross-mingw: Update README.
[sigrok-util.git] / source / drv-api.c
blob3444fd6693b4a7b607340755f360c088a35fe5e4
1 /*
2 * This file is part of the libsigrok project.
4 * Copyright (C) {year} {author} <{email}>
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.
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.
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/>.
20 #include <config.h>
21 #include "protocol.h"
23 static GSList *scan(struct sr_dev_driver *di, GSList *options)
25 struct drv_context *drvc;
26 GSList *devices;
28 (void)options;
30 devices = NULL;
31 drvc = di->context;
32 drvc->instances = NULL;
34 /* TODO: scan for devices, either based on a SR_CONF_CONN option
35 * or on a USB scan. */
37 return devices;
40 static int dev_open(struct sr_dev_inst *sdi)
42 (void)sdi;
44 /* TODO: get handle from sdi->conn and open it. */
46 return SR_OK;
49 static int dev_close(struct sr_dev_inst *sdi)
51 (void)sdi;
53 /* TODO: get handle from sdi->conn and close it. */
55 return SR_OK;
58 static int config_get(uint32_t key, GVariant **data,
59 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
61 int ret;
63 (void)sdi;
64 (void)data;
65 (void)cg;
67 ret = SR_OK;
68 switch (key) {{
69 /* TODO */
70 default:
71 return SR_ERR_NA;
74 return ret;
77 static int config_set(uint32_t key, GVariant *data,
78 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
80 int ret;
82 (void)sdi;
83 (void)data;
84 (void)cg;
86 ret = SR_OK;
87 switch (key) {{
88 /* TODO */
89 default:
90 ret = SR_ERR_NA;
93 return ret;
96 static int config_list(uint32_t key, GVariant **data,
97 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
99 int ret;
101 (void)sdi;
102 (void)data;
103 (void)cg;
105 ret = SR_OK;
106 switch (key) {{
107 /* TODO */
108 default:
109 return SR_ERR_NA;
112 return ret;
115 static int dev_acquisition_start(const struct sr_dev_inst *sdi)
117 /* TODO: configure hardware, reset acquisition state, set up
118 * callbacks and send header packet. */
120 (void)sdi;
122 return SR_OK;
125 static int dev_acquisition_stop(struct sr_dev_inst *sdi)
127 /* TODO: stop acquisition. */
129 (void)sdi;
131 return SR_OK;
134 SR_PRIV struct sr_dev_driver {lib}_driver_info = {{
135 .name = "{short}",
136 .longname = "{name}",
137 .api_version = 1,
138 .init = std_init,
139 .cleanup = std_cleanup,
140 .scan = scan,
141 .dev_list = std_dev_list,
142 .dev_clear = std_dev_clear,
143 .config_get = config_get,
144 .config_set = config_set,
145 .config_list = config_list,
146 .dev_open = dev_open,
147 .dev_close = dev_close,
148 .dev_acquisition_start = dev_acquisition_start,
149 .dev_acquisition_stop = dev_acquisition_stop,
150 .context = NULL,
153 SR_REGISTER_DEV_DRIVER({lib}_driver_info);