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
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_v1.py, line 120
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:
yvvirelessguy
changed the title
config_v1.yaml; when configuring Jamming waveform 3=gaussian noise, script jamRF_v1.py stops with error
config_v1.yaml; when configuring Jamming waveform 3=gaussian noise, script jamRF_v1.py stops with an error
May 17, 2023
config file: config_v1.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_v1.py, line 120
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: