Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-09-23 | fixing PLL's using new control_loop class so their output update is done at ↵ | Tom Rondeau | |
the right time; were lagging by a sample before. | |||
2011-09-13 | digital: moved tx/rx_voice from gnuradio-examples into gr-digital. Tested ↵ | Tom Rondeau | |
and working with new dbpsk,dqpsk,d8psk. | |||
2011-09-13 | digital: moving more examples from gnuradio-examples to gr-digital and added ↵ | Tom Rondeau | |
examples to Makefile.am. | |||
2011-09-13 | digital: modifying example dir gitignore to ignore any generated samle files. | Tom Rondeau | |
2011-09-13 | digital: psk and dxpsk GRC blocks working. | Tom Rondeau | |
2011-09-13 | grc: removing more blocks from general grc tree that are now in digital. | Tom Rondeau | |
2011-09-12 | digital: fixed GRC blocks for blocks moved to gr-digital. | Tom Rondeau | |
2011-09-01 | grc: moved GRC blocks that were put into gr-digital into gr-digital/grc and ↵ | Tom Rondeau | |
refactored for new API. | |||
2011-09-01 | Fixed the PFB clock sync block when asking for multiple samples per symbol out. | Tom Rondeau | |
2011-09-01 | Fixing GRC files for new API to loop blocks. | Tom Rondeau | |
2011-09-01 | digital: adding CPM C++ hier block, which adds a hier directory to ↵ | Tom Rondeau | |
gr-digital. Reworked build system to include this in the libraries and modules built. | |||
2011-08-30 | digital: added gitignore file to hier dir. | Tom Rondeau | |
2011-08-30 | digital: fixed up build to make libdigital_hier.la; does not swig or get ↵ | Tom Rondeau | |
built into full library yet. Passes distcheck. | |||
2011-08-30 | digital: moved newly added CPM and GMSK hier blocks to gr-digital. | Tom Rondeau | |
2011-08-30 | Merge remote branch 'mbant/cpm' into digital | Tom Rondeau | |
Conflicts: gnuradio-core/src/lib/general/Makefile.am gnuradio-core/src/lib/general/general.i gnuradio-core/src/lib/hier/Makefile.am grc/blocks/Makefile.am | |||
2011-08-30 | digital: adding GMSK as a modulation type. Updated to use PFB-based clock ↵ | Tom Rondeau | |
recovery alg instead of M&M. | |||
2011-08-30 | digital: minor formatting fixes. | Tom Rondeau | |
2011-08-30 | digital: fixing a few things left out in conversion to gri_control_loop ↵ | Tom Rondeau | |
children. | |||
2011-08-30 | Merge branch 'digital' of github.com:trondeau/gnuradio into digital | Tom Rondeau | |
2011-08-30 | digital: adding a script to add channel conditions to a saved file and ↵ | Tom Rondeau | |
output to another file. | |||
2011-08-30 | digital: converted mpsk_receiver to use gri_control_loop parent class. ↵ | Tom Rondeau | |
Updated QA code for this, too. Again, had to change the expected data since the loop converges at a different rate; tested by setting alpha and beta to old values and it worked with old data still. | |||
2011-08-30 | digital: formatting comments for line length. | Tom Rondeau | |
2011-08-30 | digital: made other QA codes executable | Tom Rondeau | |
2011-08-30 | digital: converted FLL block to use gri_control_loop parent class. | Tom Rondeau | |
2011-08-30 | digital: reformatting documentation for line length. | Tom Rondeau | |
2011-08-29 | Updating QA code for PLL blocks. Setting gains using new loop bw concept ↵ | Tom Rondeau | |
changes the behavior slightly so new values were necessary. By explicitly setting alpha and beta to the previous values still worked, though. | |||
2011-08-29 | Updating all three PLL blocks to use new control_loop parent class. | Tom Rondeau | |
2011-08-29 | digital: fixing qa code to test new dqpsk; a few minor formatting changes. | Tom Rondeau | |
2011-08-29 | digital: fixed qpsk modulators to enable dqpsk. | Tom Rondeau | |
2011-08-29 | digital: created a separate DQPSK constellation that does not gray code ↵ | Tom Rondeau | |
inside the block. This forces a slower decision making routine but allows differential encoding. Gray coding is done using pre_diff_code. | |||
2011-08-27 | digital: wip: dqpsk needs work. | Tom Rondeau | |
2011-08-27 | digital: working on adding a dqpsk modulation block. | Tom Rondeau | |
2011-08-27 | digital: updating constellation receiver's QA code. | Tom Rondeau | |
2011-08-27 | digital: made digital constellation receiver a child of the second order ↵ | Tom Rondeau | |
control loop class and cleaned up the interface. | |||
2011-08-22 | utils: fixed typo | Tom Rondeau | |
2011-08-14 | digital: cleaned up Costas loop code by switching over to the ↵ | Tom Rondeau | |
gri_control_loop class to handle the inner loop. Had to add it to digital_swig.i to properly wrap the parent functions into Python. | |||
2011-08-14 | Convering the PLL refout block to use the gri_control_loop class to take ↵ | Tom Rondeau | |
care of the internal loop. The error and what to do with the phase and freq are left to this block. It also changes the interface so that the PLL's gains are determined by the loop bandwidth. | |||
2011-08-14 | Adding a control_loop class that takes care of setting the loop gains and ↵ | Tom Rondeau | |
the standard loop advance function. This should be used as a parent class of any block that uses a 2nd order control loop (like the PLL, clock recovery, etc blocks). | |||
2011-08-10 | digital: fixing naming of logging files. | Tom Rondeau | |
2011-08-10 | fixing constellation plotter to gracefully handle the end of a file. | Tom Rondeau | |
2011-08-10 | Cleaning up; adding a different dbpsk that uses differential coding. The ↵ | Tom Rondeau | |
normal bpsk is non-differential by default, but can be set to use differential with the right flag. | |||
2011-08-10 | digital: updated constellation receiver to use loop bandwidth and damping ↵ | Tom Rondeau | |
factor instead of setting alpha and beta independently. Also cleaning up Costas loop a bit more. | |||
2011-08-09 | digital: fixing up receiver code. Almost there... | Tom Rondeau | |
2011-08-09 | digital: setting up receive path to use new timing loop API, FLL API, new ↵ | Tom Rondeau | |
gain names/settings. Also added concept of gray coding to generic mod/demod and reworked bpsk/qpsk modulators so both work. | |||
2011-08-09 | digital: fixed complex M&M to output the error signal as a float. Also ↵ | Tom Rondeau | |
changed the error value limit since we were hitting it constantly before. | |||
2011-08-09 | digital: added M&M clock recovery loop as an option to compare against ↵ | Tom Rondeau | |
polyphase filterbank. | |||
2011-08-08 | digital: adding a timing offset example. | Tom Rondeau | |
2011-08-08 | digital: reworking pfb_clock_sync block for better construction of diff ↵ | Tom Rondeau | |
taps, more accesors. | |||
2011-07-30 | updating PFB clock sync to use loop bandwidth and damping factor instead of ↵ | Tom Rondeau | |
setting gains independently. | |||
2011-07-30 | digital: update documentation. | Tom Rondeau | |