Re: [Discuss-gnuradio] Working with Tags

2016-01-04 Thread mark.w.christiansen
so much about the tags stopping except that I sometimes have a dropped packet and the timing is off from then on. From: discuss-gnuradio-bounces+mark.w.christiansen=l-3com@gnu.org [mailto:discuss-gnuradio-bounces+mark.w.christiansen=l-3com@gnu.org] On Behalf Of Paul David Sent: Thursday

[Discuss-gnuradio] Working with Tags

2015-12-30 Thread mark.w.christiansen
I wrote a block that writes the rx_time tag and another block that reads it. After reading them for a 20 to thirty calls to the work function, it stops getting any. The amount it reads varies from run to run. Any ideas? This code snippet is from the work function my block that writes the tag. Th

[Discuss-gnuradio] python keep running

2015-08-04 Thread mark.w.christiansen
I have a GRC file that brings up a QT spectrum. I run grcc to create top_block.py and then run python on the top_block.py. When I click the close icon in the upper right corner of the spectrum window, the window goes away but the python is still running. Do you know why that might happen? Mark.

Re: [Discuss-gnuradio] Audio streaming

2015-07-08 Thread mark.w.christiansen
Edsger Dijkstra From: discuss-gnuradio-bounces+mark.w.christiansen=l-3com@gnu.org [mailto:discuss-gnuradio-bounces+mark.w.christiansen=l-3com@gnu.org] On Behalf Of Marcus Müller Sent: Monday, July 06, 2015 10:17 AM To: discuss-gnuradio@gnu.org Subject: Re: [Discuss-gnuradio] Audio strea

[Discuss-gnuradio] Audio streaming

2015-07-06 Thread mark.w.christiansen
I have an AM demodulator producing audio data. How do I stream that audio to another computer to play out the audio using VLC? Mark. -- "Ninety percent of everything is crud." ~ Theodore Sturgeon ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu

Re: [Discuss-gnuradio] Functions in value field of variables

2015-01-28 Thread mark.w.christiansen
Thanks! That works! /\/\ark. -- Aim for brevity while avoiding jargon. Edsger Dijkstra > -Original Message- > From: Bastian Bloessl [mailto:bloe...@ccs-labs.org] > Sent: Wednesday, January 28, 2015 7:59 AM > To: Christiansen, Mark W. @ CSG - CSW; discuss-gnuradio@gnu.org > Subject: Re: [D

[Discuss-gnuradio] Functions in value field of variables

2015-01-28 Thread mark.w.christiansen
Is there a way to use Python's math.log() in the value field of a variable in gnuradio-companion? It seems like I can only use the Python built in functions. /\/\ark. -- Aim for brevity while avoiding jargon. Edsger Dijkstra ___ Discuss-gnuradio mailing

[Discuss-gnuradio] qam_demod documentation error

2014-09-24 Thread mark.w.christiansen
The documentation for qam_demod is the documentation for qam_mod. /\/\ark. -- Aim for brevity while avoiding jargon. ~ Edsger Dijkstra ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Re: [Discuss-gnuradio] Discuss-gnuradio Digest, Vol 142, Issue 22

2014-09-22 Thread mark.w.christiansen
The message passing interface works for this. I have a VITA-49 depacketizer I wrote and I used message passing to set the center frequency for QT Frequency Sink because it already has a frequency subscriber. But to use it in general, I have to change every block that needs information from the d

[Discuss-gnuradio] Blocks setting variables

2014-09-18 Thread mark.w.christiansen
Is there a way to have the C++ code of a block change the value of a variable for the rest of the flow graph? /\/\ark. -- Aim for brevity while avoiding jargon. ~ Edsger Dijkstra ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://list

[Discuss-gnuradio] exposing packet informatoin

2014-09-15 Thread mark.w.christiansen
I wrote a VITA-49 deserializer block. How can I expose information like the sample rate extracted from the header to the other blocks in the system? /\/\ark. -- Aim for brevity while avoiding jargon. ~ Edsger Dijkstra ___ Discuss-gnuradio mailing lis

[Discuss-gnuradio] GNU Radio Python execution from C++

2014-08-13 Thread mark.w.christiansen
I want to start up and control GNU Radio top_block.py from a C++ class I have written. My thought was to execlp() python on the top_block.py file. I run into a problem because I do not have a good way to kill GNU Radio from my class short of sending a SIGINT. How do you recommend I do things?