Age | Commit message (Collapse) | Author |
|
clock config convenience
|
|
|
|
|
|
|
|
|
|
function
|
|
Replaced copy/pasted code and MKDIR_TAKES_ONE_ARG #ifdefs
with portable boost filesystem path and directory creation.
Gets the correct home directory on windows systems: APPDATA.
Replaces large amounts of copypasta with single lines of code.
Removes MKDIR_TAKES_ONE_ARG configuration checks from m4 files.
Adds boost filesystem and system library as build dependencies.
|
|
Replace calls to gmtime_r with boost::posix_time
to make the code portable on systems without gmtime_r.
|
|
|
|
Initialize static data members in the cpp file:
http://www.parashift.com/c++-faq-lite/ctors.html#faq-10.12
For the WaterfallDisplayPlot, rather than bringing the initialization into the cpp file,
the numbers seemed far more fitting as an enum given that they are by nature.
This removed the symbol declaration from the cpp file, so its actually simpler.
|
|
These files use stdint types but did not include the header stdint.h
|
|
Removed QWT_EXPORT from PlotWaterfall.
PlotWaterfall is not part of libqwt, this is likely a copy/paste typo.
Its very wrong and specifies incorrect linkage. Affects MSVC.
|
|
Initialize PI and TWO_TO_THE_31 the standard portable c++ way.
No need for "gcc 4.x fix".
See http://www.parashift.com/c++-faq-lite/ctors.html#faq-10.12
|
|
|
|
Use explicit data type casts in math functions where the overloaded function could not be determined.
affects msvc
|
|
Replaces gr_gcd, gr_isnan, and gr_signbit one-time instances with boot math calls.
No point in wrapping these utility math functions into gnuradio when they are
1) provided by boost
2) only called once
Removes gr_math.cc, and configure checks for isnan.
|
|
|
|
* master:
Adding new accessor for Goertzel filter to GRC block. Thanks to Marcus Leech for the last three modifications.
Adding accessors to Goertzel filter GR block to call setparms from implementation file for (re)setting parameters.
Adding accessor function to Goertzel filter implementaiton to set/reset its parameters.
|
|
for the last three modifications.
|
|
implementation file for (re)setting parameters.
|
|
parameters.
|
|
|
|
* master:
Fixing up fft and constellation plot to better handle zooming.
Fixing zooming capabilities. Time axis does not track any longer due to what looks like a matplotlib bug that resets the xlims after the zoom occurs.
Fixing up other plotting tools for data read errors.
Using .min and .max on scipy arrays instead of min() max(); seems to be more portable.
Fix how the end of a file is handled.
PFB resampler: fix it this way to avoid the signed/unsigned warning.
PFB resampler: fixes bug where filter could be looking past the number of inputs.
Conflicts:
gr-utils/src/python/gr_plot_psd.py
|
|
* maint:
Fixing up fft and constellation plot to better handle zooming.
Fixing zooming capabilities. Time axis does not track any longer due to what looks like a matplotlib bug that resets the xlims after the zoom occurs.
Fixing up other plotting tools for data read errors.
Using .min and .max on scipy arrays instead of min() max(); seems to be more portable.
Fix how the end of a file is handled.
PFB resampler: fix it this way to avoid the signed/unsigned warning.
PFB resampler: fixes bug where filter could be looking past the number of inputs.
|
|
|
|
looks like a matplotlib bug that resets the xlims after the zoom occurs.
|
|
|
|
portable.
|
|
|
|
|
|
|
|
|
|
|
|
header file volk_cpu.h and actually created in the C files.
Note that this could be a problem if multiple architectures are ever (can ever?) be built at the same time. If that happens, we can move this variable declaration to another C file that is made common to all builds.
|
|
|
|
easier to add new architectures. Thanks to Josh for the inspiration.
|
|
Confirmed to fix problem on 32-bit CoreDuo. Probably fixes problem on Arm too.
|
|
|
|
|
|
GRC does not need wxpython to run. It is only needed if you create gui
based flow graphs.
|
|
|
|
|
|
Change the API such that the message handler is now implemented with a
callback, not an overridden virtual function. The callback is now set
using gr_basic_block::set_msg_handler, which will accept pretty much
any kind of callable.
This change allows us to split the machinery for message handling out
from the block inheritance hierarchy, and provides a foundation that
can be used to build or experiment with arbitrary message dispatching
techniques.
|
|
* master:
Fixed error in the name of the test_filter output files.
|
|
|
|
|
|
|
|
|
|
|
|
or premature pruning.
|