diff options
Diffstat (limited to 'gr-fec/lib')
-rw-r--r-- | gr-fec/lib/conv_bit_corr_bb_impl.cc | 2 | ||||
-rw-r--r-- | gr-fec/lib/reed-solomon/CMakeLists.txt | 2 | ||||
-rw-r--r-- | gr-fec/lib/tpc_decoder.cc | 6 | ||||
-rwxr-xr-x | gr-fec/lib/tpc_encoder.cc | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/gr-fec/lib/conv_bit_corr_bb_impl.cc b/gr-fec/lib/conv_bit_corr_bb_impl.cc index 48de06157b..7c514168f4 100644 --- a/gr-fec/lib/conv_bit_corr_bb_impl.cc +++ b/gr-fec/lib/conv_bit_corr_bb_impl.cc @@ -66,7 +66,7 @@ namespace gr { // d_msgrecv_rpc(alias(), "messages_recieved", &d_msgrecv, // pmt::mp(0), pmt::mp(65536), pmt::mp(0), -// "messages", "Asynch Messages Recieved", +// "messages", "Asynch Messages Received", // RPC_PRIVLVL_MIN, DISPTIME | DISPOPTSTRIP), // d_msgsent_rpc(alias(), "messages_sent", &d_msgsent, // pmt::mp(0), pmt::mp(65536), pmt::mp(0), diff --git a/gr-fec/lib/reed-solomon/CMakeLists.txt b/gr-fec/lib/reed-solomon/CMakeLists.txt index 3d35c9025d..383441e9eb 100644 --- a/gr-fec/lib/reed-solomon/CMakeLists.txt +++ b/gr-fec/lib/reed-solomon/CMakeLists.txt @@ -20,7 +20,7 @@ ######################################################################## # This file included, use CMake directory variables ######################################################################## -#MSVC workaround: we cant have dynamically sized arrays. +#MSVC workaround: we can't have dynamically sized arrays. #So ifdef a max array bounds that is larger than NN and NROOTS #Its a bit of a hack, but if you look at the code, its so full of ifdefs, #and lacks optimization where it should be pre-allocating these arrays. diff --git a/gr-fec/lib/tpc_decoder.cc b/gr-fec/lib/tpc_decoder.cc index b3fbcc92df..3381d55dc8 100644 --- a/gr-fec/lib/tpc_decoder.cc +++ b/gr-fec/lib/tpc_decoder.cc @@ -126,7 +126,7 @@ tpc_decoder::tpc_decoder (std::vector<int> row_polys, std::vector<int> col_polys } // declare the reverse sweep trellis - // the beta vector is logically layed out in memory as follows, assuming the + // the beta vector is logically laid out in memory as follows, assuming the // following values (for educational purposes) // defined: LL = 6, rowEncoder_K = 3, derived: mm_row=2, max_states_row=4, rowEncoder_n=1, num_symbols_row=2 // state_idx @@ -301,7 +301,7 @@ void tpc_decoder::siso_decode_row() { num_llr_u = -MAXLOG; den_llr_u = -MAXLOG; - // intialize alpha_row + // initialize alpha_row // for (state=0;state<max_states_row;state++) { // alpha_row[state] = -MAXLOG; // } @@ -510,7 +510,7 @@ void tpc_decoder::siso_decode_col() { num_llr_u = -MAXLOG; den_llr_u = -MAXLOG; - // intialize alpha_col + // initialize alpha_col // for (state=0;state<max_states_col;state++) { // alpha_col[state] = -MAXLOG; // } diff --git a/gr-fec/lib/tpc_encoder.cc b/gr-fec/lib/tpc_encoder.cc index 849205753e..c9d89d7531 100755 --- a/gr-fec/lib/tpc_encoder.cc +++ b/gr-fec/lib/tpc_encoder.cc @@ -249,7 +249,7 @@ void tpc_encoder::generic_work(void *inBuffer, void *outBuffer) { for(ii=0; ii<numCheckColsToEncode; ii++) { // populate colToEncode for(jj=0; jj<d_kcol; jj++) { - colToEncode[jj] = rowEncodedBits[jj][ii]; // indexing is wierd b/c of the way we declared the vector :( + colToEncode[jj] = rowEncodedBits[jj][ii]; // indexing is weird b/c of the way we declared the vector :( } //DEBUG_PRINT("Encoding col=[%d] -->\n",ii+numDataColsToEncode); |