[Discuss-gnuradio] USRP SBX board and RFX2200

2011-06-01 Thread Songsong Gee
I wonder if SBX board can replace all RFX series including 2.4G ISM band and so on. And currently I tried to use RFX2200 with GRC but it says RFX2200 is unknown (0x002d) How can I solve this problem? -- Seokseong Jeon (aka Songsong Gee) ___ Discuss-gn

Re: [Discuss-gnuradio] OFDM on USRP2

2011-06-01 Thread vanITA1082
Yes, but they do not work with UHD which is the only way to use my USRP N210 Marcus D. Leech wrote: > > On 05/31/2011 10:15 AM, vanITA1082 wrote: >> Thanks. >> >> However we are trying to transmit a packet from a usrp n210 to another >> usrp >> n210 and we are searching for examples do to this

Re: [Discuss-gnuradio] USRP SBX board and RFX2200

2011-06-01 Thread Josh Blum
> And currently I tried to use RFX2200 with GRC > but it says RFX2200 is unknown (0x002d) > > How can I solve this problem? > > Common dude, you have been around on this list for a while now. Post the verbose from whatever you are running, or even better, post the output of uhd_usrp_probe. >

[Discuss-gnuradio] Suggestion to void frequently asked questions and solved user errors?

2011-06-01 Thread Patrik Tast
Hi all, When a user run into problems, it seems to me, that user will post to the gr-list *help: it doesn't work* even if the problem has been solved 100 times before. When I run into problems (not a GR guru) I browse the archives first https://lists.gnu.org/archive/html/discuss-gnuradio/ and

Re: [Discuss-gnuradio] Suggestion to void frequently asked questionsand solved user errors?

2011-06-01 Thread Patrik Tast
Not a good example but a start... Using the search string option in the archive Search String [SOLVED] F14 https://lists.gnu.org/archive/cgi-bin/namazu.cgi?query=[solved]+f14&submit=Search!&idxname=discuss-gnuradio&max=20&result=normal&sort=score Patrik - Original Message - From: Pa

Re: [Discuss-gnuradio] ETSI DVB-T Compliant OFDM Dumps

2011-06-01 Thread Gaetano Mendola
On Thu, Apr 28, 2011 at 1:55 PM, Vincenzo Pellegrini wrote: > interleaved (I/Q) short ints (16 bits) as defined by C++ > sorry for not having provided this detailed > regards > vincenzo Jeremy those shorts are little endian indeed, I guess Vincenzo is using a little endian architecture machine an

[Discuss-gnuradio] How is it possible that I receive a packet from the same USRP that transmitted it?

2011-06-01 Thread Thomas Arcuri
Hello all, Currently I am testing a modified version of tunnel.py, but I am seeing some strange results. My modifications were essentially a re-factoring to prepare for future additions, however somehow I was able to receive a transmitted packet on the same USRP that transmitted it. The USRP tran

Re: [Discuss-gnuradio] OFDM on USRP2

2011-06-01 Thread Nick Foster
On Wed, 2011-06-01 at 00:50 -0700, vanITA1082 wrote: > Yes, but they do not work with UHD which is the only way to use my USRP N210 I just pushed a branch with UHD versions of the OFDM apps: git://github.com/bistromath/gnuradio.git It's in the uhd_ofdm branch. This is untested code, so use at yo

Re: [Discuss-gnuradio] How is it possible that I receive a packet from the same USRP that transmitted it?

2011-06-01 Thread Marcus D. Leech
On 06/01/2011 03:41 PM, Thomas Arcuri wrote: Hello all, Currently I am testing a modified version of tunnel.py, but I am seeing some strange results. My modifications were essentially a re-factoring to prepare for future additions, however somehow I was able to receive a transmitted packet on

[Discuss-gnuradio] new project on CGRAN: Logitech27MHzTransceiver

2011-06-01 Thread Matthias Fähnle
Hi everybody, I want to announce a new project on CGRAN dealing with analysis of unencrypted and encrypted wireless keyboard transmissions using the Logitech 27 MHz technology. With the realized project, the air interface of wireless 27 MHz Logitech keyboards can be captured and sensitive da

[Discuss-gnuradio] Are there any Gnuradio Events?

