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
I am trying to implement a script in Python which detects Wi-Fi signal.
How to implement it? If I set
device_args = {"driver": "Cariboulite"}
sdr = SoapySDR.Device(device_args)
# Set sample rate, frequency, gain, etc.
sample_rate = 2e6
frequency = 2.45e9 # 2.45 GHz frequency (WiFi 2.4 GHz band) <-- here
gain = 20
sdr.setSampleRate(SOAPY_SDR_RX, 0, sample_rate)
sdr.setFrequency(SOAPY_SDR_RX, 0, frequency)
sdr.setGain(SOAPY_SDR_RX, 0, gain)
# Set up streaming
rx_stream = sdr.setupStream(SOAPY_SDR_RX, SoapySDR.SOAPY_SDR_CF32)
sdr.activateStream(rx_stream)
I am getting
E CARIBOULITE Radio cariboulite_radio_set_frequency@cariboulite_radio.c:874 Unsupported frequency for the ISM S1G channel - 2450000000.00 Hz, deactivating channel
[ERROR] setFrequency dir: 1, channel: 0, freq: 2450000000.00 FAILED
Here's my Soapy SDR Utility output, seems to be ok:
The text was updated successfully, but these errors were encountered:
rbalashevich
changed the title
Unsupported frequency for the ISM S1G channel - 2450000000.00 Hz
Unsupported frequency for the ISM S1G channel
Apr 24, 2024
If I understand right, the board itself supports two RX channels: S1G for sub-1GHz band, WB is a Wide tuning channel which operates in higher frequencies. So the question today is "How to switch one of the board's RX channels to WB with SoapySDR?"
I am trying to implement a script in Python which detects Wi-Fi signal.
How to implement it? If I set
I am getting
Here's my Soapy SDR Utility output, seems to be ok:
The text was updated successfully, but these errors were encountered: