Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-05-06 | volk: removed volk_registry.h, it was superseded by the machines | Josh Blum | |
2011-05-06 | volk: make volk_machine_xxx.cc c-safe | Josh Blum | |
Initialize each machine struct using C constants, (rather than relying on C++ to copy objects). Each machine file is far simpler, because we know what archs are in a machine, we can generate exactly the right code. In addition, rename the file extensions to .c so we know its C only. | |||
2011-05-05 | volk: make volk_machines.cc c-safe | Josh Blum | |
Initialize the list of machine structs w/ pointers, this does not rely on C++ initialization and is smaller. In addition, rename the file extension to .c so we know its C only. Interesting note, this also fixes a bug when compiling under MSVC, the machines list initialization seemed to have problems prior to this change. | |||
2011-05-02 | Merge branch 'mergeme/grc/cross_platform_work' | Tom Rondeau | |
2011-05-02 | Merge branch 'mergeme/uhd/gain_names' | Tom Rondeau | |
2011-04-28 | Merge branch 'mergme/audio/api_macro' | Tom Rondeau | |
2011-04-26 | gnuradio: support out-of-tree bootstrap | Josh Blum | |
Run bootstrap from any directory and it will work. The bootstrap script determines the source directory, and cds into that directory to run each auto* command. The bootstrap files also print that they are run, and there is a place to add-in future sub-projects. | |||
2011-04-26 | volk: reorganization of generation sources and generated files | Josh Blum | |
All generation sources have been moved to the gen/ subdirectory. Bootstrap and volk_register.py generate the files into to gen/ subdirectory in an effort to cleanly separate the static/generated parts of the build tree. Define top_gendir in Makefile.common, all generated sources listed in Makefile.ams are prefixed with $(top_gendir) to differentiate them from static in-tree sources. | |||
2011-04-26 | volk: removed cppunit from the build (not used anymore) | Josh Blum | |
2011-04-24 | Merge branch 'mergme/qtgui/api_exports' | Tom Rondeau | |
2011-04-24 | qtgui: added GR_QTGUI_API declaration to qtgui library classes and functions | Josh Blum | |
2011-04-24 | qtgui: use the timespec_reset function | Josh Blum | |
Its more proper, and the assignment is c99 only. | |||
2011-04-24 | audio: filled in the GR_AUDIO_API macro (since we now have gruel/attributes.h) | Josh Blum | |
2011-04-24 | Merge branch 'qtgui_time' | Tom Rondeau | |
Conflicts: gr-qtgui/apps/pyqt_example_f.py | |||
2011-04-24 | gr-qtgui: adding GRC component for time_sink block. | Tom Rondeau | |
2011-04-24 | gr-qtgui: splitting qtgui.i into its complex and float .i files to keep with ↵ | Tom Rondeau | |
the general standard. | |||
2011-04-24 | gr-qtgui: Adding float interface to qtgui_time_sink and example program. | Tom Rondeau | |
2011-04-24 | gr-qtgui: adding example for using the new qt_time_sink_c interface. | Tom Rondeau | |
2011-04-24 | gr-qtgui: making (somewhat more) consistent case for function names. | Tom Rondeau | |
2011-04-24 | gr-qtgui: adding function and slot to set a time display curve's color. | Tom Rondeau | |
2011-04-24 | gr-qtgui: clean up | Tom Rondeau | |
2011-04-24 | gr-qtgui: provide function and slot for setting the labels of a time curve. | Tom Rondeau | |
2011-04-23 | gr-qtgui: multiple connections working, each with their own color. | Tom Rondeau | |
2011-04-23 | gr-qtgui: Passing vectors of data to update plot for stability; also moving ↵ | Tom Rondeau | |
responsibility of keeping track of plot updates out to qtgui_sink instead of inside plot qidget. | |||
2011-04-23 | gr-qtgui: moving towards allowing time plot to have multiple connections. | Tom Rondeau | |
2011-04-23 | gr-qtgui: setting up ability to have multiple connections to the time sink. | Tom Rondeau | |
2011-04-23 | gr-qtgui: cleaning up; don't delete d_main_gui. | Tom Rondeau | |
2011-04-23 | gr-qtgui: time domain sink now shows and receives updates. | Tom Rondeau | |
2011-04-23 | gr-qtgui: no need to check the version here since we require >4.4 | Tom Rondeau | |
2011-04-21 | volk: fixing volk M4 so that nothing of Volk exists and its configure does ↵ | Tom Rondeau | |
not run if --disable-volk is used. | |||
2011-04-21 | gr-qtgui: adding .i file for time domain plot and updating Makefiles. | Tom Rondeau | |
2011-04-21 | gr-qtgui: adding time-domain only plotter. | Tom Rondeau | |
2011-04-21 | gr-qtgui: adding time-domain plot specific event updater. | Tom Rondeau | |
2011-04-21 | grc: fix hier block generation w/ multiple pad blocks | Josh Blum | |
2011-04-19 | grc: added logic to discover the path to the python interpreter | Josh Blum | |
Rather than simply exec-ing the application w/ "python", use the same interpreter that executed grc w/ full path. Added code to handle the following exceptions: - for a wx app on mac osx, use the pythonw interpreter (this was in the m4 file, but its easier as a runtime check) - for a no gui app on linux, prepend xterm cuz its nice (we were already doing that but its now restricted to linux) | |||
2011-04-18 | gr-qtgui: adding copyright dates to qtgui files. | Tom Rondeau | |
2011-04-18 | gr-qtgui: fixing up examples and adding noise to float example. | Tom Rondeau | |
2011-04-18 | Expose named gain stages in gr-uhd via swig | Jason Abele | |
2011-04-18 | Added necessary swig to get i2c_writes through dboard_iface | Jason Abele | |
2011-04-18 | Revert some extraneous changes from another branch | Nick Foster | |
2011-04-18 | Volk: remove some dead files from Makefile.am | Nick Foster | |
2011-04-17 | volk: added VOLK_API macro to external symbols | Josh Blum | |
2011-04-17 | volk: replace references to __attribute__((aligned... with cross platform macro | Josh Blum | |
This replaces all aligned(16) and aligned(128) (which were incorrect). Attribute macros are on the left because this makes gcc and ms compilers happy. | |||
2011-04-17 | volk: added attributes header (copied from gruel) | Josh Blum | |
2011-04-17 | volk: updated lib and include .gitignores for in-tree build | Josh Blum | |
2011-04-17 | Volk: make_makefile_am.py changes for include dirs | Nick Foster | |
2011-04-16 | Volk: modified archs.xml to put Orc higher prio than old SSE/SSE2, since Orc ↵ | Nick Foster | |
gives better results than those platforms on avg Test cases changed to take ~1s each on my i7 laptop | |||
2011-04-16 | Volk: Compiles and runs with or without Orc installed. | Nick Foster | |
2011-04-16 | Volk: Orc support back in there, QA code now runs, functionally complete | Nick Foster | |
2011-04-16 | Volk: manual funcs implemented, QA code runs. Barfs due to missing Orc arch. | Nick Foster | |