Re: [Discuss-gnuradio] PSK demodulator and Doppler

2014-09-03 Thread Vanush Vaswani
My solution involved the frequency translating block and a third party application. As part of the initial channel filter, I set the the "Center Frequency" attribute to -4+fftshift*rx_shift_factor (assuming my LO tuned to +40 KHz from the carrier). The satellite tracking program, PREDICT, provi

Re: [Discuss-gnuradio] PSK demodulator and Doppler

2014-09-03 Thread Tom Rondeau
On Wed, Sep 3, 2014 at 5:12 AM, Vanush Vaswani wrote: > My solution involved the frequency translating block and a third party > application. As part of the initial channel filter, I set the the "Center > Frequency" attribute to -4+fftshift*rx_shift_factor (assuming my LO > tuned to +40 KHz f

[Discuss-gnuradio] AttributeError: 'module' object has no attribute 'block_name'

2014-09-03 Thread Simone Ciccia S210664
Hi, I created a C++ block with gr_modtool, following the commands: $ gr_modtool newmod PWagc $ gr_modtool add -t general power_control I written and compiled my block with commands: $cmake ../ && make && sudo make install && sudo ldconfig Until this point all seems ok, but when I open gnuradio

Re: [Discuss-gnuradio] integral frequency shift correcting in ofdm_frame_equalizer_vcvc_impl.cc

2014-09-03 Thread Tiankun Hu
Hi Martin, Thank you, I got it. Those code take charge correcting phase shift caused by CP. The real IFO correcting is done when copy IN buff to OUT buff. Seems there is a minor issue, if all carriers were occupied by data, OUT buff will lose some data, right? // Copy the frame an

Re: [Discuss-gnuradio] AttributeError: 'module' object has no attribute 'block_name'

2014-09-03 Thread Tom Rondeau
On Wed, Sep 3, 2014 at 9:17 AM, Simone Ciccia S210664 < simone.cic...@studenti.polito.it> wrote: > Hi, > I created a C++ block with gr_modtool, > following the commands: > > $ gr_modtool newmod PWagc > $ gr_modtool add -t general power_control > > I written and compiled my block with commands: > >

Re: [Discuss-gnuradio] root_raised_cosine principle

2014-09-03 Thread Tom Rondeau
On Mon, Sep 1, 2014 at 11:50 AM, Martin Braun wrote: > Please stick to the list. > > On 09/01/2014 05:35 PM, adream wrote: > > Thanks for your reply > > May be I should make my question more specifically, > > > > den = -32 * M_PI * alpha * alpha * xindx/spb; > > > > I can't understand well why th

Re: [Discuss-gnuradio] AttributeError: 'module' object has no attribute 'block_name'

2014-09-03 Thread Simone Ciccia S210664
Very thanks for the immediate answer, Sorry, I forgot that I passed two arguments when the block was created: $insert valid arguments: float reference, float alpha while "unsigned int d_counter" is a normal variable initialized in the constructor. now, in the file power_control_impl.h

Re: [Discuss-gnuradio] PSK demodulator and Doppler

2014-09-03 Thread mleech
Using predict is a similar solution to what I do in simple_ra for "fringe stopping", except that it's all contained within the same chunk of Python, using a "helper" function that's tied to a every-5-seconds polling loop. The helper function calculates the required phase rotation, given a

Re: [Discuss-gnuradio] integral frequency shift correcting in ofdm_frame_equalizer_vcvc_impl.cc

2014-09-03 Thread Martin Braun
Well, if all carriers are carrying data, then the signal parametrization is bad, so this is not really an issue. That would be like leaving out the CP and then complaining about ISI. M On 3 Sep 2014 15:24, "Tiankun Hu" wrote: > Hi Martin, > Thank you, I got it. Those code take charge correcting

[Discuss-gnuradio] How to create a custom header derived from packet_header_default.h

2014-09-03 Thread Andrew Burger
I am trying to create a custom header format derived from packet_header_default.h. I am also doing this in an out of tree module src structure. I have successfully got it to compile the c++ code but it now fails when I try to add the swig lines into the cmake class. I am new to cmake and unclear o

Re: [Discuss-gnuradio] How to create a custom header derived from packet_header_default.h

2014-09-03 Thread Bastian Bloessl
On 09/03/2014 05:21 PM, Andrew Burger wrote: I am trying to create a custom header format derived from packet_header_default.h. I am also doing this in an out of tree module src structure. I have successfully got it to compile the c++ code but it now fails when I try to add the swig lines into t

Re: [Discuss-gnuradio] PSK demodulator and Doppler

2014-09-03 Thread Iain Young, G7III
I use predict, the xmlrpc server, and it bit of glue code for twiddling the FIR filter's offset for my Funcube and NOAA receivers to account for doppler. Allows me to have tighter BPFs (well LPF's really), although does mean I need to remember to update the TLE's from time to time! Biggest probl

Re: [Discuss-gnuradio] How to create a custom header derived from packet_header_default.h

