[Discuss-gnuradio] How to include a custom python block into grc?

2010-07-13 Thread Thunder87
please help! -- View this message in context: http://old.nabble.com/How-to-include-a-custom-python-block-into-grc--tp29149976p29149976.html Sent from the GnuRadio mailing list archive at Nabble.com. ___ Discuss-gnuradio mailing list Discuss-gnuradio@

[Discuss-gnuradio] DBPSK rework (SDPSK implementation)

2010-07-23 Thread Thunder87
My goal is to rework DBPSK module, so that it is possible to easily implement SDPSK module. DBPSK goes like this: differential_encoding > ordinary BPSK, so there is no actual constellation rotation. All rotation part is done by diff.encoder. But this can be done only when shifting between 2 state

[Discuss-gnuradio] Block from gr-howto-write-a-block-3.3.0.tar.gz doesn't work

2010-07-24 Thread Thunder87
after successful installation without any errors, when launched in grc gives this: Traceback (most recent call last): File "/home/thunderbolt/top_block.py", line 12, in import howto File "/usr/local/lib/python2.6/dist-packages/howto/__init__.py", line 40, in from howto_swig import *

Re: [Discuss-gnuradio] Block from gr-howto-write-a-block-3.3.0.tar.gz doesn't work

2010-07-25 Thread Thunder87
Thank you! That solves my problem ) Seems it was because I had modified gr-howto-write-a-block-3.3.0 package with my own block installed on top of original gr-howto-write-a-block-3.3.0 package, without uninstalling it. Marc Epard-2 wrote: > > On Jul 24, 2010, at 6:14 PM, Thunder87

[Discuss-gnuradio] Trouble with block output

2010-07-25 Thread Thunder87
This block should take a bit from chunk, and produce an output (d_phase) which would hold until next chunk comes in. Right now it does take chunk, extract this bit, produce correct phase, but next moment block output drops to 0+0j. It gives me feeling that block is producing output all the time,

Re: [Discuss-gnuradio] Trouble with block output

2010-07-25 Thread Thunder87
Reworked it to derive from gr_sync_block. Seems to work. Now I only have to test it somehow, and write a hier.block something like: packed_to_unpacked->diff_const->rrc_filter, and probably SDPSK should work. Thank you Eric ! .h #ifndef INCLUDED_HOWTO_DIFFCONST_BC_H #define INCLUDED_HOWTO_DIFFCO

[Discuss-gnuradio] Installing the python blocks

2010-07-27 Thread Thunder87
Now, after reading "how to write a signal processing block" i can write and properly install c++ signal blocks. But I also need to install few python hierarchical blocks and their *.xml's along with these c++ blocks. How do I include them to that gr-howto-write-a-block-3.3.0 package, so that they

[Discuss-gnuradio] DQPSK bug or incorrect settings?

2010-08-05 Thread Thunder87
While playing with DQPSK I have encountered a problem: Scheme: File_source -> DQPSK_mod -> DQPSK_demod -> File_sink Parameters: samp_rate = 500 DQPSK_mod/demod samples per symbol = 215 DQPSK_mod/demod gray code = no everything else - by default Input bit sequence: 10101010110011001

Re: [Discuss-gnuradio] DQPSK bug or incorrect settings?

2010-08-08 Thread Thunder87
Thunder87 wrote: > > If so, what is maximal and minimal safe "samples/symbol" to "samp_rate" > rates? > Minimal "samples/symbol" is 2. Is there a maximal ? -- View this message in context: http://old.nabble.com/DQPSK-bug-or-incorrect-settin

Re: [Discuss-gnuradio] DQPSK bug or incorrect settings?

2010-08-08 Thread Thunder87
Tom Rondeau wrote: > > On Sun, Aug 8, 2010 at 1:41 PM, Thunder87 wrote: >> Thunder87 wrote: >>> >>> If so, what is maximal and minimal safe "samples/symbol" to "samp_rate" >>> rates? >>> >> >> Minimal "sample

[Discuss-gnuradio] how to get dqpsk2 block?

2010-08-16 Thread Thunder87
It seems I don't have all DPSK2 blocks installed. Where can i get them? -- View this message in context: http://old.nabble.com/how-to-get-dqpsk2-block--tp29448241p29448241.html Sent from the GnuRadio mailing list archive at Nabble.com. ___ Discuss-gn

Re: [Discuss-gnuradio] how to get dqpsk2 block?

2010-08-20 Thread Thunder87
Somehow managed to install git and get gnuradio source. Now I have a problem with source installation. "sudo ./configure" says: The following components were skipped either because you asked not to build them or they didn't pass configuration checks: gruel gcell gnuradio-core usrp usrp2 gr-usrp

