OOT Hardware sink

2022-06-23 Thread Fabien PELLET
Hello, Is there anywhere some example of custom OOT hardware sink ? When running an OOT I'm actually writting, I get the warning that I should add a throttle because there is no hardware sink in my flowgraph. It begins to work but maybe I miss something in the code that generates that warning a

Re: OOT Hardware sink

2022-06-23 Thread Marcus Müller
Hi! That's just a small flag in the GRC YAML definition of your block, not actually anything functional that you need to write yourself. just add this line to your GRC block definition: flags: [throttle] (or, if there's already a "flags" property, add ", throttle" to the list) This ideally goe

Software Defined Radio Academy 2022 && European GNURadio Days

2022-06-23 Thread heller
Dear lists, the joint events Software Defined Radio Academy 2022 and European GNURadio Days are starting in a few hours. European GNURadio Days: Friday June 25 (tomorrow) Software Defined Radio Academy 2022: Saturday June 26 Both events are going to be availabe as a live stream at: https://yo

Re: Regression in GR3.10

2022-06-23 Thread ikjtel
> I think the way to properly handle GIL from long running calls > is to add  py::call_guard() Josh Full success!  I snarfed the gr code for msg_queue, msg_handler, and message, and added this call guard.  There is no more GIL deadlock in the python OP25 apps. Max ==