]> sigrok.org Git - libsigrok.git/blame - src/hardware/deree-de5000/api.c
Introduce standard cleanup helper
[libsigrok.git] / src / hardware / deree-de5000 / api.c
CommitLineData
b5089195
JH
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2014 Janne Huttunen <jahuttun@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>
b5089195
JH
21#include <stdint.h>
22#include <string.h>
23#include <math.h>
24#include <glib.h>
c1aae900 25#include <libsigrok/libsigrok.h>
b5089195
JH
26#include "libsigrok-internal.h"
27
28static void std_dev_attach(struct sr_dev_driver *di, struct sr_dev_inst *sdi)
29{
30 struct drv_context *drvc;
31
41812aca 32 drvc = di->context;
b5089195
JH
33
34 sdi->driver = di;
35 drvc->instances = g_slist_append(drvc->instances, sdi);
36}
37
4f840ce9 38static GSList *dev_list(const struct sr_dev_driver *di)
b5089195 39{
41812aca 40 return ((struct drv_context *)di->context)->instances;
b5089195
JH
41}
42
43#define LOG_PREFIX "deree-de5000"
44
45SR_PRIV struct sr_dev_driver deree_de5000_driver_info;
46
4f840ce9 47static int init(struct sr_dev_driver *di, struct sr_context *sr_ctx)
b5089195 48{
4f840ce9 49 return std_init(sr_ctx, di, LOG_PREFIX);
b5089195
JH
50}
51
696b79d2 52static int dev_clear(const struct sr_dev_driver *di)
b5089195 53{
4f840ce9 54 return std_dev_clear(di, es51919_serial_clean);
b5089195
JH
55}
56
4f840ce9 57static GSList *scan(struct sr_dev_driver *di, GSList *options)
b5089195
JH
58{
59 struct sr_dev_inst *sdi;
60
61 if (!(sdi = es51919_serial_scan(options, "DER EE", "DE-5000")))
62 return NULL;
63
4f840ce9 64 std_dev_attach(di, sdi);
b5089195
JH
65
66 return g_slist_append(NULL, sdi);
67}
68
b5089195
JH
69SR_PRIV struct sr_dev_driver deree_de5000_driver_info = {
70 .name = "deree-de5000",
71 .longname = "DER EE DE-5000",
72 .api_version = 1,
73 .init = init,
700d6b64 74 .cleanup = std_cleanup,
b5089195
JH
75 .scan = scan,
76 .dev_list = dev_list,
696b79d2 77 .dev_clear = dev_clear,
b5089195
JH
78 .config_get = es51919_serial_config_get,
79 .config_set = es51919_serial_config_set,
80 .config_list = es51919_serial_config_list,
81 .dev_open = std_serial_dev_open,
82 .dev_close = std_serial_dev_close,
83 .dev_acquisition_start = es51919_serial_acquisition_start,
84 .dev_acquisition_stop = es51919_serial_acquisition_stop,
41812aca 85 .context = NULL,
b5089195 86};