summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArturs Artamonovs <dos21h@gmail.com>2024-11-21 08:34:34 +0000
committerArturs Artamonovs <dos21h@gmail.com>2024-11-21 08:34:34 +0000
commit603d2f24c5240be100f69515b0655e2e4f8561d2 (patch)
treecfd3613a23793d782a83237877d721b65e7b4710
parent600094fb9828d18c9ea08e911c099b932cc659ce (diff)
downloadmd-content-603d2f24c5240be100f69515b0655e2e4f8561d2.tar.gz
md-content-603d2f24c5240be100f69515b0655e2e4f8561d2.zip
sdr: updated all notes on how to check SDR's are there
-rw-r--r--md/notes/sdr/gnu_radio_airspy_hf.md10
-rw-r--r--md/notes/sdr/gnu_radio_bladerf.md12
-rw-r--r--md/notes/sdr/gnu_radio_receive_cw.md2
-rw-r--r--md/notes/sdr/gnu_radio_receive_fm.md2
-rw-r--r--md/notes/sdr/gnu_radio_rtlsdr.md6
5 files changed, 20 insertions, 12 deletions
diff --git a/md/notes/sdr/gnu_radio_airspy_hf.md b/md/notes/sdr/gnu_radio_airspy_hf.md
index a29cb42..37c6e1e 100644
--- a/md/notes/sdr/gnu_radio_airspy_hf.md
+++ b/md/notes/sdr/gnu_radio_airspy_hf.md
@@ -4,21 +4,21 @@ keywords:sdr,airspyhf,gnuradio
#
Setting up steps to run AirSpy with GNU Radio using Soapy block.
-Assume the AirSpy libraries and cli tools are installed.
+Assume the AirSpyHF libraries and cli tools are installed.
-Check that AirSpy tools recognizes and see device
+Check that AirSpyHF tools recognizes and see device
```bash
-airspy_info
+airspyhf_info
```
Check that soapy recognizes the device
```bash
-SoapySDRUtils --find="driver=airspy"
+SoapySDRUtils --find="driver=airspyhf"
```
-Adding GNU Radio Osmocom source block
+Adding GNU Radio Soapy source block
![GNU radio osmocom block](/img/sdr/gnuradio_soapy_source_airspyhf.png)
diff --git a/md/notes/sdr/gnu_radio_bladerf.md b/md/notes/sdr/gnu_radio_bladerf.md
index 38edcc9..23c3710 100644
--- a/md/notes/sdr/gnu_radio_bladerf.md
+++ b/md/notes/sdr/gnu_radio_bladerf.md
@@ -9,16 +9,16 @@ Assume the AirSpy libraries and cli tools are installed.
Check that AirSpy tools recognizes and see device
```bash
-airspy_info
+bladeRF-cli -p
```
Check that soapy recognizes the device
```bash
-SoapySDRUtils --find="driver=airspy"
+SoapySDRUtils --find="driver=bladerf"
```
-Adding GNU Radio Osmocom source block.
+Adding GNU Radio Soapy block.
![GNU radio soapy block](/img/sdr/gnuradio_soapy_source_bladerf.png)
@@ -27,6 +27,12 @@ be loaded to BladeRF FPGA, can use one from default packages or download
directly from Nuan page [https://www.nuand.com/fpga_images/](https://www.nuand.com/fpga_images/)
match the firmware with libbladerf version on the system.
+Example configurations
+
+```
+bladerf=0,fpga=/usr/share/Nuand/BladeRF/hostedxA4.rbf
+```
+
![BladeRF soapy block config](/img/sdr/bladerf_soapy_source_config.png)
diff --git a/md/notes/sdr/gnu_radio_receive_cw.md b/md/notes/sdr/gnu_radio_receive_cw.md
index 2e53b1a..dd32c39 100644
--- a/md/notes/sdr/gnu_radio_receive_cw.md
+++ b/md/notes/sdr/gnu_radio_receive_cw.md
@@ -1,4 +1,4 @@
-title:GNU Radio eceive CW
+title:GNU Radio receive CW
keywords:sdr,airspy,gnuradio
#
diff --git a/md/notes/sdr/gnu_radio_receive_fm.md b/md/notes/sdr/gnu_radio_receive_fm.md
index 97712a4..7e98c13 100644
--- a/md/notes/sdr/gnu_radio_receive_fm.md
+++ b/md/notes/sdr/gnu_radio_receive_fm.md
@@ -26,3 +26,5 @@ a range of SDR's
## Links
+
+
diff --git a/md/notes/sdr/gnu_radio_rtlsdr.md b/md/notes/sdr/gnu_radio_rtlsdr.md
index 93edd6a..180ab68 100644
--- a/md/notes/sdr/gnu_radio_rtlsdr.md
+++ b/md/notes/sdr/gnu_radio_rtlsdr.md
@@ -9,16 +9,16 @@ Assume the AirSpy libraries and cli tools are installed.
Check that AirSpy tools recognizes and see device
```bash
-airspy_info
+rtl_test
```
Check that soapy recognizes the device
```bash
-SoapySDRUtils --find="driver=airspy"
+SoapySDRUtils --find="driver=rtlsdr"
```
-Adding GNU Radio Osmocom source block
+Adding GNU Radio Soapy source block
![GNU radio osmocom block](/img/sdr/gnuradio_soapy_source_rtlsdr.png)