discuss-gnuradio
[Top][All Lists]
Advanced

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

Re: [Discuss-gnuradio] Sensitivity of usrp n210


From: Marcus D. Leech
Subject: Re: [Discuss-gnuradio] Sensitivity of usrp n210
Date: Thu, 27 Sep 2018 12:54:35 -0400
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0

On 09/27/2018 12:58 AM, tadikondasuresh wrote:
Good morning Sir, I would like to calculate sensitivity of USRPN210 Radio module by using gnuradio tool..I working on that ..I tried lot sir..please help me and please forward .GRC file if u have sensitivity measuring...in specification his given -110dbm but practically I want calculate and how to send -80dbm power to antenna..please guide me sir

Thanks & Regards,
Suresh T,
Navstar Integrated Systems Pvt ltd,
9866212494


Sensitivity is not a context-free evaluation parameter--it depends heavily on exactly what modulation is being used and other factors.
  Which makes the concept of "sensitivity" in the standalone context meaningless.

You haven't mentioned what daughtercard you're using in your N210, so without that, we can't begin a discussion.




From: address@hidden
Sent: Wed, 26 Sep 2018 22:07:03 GMT+0530
To: address@hidden
Subject: Discuss-gnuradio Digest, Vol 191, Issue 23

Send Discuss-gnuradio mailing list submissions to

   address@hidden



To subscribe or unsubscribe via the World Wide Web, visit

   https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

or, via email, send a message with subject or body 'help' to

   address@hidden



You can reach the person managing the list at

   address@hidden



When replying, please edit your Subject line so it is more specific

than "Re: Contents of Discuss-gnuradio digest..."





Today's Topics:



  1. SNR of BPSK (tadikondasuresh)

  2. Re: port number 1 exceeds max of 0 (Michael Dickens)

  3. Re: PyBOMBS install issues (John_w_g)

  4. Re: SNR of BPSK (Sumit Kumar)

  5. ABI compatability mismatch (Rensi Mathew)

  6. Re: ABI compatability mismatch (Marcus D. Leech)





----------------------------------------------------------------------



Message: 1

Date: 25 Sep 2018 16:43:08 -0000

From: "tadikondasuresh" <address@hidden>

To: <address@hidden>, "pandi" <address@hidden>

Subject: [Discuss-gnuradio] SNR of BPSK

Message-ID: <address@hidden>

Content-Type: text/plain; charset="utf-8"



Good evening Sir, ..Sir i am working on GNURADIO tool..and i am developing BPSK modulation and i tried SNR calculation in that and i already calculated the&nbsp; SNR value and i want to send that value&nbsp; in to text file,but i could not able to send that value in to file.. please help me sir..please find outthe grc file attached&nbsp;Thanks &amp; Regards,Suresh T,Navstar Integrated Systems Pvt ltd,9866212494

-------------- next part --------------

An HTML attachment was scrubbed...

URL: <http://lists.gnu.org/archive/html/discuss-gnuradio/attachments/20180925/34ca535f/attachment.html>

-------------- next part --------------

A non-text attachment was scrubbed...

Name: VHF_BPSK_NORMAL_RX.grc

Type: application/octet-stream

Size: 88601 bytes

Desc: not available

URL: <http://lists.gnu.org/archive/html/discuss-gnuradio/attachments/20180925/34ca535f/attachment.obj>



------------------------------



Message: 2

Date: Tue, 25 Sep 2018 13:40:59 -0400

From: Michael Dickens <address@hidden>

To: Sumit Kumar <address@hidden>,   GNURadio Discussion List

   <address@hidden>

Subject: Re: [Discuss-gnuradio] port number 1 exceeds max of 0

Message-ID:

   <address@hidden>

Content-Type: text/plain; charset="utf-8"



Hi Sumit - Do you have your GR OOT in a public repo where we could

review all of the code & try the example ourselves? That's the most

reliable way to handle such potentially in-depth queries such as yours.

