Re: OOT module AttributeError - module has no attribute Arch Linux GR 3.8.1

2020-07-13 Thread Nemanja Savic
well as there may be some clues: > https://wiki.gnuradio.org/index.php/GNU_Radio_3.8_OOT_Module_Porting_Guide > https://wiki.gnuradio.org/index.php/ModuleNotFoundError > > > On Sun, Jul 12, 2020 at 8:21 PM Nemanja Savic wrote: > >> Hi all, >> >> haven't been using GR and posting here for abo

Re: OOT module AttributeError - module has no attribute Arch Linux GR 3.8.1

2020-07-13 Thread Nemanja Savic
PMS-swig!" instead of "_TPMS_swig". Best On Mon, Jul 13, 2020 at 2:20 AM Nemanja Savic wrote: > Hi all, > > haven't been using GR and posting here for about 5 years. A few days ago I > installed GR on my machine which runs under Manjaro. I wanted to port s

OOT module AttributeError - module has no attribute Arch Linux GR 3.8.1

2020-07-12 Thread Nemanja Savic
Hi all, haven't been using GR and posting here for about 5 years. A few days ago I installed GR on my machine which runs under Manjaro. I wanted to port some of my old GR blocks (from 3.6.5) to the current GR version. I created a new module and started adding some blocks. Making module works just

Re: [Discuss-gnuradio] message port declaration problem after changing to 3.7.8

2015-12-02 Thread Nemanja Savic
to be redrawn. > > > > Regards, > > > > David > > > > *From:* discuss-gnuradio-bounces+david.halls=toshiba-trel....@gnu.org > [mailto:discuss-gnuradio-bounces+david.halls=toshiba-trel@gnu.org] *On > Behalf Of *Nemanja Savic > *Sent:* 05 November 2015

Re: [Discuss-gnuradio] undefined reference to file_sink_base

2015-11-06 Thread Nemanja Savic
using the following > command in your build directory: > VERBOSE=1 make > > Can you post the command that builds libgnuradio-TMS.so and any > associated messages? > > Regards, > Alexandre > > On Fri, Nov 6, 2015 at 9:19 AM, Nemanja Savic wrote: > > How can I chec

Re: [Discuss-gnuradio] undefined reference to file_sink_base

2015-11-06 Thread Nemanja Savic
How can I check/add -L and then path to the gnuradio blocks library in order to force setup to use it? Or maybe I am on th ewrong way? On Thu, Nov 5, 2015 at 6:25 PM, Nemanja Savic wrote: > Tried that already a few times and nothing. Is there any so called cash > where cmake can mix som

Re: [Discuss-gnuradio] undefined reference to file_sink_base

2015-11-05 Thread Nemanja Savic
Müller wrote: > Ha! good catch; after you added BLOCKS to the REQUIRED_COMPONENTS list in > CMake, you might want to completely delete the build/ folder and start > anew. CMake occasionally misses such changes. > > Best regards, > Marcus > > > On 11/05/2015 06:14 PM, Nem

Re: [Discuss-gnuradio] undefined reference to file_sink_base

2015-11-05 Thread Nemanja Savic
you can see, I marke with red, the complete line about blocks library is missing in the newly built library. Cheers and thanx On Thu, Nov 5, 2015 at 5:53 PM, Marcus Müller wrote: > Hm, that really was my hope. Sorry, I'm out of ideas. > > On 11/05/2015 05:39 PM, Nemanja Savic

Re: [Discuss-gnuradio] undefined reference to file_sink_base

2015-11-05 Thread Nemanja Savic
9 PM, Marcus Müller wrote: > Hm, make sure your program really uses those; "ldd libgnuradio-TMS.so" > might point to the right places. > > On 11/05/2015 05:21 PM, Nemanja Savic wrote: > > Anything else I could try with this silly problem? I am sure 100% that > &

Re: [Discuss-gnuradio] undefined reference to file_sink_base

2015-11-05 Thread Nemanja Savic
Anything else I could try with this silly problem? I am sure 100% that libraries are in /usr/local/lib64 On Thu, Nov 5, 2015 at 5:12 PM, Nemanja Savic wrote: > In my gnuradio 3.6.5.1 file_sink_base constructor takes otwo arguments, > filename and bool. > > On Thu, Nov 5, 2015 at 5:0

Re: [Discuss-gnuradio] undefined reference to file_sink_base

2015-11-05 Thread Nemanja Savic
7;s a start. > > Best regards, > Marcus > > > On 11/05/2015 01:50 PM, Nemanja Savic wrote: > > Hi all guys, > > i have encountered a new problem which was not present before. I have my > old GR module (out of tree) for years. Yesterday I wanted to change > some

Re: [Discuss-gnuradio] undefined reference to file_sink_base

2015-11-05 Thread Nemanja Savic
In my gnuradio 3.6.5.1 file_sink_base constructor takes otwo arguments, filename and bool. On Thu, Nov 5, 2015 at 5:06 PM, Marcus Müller wrote: > Does it get better when you do blocks::file_sink_base(filename, true, > false)? > > > On 11/05/2015 05:04 PM, Nemanja Savic wrote: >

