discuss-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Discuss-gnuradio] Feedback with Transmitters and Receiver


From: Derek Kozel
Subject: Re: [Discuss-gnuradio] Feedback with Transmitters and Receiver
Date: Wed, 20 Apr 2016 18:03:28 -0700

Hello Pavan,

Are you trying to create a shared timebase between the two USRPs without having a shared 1PPS or GPS reference? You are still not using enough detail for us to understand fully.

In Figure 5 both USRPs are connected with a MIMO cable and so have both shared frequency and time bases. What is your weight block doing to the sample stream? Is it a time delay block? I don't know what gnuradio would do if you specified 10*sample_rate as the delay there as that's likely to be a very large number of samples.

If you have both USRPs connected with a time synchronization (shared 1PPS, GPSDO, or MIMO cable) and have your flowgraph configured correctly, then you can just use timed commands to the USRP_alpha to start transmitting at time X and USRP_beta to start receiving at time X and you will see your signal. You can then move to using burst mode using tags to define the number of samples to send/receive along with timed commands to send/receive bursts of samples. This works because the clocks in both USRPs will be aligned to each other.

If you do *NOT* have a shared time source for each radio, for instance they are far apart and do not have GPS references, then you need to do some sort of protocol level alignment to create a shared understanding of time between them. A frequently used method is for USRP_alpha to transmit a beacon with a known period (say once every 10 seconds). All other USRPs then receive for longer than 10 seconds to be guaranteed to receive the beacon (assuming they're within range of the transmission). When the receiving USRPs detect the incoming beacon they align their local time to the master (Beacon transmitting) USRP.

Here's a quick paper talking about this topic. The technique is widely used.
http://www.ece.uah.edu/~milenka/docs/dc_ssst05_synch.pdf


I hope this helps and is applicable to your need. If you have more questions please try drawing your desired system and maybe include a timeline of events that you expect the radios to do. Attaching your existing flowgraphs, either as photos using GRC's screen capture feature (file>screen capture) or the actual GRC file, also helps us understand what exactly you are working with.

Derek

On Wed, Apr 20, 2016 at 4:05 PM, Pavan Yedavalli <address@hidden> wrote:
Hi Martin,

I guess I have a few questions:

1.) Are there any examples in the gnuradio codebase/flowgraph repository that show how to do synchronized feedback between two USRPs? In other words, I send a signal from a transmit USRP, and then I receive that signal at the receive USRP, and then I send back something else from the receive USRP back to the transmit USRP, and this would be a sequential process in which they are aligned and know when to transmit and/or receive? I saw a post that I think would be relevant, but I'm not sure how to apply it. 

I believe this should be a pretty standard scenario in which you want to have two USRPs communicate with each other synchronously. I guess I'm just having trouble finding an example of how to do this.

2.) Related to the above question, maybe there are no examples to do feedback in one flowgraph, so what I have been doing is the following in my flowgraphs:

Flowgraph A:

The synchronized MIMO flowgraph (Figure 5) from this, so essentially I have two USRPs synchronized and transmitting out two signals that should be offset but frequency aligned. In my own flowgraph's main(), instead of applying a "phase shift" block, I am applying my own "weights" block to both transmissions. 

So, I am now sending a signal that has those weights applied to it. So, after I do tb.start(), then I sleep for 10 seconds (by doing sleep(10)) hoping that in the 10 seconds my receiver will catch the signal that I'm transmitting and put it into file.

Flowgraph B: 

My own receiver.py in which I have a USRP sink->FFT->Complex to Mag->File sink. I also have a connection from FFT->QT GUI to see a plot of what is being captured.

I now run Flowgraph A in one terminal and Flowgraph B in another terminal. I need to capture A's transmission with the first weights within the 10 seconds (as it's sleeping) into the file sink. Then, A will send a signal with another set of weights applied, and I will need to capture that in the next 10 seconds, and so on. My problem is that I'm often capturing noise because my receive was not aligned with when I was transmitting my desired signal. So, I end up only capturing noise after the transmission stops as opposed to the actual signal when the transmission is happening.

Essentially, I am trying to mimic feedback by doing the above, but I don't know how to align my transmitter and receiver, especially because they are two different blocks. Is there a way to make both the transmission and reception one block so that I can do sleep(rx_time + n_samples_since_tag/sampling_rate) (I think this could be right?) as opposed to my static sleep(10) and pray for the best?

Would it be helpful at all if I showed you my code? I still feel like I'm not being clear. Sorry about that. If there were any examples, then I think that would be the best for me to look at.

Thanks for any help again.


--
Pavan

_______________________________________________
Discuss-gnuradio mailing list
address@hidden
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio



reply via email to

[Prev in Thread] Current Thread [Next in Thread]