1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518
|
2005-02-02 Chuck Swiger <cswiger@widomaker.com>
* src/lib/io/gr_file_source.{h,cc,i}: added seek method.
2005-01-29 Eric Blossom <eb@comsec.com>
* src/lib/runtime/gr_io_signature.i: mods for SWIG 1.3.24
2005-01-24 Eric Blossom <eb@comsec.com>
* src/python/gnuradio/freqz.py (freqz): New. Compute frequency
response of filter.
* src/python/gnuradio/gnuplot_freqz.py: New. Plot output of freqz.
2005-01-17 Eric Blossom <eb@comsec.com>
* src/lib/runtime/gr_single_threaded_scheduler.cc (main_loop):
Make better initial estimate of noutput_items when current block
is a decimator. Removed old diagnostic code.
* src/lib/general/gr_vector_source_X.cc.t (work): reorganized the
repeat case so that we always return the number of items requested.
This fixes the excessive latency we were seeing in
spectrum_inversion.py
* src/python/gnuradio/gr/flow_graph.py: Set noutputs correctly.
* src/python/gnuradio/gr/qa_flow_graph.py: Test value of noutputs.
2005-01-16 Eric Blossom <eb@comsec.com>
* src/lib/runtime/gr_single_threaded_scheduler.cc (main_loop):
check for situation where block is requesting more input data than
we will ever provide.
* src/python/gnuradio/gr/flow_graph.py (buffer_sizes.allocate):
set minimum buffersize to 2 * output_multiple()
* src/lib/runtime/gr_buffer.cc (space_available): fixed degenerate
case to be consistent with normal case.
2005-01-01 Eric Blossom <eb@comsec.com>
* src/lib/io/sdr_1000.i (class sdr_1000_base): removed default arg
to work around SWIG 1.3.23 bug.
2004-12-22 Eric Blossom <eb@comsec.com>
* src/lib/general/qa_gr_fxpt.cc (t0): disabled float_to_fixed test
to avoid spurious failures.
2004-12-21 Eric Blossom <eb@comsec.com>
* src/lib/general/gr_fxpt.h (class gr_fxpt): added explicit float cast.
* src/lib/general/Makefile.am (grinclude_HEADERS): added gr_fxpt_nco.h
2004-12-18 Eric Blossom <eb@comsec.com>
* src/lib/general/gr_fxpt.{h,cc},src/lib/general/gr_fxpt_nco.{h,cc},
src/lib/general/qa_gr_fxpt.{h,cc},src/lib/general/qa_gr_fxpt_nco.{h,cc},
src/tests/benchmark_nco.cc: new. Faster sine and cosine
calculation. Uses table lookup with linear interpolation. This
is about 3x faster than the original code.
2004-12-17 Eric Blossom <eb@comsec.com>
* src/lib/general/Makefile.am (swiginclude_HEADERS): fixed typo.
* src/lib/general/gr_deinterleave.{h,cc,i}: new.
2004-12-11 Eric Blossom <eb@comsec.com>
* src/lib/general/gr_interleave.{h,cc,i}: new.
2004-12-10 Eric Blossom <eb@comsec.com>
* src/python/gnuradio/eng_option.py (check_intx): now parses hex
numbers too.
2004-12-09 Eric Blossom <eb@comsec.com>
* src/lib/filter/Makefile.am: fixed problem with gr_hilbert_fc on
OS/X (it was in the wrong place in the makefile). Now builds and
checks on OS/X.
2004-12-06 Ramakrishnan Muthukrishnan <rkrishnan@symonds.net>
* src/lib/filter/Makefile.am, src/lib/general/Makefile.am,
src/python/gnuradio/Makefile.am,
src/python/gnuradio/gr/Makefile.am: added *.pyc to CLEANFILES
2004-11-30 Eric Blossom <eb@comsec.com>
* src/python/gnuradio/gr/Makefile.am, configure.ac: modified to
no longer require run_test_trampoline. Now uses AC_CONFIG_COMMANDS to
set execute bit on run_tests.
* src/python/gnuradio/gr/run_test_trampoline: removed.
* src/lib/filter/Makefile.am (swiginclude_HEADERS): fix typo in gr_hilbert_fc.i
2004-11-27 Eric Blossom <eb@comsec.com>
* src/python/gnuradio/gr/qa_hilbert.py: new
* src/lib/general/gr_firdes.i: moved from filter to general.
* src/lib/general/gr_firdes.{h,cc}: new method: reverse.
* src/lib/filter/gr_hilbert_fc.i: new.
* src/lib/filter/gr_hilbert_fc.cc: ensure ntaps is odd.
2004-11-08 Stephane Fillod <f8cfe@free.fr>
* src/lib/filter/Makefile.am, src/tests/Makefile.am,
src/lib/filter/complex_dotprod_generic.cc,
src/lib/filter/gr_fir_sysconfig_x86.{cc,h},
src/lib/filter/qa_dotprod_x86.cc, src/lib/filter/qa_filter.cc:
added support for x86 SIMD CCC dotproduct.
* src/lib/filter/ccomplex_dotprod_3dnow.s,
src/lib/filter/ccomplex_dotprod_3dnowext.s,
src/lib/filter/ccomplex_dotprod_generic.{cc,h},
src/lib/filter/ccomplex_dotprod_sse.s,
src/lib/filter/ccomplex_dotprod_x86.h,
src/lib/filter/gr_fir_ccc_simd.{cc,h},
src/lib/filter/gr_fir_ccc_x86.{cc,h},
src/lib/filter/qa_ccomplex_dotprod_x86.{cc,h},
src/lib/filter/qa_gr_fir_ccc.{cc,h},
src/tests/benchmark_dotprod.cc,
src/tests/benchmark_dotprod_{ccc,fcc,scc}.cc: new
2004-11-08 Eric Blossom <eb@comsec.com>
* src/lib/runtime/gr_block.h: new methods: set_input_signature and
set_output_signature.
2004-11-04 Eric Blossom <eb@comsec.com>
* configure.ac: upped version to 2.3cvs
* configure.ac: set version to 2.3. Made release.
* src/python/gnuradio/audio.py (__init__): raise error if no audio
module found.
2004-11-02 Eric Blossom <eb@comsec.com>
* src/lib/runtime/gr_local_sighandler.cc (name): conditionalized
based on signal names.
2004-10-30 Eric Blossom <eb@comsec.com>
* src/lib/runtime/gr_local_sighandler.{h,cc}: new. get and set
signal handlers.
* src/lib/runtime/gr_vmcircbuf.cc (test_factory): install handlers
for SIGBUS and SIGSEGV while running tests.
2004-10-18 Stephane Fillod <f8cfe@free.fr>
* config/gr_pwin32.m4, src/lib/runtime/gr_preferences.cc: proper
detect Sleep() support, check for mkdir that takes only one arg
under win32.
* src/lib/runtime/gr_io_signature.cc,
src/lib/runtime/gr_io_signature.h,
src/lib/runtime/gr_io_signature.i,
src/lib/runtime/qa_gr_io_signature.cc: resolve a clash with
INFINITE already defined.
* src/lib/runtime/gr_pagesize.cc: declare missing prototype of
getpagesize() under win32.
2004-10-18 Eric Blossom <eb@comsec.com>
* src/python/gnuradio/gr/run_tests.in: allow VPATH building.
2004-10-18 Stephane Fillod <f8cfe@free.fr>
* configure.ac, src/lib/filter/Makefile.am,
src/lib/general/Makefile.am: allow VPATH building.
2004-10-17 Eric Blossom <eb@comsec.com>
* doc/Makefile.am (install-data-local): install html documentation.
* src/lib/filter/gr_iir_filter_ffd.cc (gr_iir_filter_ffd): removed
debug message.
* src/python/gnuradio/gr/run_tests.in: changed == to = for POSIX
compatibility.
* src/python/gnuradio/gr/qa_basic_flow_graph.py: use /usr/bin/env
to find python.
2004-10-13 Eric Blossom <eb@comsec.com>
* configure.ac: upped rev to 2.2cvs
2004-10-11 Eric Blossom <eb@comsec.com>
* configure.ac: bumped rev to 2.2, make release
* Makefile.am (EXTRA_DIST): added config.h.in
2004-10-07 Eric Blossom <eb@comsec.com>
* src/python/gnuradio/lmx2306.py: now works!
2004-09-29 Eric Blossom <eb@comsec.com>
* src/lib/filter/gri_iir.h: renamed from gr_iir.h. Also, changed
the sign back. We're consistent with Oppenheim and Schafer,
"Discrete-Time Signal Processing." Documented exactly what we
compute. Faster delay line implementation.
* src/lib/filter/gr_iir_filter_ffd.{h,cc,i}: new direct form IIR block.
2004-09-23 Eric Blossom <eb@comsec.com>
* config/usrp_fusb_tech.m4, config/bnv_have_qt.m4, config/cppunit.m4,
config/gr_check_mc4020.m4, config/gr_check_usrp.m4, config/gr_doxygen.m4,
config/gr_gprof.m4, config/gr_scripting.m4, config/gr_set_md_cpu.m4,
config/pkg.m4, config/usrp_fusb_tech.m4: added additional quoting
to first arg of AC_DEFUN to silence automake warning.
2004-09-22 Eric Blossom <eb@comsec.com>
* src/lib/io/gr_file_descriptor_sink.cc: added missing #include <errno.h>
* src/lib/io/gr_file_descriptor_source.cc: added missing #include <errno.h>
2004-09-21 Matthew Hall <mahall@ncsa.uiuc.edu>
* src/gnu/lib/gr/gr_iir.h: rewrote ctor docs. Fixed sign error
in filter method. Now gr_iir uses Direct Form I of IIR.
2004-09-19 Eric Blossom <eb@comsec.com>
* src/lib/general/gr_complex_to_xxx.{h,cc,i}: new blocks.
* src/python/gnuradio/gr/qa_complex_xxx.py: new qa code.
* src/lib/general/gr_simple_correlator.{h,cc,i}: payload size is
now in bytes, not bits.
* src/lib/general/gr_simple_framer.{h,cc,i}: payload size is
now in bytes, not bits.
* src/lib/swig/Makefile.am: now tracks swig .i file dependencies.
* src/lib/swig/gnuradio.i: simplification and cleanup.
2004-09-18 Eric Blossom <eb@comsec.com>
These modifications happened sometime between 2004-09-08 and 2004-09-18.
The details are lost in the swirl around preparing the TAPR DCC.
* src/lib/filter/gr_interp_fir_filter_XXX.{h,cc,i}.t: new
* src/lib/filter/generate_gr_interp_fir_filter_XXX.py: new
* src/lib/filter/generate_all.py: modified for to generate interpolating fir filter
* src/lib/general/gr_bytes_to_syms.{h,cc,i}: new
* src/lib/general/gr_frequency_modulator_fc.{h,cc,i}: new
* src/lib/general/gr_simple_framer.{h,cc,i}: new
* src/lib/general/gr_simple_framer_sync.h: new
* src/lib/general/gr_simple_correlator.{h,cc,i}: new
* src/lib/io/gr_oscope_guts.{h,cc}: new
* src/lib/io/gr_oscope_sink_{f,x}.{h,cc}: new
* src/lib/io/gr_trigger_mode.h: new
* src/lib/io/ppio.i: new
The following changes are related to moving from SWIG 1.3.21 to 1.3.22
* src/lib/runtime/gr_block_detail.i: removed unneccesary global decl of friend.
* src/lib/runtime/gr_buffer.i: removed unneccesary global decl of friend.
* src/lib/runtime/gr_io_signature.i: removed unneccesary global decl of friend.
* src/lib/runtime/gr_single_threaded_scheduler.i: removed unneccesary global decl of friend.
* src/lib/swig/gnuradio.i: mods for improved STL support
* src/lib/runtime/gr_types.h: new typedefs
* src/lib/swig/gen-swig-bug-fix: new. generate gnuradio_swig_bug_workaround.h
* src/python/gnuradio/eng_notation.py: new
* src/python/gnuradio/grutil.py: new
* src/python/gnuradio/gr_unittest.py: new subclass of unittest
* src/python/gnuradio/lmx2306.py: new. Control National PLL synthesizer
* src/python/gnuradio/microtune.py: new. Command line interface
to microtune boards.
* src/python/gnuradio/gr/qa_frequency_modulator.py: new
* src/python/gnuradio/gr/qa_fsk_stuff.py: new
* src/python/gnuradio/gr/qa_head.py: new
* src/python/gnuradio/gr/qa_interp_fir_filter.py: new
* src/python/gnuradio/gr/qa_sig_source.py: new
2004-09-08 Eric Blossom <eb@comsec.com>
* src/python/gnuradio/gr/basic_flow_graph.py
(basic_flow_graph.validate): now calls check_topology.
* src/lib/runtime/gr_block.{h,cc,i} (check_topology): new method.
* src/lib/general/gr_short_to_float.{h,cc,i}: new
* src/lib/general/gr_float_to_short.{h,cc,i}: new
2004-08-26 Eric Blossom <eb@comsec.com>
* src/lib/general/gr_fft_vfc.{h,cc,i}: new
* src/lib/general/gr_fft_vcc.{h,cc,i}: new
* src/lib/general/gri_fft.{h,cc}: renamed from gr_fft.{h,cc}
* src/lib/general/gr_serial_to_parallel.{h,cc,i}: new
* src/lib/general/gr_keep_one_in_n.{h,cc,i}: new
2004-08-25 Eric Blossom <eb@comsec.com>
* src/lib/io/gr_file_descriptor_source.{h,cc,i}: new
* src/lib/io/gr_file_descriptor_sink.{h,cc,i}: new
2004-08-19 Eric Blossom <eb@comsec.com>
* src/lib/general/gr_sig_source_X.cc.t (work): performance tweak
for constant case.
* src/python/gnuradio/eng_option.py (check_eng_float): support
engineering notation in option parsing. E.g., 32k, 106.5M
2004-08-18 Eric Blossom <eb@comsec.com>
* src/python/gnuradio/gr/scheduler.py,
src/python/gnuradio/gr/basic_flow_graph.py,
src/python/gnuradio/gr/flow_graph.py,
src/python/gnuradio/gr/qa_flowgraph.py: modified to partition
graphs and assign separate threads to each disjoint set of
verticies.
2004-08-05 Eric Blossom <eb@comsec.com>
* src/lib/general/gr_lfsr_32k_source_s.{h,cc,i}: new.
* src/lib/general/gr_check_counting_s.{h,cc,i}: renamed from gr_counting_sink.
* src/lib/general/gri_lfsr_15_1_0.h: new LFSR generator with
period 32K-1 bits.
* src/lib/general/gri_lfsr_32k.h: new LFSR generator with period
32K bits.
* src/lib/general/gr_counting_sink_s.{h,cc,i}: new. checks that
it's input is a counting sequence.
* src/lib/filter/Makefile.am: added missing .t files
2004-07-31 Eric Blossom <eb@comsec.com>
* src/lib/general/gr_vector_source_X.{h,cc,i}.t: added repeat
argument to constructor.
2004-07-30 Eric Blossom <eb@comsec.com>
* src/lib/general/gr_sig_source_X.cc.t (work): now use gr_sincos
to compute both at same time.
* src/lib/general/gr_nco.h (gr_nco): renamed method cossin -> sincos
and use gr_sincos to compute value.
* configure.ac: upped rev to 2.1cvs.
2004-07-21 Eric Blossom <eb@comsec.com>
* configure.ac: upped rev to 2.1. Made release.
2004-07-20 Eric Blossom <eb@comsec.com>
* src/python/gnuradio/optfir.py: new. High level routines for optimal FIR design.
* src/lib/general/gr_remez.{h,cc}: new. Parks-McClellan method
for optimal FIR design.
2004-07-19 Eric Blossom <eb@comsec.com>
* src/lib/general/gri_add_const_ss_generic.cc: new.
* src/lib/general/gri_add_const_ss.h: new.
2004-07-17 Eric Blossom <eb@comsec.com>
* src/python/gnuradio/gr/flow_graph.py (buffer_sizes.allocate):
take into account output_multiple when computing buffer size.
* src/lib/runtime/gr_block.i: added output_multiple and
relative_rate to swig interface.
2004-07-12 Eric Blossom <eb@comsec.com>
* configure.ac: upped rev to 2.0cvs
* src/python/gnuradio/sdr_1000.py: added back in.
* src/lib/io/sdr_1000.{h,cc}: added back in.
2004-07-11 Eric Blossom <eb@comsec.com>
* config/gr_boost.m4 (GR_REQUIRE_BOOST_INCLUDES): new m4 macro.
2004-07-09 Eric Blossom <eb@comsec.com>
* src/lib/audio-oss: removed all files and moved to gr-audio-oss package.
2004-07-04 Eric Blossom <eb@comsec.com>
* src/lib/general/gr_{add,sub,multiply,divide}_XX.{h,i,cc}.t: new
* src/lib/general/gr_multiply_const_XX.{h,i,cc}.t: new
* src/lib/runtime/gr_block.{h,cc} (class gr_block): renamed
basic_work method to general_work
* src/lib/general/gr_sync_block.{h,cc} (class gr_sync_block):
renamed sync_work method to work.
2004-07-03 Eric Blossom <eb@comsec.com>
* src/python/gnuradio/gr/scheduler.py: new. Now run graph in
separate thread.
* src/lib/runtime/gr_single_threaded_scheduler.{h,i,cc}: added
stop method.
* src/lib/general/gr_noise_source_X.{h,i,cc}.t: new random noise source.
* config/gr_swig.m4: fail, not warn, if the right version isn't found.
* src/lib/general/gr_random.{h,cc}: moved implementation specific
defines out of header and into implementation. Also moved statics
into class and cleaned up a couple of other annoyances.
2004-07-01 Eric Blossom <eb@comsec.com>
* src/python/gnuradio/gr/run_tests.in: new. Sets PYTHONPATH
for sucessful testing in build tree; runs all tests.
* src/lib/runtime/{gr_block.i,gr_swig_block_magic.i}: revised to
use lambda expression for repr printing instead of referencing global.
* src/lib/swig/Makefile.am: now generate standalone swig runtime
library that all other swig modules link against.
2004-06-21 Eric Blossom <eb@comsec.com>
Cleaned up interface to microtune modules and eval boards.
Now uses boost::shared_ptr's. Refactored all uses 4937 and 4702,
and corresponding eval board classes.
* src/lib/io/i2c.{h,cc}: split into i2c.{h,cc} and i2c_bitbang.{h,cc}
* src/lib/io/eval_board_4702_defs.h: deleted.
* src/lib/io/i2cio.{h,cc}: renamed to i2c_bbio.{h,cc}
* src/lib/io/i2cio_pp.{h,cc}: renamed to i2c_bbio_pp.{h,cc}
2004-06-13 Eric Blossom <eb@comsec.com>
* src/lib/general/gr_quadrature_demod_cf.{i,h,cc}: new.
* src/lib/audio-oss/gr_audio_sink_oss.{i,h,cc}: new.
FIXME: should be moved into a different build tree to decouple oss
dependency.
* src/lib/io/gr_file_{sink,source}.{i,h,cc} io.i: new.
2004-06-12 Eric Blossom <eb@comsec.com>
* src/lib/general/gr_sig_source_X.{h,cc,i}.t: new
* src/lib/general/gr_sig_source_waveform.h: new
* src/lib/general/gr_head.{h,cc,i}: new
* src/lib/runtime/gr_block_detail.cc (set_done), gr_buffer.h:
propagate "done" upstream
2004-XX-XX Eric Blossom <eb@comsec.com>
Months of changes... This was whatever it took to get
the beginning of the new code base working...
2004-03-11 Eric Blossom <eb@comsec.com>
* src/lib/runtime/io_signature.{h,cc},
* src/lib/runtime/qa_io_signature.{h,cc}: new.
2004-03-08 Eric Blossom <eb@comsec.com>
Removed cppunit from our build tree and updated qa code to work
with cppunit-1.9.12
* Makefile.am
* bootstrap
* configure.ac
* config/Makefile.am
* config/cppunit.m4
* src/lib/Makefile.am
* src/lib/atsc/convolutional_interleaver.h
* src/lib/atsc/qa_atsc_basic_trellis_encoder.cc
* src/lib/atsc/qa_atsc_data_interleaver.cc
* src/lib/atsc/qa_atsc_equalizer_nop.cc
* src/lib/atsc/qa_atsc_fake_single_viterbi.cc
* src/lib/atsc/qa_atsc_fs_correlator.cc
* src/lib/atsc/qa_atsc_randomizer.cc
* src/lib/atsc/qa_atsc_reed_solomon.cc
* src/lib/atsc/qa_atsc_single_viterbi.cc
* src/lib/atsc/qa_atsc_trellis_encoder.cc
* src/lib/atsc/qa_atsc_viterbi_decoder.cc
* src/lib/atsc/qa_convolutional_interleaver.cc
* src/lib/atsc/qa_interleaver_fifo.cc
* src/lib/filter/qa_complex_dotprod_x86.cc
* src/lib/filter/qa_float_dotprod_x86.cc
* src/lib/filter/qa_gr_fir_CCF.cc
* src/lib/filter/qa_gr_fir_FCC.cc
* src/lib/filter/qa_gr_fir_FFF.cc
* src/lib/filter/qa_gr_fir_SCC.cc
* src/lib/filter/qa_gr_mmse_fir_interpolator.cc
* src/lib/filter/qa_sse_float_dotprod.cc
* src/lib/general/qa_gr_circular_file.cc
* src/lib/general/qa_gr_firdes.cc
* src/lib/general/old/qa_gr_fir_SSS.cc
* src/lib/general/old/qa_gr_fir_sse.cc
* src/lib/runtime/qa_gr_vmcircbuf.cc
* src/lib/vrx/VrComplex.h
* src/tests/GrTestSink.cc
* src/tests/GrTestSkippingSink.cc
* src/tests/GrTestSource.cc
This code was derived from gnuradio-0.9 with a massive amount of hacking.
#
# Copyright 2001,2002,2003,2004,2005 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 2, 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., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
#
|