src/hardware/demo/protocol.c \
src/hardware/demo/api.c
endif
-if HW_DEREE_DE5000
-src_libdrivers_la_SOURCES += \
- src/hardware/deree-de5000/api.c
-endif
if HW_FLUKE_DMM
src_libdrivers_la_SOURCES += \
src/hardware/fluke-dmm/protocol.h \
src/hardware/serial-dmm/protocol.c \
src/hardware/serial-dmm/api.c
endif
+if HW_SERIAL_LCR
+src_libdrivers_la_SOURCES += \
+ src/hardware/serial-lcr/api.c
+endif
if HW_SYSCLK_LWLA
src_libdrivers_la_SOURCES += \
src/hardware/sysclk-lwla/lwla.h \
SR_DRIVER([ChronoVu LA], [chronovu-la], [libusb libftdi])
SR_DRIVER([Colead SLM], [colead-slm], [libserialport])
SR_DRIVER([Conrad DIGI 35 CPU], [conrad-digi-35-cpu], [libserialport])
-SR_DRIVER([DER EE DE-5000], [deree-de5000], [libserialport])
SR_DRIVER([demo], [demo])
SR_DRIVER([Fluke DMM], [fluke-dmm], [libserialport])
SR_DRIVER([FTDI LA], [ftdi-la], [libusb libftdi])
SR_DRIVER([Saleae Logic16], [saleae-logic16], [libusb])
SR_DRIVER([SCPI PPS], [scpi-pps])
SR_DRIVER([serial DMM], [serial-dmm], [libserialport])
+SR_DRIVER([serial LCR], [serial-lcr], [libserialport])
SR_DRIVER([Sysclk LWLA], [sysclk-lwla], [libusb])
SR_DRIVER([Teleinfo], [teleinfo], [libserialport])
SR_DRIVER([Testo], [testo], [libusb])
+++ /dev/null
-/*
- * This file is part of the libsigrok project.
- *
- * Copyright (C) 2014 Janne Huttunen <jahuttun@gmail.com>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include <config.h>
-#include <stdint.h>
-#include <string.h>
-#include <math.h>
-#include <glib.h>
-#include <libsigrok/libsigrok.h>
-#include "libsigrok-internal.h"
-
-#define LOG_PREFIX "serial-lcr-es51919"
-
-struct lcr_es51919_info {
- struct sr_dev_driver di;
- const char *vendor;
- const char *model;
-};
-
-static int dev_clear(const struct sr_dev_driver *di)
-{
- return std_dev_clear(di, es51919_serial_clean);
-}
-
-static GSList *scan(struct sr_dev_driver *di, GSList *options)
-{
- struct lcr_es51919_info *lcr;
- struct sr_dev_inst *sdi;
-
- lcr = (struct lcr_es51919_info *)di;
-
- if (!(sdi = es51919_serial_scan(options, lcr->vendor, lcr->model)))
- return NULL;
-
- return std_scan_complete(di, g_slist_append(NULL, sdi));
-}
-
-#define LCR_ES51919(id, vendor, model) \
- &((struct lcr_es51919_info) { \
- { \
- .name = id, \
- .longname = vendor " " model, \
- .api_version = 1, \
- .init = std_init, \
- .cleanup = std_cleanup, \
- .scan = scan, \
- .dev_list = std_dev_list, \
- .dev_clear = dev_clear, \
- .config_get = es51919_serial_config_get, \
- .config_set = es51919_serial_config_set, \
- .config_list = es51919_serial_config_list, \
- .dev_open = std_serial_dev_open, \
- .dev_close = std_serial_dev_close, \
- .dev_acquisition_start = es51919_serial_acquisition_start, \
- .dev_acquisition_stop = std_serial_dev_acquisition_stop, \
- .context = NULL, \
- }, \
- vendor, model, \
- }).di
-
-SR_REGISTER_DEV_DRIVER_LIST(lcr_es51919_drivers,
- LCR_ES51919("deree-de5000", "DER EE", "DE-5000"),
- LCR_ES51919("peaktech-2170", "PeakTech", "2170"),
-);
--- /dev/null
+/*
+ * This file is part of the libsigrok project.
+ *
+ * Copyright (C) 2014 Janne Huttunen <jahuttun@gmail.com>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include <config.h>
+#include <stdint.h>
+#include <string.h>
+#include <math.h>
+#include <glib.h>
+#include <libsigrok/libsigrok.h>
+#include "libsigrok-internal.h"
+
+#define LOG_PREFIX "serial-lcr-es51919"
+
+struct lcr_es51919_info {
+ struct sr_dev_driver di;
+ const char *vendor;
+ const char *model;
+};
+
+static int dev_clear(const struct sr_dev_driver *di)
+{
+ return std_dev_clear(di, es51919_serial_clean);
+}
+
+static GSList *scan(struct sr_dev_driver *di, GSList *options)
+{
+ struct lcr_es51919_info *lcr;
+ struct sr_dev_inst *sdi;
+
+ lcr = (struct lcr_es51919_info *)di;
+
+ if (!(sdi = es51919_serial_scan(options, lcr->vendor, lcr->model)))
+ return NULL;
+
+ return std_scan_complete(di, g_slist_append(NULL, sdi));
+}
+
+#define LCR_ES51919(id, vendor, model) \
+ &((struct lcr_es51919_info) { \
+ { \
+ .name = id, \
+ .longname = vendor " " model, \
+ .api_version = 1, \
+ .init = std_init, \
+ .cleanup = std_cleanup, \
+ .scan = scan, \
+ .dev_list = std_dev_list, \
+ .dev_clear = dev_clear, \
+ .config_get = es51919_serial_config_get, \
+ .config_set = es51919_serial_config_set, \
+ .config_list = es51919_serial_config_list, \
+ .dev_open = std_serial_dev_open, \
+ .dev_close = std_serial_dev_close, \
+ .dev_acquisition_start = es51919_serial_acquisition_start, \
+ .dev_acquisition_stop = std_serial_dev_acquisition_stop, \
+ .context = NULL, \
+ }, \
+ vendor, model, \
+ }).di
+
+SR_REGISTER_DEV_DRIVER_LIST(lcr_es51919_drivers,
+ LCR_ES51919("deree-de5000", "DER EE", "DE-5000"),
+ LCR_ES51919("peaktech-2170", "PeakTech", "2170"),
+);