[Discuss-gnuradio] undefined reference to file_sink_base

2015-11-05 Thread Nemanja Savic
Hi all guys, i have encountered a new problem which was not present before. I have my old GR module (out of tree) for years. Yesterday I wanted to change something and couldn't build it cause of the linker error. libgnuradio-TMS.so: undefined reference to `gr::blocks::file_sink_base::file_sink_ba

Re: [Discuss-gnuradio] message port declaration problem after changing to 3.7.8

2015-11-05 Thread Nemanja Savic
in this case? > > > On 11/04/2015 06:49 PM, Nemanja Savic wrote: > > So, a block called db_logger is written in python and port is defined in > following way: > self.message_port_register_in(pmt.pmt_intern(in_port)) > > Well, I am not sure, this works fine in older ver

Re: [Discuss-gnuradio] message port declaration problem after changing to 3.7.8

2015-11-04 Thread Nemanja Savic
_in call look like? > Or is it a message_port_register_hier_in call? (should it be?) > > Cheers, > Marcus > > > On 11/04/2015 06:37 PM, Nemanja Savic wrote: > > Hi, > > ok thanks. Does it matter how I everything is declared, but it is clear > that something change

Re: [Discuss-gnuradio] message port declaration problem after changing to 3.7.8

2015-11-04 Thread Nemanja Savic
emingly,comparin > pmt::symbol("in_port") with pmt::symbol("in_port") doesn't quite work well. > > I'd have to look into what pmt::comparator looks like; it's my first > suspect for why that might fail. > > Best regards, > Marcus > > > >

Re: [Discuss-gnuradio] message port declaration problem after changing to 3.7.8

2015-11-04 Thread Nemanja Savic
runtime for each block, there might be some confusion happening. > Does it work better when you rename your block to something else? > > Best regards, > Marcus > > On 11/04/2015 06:05 PM, Nemanja Savic wrote: > > Hi all guys, > > I recently installed 3.7.8, and before

[Discuss-gnuradio] message port declaration problem after changing to 3.7.8

2015-11-04 Thread Nemanja Savic
Hi all guys, I recently installed 3.7.8, and before that I had 3.6.5.1. I was using message passing in some of my blocks, but now I get error which is following: Could not find port: in_port in: in_port system Traceback (most recent call last): File "./top_block.py", line 178, in tb = top

Re: [Discuss-gnuradio] Error when running GRC

2015-10-30 Thread Nemanja Savic
C and it worked. What was strange for me is that flowchart was > not terminated when I closed QT scope. > > That's a bit surprising; you don't happen to have a .grc with which I can > recreate that? > > Cheers, > Marcus > > > > On 10/29/2015 05:46 PM, Nemanja

Re: [Discuss-gnuradio] Error when running GRC

2015-10-29 Thread Nemanja Savic
iling and GRC > segfaulting sounds like there's some mismatch between the libraries used at > build time and the libraries loaded at run time, in my experience. > > Best regards, > Marcus > > [1] http://gnuradio.org/redmine/projects/gnuradio/wiki/TutorialsGDB > > On 26.10.

Re: [Discuss-gnuradio] Error when running GRC

2015-10-26 Thread Nemanja Savic
thought pre-2.7 Python was practically extinct; out of > curiosity: which OS are you on? > > Best regards, > Marcus > > > Am 26. Oktober 2015 09:10:04 MEZ, schrieb Nemanja Savic < > vlasi...@gmail.com>: >> >> Hello, >> >> I use Python 2.6.6. >&

Re: [Discuss-gnuradio] Error when running GRC

2015-10-26 Thread Nemanja Savic
not Python 3 compatible. > > Best regards, > Marcus > > > Am 26. Oktober 2015 01:46:09 MEZ, schrieb Nemanja Savic < > vlasi...@gmail.com>: > >> Hi all guys, >> >> i built yesterday 3.7.8. When I wanted to run GRC the following error >> occured:

[Discuss-gnuradio] Error when running GRC

2015-10-25 Thread Nemanja Savic
Hi all guys, i built yesterday 3.7.8. When I wanted to run GRC the following error occured: Traceback (most recent call last): File "/scr1/nemanja/install/bin/gnuradio-companion", line 128, in main() File "/scr1/nemanja/install/bin/gnuradio-companion", line 121, in main ActionHandler

[Discuss-gnuradio] import Qwt error

2015-09-24 Thread Nemanja Savic
Hi all guys, i am trying to install gnuradio 3.7.7.1 version og gnuradio on my RHEL6 machine in a local path and to preserve my 3.6.5.1 version. After instaling many different programs i also screwed my old version. Ok it was not that bad but filter design tool doesn't work for me. I get the follo

Re: [Discuss-gnuradio] block without work function won't stop

