[Discuss-gnuradio] Need help with debugging a source block OOT

2019-07-30 Thread Pradeep M C
Hi all, I am working on developing a OOT module. It is a source block which reads the data from a virtual usb com port. This block is connected to a file sink through a throttle block __ _ _ | | | | | | |usb re

Re: [Discuss-gnuradio] Need help with gr-eventstream

2019-05-27 Thread CEL
I'm sure Team Platypus is awesome and will do the FOSS thing and contribute that block to gr-eventstream? On Sun, 2019-05-26 at 15:46 -0600, U L wrote: > Team Platypus ran into this precise problem at the DARPA Hackfest. The only > solution was to code it up ourselves. It's non-trivial, but not

Re: [Discuss-gnuradio] Need help with gr-eventstream

2019-05-26 Thread U L
Team Platypus ran into this precise problem at the DARPA Hackfest. The only solution was to code it up ourselves. It's non-trivial, but not too much code. Jared. On Thu, May 23, 2019 at 1:48 PM Chesir, Aaron M. wrote: > Folks, > > > > I am using the gr-eventstream package in GNUradio, and I n

[Discuss-gnuradio] Need help with gr-eventstream

2019-05-23 Thread Chesir, Aaron M.
Folks, I am using the gr-eventstream package in GNUradio, and I need help with the EventStream Source block. This is a block that takes a PDU as a message input and produces a data stream as an output. My problem is this: I am trying to feed the data stream output to a USRP Sink as an input, su

Re: [Discuss-gnuradio] Need Help for TSBs

2018-09-30 Thread CEL
Mr。树, if you need help with anything, I propose you share the errors you get as well as the code you've written with us. It's impossible for us to guess what goes wrong! Best regards, Marcus On Fri, 2018-09-28 at 15:47 +0800, Mr。树 wrote: > Hello all, > I have 2 targged streams , and they have di

[Discuss-gnuradio] Need Help for TSBs

2018-09-28 Thread Mr????
Hello all, I have 2 targged streams , and they have different targged length. I want to combine them into 1 tagged stream, in this process, I hope I can deal with some data. I have tried to overwrite the function , gr::tagged_stream_block::parse_length_tags(), but the program compilation failed

Re: [Discuss-gnuradio] Need help with CtrlPort Performance Monitor

2018-07-16 Thread CEL
Hi Jim, though the crash here definitely is different from what you witness in GRC, I'd chalk it up to either a bug in Matplotlib (a python graph drawing library) or our code. https://stackoverflow.com/a/17935694/4433386 might be an indication that we're the ones doing something wrong. I don't h

Re: [Discuss-gnuradio] Need help with CtrlPort Performance Monitor

2018-07-15 Thread Jim Larsen
Hi Marcus, Thank you for your patience with my CtrlPort Performance Monitor problems. I have been distracted by other projects and finally had time to try your suggestion. > On Jul 4, 2018, at 1:47 AM, Müller, Marcus (CEL) wrote: > > hm... > no, but if `gr-ctrlport-monitor` works, does runni

Re: [Discuss-gnuradio] Need help with CtrlPort Performance Monitor

2018-07-04 Thread CEL
hm... no, but if `gr-ctrlport-monitor` works, does running `gr-perf- monitorx`? Do you still get the same blank display, are there any warnings/errors printed? Best regards, Marcus On Tue, 2018-07-03 at 20:23 -0700, Jim Larsen wrote: > Hi Marcus, > > Thank you for your help. > > > On Jun 24, 20

Re: [Discuss-gnuradio] Need help with CtrlPort Performance Monitor

2018-07-03 Thread Jim Larsen
Hi Marcus, Thank you for your help. > On Jun 24, 2018, at 1:20 AM, Müller, Marcus (CEL) wrote: > > So, each time you run your flow graph, the following line should > change: > > monitor::endpoints() = -h vmware -p 40161 > > at least in the port number at the end. The port number changes each

Re: [Discuss-gnuradio] Need help with CtrlPort Performance Monitor

2018-06-24 Thread CEL
Hi Jim, that's good news so far :) So, each time you run your flow graph, the following line should change: monitor::endpoints() = -h vmware -p 40161 at least in the port number at the end. Now, remove the ctrlport monitor from your flowgraph (disable it); start your flow graph and let it run.

Re: [Discuss-gnuradio] Need help with CtrlPort Performance Monitor

2018-06-23 Thread Jim Larsen
Marcus, Thank you for your reply. > On Jun 23, 2018, at 4:00 AM, Müller, Marcus (CEL) wrote: > > Can you share the full console output of your flow graph? Here is the flow graph console output: jim@vmware:~/gnuradio/prefix/perform$ gnuradio-companion <<< Welcome to GNU Radio Companion 3.7.12.

Re: [Discuss-gnuradio] Need help with CtrlPort Performance Monitor

2018-06-23 Thread CEL
Hi Jim, Can you share the full console output of your flow graph? Also note that the most "fragile" dependency of GNU Radio right now is Thrift, if you can check whether your CMake output says that Thrift was used, it would be helpful. Thrift is the RPC middleware that ctrlport uses to expose its

