Re: [Discuss-gnuradio] Building ControlPort support into OOT module

2016-02-11 Thread Tom Rondeau
On Wed, Feb 10, 2016 at 2:50 PM, Jacob Gilbert wrote: > Tom - > > So as it turned out, I had the rpcbasic_register_set<> value types > mismatched (signed vs unsigned) and that error was hidden within a huge > mess of errors that appeared to be "could not find

[Discuss-gnuradio] Building ControlPort support into OOT module

2016-02-10 Thread Jacob Gilbert
I'm having some trouble adding ControlPort hooks to an OOT module. Is there a guide on this I am missing? I followed the ControlPort manual page including the #ifdef statements, however GR_CTRLPORT is not set and the controlport code never gets built. If I force the code to be built, the build

Re: [Discuss-gnuradio] Building ControlPort support into OOT module

2016-02-10 Thread Tom Rondeau
On Wed, Feb 10, 2016 at 11:37 AM, Jacob Gilbert wrote: > I'm having some trouble adding ControlPort hooks to an OOT module. Is > there a guide on this I am missing? I followed the ControlPort manual page > including the #ifdef statements, however GR_CTRLPORT is not set

Re: [Discuss-gnuradio] Building ControlPort support into OOT module

2016-02-10 Thread Jacob Gilbert
Tom - So as it turned out, I had the rpcbasic_register_set<> value types mismatched (signed vs unsigned) and that error was hidden within a huge mess of errors that appeared to be "could not find rpcbasic_register_set" errors. Sorry for the confusion. Thank you for the #include. That builds with