Re: [Discuss-gnuradio] Again on "cannot import name bbn"

2008-12-09 Thread Ritesh Maheshwari
I had the same problems and I ended up wasting half hour adding #include to about 30 odd files. I would suggest that you change your g++ to an older version. Install g++-4.2 and then do this: sudo rm /usr/bin/g++ sudo ln -s g++-4.2 /usr/bin/g++ then make. This is a known problem in gcc-4.3 and 4

Re: [Discuss-gnuradio] bug in benchmark_tx/rx/loopback ?

2008-12-09 Thread Ritesh Maheshwari
I have noticed something similar, except in my case its always a set of packets, not just one. The higher the bandwidth I use, the more packets I see lost (always towards the end). -Ritesh On Mon, Dec 8, 2008 at 11:16 PM, Achilleas Anastasopoulos <[EMAIL PROTECTED]> wrote: > > I have noticed that

Re: [Discuss-gnuradio] how to change the channel width when data is transmitting

2008-12-04 Thread Ritesh Maheshwari
It works! Thanks a lot for the suggestion, but I think its enabling real time scheduling that helped :). The Tx amplitude did not make any difference. Now I am checking how many of these packets reach successfully to the receiver. On Fri, Dec 5, 2008 at 12:40 AM, Firas Abbas <[EMAIL PROTECTED]>wr

Re: [Discuss-gnuradio] how to change the channel width when data is transmitting

2008-12-04 Thread Ritesh Maheshwari
Hi guys, Thanks a lot for all the help. Continuing where Jing left (we work in the same team) ... My installation is on ubuntu 8.10 using the repositories listed on gnuradio website. I am calling benchmark_tx.py with interpolation of 512 and trying to change it every alternate packet to 256. Othe