2015-09-02 Thread Nemanja Savic
Namely, my workless function block blocks my flowgraph when I call unlock(). I made a method where I set d_finished to True, but this doesn't help. Nemanja On Wed, Sep 2, 2015 at 2:16 PM, Nemanja Savic wrote: > Hello again, > > could you please Marcus, or somebody else, give me

Re: [Discuss-gnuradio] block without work function won't stop

2015-09-02 Thread Nemanja Savic
Hello again, could you please Marcus, or somebody else, give me some hint for sending done message to a block's "system" port. Are all blocks by default subscribed to system port? Best, Nemanja On Tue, May 26, 2015 at 2:37 PM, Nemanja Savic wrote: > Hi, > > thank

Re: [Discuss-gnuradio] core dumped when closing GRC

2015-06-05 Thread Nemanja Savic
te: > >> OK, in that case probably some other issue. Can't really say more from >> afar. >> >> Cheers, >> Martin >> >> On 04.06.2015 09:33, Nemanja Savic wrote: >> > Hi, >> > >> > so, well, I did like it should be, first I i

[Discuss-gnuradio] core dumped when closing GRC

2015-06-04 Thread Nemanja Savic
Hi all, i finally managed to install newest version of gnuradio (3.7.7.1) on mu RHEL6. Everyrhing look sjust fine except segmentation fault when closing GRC. Didi anybody experience something like this and how can I debug it? Best -- Nemanja Savić ___

[Discuss-gnuradio] can't install gnuradio 3.7.7.1 and newest UHD

2015-05-29 Thread Nemanja Savic
Hi all, I am stil using gnuradio 3.6.5.1 and yesterday I wanted to install newest version of both gnuradio and UHD driver. I wanted to install them on some different path and to preserve working environment until I am sure that newcomers work. First I downloaded and built UHD. I followed instruct

[Discuss-gnuradio] bfile sink base undefined symbol error

2015-05-28 Thread Nemanja Savic
Hi all guys, I encounter following error when running my test: ImportError: /usr/local/lib/libgnuradio-TPMS.so: undefined symbol: _ZN2gr6blocks14file_sink_baseC2EPKcb There was a similar problem explained here: http://stackoverflow.com/questions/28859517/gnuradio-importerror-undefined-symbol I

Re: [Discuss-gnuradio] block without work function won't stop

2015-05-26 Thread Nemanja Savic
m > about that). > The proper way to do so is to send your block a message to its > pmt::mp("system") port, containing pmt::mp("done"). > > > Best regards, > Marcus > > > On 05/26/2015 02:10 PM, Nemanja Savic wrote: > > Hi all, > >

[Discuss-gnuradio] block without work function won't stop

2015-05-26 Thread Nemanja Savic
Hi all, I have a block that is used only for acepting messages and writing their content into database. The block is written in python and it has no work function, but only constructor and message handler. However when I run my flowgraph it won't finish until I terminate it. When I exclude this bl

[Discuss-gnuradio] missing GRC block panel

2015-05-21 Thread Nemanja Savic
Hi all, did anybody experience missing complete blocks panel in GRC? 3.6.5.1. Thanx -- Nemanja Savić ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Re: [Discuss-gnuradio] No change when set_processor affinity() is used

2015-05-12 Thread Nemanja Savic
delay of (N-1)/2, where N is the number of taps in the middle filter. However signals in the files are not synchronized. What could cause that? On Tue, May 12, 2015 at 7:01 PM, Marcus D. Leech wrote: > On 05/12/2015 12:52 PM, Nemanja Savic wrote: > > > You are probably right, cau

Re: [Discuss-gnuradio] No change when set_processor affinity() is used

2015-05-12 Thread Nemanja Savic
> > Greetings, > Marcus > > > On 05/12/2015 06:33 PM, Marcus D. Leech wrote: > > On 05/12/2015 12:25 PM, Nemanja Savic wrote: > > Hi all guys, > > I have a flowgraph where I have three parallel paths for filtering signal > stored in a file. Here the picture of

Re: [Discuss-gnuradio] No change when set_processor affinity() is used

2015-05-12 Thread Nemanja Savic
cus D. Leech wrote: > On 05/12/2015 12:25 PM, Nemanja Savic wrote: > > Hi all guys, > > I have a flowgraph where I have three parallel paths for filtering signal > stored in a file. Here the picture of my flowgraph: > > [image: Inline image 1] > > I use gnuradio 3.6

[Discuss-gnuradio] No change when set_processor affinity() is used

2015-05-12 Thread Nemanja Savic
Hi all guys, I have a flowgraph where I have three parallel paths for filtering signal stored in a file. Here the picture of my flowgraph: [image: Inline image 1] I use gnuradio 3.6.5.1. When I run the script it uses only one processor, and since I have 4 cores, I would like to run every of the

Re: [Discuss-gnuradio] "Catching" end of flowgraph execution with GUI

2015-05-06 Thread Nemanja Savic
t; _top_block_waiter class in top_block.py. You can reimplement that logic > to e.g. add a time-out the the wait() call on the event or have a > callback executed. > > Sebastian > > On 05/05/2015 02:00 PM, Nemanja Savic wrote: > > Hi all (again), > > > >

