summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-06-14Merge branch 'maint'Johnathan Corgan
2012-06-14digital: fixed incorrect variable name in qam_demod XMLBen Reynwar
2012-06-14Merge branch 'maint'Johnathan Corgan
2012-06-14core: remove extraneous include statementJohnathan Corgan
2012-06-14digital: fixed typo with gray code setting in GRC's QAM demodulator.Tom Rondeau
2012-06-13volk: dot_produce for floats does 16 at a time.Tom Rondeau
This was done to make this have the same performance as float_dotprod from before. This makes all flavors of the 32f dotprod work the same way. Because it's expecting the input to have 4x more samples than specified, it's making qa for these fail.
2012-06-13filter wip and probably squash with last.Tom Rondeau
Removing unecessary d_offset counter from fir_filter.
2012-06-13filter: process 4 vectors each time in volk dot_prod to speed up fir filters.Tom Rondeau
This makes the volk version of the SSE FIR filter the same speed as using the hand-crafted float_dotprod from before.
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-11Merge commit 'v3.6.1' into wip/gr-blocks-masterJohnathan Corgan
2012-06-11cmake: update revision to 3.6.2gitJohnathan Corgan
2012-06-11cmake: update revision to 3.6.1 releaseJohnathan Corgan
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-10filter: Fixed filter_delay and hilbert filter to work with aligned filter loads.Tom Rondeau
2012-06-10filter: working aligned taps loads for regular and decimating filter.Tom Rondeau
Has working QA code but needs significant performance improvements.
2012-06-10filter: adding ccf version for adaptive filter.Tom 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-10blocks: copy alignment fix from maintJohnathan Corgan
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-09Merge branch 'maint'Johnathan Corgan
2012-06-09fcd: fix frequency offset test in GRCAlexandru Csete
2012-06-08blocks: fix XML file in previous commitJohnathan Corgan
2012-06-08blocks: added blocks_add_const_xxJohnathan Corgan
2012-06-08blocks: adds new top-level component gr-blocks with first blockJohnathan Corgan
gr::blocks::add_XX
2012-06-07fixed copyright dates.Tom Rondeau
2012-06-07Merge branch 'master-mods'Tom Rondeau
2012-06-07Some really minor nits.Tom Rondeau
2012-06-07Merge branch 'maint'Tom Rondeau
Conflicts: volk/gen/archs.xml
2012-06-07volk: have an alignment even for unknown (generic) machines.Tom Rondeau
2012-06-07volk: have an alignment even for unknown (generic) machines.Tom Rondeau
2012-06-07Revert "uhd: allow source work to be stopped while fg runs"Johnathan Corgan
This reverts commit c78d307ecd5dac4e28190e5aa9b8377538f65ffa.
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-04Merge branch 'maint'Tom Rondeau
2012-06-04docs: fixed Doxygen from looking in the howto dir.Tom Rondeau
2012-06-04docs: added section explaining the basics of reconfiguring a flowgraph.Tom Rondeau
2012-06-04core: exported max_noutput_item methods from gr_block to Python.Tom Rondeau
2012-06-04docs: added a description of a basic flowgraph to the manual's main page.Tom Rondeau
Also a brief discussion of throughput/latency and how to use the max_noutput_items methods to control them.
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-06-02Merge remote-tracking branch 'jblum/wip_uhd_stopper'Johnathan Corgan
2012-05-31Merge branch 'maint'Johnathan Corgan
2012-05-31pager: fix frequency display when not defaultJustin R. Cutler
2012-05-31grc: restore virtual ports in grcJustin R. Cutler
2012-05-29Merge branch 'maint'Johnathan Corgan
2012-05-27core: patch for vector_map loop variable initialization.Donald Porges
2012-05-24uhd: allow source work to be stopped while fg runsJosh Blum