aboutsummaryrefslogtreecommitdiffstats
path: root/docs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-09-19grc: enable advanced parametersBastian Bloessl1-12/+12
cpu affinity, max/min out buf size
2019-09-17grc: option toggle the show id on all blocksJosh Morman5-2/+21
Addresses the issue of losing access to the block id on many/most blocks though there are scenarios where you may need to see them in GRC Added a menu item tied into the grc prefs that will show the block ids Fixes #2780
2019-09-05fft_shift: use unit test macros that exist in Boost 1.53Ryan Schutt1-3/+21
gr-fft mixes in Boost 1.59 dependency, but we only guarantee 1.53 Addresses https://github.com/gnuradio/gnuradio/issues/2685
2019-09-05fec: do not use deprecated register specifierBastian Bloessl1-1/+1
2019-09-05fec: delete unnecessary forward declartionBastian Bloessl1-1/+0
2019-09-05qtgui: do not override parent functionBastian Bloessl4-48/+0
2019-09-05qtgui: use std::move for return valuesBastian Bloessl2-4/+4
2019-09-05delete unused variablesBastian Bloessl14-20/+6
2019-09-05runtime: indicate that destructor of local_sighandler might throwBastian Bloessl2-2/+2
2019-09-05ctrlport: do not store references to stack variablesBastian Bloessl1-9/+9
2019-09-05runtime: delete bogus parent class form msg_accepter_msgqBastian Bloessl1-1/+1
2019-09-05zeromq: fix inconsistent use of overrideBastian Bloessl10-14/+14
2019-09-05fft: fix spelling of blakcman to blackman in docsNathan West1-1/+1
2019-08-29Improve GRC YAML templateAnders Kalør1-15/+17
2019-08-29Make Id visible in Tab_widgetVolker Schroer1-1/+1
To make meaningfull use of the QTab_Widget it's necessary to make the id visible and changeable
2019-08-28runtime: fixup errors from clang-tidy changesBastian Bloessl2-2/+2
2019-08-28ctrlport: python callbacks use python3 unicode stringsBastian Bloessl1-0/+4
2019-08-28ctrlport: qa use new apiBastian Bloessl3-14/+7
2019-08-26Fix typo that creates build issues with GR dependenciesEmmanuel Blot1-1/+1
2019-08-23Added qwt name in FindQwt.cmake necessary in some Linux DistrosJan Kraemer1-1/+1
2019-08-22Fix memset clearing non-trivial type gr_complex warnings in gcc-8Anders Kalør9-34/+41
Using memset with gr_complex is not a problem since the underlying representation of gr_complex is guaranteed to be two floats in adjacent memory locations without padding or additional memory. Fixes #2743
2019-08-223.9. OOT needs to rely on 3.9Marcus Müller1-1/+1
It would be advantageous to not hard-code this, but that requires the templates to be CMake-time configured.
2019-08-22Removed double import of numpy in gr_filter_designJan Kraemer1-40/+39
2019-08-22Fixed gr_filter fftpack usage with numpy >= 1.17Jan Kraemer1-2/+13
2019-08-22runtime: add msg ports to dot graph and use unique namesBastian Bloessl1-1/+7
2019-08-22runtime: update flaky qa test to 3.8 schedulerBastian Bloessl1-7/+1
2019-08-22runtime: block gateway shadowed system portBastian Bloessl1-1/+5
2019-08-22clang-tidy in gnuradio-runtime: use empty() instead of size()!=0Marcus Müller61-104/+110
2019-08-22Use emplace_back(params) instead of push_back(type(params))Marcus Müller14-215/+206
This is C++11: you can convert std::vector<complextype> vec; vec.push_back(complextype(foo, bar, baz)); by std::vector<complextype> vec; vec.emplace_back(foo, bar, baz); which saves one unnecessary copy. This mostly happened in rpc code. The automated clang-tidy check failed miserably, so most of this was done by hand.
2019-08-22clang-tidy: Edit config to include checks that have been executedMarcus Müller1-2/+3
Not including the modernize-use-emplace, since that really broke nearly every line it touched.