Re: [Discuss-gnuradio] how to get dqpsk2 block?

2010-08-21 Thread Thunder87
Eric Blossom wrote: > > > Do you have a C++ compiler installed? > > I do have it. log repeatedly says: failed program was /* confdefs.h */ So I guess it's confdefs.h )) You have any idea what is it? I googled it. Seems to be a common problem, but I still cant find a normal solution or e

Re: [Discuss-gnuradio] how to get dqpsk2 block?

2010-08-22 Thread Thunder87
Thanks! I've started to understand this a bit. Now it's like this: gcell gr-gcell gr-audio-jack gr-audio-osx gr-audio-portaudio gr-audio-windows gr-comedi gr-video-sdl grc These components will not be built. I wonder if I need gcell and gr-gcell. Definitely need grc. Here is a log http://old.

[Discuss-gnuradio] gnuradio on beagleboard?

2010-09-06 Thread Thunder87
Am I correct, thinking that gnuradio should work on any platform, as long as it's on ubuntu? Will I be able to run it on http://beagleboard.org/ Beagleboard with http://elinux.org/BeagleBoardUbuntu Ubuntu ? -- View this message in context: http://old.nabble.com/gnuradio-on-beagleboard--tp296

[Discuss-gnuradio] A very stupid question

2010-10-11 Thread Thunder87
Hi! I know that Gnuradio script is able to write data to console when running (some output data). I haven't tried anything, but it should be able somehow, because blocks can be written in c++, and c++ program is able to write in terminal window. If say, I connect to other computer via COM port (u

Re: [Discuss-gnuradio] A very stupid question

2010-10-11 Thread Thunder87
Marc Epard-3 wrote: > > On Oct 11, 2010, at 7:50 AM, Thunder87 wrote: > > I use ssh (aka Secure Shell) for this. Clients and servers are available > for almost every platform. > > -Marc > Thanks Marc! -- View this message in context: http://old.nabble.co

[Discuss-gnuradio] ImportError: cannot import name ais

2010-10-13 Thread Thunder87
Installed gr-ais package from cgran: apt-get install autoconf automake libtool gcc g++ subversion python-dev svn co https://www.cgran.org/svn/projects/gr-ais/trunk /home/gr-ais cd /home/gr-ais/trunk ./bootstrap ./configure make install No errors at this point. Only few warnings in make. Then trie

Re: [Discuss-gnuradio] ImportError: cannot import name ais

2010-10-15 Thread Thunder87
hope this works. Thunder87 wrote: > > Installed gr-ais package from cgran: > apt-get install autoconf automake libtool gcc g++ subversion python-dev > svn co https://www.cgran.org/svn/projects/gr-ais/trunk /home/gr-ais > cd /home/gr-ais/trunk > ./bootstrap > ./configure > m

Re: [Discuss-gnuradio] ImportError: cannot import name ais

2010-10-15 Thread Thunder87
thing like './ais_decode.py -R B -F signal_filename' for files? Thunder87 wrote: > > Installed gr-ais package from cgran: > apt-get install autoconf automake libtool gcc g++ subversion python-dev > svn co https://www.cgran.org/svn/projects/gr-ais/trunk /home/gr-ais >

[Discuss-gnuradio] Help with USRP wire?

2010-10-17 Thread Thunder87
Which type is this small wire, which connects USRP daughterboard with antenna? -- View this message in context: http://old.nabble.com/Help-with-USRP-wire--tp29982360p29982360.html Sent from the GnuRadio mailing list archive at Nabble.com. ___ Discuss

[Discuss-gnuradio] Can't AIS package on Beagleboard

2010-10-17 Thread Thunder87
I have problems with gr-ais installation on my Beagleboard running Ubuntu Lucid. ./configure wants gnuradio-core package Searched with aptitude, and it seems threre is no such package for ARM EABI Ubuntu distribution. Gnuradio was installed without problems and seem to work as usual. What to do?

Re: [Discuss-gnuradio] Can't install AIS package on Beagleboard

2010-10-20 Thread Thunder87
n as I can. Probably then someone could help me with this. Thunder87 wrote: > > I have problems with gr-ais installation on my Beagleboard running Ubuntu > Lucid. > > ./configure wants gnuradio-core package > > Searched with aptitude, and it seems threre is no such package for

[Discuss-gnuradio] Still can't install gr-ais, some help please?

2010-10-26 Thread Thunder87
I'm trying to get gr-ais working on Beagleboard running Lucid. Here is a screenshot from serial terminal: http://old.nabble.com/file/p30062049/Screenshot.png Says can't find gnuradio-core. As far as I understood, it might be possible that gnuradio-core is installed somewhere, and I just have to