[Discuss-gnuradio] Need help with CtrlPort Performance Monitor

2018-06-22 Thread Jim Larsen
I want to use the CtrlPort Performance Monitor block to compare CPU usage of several demodulator alternatives. I built GNU Radio version 3.7.12 using PyBOMBS on Ubuntu 18.04. I added -DENABLE_PERFORMANCE_COUNTERS=ON to the gnuradio.lwr recipe. I installed networkx, matplotlib, and python-pygrap

[Discuss-gnuradio] Need help with docs/sphinx

2018-06-21 Thread Gisle Vanem
I'm on Windows-10 trying to build the Python docs using 'sphinx-build -b html'. As the README says, it's really best suited for Unix with it's run_sphinx_build.sh. Anyway, I tried with this GNU-make snippet in docs/my-doc.mak: PY_PATH = $(SITE_DIR) PYD_PATH = ... all the paths under $(SITE_DIR)

[Discuss-gnuradio] Need help with calculation of channel impulse response

2016-06-08 Thread Rush
Hi @all. Maybe I should introduce my project first: I want to make a flowgraph that prints the channel impulse response of an OFDM(DAB) ensemble on a Scope Sink. CIR = IFFT {Received PRS x PRS*} What I have done is: 1. wrote a matlab script that generates a binary file with samples of the phase

Re: [Discuss-gnuradio] Need help to understand code of sync:decimator block

2014-03-08 Thread Activecat
Dear Kunal, This is not "moving average", this is normal "average". I agree with Marcus' explanation, you don't need the "set_history()". Moving average is: 1st output = average of 1,2,3,4,5 2nd output = average of 2,3,4,5,6 3rd output = average of 3,4,5,6,7 4th output = average of 4,5,6,7,8

Re: [Discuss-gnuradio] Need help to understand code of sync:decimator block

2014-03-08 Thread Marcus Müller
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Sorry I was unclear: "5 inputs" means "5input items from the same (only one) input stream". Now, Miklos is most probably very right, the GNU Radio filters are highly optimized. But let's take this as an exercise in understanding decimators: A decimato

Re: [Discuss-gnuradio] Need help to understand code of sync:decimator block

2014-03-08 Thread Miklos Maroti
Hi Kunal, Use a decimating FIR filter with taps [0.2, 0.2, 0.2, 0.2, 0.2] and decimation 5. It will be faster than anything you are about to write. Miklos On Sat, Mar 8, 2014 at 12:03 PM, kunal sankhe wrote: > Hello Marcus, > > Sorry for my vague explanation. I want to write a block which will

Re: [Discuss-gnuradio] Need help to understand code of sync:decimator block

2014-03-08 Thread kunal sankhe
Hello Marcus, Sorry for my vague explanation. I want to write a block which will calculate moving average for a block of samples. I have only one input in this case. I am providing my data serially using vector to stream converter. I want to calculate average of a block of 5 samples. eg. from vec

Re: [Discuss-gnuradio] Need help to understand code of sync:decimator block

2014-03-08 Thread Marcus Müller
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Hello Kunal, You don't want to use set_history in this case: you want to produce 1 output for 5 input, so you use a decimator; that's all you need to do. Drop the set_history. For reference: history is when for every input item you need the last

[Discuss-gnuradio] Need help to understand code of sync:decimator block

2014-03-07 Thread kunal sankhe
Hello, I am using GNU Radio version 3.6.5 and trying to write a block to calculate average of 5 samples. I want to produce one average output corresponding to 5 input samples. I am using set_history(5) to remember previous data. I used gr_modtool script of type decimator to create file. eg. for

Re: [Discuss-gnuradio] Need help identifying jammer signal

2013-12-18 Thread Patrik Tast
Well done! Patrik On Tue, 2013-12-17 at 17:40 -0500, Juha Vierinen wrote: > Last Friday we managed to finally track this thing down. It was a > broken FSK telemetry system on an FM radio tower. It was about 30 km > Southwest of our radar. > > > I did a small write up about this: > http://kaira.

Re: [Discuss-gnuradio] Need help identifying jammer signal

2013-12-18 Thread Ralph A. Schmid, dk5ras
Sent: Tuesday, December 17, 2013 11:41 PM Cc: gnuradio mailing list Subject: Re: [Discuss-gnuradio] Need help identifying jammer signal Last Friday we managed to finally track this thing down. It was a broken FSK telemetry system on an FM radio tower. It was about 30 km Southwest of our radar

Re: [Discuss-gnuradio] Need help identifying jammer signal

2013-12-17 Thread Juha Vierinen
Last Friday we managed to finally track this thing down. It was a broken FSK telemetry system on an FM radio tower. It was about 30 km Southwest of our radar. I did a small write up about this: http://kaira.sgo.fi/2013/12/perfect-incoherent-scatter-radar-jammer.html Thanks for all the help. juha

Re: [Discuss-gnuradio] Need help identifying jammer signal

