We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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)
The text was updated successfully, but these errors were encountered: