summaryrefslogtreecommitdiff
path: root/gr-dtv/lib/dvbt/dvbt_configure.h
diff options
context:
space:
mode:
Diffstat (limited to 'gr-dtv/lib/dvbt/dvbt_configure.h')
-rw-r--r--gr-dtv/lib/dvbt/dvbt_configure.h103
1 files changed, 103 insertions, 0 deletions
diff --git a/gr-dtv/lib/dvbt/dvbt_configure.h b/gr-dtv/lib/dvbt/dvbt_configure.h
new file mode 100644
index 0000000000..5e87410c90
--- /dev/null
+++ b/gr-dtv/lib/dvbt/dvbt_configure.h
@@ -0,0 +1,103 @@
+/* -*- c++ -*- */
+/*
+ * Copyright 2015 Free Software Foundation, Inc.
+ *
+ * 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_DTV_DVBT_CONFIGURE_H
+#define INCLUDED_DTV_DVBT_CONFIGURE_H
+
+#include <gnuradio/dtv/dvb_config.h>
+#include <gnuradio/dtv/dvbt_config.h>
+
+namespace gr {
+ namespace dtv {
+
+ class dvbt_configure
+ {
+ public:
+ int d_symbols_per_frame;
+ int d_frames_per_superframe;
+
+ int d_symbol_index;
+ int d_frame_index;
+ int d_superframe_index;
+
+ //Constelaltion parameters
+ dvb_constellation_t d_constellation;
+ int d_constellation_size;
+ int d_step;
+ int d_m;
+ float d_norm;
+
+ //Hierarchy information
+ dvbt_hierarchy_t d_hierarchy;
+ int d_alpha;
+
+ //Inner Coding parameters
+ dvb_code_rate_t d_code_rate_HP;
+ dvb_code_rate_t d_code_rate_LP;
+
+ // Guard interval length
+ dvb_guardinterval_t d_guard_interval;
+
+ //Transmission type parameters
+ dvbt_transmission_mode_t d_transmission_mode;
+
+ //Include cell id + cell id parameters
+ int d_include_cell_id;
+ int d_cell_id;
+
+ // Puncturer parameters
+ int d_cr_k;
+ int d_cr_n;
+ int d_cr_p;
+
+ //Other DVB-T parameters
+ int d_Kmin;
+ int d_Kmax;
+ int d_fft_length;
+ int d_payload_length;
+ int d_zeros_on_left;
+ int d_zeros_on_right;
+ int d_cp_length;
+
+ void set_frame_number(int fn);
+ int get_frame_mumber();
+ void set_constellation(dvb_constellation_t constellation);
+ dvb_constellation_t get_constellation();
+ void set_hierarchical(dvbt_hierarchy_t hierarchy);
+ dvbt_hierarchy_t get_hierarchical();
+ void set_code_rate_HP(dvb_code_rate_t coderate);
+ dvb_code_rate_t get_code_rate_HP();
+ void set_code_rate_LP(dvb_code_rate_t coderate);
+ dvb_code_rate_t get_code_rate_LP();
+ void set_transmission_mode(dvbt_transmission_mode_t transmission_mode);
+ dvbt_transmission_mode_t get_transmission_mode();
+
+ dvbt_configure(dvb_constellation_t constellation = gr::dtv::MOD_16QAM, \
+ dvbt_hierarchy_t hierarchy = gr::dtv::NH, dvb_code_rate_t code_rate_HP = gr::dtv::C1_2, \
+ dvb_code_rate_t code_rate_LP = gr::dtv::C1_2, dvb_guardinterval_t guard_interval = gr::dtv::GI_1_32, \
+ dvbt_transmission_mode_t transmission_mode = gr::dtv::T2k, int include_cell_id = 0, int cell_id = 0);
+ ~dvbt_configure();
+ };
+
+ } // namespace dtv
+} // namespace gr
+
+#endif /* INCLUDED_DTV_DVBT_CONFIGURE_H */
+