2013-12-11 Thread Johnathan Corgan
On 12/10/2013 02:00 PM, Miki Lustig - KK6GEO wrote: > These look like 2pi jumps -- which is the an artifact if the > unwrapping is not working well. Sure, I see what you mean. Backing up and just plotting the unwrapped phase, you can see in the first image that overall it is increasing at one ra

Re: [Discuss-gnuradio] Need help identifying jammer signal

2013-12-10 Thread Miki Lustig - KK6GEO
These look like 2pi jumps -- which is the an artifact if the unwrapping is not working well. On Dec 10, 2013, at 1:55 PM, Johnathan Corgan wrote: > On 12/09/2013 07:26 PM, Juha Vierinen wrote: > >> I recorded a 10 second snippet of 50 kHz baseband signal in interleaved >> I and Q with 32-b

Re: [Discuss-gnuradio] Need help identifying jammer signal

2013-12-10 Thread Johnathan Corgan
On 12/09/2013 07:26 PM, Juha Vierinen wrote: > I recorded a 10 second snippet of 50 kHz baseband signal in interleaved > I and Q with 32-bit floating point format. The signal is definitely frequency modulated, but it doesn't appear to be by data. Plotting the unwrap(diff(unwrap(arg(s))) shows a

Re: [Discuss-gnuradio] Need help identifying jammer signal

2013-12-09 Thread Ralph A. Schmid, dk5ras
[mailto:discuss-gnuradio-bounces+ralph=schmid@gnu.org] On Behalf Of Juha Vierinen Sent: Tuesday, 10 December, 2013 04:26 To: Patrik Tast Cc: gnuradio mailing list Subject: Re: [Discuss-gnuradio] Need help identifying jammer signal Hi guys, Thank you for your helpful suggestions. We still

Re: [Discuss-gnuradio] Need help identifying jammer signal

2013-12-09 Thread Juha Vierinen
Hi guys, Thank you for your helpful suggestions. We still haven't managed to pinpoint where the signal is coming from, but we have just dispatched a black SUV with a three letter acronym stencilled on it (our university's initials) to hunt for the signal with a spectrum analyzer and a yagi. Yeste

[Discuss-gnuradio] Need help identifying jammer signal

2013-12-09 Thread Dimitris Siafarikas
It might be an IF local oscillator whose signal is leaking outside. Hence, the small bandwidth and the drifts on that small band. ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Re: [Discuss-gnuradio] Need help identifying jammer signal

2013-12-08 Thread Patrik Tast
Terve Juha, Some animal neck collar TX:er are very close to that feq (440 MHz). It could be on a wolf, reindeer or a hunter that use a *home brew* (illegal) collar on his dog. Building a *home brew* dog collar is popular today since you can get parts without any questions asked... I would contact

Re: [Discuss-gnuradio] Need help identifying jammer signal

2013-12-06 Thread Marcus D. Leech
On 12/06/2013 02:12 PM, Johnathan Corgan wrote: If you want, I could let you upload a capture file to gnuradio.org so everyone could join the hunt. The hunt for RFI October. "This signal will get worse. It'll get worse, and we'll be lucky to live through it." _

Re: [Discuss-gnuradio] Need help identifying jammer signal

2013-12-06 Thread Johnathan Corgan
On 12/06/2013 11:05 AM, Johnathan Corgan wrote: > On 12/06/2013 10:48 AM, Juha Vierinen wrote: > >> A scope plot of the signal shows something that looks a little bit >> like frequency shift keying. > > Make sure the signal is filtered to the 10K width and attach an FM demod > block to that (just

Re: [Discuss-gnuradio] Need help identifying jammer signal

2013-12-06 Thread Johnathan Corgan
On 12/06/2013 10:48 AM, Juha Vierinen wrote: > A scope plot of the signal shows something that looks a little bit > like frequency shift keying. Make sure the signal is filtered to the 10K width and attach an FM demod block to that (just set the sensitivity to 1.0 for now). It definitely looks l

Re: [Discuss-gnuradio] Need help with control port client

2013-04-04 Thread Tom Rondeau
On Thu, Apr 4, 2013 at 6:37 PM, Alexandru Csete wrote: > On Thu, Apr 4, 2013 at 1:52 AM, Alexandru Csete wrote: >> Greetings, >> >> I'm trying to write a control port client in C++ but I got stuck and >> need some help. >> >> My problem is that the control port interface gives us a map >> contain

Re: [Discuss-gnuradio] Need help with control port client

2013-04-04 Thread Alexandru Csete
On Thu, Apr 4, 2013 at 1:52 AM, Alexandru Csete wrote: > Greetings, > > I'm trying to write a control port client in C++ but I got stuck and > need some help. > > My problem is that the control port interface gives us a map > containing GNURadio::KnobPtr but to get access to the value I need a > t

Re: [Discuss-gnuradio] Need help

2013-04-03 Thread Brian Padalino
On Wed, Apr 3, 2013 at 10:56 PM, vamshi krishna dodla < vamshikrishna.do...@gmail.com> wrote: > can some one send me a flow graph of QPSK transmitter and receiver, this > flow graph should include a root raised cosine filter, qpsk generator, > multipath channel, additive gaussian noise source, snr

[Discuss-gnuradio] Need help

2013-04-03 Thread vamshi krishna dodla
can some one send me a flow graph of QPSK transmitter and receiver, this flow graph should include a root raised cosine filter, qpsk generator, multipath channel, additive gaussian noise source, snr estimator and feed back, interpolator, carrier recovery using bandedge filters, timing recovery usin

[Discuss-gnuradio] Need help with control port client

2013-04-03 Thread Alexandru Csete
Greetings, I'm trying to write a control port client in C++ but I got stuck and need some help. My problem is that the control port interface gives us a map containing GNURadio::KnobPtr but to get access to the value I need a typed pointer, e.g. GNURadio::KnobDPtr, which is derived from KnobPtr.

Re: [Discuss-gnuradio] need help for digital.constellation_decoder_cb in release 3.5.0

2012-03-12 Thread Arturo Rinaldi
Nella citazione in data Mon Mar 12 03:36:20 2012, Ben Reynwar ha scritto: On Sun, Mar 11, 2012 at 4:25 PM, Arturo Rinaldi wrote: Nella citazione in data Sun Mar 11 02:30:43 2012, Arturo Rinaldi ha scritto: Nella citazione in data Fri Mar 9 19:50:05 2012, Ben Reynwar ha scritto: On Thu, Mar

Re: [Discuss-gnuradio] need help for digital.constellation_decoder_cb in release 3.5.0

2012-03-11 Thread Ben Reynwar
On Sun, Mar 11, 2012 at 4:25 PM, Arturo Rinaldi wrote: > Nella citazione in data Sun Mar 11 02:30:43 2012, Arturo Rinaldi ha scritto: > >> Nella citazione in data Fri Mar 9 19:50:05 2012, Ben Reynwar ha scritto: >>> >>> On Thu, Mar 8, 2012 at 8:19 PM, Arturo Rinaldi >>> wrote: Nella cita

Re: [Discuss-gnuradio] need help for digital.constellation_decoder_cb in release 3.5.0

2012-03-11 Thread Arturo Rinaldi
Nella citazione in data Sun Mar 11 02:30:43 2012, Arturo Rinaldi ha scritto: Nella citazione in data Fri Mar 9 19:50:05 2012, Ben Reynwar ha scritto: On Thu, Mar 8, 2012 at 8:19 PM, Arturo Rinaldi wrote: Nella citazione in data ven 09 dic 2011 05:55:57 CET, Ben Reynwar ha scritto: On Thu, Dec

Re: [Discuss-gnuradio] need help for digital.constellation_decoder_cb in release 3.5.0

2012-03-10 Thread Arturo Rinaldi
Nella citazione in data Fri Mar 9 19:50:05 2012, Ben Reynwar ha scritto: On Thu, Mar 8, 2012 at 8:19 PM, Arturo Rinaldi wrote: Nella citazione in data ven 09 dic 2011 05:55:57 CET, Ben Reynwar ha scritto: On Thu, Dec 8, 2011 at 5:33 PM, Arturo Rinaldi wrote: I noticed dramatic changes in

Re: [Discuss-gnuradio] need help for digital.constellation_decoder_cb in release 3.5.0

2012-03-09 Thread Ben Reynwar
On Thu, Mar 8, 2012 at 8:19 PM, Arturo Rinaldi wrote: > Nella citazione in data ven 09 dic 2011 05:55:57 CET, Ben Reynwar ha > scritto: > >> On Thu, Dec 8, 2011 at 5:33 PM, Arturo Rinaldi >>  wrote: >>> >>> I noticed dramatic changes in the 3.5.0 release in the generation of the >>> constellation

Re: [Discuss-gnuradio] need help for digital.constellation_decoder_cb in release 3.5.0

2012-03-08 Thread Arturo Rinaldi
Nella citazione in data ven 09 dic 2011 05:55:57 CET, Ben Reynwar ha scritto: On Thu, Dec 8, 2011 at 5:33 PM, Arturo Rinaldi wrote: I noticed dramatic changes in the 3.5.0 release in the generation of the constellation points of digital modulations. So, if the easy part is to again modify the s

Re: [Discuss-gnuradio] need help for digital.constellation_decoder_cb in release 3.5.0

2011-12-08 Thread Ben Reynwar
On Thu, Dec 8, 2011 at 5:33 PM, Arturo Rinaldi wrote: > I noticed dramatic changes in the 3.5.0 release in the generation of the > constellation points of digital modulations. So, if the easy part is to > again modify the source code to match my needs, i need some help in using > the new block : >

[Discuss-gnuradio] need help for digital.constellation_decoder_cb in release 3.5.0

2011-12-08 Thread Arturo Rinaldi
I noticed dramatic changes in the 3.5.0 release in the generation of the constellation points of digital modulations. So, if the easy part is to again modify the source code to match my needs, i need some help in using the new block : /digital.constellation_decoder_cb(arg1)/ instead of / gr.c

[Discuss-gnuradio] need help for digital.constellation_decoder_cb in release 3.5.0

2011-12-08 Thread Arturo Rinaldi
I noticed dramatic changes in the 3.5.0 release in the generation of the constellation points of digital modulations. So, if the easy part is to again modify the source code to match my needs, i need some help in using the new block : /digital.constellation_decoder_cb(arg1)/ instead of / gr.c

[Discuss-gnuradio] need help for gr-comedi

2011-07-11 Thread patiljagdish154
hi, i am currently working on gr-comedi block. the codes files provided in git repository are incomplete. i have write few files like comedi_source_s.xml, comedi_source_s.i (in swig folder) and few other. i am also attaching the whole folder and also trying for modification. while compiling i enco

Re: [Discuss-gnuradio] Need help in emergency for the fpga image

2011-01-12 Thread Gabriel Morel
For me and for future users, this bug have to be repair. thx a lot Gabriel - Original Message - From: "Josh Blum" To: Sent: Wednesday, January 05, 2011 3:45 PM Subject: Re: [Discuss-gnuradio] Need help in emergency for the fpga image Allow to me clarify some detail

Re: [Discuss-gnuradio] Need help in emergency for the fpga image

2011-01-05 Thread Gabriel Morel
the data by the mictor connector after the dsp_core_tx. But if i can't compile the original project, i will not be able to compile the modified project. Gab - Original Message - From: "Josh Blum" To: Sent: Wednesday, January 05, 2011 3:45 PM Subject: Re: [Discuss-gnur

Re: [Discuss-gnuradio] Need help in emergency for the fpga image

2011-01-05 Thread Josh Blum
the result. The > bin file is suppose to be the same on linux or on windows, no? > > Gab > > - Original Message - From: "Nick Foster" > To: "Gabriel Morel" > Cc: > Sent: Wednesday, January 05, 2011 2:55 PM > Subject: Re: [Discuss-gnuradio

Re: [Discuss-gnuradio] Need help in emergency for the fpga image

2011-01-05 Thread Josh Blum
On 01/05/2011 12:13 PM, Gabriel Morel wrote: > I'm using ISE 12.1 on windows, not on linux, is it different? I think > is different for the method of calling command, not on the result. The Install gnu make and ensure that make and xtclsh are in your %PATH%. I have reason to believe that it wi

Re: [Discuss-gnuradio] Need help in emergency for the fpga image

2011-01-05 Thread Gabriel Morel
el Morel" Cc: Sent: Wednesday, January 05, 2011 2:55 PM Subject: Re: [Discuss-gnuradio] Need help in emergency for the fpga image Thanks for the info. Try the following to compile it using the makefile we include in the distro. In order to do this you'll have to have the ISE12 settin

Re: [Discuss-gnuradio] Need help in emergency for the fpga image

2011-01-05 Thread Nick Foster
2_rev3.bin. Let me know if that FPGA file works for you and we can work from there. --n On Wed, 2011-01-05 at 14:32 -0500, Gabriel Morel wrote: > - Original Message - > From: "Nick Foster" > To: "Gabriel Morel" > Sent: Tuesday, January 04, 2011 1:48 PM &

Re: [Discuss-gnuradio] Need help in emergency for the fpga image

2011-01-05 Thread Gabriel Morel
- Original Message - From: "Matthias Wilhelm" To: "Gabriel Morel" Cc: Sent: Wednesday, January 05, 2011 4:41 AM Subject: Re: [Discuss-gnuradio] Need help in emergency for the fpga image Hello Gabriel, there are many possible reasons why it wouldn't work,

Re: [Discuss-gnuradio] Need help in emergency for the fpga image

2011-01-05 Thread Gabriel Morel
- Original Message - From: "Nick Foster" To: "Gabriel Morel" Sent: Tuesday, January 04, 2011 1:48 PM Subject: Re: [Discuss-gnuradio] Need help in emergency for the fpga image I asked you a bunch of questions you didn't answer the last time you posted. I

Re: [Discuss-gnuradio] Need help in emergency for the fpga image

2011-01-05 Thread Matthias Wilhelm
Hello Gabriel, there are many possible reasons why it wouldn't work, but in my experience it is most likely an issue with your SD card. - Did you put both the firmware and the FPGA bitstream on the SD card? Do they have matching versions? - What SD card are you using? SDHC cards do not work, a

[Discuss-gnuradio] Need help in emergency for the fpga image

2011-01-04 Thread Gabriel Morel
Hello everyone, I must find a way to compile the FPGA project for the USRP2 to continue my Masters. I use ISE 12.1 and the top project u2_rev3 in the repository git://ettus.sourcerepo.com/ettus/fpga.git using all the files in different makefile. The compilation works well and I get the bin file

Re: [Discuss-gnuradio] need help implementing TX pattern on USRP2+WBX

2010-12-06 Thread Martin Braun
On Sat, Dec 04, 2010 at 12:00:37AM -0800, Steve Mcmahon wrote: > The user would define the interval duration on the command line (i.e., 500ms > or 1s). Also, for each interval, the user would define on the command line > the interval type and which frequency of the set of frequencies to use. Also

[Discuss-gnuradio] need help implementing TX pattern on USRP2+WBX

2010-12-04 Thread Steve Mcmahon
Hello: I asked a similar question a couple of days ago, but I'm still struggling, so I would be really thankful for any help I can get. I have a USRP2 board and a WBX daughterboard running with GNU Radio 3.3.0 on Linux. I am trying to implement a scheme where time is divided into equal-size i

[Discuss-gnuradio] Need help regarding GNUradio software !!

2010-10-10 Thread Kashan Ali Syed
Dear All , Hope u are doing your best. I want to know that is there any software similar to HYDRA for wireless MIMO channel estimation ? I am waiting for the reply. BR, Syed Kashan Ali Student MS(Wireless & Photonics Engineering) Chalmers University of Technology Göteborg, Sweden. Mobile : 0

Re: [Discuss-gnuradio] Need help: How to extract timestamps of data for UHD mimo source block?

2010-10-07 Thread Josh Blum
1). I read the codes in the work function. The metadata is defined by: uhd::rx_metadata_t metadata; Does "uhd::rx_metadata_t" define the data type or give values to metadata? And in which C++ file may I find that the "uhd::rx_metadata_t" is created ? http://www.ettus.com/uhd_docs

Re: [Discuss-gnuradio] Need help: How to extract timestamps of data for UHD mimo source block?

2010-10-07 Thread Hongliang Zhang
Hi Josh, Thanks so much for your reply. I have some questions about the metadata. 1). I read the codes in the work function. The metadata is defined by: uhd::rx_metadata_t metadata; Does "uhd::rx_metadata_t" define the data type or give values to metadata? And in which C++ fil

