Re: [Discuss-gnuradio] Python function processing block

2006-10-17 Thread Murray Lang
Thanks Eric.sox will get me started but I would eventually like my application to be able to open wav files. Unfortunately the Python wave library limits the sample size to 16 bits - OK for USRP but not for HPSDR. I have a feature request in at python.org to expand it. I'm still struggling to get

[Discuss-gnuradio] Additional decimation in USRP

2006-10-17 Thread Philip Balister
I have a narrowband FM receiver running (not based on GNU radio) using the usrp library and the USRP hardware. I would be helpful if the USRP firmware could reduce the sample to 25 ksps from the current 250 ksps at the maximum decimation factor. I want to try run ning my FM receiver on a TI OSK

[Discuss-gnuradio] USRP and USB 1.1

2006-10-17 Thread Philip Balister
The guy in the cubicle next to me says that it is possible to talk to a USRP from inside a vmware player using my USB1.1 patch for the USRP library. It is to early to tell if you can do anything useful from vmware, but he did successfully run the tx and rx programs. Hopefully, we can use this to

Re: [Discuss-gnuradio] ReG - Building GNU Radio

2006-10-17 Thread Don Ward
Hi Kyle, Hi, I've finally got the minimal gnuradio working. That's great! The problem may be the outdated cygwin system. The mirror I was using for cygwin setup is for some reason not up to date. So even though I did a 'current' installation, many of modules were outdated. Today, I

[Discuss-gnuradio] SDR Hardware Functions

2006-10-17 Thread Written
All, In using usrp_rx_cfile.py, I pull complex I and Q data off of the USRP. I was wondering if this data is handled in any analog fashion in the mixed signal processor, or if the data is only handled in the FPGA. To be specific, I want to know if, when using the GNU Radio USRP functions (like

Re: Two more questions: Re: [Discuss-gnuradio] Two GMSK decoders with two msg queues

2006-10-17 Thread Dawei Shen
Hi, EricThanks~ setting the msq_limit to 0 solved my problem.But actually if you take a look my code, I am inserting the packets to the queue after calling fg.start() fg.start() while n nbytes: send_pkt_A( struct.pack('!H', pktnoA) + 'A' + (pkt_sizeA - 3) * chr(pktnoA 0xff))

[Discuss-gnuradio] beginner questions - implementing MAC

2006-10-17 Thread Shravan Rayanchu
Hi all, I am new to gnuradio and I was wondering if you could help me out with some of the questions I have: I have a very little background of DSP/Comm. and I would to be able to experiment/build 802.11 like MAC atop of gnuradio primitives. Is gnuradio right now at a stage where I can start

Re: [Discuss-gnuradio] beginner questions - implementing MAC

2006-10-17 Thread Greg Troxel
Shravan Rayanchu [EMAIL PROTECTED] writes: I came across some postings which talked about timing considerations when implementing 802.11 like mac. Is this a serious hurdle in the development process (for building a MAC)? Yes, if you expect to be able to e.g. send a CTS after only SIFS time

[Discuss-gnuradio] no trasnmit signal

2006-10-17 Thread seph 004
Hi I am having trouble with transmiting from a Basic TX daughterboard (it's the only one I have for the time being). I've tried connecting an oscilloscope to the output while running siggen.py, but there is no signal coming out. Also, I notice a continuous stream of 'usrp underrun' messages. Has

[Discuss-gnuradio] filtered sequences do not have tails

2006-10-17 Thread Anastasopoulos Achilleas
For an input sequence of length N and a filter with L taps the output sequence should have N + L-1 samples. It seems that the GnuRadio implementation produces exactly N samples, ie, it does not generate the L-1 tail samples. I guess the reason is that there is no way of knowing when the input

Re: [Discuss-gnuradio] ReG - Building GNU Radio

2006-10-17 Thread Kyle Zhou
Hi Don, The mirror I was using is *.aarnet.edu.au ( cannot recall exactly ) since I am located in Australia. But I just found this mirror has been removed from the cygwin mirror list. However, my local pc must have a cache to memorize that mirror. That's why I got outdated cygwin packages. Now I

Re: [Discuss-gnuradio] ReG - Building GNU Radio

2006-10-17 Thread Kyle Zhou
Sorry Don. I mistook you as the user who are experiencing the same problem. Just realized you are the guy who helped. (one of the developer?) Thanks a lot along the way. Kyle - Original Message - From: Kyle Zhou [EMAIL PROTECTED] To: Don Ward [EMAIL PROTECTED]; discuss-gnuradio@gnu.org

Re: [Discuss-gnuradio] filtered sequences do not have tails

2006-10-17 Thread Eric Blossom
On Tue, Oct 17, 2006 at 06:32:19PM -0400, Achilleas Anastasopoulos wrote: For an input sequence of length N and a filter with L taps the output sequence should have N + L-1 samples. It seems that the GnuRadio implementation produces exactly N samples, ie, it does not generate the L-1 tail

Re: [Discuss-gnuradio] ReG - Building GNU Radio

2006-10-17 Thread Kyle Zhou
Hi Don, I can be almost sure that the mirror I used is http://mirror.aarnet.edu.au/pub/cygwin/ It is really outdated. e.g. the binutil version is 20050610-1 cygwin is 1.5.19-4 and python is 2.4.1-1. Maybe you can try that mirror and see if u can reproduce the problems I met before. Another

[Discuss-gnuradio] Compiling standalone apps

2006-10-17 Thread Dan Halperin
Hi, I must be doing something really stupid. I'm trying to figure out how to compile against the C++ libraries. I copied test_usrp_standard_tx.cc, timestuff.h, and timestuff.c to a new folder, then I compiled the application using g++ test_usrp_standard_tx.cc timestuff.c -lusrp -Wall

Re: [Discuss-gnuradio] Compiling standalone apps

2006-10-17 Thread Kyle Zhou
have u added /usr/local/lib in your LD_LIBRARY_PATH environment variable? cheers kyle - Original Message - From: Dan Halperin [EMAIL PROTECTED] To: discuss-gnuradio@gnu.org Sent: Wednesday, October 18, 2006 1:58 PM Subject: [Discuss-gnuradio] Compiling standalone apps Hi, I must be