summaryrefslogtreecommitdiff
path: root/gr-howto-write-a-block
Commit message (Collapse)AuthorAgeFilesLines
* gr math simplification:Josh Blum2011-01-171-17/+0
| | | | | | | | | Replaces gr_gcd, gr_isnan, and gr_signbit one-time instances with boot math calls. No point in wrapping these utility math functions into gnuradio when they are 1) provided by boost 2) only called once Removes gr_math.cc, and configure checks for isnan.
* Add missing .test files to tarball.Eric Blossom2010-12-271-0/+2
|
* Use load-extension-global instead of load-extensionEric Blossom2010-12-101-1/+1
|
* Change shell function definitions to use POSIX syntaxEric Blossom2010-12-071-7/+7
|
* Update comments for --enable-guile, reflecting that it's disabled by default.Eric Blossom2010-12-061-1/+3
|
* Add guile QA code to gr-howto-write-a-blockEric Blossom2010-12-067-2/+248
|
* Add prefix = NONE test to gr-howto-write-a-blockEric Blossom2010-12-061-1/+7
|
* Fix load-extension stringsEric Blossom2010-12-041-1/+1
|
* Move swig related suffix/pattern rules from Makefile.common to Makefile.swig.Eric Blossom2010-12-042-31/+30
|
* Fix swig syntax error triggered in python/std_complex.iEric Blossom2010-12-041-3/+1
|
* Some piece of this commit triggers a syntax error running swig:Eric Blossom2010-12-048-17/+124
| | | | | | | | | | make[2]: Entering directory `/home/eb/git/wf-exec/gr-howto-write-a-block/swig' Compile .i to .py /usr/bin/swig -fvirtual -python -modern -keyword -w511 -outdir . -I/home/eb/git/wf-exec/gr-howto-write-a-block/lib -I/home/eb/install/include/gnuradio -I/home/eb/install/include/gnuradio/swig \ -MD -MF python/howto_swig.Std \ -module howto_swig -o python/howto_swig.cc -oh python/howto_swig.h howto_swig.i /usr/share/swig/1.3.40/python/std_complex.i:12: Error: Syntax error in input(1). make[2]: *** [howto_swig.py] Error 1
* Make gr-howto-write-a-block work again...Eric Blossom2010-12-036-73/+151
| | | | | | Copied Makefile.swig, Mkefile.swig.gen.t from .. Renamed howto.i to howto_swig.i Regenerated Makefile.swig.gen
* Fix EXTRA_DIST in gr-howto-write-a-blockEric Blossom2010-12-034-4/+4
|
* 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.
* Major Makefile.am housecleaning. Passes distcheck.Eric Blossom2010-11-244-31/+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.
* Update .gitignoreEric Blossom2010-11-171-0/+3
|
* regeneratedEric Blossom2010-11-161-1/+1
|
* Add _python that was dropped from Makefile.swig.gen.tEric Blossom2010-11-161-1/+1
|
* add other .i files to EXTRA_DIST so it'll almost distcheckRob Savoye2010-11-151-0/+2
|
* make howto build the new wayRob Savoye2010-11-155-363/+181
|
* updated by bootstrapRob Savoye2010-11-152-66/+28
|
* add support for --enable-guileRob Savoye2010-11-151-0/+17
|
* add load-extension supportRob Savoye2010-11-101-0/+10
|
* Merge branch 'master' into nextJohnathan Corgan2010-10-061-2/+9
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: Fixed setting of USB_LIBS for *win* Fix so that non-Darwin OSs use USB_LIBS correctly for linking New way of checking for various LIBUSB names; for legacy version, make sure the symbol 'usb_debug' exists (so-as to not use the 'compat' version). Finally, the simple fix for the qtgui issues; also, changed the naming scheme output from _moc to .moc files because I think this looks cleaner. Removing Waterfall3DPlot. The qwt_plot3d is too much of a hassle to deal with and the plotting is not that stable even when it does work. This does not change the API. Fixed gitignore to reflect changes in moc/ui file naming. Fixes a lot of warnings by cleaning up namespace issues. Finally, the simple fix for the qtgui issues; also, changed the naming scheme output from _moc to .moc files because I think this looks cleaner. Removing qwtplot3d dependency and fixing a missed include in waterfallGlobalData.h. Removing Waterfall3DPlot. The qwt_plot3d is too much of a hassle to deal with and the plotting is not that stable even when it does work. This does not change the API. Updating all of the QA code that I can actually test to work with the new XML output runners. Updating all python QA programs in gnuradio-core to output XML files. Adding gr_xmlrunner.py to Makefile. Adding XML output to Python unittests. Modified gcell and gr-atsc cppunit tests to output XML files, too. Gcell needs testing. Moving XML output files from cppunit tests to $HOME/.gnuradio/unittests. Adding an XML outputter for the CPP Unit tests. This is to a) store the 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.
| * Updating all of the QA code that I can actually test to work with the new ↵Tom Rondeau2010-10-041-2/+9
| | | | | | | | XML output runners.
* | Merge branch 'master' into nextEric Blossom2010-09-142-176/+236
|\| | | | | | | | | | | | | | | * master: Avoid divide by zero in persistence code when using default args Update config.guess and config.sub in gr-howoto-write-a-block too Update config.guess and config.sub from canonical home Update script to pull config.* from git repo
| * Update config.guess and config.sub in gr-howoto-write-a-block tooEric Blossom2010-09-122-176/+236
| |
* | Merge branch 'master' into nextJohnathan Corgan2010-08-032-4/+4
|\|
| * Modify all block factories to use gnuradio::get_initial_sptr.Eric Blossom2010-08-032-4/+4
| |
| * Update revision to 3.3.0v3.3.0Johnathan Corgan2010-06-021-1/+1
| |
* | Merge branch 'master' into nextJohnathan Corgan2010-06-022-10/+15
|\| | | | | | | | | | | | | | | | | | | | | * master: gcell: make versioned libraries gnuradio-core: fix missing linker flags for boost_program_options howto: fix incorrect include path build: redo GR_GIT for portability build: use date format string instead of -R for portability gnuradio-core: fix typo in doxygen header gr-qtgui: add include file for gcc 4.4.1
| * howto: fix incorrect include pathJohnathan Corgan2010-06-021-1/+1
| |
| * build: redo GR_GIT for portabilityJohnathan Corgan2010-06-021-9/+14
| |
| * Update revision to 3.3.0-rc3v3.3.0-rc3Johnathan Corgan2010-05-301-1/+1
| |
* | Merge branch 'master' into nextJohnathan Corgan2010-05-305-25/+54
|\| | | | | | | | | | | | | | | | | * master: howto: make versioned libraries Make C++ shared libraries versioned build: refactor GR_GIT and GR_VERSION Update howto revision to 3.4git
| * howto: make versioned librariesJohnathan Corgan2010-05-304-23/+52
| |
| * Update revision to 3.3.0-rc2v3.3.0-rc2Johnathan Corgan2010-05-271-1/+1
|/
* Fix erroneous file modesJohnathan Corgan2010-05-252-0/+0
|
* Update revision to release 3.3.0-rc1, update autotoolsv3.3.0-rc1Johnathan Corgan2010-05-213-177/+155
|
* howto: fix make check for win32, darwin (untested)Don Ward2010-05-161-0/+24
|
* Update revision to 3.3.0-rc0v3.3.0-rc0Johnathan Corgan2010-05-122-14/+9
|
* doc fix (in generated file)Eric Blossom2010-03-041-2/+2
|
* doc fixEric Blossom2010-03-041-2/+2
|
* Fix distcheck failure in gr-howto-write-a-blockJohnathan Corgan2010-03-041-1/+1
| | | | Some of the swig include files were not getting put into the dist tarball
* Refactor gr-howto-write-a-block such that it no longer installs intoEric Blossom2010-03-049-55/+52
| | | | | | | | | | | | | | | | | the gnuradio python namespace, but rather in the howto namespace. This allows it to be installed under a separate --prefix in the common case where the user doing the "out of tree build" is going to be installing their new and/or modified code somewhere other than the system installation directories. Any code that uses these blocks should now import them using: import howto instead of from gnuradio import howto
* update config.guess, config.sub and INSTALLEric Blossom2010-01-273-174/+270
|
* howto: cleanup for mergeJohnathan Corgan2009-11-133-11/+10
|
* howto: add README.hackingJohnathan Corgan2009-11-133-11/+103
|
* howto: added howto applicationJohnathan Corgan2009-11-126-1/+438
|
* howto: add GRC wrappers to squaring blocksJohnathan Corgan2009-11-127-1/+72
|