Re: [Discuss-gnuradio] Need help: How to extract timestamps of data for UHD mimo source block?

2010-10-06 Thread Josh Blum
On 10/06/2010 04:24 AM, Hongliang Zhang wrote: Hi everyone, I set up 4 USRP2 boards for MIMO receiver system for array antennas, and use the PPS signal to synchronise them. I wish to collect the data from the boards as well as the associated timestamps for the four boards. Could someone teac

[Discuss-gnuradio] Need help: How to extract timestamps of data for UHD mimo source block?

2010-10-06 Thread Hongliang Zhang
Hi everyone, I set up 4 USRP2 boards for MIMO receiver system for array antennas, and use the PPS signal to synchronise them. I wish to collect the data from the boards as well as the associated timestamps for the four boards. Could someone teach me how to read the time stamps from a UHD mimo s

Re: [Discuss-gnuradio] Need HELP - Modifying gr_peak_detector

2010-08-06 Thread Phong Do
Hello again, I have modified a new cc code gr_peak_detector3_fb. But it was said that: 'd_look_ahead_remaining’ was not declared in this scope. Can anyone please have a look at it ? Thank you Regards Phong Do http://old.nabble.com/file/p29356431/gr_peak_detector3_fb.cc gr_peak_detector3_fb.cc

Re: [Discuss-gnuradio] Need help with gr how to create a signal processing block template

