Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-02-12 | Merge remote-tracking branch 'reynwar/python_msg' | Johnathan Corgan | |
2013-02-05 | core: adding gr_random_pdu message passing block | Tim O'Shea | |
2013-01-31 | core: Enabling msg_connect within python blocks. | Roy Thompson | |
2013-01-14 | core: adding gr_random_pdu message passing block | Tim O'Shea | |
Conflicts: gnuradio-core/src/lib/general/CMakeLists.txt gnuradio-core/src/lib/general/general.i | |||
2012-12-18 | core: gr_tag_debug handles lacking srcid | Martin Braun | |
2012-12-13 | core: better tag debugger. Only outputs when there are tags to show. | Tom Rondeau | |
2012-12-03 | build: cleaned up some warnings. | Tom Rondeau | |
2012-12-01 | core: cleanup on pdu/msg blocks | Johnathan Corgan | |
2012-11-30 | core: gr_blocks can now have only message ports with no general_work() | Tim O'Shea | |
* msg only blocks now get thread context * added blocking msg queue delete call * added gr_message_strobe block * added grc definitions for message_debug, message_strobe, pdu_to_tagged_stream, tagged_stream_to_pdu. * allow message fan-in connections in GRC | |||
2012-11-29 | core: adding msg_connect, updating msg interface, adding symbolic block names | Tim O'Shea | |
2012-11-27 | Revert "Revert "Merge remote branch 'jblum-github/python_blocks2' into master"" | Tom Rondeau | |
This reverts commit 3a142bebafdc018bccc80cf124a375b53db03581. Since updating __init__.py for ticket 181, we should have fixed the same bug that was being seen here. Conflicts: gnuradio-core/src/python/gnuradio/gr/CMakeLists.txt | |||
2012-10-30 | analog: added PLL blocks to gr-analog with QA and GRC. | Tom Rondeau | |
2012-10-13 | Merge branch 'maint' | Johnathan Corgan | |
2012-10-13 | core: fix several tag includes throughout core | Josh Blum | |
Techinically this include should be the tags header which brings in the pmt *and* the tags struct definition. This happens to be working because the struct definition is implicitly included by the gr_block* and subclass headers. | |||
2012-09-29 | core: fix implicit assumption in skiphead | Josh Blum | |
skiphead is a gr_block, not sync block, but assumes that the number of input items is at least the number of output items remove this assumption and make this safe with std::min(ninputs, noutputs) may be necessary with new scheduler patches that can vary the circular buffer sizes | |||
2012-09-27 | core: fix use of private vars in place of API accessor | Josh Blum | |
Conflicts: gnuradio-core/src/lib/io/gr_tagged_file_sink.cc | |||
2012-09-27 | digital: fix private access in gr_endian_swap | Josh Blum | |
2012-08-30 | adding gr_endian_swap block | Tim O'Shea | |
2012-07-07 | Revert "Merge remote branch 'jblum-github/python_blocks2' into master" | Johnathan Corgan | |
This reverts commit f8581fb475267e1a97eaab962e423559fb4bfce2, reversing changes made to 73800434abfb8c6efcf069222b5f0fea9c86870b. | |||
2012-07-03 | Merge branch 'maint' | Johnathan Corgan | |
Conflicts: gruel/src/swig/CMakeLists.txt | |||
2012-07-03 | core: added general_generated to swig deps | Josh Blum | |
We generate the docs so its important that the docs see this header generated first. | |||
2012-07-01 | Merge remote branch 'jblum-github/python_blocks2' into master | Johnathan Corgan | |
Conflicts: gnuradio-core/CMakeLists.txt gnuradio-core/src/lib/general/general.i | |||
2012-06-22 | core: adds a tag debug sink to display all tags coming into it. | Tom Rondeau | |
This block is meant to help debug applications that use stream tags. | |||
2012-06-20 | 1. handle pmt serialize and deserialize for tuples | Tim O'Shea | |
2. fix offset checking in pmt_annotator_raw | |||
2012-06-16 | cmake: add support for SYSCONFDIR | Chí-Thanh Christopher Nguyễn | |
Set with 'cmake -DSYSCONFDIR=target ...' This fixes http://gnuradio.org/redmine/issues/492 | |||
2012-06-13 | Merge branch 'master-mods' | Tom Rondeau | |
2012-06-13 | core: modifications to gr_annotator_raw. | Tom Rondeau | |
Using mutex to make add_tag and work thread safe. Throwing exception intead of asserting on error. | |||
2012-06-13 | Merge branch 'master-mods' of git://github.com/osh/gnuradio-1 into master-mods | Tom Rondeau | |
2012-06-12 | new block, gr_annotator_raw | Tim O'Shea | |
allows passing a raw pmt k->v pair from outside the flowgraph/python in at exact samples also added GRUEL autogenerated .i files to gnuradio-core-swig include line | |||
2012-06-10 | Merge branch 'master-mods' | Tom Rondeau | |
2012-06-10 | Merge branch 'master-mods' of git://github.com/osh/gnuradio-1 into master-mods | Tom Rondeau | |
2012-06-10 | gr_unpack_k_bits: | Tim O'Shea | |
added python QA code reversed bit ordering to match gr_pack_k_bits gr_keep_m_in_n: added python QA code switched block to operate on individual items as itemsize instead of vectors updated GRC to match | |||
2012-06-10 | Merge branch 'maint' | Tom Rondeau | |
2012-06-10 | volk: make sure the alignment call for a block passes at least 1. | Tom Rondeau | |
For machines with an alignment of 1, the blocks were truncating the aligment to 0. This makes sure that it gets set to a minimum of 1. | |||
2012-06-07 | fixed copyright dates. | Tom Rondeau | |
2012-06-07 | Some really minor nits. | Tom Rondeau | |
2012-06-06 | Block Modifications: | Tim O'Shea | |
digital.mpsk_receiver_cc: Set reasonable default parameter values for GRC definition digital.ofdm_insert_preamble: Expose enter_preamble() as public, to allow external state changes Cleanup of incorrect forecast behavior Make the flag port optional, incase external preamble triggers are preferred to in-band gr_vector_source: added set_data( data ) and rewind() public methods gr_head: added set_length(int) method to modify head length New Blocks Added: gr_keep_m_in_n: Allows periodic extraction of M items instead of 1 (in keep_1_in_n) gr_pack_k_bits: Complementary block fo gr_unpack_k_bits gr_vector_insert_x: Complement to the gr_head block, inserts a vector into a stream then becomes a pass through | |||
2012-05-27 | core: patch for vector_map loop variable initialization. | Donald Porges | |
2012-05-21 | core: minor formatting changes to vector_map for style consistency. | Tom Rondeau | |
2012-05-17 | gr: Added vector_map block. | Ben Reynwar | |
2012-04-17 | this is squashed python blocks support | Josh Blum | |
2012-04-13 | Removed whitespace and added dtools/bin/remove-whitespace as a tool to do ↵ | Tom Rondeau | |
this in the future. The sed script was provided by Moritz Fischer. | |||
2012-04-13 | Fix some minor warnings. | Tom Rondeau | |
2012-04-12 | filters: add alias of "BLACKMAN_HARRiS" to "BLACKMAN_hARRIS" for consistency. | Nick Foster | |
2012-04-07 | Merge branch 'master' into next | Johnathan Corgan | |
2012-04-07 | Merge branch 'wfm_tx_work' | Johnathan Corgan | |
2012-04-07 | core: use while instead of if in frequency_modulator | Johnathan Corgan | |
* It is possible to wrap multiple times in a single update if the sensitivity parameter is high enough. | |||
2012-04-05 | core: removing old MPSK SNR probe; replaced in gr-digital. | Tom Rondeau | |
2012-04-05 | Merge branch 'master' into next | Tom Rondeau | |
Conflicts: grc/blocks/Makefile.am | |||
2012-04-01 | wavelet: move wavelet blocks to new top-level component | Johnathan Corgan | |