summaryrefslogtreecommitdiff
path: root/gnuradio-core/src/lib
Commit message (Collapse)AuthorAgeFilesLines
...
* | | core: removing single_pole_irr header from core that is no longer used.Tom Rondeau2013-03-061-191/+0
| | |
* | | core: removing goertzel and fft implementations from core; see gr-fft.Tom Rondeau2013-03-066-660/+0
| | | | | | | | | | | | Also cleaning up some other leftovers.
* | | blocks: removing blocks moved into gr-blocks:Tom Rondeau2013-03-0627-1616/+0
| | | | | | | | | | | | message_strobe, message_debug, message_source, message_sink, message_burst_source, peak_detector, moving_average.
* | | Merge branch 'master' into nextTom Rondeau2013-03-052-1/+71
|\| | | | | | | | | | | | | | | | | | | | | | | 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/+71
| | |
* | | Merge branch 'master' into nextTom Rondeau2013-03-053-29/+29
|\| | | | | | | | | | | | | | Conflicts: gnuradio-core/src/lib/general/gr_prefs.cc
| * | prefs: pass strings by reference. Also cleans up a comma in gr_modtool that ↵Tom Rondeau2013-03-053-28/+29
| | | | | | | | | | | | made a string into a tuple (and C++ angry).
* | | Merge branch 'master' into nextTom Rondeau2013-03-051-5/+1
|\| |
| * | log: simplifying makefile since this variable is always set, even if blank.Tom Rondeau2013-03-051-5/+1
| | |
* | | core: boost::filename3::path::/ operator works on older boost verions than /=Tim O'Shea2013-03-041-1/+1
| | |
* | | Merge branch 'master' into nextTom Rondeau2013-03-041-2/+2
|\| | | | | | | | | | | | | | Conflicts: gnuradio-core/src/lib/filter/gr_fir_sysconfig_x86.cc
| * | log: more minor fixups integrating gr-logger.Tom Rondeau2013-03-042-6/+7
| | |
* | | Merge branch 'master' into nextTom Rondeau2013-03-0312-2/+965
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: gnuradio-core/CMakeLists.txt gnuradio-core/gnuradio-core.conf gnuradio-core/src/lib/filter/gr_fir_sysconfig_x86.cc gnuradio-core/src/lib/runtime/runtime.i gr-atsc/src/lib/CMakeLists.txt gr-audio/lib/CMakeLists.txt gr-comedi/src/CMakeLists.txt gr-digital/lib/CMakeLists.txt gr-howto-write-a-block/CMakeLists.txt gr-howto-write-a-block/lib/CMakeLists.txt gr-noaa/lib/CMakeLists.txt gr-qtgui/lib/CMakeLists.txt gr-trellis/src/lib/CMakeLists.txt gr-uhd/lib/CMakeLists.txt gr-video-sdl/src/CMakeLists.txt gr-vocoder/lib/CMakeLists.txt gr-wavelet/lib/CMakeLists.txt
| * | log: adding default loggers to all gr_blocks to make using them simpler.Tom Rondeau2013-03-0312-224/+432
| | | | | | | | | | | | | | | | | | log: improving logger configuration and default behavior. log: changed name from gr_log to gr_logger (felt it could be confuse with the math function log). docs: moved logging information out to its own page.
| * | Merge branch 'master' into gr_logTom Rondeau2013-03-01129-379/+5404
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: cmake/Modules/GrMiscUtils.cmake docs/doxygen/other/main_page.dox gnuradio-core/gnuradio-core.conf.in gnuradio-core/src/lib/swig/CMakeLists.txt gr-digital/lib/CMakeLists.txt gr-howto-write-a-block/CMakeLists.txt gr-qtgui/lib/CMakeLists.txt gr-video-sdl/src/CMakeLists.txt
| * | | log: cleaned up naming, added gr_log_get_level function.Tom Rondeau2013-03-013-71/+157
| | | | | | | | | | | | | | | | Changed the name of the logger in the xml to use a better name.
| * | | Merge branch 'master' into gr_logTom Rondeau2012-09-0664-496/+1811
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: CMakeLists.txt cmake/Modules/GrMiscUtils.cmake docs/doxygen/other/build_guide.dox gnuradio-core/CMakeLists.txt gr-digital/lib/CMakeLists.txt
| * | | | log: fixed gr_log to be usable in Python.Tom Rondeau2012-06-134-16/+21
| | | | | | | | | | | | | | | | | | | | Works with log4cxx installed and not installed.
| * | | | log: added a macro and routine to set log level from config file.Tom Rondeau2012-06-134-1/+118
| | | | | | | | | | | | | | | | | | | | Also worked on documentation of logging features.
| * | | | log: Restructure config file handling for gr-log.Tom Rondeau2012-06-115-119/+80
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The xml config file is installed into prefix/etc/gnuradio. A new LOG section is added to gnuradio-core.conf that has an item log_file to point to the log file to be used. If the log_file is not found, we can now set the file to "" to use the BasicConfigurator for very simple console logging. This is what will be used during 'make test'. In gr_fir_sysconfig_x86.cc, all std::cerr calls are replaced with gr-log to easily turn them on/off.
| * | | | Fixing up the gr-log capabilities.Tom Rondeau2012-06-085-45/+48
| | | | | | | | | | | | | | | | | | | | Better handling of enable/disable function, easier integration with all components if log4cxx is or is not there. All components have been updated to be able to use logging. Docs update, too.
| * | | | core: Adds a gr-log concept for easy logging at various levels.Tom Rondeau2012-06-0711-0/+594
| | | | | | | | | | | | | | | | | | | | | | | | | Uses log4cxx and is optional. Macro based and macros are simple pass-throughs if this dependency does not exist or if the gr-log is disabled.
* | | | | blocks: removing mute, probe_signal, probe_signal_v, and sample_and_hold.Tom Rondeau2013-03-0215-665/+0
| | | | |
* | | | | blocks: removing references to argmax and max.Tom Rondeau2013-02-282-4/+0
| | | | |
* | | | | Merge branch 'master' into nextTom Rondeau2013-02-286-322/+0
|\ \ \ \ \ | | |_|/ / | |/| | | | | | | | | | | | | | | | | | Conflicts: gr-blocks/python/qa_argmax.py gr-blocks/python/qa_max.py
* | | | | core: removed PDU related blocksJohnathan Corgan2013-02-2821-1391/+0
| | | | |
* | | | | Merge branch 'next' of gnuradio.org:gnuradio into nextTom Rondeau2013-02-2716-591/+15
|\ \ \ \ \
| * | | | | core: removed gr_tuntap_pduJohnathan Corgan2013-02-275-252/+0
| | | | | | | | | | | | | | | | | | | | | | | | Replaced by gr::blocks:tuntap_pdu
| * | | | | Merge branch 'master' into nextJohnathan Corgan2013-02-273-14/+15
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: gnuradio-core/src/lib/io/gr_pdu_to_tagged_stream.cc gnuradio-core/src/lib/io/gr_tagged_stream_to_pdu.cc
| | * | | | Merge branch 'wip/pdu-tuntap'Johnathan Corgan2013-02-273-14/+15
| | |\ \ \ \ | | | |_|_|/ | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: gr-blocks/include/blocks/CMakeLists.txt gr-blocks/lib/CMakeLists.txt gr-blocks/swig/blocks_swig.i
| | | * | | blocks: added gr::blocks::tuntap_pduJohnathan Corgan2013-02-273-14/+15
| | | | | | | | | | | | | | | | | | | | | | | | Linux only
| * | | | | blocks: removing (un)pack_k_bits from gnuradio-core.Tom Rondeau2013-02-278-325/+0
| | | | | |
* | | | | | ctrlport: adding option to toggle export of the list of edges on/off.Tom Rondeau2013-02-271-7/+9
|/ / / / /
* | | | | Merge branch 'next' of gnuradio.org:gnuradio into nextTom Rondeau2013-02-266-238/+6
|\ \ \ \ \
| * | | | | Merge branch 'master' into nextTom Rondeau2013-02-261-0/+6
| |\| | | |
| | * | | | core: adding a mutex as a protected member of gr_block for use in protecting ↵Tom Rondeau2013-02-261-1/+7
| | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | set and work function access to variables. This is used in gr-analog's noise_source and gr-filter's fir_filter_XXX since these two cause particular problems (in next's channel model). This shows the use of the mutex for general protection when needed.
| * | | | blocks: removing gr_transcendental from gnuradio-core.Tom Rondeau2013-02-265-238/+0
| | | | |
* | | | | Merge branch 'next' of gnuradio.org:gnuradio into nextTom Rondeau2013-02-2617-1000/+0
|\| | | |
| * | | | blocks: removing throttle, threshold, stretch from gnuradio-core.Tom Rondeau2013-02-2411-529/+0
| | | | |
| * | | | blocks: removed peak_detector2 and regenerate blocks from gnuradio-core.Tom Rondeau2013-02-248-471/+0
| | | | |
* | | | | core: adds a function to top_block to get a list of edges as a string.Tom Rondeau2013-02-228-1/+51
|/ / / / | | | | | | | | | | | | Also exports it through ControlPort.
* | | | ctrlport: added an option to allow enabling/disable of perfcounters over ↵Tom Rondeau2013-02-221-2/+4
| | | | | | | | | | | | | | | | ctrlport.
* | | | Merge branch 'next' of gnuradio.org:gnuradio into nextTom Rondeau2013-02-211-3/+5
|\ \ \ \
| * | | | Merge branch 'master' into nextJohnathan Corgan2013-02-211-3/+5
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: gnuradio-core/src/lib/general/gr_random_pdu.cc volk/apps/volk_profile.cc
| | * | | Merge remote-tracking branch 'ncorgan/random_pdu_fix'Johnathan Corgan2013-02-211-3/+4
| | |\ \ \
| | | * | | core: fixed gr_random_pdu MSVC incompatibility issueNicholas Corgan2013-02-181-3/+4
| | | | | |
| | * | | | core: removed vestigial debug line.Tom Rondeau2013-02-191-1/+0
| | | | | |
| | * | | | core: prefs setup looks for a local .gnuradio/config.conf to use.Tom Rondeau2013-02-191-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Order of precedence: env. vars -> .gnuradio/config.conf -> ${prefix}/etc/gnuradio/conf.d/*
* | | | | | blocks: removing blocks from gnuradio-core.Tom Rondeau2013-02-2121-1127/+0
|/ / / / / | | | | | | | | | | | | | | | delay, rms, packed_to_unpacked, unpacked_to_packed.
* | | | | ctrlport: made display type in ControlPort setup field into an options mask.Tom Rondeau2013-02-209-54/+78
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Options are used to determine default plot type, type of plots available, initial states. qtgui: fixed enabling stem plot to properly check the menu option.