Re: [Discuss-gnuradio] Still can't install gr-ais, some help please?

2010-10-31 Thread Thunder87
I've searched for libgnuradio-core.so with find / -iname "libgnuradio-core.so" and found nothing. But there are libgnuradio-core.so.0 and libgnuradio-core.so.0.0.0 at /usr/lib/ Aren't they the same with libgnuradio-core.so? How do I set PKG_CONFIG_PATH? Do I rewrite this block in configure:

Re: [Discuss-gnuradio] Still can't install gr-ais, some help please?

2010-11-01 Thread Thunder87
I just don't get it. Here is a file which contains both - ./configure output and config.log: http://old.nabble.com/file/p30103724/configure_and_log.txt configure_and_log.txt And this is configure file itself: http://old.nabble.com/file/p30103724/configure configure libgnuradio-core.so file do

Re: [Discuss-gnuradio] Still can't install gr-ais, some help please?

2010-11-01 Thread Thunder87
Also gnuradio-core.pc is missing some why. Maybe that's the problem? Nick Foster-4 wrote: > > On Tue, 2010-10-26 at 14:43 -0700, Thunder87 wrote: >> I'm trying to get gr-ais working on Beagleboard running Lucid. >> >> Here is a screenshot from serial termi

[Discuss-gnuradio] make error

2010-11-05 Thread Thunder87
Trying to install gnuradio-3.3.0 from *.tar ./bootstrap is ok ./configure --prefix=/usr --disable-usrp2 --disable-gr-usrp2 --disable-gr-audio-alsa --disable-gr-audio-jack --disable-gr-audio-oss --disable-gr-audio-osx --disable-gr-audio-portaudio --disable-gr-audio-windows --disable-gr-cvsd-vocod

Re: [Discuss-gnuradio] make error

2010-11-05 Thread Thunder87
On Beagleboard (http://beagleboard.org/), running Ubuntu Lucid Philip Balister wrote: > > On 11/05/2010 05:59 PM, Thunder87 wrote: >> >> Trying to install gnuradio-3.3.0 from *.tar >> >> ./bootstrap is ok >> >> -I/home/user/gnuradio-3.3.0/gruel/src/in

[Discuss-gnuradio] Gnuradio package description

2010-11-16 Thread Thunder87
Hi! Could anyone please describe what are these packages for: gr-gpio gr-trellis gr-utils gcell gr-gcell gr-msdd6000 gr-atsc gr-comedi gr-noaa -- View this message in context: http://old.nabble.com/Gnuradio-package-description-tp30235916p30235916.html Sent from the GnuRadio mailing list archive

Re: [Discuss-gnuradio] Gnuradio package description

2010-11-17 Thread Thunder87
Martin Braun-4 wrote: > > > On Tue, Nov 16, 2010 at 11:35:47PM -0800, Thunder87 wrote: > although I'm always glad to see people interested in GNU Radio, I think > you should spend at least one minute figuring out answers for yourself. > See: > http://gnuradio

[Discuss-gnuradio] And again - installation problems

2010-11-23 Thread Thunder87
Installed from git: ./bootstrap ./configure --disable-gr-audio-oss --disable-gr-audio-osx --disable-gr-audio-portaudio --disable-gr-audio-windows --disable-gr-audio-alsa --disable-gr-audio-jack --disable-gr-comedi --disable-gr-cvsd-vocoder --disable-gr-gsm-fr-vocoder --disable-gr-msdd6000 --disa

[Discuss-gnuradio] Gnu-radio + USRP problem

2010-12-01 Thread Thunder87
I'm still trying to get gr-ais going on Beagleboard (Lucid). When I tried to run ais_decode.py, I've got "uOuOuO" output. On PC everything works fine. My guess - BB simply can't process that much data. So I ran usrp_benchmark on BB to see if this was the problem. 2MB/s and 4MB/s went fine, but wi

Re: [Discuss-gnuradio] Gnu-radio + USRP problem

2010-12-01 Thread Thunder87
Thunder87 wrote: > > I'm still trying to get gr-ais going on Beagleboard (Lucid). When I tried > to run ais_decode.py, I've got "uOuOuO" output. On PC everything works > fine. My guess - BB simply can't process that much data. > > So I ran usrp_ben

Re: [Discuss-gnuradio] Gnu-radio + USRP problem

2010-12-02 Thread Thunder87
About this topic about increasing DSP speed with FFTW optimization: http://elinux.org/BeagleBoard/GSoC/2010_Projects/FFTW#Build_Instructions three things are bothering me at the moment: a) topic is for http://gitorious.org/gsoc2010-fftw-neon source, but there is a newer http://gitorious.org/~tjz