modulator = gnuradio.blks2impl.d16psk.d16psk_mod(.)
This would only work if each one of those tokens was actual a python
module/package with an __init__.py in it. But since its not, you have to
treat it like a directory structure:
from gnuradio.blks2impl.d16psk import d16psk_mod
mod
Hello everyone,
I took the d8psk.py modulator and tweaked it a little to make a d16psk.py
modulator. I have (both of them) in
gnuradio/gnuradio-core/src/python/gnuradio/blks2impl
I ran
$sudo make install
$make check
Yet my script still gets an error on this line
modulator = gnuradio.blks2impl