2010-05-27 Thread Tom Rondeau
On Tue, May 25, 2010 at 10:26 PM, Hassaan R. wrote: > > On Tue, May 25, 2010 at 7:08 AM, Eric Blossom wrote: >> >> On Tue, May 25, 2010 at 08:24:21AM +0600, Hassaan R. wrote: >> > Dear Eric, >> > >> > Still working on it, hopefully will get a solution soon. Thanks for your >> > reply, I'll focus

Re: [Discuss-gnuradio] Need help with gr how to create a signal processing block template

2010-05-26 Thread Hassaan R.
On Tue, May 25, 2010 at 7:08 AM, Eric Blossom wrote: > On Tue, May 25, 2010 at 08:24:21AM +0600, Hassaan R. wrote: > > Dear Eric, > > > > Still working on it, hopefully will get a solution soon. Thanks for your > > reply, I'll focus on the Makefiles now to find the answer, I've been just > > goin

Re: [Discuss-gnuradio] Need help with gr how to create a signal processing block template

2010-05-24 Thread Eric Blossom
On Mon, May 24, 2010 at 03:36:35PM -0700, H.Raza wrote: > > Thanks Eric for your reply. The suggestion was immensely helpful. I was > looking for the wrong documentation initially and could not understand how > Automake works, think I had the Make one open. > > As the documentation is very compre

Re: [Discuss-gnuradio] Need help with gr how to create a signal processing block template

2010-05-24 Thread H.Raza
Thanks Eric for your reply. The suggestion was immensely helpful. I was looking for the wrong documentation initially and could not understand how Automake works, think I had the Make one open. As the documentation is very comprehensive, I was only able to grasp a few things but I was able to fix

Re: [Discuss-gnuradio] Need help with gr how to create a signal processing block template

2010-05-24 Thread Eric Blossom
On Mon, May 24, 2010 at 12:01:17PM -0700, H.Raza wrote: > > Thanks a lot for the reply Tom, I figured out that part after looking at a > number of sample Makefile.am files in different projects. I used the -I > flag to include the directories and the compilation began, but after a few > steps I re

Re: [Discuss-gnuradio] Need help with gr how to create a signal processing block template

