summaryrefslogtreecommitdiff
path: root/gr-fft/lib
Commit message (Collapse)AuthorAgeFilesLines
* fft: fixed Nuttall window naming from nuttal to nuttall.Tom Rondeau2014-11-241-1/+19
| | | | The old calls to nuttal are still there to preserve the API but they just point to the nuttall versions and their docs have been updated to indicate these calls are deprecated. Will be removed in 3.8.
* cmake: follow-up to previous mergeTom Rondeau2014-08-081-1/+0
|
* Merge branch 'maint'Tom Rondeau2014-08-081-1/+0
|\ | | | | | | | | | | Conflicts: gnuradio-runtime/CMakeLists.txt gnuradio-runtime/lib/controlport/CMakeLists.txt
| * controlport: removing use of ice for a controlport rpc.Tom Rondeau2014-08-081-1/+0
| | | | | | | | This effectively disables the use of ControlPort for now until we build in a new middleware layer. The ControlPort API and interfaces exist but will function as nops for now.
* | build: better support for static libs.Tom Rondeau2014-07-181-0/+12
|/ | | | | | Now builds shared libraries with ControlPort (if ControlPort is enableed). Static libs still without ControlPort. Added proper Option and output message in cmake for Static Libs on/off.
* Merge branch 'maint'Tom Rondeau2014-07-0710-60/+60
|\
| * Removing trailing/extra whitespaces before release.Tom Rondeau2014-07-0710-60/+60
| | | | | | | | We should be more careful about letting these into the code in the future. In emacs, we can use (add-hook 'before-save-hook 'delete-trailing-whitespace).
* | build: adds an ENABLE_STATIC_LIB option to cmake to build static (.a) ↵Tom Rondeau2014-06-281-0/+13
|/ | | | versions of the libraries.
* filter: remove use of magic numbers for calculating number of taps in firdes ↵Tom Rondeau2013-11-181-1/+18
| | | | | | filters. New way uses known max attenuation values for the windows to estimate the number of taps used in a filter. This produces smaller filters but needed QA code with pre-defined values updated.
* fft: optimization; bug fixes for kaiser window and added windows to win_type.Tom Rondeau2013-11-181-4/+6
| | | | filter: fixed width_factor to include new window types and add protection around array.
* fft: Moved all window building functions into C++.Tom Rondeau2013-11-052-0/+334
| | | | | | | | | | | | Remove window.py. All windows built using C++ functions. Exported into Python in same module (from gnuradio.fft import window). Removed all window building work in firdes, too. firdes.window now makes a direct call to fft.window.build with same parameters. Added documentation for window functions, including references to where to find coefficients and equations for (most of) the windows. All changes should not affect existing code. f
* fft: fix missing set_window call on initializationJohnathan Corgan2013-08-282-0/+4
|
* fft: adding ctrlport psd probe blockTim O'Shea2013-05-303-0/+249
|
* fft: moved include dir to gnuradio/fftJohnathan Corgan2013-04-295-8/+8
|
* runtime: converting runtime core to gr namespace, gnuradio include dir.Tom Rondeau2013-04-294-15/+15
|
* gruel: moved gruel into subdirs of gnuradio-runtime.Tom Rondeau2013-04-011-1/+0
| | | | PMTs are handled slightly different and are installed into their own module and include dir.
* runtime: migrate remaining gnuradio-core contents into gnuradio-runtimeJohnathan Corgan2013-03-261-2/+2
|
* Merge branch 'master' into nextTom Rondeau2013-03-052-1/+70
|\ | | | | | | | | | | | | | | Conflicts: gr-atsc/src/lib/CMakeLists.txt gr-noaa/lib/CMakeLists.txt gr-trellis/src/lib/CMakeLists.txt gr-video-sdl/src/CMakeLists.txt
| * Added Windows DLL resource filesNicholas Corgan2013-03-052-1/+70
| |
* | ctrlport: allowing all components to use ControlPort.Tom Rondeau2013-03-011-0/+5
| |
* | Merge master/fix_build_dir_order into next, then fix conflicts and redo come ↵Michael L Dickens2013-01-041-1/+2
|\| | | | | | | of the INCLUDE_DIRS order
| * Tweak INCLUDE dirs such that INCLUDE_DIRECTORIES and LINK_DIRECTORIES are ↵Michael L Dickens2013-01-011-1/+2
| | | | | | | | ordered as: internal build and source for this component, other components (internal build and source, or already installed), non-project non-system dependencies (e.g., Qt, Boost, Python), system dependencies (e.g., CoreAudio).
* | Merge branch 'master' into nextJohnathan Corgan2012-11-141-2/+5
|\| | | | | | | | | | | | | | | | | Conflicts: gr-atsc/src/lib/CMakeLists.txt gr-digital/python/CMakeLists.txt gr-trellis/src/python/CMakeLists.txt gr-vocoder/python/CMakeLists.txt gr-wavelet/python/CMakeLists.txt
| * fft: restore FFTW3F_THREADS support for fft.ccJosh Blum2012-11-141-0/+5
| |
| * fft: removed non-existant FFT_LIBRARY_DIRS FFT_LIBRARIESJosh Blum2012-11-141-2/+0
| |
* | Merge branch 'master' into nextTom Rondeau2012-11-101-1/+1
|\|
| * fft: fixing float-in, complex-out fft block to use the right io sig.Tom Rondeau2012-11-101-1/+1
| |
* | fft: adding a malloc for doubles.Tom Rondeau2012-07-031-0/+6
|/ | | | In core for master, also exporting symbols for use externally.
* build: reworking cmake structure for include and lib directories. I think ↵Tom Rondeau2012-05-021-7/+4
| | | | | | this is cleaner. We also probably don't need the link_directories (according to the cmake guys, this is no longer necessary).
* fft: put helper classes in namespaceJohnathan Corgan2012-04-2910-421/+435
|
* gr-fft: creates a gr-fft top-level component.Tom Rondeau2012-04-279-0/+1002