Currently in Github files:-
taps = digital.filter.firdes_low_pass(gain, sampling_freq, cutoff, transition_width) # hamming window
Working syntax now:-
taps = digital.filter.firdes.low_pass(gain, sampling_freq, cutoff, transition_width) # hamming window
Note that 'low' is preceded by a '.' not a '_'
The GNU Radio version appears to be :-
GNU Radio Manual and C++ API Reference 3.10.9.1
The Free & Open Software Radio Ecosystem
- Using the URL in the commented text but Gnu Radio Companion Help file says 3.10.9.2 (Python 3.12.3)
Which suggested that a full stop was necessary before 'low' so I just tried it and the expected 19 tap file was generated after it had failed with the underscore.
Mike D.