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
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
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
> 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
==