]> sigrok.org Git - libsigrok.git/commitdiff
yokogawa-dlm: Integrate driver skeleton
authorSoeren Apel <redacted>
Mon, 25 Aug 2014 11:09:42 +0000 (13:09 +0200)
committerSoeren Apel <redacted>
Sat, 30 Aug 2014 22:42:10 +0000 (00:42 +0200)
Makefile.am
README.devices
configure.ac
src/drivers.c
src/hardware/yokogawa-dlm/api.c [new file with mode: 0644]
src/hardware/yokogawa-dlm/protocol.c [new file with mode: 0644]
src/hardware/yokogawa-dlm/protocol.h [new file with mode: 0644]
src/hardware/yokogawa-dlm/protocol_wrappers.c [new file with mode: 0644]
src/hardware/yokogawa-dlm/protocol_wrappers.h [new file with mode: 0644]

index 56d6230c9f8478467f46e874fa012216cd11df67..3087649cdb93bb5e3fe3dfd12572481543d1418d 100644 (file)
@@ -332,6 +332,14 @@ libsigrok_la_SOURCES += \
        src/hardware/victor-dmm/protocol.c \
        src/hardware/victor-dmm/api.c
 endif
+if HW_YOKOGAWA_DLM
+libsigrok_la_SOURCES += \
+       src/hardware/yokogawa-dlm/protocol.h \
+       src/hardware/yokogawa-dlm/protocol.c \
+       src/hardware/yokogawa-dlm/protocol_wrappers.h \
+       src/hardware/yokogawa-dlm/protocol_wrappers.c \
+       src/hardware/yokogawa-dlm/api.c
+endif
 if HW_ZEROPLUS_LOGIC_CUBE
 libsigrok_la_SOURCES += \
        src/hardware/zeroplus-logic-cube/analyzer.c \
index 0f089f105e31effdcd88226fa8fe9404ce4a5ebc..1ea445bc23b07011865849128f04a978528f951b 100644 (file)
@@ -83,6 +83,7 @@ The following drivers/devices do not need any firmware upload:
  - uni-t-dmm (including all subdrivers)
  - uni-t-ut32x
  - victor-dmm
+ - yokogawa-dlm
  - zeroplus-logic-cube
 
 
@@ -141,6 +142,7 @@ The following drivers/devices do not require a serial port specification:
  - uni-t-dmm (including all subdrivers)
  - uni-t-ut32x
  - victor-dmm
+ - yokogawa-dlm (USBTMC or TCP)
  - zeroplus-logic-cube
 
 
index d5a9e896f880e60165159964dda744c5885fb60f..a60450cd1cc2c599d4e6389364bdd3ff3534f1da 100644 (file)
@@ -140,6 +140,7 @@ DRIVER([Tondaj SL-814], [tondaj-sl-814])
 DRIVER([UNI-T DMM], [uni-t-dmm])
 DRIVER([UNI-T UT32x], [uni-t-ut32x])
 DRIVER([Victor DMM], [victor-dmm])
