Re: Controlling flowgraph

2022-06-06 Thread Cinaed Simson
Hi Vamshi - I vaguely remember the gr-osmosdr being optimized for transmission - the sinks and sources have different lifetimes. For the price of a second hackrf, you can buy the hackrf add on known as the "operacake" which supports multiple antenna configurations -  which can configured for

Re: Controlling flowgraph

2022-06-06 Thread GNU Radio, the Free & Open-Source Toolkit for Software Radio
Vamshi, I just gave you an example in the last message. To get more information about the stream tags, please check out the GNU Radio wiki website https://wiki.gnuradio.org/index.php/Stream_Tags Marcin pon., 6 cze 2022 o 15:46 Vamshi Sainath Gavani napisał(a): > can you give me an example of

Re: Controlling flowgraph

2022-06-06 Thread GNU Radio, the Free & Open-Source Toolkit for Software Radio
Vamshi, I don't think that HackRF One supports bursty transmission (like USRP UHD does). If you want to achieve a 3 seconds period bursty Tx you have to provide an adequate amount of 'null' samples between the transmission bursts to drive DAC. To verify that information I think you can ask on

Re: Controlling flowgraph

2022-06-06 Thread Paul Atreides
This link contains the relevant information to the structure of a flowgraph’s top block function, which is what you pasted below. https://wiki.gnuradio.org/index.php/Handling_Flowgraphs You may find some help regarding handling burst tags in the documentation for these blocks.

Re: Controlling flowgraph

2022-06-06 Thread GNU Radio, the Free & Open-Source Toolkit for Software Radio
Hi Vamshi, First, what do you mean by turning off/on the transmitter? Marcin pon., 6 cze 2022 o 09:14 Vamshi Sainath Gavani napisał(a): > Hello Folks, > > Here I'm implementing the transmission of LoRa Frames and I want to be > able to stop the flowgraph(Stop Transmitting) between frames say

Re: Controlling flowgraph

2022-06-06 Thread Vamshi Sainath Gavani
So what I'm doing is transmitting with a HackRF One and when I run the flowgraph the transmission starts and frames are sent as bursts and between the bursts, the transmitter stays on and I would like to turn it off at tx_eob and turn on tx at tx_sob Below is the screenshot of the current

Controlling flowgraph

2022-06-06 Thread Vamshi Sainath Gavani
Hello Folks, Here I'm implementing the transmission of LoRa Frames and I want to be able to stop the flowgraph(Stop Transmitting) between frames say the packet is set to transmit every 3s so at tx_eob turn off tx and tx_sob start tx. Below is my Flow graph code snippet can you let me know how I

Re: [Discuss-gnuradio] Controlling Flowgraph Variables from a Webpage/ External Application.

2017-03-14 Thread Mehmeto
/lists.gnu.org/mailman/listinfo/discuss-gnuradio -- View this message in context: http://gnuradio.4.n7.nabble.com/Controlling-Flowgraph-Variables-from-a-Webpage-External-Application-tp63090p63095.html Sent from the GnuRadio mailing list archive at Nabble.com._

Re: [Discuss-gnuradio] Controlling Flowgraph Variables from a Webpage/ External Application.

2017-03-14 Thread Kevin Reid
On Tue, Mar 14, 2017 at 8:28 AM, Mehmeto wrote: > I would like to control the variables in realtime of a GNU Radio Flowgraph > (like Sampling Rate, Center Frequency, Demodulator type etc.) from a > Webpage > or external application. > I imagine that we need a

Re: [Discuss-gnuradio] Controlling Flowgraph Variables from a Webpage/ External Application.

2017-03-14 Thread Marcus D. Leech
On 03/14/2017 11:28 AM, Mehmeto wrote: Dear All, I would like to control the variables in realtime of a GNU Radio Flowgraph (like Sampling Rate, Center Frequency, Demodulator type etc.) from a Webpage or external application. I imagine that we need a webserver/ external application that

[Discuss-gnuradio] Controlling Flowgraph Variables from a Webpage/ External Application.

2017-03-14 Thread Mehmeto
of GNU Radio blocks are suitable for this job? ZeroMq, XmlRPC, Control port ? I have checked out ShinySDR but i uses GNU Radio simulated blocks as plugins. (Not directly Flowgraphs) Thank you in advance. -- View this message in context: http://gnuradio.4.n7.nabble.com/Controlling-Flowgraph

Re: [Discuss-gnuradio] controlling flowgraph

2013-10-11 Thread Nemanja Savic
I still can't find solution so any suggestion would be good. Best, Nemanja On Thu, Oct 10, 2013 at 5:26 PM, Nemanja Savic vlasi...@gmail.com wrote: Ok, I have found button :), but the problem is now following. Part of my script looks like this: def aaa(a): global state state = 1

Re: [Discuss-gnuradio] controlling flowgraph

2013-10-11 Thread Nemanja Savic
When want to use method Start, that is defined for top_block_gui class, i always get this error: AttributeError: 'gr_top_block_sptr' object has no attribute 'Start' [savi_ne@ts-070046nl GRC]$ gvim /usr/local/lib64/python2.6/site-packages/gnuradio/gr/top_block.py But it is clear that tb is of

[Discuss-gnuradio] controlling flowgraph

2013-10-10 Thread Nemanja Savic
Hi all guys, I wanted to implement a ask transmitter and a button for triggering transmition of a single frame of data. My idea was to do that with a sort of state machine and a button, but as far as i can see there is no button in wx gui blocks. How do uo usually do this? Many thanks, --

Re: [Discuss-gnuradio] controlling flowgraph

2013-10-10 Thread Nemanja Savic
Ok, I have found button :), but the problem is now following. Part of my script looks like this: def aaa(a): global state state = 1 state = 1 data = [0] if __name__ == '__main__': parser = OptionParser(option_class=eng_option, usage=%prog: [options]) (options, args) =