summaryrefslogtreecommitdiff
path: root/gruel
Commit message (Collapse)AuthorAgeFilesLines
...
* the librariesJosh Blum2011-10-231-8/+1
|
* pmt: fix #446 by putting pmt swig into namespaceJosh Blum2011-10-201-4/+8
|
* Merge branch 'next' of http://gnuradio.org/git/gnuradio into nextJosh Blum2011-10-191-3/+2
|\
| * Removing usrp, usrp2, gr-usrp, gr-usrp2. Everything is moving to using UHD. ↵Tom Rondeau2011-10-191-3/+2
| | | | | | | | Also removes related M4 and dependency requirements for USRP-related libs.
* | gr: the CMakeLists.txt took a chill pillJosh Blum2011-10-088-71/+71
| |
* | Merge branch 'next' of http://gnuradio.org/git/gnuradio into nextJosh Blum2011-09-281-0/+18
|\|
| * Merge branch 'master' into nextJohnathan Corgan2011-09-271-0/+18
| |\
| | * swig: language independent exception handlerJosh Blum2011-09-271-0/+18
| | |
* | | gruel: added missing pmt swig install ruleJosh Blum2011-09-241-1/+1
| | |
* | | gruel: removed merge junk in makefileJosh Blum2011-08-191-2/+0
| | |
* | | atsc: did work on symbol visibility and minor tweaks in qa code for MSVCJosh Blum2011-08-031-0/+7
| | |
* | | cmake: language tweak for component group descriptionJosh Blum2011-08-021-1/+1
| | |
* | | gr: squashed cmakelists.txt into one commitJosh Blum2011-07-2010-1/+511
| | |
* | | gruel: support for windows API set realtime schedulingJosh Blum2011-07-201-0/+32
| | |
* | | gruel: API declaration macros for gruel class and function symbolsJosh Blum2011-07-2019-226/+286
| | |
* | | gr: replaced uses of snprintf with boost format in common code build by MSVCJosh Blum2011-07-201-6/+5
|/ /
* | Merge branch '8psk' into nextTom Rondeau2011-07-171-6/+36
|\ \ | |/ |/| | | | | Conflicts: gr-msdd6000/src/Makefile.swig.gen
| * Merge branch 'master' into 8pskTom Rondeau2011-06-132-0/+125
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: gr-qtgui/lib/qtgui_time_sink_c.cc gr-trellis/src/lib/Makefile.am gr-trellis/src/lib/calc_metric.h gr-trellis/src/lib/trellis.i gr-trellis/src/lib/trellis_constellation_metrics_cf.i gr-trellis/src/lib/trellis_metric_type.h gr-trellis/src/lib/trellis_sccc_encoder_XX.i.t
| * \ Merge branch 'master' into 8pskTom Rondeau2011-06-033-1/+30
| |\ \
| * | | build: committing updated Makefile.swig.gen files.Tom Rondeau2011-05-081-6/+36
| | | |
* | | | gr: added to the .gitignores to various components for in-tree buildsJosh Blum2011-07-032-0/+3
| |_|/ |/| |
* | | gruel: adding high resolution timer to gruelJosh Blum2011-06-072-0/+125
| |/ |/|
* | update python installed filestttx2011-05-242-1/+5
| |
* | fixing file trackingtttx2011-05-241-0/+0
| |
* | fixing pmt swig python installed filestttx2011-05-242-0/+25
|/
* build: updating Makefiles for newer linker requirements.Tom Rondeau2011-04-011-1/+5
|
* gruel: using a copy of swig's intrusive_ptr.i to support the PMT wrapping.Tom Rondeau2011-03-263-6/+106
|
* gruel: added missing ignoresJohnathan Corgan2011-03-152-0/+4
|
* Merge branch 'next' of gnuradio.org:gnuradio into nextTom Rondeau2011-03-155-47/+64
|\
| * Merge remote branch 'jblum/wip/attributes' into nextJohnathan Corgan2011-03-142-1/+58
| |\ | | | | | | | | | | | | * jblum/wip/attributes: created gruel/attributes.h to house compiler specific attribute macros
| | * created gruel/attributes.h to house compiler specific attribute macrosJosh Blum2011-03-142-1/+58
| | | | | | | | | | | | | | | | | | | | | | | | | | | replaced instances of __attribute__ with __GR_ATTR from attributes.h what else has compiler specific attributes? volk - volk is stand-alone, needs its own attributes.h gcell - not touching that, probably gcc only anyways usrp2 firmware - does not matter to host build
| * | gruel thread simplification:Josh Blum2011-02-273-46/+6
| |/ | | | | | | | | | | | | | | | | | | Removed get_new_timeout from thread.h (usrp2_vrt carryover) Basically it was created because of a misunderstanding of the time types; and its only ever called once. This also removes thread.cc Call posix_time::milliseconds in usrp2 control.cc. Notice that it passes a time_duration rather than a ptime (aka system time). Added #include <deque> to gr_buffer.h. It turns out that boost posix_time.hpp implicitly included the deque header which was missing from gr_buffer.h Replaced the include for thread.hpp with only the includes for the boost thread types mentioned in gruel/thread.h. Also, making use of the scoped_lock typedef that comes with boost thread locks. boost 3.5 safe.
* | gruel: fixed swig interface file to dereference pmt_t.Tom Rondeau2011-03-151-0/+5
| |
* | gruel: fixing structure. Passes make check.Tom Rondeau2011-03-147-84/+116
| |
* | gruel: SWIGing Gruel into Python to access PMTs.Tom Rondeau2011-03-1412-7/+1150
|/
* gruel: generate pmt_serial_tags with python, removes guile dependencyJosh Blum2011-02-024-124/+59
|
* Updating copyright.Tom Rondeau2011-01-222-2/+2
|
* cleanup mkdir usage with boost filesystem:Josh Blum2011-01-182-43/+10
| | | | | | | | | | Replaced copy/pasted code and MKDIR_TAKES_ONE_ARG #ifdefs with portable boost filesystem path and directory creation. Gets the correct home directory on windows systems: APPDATA. Replaces large amounts of copypasta with single lines of code. Removes MKDIR_TAKES_ONE_ARG configuration checks from m4 files. Adds boost filesystem and system library as build dependencies.
* Merge branch 'master' into nextTom Rondeau2010-12-231-6/+3
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: clean now gets rid of unittest results. Passes distcheck. Modifying the unittest output. XML files are no longer written outside of the build tree. A new patch for fixing the alsa restart issue. Submitted by Volker Schroer. Reverting last change in alsa. PFB resampler: fix it this way to avoid the signed/unsigned warning. PFB resampler: fixes bug where filter could be looking past the number of inputs. Adding a "change in progress" check to alsa sink. Added a check in alsa sink if error has occurred due to blocking; if so, it will just drop samples and not get backed up. Patch taken from Marcus Leech 10/29/2010. Conflicts: Makefile.common gnuradio-core/src/lib/filter/gr_pfb_arb_resampler_ccf.cc
| * Modifying the unittest output. XML files are no longer written outside of ↵Tom Rondeau2010-12-231-6/+3
| | | | | | | | the build tree.
* | Major Makefile.am housecleaning. Passes distcheck.Eric Blossom2010-11-244-9/+10
|/ | | | | | | | | 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.
* rearrange includes to always be: internal GR, external, with GR.Michael Dickens2010-10-093-7/+8
|
* Moving XML output files from cppunit tests to $HOME/.gnuradio/unittests.Tom Rondeau2010-10-021-2/+51
| | | | This also adds a new utility gr_unittests.h, which sets up the path for output files.
* Adding an XML outputter for the CPP Unit tests. This is to a) store the ↵Tom Rondeau2010-09-301-1/+5
| | | | output information but also b) for integration with Hudson for logging and displaying the results during the build stages. This only covers a few cases so far and I need to define a better place to save the output files.
* Add support for uint64_t to pmt.Eric Blossom2010-09-116-0/+99
|
* Make C++ shared libraries versionedJohnathan Corgan2010-05-282-2/+2
|
* Add gruel::thread as synonym to boost::thread for convenienceJohnathan Corgan2010-04-131-0/+1
|
* Removed omnithreads dependency from libusrp2Johnathan Corgan2010-04-113-2/+45
|
* Replace some calls to pmt constructors with mp(foo) shorthand.Eric Blossom2010-03-081-41/+41
|
* Convert pmt_dict type into an immutable data structure.Eric Blossom2010-03-084-126/+128
| | | | This change allows us to safely pass dicts in messages.