+DRIVER([Yokogawa DL/DLM], [yokogawa-dlm])
 DRIVER([ZEROPLUS Logic Cube], [zeroplus-logic-cube])
 
 AC_ARG_ENABLE(libserialport,
@@ -638,6 +639,11 @@ if test "x$HW_VICTOR_DMM" = "xyes"; then
        AC_DEFINE(HAVE_HW_VICTOR_DMM, 1, [Victor DMM support])
 fi
 
+AM_CONDITIONAL(HW_YOKOGAWA_DLM, test x$HW_YOKOGAWA_DLM = xyes)
+if test "x$HW_YOKOGAWA_DLM" = "xyes"; then
+       AC_DEFINE(HAVE_HW_YOKOGAWA_DLM, 1, [Yokogawa DL/DLM support])
+fi
+
 AM_CONDITIONAL(HW_ZEROPLUS_LOGIC_CUBE, test x$HW_ZEROPLUS_LOGIC_CUBE = xyes)
 if test "x$HW_ZEROPLUS_LOGIC_CUBE" = "xyes"; then
        AC_DEFINE(HAVE_HW_ZEROPLUS_LOGIC_CUBE, 1, [ZEROPLUS Logic Cube support])
index 14936789c5c96c77a29f00d0cbc27484122a55ef..ff13f9125708b37d7b0814692ee0e7ef1a2a74da 100644 (file)
@@ -187,6 +187,9 @@ extern SR_PRIV struct sr_dev_driver uni_t_ut32x_driver_info;
 #ifdef HAVE_HW_VICTOR_DMM
 extern SR_PRIV struct sr_dev_driver victor_dmm_driver_info;
 #endif
+#ifdef HAVE_HW_YOKOGAWA_DLM
+extern SR_PRIV struct sr_dev_driver yokogawa_dlm_driver_info;
+#endif
 #ifdef HAVE_HW_ZEROPLUS_LOGIC_CUBE
 extern SR_PRIV struct sr_dev_driver zeroplus_logic_cube_driver_info;
 #endif
@@ -358,6 +361,9 @@ SR_PRIV struct sr_dev_driver *drivers_list[] = {
 #ifdef HAVE_HW_VICTOR_DMM
        &victor_dmm_driver_info,
 #endif
+#ifdef HAVE_HW_YOKOGAWA_DLM
+       &yokogawa_dlm_driver_info,
+#endif
 #ifdef HAVE_HW_ZEROPLUS_LOGIC_CUBE
        &zeroplus_logic_cube_driver_info,
 #endif
diff --git a/src/hardware/yokogawa-dlm/api.c b/src/hardware/yokogawa-dlm/api.c
new file mode 100644 (file)
index 0000000..614c4a7
--- /dev/null
@@ -0,0 +1,42 @@
+/*
+ * This file is part of the libsigrok project.
+ *
+ * Copyright (C) 2014 abraxa (Soeren Apel) <soeren@apelpie.net>
+ * Based on the Hameg HMO driver by poljar (Damir Jelić) <poljarinho@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 <stdlib.h>
+#include "protocol.h"
+
+
+SR_PRIV struct sr_dev_driver yokogawa_dlm_driver_info = {
+       .name = "yokogawa-dlm",
+       .longname = "Yokogawa DL/DLM driver",
+       .api_version = 1,
+       .init = NULL,
+       .cleanup = NULL,
+       .scan = NULL,
+       .dev_list = NULL,
+       .dev_clear = NULL,
+       .config_get = NULL,
+       .config_set = NULL,
+       .config_list = NULL,
+       .dev_open = NULL,
+       .dev_close = NULL,
+       .dev_acquisition_start = NULL,
+       .dev_acquisition_stop = NULL,
+       .priv = NULL,
+};
diff --git a/src/hardware/yokogawa-dlm/protocol.c b/src/hardware/yokogawa-dlm/protocol.c
new file mode 100644 (file)
index 0000000..1849b8b
--- /dev/null
@@ -0,0 +1,22 @@
+/*
+ * This file is part of the libsigrok project.
+ *
+ * Copyright (C) 2014 abraxa (Soeren Apel) <soeren@apelpie.net>
+ * Based on the Hameg HMO driver by poljar (Damir Jelić) <poljarinho@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 "protocol.h"
+
diff --git a/src/hardware/yokogawa-dlm/protocol.h b/src/hardware/yokogawa-dlm/protocol.h
new file mode 100644 (file)
index 0000000..dc8ac25
--- /dev/null
@@ -0,0 +1,30 @@
+/*
+ * This file is part of the libsigrok project.
+ *
+ * Copyright (C) 2014 abraxa (Soeren Apel) <soeren@apelpie.net>
+ * Based on the Hameg HMO driver by poljar (Damir Jelić) <poljarinho@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/>.
+ */
+
+#ifndef LIBSIGROK_HARDWARE_YOKOGAWA_DLM_PROTOCOL_H
+#define LIBSIGROK_HARDWARE_YOKOGAWA_DLM_PROTOCOL_H
+
+#include <glib.h>
+#include <stdint.h>
+#include <string.h>
+#include "libsigrok.h"
+#include "libsigrok-internal.h"
+
+#endif
diff --git a/src/hardware/yokogawa-dlm/protocol_wrappers.c b/src/hardware/yokogawa-dlm/protocol_wrappers.c
new file mode 100644 (file)
index 0000000..5359946
--- /dev/null
@@ -0,0 +1,21 @@
+/*
+ * This file is part of the libsigrok project.
+ *
+ * Copyright (C) 2014 abraxa (Soeren Apel) <soeren@apelpie.net>
+ *
+ * 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 "protocol_wrappers.h"
+
diff --git a/src/hardware/yokogawa-dlm/protocol_wrappers.h b/src/hardware/yokogawa-dlm/protocol_wrappers.h
new file mode 100644 (file)
index 0000000..40fb830
--- /dev/null
@@ -0,0 +1,30 @@
+/*
+ * This file is part of the libsigrok project.
+ *
+ * Copyright (C) 2014 abraxa (Soeren Apel) <soeren@apelpie.net>
+ *
+ * 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/>.
+ */
+
+#ifndef LIBSIGROK_HARDWARE_YOKOGAWA_DLM_PROTOCOL_WRAPPERS_H
+#define LIBSIGROK_HARDWARE_YOKOGAWA_DLM_PROTOCOL_WRAPPERS_H
+
+#include <glib.h>
+#include <stdint.h>
+#include <string.h>
+#include "libsigrok.h"
+#include "libsigrok-internal.h"
+#include "protocol.h"
+
+#endif