summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-03-07reverted accidental change to keep 1 in n blockJosh Blum
2011-03-07qtgui-grc: added read-only thermo widget to range blockJosh Blum
2011-03-07qtgui-grc: fix for list option working in chooser blockJosh Blum
2011-03-07uhd: fix generation typo on uhd grc blocks io directionJosh Blum
2011-03-07qtgui-grc: added check for pyqwt in configJosh Blum
2011-03-07grc: added function args to probe block and documentationJosh Blum
2011-03-06grc: rework the probe blocks and how they fit into grcJosh Blum
Removed the source on all probe blocks. Advertise the probe-able function in the docs. Added missing signal probe block. Removed probe function and variable sink blocks. Removed all supporting grc_gnuradio python files. Added variable_function_probe block that can probe arbitrary functions on a block. All the code needed by the function probe is available is the make tag. To display the value of a probe block, use the variable probe block, and a gui widget. To disply the value of a stream, do the same but use the signal probe block. Simple see :-) If more types other than floats need to be read from the stream, the signal probe should be extended.
2011-03-05qtgui-grc: moved slider to range, added knob and gui tweaksJosh Blum
2011-03-05volk: fixing configuration for Cygwin builds.Don Ward
2011-03-04qtgui-grc: use a vboxlayout for the top_layoutJosh Blum
2011-03-03qtgui-grc: made slider widget components (counter/slider) optionalJosh Blum
2011-03-02qtgui-grc: add engineering notation to entry and label + other tweaksJosh Blum
2011-03-01qtgui-grc: enable start/stop control through qt widgetsJosh Blum
2011-03-01qtgui-grc: rename the text entry and label blocksJosh Blum
2011-03-01grc-qtgui: creaded check box widget with qtgui, cleanup label codeJosh Blum
2011-03-01grc-qtgui: added variable text box and static text widgetsJosh Blum
2011-03-01grc-qtgui: pick correct signal overload for variable chooserJosh Blum
2011-03-01grc-qtgui: added radio button support, tweaks, more optionsJosh Blum
2011-03-01grc-qtgui: work on variable chooser blockJosh Blum
2011-03-01grc: work on generator for gui flowgraphs to simplify generationJosh Blum
generator does not differentiate between notebooks and controls, they are all block, but block are now sorted by variables present in the make also adjusted categories listed in the wx and qt widget related blocks
2011-03-01grc: moved wxgui blocks and python into gr-wxgui/grcJosh Blum
Prefixed wxgui blocks with WX GUI in the block names. Added category to wxgui variables blocks (not in the main block tree.xml)
2011-03-01qtgui: work on variable chooserJosh Blum
2011-03-01grc: added tabbed widget in qtgui for grcJosh Blum
created gui_hint type to handle tab descriptor + position markup, and to handle the generation of the name of the parent widget. No support python modules required in gr-qtgui.
2011-03-01qtgui: use pyqwt widgets in grc variable slider blockJosh Blum
2011-03-01qtgui: created a forms module with a slider and text box, implemented in grcJosh Blum
2011-03-01qtgui: an attempt at a slider formJosh Blum
2011-03-01grc: added qtgui support to grc (just added sink)Josh Blum
2011-03-01uhd: work on gr_uhd_source work() function to reduce latencyJosh Blum
Wait on a single packet to become ready, then receive available packets without timeout.
2011-02-28uhd: only set has_time_spec when nchan > 1Josh Blum
Its important for multi-channel continuous, but not wanted in single-channel non-continuous.
2011-02-27qtgui use gruel thread mutex:Josh Blum
Replace pthread mutex usage with gruel thread mutex to make the code portable on systems without pthreads.
2011-02-27gruel thread simplification:Josh Blum
Removed get_new_timeout from thread.h (usrp2_vrt carryover) Basically it was created because of a misunderstanding of the time types; and its only ever called once. This also removes thread.cc Call posix_time::milliseconds in usrp2 control.cc. Notice that it passes a time_duration rather than a ptime (aka system time). Added #include <deque> to gr_buffer.h. It turns out that boost posix_time.hpp implicitly included the deque header which was missing from gr_buffer.h Replaced the include for thread.hpp with only the includes for the boost thread types mentioned in gruel/thread.h. Also, making use of the scoped_lock typedef that comes with boost thread locks. boost 3.5 safe.
2011-02-27gr_flowgraph.cc explicit include of <iterator>Josh Blum
Added explicit include of <iterator>, which was implicitly included by <vector>. Affects platforms where vector does not automatically pull in iterator.
2011-02-27use boost::math::iround in gr_histo_sink_f.cc and gr_wavfile_sink.ccJosh Blum
this provides a round implementation on platforms w/o c99 standard
2011-02-27use boost::math::trunc in gr_frequency_modulator_fc.ccJosh Blum
this replaces the need for a conditional trunc implementation in config.h
2011-02-25Merge branch 'gr_uhd_next' into nextJosh Blum
2011-02-25uhd: added sensors api to gr-uhd blocks and swig supportJosh Blum
2011-02-25uhd: fix export typo and specify export define when building libJosh Blum
2011-02-22howto: Was over-zealous before. The TESTS should remain firmly in the if ↵Tom Rondeau
GUILE block.
2011-02-22howto: cleans up the Python build structure for howto; reverts back to ↵Tom Rondeau
making it's own howto module not under gnuradio.
2011-02-22howto: fixes for howto build structure. Passes check but does not pass ↵Tom Rondeau
distcheck.
2011-02-22howto: I think this is a better fix than the last one. The modules are now ↵Tom Rondeau
imported from gnuradio.
2011-02-17howto: moving install path back to howto/ to get it to work.Tom Rondeau
2011-02-17volk: Properly sets up package config script if Orc is not found for Volk.Tom Rondeau
2011-02-17Merge branch 'pmt_serial_tags' into nextTom Rondeau
2011-02-17guile: removing calls to check for guile and guile-dev. GNU Radio can once ↵Tom Rondeau
again be built without Guile.
2011-02-15uhd: tweaks for swig/python init fileJosh Blum
2011-02-11uhd: added mboard param to get time now and added get time last ppsJosh Blum
2011-02-10uhd: incremented compat number for new api supportJosh Blum
2011-02-10uhd: added set and get clock rates to gr-uhd blocks and grc wrappersJosh Blum
2011-02-10uhd: tweaks to the grc blocksJosh Blum