mormj

Results 75 comments of mormj

https://packaging.python.org/guides/creating-and-discovering-plugins/

use these? https://github.com/gnuradio/SigMF/blob/sigmf-v1.x/sigmf-spec.md#sigmf-dataset-format

Went with the sigmf for typekeys Need to do the same for Parameters Just need a mapping of GR types to C++ and Python types | GR type | C++...

Sort of addressed in https://github.com/gnuradio/newsched/commit/db8849a7c324d079d19a3da7233962e5b2a3557a with connect([x,y,z,...])

This might be sufficient without wrapping the pybind in additional python complication

I think the way this needs to happen is building a plugin manager that can do the following: - On module load, search for libraries with a particular naming scheme,...

Need to be done like the parameter query and change methods

@jsallay - thank you for the comments. I agree that leveraging existing technologies will be absolutely necessary other than proving some toy example. Let's run with the container example -...

So then from a practical perspective, getting this type of RPC set up seems like the logical next step. And can be done apart from any containerization - though we...

### Enums Enums should use `enum class` The names of enumerations should be lower case, and not require `GR_` or `_TYPE` because of the scoping of the enum class Enum...