2010-05-24 Thread H.Raza
Thanks a lot for the reply Tom, I figured out that part after looking at a number of sample Makefile.am files in different projects. I used the -I flag to include the directories and the compilation began, but after a few steps I received the following error. == from Terminal

Re: [Discuss-gnuradio] Need help with gr how to create a signal processing block template

2010-05-23 Thread Tom Rondeau
On Sat, May 22, 2010 at 5:52 PM, Nick.R wrote: > > I am quite new to unix as well as GNU radio, but after practising with the > different modules and reading alot about it in papers and tutorials I've > been able to understand how to use some of its functions. Presently I am > trying to make a blo

[Discuss-gnuradio] Need help with gr how to create a signal processing block template

2010-05-22 Thread Nick.R
I am quite new to unix as well as GNU radio, but after practising with the different modules and reading alot about it in papers and tutorials I've been able to understand how to use some of its functions. Presently I am trying to make a block in GNU Radio Companion from a C shared library file ge

Re: [Discuss-gnuradio] need help on transimit a band signal

2010-01-18 Thread Josh Blum
What is the amplitude of the digital samples going into the usrp sink? For usrp, the max amplitude is 2**15. Try an amplitude around 10e3 For usrp2, the max amplitude is 1.0. Try an amplitude around 0.1 -Josh On 01/18/2010 07:58 PM, cbwangmail wrote: hi in grc,i have a problem,i want to tras

[Discuss-gnuradio] need help on transimit a band signal

2010-01-18 Thread cbwangmail
hi in grc,i have a problem,i want to trasimit a band signal with the grc 's block,but when i tansimitted it,there is something wrong with it.in the receiver,it is only a frequent point signal.so it indicate that the trasimitter is wrong.i guess the usrp sink do not do a goog work.so how can i d

Re: [Discuss-gnuradio] need help on loading my own FPGA bitstream

2010-01-16 Thread Johnathan Corgan
On Fri, Jan 15, 2010 at 18:21, Yan Nie wrote: > RuntimeError: can't open usrp This is usually a cabling issue (easy to check) or a permissions issue (more likely). The user you are running as needs to have rw permission to the device node created for the USRP. This is done automatically when i

[Discuss-gnuradio] need help on loading my own FPGA bitstream

2010-01-15 Thread Yan Nie
Dear all, I'm trying to load my own FPGA bitstream. The .rbf file, however, cannot be loaded due to the errors as below. I've already copied the .rbf file under the directories /usr/local/share/usrp/rev2 and rev4 as well. Could you please guide me what the problem or the solution to solve the

[Discuss-gnuradio] Need help to understand code optfir.low_pass

2009-07-24 Thread Portner Lty
Hey there, I'm relatively new to this. I want to know how does the following code works : chan_filt_coeffs = optfir.low_pass (1, # gain usrp_rate, # sampling rate (320e3) 80e3,# passband cutoff

[Discuss-gnuradio] Need help with removal of noise

2009-05-19 Thread mayur_CEN
Hello, I am working on an experiment to send a text file over the fm channel.While recording the Fm channel ,white gaussian noise(the constant fm channel noise,i hope that what u call it) is also recorded at the beginning and end of the file.I want to remove this noise before I send it to the deoc

Re: [Discuss-gnuradio] Need help with USRP simulation test

2009-02-16 Thread Eric Blossom
On Sun, Feb 15, 2009 at 08:51:07AM -0500, Pete Kay wrote: > Hi, > > I am running siggen and oscope test with USRP1. > > I am expecting a smooth sine waveform with this: > c[r...@fodora usrp]# usrp_siggen.py --sine -f 1e6 -i256 > Using TX d'board A: > > But I am getting some error in oscope.p

[Discuss-gnuradio] Need help with USRP simulation test

2009-02-15 Thread Pete Kay
Hi, I am running siggen and oscope test with USRP1. I am expecting a smooth sine waveform with this: c[r...@fodora usrp]# usrp_siggen.py --sine -f 1e6 -i256 Using TX d'board A: But I am getting some error in oscope.py and the attached oscope output does not give me the expected waveform [r

[Discuss-gnuradio] Need Help! Please!

2008-04-24 Thread Bill Stevenson
Hello, everyone I am now trying to check whether there is any nonlinear amplifier on the Tx daughterboard. Could anyone tell me which device finishes the task of nonlinear amplifying on the Tx board? Thank u It is very emergent! Thank u! Bill _

[Discuss-gnuradio] Need help with LFRX

2007-07-05 Thread Pawel Koszut
Hi all ! I am interested in observing spectrum around 200kHz and tried the following command : ./usrp_fft.py -R A:0 -f 20 -d 112 with a coil antenna connected to RX-A input of LFRX daughterboard. Should it work ? If so, does it mean that there is something wrong with my antenna ? Regards, P

[Discuss-gnuradio] need help fixing features/inband-usb build error

2007-06-15 Thread George Nychis
Hey all, I'm looking for some help building features/inband-usb Eric and I couldn't exactly figure out what causes this at the hackfest, and I've spent some more time with it and still can't figure it out. the root of the cause is in usrp/host/lib/inband and usrp_rx.cc it builds, but does not

