[Discuss-gnuradio] Problem with creating liveusb

2014-01-16 Thread Sandhya G
Hi, Well I wanted to create a bootable pen-drive to run GNU Radio same like a Ettus liveSDR. I found two methods to do this one, in the below link http://files.ettus.com/liveusb/latest/How_To_Install.txt The first method is working perfectly fine but the second method is throwing me

Re: [Discuss-gnuradio] Problem with creating liveusb

2014-01-16 Thread Sandhya G
:23 AM, Sandhya G wrote: Hi, Well I wanted to create a bootable pen-drive to run GNU Radio same like a Ettus liveSDR. I found two methods to do this one, in the below link http://files.ettus.com/liveusb/latest/How_To_Install.txt The first method is working perfectly fine

[Discuss-gnuradio] Fwd: USRP2 firmware images

2014-01-09 Thread Sandhya G
Hi everyone, Well today i came across a problem with my USRP2. I'm suspecting it could be a boot loader problem. I searched for firmware images but couldn't find any of the links to be working.Can someone send link for the firmware images. Thanks and regards Sandhya.G Tenet Technetronics

[Discuss-gnuradio] Fwd: Nand D flipflop in gnuradio

2014-01-01 Thread Sandhya G
PM Subject: Re: [Discuss-gnuradio] Nand D flipflop in gnuradio To: Sandhya G sandhya4...@gmail.com NAND can implement easily by creating C++ block and take input as what you want. if (in0[i]==1 in1[i]==1) { out[i]=0; } else { out[i]=1; } see Block structure how C++ work function

[Discuss-gnuradio] Fwd: Nand D flipflop in gnuradio

2013-12-30 Thread Sandhya G
To: Sandhya G sandhya4...@gmail.com Hi, perhaps you can try with virtual sink/source. Stefano Il giorno 30/dic/2013 07:56, Sandhya G sandhya4...@gmail.com ha scritto: Hi, Out of curiosity for implementing the digital circuits in gnuradio, I tried implementing nand D flipflop in gnuradio

[Discuss-gnuradio] Nand D flipflop in gnuradio

2013-12-29 Thread Sandhya G
Hi, Out of curiosity for implementing the digital circuits in gnuradio, I tried implementing nand D flipflop in gnuradio but stuck with it because* gnuradio can't support loops.* I'm attaching grc file of what I tried. Can someone tell me how to make it work. Thanks in advance sandhya

Re: [Discuss-gnuradio] Unable to use WX widgets

2013-12-20 Thread Sandhya G
-wxgui.conf and change the 'style = auto' option to 'style = nongl But either of the two solutions are working and throwing me the same error. Anyone can help me on this Thanks Sandhya On Fri, Dec 20, 2013 at 1:09 PM, Sandhya G sandhya4...@gmail.com wrote: Thanks marcus . well all these days I

[Discuss-gnuradio] Unable to use constellation block

2013-12-20 Thread Sandhya G
*Hi everyone,* *I installed gnuradio using binary packages provided by ETTUS RESEARCH .* * I installed gnuradio 3.7.2.1 and processor I’m using is intel i3 64bit.* *Everything installed with no issues but when using constellation block, I’m facing the some problem and below is the

[Discuss-gnuradio] Unable to use WX widgets

2013-12-19 Thread Sandhya G
Hi everyone , I installed gnuradio by binaries provided by Ettus Research in ubuntu software centre. Everything installed properly and I got gnuradio-companion but whenever I run flowgraph I get these warnings Warning: Block key blocks_ctrlport_monitor_performance not found when loading

Re: [Discuss-gnuradio] Unable to use WX widgets

2013-12-19 Thread Sandhya G
, a sound card) in your flowgraph, consider simulating that using a throttle block. Greetings Marcus On 20.12.2013 08:16, Sandhya G wrote: Hi everyone , I installed gnuradio by binaries provided by Ettus Research in ubuntu software centre. Everything installed properly and I got gnuradio

[Discuss-gnuradio] Installing using pybombs

2013-12-09 Thread Sandhya G
Hi I started installing GNU Radio in ubuntu 12.01(64bit) in amd processor using pybombs. But unable to proceed from here because i'am unable to understand what it meant . Any suggestions regarding how to proceed would be very helpful. install type priority: ['src', 'deb'] install src called

[Discuss-gnuradio] Issue with Deinterleave block

