You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 9, 2025. It is now read-only.
config file: config_v2.yaml
issue:
when configuring Jamming waveform 3=gaussian noise,
script stops with the next error:
TypeError: init(): incompatible constructor arguments. The following argument types are supported:
1. gnuradio.analog.analog_python.noise_source_c(type: gr::analog::noise_type_t, ampl: float, seed: int = 0)
Invoked with: <noise_type_t.GR_GAUSSIAN: 201>, 1, 0.5
fixing:
in file JamRF.py, line 84
use:
source = analog.noise_source_c(analog.GR_GAUSSIAN, 0.5, 1)
instead of:
source = analog.noise_source_c(analog.GR_GAUSSIAN, 1, 0.5)