Re: [Discuss-gnuradio] can not connect USRP2 with UHD drivers

2011-04-11 Thread Abhijeet Mate
Hi Ron,

Thank you very much for your help. when i try to do ethtool eth0
Supported ports: [ TP MII ]
Supported link modes:   10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
Supports auto-negotiation: Yes
Advertised link modes:  10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
Advertised pause frame use: No
Advertised auto-negotiation: Yes
Link partner advertised link modes:  10baseT/Half 10baseT/Full
 100baseT/Half 100baseT/Full
Link partner advertised pause frame use: No
Link partner advertised auto-negotiation: Yes
Speed: 100Mb/s
Duplex: Full
Port: MII
PHYAD: 0
Transceiver: internal
Auto-negotiation: on
Supports Wake-on: pumbg
Wake-on: g
Current message level: 0x0033 (51)
Link detected: yes
this is the output i get i have
 Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet
controller (rev 02)
Ethernet driver.
how can i change it to gigabit. i tried it with
 sudo ethtool -s eth0 speed 1000 duplex full autoneg on
but it is not working.

Thanks,
Abhijeet.

On Wed, Apr 6, 2011 at 11:31 PM, Ron Hall  wrote:

>  Ab:
>
> Your driver setup may be a factor. The 'lsmod' command will list what
> drivers are loaded.  Be sure the Ethernet driver you have is Gig capable.
> For my system it is an e1000e for Intel. Reloading the driver may help
> "clean up" the connection. Run modprobe -r *driver name* followed by
> modprobe *driver name*. Also, ensure that the Ethernet connection is
> configured for Gig. The command ethtool eth0 (provide correct designator for
> you system) should list the current configuration for you system. Finally,
> be sure that the ifconfig for the eth0 (provide correct designator for you
> system) is set up to communicate on the 192.168.10.255
> network...192.168.10.1 is recommended as the host ip address. If this is all
> sound, consider running Wireshark to monitor the connection activity between
> the host and USRP. You may see an ARP when the USRP comes on line and you
> should see the communication between the host and the USRP. Then there is
> always the host and USRP reboot.
>
> Walking through these steps has helped re-establish connectivity for my
> system when *No UHD devices found* or *Discovered device ignored* is
> returned by the uhd_find_devices utility.
>
> Ron H
>
> --
> Date: Wed, 6 Apr 2011 20:01:45 -0400
> From: abhijeetm...@gmail.com
> To: discuss-gnuradio@gnu.org
> Subject: [Discuss-gnuradio] can not connect USRP2 with UHD drivers
>
>
> hello,
>
>  I can't connect to the USRP2 using the latest version of the UHD driver from 
> the git repository. I am using Ubuntu 10.04 and I have followed the 
> instruction at http://www.ruby-forum.com/topic/213259 but still when I 
> connect usrp2 to computer and check the output
>
> uhd_find_devices
>
> linux; GNU C++ version 4.4.3; Boost_104000; UHD_003.000.001-e2cd276
>
> No UHD Devices Found
>
> can anyone help me with this.
>
> Thanks,
> Abhijeet.
>
>
> ___ Discuss-gnuradio mailing
> list Discuss-gnuradio@gnu.org
> http://lists.gnu.org/mailman/listinfo/discuss-gnuradio
>



-- 
Abhijeet S Mate
Graduate Student
Polytechnic Institute of New York University
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
http://lists.gnu.org/mailman/listinfo/discuss-gnuradio


[Discuss-gnuradio] can not connect USRP2 with UHD drivers

2011-04-06 Thread Abhijeet Mate
hello,

 I can't connect to the USRP2 using the latest version of the UHD
driver from the git repository. I am using Ubuntu 10.04 and I have
followed the instruction at http://www.ruby-forum.com/topic/213259 but
still when I connect usrp2 to computer and check the output

uhd_find_devices

linux; GNU C++ version 4.4.3; Boost_104000; UHD_003.000.001-e2cd276

No UHD Devices Found

can anyone help me with this.

Thanks,
Abhijeet.
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
http://lists.gnu.org/mailman/listinfo/discuss-gnuradio


[Discuss-gnuradio] Measuring SNR from the received USRP samples

2011-02-23 Thread abhijeet mate
Hi,

Can anyone explain how do we calculate SNR from the received USRP
samples(complex/float).

Thanking You,
Abhijeet
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
http://lists.gnu.org/mailman/listinfo/discuss-gnuradio


[Discuss-gnuradio] problem with the high correlation in noise while receiving in USRP

2011-02-22 Thread abhijeet mate
Hi,

I am trying to implement Eigenvalue based sensing method using gnuradio and
USRP. and while doing the testing, when we try to receive the noise and do
the detection we still get the output as 1 (i.e. the ratio of eigevalues is
higher than threshold). This may be due to the high correlation in noise. I
tried with removing the antenna and also tried increasing the gain but still
the problem is there. I can someone help me with this problem.

Thanking you,

Abhijeet
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
http://lists.gnu.org/mailman/listinfo/discuss-gnuradio


