Skip to content

Commit 6eecbd8

Browse files
committed
Merge branch 'maint'
2 parents d7eaf6e + 037b34f commit 6eecbd8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+45
-46
lines changed

docs/doxygen/other/stream_tags.dox

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ would have to use the TPP_DONT tag propagation policy and handle the
201201
propagation internally.
202202

203203
In no case is the value of the tag modified when propagating through a
204-
block. This becomes relevent when using \ref page_tagged_stream_blocks.
204+
block. This becomes relevant when using \ref page_tagged_stream_blocks.
205205

206206
\section stream_tags_issues Notes on How to Use Tags
207207

gnuradio-runtime/include/gnuradio/block.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ namespace gr {
171171
* \brief Called to enable drivers, etc for i/o devices.
172172
*
173173
* This allows a block to enable an associated driver to begin
174-
* transfering data just before we start to execute the scheduler.
174+
* transferring data just before we start to execute the scheduler.
175175
* The end result is that this reduces latency in the pipeline
176176
* when dealing with audio devices, usrps, etc.
177177
*/
@@ -343,7 +343,7 @@ namespace gr {
343343
*
344344
* Use this value to clear the 'is_set' flag so the scheduler will
345345
* ignore this. Use the set_max_noutput_items(m) call to both set
346-
* a new value for max_noutput_items and to reenable its use in
346+
* a new value for max_noutput_items and to re-enable its use in
347347
* the scheduler.
348348
*/
349349
void unset_max_noutput_items();
@@ -411,7 +411,7 @@ namespace gr {
411411
long min_output_buffer(size_t i);
412412

413413
/*!
414-
* \brief Request limit on the mininum buffer size on all output
414+
* \brief Request limit on the minimum buffer size on all output
415415
* ports.
416416
*
417417
* \details

gnuradio-runtime/lib/tpb_thread_body.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ namespace gr {
152152
while(!d->d_tpb.input_changed && block->empty_handled_p()){
153153
boost::system_time const timeout=boost::get_system_time()+ boost::posix_time::milliseconds(250);
154154
if(!d->d_tpb.input_cond.timed_wait(guard, timeout)){
155-
goto tpb_loop_top; // timeout occured (perform sanity checks up top)
155+
goto tpb_loop_top; // timeout occurred (perform sanity checks up top)
156156
}
157157
}
158158

gr-analog/include/gnuradio/analog/phase_modulator_fc.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ namespace gr {
3737
* output = complex(cos(in*sensitivity), sin(in*sensitivity))
3838
*
3939
* Input stream 0: floats
40-
* Ouput stream 0: complex
40+
* Output stream 0: complex
4141
*/
4242
class ANALOG_API phase_modulator_fc : virtual public sync_block
4343
{

gr-atsc/lib/qa_atsci_fake_single_viterbi.cc

+1-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ qa_atsci_fake_single_viterbi::t0 ()
8282

8383
// printf (" Delay is %d.\n", delay);
8484

85-
srandom (27); // reproducable sequence of "random" values
85+
srandom (27); // reproducible sequence of "random" values
8686

8787
for (int nt = 0; nt < NTRIALS; nt++){
8888

@@ -143,4 +143,3 @@ qa_atsci_fake_single_viterbi::t0 ()
143143

144144
CPPUNIT_ASSERT (decoder_errors == 0);
145145
}
146-

gr-atsc/lib/qa_atsci_single_viterbi.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ qa_atsci_single_viterbi::t0 ()
7979

8080
// printf (" Delay is %d.\n", delay);
8181

82-
srandom (27); // reproducable sequence of "random" values
82+
srandom (27); // reproducible sequence of "random" values
8383

8484
for (int nt = 0; nt < NTRIALS; nt++){
8585

@@ -157,7 +157,7 @@ qa_atsci_single_viterbi::t1 ()
157157

158158
// printf (" Delay is %d.\n", delay);
159159

160-
srandom (1); // reproducable sequence of "random" values
160+
srandom (1); // reproducible sequence of "random" values
161161

162162
for (int nt = 0; nt < NTRIALS; nt++){
163163

gr-audio/lib/osx/osx_source.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ namespace gr {
436436
kAudioUnitScope_Output, 1,
437437
&d_asbd_client, prop_size);
438438
check_error_and_throw
439-
(err, "Set Device Ouput Stream Format failed",
439+
(err, "Set Device Output Stream Format failed",
440440
"audio_osx_source::setup");
441441

442442
// Get the Stream Format (client side), again

gr-blocks/include/gnuradio/blocks/endian_swap.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace gr {
3030
namespace blocks {
3131

3232
/*!
33-
* \brief Convert stream of items into thier byte swapped version
33+
* \brief Convert stream of items into their byte swapped version
3434
* \ingroup stream_operators_blk
3535
*/
3636
class BLOCKS_API endian_swap : virtual public sync_block

gr-blocks/include/gnuradio/blocks/pack_k_bits.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ namespace gr {
3232

3333
/*!
3434
* \brief Converts a vector of bytes with 1 bit in the LSB to a
35-
* byte with k relevent bits.
35+
* byte with k relevant bits.
3636
*
3737
* Example:
3838
* k = 4

gr-blocks/include/gnuradio/blocks/pack_k_bits_bb.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ namespace gr {
3131

3232
/*!
3333
* \brief Converts a stream of bytes with 1 bit in the LSB to a
34-
* byte with k relevent bits.
34+
* byte with k relevant bits.
3535
*
3636
* This block takes in K bytes at a time, and uses the least significant
3737
* bit to form a new byte.

gr-blocks/include/gnuradio/blocks/peak_detector_XX.h.t

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ namespace gr {
5656
* \param threshold_factor_fall The threshold factor determins
5757
* when a peak has ended. An average of the signal is
5858
* calculated and when the value of the signal goes
59-
* bellow threshold_factor_fall*average, we stop looking
59+
* below threshold_factor_fall*average, we stop looking
6060
* for a peak.
6161
* \param look_ahead The look-ahead value is used when the
6262
* threshold is found to look if there another peak

gr-blocks/include/gnuradio/blocks/unpack_k_bits.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ namespace gr {
3131
namespace kernel {
3232

3333
/*!
34-
* \brief Converts a byte with k relevent bits to k output bytes with 1 bit in the LSB.
34+
* \brief Converts a byte with k relevant bits to k output bytes with 1 bit in the LSB.
3535
*
3636
* This is the algorithm kernel for the gr::blocks::unpack_k_bits_bb block.
3737
*

gr-blocks/include/gnuradio/blocks/unpack_k_bits_bb.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace gr {
3030
namespace blocks {
3131

3232
/*!
33-
* \brief Converts a byte with k relevent bits to k output bytes with 1 bit in the LSB.
33+
* \brief Converts a byte with k relevant bits to k output bytes with 1 bit in the LSB.
3434
*
3535
* This block picks the K least significant bits from a byte, and expands
3636
* them into K bytes of 0 or 1.

gr-blocks/lib/tagged_file_sink_impl.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ namespace gr {
137137
double tfrac = pmt::to_double(pmt::tuple_ref(time, 1));
138138

139139
// Get new time from last time tag + difference in time to when
140-
// burst tag occured based on the sample rate
140+
// burst tag occurred based on the sample rate
141141
double delta = (double)(N - time_nitems) / d_sample_rate;
142142
d_timeval = (double)tsecs + tfrac + delta;
143143

gr-channels/include/gnuradio/channels/channel_model.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ namespace gr {
4242
* This model allows the user to set the voltage of an AWGN noise
4343
* source (\p noise_voltage), a (normalized) frequency offset (\p
4444
* frequency_offset), a sample timing offset (\p epsilon), and a
45-
* seed (\p noise_seed) to randomize or make reproducable the AWGN
45+
* seed (\p noise_seed) to randomize or make reproducible the AWGN
4646
* noise source.
4747
*
4848
* Multipath can be approximated in this model by using a FIR

gr-digital/include/gnuradio/digital/fll_band_edge_cc.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ namespace gr {
107107
* \brief Set the number of samples per symbol
108108
*
109109
* Set's the number of samples per symbol the system should
110-
* use. This value is uesd to calculate the filter taps and will
110+
* use. This value is used to calculate the filter taps and will
111111
* force a recalculation.
112112
*
113113
* \param sps (float) new samples per symbol

gr-digital/include/gnuradio/digital/lms_dd_equalizer_cc.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ namespace gr {
4545
* e[n] = d[n] - y[n]
4646
* w[n+1] = w[n] + mu u[n] conj(e[n])
4747
*
48-
* Where mu is a gain value (between 0 and 1 and usualy small,
48+
* Where mu is a gain value (between 0 and 1 and usually small,
4949
* around 0.001 - 0.01.
5050
*
5151
* This block uses the digital_constellation object for making the

gr-digital/include/gnuradio/digital/pfb_clock_sync_ccf.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ namespace gr {
196196
* differential filterbank.
197197
*
198198
* WARNING: this should not be used externally and will be moved
199-
* to a private funtion in the next API.
199+
* to a private function in the next API.
200200
*/
201201
virtual void set_taps(const std::vector<float> &taps,
202202
std::vector< std::vector<float> > &ourtaps,

gr-digital/include/gnuradio/digital/pfb_clock_sync_fff.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ namespace gr {
196196
* differential filterbank.
197197
*
198198
* WARNING: this should not be used externally and will be moved
199-
* to a private funtion in the next API.
199+
* to a private function in the next API.
200200
*/
201201
virtual void set_taps(const std::vector<float> &taps,
202202
std::vector< std::vector<float> > &ourtaps,

gr-dtv/include/gnuradio/dtv/dvbt_inner_coder.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ namespace gr {
5454
* \brief Create an Inner coder with Puncturing.
5555
*
5656
* \param ninput length of input. \n
57-
* \param noutput lenght of output. \n
57+
* \param noutput length of output. \n
5858
* \param constellation type of constellation. \n
5959
* \param hierarchy type of hierarchy used. \n
6060
* \param coderate coderate used.

gr-fec/include/gnuradio/fec/async_decoder.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ namespace gr {
8787
* \param my_decoder An FECAPI decoder object child of the generic_decoder class.
8888
* \param packed Sets output to packed bytes if true; otherwise, 1 bit per byte.
8989
* \param rev_pack If packing bits, should they be reversed?
90-
* \param mtu The Maxium Transmission Unit (MTU) of the output
90+
* \param mtu The Maximum Transmission Unit (MTU) of the output
9191
* frame that the block will be able to
9292
* process. Specified in bytes and defaults to 1500.
9393
*/

gr-fec/include/gnuradio/fec/async_encoder.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ namespace gr {
8282
* \param packed True if working on packed bytes (like PDUs).
8383
* \param rev_unpack Reverse the unpacking order from input bytes to bits.
8484
* \param rev_pack Reverse the packing order from bits to output bytes.
85-
* \param mtu The Maxium Transmission Unit (MTU) of the input
85+
* \param mtu The Maximum Transmission Unit (MTU) of the input
8686
* frame that the block will be able to
8787
* process. Specified in bytes and defaults to 1500.
8888
*/

gr-fec/include/gnuradio/fec/ber_bf.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ namespace gr {
5353
* berminerrors are observed and then produces a BER
5454
* calculation. The parameter \p ber_limit helps make sure that
5555
* the simulation is controlled. If the BER calculation drops
56-
* bellow the \p ber_limit setting, the block will exit and simply
56+
* below the \p ber_limit setting, the block will exit and simply
5757
* return the set limit; the real BER is therefore some amount
5858
* lower than this.
5959
*

gr-fec/include/gnuradio/fec/tagged_decoder.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ namespace gr {
7676
* \param input_item_size The size of the input items (often the my_decoder object can tell us this).
7777
* \param output_item_size The size of the output items (often the my_decoder object can tell us this).
7878
* \param lengthtagname Key name of the tagged stream frame size.
79-
* \param mtu The Maxium Transmission Unit (MTU) of the output
79+
* \param mtu The Maximum Transmission Unit (MTU) of the output
8080
* frame that the block will be able to
8181
* process. Specified in bytes and defaults to 1500.
8282
*/

gr-fec/include/gnuradio/fec/tagged_encoder.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ namespace gr {
5656
* \param input_item_size size of a block of data for the encoder.
5757
* \param output_item_size size of a block of data the encoder will produce.
5858
* \param lengthtagname Key name of the tagged stream frame size.
59-
* \param mtu The Maxium Transmission Unit (MTU) of the input
59+
* \param mtu The Maximum Transmission Unit (MTU) of the input
6060
* frame that the block will be able to
6161
* process. Specified in bytes and defaults to 1500.
6262
*/

gr-filter/include/gnuradio/filter/fft_filter_ccc.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ namespace gr {
3636
* \details
3737
* This block implements a complex decimating filter using the
3838
* fast convolution method via an FFT. The decimation factor is an
39-
* interger that is greater than or equal to 1.
39+
* integer that is greater than or equal to 1.
4040
*
4141
* The filter takes a set of complex (or real) taps to use in the
4242
* filtering operation. These taps can be defined as anything that

gr-filter/include/gnuradio/filter/fft_filter_ccf.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ namespace gr {
3636
* \details
3737
* This block implements a complex decimating filter using the
3838
* fast convolution method via an FFT. The decimation factor is an
39-
* interger that is greater than or equal to 1.
39+
* integer that is greater than or equal to 1.
4040
*
4141
* The filter takes a set of complex (or real) taps to use in the
4242
* filtering operation. These taps can be defined as anything that

gr-filter/include/gnuradio/filter/fft_filter_fff.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ namespace gr {
3636
* \details
3737
* This block implements a real-value decimating filter using the
3838
* fast convolution method via an FFT. The decimation factor is an
39-
* interger that is greater than or equal to 1.
39+
* integer that is greater than or equal to 1.
4040
*
4141
* The filter takes a set of real-valued taps to use in the
4242
* filtering operation. These taps can be defined as anything that

gr-filter/include/gnuradio/filter/pfb_arb_resampler_ccc.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ namespace gr {
5050
typedef boost::shared_ptr<pfb_arb_resampler_ccc> sptr;
5151

5252
/*!
53-
* Build the polyphase filterbank arbitray resampler.
53+
* Build the polyphase filterbank arbitrary resampler.
5454
* \param rate (float) Specifies the resampling rate to use
5555
* \param taps (vector/list of complex) The prototype filter to populate the filterbank. The taps
5656
* should be generated at the filter_size sampling rate.

gr-filter/include/gnuradio/filter/pfb_arb_resampler_ccf.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ namespace gr {
5050
typedef boost::shared_ptr<pfb_arb_resampler_ccf> sptr;
5151

5252
/*!
53-
* Build the polyphase filterbank arbitray resampler.
53+
* Build the polyphase filterbank arbitrary resampler.
5454
* \param rate (float) Specifies the resampling rate to use
5555
* \param taps (vector/list of floats) The prototype filter to populate the filterbank. The taps
5656
* should be generated at the filter_size sampling rate.

gr-filter/include/gnuradio/filter/pfb_arb_resampler_fff.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ namespace gr {
9999
typedef boost::shared_ptr<pfb_arb_resampler_fff> sptr;
100100

101101
/*!
102-
* Build the polyphase filterbank arbitray resampler.
102+
* Build the polyphase filterbank arbitrary resampler.
103103
* \param rate (float) Specifies the resampling rate to use
104104
* \param taps (vector/list of floats) The prototype filter to populate the filterbank. The taps
105105
* should be generated at the filter_size sampling rate.

gr-filter/include/gnuradio/filter/pfb_channelizer_ccf.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ namespace gr {
5050
* filter has the same number of taps.
5151
*
5252
* Each filter operates using the gr::blocks::fir_filter_XXX
53-
* classs of GNU Radio, which takes the input stream at <EM>i</EM>
53+
* class of GNU Radio, which takes the input stream at <EM>i</EM>
5454
* and performs the inner product calculation to <EM>i+(n-1)</EM>
5555
* where <EM>n</EM> is the number of filter taps. To efficiently
5656
* handle this in the GNU Radio structure, each filter input must

gr-filter/include/gnuradio/filter/pfb_decimator_ccf.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ namespace gr {
3636
* \ingroup channelizers_blk
3737
*
3838
* \details
39-
* This block takes in a signal stream and performs interger down-
39+
* This block takes in a signal stream and performs integer down-
4040
* sampling (decimation) with a polyphase filterbank. The first
4141
* input is the integer specifying how much to decimate by. The
4242
* second input is a vector (Python list) of floating-point taps

gr-filter/include/gnuradio/filter/pfb_interpolator_ccf.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ namespace gr {
3636
* \ingroup channelizers_blk
3737
*
3838
* \details
39-
* This block takes in a signal stream and performs interger up-
39+
* This block takes in a signal stream and performs integer up-
4040
* sampling (interpolation) with a polyphase filterbank. The first
4141
* input is the integer specifying how much to interpolate by. The
4242
* second input is a vector (Python list) of floating-point taps

gr-filter/include/gnuradio/filter/pfb_synthesizer_ccf.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ namespace gr {
3737
*
3838
* \details
3939
*
40-
* The PFB sythesis filterbank combines multiple baseband signals
40+
* The PFB synthesis filterbank combines multiple baseband signals
4141
* into a single channelized signal. Each input stream is,
4242
* essentially, modulated onto an output channel according the the
4343
* channel mapping (see set_channel_map for details).

gr-filter/include/gnuradio/filter/pm_remez.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ namespace gr {
3636
*
3737
* \details
3838
* Calculates the optimal (in the Chebyshev/minimax sense) FIR
39-
* filter inpulse reponse given a set of band edges, the desired
40-
* reponse on those bands, and the weight given to the error in
39+
* filter inpulse response given a set of band edges, the desired
40+
* response on those bands, and the weight given to the error in
4141
* those bands.
4242
*
4343
* \param order filter order (number of taps in the returned filter - 1)

gr-filter/include/gnuradio/filter/polyphase_filterbank.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ namespace gr {
5555
* number of taps.
5656
*
5757
* Each filter operates using the gr::filter::fir_filter_XXX
58-
* classs of GNU Radio, which takes the input stream at
58+
* class of GNU Radio, which takes the input stream at
5959
* <EM>i</EM> and performs the inner product calculation to
6060
* <EM>i+(n-1)</EM> where <EM>n</EM> is the number of filter
6161
* taps. To efficiently handle this in the GNU Radio structure,

gr-filter/lib/pm_remez.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ namespace gr {
575575
*=======
576576
* Calculates the optimal (in the Chebyshev/minimax sense)
577577
* FIR filter impulse response given a set of band edges,
578-
* the desired reponse on those bands, and the weight given to
578+
* the desired response on those bands, and the weight given to
579579
* the error in those bands.
580580
*
581581
* INPUT:

gr-uhd/include/gnuradio/uhd/usrp_block.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ namespace gr {
393393
virtual ::uhd::time_spec_t get_time_now(size_t mboard = 0) = 0;
394394

395395
/*!
396-
* Get the time when the last pps pulse occured.
396+
* Get the time when the last pps pulse occurred.
397397
* \param mboard the motherboard index 0 to M-1
398398
* \return the current usrp time
399399
*/

gr-utils/python/utils/gr_plot_qt

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ except ImportError:
2626
raise SystemExit, 1
2727

2828
try:
29-
# FIXME: reenable this before committing
29+
# FIXME: re-enable this before committing
3030
#from gnuradio.pyqt_plot import Ui_MainWindow
3131
from gnuradio.pyqt_plot import Ui_MainWindow
3232
except ImportError:

0 commit comments

Comments
 (0)