2014-09-03 Thread Martin Braun
Make sure you're publically exporting your symbol (using the MYPROJECT_API macro). M On 09/03/2014 05:21 PM, Andrew Burger wrote: > I am trying to create a custom header format derived from > packet_header_default.h. > I am also doing this in an out of tree module src structure. > > I have succe

Re: [Discuss-gnuradio] how to stop a flowgraph

2014-09-03 Thread Mostafa Alizadeh
In the other words, I want to stop top block but I don't know how? If I have one source and one sink, I could stop the top block by returning -1 from the source, but I don't know what is the solution here when I have multiple sources. best, Mostafa On Wed, Sep 3, 2014 at 10:20 AM, Mostafa Aliz

[Discuss-gnuradio] cmake / Could not find a package configuration file provided by "Gnuradio"

2014-09-03 Thread Dimitri
Hi, I've recently installed gnuradio (3.7.2.1, through apt-get install) on my Ubuntu 14.04. I'd like now to build gr-baz, but cmake returns the following errors: ~/SDR/gr-baz/build$ cmake .. -- Build type not specified: defaulting to release. -- Boost version: 1.54.0 -- Found

Re: [Discuss-gnuradio] how to stop a flowgraph

2014-09-03 Thread Martin Braun
On 09/03/2014 07:15 PM, Mostafa Alizadeh wrote: > In the other words, I want to stop top block but I don't know how? If I > have one source and one sink, I could stop the top block by returning -1 > from the source, but I don't know what is the solution here when I have > multiple sources. That's

Re: [Discuss-gnuradio] cmake / Could not find a package configuration file provided by "Gnuradio"

2014-09-03 Thread Michael Dickens
Hi Dimitri - I'm not sure the GR cmake files are being installed in that version of GR. On Linux by default, these files will be installed into "${prefix}/lib/cmake/gnuradio/", and there will be one called "GnuradioConfig.cmake". gr-baz does not provide this specific file, and if the specific

[Discuss-gnuradio] ZedBoard GNU Radio image boot problems

2014-09-03 Thread Nowlan, Sean
I'm trying to boot a ZedBoard with the GNU Radio image here: http://gnuradio.org/data/sdk/zedboard_armv7a-hf-vfp-neon/. I picked the hard float image even though the tutorial points to the soft float image (http://gnuradio.org/redmine/projects/gnuradio/wiki/Zynq). I don't know why I'd want the

Re: [Discuss-gnuradio] ZedBoard GNU Radio image boot problems

2014-09-03 Thread Tom Rondeau
On Wed, Sep 3, 2014 at 4:30 PM, Nowlan, Sean wrote: > I’m trying to boot a ZedBoard with the GNU Radio image here: > http://gnuradio.org/data/sdk/zedboard_armv7a-hf-vfp-neon/. I picked the > hard float image even though the tutorial points to the soft float image ( > http://gnuradio.org/redmine/

[Discuss-gnuradio] Minor patch to config file placement

2014-09-03 Thread Nick B
Subject: [PATCH] gnuradio-runtime: config file placement was not consistent --- gnuradio-runtime/CMakeLists.txt |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/gnuradio-runtime/CMakeLists.txt b/gnuradio-runtime/CMakeLists.txt index 1f94242..7660642 100644 --- a/gnuradio-

Re: [Discuss-gnuradio] ZedBoard GNU Radio image boot problems

2014-09-03 Thread Philip Balister
On 09/03/2014 04:30 PM, Nowlan, Sean wrote: > I'm trying to boot a ZedBoard with the GNU Radio image here: > http://gnuradio.org/data/sdk/zedboard_armv7a-hf-vfp-neon/. I picked the hard > float image even though the tutorial points to the soft float image > (http://gnuradio.org/redmine/project

Re: [Discuss-gnuradio] PSK demodulator and Doppler

2014-09-03 Thread madengr
Just curious, any estimate on how much temperature drift in PPM you are getting? Thanks, Lou KD4HSO Mike Willis wrote > ...and there is also some > frequency drift with satellite temperature as it enters or comes out of > eclipse. -- View this message in context: http://gnuradio.4.n7.nabb

Re: [Discuss-gnuradio] cmake / Could not find a package configuration file provided by "Gnuradio"

2014-09-03 Thread Dimitri
Hi Michael, Thanks for your answer. I actually tried to build the latest version from the git repo, but it stopped at 98% with the following errors: [ 98%] Building CXX object gr-dtv/lib/CMakeFiles/gnuradio-dtv.dir/atsc/atsc_viterbi_decoder_impl.cc.o Linking CXX shared library libgnurad

Re: [Discuss-gnuradio] Cmake Error

2014-09-03 Thread Bastian Bloessl
On 09/04/2014 04:33 AM, zhangwen wrote: Thank you Bastian! I have downloaded the latest version and complete the installation of gr-ieee802.11. Now I am learning to write my own OOT modules from Gnuradio wiki. Could you give me some advice? You should have a look at the GNU Radio wiki http://