Re: [Discuss-gnuradio] Need help installing GNU Radio

2006-03-10 Thread Eric Blossom
On Thu, Mar 09, 2006 at 09:13:38AM -0800, jjw wrote: > > I have been able to eliminate the make check error for gnuradio-core but not > the make check error for cppunit by using up2date to install pretty much > every update available. However I've run into another error. > > I get the whole down

Re: [Discuss-gnuradio] Need help installing GNU Radio

2006-03-10 Thread jjw
I have been able to eliminate the make check error for gnuradio-core but not the make check error for cppunit by using up2date to install pretty much every update available. However I've run into another error. I get the whole down to the installation of gr-usrp (following KD7LMO's method) and w

Re: [Discuss-gnuradio] Need help installing GNU Radio

2006-03-10 Thread Eric Blossom
On Tue, Mar 07, 2006 at 02:51:31PM -0800, jjw wrote: > > I am running a Pentium architecture. I tried using an older version of GCC > (3.2) per someone else's instructions but it did not get rid of the error > during the make check of gnuradio-core. I tried doing a make check on all > of the bas

Re: [Discuss-gnuradio] Need help installing GNU Radio

2006-03-07 Thread jjw
I am running a Pentium architecture. I tried using an older version of GCC (3.2) per someone else's instructions but it did not get rid of the error during the make check of gnuradio-core. I tried doing a make check on all of the baseline instlals from KD7LMO and found the following error when i

Re: [Discuss-gnuradio] Need help installing GNU Radio

2006-03-07 Thread Matteo Campanella
o sse indeed, and that could be your case. Try reading the tutorial from dawei shen http://www.nd.edu/~dshen/GNU/Tutorial/1.html cheers Matteo iz2eeq > Message: 4 > Date: Mon, 6 Mar 2006 07:54:48 -0800 (PST) > From: jjw <[EMAIL PROTECTED]> > Subject: [Discuss-gnuradio] Need help in

[Discuss-gnuradio] Need help installing GNU Radio

2006-03-06 Thread jjw
Hello all, I am trying to install GNURadio on a Fedora Core 4 system following the instructions at http://www.kd7lmo.net/ground_gnuradio_install.html. I completed the baseline install process (skipping the two octave installs because I don't need them) and proceeded onto the gnu radio portion of

Re: [Discuss-gnuradio] need help getting simple exercise to work

2005-06-04 Thread John Gilmore
> > ValueError: source and destination data sizes are different > > The 4020 returns 16 bit signed integers (shorts). The scopesink is > expecting floats. You need to put a gr.short_to_float () block in > between them. Should we make, document and recommend the use of a standard 4020 source tha

Re: [Discuss-gnuradio] need help getting simple exercise to work

2005-06-02 Thread Matt Ettus
jmdaniel wrote: > Hi, > > I've got gnuradio up and running and am now trying to get a better > understanding of how to use it before beginning more involved > projects. I am trying to write a py script that displays an oscope > from a PCI-DAS4020/12. mc4020_fft.py runs and displays the > excpe

[Discuss-gnuradio] need help getting simple exercise to work

2005-06-02 Thread jmdaniel
Hi, I've got gnuradio up and running and am now trying to get a better understanding of how to use it before beginning more involved projects. I am trying to write a py script that displays an oscope from a PCI-DAS4020/12. mc4020_fft.py runs and displays the excpected results. Here's the code

Re: [Discuss-gnuradio] Need help to install GNURadio on Gentoo

2005-05-20 Thread paul
I have installed gnu radio on Gentoo 2005.0 with kernel 2.4 in /etc/portage/package.unmask i have the following: dev-lang/swig x11-libs/wxGTK dev-python/wxpython I did install gcc 3.4.3 because of the known bug of gcc 3.3 gnu radio. I have encountered no issues with this gcc version (see gentoo f

[Discuss-gnuradio] Need help to install GNURadio on Gentoo

2005-05-20 Thread Jose Marcelo
Title: I’m not an advanced Linux user and I’m afraid to get some troubling trying to install the GNURadio as some people are havin    I’m not an advanced Linux user and I’m afraid to get some troubling trying to install the GNU Radio as some people are having. I have just installed the Gen

Re: [Discuss-gnuradio] Need Help w/ install on FC3

2005-02-26 Thread Ilia Mirkin
Make sure to install the various -dev packages, e.g. python-dev, etc. I'm not really sure what the exact names are, adjust as appropriate... This goes for all the libraries that gnuradio requires. -Ilia On Sat, 2005-02-26 at 17:08 -0500, John k2ox wrote: > Hello All, > > I need your help. I'

[Discuss-gnuradio] Need Help w/ install on FC3

2005-02-26 Thread John k2ox
Hello All, I need your help. I'm a nube to Linux and have been trying for two weeks to get the radio core installed. FC3 installs Python in /usr/lib/... instead of /usr/local/lib. I've tried installing a version in /usr/local/.. but the RPM manager didn't like that so I removed the default ver

  1   2   >