Re: [Discuss-gnuradio] PyBOMBS installed gnuradio: uhd_usrp_sink not found

2014-05-21 Thread Activecat
On Wed, May 21, 2014 at 7:31 PM, Mike Jameson wrote: > The "UHD Source" GRC block uses the file called "uhd_usrp_source.xml". > Make sure that this is in your GRC path. > > To set the GRC path you need to go into the ~/.gnuradio folder and create > a config.conf file and add the following tweaked

Re: [Discuss-gnuradio] PyBOMBS install gnuradio 3.7.4

2014-05-21 Thread Activecat
On Tue, May 20, 2014 at 4:29 PM, Martin Braun wrote: > FYI, I don't like installing stuff to /usr/local. If you take PyBombs' > directory, and then use -DCMAKE_INSTALL_PREFIX on your own OOT, that'll > make both work and you don't have to screw around in your system's dirs. > M > With the "cmake

[Discuss-gnuradio] Announcing NEWSDR in Boston on Friday June 6

2014-05-21 Thread Golurk Hameshta
* * Fourth-Annual * * * * New England Workshop on Software-Defined Radio* * NEWSDR 2014 * *

Re: [Discuss-gnuradio] Installation issues with gnuradio on Ubuntu 12.04 64-bit

2014-05-21 Thread muse_ee
Thanks so much for the quick response! So I tried running the first set of commands that remove and re-install libboost, and as you predicted that had the effect of uninstalling gnuradio. So I ran: sudo apt-get install gnuradio uhd This gives me the following error message (excerpted from a much

Re: [Discuss-gnuradio] Installation issues with gnuradio on Ubuntu 12.04 64-bit

2014-05-21 Thread Dan CaJacob
Try: sudo apt-get remove --purge libboost* sudo apt-get install libboost1.48-all-dev You may then have to install gnuradio and uhd again, since they depend on boost: sudo apt-get install gnuradio uhd Very Respectfully, Dan CaJacob On Wed, May 21, 2014 at 4:40 PM, muse_ee wrote: > Hello, >

[Discuss-gnuradio] Installation issues with gnuradio on Ubuntu 12.04 64-bit

2014-05-21 Thread muse_ee
Hello, I'm having some issues when I attempt to install gnuradio on a computer running Ubuntu 12.04 64-bit. I followed the installation guide on the Ettus wiki (using the "Releases/Bugfixes" path) (http://code.ettus.com/redmine/ettus/projects/uhd/wiki/GNURadio_Linux) but when I run the command gnu

Re: [Discuss-gnuradio] put a block to sleep

2014-05-21 Thread Mostafa Alizadeh
It doesn't work for me! On Wed, May 21, 2014 at 7:21 PM, Activecat wrote: > Try this: On the flowgraph Options, configure the Max Number Of Output to > 1. > > > > On Wed, May 21, 2014 at 9:54 PM, Mostafa Alizadeh > wrote: > >> *After producing one block of data,* the scheduler always come back

Re: [Discuss-gnuradio] Hierarchical Block Installation Source

2014-05-21 Thread Tom Rondeau
On Tue, May 20, 2014 at 5:20 PM, Jonathan Fox <31...@cardinalmail.cua.edu>wrote: > This may be a dumb question but where do the custom hierarchical blocks > generated in GRC get installed too? > ~/.grc_gnuradio/ You'll find the XML and Python files there. Tom __

Re: [Discuss-gnuradio] Maximum supported frequency

2014-05-21 Thread mohamedx
Yes, the sampling frequency or sampling rate. I was sure that is just related to what my machine can process, since I'm not depending on some specific hardware plateforms, but I've heard the opposite, that's why I'm posting this. Thank you Martin, I really appreciate your answer. -- View this

Re: [Discuss-gnuradio] Maximum supported frequency

2014-05-21 Thread Martin Braun
On 21.05.2014 15:49, mohamedx wrote: Hi everyone, I'm wondering about the maximum supported frequency in gnuradio, in fact, I want to model a UHF transmission chain, where the model concludes a simulation of the radio front end. Can I do it without worry about the software limitation ? I mean, i

[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

[Discuss-gnuradio] Maximum supported frequency

2014-05-21 Thread mohamedx
Hi everyone, I'm wondering about the maximum supported frequency in gnuradio, in fact, I want to model a UHF transmission chain, where the model concludes a simulation of the radio front end. Can I do it without worry about the software limitation ? I mean, is it depend only on my machine limitati

Re: [Discuss-gnuradio] put a block to sleep

2014-05-21 Thread Mostafa Alizadeh
Hi Martin, *blocks.head* isn't appropriate for my case because this is not a test! I searched for managing a thread, I found this : http://www.boost.org/doc/libs/1_48_0/doc/html/thread/synchronization.html#thread.synchronization.condvar_ref which is a part of boost library. This is exactly wha

Re: [Discuss-gnuradio] Building error of GNURadio 3.7.2

2014-05-21 Thread mohamedx
Actually I've used "sudo make install", and the prefix is the default one "/usr/local/", I'm now trying to move the source file to /var/tmp and recompile it with root privileges ! On Wed, May 21, 2014 at 3:25 PM, Tom Rondeau-2 [via GnuRadio] < ml-node+s4n48396...@n7.nabble.com> wrote: > On Wed,

Re: [Discuss-gnuradio] Building error of GNURadio 3.7.2

2014-05-21 Thread Tom Rondeau
On Wed, May 21, 2014 at 7:47 AM, mohamedx wrote: > Thank you Tom, I really appreciate your help. > > I tried again the cmake and turning off the docs, but I got another > encoding > error, when I took a look at the source file, I found that the reason of > this is actually a non utf-8 character in

Re: [Discuss-gnuradio] put a block to sleep

2014-05-21 Thread Martin Braun
On 21.05.2014 11:53, Mostafa Alizadeh wrote: Hello everybody, I want to connect a source to a sink block but there must be a sort of synchronization between them. The sink block should ask the source to generate data stream on some specific instances. Between these instances, the source block mu

Re: [Discuss-gnuradio] Building error of GNURadio 3.7.2

2014-05-21 Thread mohamedx
Thank you Tom, I really appreciate your help. I tried again the cmake and turning off the docs, but I got another encoding error, when I took a look at the source file, I found that the reason of this is actually a non utf-8 character in my path to the source file, so I changed the source file pat

Re: [Discuss-gnuradio] PyBOMBS installed gnuradio: uhd_usrp_sink not found

2014-05-21 Thread Mike Jameson
The "UHD Source" GRC block uses the file called "uhd_usrp_source.xml". Make sure that this is in your GRC path. To set the GRC path you need to go into the ~/.gnuradio folder and create a config.conf file and add the following tweaked with your actual path to the "UHD source" block: [grc] global_

Re: [Discuss-gnuradio] put a block to sleep

2014-05-21 Thread Activecat
On Wed, May 21, 2014 at 5:53 PM, Mostafa Alizadeh wrote: > Hello everybody, > > I want to connect a source to a sink block but there must be a sort of > synchronization between them. The sink block should ask the source to > generate data stream on some specific instances. Between these instances,

Re: [Discuss-gnuradio] PyBOMBS installed gnuradio: uhd_usrp_sink not found

2014-05-21 Thread Activecat
On Wed, May 21, 2014 at 4:35 PM, Mike Jameson wrote: > Have you run: > > ./pybombs env > > ...and then run: > > source ../target/setup_env.sh (alter file path to taste) > > Mike > Yes, this has been performed. During gnuradio installation, I configured the prefix to /usr/local due to a reason me

[Discuss-gnuradio] put a block to sleep

2014-05-21 Thread Mostafa Alizadeh
Hello everybody, I want to connect a source to a sink block but there must be a sort of synchronization between them. The sink block should ask the source to generate data stream on some specific instances. Between these instances, the source block must put to the sleep or be disabled. How could I

Re: [Discuss-gnuradio] PyBOMBS installed gnuradio: uhd_usrp_sink not found

2014-05-21 Thread Mike Jameson
Have you run: ./pybombs env ...and then run: source ../target/setup_env.sh (alter file path to taste) Mike -- Mike Jameson M0MIK BSc MIET Ettus Research Technical Support Email: supp...@ettus.com Web: http://ettus.com On Wed, May 21, 2014 at 8:38 AM, Activecat wrote: > After installing gnu

[Discuss-gnuradio] PyBOMBS installed gnuradio: uhd_usrp_sink not found

2014-05-21 Thread Activecat
After installing gnuradio using PyBOMBS, the USRP Sink and Source blocks are unavailable. Below is the message: 1). To verify uhd has been installed: [03:25pm] activecat@rs: ~/download/gnuradio/pybombs $ ./pybombs install uhd Settled on prefix: /usr/local Initializing environmental v