As a quick reply without knowing more specifics, are you using the

"hier_block2" for the base class for your main block? If so, then you

can't do signal processing within this block; all a "hier_block2" block

is good for is encapsulating other blocks, connecting them internally as

well as to the "hier_block2"s input(s) and output(s); no "work" here!

>From the debug printout, likely candidates for this issue would be the

block "fft_vxx" or "ieee802_11_soft_frame_equalizer_dc".

Hope this is useful! - MLD



On Tue, Sep 25, 2018, at 9:48 AM, Sumit Kumar wrote:

> Hi,





> I have made a block with take two streams of input and produces four

> stream of outputs.> The* impl.cc* file has the following declaration:





> static int ios1[] = {48, 48*sizeof(float), 48, 48*sizeof(float)};

>  static std::vector<int> iosig1(ios1, ios1+sizeof(ios1)/sizeof(int));>

>  soft_frame_equalizer_impl_dc::soft_frame_equalizer_impl_dc(Equalizer-

>  _soft_dc algo, double freq, double bw, int scaling, int threshold,

>  bool log, bool debug) :>      gr::block("soft_frame_equalizer_dc",

>              gr::io_signature::make2(2, 2, 64 * sizeof(gr_complex), 64

>              * sizeof(gr_complex)),>              gr::io_signature::makev(4, 4, iosig1)),





>  

> I made the corresponding xml file also. No error during compiling but

> when I connect my block and run I get the error:>   File "/home/john/myprefix/src/gr-ieee-

>   80211/examples/sbmrc_testing.py", line 555, in <module>>      main()

>    File "/home/john/myprefix/src/gr-ieee-

>    80211/examples/sbmrc_testing.py", line 543, in main>      tb = top_block_cls(bandwidth=options.bandwidth,

>      encoding=options.encoding, frequency=options.frequency,

>      sensitivity=options.sensitivity)>    File "/home/john/myprefix/src/gr-ieee-

>    80211/examples/sbmrc_testing.py", line 350, in __init__>      self.connect((self.fft_vxx_0_1, 0),

>      (self.ieee802_11_soft_frame_equalizer_dc_0, 1))>    File "/home/john/myprefix/lib/python2.7/dist-

>    packages/gnuradio/gr/hier_block2.py", line 47, in wrapped>      func(self, src, src_port, dst, dst_port)

>    File "/home/john/myprefix/lib/python2.7/dist-

>    packages/gnuradio/gr/hier_block2.py", line 110, in connect>      self.primitive_connect(*args)

>    File "/home/john/myprefix/lib/python2.7/dist-

>    packages/gnuradio/gr/runtime_swig.py", line 4574, in

>    primitive_connect>      return _runtime_swig.top_block_sptr_primitive_connect(self,

>      *args)> *ValueError: port number 1 exceeds max of 0*





> I am attaching the xml file. Can anyone help me figuring out the

> mistake :)> Regards





> Sumit





>





>





>  

> _________________________________________________

> Discuss-gnuradio mailing list

> address@hidden

> https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

> Email had 1 attachment:





>  * ieee802_11_soft_frame_equalizer_dc.xml 3k (text/xml)

-------------- next part --------------

An HTML attachment was scrubbed...

URL: <http://lists.gnu.org/archive/html/discuss-gnuradio/attachments/20180925/ebcb70b9/attachment.html>

-------------- next part --------------

A non-text attachment was scrubbed...

Name: Screenshot from 2018-09-25 15-42-58.png

Type: image/png

Size: 8727 bytes

Desc: not available

URL: <http://lists.gnu.org/archive/html/discuss-gnuradio/attachments/20180925/ebcb70b9/attachment.png>



------------------------------



Message: 3

Date: Tue, 25 Sep 2018 18:00:28 +0000

From: John_w_g <address@hidden>

To: Dave NotTelling <address@hidden>

