summaryrefslogtreecommitdiff
path: root/gnuradio-core/src
AgeCommit message (Collapse)Author
2009-07-10Merged r11397:11413 from balister/arm-configure into trunk. Trunk passes ↵jcorgan
distcheck. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11416 221aa14e-8319-0410-a670-987f0aec2ac5
2009-07-09Adds generic msgq runner convenience class.jcorgan
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11398 221aa14e-8319-0410-a670-987f0aec2ac5
2009-07-09Merged r11377:11390 from jcorgan/usrp-headers in to trunk.jcorgan
* Public USRP(1) header files are now in their own source directory and install into $(includedir)/usrp. This was done to avoid name clashes in the top-level include directory. Only users who are developing directly to libusrp in C++ are affected; the GNU Radio C++ and Python APIs are unchanged. The simple change required by this update is to change: #include <usrp_*.h> to #include <usrp/usrp_*.h> ...in your source code. * Removed usrp-inband code from tree (put into limbo directory.) This code has become unmaintained and has started to suffer from bitrot. A checkpoint tag has been made for anyone still needing to use it: http://gnuradio.org/svn/gnuradio/tags/checkpoints/trunk-20090708-pre-usrp-reorg The plan during the 3.2->3.3 development cycle is to replace the functions done by the in-band code with extensions to the existing gr-usrp blocks using the new message passing architecture. The USRP hardware FPGA code that provided the inband interface has not been removed; however, it too has become unmaintained and will likely be rewritten/replaced during the 3.3 timeframe. The trunk passes distcheck. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11394 221aa14e-8319-0410-a670-987f0aec2ac5
2009-06-23added include <cstdio> statements in several files to make it compatible ↵anastas
with g++ 4.4 git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11265 221aa14e-8319-0410-a670-987f0aec2ac5
2009-06-21Fix QPSK phase error detector. Applied patch from Ben Green, modified by ↵jcorgan
Tom Rondeau. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11254 221aa14e-8319-0410-a670-987f0aec2ac5
2009-06-01Fixed base class type. Thanks Achilleas!eb
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11167 221aa14e-8319-0410-a670-987f0aec2ac5
2009-05-27Merged r11123:11148 from jcorgan/np into trunk.jcorgan
Adds --enable-python option to configure (defaults to yes). Using --disable-python or --enable-python=no will cause only C++ API targets to be created and installed. Several new shared libraries are now created. Where in the past, the C++ objects of the actual gnuradio blocks that were in a component were hidden inside their corresponding Python extension modules, these are now split out into a libgnuradio-foo.so library, and the _foo.so Python module is linked to that. This has been the way several top- level components have operated for some time, such as gr-audio-alsa and gr-usrp and gr-usrp2. This changeset applies that pattern to all components. C++ API users can use pkg-config to discover the cflags and libs parameters needed to include and link against these libraries. These components have not been tested: gr-comedi gr-audio-osx gr-audio-windows Passes distcheck. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11150 221aa14e-8319-0410-a670-987f0aec2ac5
2009-05-23Removed redundant libmissing from libgnuradio-core-qa; it's alreadymichaelld
included in libgnuradio-core, which is then included in the QA library. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11090 221aa14e-8319-0410-a670-987f0aec2ac5
2009-05-22Backed out [10702] because it was causing a problem with an existingeb
application. gr_mpsk_receiver_cc.cc needs some TLC. The constellations are pretty large even in high SNR environments. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11089 221aa14e-8319-0410-a670-987f0aec2ac5
2009-05-22Doc fixes.eb
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11088 221aa14e-8319-0410-a670-987f0aec2ac5
2009-05-22doc fixes! work-in-progresseb
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11085 221aa14e-8319-0410-a670-987f0aec2ac5
2009-05-14Doc fixes. Merged eb/t367 -r11020:11025 to trunk. This changeseteb
moves the primary doxygen configuration under the top-level docs directory. It creates a new "docs" top-level component that can be enabled/disabled using the configure --disable-docs option. At this time, the --enable-doxygen option is still required to enable the generation of the doxygen documents. I think the flag should probably be removed, and default to "yes" if we find doxygen on the path. The user can disable the doc generation using --disable-docs if desired. The doxygen config file has been modified such that doxygen is now only run on the C++ sources. No attempt is made to process the python code using doxygen. This results in a less confusing set of docs for the the C++ API. Straightening out the python docs is left for later. Many classes are currently misclassified (\ingroup <wrong>). That will probably require another day of work, that I can't get to right now. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11027 221aa14e-8319-0410-a670-987f0aec2ac5
2009-05-13Fixes ticket:364, ticket:365. Merged eb/t364 -r11015:11017 to trunk.eb
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11018 221aa14e-8319-0410-a670-987f0aec2ac5
2009-05-08Fix abort when user fails to connect hier_block2 outputs both internally and ↵jcorgan
internally; throw meaningful exception instead. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10992 221aa14e-8319-0410-a670-987f0aec2ac5
2009-04-30Adds dynamic setters/getters for moving average filters.jcorgan
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10932 221aa14e-8319-0410-a670-987f0aec2ac5
2009-04-25Generate more informative error message than recursion errorjcorgan
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10908 221aa14e-8319-0410-a670-987f0aec2ac5
2009-04-25Fixes ticket:312.jcorgan
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10907 221aa14e-8319-0410-a670-987f0aec2ac5
2009-04-19Merged r10875:10880 from jcorgan/t161 into trunk. Implements ticket:161, ↵jcorgan
allowing multiple internal blocks to be connected to a hier_block2 external input. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10881 221aa14e-8319-0410-a670-987f0aec2ac5
2009-04-17Minor fix to last checkinjcorgan
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10872 221aa14e-8319-0410-a670-987f0aec2ac5
2009-04-17Fixes ticket:383jcorgan
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10871 221aa14e-8319-0410-a670-987f0aec2ac5
2009-04-17Fixes ticket:386jcorgan
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10869 221aa14e-8319-0410-a670-987f0aec2ac5
2009-04-17Fixes ticket:374jcorgan
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10865 221aa14e-8319-0410-a670-987f0aec2ac5
2009-04-17Cleanup on gr.channel_modeljcorgan
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10864 221aa14e-8319-0410-a670-987f0aec2ac5
2009-04-16Merged changeset r10817:10858 from jcorgan/cpphier into trunk. Adds ↵jcorgan
standard place for C++ hierarchical blocks for gnuradio-core, and new gr.channel_model block from Tom Rondeau. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10859 221aa14e-8319-0410-a670-987f0aec2ac5
2009-04-15Temporary fix for erroneous Makefile.am contentsjcorgan
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10852 221aa14e-8319-0410-a670-987f0aec2ac5
2009-04-15removing forgotten debugn4hy
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10848 221aa14e-8319-0410-a670-987f0aec2ac5
2009-04-15new fm detector added based on FIR derivative detector. Stereo sep better ↵n4hy
than pll based one and more efficient. Tweaking probably needed, usrp_wfm_rcv_fmdet added to demo git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10847 221aa14e-8319-0410-a670-987f0aec2ac5
2009-04-07Fix for ticket:262.eb
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10789 221aa14e-8319-0410-a670-987f0aec2ac5
2009-04-07Removed unneeded call to set_history(1). Code if functionallyeb
identical after this change. See also ticket:256. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10788 221aa14e-8319-0410-a670-987f0aec2ac5
2009-04-01Fix erroneous output io signaturejcorgan
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10734 221aa14e-8319-0410-a670-987f0aec2ac5
2009-03-30Applied phase jump patch from Stefan Bruens. Fixes erratic performance of ↵jcorgan
phase recovery loop at higher frequency offsets. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10702 221aa14e-8319-0410-a670-987f0aec2ac5
2009-03-26fixed typoeb
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10691 221aa14e-8319-0410-a670-987f0aec2ac5
2009-03-25Add check for interruption to gr_tpb_thread_body to ensure thateb
threads stop quickly. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10686 221aa14e-8319-0410-a670-987f0aec2ac5
2009-03-25missing lockeb
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10681 221aa14e-8319-0410-a670-987f0aec2ac5
2009-03-24Merged r10666:10669 from jblum/vlen. Trunk passes distcheck.jblum
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10678 221aa14e-8319-0410-a670-987f0aec2ac5
2009-03-23Error out when creating hierarchical blocks with arbitrary or variable ↵jcorgan
numbers of inputs and outputs. Temporarily fixes ticket:247; this functionality will be added during the release 3.2 series but not for the first release. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10671 221aa14e-8319-0410-a670-987f0aec2ac5
2009-03-20Adds QA code for ticket:237 fixjcorgan
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10661 221aa14e-8319-0410-a670-987f0aec2ac5
2009-03-20Merged r10463:10658 from jblum/gui_guts into trunk. Trunk passes distcheck.jcorgan
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10660 221aa14e-8319-0410-a670-987f0aec2ac5
2009-03-19Error out when hierarchical block inputs and outputs aren't wired ↵jcorgan
internally. Fixes ticket:237 git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10655 221aa14e-8319-0410-a670-987f0aec2ac5
2009-03-19Document run/start/stop/wait preconditions.eb
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10654 221aa14e-8319-0410-a670-987f0aec2ac5
2009-03-19Fix for ticket:348, Stopping a process does not properly terminate USRP1.eb
This is a partial merge from eb/t348 10637:10648, and contains the actual fix. The next commit will contain the rest of the merge which adds a -N <nsamples> argument to usrp_siggen.py, usrp_siggen.cc and test_usrp_standard_tx.cc. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10649 221aa14e-8319-0410-a670-987f0aec2ac5
2009-03-19Fix for ticket:375, gr_clock_recovery_mm_ff, from Mike Ossmann. Thanks!eb
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10646 221aa14e-8319-0410-a670-987f0aec2ac5
2009-03-16Fix missed setting from r10598 .michaelld
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10624 221aa14e-8319-0410-a670-987f0aec2ac5
2009-03-14Use size_t over int for vlen.jblum
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10599 221aa14e-8319-0410-a670-987f0aec2ac5
2009-03-14Add vlen to subtract, divide, and float2complex.jblum
Takes care of #302 and #303 git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10598 221aa14e-8319-0410-a670-987f0aec2ac5
2009-03-14Removed generated file from version control.jcorgan
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10597 221aa14e-8319-0410-a670-987f0aec2ac5
2009-03-14Merged r10554:10595 from michaelld/am_swig_4 into trunk. Major overhaul of ↵jcorgan
SWIG usage in build system, also fixes ticket:130. Trunk passes distcheck. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10596 221aa14e-8319-0410-a670-987f0aec2ac5
2009-03-08Copy pubsub from gr-wxgui into gnuradio-core, need to migrate wxgui usage to ↵jcorgan
new class before removing old git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10575 221aa14e-8319-0410-a670-987f0aec2ac5
2009-03-03Merged r10539:10546 from michaelld/two_mods into trunk. Trunk passes distcheck.jcorgan
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10551 221aa14e-8319-0410-a670-987f0aec2ac5
2009-02-25Merged mld/fix_makefile_gen -r10446:10509 to trunk. This cleans upeb
the generation of the Makefile.gen's that occurs in gr-trellis, lib/gengen and lib/filter. If you change any code generator such that it generates a different set of generated file names, you must execute "make generate-makefile" in a non-VPATH build to regenerate the Makefile.gen's. Once they are regenerated, commit them to the repo. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10511 221aa14e-8319-0410-a670-987f0aec2ac5