summaryrefslogtreecommitdiff
path: root/gr-dtv
diff options
context:
space:
mode:
Diffstat (limited to 'gr-dtv')
-rw-r--r--gr-dtv/CMakeLists.txt2
-rw-r--r--gr-dtv/docs/CMakeLists.txt (renamed from gr-dtv/doc/CMakeLists.txt)0
-rw-r--r--gr-dtv/docs/README.dtv (renamed from gr-dtv/doc/README.dtv)0
-rw-r--r--gr-dtv/examples/atsc_ctrlport_monitor.py2
-rw-r--r--gr-dtv/lib/atsc/atsc_single_viterbi.cc4
-rw-r--r--gr-dtv/lib/atsc/atsc_sync_impl.cc4
-rw-r--r--gr-dtv/lib/dvbt/dvbt_demod_reference_signals_impl.cc2
-rw-r--r--gr-dtv/lib/dvbt/dvbt_inner_coder_impl.cc2
-rw-r--r--gr-dtv/lib/dvbt/dvbt_reference_signals_impl.cc2
-rw-r--r--gr-dtv/lib/dvbt/dvbt_reference_signals_impl.h2
-rw-r--r--gr-dtv/python/dtv/atsc_rx.py2
11 files changed, 11 insertions, 11 deletions
diff --git a/gr-dtv/CMakeLists.txt b/gr-dtv/CMakeLists.txt
index 7cec975115..11488ac413 100644
--- a/gr-dtv/CMakeLists.txt
+++ b/gr-dtv/CMakeLists.txt
@@ -61,7 +61,7 @@ if(ENABLE_PYTHON)
add_subdirectory(examples)
add_subdirectory(apps)
endif(ENABLE_PYTHON)
-add_subdirectory(doc)
+add_subdirectory(docs)
########################################################################
# Create Pkg Config File
diff --git a/gr-dtv/doc/CMakeLists.txt b/gr-dtv/docs/CMakeLists.txt
index b21afa8abf..b21afa8abf 100644
--- a/gr-dtv/doc/CMakeLists.txt
+++ b/gr-dtv/docs/CMakeLists.txt
diff --git a/gr-dtv/doc/README.dtv b/gr-dtv/docs/README.dtv
index 23639f0269..23639f0269 100644
--- a/gr-dtv/doc/README.dtv
+++ b/gr-dtv/docs/README.dtv
diff --git a/gr-dtv/examples/atsc_ctrlport_monitor.py b/gr-dtv/examples/atsc_ctrlport_monitor.py
index 9e1a7778c2..5329da2d44 100644
--- a/gr-dtv/examples/atsc_ctrlport_monitor.py
+++ b/gr-dtv/examples/atsc_ctrlport_monitor.py
@@ -35,7 +35,7 @@ from scipy import fftpack
If a host is running the ATSC receiver chain with ControlPort
turned on, this script will connect to the host using the hostname and
port pair of the ControlPort instance and display metrics of the
-receiver. The ATSC publishes information about the succes of the
+receiver. The ATSC publishes information about the success of the
Reed-Solomon decoder and Viterbi metrics for use here in displaying
the link quality. This also gets the equalizer taps of the receiver
and displays the frequency response.
diff --git a/gr-dtv/lib/atsc/atsc_single_viterbi.cc b/gr-dtv/lib/atsc/atsc_single_viterbi.cc
index 011cc0fe96..5f4850d81a 100644
--- a/gr-dtv/lib/atsc/atsc_single_viterbi.cc
+++ b/gr-dtv/lib/atsc/atsc_single_viterbi.cc
@@ -104,10 +104,10 @@ namespace gr {
/* If this is the most probable state so far remember it, this
only needs to be checked when we are about to output a path
- so this test can be saved till later if needed, if perfomed
+ so this test can be saved till later if needed, if performed
later it could also be optimized with SIMD instructions.
Even better this check could be eliminated as we are
- outputing the tail of our traceback not the head, for any
+ outputting the tail of our traceback not the head, for any
head state path will tend towards the optimal path with a
probability approaching 1 in just 8 or so transitions
*/
diff --git a/gr-dtv/lib/atsc/atsc_sync_impl.cc b/gr-dtv/lib/atsc/atsc_sync_impl.cc
index 7ecc33612a..b4de5fca56 100644
--- a/gr-dtv/lib/atsc/atsc_sync_impl.cc
+++ b/gr-dtv/lib/atsc/atsc_sync_impl.cc
@@ -178,8 +178,8 @@ namespace gr {
// If we are locked we can start filling and producing data packets
// Due to the way we lock the first data packet will almost always be
- // half full, this is OK becouse the fs_checker will not let packets though
- // untill a non-corrupted field packet is found
+ // half full, this is OK because the fs_checker will not let packets though
+ // until a non-corrupted field packet is found
if( d_seg_locked ) {
d_data_mem[d_symbol_index] = interp_sample;
diff --git a/gr-dtv/lib/dvbt/dvbt_demod_reference_signals_impl.cc b/gr-dtv/lib/dvbt/dvbt_demod_reference_signals_impl.cc
index de82d87fdf..71a50ad2a4 100644
--- a/gr-dtv/lib/dvbt/dvbt_demod_reference_signals_impl.cc
+++ b/gr-dtv/lib/dvbt/dvbt_demod_reference_signals_impl.cc
@@ -112,7 +112,7 @@ namespace gr {
/*
* Wait for a sync_start tag from upstream that signals when to start.
- * Allways consume until to a superframe start.
+ * Always consume until to a superframe start.
*/
if (is_sync_start(noutput_items)) {
d_init = 0;
diff --git a/gr-dtv/lib/dvbt/dvbt_inner_coder_impl.cc b/gr-dtv/lib/dvbt/dvbt_inner_coder_impl.cc
index 0787464aa2..e26c0eb8d9 100644
--- a/gr-dtv/lib/dvbt/dvbt_inner_coder_impl.cc
+++ b/gr-dtv/lib/dvbt/dvbt_inner_coder_impl.cc
@@ -141,7 +141,7 @@ namespace gr {
//Determine m - constellation symbol size
d_m = config.d_m;
- // In order to accomodate all constalations (m=2,4,6)
+ // In order to accommodate all constalations (m=2,4,6)
// and rates (1/2, 2/3, 3/4, 5/6, 7/8)
// We need the following things to happen:
// - output item size multiple of 1512bytes
diff --git a/gr-dtv/lib/dvbt/dvbt_reference_signals_impl.cc b/gr-dtv/lib/dvbt/dvbt_reference_signals_impl.cc
index f92f9fa6d8..c4d85e65ed 100644
--- a/gr-dtv/lib/dvbt/dvbt_reference_signals_impl.cc
+++ b/gr-dtv/lib/dvbt/dvbt_reference_signals_impl.cc
@@ -1179,7 +1179,7 @@ namespace gr {
// - symbol timing (pre-FFT)
// - symbol frequency correction (pre-FFT)
// - integer frequency correction (post-FFT)
- // TODO - call this just in the aquisition mode
+ // TODO - call this just in the acquisition mode
compute_oneshot_csft(in);
// Gather all corrections and obtain a corrected OFDM symbol:
diff --git a/gr-dtv/lib/dvbt/dvbt_reference_signals_impl.h b/gr-dtv/lib/dvbt/dvbt_reference_signals_impl.h
index 7d356203cb..06a74f936c 100644
--- a/gr-dtv/lib/dvbt/dvbt_reference_signals_impl.h
+++ b/gr-dtv/lib/dvbt/dvbt_reference_signals_impl.h
@@ -190,7 +190,7 @@ namespace gr {
void generate_bch_code();
// Verify parity on TPS data
int verify_bch_code(std::deque<char> data);
- // TPS data processing metods
+ // TPS data processing methods
int process_tps_data(const gr_complex * in, const int diff_symbo_index);
// Channel estimation methods
diff --git a/gr-dtv/python/dtv/atsc_rx.py b/gr-dtv/python/dtv/atsc_rx.py
index 7b31e3dae2..d728f0945e 100644
--- a/gr-dtv/python/dtv/atsc_rx.py
+++ b/gr-dtv/python/dtv/atsc_rx.py
@@ -43,7 +43,7 @@ class atsc_rx(gr.hier_block2):
# Normalize signal to proper constellation amplitude
agc = analog.agc_ff(1e-5, 4.0)
- # Synchronize bit and segement timing
+ # Synchronize bit and segment timing
btl = dtv.atsc_sync(output_rate)
# Check for correct field sync