summaryrefslogtreecommitdiff
path: root/gnuradio-core/src/lib
AgeCommit message (Collapse)Author
2012-10-03core: Added QA for max_noutput_items per block and max_output_buffer.Tom Rondeau
2012-10-03core: fixed set min/max buffer sizes to better handle blocks with infinite ↵Tom Rondeau
streams.
2012-10-03core: fixed swig file for exporting max/min buffer sizes with port first.Tom Rondeau
2012-10-02core: update max_buffer_size after buffer is actually allocated.Tom Rondeau
2012-10-02core: bit of rework on setting/getting max_output_buffer.Tom Rondeau
When setting, specify port first, than buffer size. This is consistent with other calls (like consume and produce). When getting, throw an error if port is out of range.
2012-10-02Merge branch 'max_nout_each'Tom Rondeau
2012-10-02providing additional control over GNU Radio buffer allocation size for ↵Tim O'Shea
latency effects etc unlimited io_signatures of -1 should work correctly with this patch now
2012-09-29core: udp source wait mode yields work threadJosh Blum
2012-09-29core: source block can yield thread context/produce noneJosh Blum
2012-09-29core: fix implicit assumption in skipheadJosh 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-27core: fix use of private vars in place of API accessorJosh Blum
Conflicts: gnuradio-core/src/lib/io/gr_tagged_file_sink.cc
2012-09-27digital: fix private access in gr_endian_swapJosh Blum
2012-08-30adding gr_endian_swap blockTim O'Shea
2012-08-05arm: better support for ARM processors without NEON.Jaroslav Skarvada
2012-07-19core: added message source that takes in tags for controlling bursts.Nick Foster
2012-07-07Revert "Merge remote branch 'jblum-github/python_blocks2' into master"Johnathan Corgan
This reverts commit f8581fb475267e1a97eaab962e423559fb4bfce2, reversing changes made to 73800434abfb8c6efcf069222b5f0fea9c86870b.
2012-07-03Merge branch 'maint'Johnathan Corgan
Conflicts: gruel/src/swig/CMakeLists.txt
2012-07-03core: moved VMCIRCBUF related code to runtimeJosh Blum
This build stuff should not be at the top level.
2012-07-03swig: added additional swig dependencies gruel/coreJohnathan Corgan
pmt swig gen depends upon the generated header core depends upon pmt swig custom target Conflicts: gruel/src/swig/CMakeLists.txt
2012-07-03core: added general_generated to swig depsJosh Blum
We generate the docs so its important that the docs see this header generated first.
2012-07-01Merge remote branch 'jblum-github/python_blocks2' into masterJohnathan Corgan
Conflicts: gnuradio-core/CMakeLists.txt gnuradio-core/src/lib/general/general.i
2012-06-28core: fix for gri wave byteswappingJosh Blum
Sorry guys, I misunderstood the comments. Wave data is specifically in little endian format. Therefore we should only be swapping on big endian machines. Since systems only provide network endian macros: The following commit provides a cross platform byteswap and macros for host to/from worknet short and long.
2012-06-23Merge branch 'master' of gnuradio.org:gnuradioTom Rondeau
2012-06-22gruel: got rid of inet.h and adjusted only file that depended on itNicholas Corgan
2012-06-22core: 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-21core: tiny performance boost, and it looks tidier.Martin Braun
2012-06-21core: fixes a very minor bug in gri_wavfile.cc and also makes a FIXME obsoleteMartin Braun
2012-06-201. handle pmt serialize and deserialize for tuplesTim O'Shea
2. fix offset checking in pmt_annotator_raw
2012-06-16cmake: add support for SYSCONFDIRChí-Thanh Christopher Nguyễn
Set with 'cmake -DSYSCONFDIR=target ...' This fixes http://gnuradio.org/redmine/issues/492
2012-06-16Merge branch 'master-mods'Tom Rondeau
2012-06-16Merge branch 'master-mods' of git://github.com/osh/gnuradio-1 into master-modsTom Rondeau
2012-06-15New Features:Tim O'Shea
added support for pmt_serialize and pmt_deserialize for uint64_t type pmts added gr_add_const_bb typed block to gr_add_const_XX gengen
2012-06-14Merge branch 'maint'Johnathan Corgan
2012-06-14core: remove extraneous include statementJohnathan Corgan
2012-06-13Merge branch 'master-mods'Tom Rondeau
2012-06-13core: 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-13Merge branch 'master-mods' of git://github.com/osh/gnuradio-1 into master-modsTom Rondeau
2012-06-12new block, gr_annotator_rawTim 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-10Merge branch 'master-mods'Tom Rondeau
2012-06-10Merge branch 'master-mods' of git://github.com/osh/gnuradio-1 into master-modsTom Rondeau
2012-06-10gr_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-10Merge branch 'maint'Tom Rondeau
2012-06-10volk: 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-07fixed copyright dates.Tom Rondeau
2012-06-07Some really minor nits.Tom Rondeau
2012-06-06Block 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-06-04core: exported max_noutput_item methods from gr_block to Python.Tom Rondeau
2012-06-04runtime: added ability for blocks to have their own max_noutput_items.Tom Rondeau
Setting a max_noutput_items for an individual block will override the global max that can be passed to the start/run method of the top_block. Also adds QA code for testing that these features run and complete a flowgraph.
2012-05-27core: patch for vector_map loop variable initialization.Donald Porges
2012-05-21core: minor formatting changes to vector_map for style consistency.Tom Rondeau