2013-12-05 Thread Sandhya G
Hi I was just trying to use interleave and deinterleave blocks. GNU radio installed is 3.6.2 flowchar is something like vector source interleave throttle---deinterleave ---scope sink vector source - The datatype is byte. when execute the flowchart

Re: [Discuss-gnuradio] Issue with Deinterleave block

2013-12-05 Thread Sandhya G
oops instead of python i mentioned it C++ . Sorry for that . Thanks Sandhya On Thu, Dec 5, 2013 at 3:29 PM, Sandhya G sandhya4...@gmail.com wrote: Because i'am using instant sdr live usb which has come installed with 3.6.2 Well sorry that message was like when i changed the datatype

Re: [Discuss-gnuradio] Issue with Deinterleave block

2013-12-05 Thread Sandhya G
Thanks for the reply Marcus But can you be more clear about it. Thanks Sandhya On Thu, Dec 5, 2013 at 3:31 PM, Marcus Müller mar...@hostalia.de wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 As I've said, sizeof_char is in gr. and not in blocks. On 05.12.2013 10:59, Sandhya G

Re: [Discuss-gnuradio] Issue with the GNU radio installation

2013-12-04 Thread Sandhya G
Hi Marcus, I tried installing using pybombs but i'm failing to install uhd itself .Here is the error i get when I run make http://pastebin.com/eNr6CQ2f. I manually installed pybombs and uhd from git. Thanks and regards Sandhya On Wed, Dec 4, 2013 at 1:07 PM, Sandhya G sandhya4

[Discuss-gnuradio] samples _per_symbol parameter

2013-12-03 Thread Sandhya G
Hi everyone, i'am trying to do simply QAM modulation for that the source i used is vector source which gives 1byte of 1's and 0's which is fed to QAM modulator . Can anyone tell me how do i calculate samples/symbol .I know the traditional formula

Re: [Discuss-gnuradio] samples _per_symbol parameter

2013-12-03 Thread Sandhya G
can set it according to modulation scheme you use. Samples/symbol is normally default set to 2. I am not aware in gnuradio but in certain other implementations samples/symbol is kept greater than 2, say 4 or 8 to account for pulse shaping. On Tue, Dec 3, 2013 at 2:33 PM, Sandhya G sandhya4

Re: [Discuss-gnuradio] samples _per_symbol parameter

2013-12-03 Thread Sandhya G
, Sandhya G sandhya4...@gmail.com wrote: Hi karan , Thanks for reply . well ya in gnuradio also if i set the value of samples/symbol below 2 it is throwing me an error . So is there any specific reason behind using the value greater than 2? and is that higher the value of samples

Re: [Discuss-gnuradio] Issue with the GNU radio installation

2013-12-03 Thread Sandhya G
Radio, but not the main software; just a small tool to enable you to do stuff graphically. On 04.12.2013 06:59, Sandhya G wrote: Hi, I started installing GRC 3.7.2 but make and make test are failing with several error . i'm using using ubuntu 12.04 (32 bit) amd processor(64 bit) I even

[Discuss-gnuradio] Time controlling block

2013-12-02 Thread Sandhya G
Hi, Today i got a idea about implementing three different modulations on single message signal. But i want the modulations to happen after certain time has searched (can say exactly like counter). which is the block in GNU Radio that i can use has a counter. Thanks and regards, Sandhya

[Discuss-gnuradio] Working examples using GPSDO kit from Ettus

2013-11-26 Thread Sandhya G
Hi everyone , Can anyone tell me where i can find examples to work with GPSDO kit from Ettus. Thanks in advance Sandhya ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Re: [Discuss-gnuradio] setup of usrp N100/N200

2013-10-21 Thread Sandhya G
is not ON Thanks Sandhya On Mon, Oct 21, 2013 at 11:04 AM, Activecat active...@gmail.com wrote: What operating system are you running, is it Linux or Microsoft Windows? On Mon, Oct 21, 2013 at 1:25 PM, Sandhya G sandhya4...@gmail.com wrote: i'm seeing only LED's D and F are on, because host

Re: [Discuss-gnuradio] setup of usrp N100/N200

2013-10-21 Thread Sandhya G
hardware is really GE capable. -- Forwarded message -- From: Activecat active...@gmail.com Date: Mon, Oct 21, 2013 at 1:09 PM Subject: Re: [Discuss-gnuradio] setup of usrp N100/N200 To: Sandhya G sandhya4...@gmail.com Cc: Discuss-gnuradio@gnu.org You shall troubleshoot

[Discuss-gnuradio] audio rate and quadrature rate in gnuradio

