UHD Warning:
Unable to set the thread priority. Performance may be negatively
affected.
Please see the general application notes in the manual for
instructions.
EnvironmentError: OSError: error in pthread_setschedparam
UHD Warning:
The hardware does not support the requested RX sample rate:
Target sample rate: 2.500000 MSps
Actual sample rate: 2.461538 MSps
gr_fir_ccc: using SSE
gr_fir_fff: using SSE
Using Volk machine: sse4_1_64_orc
In my application I redirect stdout to a different buffer. Which works
at first. I get the following redirected to my buffer
I have a couple of questions about the print out of the overrun and
underun indications.
Is it possible to turn off the output of those indications?
Not yet. I’m actually working on something that should help us control
this information better. I can’t guarantee a time on its availability,
though.
– a_counter: 0
Unable to set the thread priority. Performance may be negatively
Using Volk machine: sse4_1_64_orc
– a_counter: 0
after that nothing is redirected and everything goes back to being
output in the shell window. I’m not an expert on redirecting stdout but
is there anything in gnuradio that would make that stop working?
stephen
There is also stderr, where a lot of this information is printed, too.
You’ll want to redirect both stdout and stderr together to suppress
everything (“program &> /dev/null” will do it or “program > /dev/null
2>&1”).
Not yet. I’m actually working on something that should help us control
this information better. I can’t guarantee a time on its availability,
though.
Being able to forward IO into a gnuradio controlled printf’sh system
would be quite awesome. Then we can simply use standard gnuradio hooks
to control the IO.
There is also stderr, where a lot of this information is printed, too.
You’ll want to redirect both stdout and stderr together to suppress
everything (“program &> /dev/null” will do it or “program > /dev/null
2>&1”).
Tom
I’m redirecting it so I can put the output into a log window of a gui.
There is something related to the setup of the flow graph that is
causing the issue. If I redirect stdout I see everything sent to stdout
get redirected. Until somewhere in the process of making a top block and
a usrp source block and connecting the flow graph together. Doing that
causes my redirection to stop working. If I create the blocks and
connect them together first and then redirect stdout it stays
redirected.