2011-06-01 Thread Brett L. Trotter
Lets say you have a GUI app that has a fixed runtime determined by a head block set to (sample_rate * n_seconds). Currently, the gui keeps running. Is there an OnShutdown or some function I can override to catch the flowgraph completion? Worst case, can I set up a loop thread to check tb.is_running

Re: [Discuss-gnuradio] how to trigger dynamic reconfiguration with lock/disconnect

2011-06-01 Thread Yang
Oh, my problem is the same with yours: I want to change transmit frequency according to the sensing result from rx side. I tried lock() and unlock() but cannot work. I solved it by creating 2 flow graphs for tx (to transmit files) and rx (to sense the channel) sides separately and call start(),

Re: [Discuss-gnuradio] how to trigger dynamic reconfiguration with lock/disconnect

2011-06-01 Thread Marcus D. Leech
On 06/01/2011 10:10 PM, Yang wrote: > Oh, my problem is the same with yours: I want to change transmit > frequency according to the sensing result from rx side. I tried lock() > and unlock() but cannot work. > You know that you can change frequency at any time, right? You don't have to lock the fl

Re: [Discuss-gnuradio] how to trigger dynamic reconfiguration with lock/disconnect

2011-06-01 Thread Marcus D. Leech
On 06/01/2011 10:35 PM, Yang wrote: > > I see you mention your rx and tx chains running at the same time, is > it possible? > Absolutely! As long as the underlying hardware supports full-duplex operation. -- Principal Investigator Shirleys Bay Radio Astronomy Consortium http://www.sbrac.org

Re: [Discuss-gnuradio] how to trigger dynamic reconfiguration with lock/disconnect

2011-06-01 Thread Yang
Would you like to expand it in detail or refer me to some places I can look for? Dose this need 2 antennas on 1 daughterboard? It would be great if I can build a graph with rx path and tx path and run 2 paths simultaneously. -- Yang Sent with Sparrow On 2011年6月2日星期四 at 上午11:04, Marcus D. Leech

Re: [Discuss-gnuradio] how to trigger dynamic reconfiguration with lock/disconnect

2011-06-01 Thread Yang
My mistake. I do change frequency while the transmit graph is running. The real problem is the rx side (sensing) and tx (transmitting) side cannot run in the same time (my rx and tx is realized with receive path and transmit path in one top block). So I first run the rx to sense, then stop it an

Re: [Discuss-gnuradio] how to trigger dynamic reconfiguration with lock/disconnect

2011-06-01 Thread Marcus D. Leech
On 06/01/2011 11:07 PM, Yang wrote: > Would you like to expand it in detail or refer me to some places I can > look for? Dose this need 2 antennas on 1 daughterboard? It would be > great if I can build a graph with rx path and tx path and run 2 paths > simultaneously. Yes, you'll need two antenna,

Re: [Discuss-gnuradio] new project on CGRAN: Logitech27MHzTransceiver

2011-06-01 Thread Michael Ossmann
On Wed, Jun 01, 2011 at 07:08:20PM +0200, Matthias F?hnle wrote: > > https://www.cgran.org/wiki/Logitech27MHzTransceiver Thank you for sharing this, Matthias. It looks like excellent work! I didn't realize that Logitech had introduced AES-128 in any of the 2.4 GHz products. The non-Bluetooth 2.

Re: [Discuss-gnuradio] how to trigger dynamic reconfiguration with lock/disconnect

2011-06-01 Thread Yang
Got it. I will try it out. Thanks! -- Yang Sent with Sparrow On 2011年6月2日星期四 at 上午11:35, Marcus D. Leech wrote: > On 06/01/2011 11:07 PM, Yang wrote: > > Would you like to expand it in detail or refer me to some places I can > > look for? Dose this need 2 antennas on 1 daughterboard? It would be

[Discuss-gnuradio] USRP2 firmware and FPGA code for MIMO

2011-06-01 Thread Fisheep
Hi, I'm trying to implement 2x2 MIMO systems using four USRP2s, two of which are connected by MIMO Cable and only one USRP2 is connected to computer through ethernet. After I look through the related discussions and document on the website. As far as I know, the SD card for USRP2 connected to c