2013-10-21 Thread Sandhya G
Hello everyone, ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Re: [Discuss-gnuradio] audio rate and quadrature rate in gnuradio

2013-10-21 Thread Sandhya G
the usrp b100 instant kit Awaiting for the valuable reply Thanks and regards Sandhya On Mon, Oct 21, 2013 at 4:16 PM, Sandhya G sandhya4...@gmail.com wrote: Hello everyone, ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https

Re: [Discuss-gnuradio] setup of usrp N100/N200

2013-10-21 Thread Sandhya G
: Chances are your pc hardware is actually not GE capable. On Mon, Oct 21, 2013 at 2:23 PM, Sandhya G sandhya4...@gmail.com wrote: ok sir then i'l try to debug the problem in my os now Thanks Sandhya On Mon, Oct 21, 2013 at 11:49 AM, Activecat active...@gmail.com wrote: As I mentioned

[Discuss-gnuradio] setup of usrp N100/N200

2013-10-20 Thread Sandhya G
HI all, I have followed as per the instructions given in the webpage for set up of the Usrp N200/N210 but still i am unable to communicate between the hardware and host pc 1.I have set the static ip of the host pc to 192.168.10.1(ifconfig eth0 192.168.10.1). 2.Whenever i

Re: [Discuss-gnuradio] setup of usrp N100/N200

2013-10-20 Thread Sandhya G
. An alternative is to connect a 10/100/1000 LAN switch between your pc and the USRP. Rgds, activecat. On Mon, Oct 21, 2013 at 12:37 PM, Sandhya G sandhya4...@gmail.com wrote: HI all, I have followed as per the instructions given in the webpage for set up of the Usrp N200/N210 but still i am

Re: [Discuss-gnuradio] setup of usrp N100/N200

2013-10-20 Thread Sandhya G
active...@gmail.com wrote: If that is a new USRP from factory then you don't need to update the firmware. On Mon, Oct 21, 2013 at 12:51 PM, Sandhya G sandhya4...@gmail.com wrote: Thanks for the reply. Well is that only problem so that i'm unable to communicate and should i need to update

Re: [Discuss-gnuradio] setup of usrp N100/N200

2013-10-20 Thread Sandhya G
Sir my pc is capable of supporting 1000Mbps but when i connect the hardware and check the speed of the port it will be showing 10/100Mbps. What might the issue?and can i boost the pc speed Thanks and regards Sandhya On Mon, Oct 21, 2013 at 10:30 AM, Sandhya G sandhya4...@gmail.com wrote: ya

Re: [Discuss-gnuradio] setup of usrp N100/N200

2013-10-20 Thread Sandhya G
, 2013 at 1:09 PM, Sandhya G sandhya4...@gmail.com wrote: Sir my pc is capable of supporting 1000Mbps but when i connect the hardware and check the speed of the port it will be showing 10/100Mbps. What might the issue?and can i boost the pc speed Thanks and regards Sandhya On Mon, Oct 21

[Discuss-gnuradio] Sampling rate issue

2013-10-18 Thread Sandhya G
HI everyone , ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

[Discuss-gnuradio] Sampling rate issue

2013-10-18 Thread Sandhya G
Hi everyone , I'm doing a small experiment i.e FM transmitter using gnuradio and usrp b100.i'm facing problem to set the output sampling rate.How exactly should be the sampling rate at each stage to transmit the audio file.Below is the grc file of my flowgraph Please can anyone help

[Discuss-gnuradio] Need for explanation of blocks in gnuradio

2013-10-10 Thread Sandhya G
Hi everyone, Can anybody explain me what are the functions of frequency xlating block and wbfm receive pll block.I searched lot of web pages but couldn't find any proper documentation on it. Thanks in advance Sandhya ___ Discuss-gnuradio

Re: [Discuss-gnuradio] Need for explanation of blocks in gnuradio

2013-10-10 Thread Sandhya G
Hi Marcus Thanks for the explanation.It really helped me Thanks and regards Sandhya On Thu, Oct 10, 2013 at 3:21 PM, Marcus Müller mar...@hostalia.de wrote: Hi Sandhya, the official documentation for the frequency xlating fir filter (

[Discuss-gnuradio] gnu radio installation error

2013-09-24 Thread Sandhya G
Hi all, I have a problem after cloning the gnuradio .when i execute cmake command i'm getting the below error.i installed all the packages and dependencies CMake Error at volk/CMakeLists.txt:79 Please can anybody help me ___