[Discuss-gnuradio] "Catching" end of flowgraph execution with GUI

2015-05-05 Thread Nemanja Savic
Hi all (again), is there any way to catch that my flowgraph has finished execution, to reconfigure it after that and to be able to watch signals in GUI? In my application I I would like to set some start and end values and to press some kind of start button. After that flowgraph runs for the firs

Re: [Discuss-gnuradio] error when calling method of base class block

2015-05-05 Thread Nemanja Savic
this will help somebody in the future. Nemanja On Mon, May 4, 2015 at 6:41 PM, Martin Braun wrote: > What do your swig file changes look like? > > M > > On 04.05.2015 05:13, Nemanja Savic wrote: > > Hi all guys, > > > > I am making a file sink block with l

[Discuss-gnuradio] error when calling method of base class block

2015-05-04 Thread Nemanja Savic
Hi all guys, I am making a file sink block with limited number of elements allowed to be written in a file. I coded my block in the same way as it was done in file_sink block found in blocks module. Namely, I derived my block from file_sink_base and gr_sync_block, and so on, the rest is copied fro

Re: [Discuss-gnuradio] Terminating flowgraph inside

2015-05-04 Thread Nemanja Savic
already figured that out, so my > guess is you want something else; would you mind elaborating on your > problem? > > Best regards, > Marcus > > [1] > http://www.trondeau.com/blog/2013/9/15/explaining-the-gnu-radio-scheduler.html > > > > > On 05/03/2015 04:11 PM

[Discuss-gnuradio] Terminating flowgraph inside

2015-05-03 Thread Nemanja Savic
Hello again, is there any way that block inside a flowgraph terminate that flowgraph should stop. Something like when source block returns -1 from work function. What happens when arbitrary block in the middle of the flowgraph returns -1? -- Nemanja Savić

[Discuss-gnuradio] catching the end of flowgraph execution

2015-04-30 Thread Nemanja Savic
Hello again guys, this is some kind of next stage of my previous queston. Namely, I have top block with two flowgraphs, rx_path and tx_path. tx_path produces known number of samples during which time rx_path receivees. As soon as tx_path is finishes I should also stop rx_path, or at least to close

Re: [Discuss-gnuradio] restarting sub flow graph

2015-04-30 Thread Nemanja Savic
It is always funny to answer my own questions. But the previous problem I addressed is easily solved with lock() and unlock() methods. On Thu, Apr 30, 2015 at 12:31 PM, Nemanja Savic wrote: > In fact I would like to explain a bit more. > The flowgraph consists of rx and tx path: &

Re: [Discuss-gnuradio] restarting sub flow graph

2015-04-30 Thread Nemanja Savic
ols in RX path. When I set a certain number of bits inside TX path, after the bits are generated, TX path doesn't have anything to do and should stop. So my question is how to rerun it again. Nemanja On Thu, Apr 30, 2015 at 12:20 PM, Nemanja Savic wrote: > Hello again guys, > >

[Discuss-gnuradio] restarting sub flow graph

2015-04-30 Thread Nemanja Savic
Hello again guys, in my applicatoin I have two flow graphs, namely, rx and tx paths, separated. TX path generates pseudorandom bit sequence which is then turned into digital signal and transmitted over LFTX board. This signal is fed into signal generator in order to modulate FKS signal. Modulated

Re: [Discuss-gnuradio] Multiple flowgraphs and GUI elements

