Those files look good to me - I'm wondering how the python bindings look.
Can you share the file python/bindings/adding_ff_python.cc ?
On Sun, Mar 13, 2022 at 8:04 PM Nikoloz Glonti wrote:
> Thanks for Your response! I'm using gnuradio 3.9.4.0
>
> void set_constant0(int constant0); is inside of
adding_ff_python.cc looks like that - https://pastebin.com/nmpshmvj
On 3/14/22 11:26, Josh Morman wrote:
Those files look good to me - I'm wondering how the python bindings
look. Can you share the file python/bindings/adding_ff_python.cc ?
Yes, that is the problem - not sure why modtool bind is not doing the
trick. You can manually add the method if you want, which would just look
like:
.def(py::init(&adding_ff::make),
py::arg("constant0"),
D(adding_ff,make)
)
.def("set_constant0", &adding_ff::set_constant0)
;
The only thing then
Hi there,
This is my first mailing post, so please excuse me if there are any errors.
I'm trying to make a block that gives me the bins with corresponding its
energy ([bins, energy]) when over a thresh, so input vector is from "log
power fft" block. With the output, I'm hoping to store it as a fi
Hello again.
Here is the python code: https://pastebin.com/waUMgRSD
I patiently await your response. By the way, this is my first time using a
mailing list:)
Regards,
David.
tir. 15. mar. 2022 kl. 00:15 skrev tech k1ng :
> Hi there,
>
> This is my first mailing post, so please excuse me if t