summaryrefslogtreecommitdiff
path: root/gr-audio-jack
Commit message (Collapse)AuthorAgeFilesLines
* Use load-extension-global instead of load-extensionEric Blossom2010-12-101-1/+1
|
* Merge branch 'next' into guile-nextEric Blossom2010-12-062-5/+15
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * next: (116 commits) Adding new example script for using the new PFB arbitrary resampler interface. One resampler takes user-generated taps and another resampler just takes the resampling rate. Both input and output signals are plotted. Modifying blsk2 wrapper for PFB arbitrary resampler to allow the user to just specify the requested resampling rate without providing their own filter taps. uhd: reverting tag changes on uhd single usrp source, there seems to be issues with the work() logic uhd: removed default value chan=0 in the cc files WITH_INCLUDES _must_ be last uhd: replaced CFLAGS with CPPFLAGS variable, and fixed swig args FIXME uhd: default channel params to zero for single source and sink blocks Revert "Removed usrp2-firmware from being automatically built." Remove generated file from repo Removed usrp2-firmware from being automatically built. uhd: added libdir to UHD CFLAGS (shared by lib and swig) Swapping out preset keys until I work out some of their issues. Modifying QA tests for the sample tags. By default, it only checks the sizes of the tags since order is not specified or guarenteed. Block is a gr_block, so this sets its relative rate. Was required for using in the QA of the sample tags code. Removing global pmt constants. Were causing segfaults during make check. Must fix this later. Fixing up the UHD sample tag example to take command line options. Swapping order of testing rrate. Changing propagation policy enum type name and making a few other minor edits. Changing API for gr_skiphead to use uint64_t for the offset instead of size_t (still unsigned). Fixes issue #304. Adding typedef for uint64_t and int64_t so we can use them through SWIG. ... Passes make distcheck.
| * Updating audio_jack to new interface for creating a client. Fixes depricated ↵Tom Rondeau2010-11-092-5/+15
| | | | | | | | warning.
* | Regenerated Makefile.swig.gen'sEric Blossom2010-12-031-5/+5
| |
* | Rename libguile- to libguile-gnuradio- to match guile library naming convention.Eric Blossom2010-12-031-1/+1
| | | | | | | | | | The stuff in gnuradio-core ends up with funky names, but that could be fixed by renaming gnuradio_core_filter.i -> core_filter.i etc.
* | Update .gitignore'sEric Blossom2010-11-241-0/+3
| |
* | Major Makefile.am housecleaning. Passes distcheck.Eric Blossom2010-11-241-12/+7
| | | | | | | | | | | | | | | | | | Move all occurrences of swig_built_sources out of Makefile.am's. Move all SWIG related use of BUILT_SOURCES out of Makefile.am's. Clean up 'if PYTHON' conditionalization in gr-* Still left to do: fix Makefile.swig CLEANFILES and no_dist_files such that they remove exactly the generated files.
* | Consistently use TESTS += in conditionalsEric Blossom2010-11-241-1/+2
| |
* | regeneratedRob Savoye2010-11-191-11/+23
| |
* | regeneratedEric Blossom2010-11-161-1/+1
| |
* | regeneratedEric Blossom2010-11-101-26/+9
| |
* | regeneratedEric Blossom2010-11-101-8/+7
| |
* | Remove swig generated python code from C++-only librariesEric Blossom2010-11-101-2/+1
| |
* | regeneratedEric Blossom2010-11-101-2/+5
| |
* | add load-extension supportRob Savoye2010-11-101-0/+10
| |
* | regenerateEric Blossom2010-11-101-6/+6
| |
* | Rengenerate Makefile.swig.gen'sEric Blossom2010-11-101-2/+3
| |
* | add python/*.cc to SOURCES so dependencies work properly.Rob Savoye2010-11-101-2/+3
| |
* | regeneratedRob Savoye2010-11-101-182/+39
| |
* | regenerated after changes to the templateRob Savoye2010-11-101-14/+45
|/
* Updating all of the QA code that I can actually test to work with the new ↵Tom Rondeau2010-10-041-3/+3
| | | | XML output runners.
* Modify all block factories to use gnuradio::get_initial_sptr.Eric Blossom2010-08-032-4/+4
|
* Make C++ shared libraries versionedJohnathan Corgan2010-05-282-3/+2
|
* Added git ignore files auto created from svn:ignore properties.git2009-08-142-0/+42
| | | | git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11592 221aa14e-8319-0410-a670-987f0aec2ac5
* Implements ticket:401 and ticket:402.jcorgan2009-07-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds several API functions to determine build constants at runtime, and a convenience command line program to display them: From C++: const std::string gr_prefix(); const std::string gr_sysconfdir(); const std::string gr_prefsdir(); const std::string gr_build_date(); const std::string gr_svn_date(); const std::string gr_svn_version(); const std::string gr_version(); From Python: gr.prefix() gr.sysconfdir() gr.prefsdir() gr.build_date() gr.svn_date() gr.svn_version() gr.version() The new binary is 'gnuradio' and installed on the path: $ gnuradio Program options: gnuradio [options]: -h [ --help ] print help message --prefix print gnuradio installation prefix --sysconfdir print gnuradio system configuration directory --prefsdir print gnuradio preferences directory --builddate print gnuradio build date (RFC2822 format) -v [ --version ] print gnuradio version --svnversion print SVN repository version (SVN format) --svndate print SVN repository date $ git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11418 221aa14e-8319-0410-a670-987f0aec2ac5
* Defined a gr_sysconfdir in Makefile.commonjblum2009-06-131-1/+1
| | | | | | | | Modified uses of etcdir to use gr_sysconfdir. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11185 221aa14e-8319-0410-a670-987f0aec2ac5
* Merged r11123:11148 from jcorgan/np into trunk.jcorgan2009-05-273-12/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Doc fixes.eb2009-05-222-4/+4
| | | | git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11088 221aa14e-8319-0410-a670-987f0aec2ac5
* Merged r10554:10595 from michaelld/am_swig_4 into trunk. Major overhaul of ↵jcorgan2009-03-142-53/+290
| | | | | | 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
* Merged r10504:10528 from michaelld/fix_local_data_install into trunk. Trunk ↵jcorgan2009-02-261-3/+2
| | | | | | passes distcheck. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10529 221aa14e-8319-0410-a670-987f0aec2ac5
* Merged r10385:10413 from michaelld/swig_tweaks into trunk. Passes distcheck.jcorgan2009-02-101-7/+2
| | | | git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10414 221aa14e-8319-0410-a670-987f0aec2ac5
* Merged r10288:10370 from michaelld/swigpythonargs into trunk. Passes distcheck.jcorgan2009-02-021-7/+5
| | | | git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10371 221aa14e-8319-0410-a670-987f0aec2ac5
* General housekeeping--removing ancient cruft mostly.jcorgan2009-01-272-43/+0
| | | | git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10315 221aa14e-8319-0410-a670-987f0aec2ac5
* Fix compiler warnings across the tree. Adds --enable-warnings-as-errors ↵jcorgan2008-08-241-0/+2
| | | | | | configure option. Currently compiles with no warnings with GCC 4.2.3 on Ubuntu 8.04. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9396 221aa14e-8319-0410-a670-987f0aec2ac5
* Merged build_config branch into trunk:michaelld2008-02-211-1/+1
| | | | | | | | | | | | | | | | | | | | | 1) Modified top-level run_tests.sh script: a) to execute code for setting or changing the library search path in Darwin (DYLD_LIBRARY_PATH) or Windows (PATH) on those host OSs only, not on other host OSs. b) Added local (to the component making check) library paths to those same search paths, since libtool doesn't do it (unlike in Linux). 2) In all AM Makefiles -except those dealing with USRP firmware-, changes INCLUDES to AM_CPPFLAGS since the former is deprecated. 3) Changed AM_CPPFLAGS to FW_INCLUDES for commands .c.rel in USRP firmware. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@7769 221aa14e-8319-0410-a670-987f0aec2ac5
* Merged r7478:7608 from michaelld/t186 into trunk. Adds ability to compile ↵jcorgan2008-02-081-11/+9
| | | | | | GNU Radio modules individually, using already installed dependent libraries and include files. New functionality is enabled using --with-* on configure command line; existing build options should remain unchanged. Nice work by Michael Dickens, still needs documentation update on wiki. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@7617 221aa14e-8319-0410-a670-987f0aec2ac5
* Implements ticket:206jcorgan2007-11-271-2/+2
| | | | git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@7041 221aa14e-8319-0410-a670-987f0aec2ac5
* Updated license from GPL version 2 or later to GPL version 3 or later.eb2007-07-2111-11/+11
| | | | git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@6044 221aa14e-8319-0410-a670-987f0aec2ac5
* Merged r4632:4645 on jcorgan/linking into trunk. Cleans up linking issues ↵jcorgan2007-02-261-1/+1
| | | | | | with libtool and already installed libraries. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@4646 221aa14e-8319-0410-a670-987f0aec2ac5
* Updated FSF address in all files. Fixes ticket:51eb2006-09-1311-22/+22
| | | | git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3534 221aa14e-8319-0410-a670-987f0aec2ac5
* Implements ticket:3 and fixes ticket:42. The common functionality of jcorgan2006-08-271-45/+8
| | | | | | | | | | run_tests.in for Python QA has been extracted into run_tests.sh in the top-level and the individual run_tests just invoke that with the right path parameters. Also fixed Cygwin 'make check' bug by adding fix by Don Ward. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3440 221aa14e-8319-0410-a670-987f0aec2ac5
* More fixes for ticket:35, which was reopened.jcorgan2006-08-161-4/+3
| | | | git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3291 221aa14e-8319-0410-a670-987f0aec2ac5
* Fixes for ticket:10, ticket:18, and ticket:19. Merged r3194:3215 fromjcorgan2006-08-072-6/+6
| | | | | | | | | | | | /gnuradio/branches/developers/jcorgan/ticket-10. 'make distcheck' now successfully completes on a machine that has never had gnuradio installed before. In addition, several cleanups and refactoring of build system code have been applied. NOTE: gr-audio-portaudio, gr-audio-osx, and gr-audio-windows have not been fully tested and will need verification by the maintainers of these components. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3216 221aa14e-8319-0410-a670-987f0aec2ac5
* Houston, we have a trunk.jcorgan2006-08-0314-0/+1058
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3122 221aa14e-8319-0410-a670-987f0aec2ac5