2015-04-27 Thread Nemanja Savic
The one suggested for multiple flowgraphs in the gnuradio page Writing python applications. Walkie talkie nbfm example (can't provide the name at the moment). Best, Nemanja On Mon, Apr 27, 2015 at 2:23 PM, Marcus Müller wrote: > Hi Nemanja > > On 04/27/2015 01:18 PM, Neman

[Discuss-gnuradio] Multiple flowgraphs and GUI elements

2015-04-27 Thread Nemanja Savic
Hi all guys, I am building a gnuradio top block application where I want to have rx and tx flographs. Something similar to the example provided with gnuradio. I want to make rx path and tx path, but the example doesn't use "common" way for making GUI elements. Now, I am a little bit confused. Shou

Re: [Discuss-gnuradio] two WBX boards synchronization

2014-12-10 Thread Nemanja Savic
, 2014 at 1:41 AM, Marcus D. Leech wrote: > On 12/09/2014 07:32 PM, Nemanja Savic wrote: > > is there any way to synchronize those two clocks sources? > > Not on a USRP1. > > On N200, there's support for "timed commands", which allows both > synthesizers to be l

Re: [Discuss-gnuradio] two WBX boards synchronization

2014-12-09 Thread Nemanja Savic
is there any way to synchronize those two clocks sources? On Tue, Dec 9, 2014 at 4:51 PM, Marcus D. Leech wrote: > On 12/09/2014 04:42 AM, Nemanja Savic wrote: > > Shouldn't relative phase be constant and 90 degrees for example if > transmitted wave had circular polarization

Re: [Discuss-gnuradio] two WBX boards synchronization

2014-12-09 Thread Nemanja Savic
Shouldn't relative phase be constant and 90 degrees for example if transmitted wave had circular polarization? On Tue, Dec 9, 2014 at 10:38 AM, Nemanja Savic wrote: > Yes, the platform is USRP1. What is relative phase in this case if they > are alligned in time? > > On Mon, De

Re: [Discuss-gnuradio] two WBX boards synchronization

2014-12-09 Thread Nemanja Savic
will be aligned in time, but the relative phase will be random every time > you re-tune or start a new session. > > > > > On 2014-12-08 06:03, Nemanja Savic wrote: > > Hi all guys, > > I am about to make a receiver with two WBX daughterboards. I want to > receiv

[Discuss-gnuradio] two WBX boards synchronization

2014-12-08 Thread Nemanja Savic
Hi all guys, I am about to make a receiver with two WBX daughterboards. I want to receive simultaneusly with horizontal and vertical antenna. For this purpose I want to use 4RX FPGA image. My question signals obtained in this way, from two daughterboards, alligned in time? Many thanks, -- Neman

Re: [Discuss-gnuradio] pfb_arb_resampler test fail (3.7.3)

2014-06-13 Thread Nemanja Savic
cares,so thank you. On Fri, Jun 13, 2014 at 3:25 PM, Tom Rondeau wrote: > On Mon, May 26, 2014 at 4:49 AM, Nemanja Savic wrote: > >> Hi all guys, >> >> I am experiencing error when testing 3.7.3. The error report is following: >> >> OK >> Using Volk

[Discuss-gnuradio] pfb_arb_resampler test fail (3.7.3)

2014-05-26 Thread Nemanja Savic
Hi all guys, I am experiencing error when testing 3.7.3. The error report is following: OK Using Volk machine: avx_64_mmx -- Process completed Passed 95/177 Testing qa_pfb_arb_resampler Test command: /bin/sh /home/savi_ne/tools/gnuradio-3.7.3/build/gr-filter/python/filter/qa_pfb_arb_resampler

Re: [Discuss-gnuradio] error while building 3.7.3 on RHEL6

2014-05-23 Thread Nemanja Savic
So, is there any solution or nobody did see the last email? Best, Nemanja On Tue, May 13, 2014 at 12:15 PM, Nemanja Savic wrote: > It is written: > Using Volk machine: avx_64_mmx > > Best > > > On Tue, May 13, 2014 at 10:49 AM, Martin Braun wrote: > >> On 12.05.2

Re: [Discuss-gnuradio] Frequency modulation in GRC

2014-05-23 Thread Nemanja Savic
Well, when I use the same sensitivity as u, I cant see, but with higher value u can see.U can use average option but still with that sensitivity u will not see much. On Fri, May 23, 2014 at 6:26 AM, jason sam wrote: > Hi, > I have made the flowgraph as attached..It is showing the modulation in

[Discuss-gnuradio] multiple subscription to a single output message output port

2014-05-21 Thread Nemanja Savic
Hi all guys, I currently have a hier block, and a several sub blocks are sending messages to a block outside of hier block. Is it possible that all subblocks subscribe to a unique output message port? At the moment I have to change a lot of code when i am about to add a new block which sends messa

Re: [Discuss-gnuradio] error while building 3.7.3 on RHEL6

2014-05-13 Thread Nemanja Savic
It is written: Using Volk machine: avx_64_mmx Best On Tue, May 13, 2014 at 10:49 AM, Martin Braun wrote: > On 12.05.2014 12:53, Nemanja Savic wrote: > >> I finally disabled doxygen and everything was built fine, but the test >> fails at pfb_arb_resampler: >> >>

Re: [Discuss-gnuradio] error while building 3.7.3 on RHEL6

2014-05-12 Thread Nemanja Savic
t`, `second`, `places` )) AssertionError: (-0.32564974754236342-0.94549047690899302j) != (-0.56183856725692749-0.82724255323410034j) within 2 places Did anybody has the same problem? Best, Nemanja On Fri, May 9, 2014 at 4:06 PM, Tom Rondeau wrote: > On Fri, May 9, 2014 at 10:00 AM, Nemanja Savic wrote: >

Re: [Discuss-gnuradio] broken gnuplot

2014-05-12 Thread Nemanja Savic
If somebody have the same problem, just install pyopengl from source. On Thu, May 8, 2014 at 6:11 PM, Nemanja Savic wrote: > Hi all again, > > actually yes, the problem was due to numpy. Namely, I uninstalled 1.4.1 > which I have on my RHEL6 and installed 1.5 or something. During

Re: [Discuss-gnuradio] error while building 3.7.3 on RHEL6

2014-05-09 Thread Nemanja Savic
It look like RHEL6 use really old library: qt3-3.3.8b-30.el6.x86_64 On Fri, May 9, 2014 at 3:49 PM, Tom Rondeau wrote: > On Fri, May 9, 2014 at 9:43 AM, Nemanja Savic wrote: > >> Ok, I'll try there. Do you have any idea what is the problem with QFile >> while building

Re: [Discuss-gnuradio] error while building 3.7.3 on RHEL6

2014-05-09 Thread Nemanja Savic
Ok, I'll try there. Do you have any idea what is the problem with QFile while building qtgui. On Fri, May 9, 2014 at 3:37 PM, Tom Rondeau wrote: > On Fri, May 9, 2014 at 9:29 AM, Nemanja Savic wrote: > >> make in gr-trellis folder works, but when I run again from build f

Re: [Discuss-gnuradio] error while building 3.7.3 on RHEL6

2014-05-09 Thread Nemanja Savic
make in gr-trellis folder works, but when I run again from build folder the same error appears. On Fri, May 9, 2014 at 3:15 PM, Tom Rondeau wrote: > On Fri, May 9, 2014 at 9:14 AM, Nemanja Savic wrote: > >> I am trying to build 3.7.3, and doxygen version is: >> doxygen-

Re: [Discuss-gnuradio] error while building 3.7.3 on RHEL6

2014-05-09 Thread Nemanja Savic
I am trying to build 3.7.3, and doxygen version is: doxygen-1.6.1-6.el6.x86_64. I tried to run again and got the error again. On Fri, May 9, 2014 at 3:09 PM, Tom Rondeau wrote: > On Fri, May 9, 2014 at 8:01 AM, Nemanja Savic wrote: > >> Unfortunatelly there is another error

Re: [Discuss-gnuradio] error while building 3.7.3 on RHEL6

2014-05-09 Thread Nemanja Savic
*** [docs/doxygen/CMakeFiles/doxygen_target.dir/all] Error 2 make: *** [all] Error 2 Hw can I now overcome this? Thanx, Nemanja On Fri, May 9, 2014 at 12:39 PM, Nemanja Savic wrote: > You are right regarding search, I have no excuse, and thanks for helping > me. > > > On Fri

Re: [Discuss-gnuradio] error while building 3.7.3 on RHEL6

2014-05-09 Thread Nemanja Savic
This is really > just a friendly reminder that you should make sure that your questions > have not yet been answered before posting to the list, since this is > more often than not even faster than asking :) > > On 09.05.2014 11:12, Nemanja Savic wrote: > > Hi all guys, > &g

[Discuss-gnuradio] error while building 3.7.3 on RHEL6

2014-05-09 Thread Nemanja Savic
Hi all guys, I have again prob;lem building new version of gnuradio on my RHEL6 machine. The error is following: [ 26%] Building CXX object gr-blocks/lib/CMakeFiles/gnuradio-blocks.dir/message_strobe_random_impl.cc.o In file included from /home/savi_ne/tools/gnuradio-3.7.3/gr-blocks/lib/message_s

Re: [Discuss-gnuradio] broken gnuplot

2014-05-08 Thread Nemanja Savic
PM, Tom Rondeau wrote: > On Wed, Feb 26, 2014 at 6:23 AM, Nemanja Savic wrote: > > When I use nongl option, then the gui looks like on the figure I posted, > and > > when I use gl option, the follosing error occures: > > Traceback (most recent call last): > > Fil

Re: [Discuss-gnuradio] saving raw data after correct frame reception

2014-05-08 Thread Nemanja Savic
Ah, it has just came to my mind the following idea: a block with history value of few miliseconds connected directly to usrp source. The history can provide me previous data, but I would like to hear if something like this has sense? best On Thu, May 8, 2014 at 5:21 PM, Nemanja Savic wrote

Re: [Discuss-gnuradio] saving raw data after correct frame reception

2014-05-08 Thread Nemanja Savic
Hi all again, regarding my previous email, I would like to ask you is there any more efficient way to buffer data in gnuradio except makind a block that just copies samples and waits for the signal to store them into file? On Tue, Apr 22, 2014 at 10:20 AM, Nemanja Savic wrote: > hi all g

[Discuss-gnuradio] saving raw data after correct frame reception

2014-04-22 Thread Nemanja Savic
hi all guys, I would like to be able to store raw data into file after correct frame reception. For this reason I suppose there should be a block that buffers raw data and wait for the trigger to store into file. The trigger can only be sent from packet deframer after checking validity. So my ques

Re: [Discuss-gnuradio] catching unrecognized exception

2014-04-16 Thread Nemanja Savic
the last message was not clear. So, I made sql syntax error and run the program, with my old syntax, and exception was caught, so the error should be somewhere else. On Wed, Apr 16, 2014 at 10:45 AM, Nemanja Savic wrote: > Hello again, > > Marcus, you are right, my syntax is not

Re: [Discuss-gnuradio] catching unrecognized exception

2014-04-16 Thread Nemanja Savic
ly know what you're doing. You'll end up with unfinished data, > broken database commits and so on. > > Greetings, > Marcus > > On 15.04.2014 15:40, Nemanja Savic wrote: > > Hi again, > > > > so, the exception appeared again. Just to remind: > > thread[th

Re: [Discuss-gnuradio] catching unrecognized exception

2014-04-15 Thread Nemanja Savic
#x27; which probably means that the > error is coming from line 65 of one of the files you have been editing. > > Mike > > -- > Mike Jameson M0MIK BSc MIET > Email: m...@scanoo.com > Web: http://scanoo.com > > > On Tue, Apr 15, 2014 at 2:40 PM, Nemanja Savic wrote

Re: [Discuss-gnuradio] catching unrecognized exception

2014-04-15 Thread Nemanja Savic
ong, most probably you wanted to use "except > ExceptionType as e" instead, refer to > http://docs.python.org/2/tutorial/errors.html > > Anyway, have you tried surrounding all your handler code with a try > and catch not only the database related errors? > > Greetings

Re: [Discuss-gnuradio] catching unrecognized exception

2014-03-20 Thread Nemanja Savic
On Mon, Mar 3, 2014 at 12:55 PM, Nemanja Savic wrote: > Hi all guys, > > I have a block which is responsible to receive certain messages from other > blocks and to write the data from the message into database. Sometimes the > following exception occures and the block stops writin

[Discuss-gnuradio] catching unrecognized exception

2014-03-03 Thread Nemanja Savic
Hi all guys, I have a block which is responsible to receive certain messages from other blocks and to write the data from the message into database. Sometimes the following exception occures and the block stops writing into database: thread[thread-per-block[0]: ]: caught unrecognized exception T

Re: [Discuss-gnuradio] broken gnuplot

2014-02-26 Thread Nemanja Savic
usr/local/lib64/python2.6/site-packages/gnuradio/wxgui/fftsink2.py", line 34, in raise RuntimeError("Unable to import OpenGL. Are Python wrappers for OpenGL installed?") RuntimeError: Unable to import OpenGL. Are Python wrappers for OpenGL installed? On Tue, Feb 25, 2014 at

Re: [Discuss-gnuradio] broken gnuplot

2014-02-25 Thread Nemanja Savic
Thank you Tom. I try tomorrow. On Tue, Feb 25, 2014 at 4:20 PM, Tom Rondeau wrote: > On Tue, Feb 25, 2014 at 9:35 AM, Nemanja Savic wrote: > > Is there any way to repair this, because one or two months ago, > everything > > was ok? Or, is there any log where I can figure

Re: [Discuss-gnuradio] broken gnuplot

2014-02-25 Thread Nemanja Savic
Is there any way to repair this, because one or two months ago, everything was ok? Or, is there any log where I can figure what is the exact problem? On Tue, Feb 25, 2014 at 3:02 PM, Tom Rondeau wrote: > On Tue, Feb 25, 2014 at 8:07 AM, Nemanja Savic wrote: > >> So, it is default

[Discuss-gnuradio] broken gnuplot

2014-02-25 Thread Nemanja Savic
Hi all guys, lately I have experienced some problems with showing scope and fft plot. Namely, the plots looks raw and ugly. Once there was an report that gnuplot was killed. Any idea how to check and repair this? Best, -- Nemanja Savić ___ Discuss-gn

Re: [Discuss-gnuradio] 回复: import error: no

2014-02-18 Thread Nemanja Savic
You are right. Thank you On Tue, Feb 18, 2014 at 4:18 PM, Tiankun Hu wrote: > seems need do ldconfig > -- 原始邮件 -- > *发件人:* "Nemanja Savic" > *发送时间:* 2014年2月18日(星期二) 晚上10:02 > *收件人:* "GNURadio Discussion List"; > *主题:* [Discu

[Discuss-gnuradio] import error: no

2014-02-18 Thread Nemanja Savic
Hi all guys, I am facin a problem when trying to import out of tree module. Namely, I developed the module one one machine, and copied source files to another machind and it doesn't work. I have done this several times and every time it worked without problems. Here is the error message: Tracebac

Re: [Discuss-gnuradio] funcube pro +

2014-02-12 Thread Nemanja Savic
eries/C2200 and it works flawless. > > --Volker > > > Am 12.02.2014 14:22, schrieb Nemanja Savic: > >> Well, I have dell laptop but have no clue which usb controller it has. >> Now I am not sure whether I should by one or not. Anyway, should newer >> versions of usb h

Re: [Discuss-gnuradio] funcube pro +

2014-02-12 Thread Nemanja Savic
ller instead does not work. It claims to > have not enough bandwith but for both Funcube devices the ( pro and the > pro+). > > -- Volker > > > > Am 12.02.2014 11:09, schrieb Alexandru Csete: > >> On Wed, Feb 12, 2014 at 10:51 AM, Nemanja Savic >> wrote: >

Re: [Discuss-gnuradio] funcube pro +

2014-02-12 Thread Nemanja Savic
I have only usb 2.0 ports on my computer. How likely is that this bug will be fixed in the near future? On Wed, Feb 12, 2014 at 11:09 AM, Alexandru Csete wrote: > On Wed, Feb 12, 2014 at 10:51 AM, Nemanja Savic > wrote: > > Hi all guys, > > > > I am about to buy f

[Discuss-gnuradio] funcube pro +

2014-02-12 Thread Nemanja Savic
Hi all guys, I am about to buy funcube dongle pro +, and wanted to ask if somebody of u use it without any problems? Best, -- Nemanja Savić ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnura

[Discuss-gnuradio] Fwd: synchronization between blocks

2014-02-04 Thread Nemanja Savic
Hi all, Thank you Michael for you generous answer. The point is that my clk sync block is probably the source of troubles, but don't know yet why. Namely it starts ok, the rssi is correct, but then it stops working correctly, and I can see in some log file that correct rssi value was sampled earli

Re: [Discuss-gnuradio] Documentation for out-of-tree module

2014-02-04 Thread Nemanja Savic
Hell yeah, my first corect answer! Cheers On Tue, Feb 4, 2014 at 9:16 PM, Zhe Feng wrote: > Hi Tom, > > I found my mistake. > OK, maybe I don't have to worry about the public header file now. > > Thanks! > Best, > Zhe > > > > On Tue, Feb 4, 2014 at 2:06 PM, Tom Rondeau wrote: > >> On Tue, Feb

Re: [Discuss-gnuradio] Fwd: Documentation for out-of-tree module

2014-02-04 Thread Nemanja Savic
Under tag . On Tue, Feb 4, 2014 at 5:15 PM, Zhe Feng wrote: > > Hi all, > > I'm working on an out-of-tree module and I want to make the documentations > which can be shown in the windows when people double click the blocks. > > I guess the documentations are written in the header file in > /gr-

Re: [Discuss-gnuradio] Documentation for out-of-tree module

2014-02-04 Thread Nemanja Savic
well, maybe, i don't know. Still haven't used 3.7. But I remember when I wanted to do the same I looked for the documentation of standard gnuradio blocks and just copied that. Best, Nemanja On Tue, Feb 4, 2014 at 7:26 PM, Zhe Feng wrote: > Hi Nemanja, > > Yes, that's what I want to do. > > I'm

Re: [Discuss-gnuradio] Documentation for out-of-tree module

2014-02-04 Thread Nemanja Savic
If i understood you well, you wanna see the description of ur block in GRC. In version 3.6.5.1 and previous ones I did that by writting block description under tag in xml GRC file of ur block. For example: Doceder consists of two sub blocks: blah blah as for the missing tag

Re: [Discuss-gnuradio] Documentation for out-of-tree module

2014-02-04 Thread Nemanja Savic
I think "that" documentation is written in your xml file from grc folder. On Tue, Feb 4, 2014 at 6:37 PM, Zhe Feng wrote: > Hi all, > > I'm working on an out-of-tree module and I want to make the documentations > which can be shown in the windows when people double click the blocks. > > I guess

Re: [Discuss-gnuradio] synchronization between blocks

2014-02-04 Thread Nemanja Savic
Feb 3, 2014, at 10:14 AM, Nemanja Savic wrote: > > at the moment I thought that the problem was solved, but actually > something strange is going on. I would only like to ask whether delay > between two paths can roll out somehow (i don't know if this verb exists). > The point is

Re: [Discuss-gnuradio] synchronization between blocks

2014-02-03 Thread Nemanja Savic
e the script is doing fine, but then I realize signs of unalligned signals which I can't in some other way. Best Nemanja On Wed, Jan 29, 2014 at 6:52 PM, Nemanja Savic wrote: > Thank you Tom. The problem is that in the configuration that is attached > delay must be arround 600 in ord

Re: [Discuss-gnuradio] can't read fir taps

2014-01-30 Thread Nemanja Savic
Thank you Tom. It works when using fir from filter module. On Thu, Jan 30, 2014 at 2:10 PM, Tom Rondeau wrote: > On Thu, Jan 30, 2014 at 4:47 AM, Nemanja Savic wrote: > > After a few more tries to figure out how this works I realized that > method > > taps() can return li

Re: [Discuss-gnuradio] can't read fir taps

2014-01-30 Thread Nemanja Savic
PM, Nemanja Savic wrote: > Hi all guys, > > this two lines of code sort of doesn't work as I expect. > > self.channel_filter = gr.fir_filter_ccf(1, firdes.low_pass(10, samp_rate, > 8, 5000, firdes.WIN_HAMMING, 6.76)) > > print self.channel_filter.taps(), self.cha

[Discuss-gnuradio] can't read fir taps

2014-01-29 Thread Nemanja Savic
Hi all guys, this two lines of code sort of doesn't work as I expect. self.channel_filter = gr.fir_filter_ccf(1, firdes.low_pass(10, samp_rate, 8, 5000, firdes.WIN_HAMMING, 6.76)) print self.channel_filter.taps(), self.channel_filter I use 3.6.5.1 version and the only thing I get is empty t

  1   2   3   >