summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-05-13Updated db_bitshark_rx.c to the proper version that includes theJohnOrlando
delays when sending back-to-back I2C commands, as well as the proper command when setting the bw (previous blunder with git resulted in the wrong version on this branch)
2010-05-13gr-wxgui: update copyrightsJohnathan Corgan
2010-05-13gr-wxgui: Renamed "emulate analog" feature to "use persistence"Johnathan Corgan
2010-05-13Merge remote branch 'nldudok1/gr-wxgui_emulate_analog' into masterJohnathan Corgan
* nldudok1/gr-wxgui_emulate_analog: Add analog CRT screen afterglow emulation for gr-wxgui Conflicts: gr-wxgui/src/python/fftsink_gl.py gr-wxgui/src/python/fftsink_nongl.py
2010-05-12Update revision to 3.3.0-rc0Johnathan Corgan
2010-05-12Change version numbering to always include minor releaseJohnathan Corgan
2010-05-11Merge branch 'qtupdate'Tom Rondeau
2010-05-11Fixing up GUI windows to better scale with gtgui sinks.Tom Rondeau
2010-05-11Merge branch 'master' into wip/burx_supportJohnathan Corgan
* master: (39 commits) Add gru.hexshort to deal with short hex constants Assign USB PID for Hans de Bok Add missing buffer allocator hint to gr_ofdm_sampler.cc Really fix the missing include for boost::bind gr-wxgui: Added additional color table entries Missed updates for omnithread/mblock removal Remove omnithreads library. Remove mblock library. We hardly knew 'ye. Convert gr-audio-portaudio to Boost via gruel Further updates for removing omnithreads Update build configuration for OSX omnithreads changeover Add missing include file for boost::bind Convert gcell to use boost::threads instead of omnithread. Fix sequence error indication after stopping then restarting streaming on USRP2. initial move from mld_threads to gruel:: namespace threads and such Initial changes to remove mld_thread and instead use gruel:: namespace classes Fixing doxygen warnings from arb_resampler. Also, removed set_taps from public Fixing doxygen warnings from channelizer block. Fixing documentation to get rid of doxygen warnings. Adding documentation for fff version of othe PFB clock sync algorithm. ...
2010-05-11Change default bandwidth to 25 MHz to match maximum USRP2 bandwidthJohnathan Corgan
2010-05-11Fixing benchmark loopback to work with new v2's of modulators.Tom Rondeau
2010-05-11Update incorrectly checked in Makefile.amJohn Orlando
2010-05-11usrp: Cleanup for merge of bitshark daughterboard codeJohnathan Corgan
Removed unused variable Set default bandwidth to 8M in constructor
2010-05-10Fixing benchmark program to work with original dbpsk/dqpsk modulations again ↵Tom Rondeau
(and saving the version 2 mods for those marked v2).
2010-05-10Changes to the examples to fit updates to qtgui.Tom Rondeau
2010-05-10Simple code cleanup.Tom Rondeau
2010-05-10Remove one of the loop when posting new data; calculations are done the same ↵Tom Rondeau
time the fft shift and scaling operations happen.
2010-05-10Add gru.hexshort to deal with short hex constantsEric Blossom
2010-05-10Assign USB PID for Hans de BokEric Blossom
2010-05-09Minor cleanups.Tom Rondeau
2010-05-09Updating zoom and axis across plots for consistent zoom levels and behavior.Tom Rondeau
2010-05-06Flush pending errors in gr_udp_sink on disconnect()Don Ward
On some systems (e.g., Debian/lenny) UDP errors are reported on the following send() or recv() call. To avoid having errors (such as ECONNREFUSED) from an old connection showing up on the first write to a new connection, we do a recv() on disconnect() to flush them. This may not work for all errors on all systems, but it works in some simple cases of interest.
2010-05-04Merge branch 'master' into udpDon Ward
2010-05-04Rework UDP source and sink, with incompatible API changesDon Ward
Remove source address specifications for sink; add connect() and disconnect() to sink; add get_port() to source; add optional EOF signaling (using zero-length packets) to sink and source; modify dial_tone, vector, and audio examples to match new code; add qa test case.
2010-05-02Fixes segfault on close. Using the right objective (d_main_gui) instead of ↵Tom Rondeau
d_object to delete all of the plotting widgets. As far as Valgrind tells me, this cleans up my memory leaks although libqt and libqwt still have some of their own. This checkin also disables the Waterfall3D plotting. It wasn't working anyway, but was also causing its own segfault upon deletion. Once it's working and deleting nicely, it will be re-enabled.
2010-05-01Fixing constellation zoomer's label.Tom Rondeau
2010-05-01Maxing the x-axis of the time domain plot represent the actual time of the ↵Tom Rondeau
samples and not just the sample number.
2010-05-01Whoops. Time intervals are specified in seconds, not ms...Tom Rondeau
2010-05-01Fixes the replotting update. It's now based on a QTimer so it's in the event ↵Tom Rondeau
buffer as opposed to a best effort based on a hand-made timer. The interval between GUI updates is settable through the qtsink_X objects with set_update_time(newtime). This update makes the plotting much more stable. It also fixes the time scale of the waterfall plot to actually mean the right thing.
2010-05-01Fixing displayed pen and x-axis to report the right units and scaling of ↵Tom Rondeau
frequencies.
2010-05-01Removing PowerLine since we weren't using it and don't have plans to.Tom Rondeau
2010-05-01Peak power line now actually tracks the peak power.Tom Rondeau
2010-05-01Fixes units of pen in frequency plot.Tom Rondeau
2010-04-30Add missing buffer allocator hint to gr_ofdm_sampler.ccEric Blossom
This change was needed because gr_ofdm_sampler derives directly from gr_block, but functions (from the runtime's point of view) as a decimator. It takes many items in to produce a single output item. Without this change, values of fft_size > ~4096 would result in the scheduler complaining that it could never fullfil the block's request for samples. When deriving from gr_sync_interpolator or gr_sync_decimator, their constructors set the hint automatically.
2010-04-30Merge branch 'master' into udpDon Ward
2010-04-30Merge branch 'master' into udpDon Ward
2010-04-30Updates to udp source/sink (select(), wait, cleanup)Don Ward
Use select() to avoid blocking on recv() in gr_udp_source (only known way to avoid blocking on Cygwin). Add wait argument to gr_udp_source to allow waiting for connection or accepting lack of connection as EOF; add --no-wait option to dial_tone_sink.py. Remove system dependencies from .h files; remove unused data members and (useless?) public open and close functions.
2010-04-28Really fix the missing include for boost::bindJohnathan Corgan
2010-04-28gr-wxgui: Added additional color table entriesMarcus Leech
2010-04-27Missed updates for omnithread/mblock removalJohnathan Corgan
2010-04-26Remove omnithreads library.Johnathan Corgan
2010-04-26Remove mblock library. We hardly knew 'ye.Johnathan Corgan
2010-04-26Convert gr-audio-portaudio to Boost via gruelJohnathan Corgan
Remove omnithread dependency in build for gr-audio-portaudio Remove unused debugging utility class in gnuradio-core (gri_logger)
2010-04-26Merge branch 'wip/remove-mld-threads'Johnathan Corgan
* wip/remove-mld-threads: Further updates for removing omnithreads Update build configuration for OSX omnithreads changeover initial move from mld_threads to gruel:: namespace threads and such Initial changes to remove mld_thread and instead use gruel:: namespace classes
2010-04-26Further updates for removing omnithreadsJohnathan Corgan
Updates README Removes Darwin specific variable in usrp.pc
2010-04-26Add analog CRT screen afterglow emulation for gr-wxguiMartin Dudok van Heel
2010-04-26Update build configuration for OSX omnithreads changeoverJohnathan Corgan
gr-audio-osx now depends on gruel (via gnuradio-core) vs. omnithreads usrp now depends on gruel vs. omnithreads Boost base library dependency has been upped to 1.37 for Darwin only, for Darwin specific code in usrp host library
2010-04-23Add missing include file for boost::bindJohnathan Corgan
2010-04-22Merge branch 'wip/gcell-no-omni'Eric Blossom
* wip/gcell-no-omni: Convert gcell to use boost::threads instead of omnithread.
2010-04-22Convert gcell to use boost::threads instead of omnithread.Johnathan Corgan
Passes make check.