Cc: GNURadio Discussion List <address@hidden>

Subject: Re: [Discuss-gnuradio] PyBOMBS install issues

Message-ID:

   <address@hidden>

   

Content-Type: text/plain; charset="utf-8"



Dave,



Thankyou.   I partially resolved this by uninstalling UHD and GRC, and using the latest PyBOMBS to compile from source both UHD and GRC.  The good news is that after installing the correct FPGA image, GRC runs.  Unfortunately it is not operating correctly.  GRC is throuwing codes Gt, the simple generate a cosine tone, send it to the Ettus X310, then loop it back to the receiver for display seems to only show LO leakage at 0 Hz.  Additionally GRC will not properly end, and I must force an exit.



Attached is the console output (text file).  It looks like I have some files from the old install that are interfering with the new GRC install.  I'm not sure where to look to erase them if so.  Any other idea's what is the issue?



Sent with [ProtonMail](https://protonmail.com) Secure Email.



??????? Original Message ???????

On Sunday, September 23, 2018 6:35 PM, Dave NotTelling <address@hidden> wrote:



> John,

>

>      The issue you are having is that the version of the firmware on your radio does not match the version of the UHD libraries that you have on your system.  You need to either update your radios (uhd_image_loader) or change your version of UHD to match what the radio has.  The former is the better choice in my opinion.

>

>      I think that you need to add `--init-only` to the uhd_usrp_probe command to tell if the versions line up.  I seem to recall not getting the version error without it.

>

>      For the instructions on how to compile UHD from source: https://files.ettus.com/manual/page_build_guide.html

>

>      Also, for GNU Radio: https://wiki.gnuradio.org/index.php/UbuntuInstall

>

>      You likely don't need to install from source.  As far as I know gr-uhd just makes use of the system UHD install.  Perhaps you have two different locations that UHD is installed to?  You could double check that you don't have libuhd.so in /usr/local/lib and /usr/lib at the same time.  I'd suggest updating the radios to the current firmware with uhd_image_loader, power cycling them, and then trying again.

>

> Good luck!

>

> -Dave

>

> On Thu, Sep 20, 2018 at 5:36 PM John_w_g <address@hidden> wrote:

>

>> I am using Ubuntu 18.04 and the only listed GRC version in the ppa is version 3.13.0.1

>>

>> I have an Ettus x310 and have downloaded the correct FPGA image and verified correct operation with uhd_usrp_probe.

>>

>> I have GRC 3.7.11 installed and when I attempt to access the x310, I get an incompatible FPGA version.

>>

>> First question is what is the correct GRC version to work with this UHD version?

>>

>> Second question as a relatively new Linux user, I really don't want to compile source code. If that is necessary, where should I look for a detailed description of the correct process.

>>

>> John G

>>

>> Sent from ProtonMail mobile

>>

>> _______________________________________________

>> Discuss-gnuradio mailing list

>> address@hidden

>> https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

-------------- next part --------------

An HTML attachment was scrubbed...

URL: <http://lists.gnu.org/archive/html/discuss-gnuradio/attachments/20180925/646affa4/attachment.html>

-------------- next part --------------

A non-text attachment was scrubbed...

Name: GRC_error_out_in_terminal

Type: application/octet-stream

Size: 76513 bytes

Desc: not available

URL: <http://lists.gnu.org/archive/html/discuss-gnuradio/attachments/20180925/646affa4/attachment.obj>



------------------------------



Message: 4

Date: Tue, 25 Sep 2018 21:22:38 +0200

From: Sumit Kumar <address@hidden>

To: tadikondasuresh <address@hidden>,

   address@hidden,   pandi <address@hidden>

Subject: Re: [Discuss-gnuradio] SNR of BPSK

Message-ID: <address@hidden>

Content-Type: text/plain; charset="utf-8"; Format="flowed"



Hello Suresh,



Dump the SNR values in a file. Then read the file using

read_float_binary.m utility available in gr-utils/octave.



Hope this helps



Regards



Sumit





On 25/09/2018 18:43, tadikondasuresh wrote:

> Good evening Sir, ..Sir i am working on GNURADIO tool..and i am

> developing BPSK modulation and i tried SNR calculation in that and i

> already calculated the? SNR value and i want to send that value in to

> text file,but i could not able to send that value in to file.. please

> help me sir..please find outthe grc file attached

>

>

> Thanks & Regards,

> Suresh T,

> Navstar Integrated Systems Pvt ltd,

> 9866212494

>

>

> _______________________________________________

> Discuss-gnuradio mailing list

> address@hidden

> https://lists.gnu.org/mailman/listinfo/discuss-gnuradio



-------------- next part --------------

An HTML attachment was scrubbed...

URL: <http://lists.gnu.org/archive/html/discuss-gnuradio/attachments/20180925/e7fc3262/attachment.html>



------------------------------



Message: 5

Date: Wed, 26 Sep 2018 11:06:07 +0000 (UTC)

From: Rensi Mathew <address@hidden>

To: "address@hidden" <address@hidden>

Subject: [Discuss-gnuradio] ABI compatability mismatch

Message-ID: <address@hidden>

Content-Type: text/plain; charset="utf-8"



I had newly installed gnuradio and its dependencies. I was careful as I was aware of this error.



When uhd was installed , I had selected v3.12.0and the gnuradio version was v13.4.0 (one of the latest but stable ones as of my understanding)

When I connected B200 and run my programme, it showed this error.



RuntimeError:

GR-UHD detected ABI compatibility mismatch with UHD library.

GR-UHD was build against ABI: 3.12.0,

but UHD library reports ABI: 3.14.0

Suggestion: install an ABI compatible version of UHD,

or rebuild GR-UHD component against this ABI version.



How cold I possibly correct it?

Rensi SamResearch Scholar

-------------- next part --------------

An HTML attachment was scrubbed...

URL: <http://lists.gnu.org/archive/html/discuss-gnuradio/attachments/20180926/c5bb92a4/attachment.html>



------------------------------



Message: 6

Date: Wed, 26 Sep 2018 11:36:08 -0400

From: "Marcus D. Leech" <address@hidden>

To: address@hidden

Subject: Re: [Discuss-gnuradio] ABI compatability mismatch

Message-ID: <address@hidden>

Content-Type: text/plain; charset="windows-1252"; Format="flowed"



On 09/26/2018 07:06 AM, Rensi Mathew wrote:

> I had newly installed gnuradio and its dependencies. I was careful as

> I was aware of this error.

>

> When uhd was installed , I had selected v3.12.0

> and the gnuradio version was v13.4.0 (one of the latest but stable

> ones as of my understanding)

>

> When I connected B200 and run my programme, it showed this error.

>

> RuntimeError:

> GR-UHD detected ABI compatibility mismatch with UHD library.

> GR-UHD was build against ABI: 3.12.0,

> but UHD library reports ABI: 3.14.0

> Suggestion: install an ABI compatible version of UHD,

> or rebuild GR-UHD component against this ABI version.

>

> How cold I possibly correct it?

>

> Rensi Sam

> Research Scholar

>

Rebuild Gnu Radio against your installed UHD.



If you have a version of Gnu Radio installed from the package manager,

make sure to remove it before installing the built-from-source

  Gnu Radio.







-------------- next part --------------

An HTML attachment was scrubbed...

URL: <http://lists.gnu.org/archive/html/discuss-gnuradio/attachments/20180926/9ff66a4e/attachment.html>



------------------------------



Subject: Digest Footer



_______________________________________________

Discuss-gnuradio mailing list

address@hidden

https://lists.gnu.org/mailman/listinfo/discuss-gnuradio





------------------------------



End of Discuss-gnuradio Digest, Vol 191, Issue 23

*************************************************




_______________________________________________
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]