[Discuss-gnuradio] Problem in grc while importing howto

2011-02-08 Thread abhijeet mate
Hi,
 I am trying to create a new block 'detector' in GRC. I have added all the 3
files .cc,.h and .i into /gnuradio-3.3.0/gnuradio-core/src/lib/gengeral and
did the changes in Makefile.am and added a xml file
in /gnuradio-3.3.0/grc/blocks and did the changes in Makefile.am. Three file
are howto_detect_ff.cc, howto_detect_ff.h and howto.i. The block got added
now but now when I try to run receiver.grc file it gives me error that
from gnuradio import howto
ImportError: cannot import name howto

Can anyone help me with this.

Thank you,
Abhijeet.
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
http://lists.gnu.org/mailman/listinfo/discuss-gnuradio


[Discuss-gnuradio] Problem in creating a new block in GRC

2011-02-05 Thread abhijeet mate
Hi,

I am trying to create a new block in GRC. I have added all the 3 files .cc,
.h and .i into /gnuradio-3.3.0/gnuradio-core/src/lib/gengen and did the
changes in Makefile.am and added a xml file in /gnuradio-3.3.0/grc/blocks$
and did the changes in Makefile.am.

After this i did the ./bootstrap and ./configure. When I started make, it
gave me following error

libtool: link: ( cd ".libs" && rm -f "libgeneral.la" && ln -s "../
libgeneral.la" "libgeneral.la" )
make[6]: Leaving directory
`/home/asm/gnuradio-3.3.0/gnuradio-core/src/lib/general'
make[5]: Leaving directory
`/home/asm/gnuradio-3.3.0/gnuradio-core/src/lib/general'
Making all in gengen
make[5]: Entering directory
`/home/asm/gnuradio-3.3.0/gnuradio-core/src/lib/gengen'
make[5]: *** No rule to make target `gr_howto_detect_ff.cc.t', needed by
`stamp-sources-generate'.  Stop.
make[5]: Leaving directory
`/home/asm/gnuradio-3.3.0/gnuradio-core/src/lib/gengen'
make[4]: *** [all-recursive] Error 1
make[4]: Leaving directory `/home/asm/gnuradio-3.3.0/gnuradio-core/src/lib'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/home/asm/gnuradio-3.3.0/gnuradio-core/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/asm/gnuradio-3.3.0/gnuradio-core'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/asm/gnuradio-3.3.0'
make: *** [all] Error 2

Did I do something wrong in the steps while adding the block or is there
some other problem

Can anyone help me in this.

Thanking You,
Abhijeet
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
http://lists.gnu.org/mailman/listinfo/discuss-gnuradio


[Discuss-gnuradio] how to perform spectrum sensing using energy detection method using gnu radio and usrp

2011-01-04 Thread abhijeet mate
Hi,

can anyone help me with how to perform spectrum sensing using energy
detection method using gnu radio and usrp.

Thanks and Regards,
Abhijeet.

___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
http://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] how to see the captured dat file in octave or any other software

2010-12-06 Thread abhijeet mate
Hi Tom,

Thank you very much for your help.

Abhijeet.

On Mon, Dec 6, 2010 at 12:50 PM, Tom Rondeau  wrote:

> On Mon, Dec 6, 2010 at 11:17 AM, abhijeet mate 
> wrote:
> > Hi,
> >
> > I am new to gnu radio and I have a dat file (complex or float) captured
> from
> > file sink which was directly connected USRP.
> > Can anyone help me with how to see the dat file in octave or any other
> > similar software. Is there any other method to see the content of dat
> file
> > as i need that data for processing.
> > Thanks and Regards,
> > Abhijeet.
>
> I use Python's scipy and matplotlib packages to read in the data files
> and plot them. There are some GNU Radio utilities written already to
> do some basic plotting. They are found in the GR source tree in
> gr-utils/src/python/gr_plot*.py. They also get installed to your
> $(prefix)/bin/gr_plot*.py.
>
> Try gr_plot_psd_c.py to plot the PSD of a file of complex samples.
>
> Tom
>
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
http://lists.gnu.org/mailman/listinfo/discuss-gnuradio


[Discuss-gnuradio] how to see the captured dat file in octave or any other software

2010-12-06 Thread abhijeet mate
Hi,

I am new to gnu radio and I have a dat file (complex or float) captured from
file sink which was directly connected USRP.
Can anyone help me with how to see the dat file in octave or any other
similar software. Is there any other method to see the content of dat file
as i need that data for processing.

Thanks and Regards,
Abhijeet.
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
http://lists.gnu.org/mailman/listinfo/discuss-gnuradio


[Discuss-gnuradio] how to see the captured data in file sink

2010-12-05 Thread abhijeet mate
Hi,

I am new to gnu radio and I have a dat file (complex or float) captured from
file sink which was directly connected USRP.
Can anyone help me with how to see the data in the dat file as i was trying
with octave but i dont know much about octave too.

Abhijeet.
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
http://lists.gnu.org/mailman/listinfo/discuss-gnuradio