summaryrefslogtreecommitdiff
path: root/docs/doxygen/other
Commit message (Collapse)AuthorAgeFilesLines
...
| * docs: More and better docs for tagged stream blocks (and some childs)Martin Braun2013-04-011-0/+1
| |
* | core: Made logger swig functionalMark Plett2013-03-261-5/+26
| | | | | | | | | | | | Improved logger swig so gr_logger is a logger object that is configurable Made logger config a singleton and made accessors for loggers from python
* | Merge branch 'master' into nextTom Rondeau2013-03-251-2/+2
|\|
| * docs: updated docs for logging levels with use of log4cpp.Tom Rondeau2013-03-251-2/+2
| |
| * Merge branch 'maint'Johnathan Corgan2013-03-141-1/+1
| |\
| | * docs: fixing a section name collision.Tom Rondeau2013-03-141-1/+1
| | |
* | | blocks: converting references to vector source/sink, null source/sink, nop, ↵Tom Rondeau2013-03-171-3/+3
| | | | | | | | | | | | copy, head, skiphead, vector_map, and annotator blocks to use gr-blocks.
* | | Merge branch 'master' into nextTom Rondeau2013-03-132-22/+25
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: gr-audio/lib/CMakeLists.txt gr-blocks/include/blocks/CMakeLists.txt gr-blocks/include/blocks/socket_pdu.h gr-blocks/lib/CMakeLists.txt gr-blocks/swig/blocks_swig.i gr-comedi/src/CMakeLists.txt gr-howto-write-a-block/lib/CMakeLists.txt gr-noaa/lib/CMakeLists.txt gr-qtgui/lib/CMakeLists.txt gr-uhd/lib/CMakeLists.txt gr-vocoder/lib/CMakeLists.txt gr-wavelet/lib/CMakeLists.txt
| * | log: fixes to replace log4cxx with log4cpp.Tom Rondeau2013-03-131-12/+13
| | |
| * | log: replacing log4cxx with log4cpp.Tom Rondeau2013-03-132-11/+13
| | |
* | | blocks: removing file_sink/source file_descriptor_sink/source form core and ↵Tom Rondeau2013-03-101-2/+2
| | | | | | | | | | | | moved all refs to gr-blocks.
* | | core: cleaning up remez and firdes in gnuradio-core; now in gr-filter.Tom Rondeau2013-03-061-3/+3
| | |
* | | core: removed all complex_to_<type> blocks from core; using gr-blocks.Tom Rondeau2013-03-061-2/+3
| | |
* | | docs: fixing a section name collision.Tom Rondeau2013-03-041-1/+1
| | |
* | | Merge branch 'master' into nextTom Rondeau2013-03-033-0/+205
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-031-0/+202
| | | | | | | | | | | | | | | | | | 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-016-92/+1348
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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: fixups after merge.Tom Rondeau2013-03-011-0/+2
| | |
| * | Merge branch 'master' into gr_logTom Rondeau2012-09-063-172/+167
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: CMakeLists.txt cmake/Modules/GrMiscUtils.cmake docs/doxygen/other/build_guide.dox gnuradio-core/CMakeLists.txt gr-digital/lib/CMakeLists.txt
| * | | log: added a macro and routine to set log level from config file.Tom Rondeau2012-06-131-15/+42
| | | | | | | | | | | | | | | | Also worked on documentation of logging features.
| * | | log: Restructure config file handling for gr-log.Tom Rondeau2012-06-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-081-3/+3
| | | | | | | | | | | | | | | | 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.
| * | | docs: adding info on gr-log feature.Tom Rondeau2012-06-072-0/+87
| | | |
* | | | docs: adding more documentation for ControlPort.Tom Rondeau2013-02-201-0/+217
| | | |
* | | | ctrlport: using prefs files to configure ctrlport.Tom Rondeau2013-02-191-2/+27
| | | | | | | | | | | | | | | | Prefs file points to ctrlport config file and uses it to set the properties.
* | | | Merge branch 'master' into nextTom Rondeau2013-02-171-0/+73
|\ \ \ \ | | |_|/ | |/| | | | | | | | | | Conflicts: gnuradio-core/src/python/gnuradio/gr/__init__.py
| * | | docs: adding section to main page explaining config files.Tom Rondeau2013-02-161-0/+73
| | | |
* | | | Merge branch 'master' into nextTom Rondeau2013-02-071-0/+65
|\| | |
| * | | core: working thread affinity concept into gr_blocks.Tom Rondeau2013-02-061-0/+65
| | | | | | | | | | | | | | | | | | | | | | | | Example in gnuradio-core/src/examples/mp-sched/affinity_set.py Documentation describing API in docs/doxygen/other/thread_affinity.dox
| * | | docs: fixing typo.Tom Rondeau2013-01-021-1/+1
| | | |
* | | | pmt: fixing a few files with older pmt naming style.Tom Rondeau2013-01-132-30/+29
| | | |
* | | | docs: fixing typo.Tom Rondeau2013-01-061-1/+1
| | | |
* | | | Merge branch 'pmt_rename' into nextTom Rondeau2013-01-021-91/+95
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: gnuradio-core/src/lib/io/gr_pdu.cc gruel/src/lib/pmt/pmt.cc gruel/src/lib/pmt/qa_pmt_prims.cc gruel/src/lib/pmt/unv_template.cc.t gruel/src/swig/pmt_swig.i
| * | | | pmt: updated pmt docs for new naming scheme.Tom Rondeau2013-01-021-91/+95
| | | | |
* | | | | blocks: removes blocks moved to gr-blocks from gnuradio-core.Tom Rondeau2012-12-211-13/+14
|/ / / / | | | | | | | | | | | | Also fixes up some other missing moves.
* | | | Merge branch 'master' into nextTom Rondeau2012-12-183-0/+623
|\| | |
| * | | docs: Restructuring main page to point to new pages describing features in GR.Tom Rondeau2012-12-182-0/+9
| | | |
| * | | docs: added a doxygen manual page describing PMT types and how to use them.Tom Rondeau2012-12-181-0/+348
| | | |
| * | | docs: Adding a page describing the message passing interface.Tom Rondeau2012-12-181-0/+266
| | | |
* | | | Merge branch 'master' into nextTom Rondeau2012-12-171-22/+23
|\| | |
| * | | docs: using full namspace for references in metadata.dox for proper linking.Tom Rondeau2012-12-171-22/+23
| | | |
* | | | Merge branch 'master' into nextTom Rondeau2012-12-141-0/+329
|\| | | | | | | | | | | | | | | | | | | Conflicts: gr-utils/src/python/CMakeLists.txt
| * | | blocks: moving file metadata sink/source to gr-blocks.Tom Rondeau2012-12-141-13/+19
| | | |
| * | | gruel: Enabling serialize/deserialize for PMT vectors.Tom Rondeau2012-12-141-3/+3
| | | |
| * | | core: adding itemsize key to metadata header to allow for vectorized items.Tom Rondeau2012-12-141-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | This also simplifies some code in the source since we're told exactly what the items size is and don't have to infer. Also adds an example using vector items.
| * | | docs: added a page detailing metadata format.Tom Rondeau2012-12-131-0/+322
| | | |
* | | | Merging ctrlport2 into next branch.Tom Rondeau2012-12-031-0/+38
| | | |
* | | | analog: removed noise and sig sources from core.Tom Rondeau2012-11-101-9/+9
| | | | | | | | | | | | | | | | Fixed QA code for components that do not use gr-analog.
* | | | analog: Removing all squelch blocks from gnuradio-core.Tom Rondeau2012-11-061-3/+3
| | | | | | | | | | | | | | | | Also updating some Python blocks and examples to properly pull from filter and analog.
* | | | Merge branch 'master' into nextTom Rondeau2012-10-032-0/+276
|\| | |