Re: [Discuss-gnuradio] Custom Blocks not being found

2016-02-25 Thread Martin Braun
On 02/25/2016 01:19 PM, Richard Bell wrote: > When I start grc from terminal, it lists > /usr/local/share/gnurado/grc/blocks as one of the block paths, > ~/.grc_gnuradio being the other. This leads me to believe it knows to > look there. The gnuradio config.conf file also lists this as the global >

Re: [Discuss-gnuradio] Custom Blocks not being found

2016-02-25 Thread Richard Bell
When I start grc from terminal, it lists /usr/local/share/gnurado/grc/blocks as one of the block paths, ~/.grc_gnuradio being the other. This leads me to believe it knows to look there. The gnuradio config.conf file also lists this as the global blocks path. I'm not at the laptop giving me issues

Re: [Discuss-gnuradio] Custom Blocks not being found

2016-02-25 Thread Martin Braun
Are you sure GRC is looking for the files in /usr/local/share/gnurado/grc/blocks, and not elsewhere (e.g. /usr/share/gnurado/grc/blocks) ? M On 02/25/2016 01:03 PM, Richard Bell wrote: > Oh yes that's what I was trying to explain. This is an OOT module, with > a properly configured .xml file tha

Re: [Discuss-gnuradio] Custom Blocks not being found

2016-02-25 Thread Richard Bell
Oh yes that's what I was trying to explain. This is an OOT module, with a properly configured .xml file that I gave a category. This xml file was installed to the gnuradio blocks tree directory as described in my first email. I checked and it is there (/usr/local/share/gnurado/grc/blocks). However,

Re: [Discuss-gnuradio] Custom Blocks not being found

2016-02-25 Thread Martin Braun
The block tree is the data structure that holds the blocks and what GRC uses to sort them on the right-hand panel. Is this an OOT? Then you typically put them into the block tree by having a tag in your XML. The other option is a block tree file, which is what the in-tree components use. You can u

Re: [Discuss-gnuradio] Custom Blocks not being found

2016-02-25 Thread Richard Bell
I think I'm misunderstanding you. I thought you were just asking me if I could find the blocks in the grc library, either manually or using Ctrl-F. That I cannot do. If they are not there, I don't know how to manually place them in the block tree, as it seems your saying I should do. How do I add

Re: [Discuss-gnuradio] Custom Blocks not being found

2016-02-25 Thread Martin Braun
So if you put them in the block tree, do they show up? M On 02/25/2016 12:19 PM, Richard Bell wrote: > No they are not in the block tree. > > Rich > > On Thu, Feb 25, 2016 at 11:44 AM, Martin Braun > wrote: > > Are the blocks in the block tree? Can you see t

Re: [Discuss-gnuradio] Custom Blocks not being found

2016-02-25 Thread Richard Bell
No they are not in the block tree. Rich On Thu, Feb 25, 2016 at 11:44 AM, Martin Braun wrote: > Are the blocks in the block tree? Can you see them by doing Ctrl-F + > search? > > M > > On 02/25/2016 11:40 AM, Richard Bell wrote: > > I've noticed lately that I can't just compile and install cust

Re: [Discuss-gnuradio] Custom Blocks not being found

2016-02-25 Thread Martin Braun
Are the blocks in the block tree? Can you see them by doing Ctrl-F + search? M On 02/25/2016 11:40 AM, Richard Bell wrote: > I've noticed lately that I can't just compile and install custom blocks > and have them show up in grc. I've had to add a GRC_BLOCKS_PATH > environment variable that points

[Discuss-gnuradio] Custom Blocks not being found

2016-02-25 Thread Richard Bell
I've noticed lately that I can't just compile and install custom blocks and have them show up in grc. I've had to add a GRC_BLOCKS_PATH environment variable that points to the location of my custom blocks folder to make them discoverable. Isn't the sudo make install process supposed to copy the re