diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2023-08-15 10:05:09 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2023-08-15 10:05:09 +0200 |
commit | 738a1e859737458d3ee9c5a8e92655bdd107a07e (patch) | |
tree | a14f2d3d4800734b77e4fc530b0eef71f2738328 /src/output/Dexter.h | |
parent | 0887d7e859605fad9617681695e70e3ef738a19c (diff) | |
download | dabmod-738a1e859737458d3ee9c5a8e92655bdd107a07e.tar.gz dabmod-738a1e859737458d3ee9c5a8e92655bdd107a07e.tar.bz2 dabmod-738a1e859737458d3ee9c5a8e92655bdd107a07e.zip |
Revert "DEXTER: Add pacontrol interface"
This reverts commit 150b75b244602c789934f1a5094f33aa7da3c09a.
Diffstat (limited to 'src/output/Dexter.h')
-rw-r--r-- | src/output/Dexter.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/src/output/Dexter.h b/src/output/Dexter.h index 57b9798..d4f425f 100644 --- a/src/output/Dexter.h +++ b/src/output/Dexter.h @@ -34,14 +34,8 @@ DESCRIPTION: # include <config.h> #endif -#if defined(HAVE_DEXTER) - -#if !defined(HAVE_ZEROMQ) -#error "ZeroMQ is mandatory for DEXTER" -#endif - +#ifdef HAVE_DEXTER #include "iio.h" -#include "zmq.hpp" #include <string> #include <memory> @@ -126,12 +120,6 @@ class Dexter : public Output::SDRDevice size_t num_buffers_pushed = 0; - /* Communication with pacontrol */ - zmq::context_t m_zmq_context; - zmq::socket_t m_zmq_sock; - std::string m_pacontrol_endpoint; - - /* Clock State */ DexterClockState m_clock_state = DexterClockState::Startup; // Only valid when m_clock_state is not Startup |