summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/CMakeLists.txt27
-rw-r--r--include/iqbalance_api.h33
-rw-r--r--include/iqbalance_fix_cc.h65
-rw-r--r--include/iqbalance_optimize_c.h69
4 files changed, 194 insertions, 0 deletions
diff --git a/include/CMakeLists.txt b/include/CMakeLists.txt
new file mode 100644
index 0000000..6dcb4a6
--- /dev/null
+++ b/include/CMakeLists.txt
@@ -0,0 +1,27 @@
+# Copyright 2011 Free Software Foundation, Inc.
+#
+# This file is part of GNU Radio
+#
+# GNU Radio 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, or (at your option)
+# any later version.
+#
+# GNU Radio 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 GNU Radio; see the file COPYING. If not, write to
+# the Free Software Foundation, Inc., 51 Franklin Street,
+# Boston, MA 02110-1301, USA.
+
+########################################################################
+# Install public header files
+########################################################################
+install(FILES
+ iqbalance_api.h
+ iqbalance_fix_cc.h
+ iqbalance_optimize_c.h DESTINATION include/iqbalance
+)
diff --git a/include/iqbalance_api.h b/include/iqbalance_api.h
new file mode 100644
index 0000000..f225399
--- /dev/null
+++ b/include/iqbalance_api.h
@@ -0,0 +1,33 @@
+/*
+ * Copyright 2011 Free Software Foundation, Inc.
+ *
+ * This file is part of GNU Radio
+ *
+ * GNU Radio 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, or (at your option)
+ * any later version.
+ *
+ * GNU Radio 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 GNU Radio; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Street,
+ * Boston, MA 02110-1301, USA.
+ */
+
+#ifndef INCLUDED_IQBALANCE_API_H
+#define INCLUDED_IQBALANCE_API_H
+
+#include <gruel/attributes.h>
+
+#ifdef gnuradio_iqbalance_EXPORTS
+# define IQBALANCE_API __GR_ATTR_EXPORT
+#else
+# define IQBALANCE_API __GR_ATTR_IMPORT
+#endif
+
+#endif /* INCLUDED_IQBALANCE_API_H */
diff --git a/include/iqbalance_fix_cc.h b/include/iqbalance_fix_cc.h
new file mode 100644
index 0000000..c858e19
--- /dev/null
+++ b/include/iqbalance_fix_cc.h
@@ -0,0 +1,65 @@
+/* -*- c++ -*- */
+/*
+ * Copyright 2013 Sylvain Munaut <tnt@246tNt.com>
+ *
+ * This 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, or (at your option)
+ * any later version.
+ *
+ * This software 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 software; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Street,
+ * Boston, MA 02110-1301, USA.
+ */
+
+
+#ifndef INCLUDED_IQBALANCE_FIX_CC_H
+#define INCLUDED_IQBALANCE_FIX_CC_H
+
+#include <iqbalance_api.h>
+#include <gr_sync_block.h>
+
+class iqbalance_fix_cc;
+
+typedef boost::shared_ptr<iqbalance_fix_cc> iqbalance_fix_cc_sptr;
+
+IQBALANCE_API iqbalance_fix_cc_sptr iqbalance_make_fix_cc (float mag=0.0f, float phase=0.0f);
+
+/*!
+ * \brief <+description+>
+ * \ingroup block
+ *
+ */
+class IQBALANCE_API iqbalance_fix_cc : public gr_sync_block
+{
+ private:
+ friend IQBALANCE_API iqbalance_fix_cc_sptr iqbalance_make_fix_cc (float mag, float phase);
+
+ iqbalance_fix_cc(float mag, float phase);
+
+ float d_mag, d_phase;
+
+ public:
+ ~iqbalance_fix_cc();
+
+ void set_mag(float mag) { this->d_mag = mag; }
+ void set_phase(float phase) { this->d_phase = phase; }
+
+ const float mag() const { return this->d_mag; }
+ const float phase() const { return this->d_phase; }
+
+ void apply_new_corrections (pmt::pmt_t msg);
+
+ int work (int noutput_items,
+ gr_vector_const_void_star &input_items,
+ gr_vector_void_star &output_items);
+};
+
+#endif /* INCLUDED_IQBALANCE_FIX_CC_H */
+
diff --git a/include/iqbalance_optimize_c.h b/include/iqbalance_optimize_c.h
new file mode 100644
index 0000000..4571da6
--- /dev/null
+++ b/include/iqbalance_optimize_c.h
@@ -0,0 +1,69 @@
+/* -*- c++ -*- */
+/*
+ * Copyright 2013 Sylvain Munaut <tnt@246tNt.com>
+ *
+ * This 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, or (at your option)
+ * any later version.
+ *
+ * This software 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 software; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Street,
+ * Boston, MA 02110-1301, USA.
+ */
+
+
+#ifndef INCLUDED_IQBALANCE_OPTIMIZE_C_H
+#define INCLUDED_IQBALANCE_OPTIMIZE_C_H
+
+#include <iqbalance_api.h>
+#include <gr_sync_block.h>
+
+class iqbalance_optimize_c;
+
+typedef boost::shared_ptr<iqbalance_optimize_c> iqbalance_optimize_c_sptr;
+
+IQBALANCE_API iqbalance_optimize_c_sptr iqbalance_make_optimize_c (int period);
+
+/*!
+ * \brief <+description+>
+ * \ingroup block
+ *
+ */
+class IQBALANCE_API iqbalance_optimize_c : public gr_sync_block
+{
+ private:
+ friend IQBALANCE_API iqbalance_optimize_c_sptr iqbalance_make_optimize_c (int period);
+
+ iqbalance_optimize_c(int period);
+
+ int d_period, d_count;
+ bool d_first;
+ float d_mag, d_phase;
+
+ public:
+ ~iqbalance_optimize_c();
+
+ void set_period(int period) { this->d_period = period; }
+ const int period() const { return this->d_period; }
+
+ const float mag() const { return this->d_mag; }
+ const float phase() const { return this->d_phase; }
+
+ void reset(void) { this->d_first = true; this->d_mag = this->d_phase = 0.0f; }
+
+ void forecast (int noutput_items, gr_vector_int &ninput_items_required);
+
+ int work (int noutput_items,
+ gr_vector_const_void_star &input_items,
+ gr_vector_void_star &output_items);
+};
+
+#endif /* INCLUDED_IQBALANCE_OPTIMIZE_C_H */
+