Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-03-09 | audio: high prio for platform specific audio osx | Josh Blum | |
2011-03-09 | audio: added windows and osx audio source files | Josh Blum | |
2011-03-09 | audio: added config checks for other audios, added jack and port | Josh Blum | |
2011-03-09 | audio: make prefs look like old audio, removed old audio.py | Josh Blum | |
2011-03-09 | audio: register arches with priorities, ex: prefer alsa over oss | Josh Blum | |
2011-03-09 | audio: added oss support to gr-audio | Josh Blum | |
2011-03-09 | audio: use conf files to specify default arch | Josh Blum | |
2011-03-09 | audio: moved the grc audio blocks into gr-audio dir | Josh Blum | |
2011-03-09 | audio: moved alsa support files into subdirectory | Josh Blum | |
2011-03-09 | audio: work on swig support, it imports | Josh Blum | |
2011-03-09 | audio: work to get alsa support in, lets see if this works before adding more | Josh Blum | |
2011-03-09 | audio: added audio factory registry and top level includes | Josh Blum | |
2011-03-08 | audio: skeleton for gr-audio component | Josh Blum | |
2011-03-08 | volk: replace posix_memalign with something cross platform | Josh Blum | |
2011-03-07 | qtgui-grc: added suport in main template for theme icon | Josh Blum | |
2011-03-07 | qtgui-grc: minor tweaks to the various things | Josh Blum | |
2011-03-07 | reverted accidental change to keep 1 in n block | Josh Blum | |
2011-03-07 | qtgui-grc: added read-only thermo widget to range block | Josh Blum | |
2011-03-07 | qtgui-grc: fix for list option working in chooser block | Josh Blum | |
2011-03-07 | uhd: fix generation typo on uhd grc blocks io direction | Josh Blum | |
2011-03-07 | qtgui-grc: added check for pyqwt in config | Josh Blum | |
2011-03-07 | grc: added function args to probe block and documentation | Josh Blum | |
2011-03-06 | grc: rework the probe blocks and how they fit into grc | Josh 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-05 | qtgui-grc: moved slider to range, added knob and gui tweaks | Josh Blum | |
2011-03-05 | volk: fixing configuration for Cygwin builds. | Don Ward | |
2011-03-04 | qtgui-grc: use a vboxlayout for the top_layout | Josh Blum | |
2011-03-03 | qtgui-grc: made slider widget components (counter/slider) optional | Josh Blum | |
2011-03-02 | qtgui-grc: add engineering notation to entry and label + other tweaks | Josh Blum | |
2011-03-01 | qtgui-grc: enable start/stop control through qt widgets | Josh Blum | |
2011-03-01 | qtgui-grc: rename the text entry and label blocks | Josh Blum | |
2011-03-01 | grc-qtgui: creaded check box widget with qtgui, cleanup label code | Josh Blum | |
2011-03-01 | grc-qtgui: added variable text box and static text widgets | Josh Blum | |
2011-03-01 | grc-qtgui: pick correct signal overload for variable chooser | Josh Blum | |
2011-03-01 | grc-qtgui: added radio button support, tweaks, more options | Josh Blum | |
2011-03-01 | grc-qtgui: work on variable chooser block | Josh Blum | |
2011-03-01 | grc: work on generator for gui flowgraphs to simplify generation | Josh 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-01 | grc: moved wxgui blocks and python into gr-wxgui/grc | Josh 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-01 | qtgui: work on variable chooser | Josh Blum | |
2011-03-01 | grc: added tabbed widget in qtgui for grc | Josh 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-01 | qtgui: use pyqwt widgets in grc variable slider block | Josh Blum | |
2011-03-01 | qtgui: created a forms module with a slider and text box, implemented in grc | Josh Blum | |
2011-03-01 | qtgui: an attempt at a slider form | Josh Blum | |
2011-03-01 | grc: added qtgui support to grc (just added sink) | Josh Blum | |
2011-03-01 | uhd: work on gr_uhd_source work() function to reduce latency | Josh Blum | |
Wait on a single packet to become ready, then receive available packets without timeout. | |||
2011-02-28 | uhd: only set has_time_spec when nchan > 1 | Josh Blum | |
Its important for multi-channel continuous, but not wanted in single-channel non-continuous. | |||
2011-02-27 | qtgui 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-27 | gruel 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-27 | gr_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-27 | use boost::math::iround in gr_histo_sink_f.cc and gr_wavfile_sink.cc | Josh Blum | |
this provides a round implementation on platforms w/o c99 standard | |||
2011-02-27 | use boost::math::trunc in gr_frequency_modulator_fc.cc | Josh Blum | |
this replaces the need for a conditional trunc implementation in config.h |