SKIP TO CONTENT
Fjärrstridsgrupp Alfa
SV UK EDITION 2026-Q2 ACTIVE
UNCLASSIFIED
FSG-A // TECHNICAL ENCYCLOPEDIA // EDITION 2026-Q2

SDR Spectrum Analysis: Detect Enemy Drone RF

Use software-defined radio to detect and analyze enemy drone RF signatures. SDR hardware and signal processing.

KEY TAKEAWAY
RTL-SDR dongle at 25 euros connected to Jetson scans 140-600 MHz and produces a real-time spectrogram. AI analyzes the spectrum: broadband noise means barrage jammer, narrowband spike means spot jammer, characteristic pattern identifies specific EW model. Lisa 26 displays detected sources on the COP with bearing. Two SDR stations 500 meters apart triangulate the jammer position to plus-minus 50 meters — enough for FPV or artillery destruction. SDR only receives, never transmits. The enemy cannot detect our listening station.

From Raw Spectrum to Actionable Intelligence

The rtl_power utility sweeps the 140-600 MHz band in approximately 2 seconds, producing a CSV file with power measurements in 100 kHz bins. At 4,600 frequency bins per sweep, the data forms a spectrogram that reveals every active transmitter in the band. Normal background: thermal noise at -110 dBm across all bins. A narrowband jammer appears as a sharp spike (+30-50 dB above noise) at a specific frequency. A barrage jammer appears as a raised noise floor across hundreds of bins simultaneously. A MANET hopping signal appears as brief flickers across random channels — much harder to see but detectable through statistical analysis of channel occupancy patterns.

Lisa 26 processes the spectrogram automatically: any persistent signal above noise floor plus 20 dB that does not match known friendly emissions is classified as a potential threat. The system correlates detections across time — a signal that appears consistently for more than 30 seconds at the same frequency is likely a jammer or enemy radio, not transient interference. The bearing to the source is estimated from signal strength if the SDR antenna has directional characteristics, or from triangulation if two SDR stations are available.

Triangulation — Locating the Jammer

Two SDR stations separated by 500+ meters can triangulate a jammer's position. Each station measures bearing to the signal using either a directional antenna (rotate for maximum signal) or amplitude comparison between two fixed antennas. The intersection of two bearings gives a position estimate with accuracy dependent on baseline length, bearing accuracy, and geometry. At 500m baseline with ±5° bearing accuracy: jammer position accuracy of ±50-100m at 5 km range. This is sufficient for FPV engagement (the FPV pilot can search a 100m area in 10 seconds) or for artillery fire mission (100m CEP is within artillery effectiveness radius).

The jammer operator faces an unsolvable dilemma: to jam effectively, the jammer must transmit at high power. High power transmission makes the jammer trivially detectable by passive SDR. Once located, the jammer is destroyed by FPV or artillery. Replacing a jammer takes hours to days. The cost asymmetry is dramatic: a €25 SDR locates a €50,000 jammer that is then destroyed by a €270 FPV drone. This is why electronic warfare ultimately favors the defender who can detect, locate, and destroy jammers faster than the adversary can deploy replacements.

Continuous spectrum monitoring transforms the electronic warfare picture from reactive to proactive. Without spectrum analysis, the brigade discovers enemy jamming only when communications fail — by then, operational damage is done. With real-time spectrum surveillance, Lisa 26 is DESIGNED to detect jammer activation within seconds and recommend countermeasures before the jamming affects operations (design goal, not validated under field conditions). The spectrum picture is as important as the terrain picture.

PLAIN LANGUAGE: SPECTRUM ANALYSIS
SDR (Software Defined Radio) lets you see all radio signals in the area — like a visual map of the radio spectrum. You can see your own drone's signal, the enemy's jammers, their communication radios, and their drone control links. This is electronic warfare intelligence: knowing what frequencies the enemy uses tells you how to avoid them, how to jam them back, and when they are transmitting (which means they are active). An RTL-SDR dongle costs €25 and plugs into a laptop. It cannot transmit — only listen. But listening is the first step in electronic warfare.

Equipment — Spectrum Analysis

SDR SPECTRUM ANALYSIS KIT

Receiver
RTL-SDR Blog V4 (RTL2832U + R828D) — €25
Range
24 MHz – 1.766 GHz (covers all drone frequencies)
Bandwidth
Up to 3.2 MHz instantaneous
Software
SDR# (Windows) or GQRX (Linux) — both free
Antenna
Included telescopic antenna or external directional (€15)
Total cost
€25–40 (receiver + optional antenna)

What You Can See

Plug the RTL-SDR into a laptop USB port. Open GQRX. Set center frequency to 300 MHz (mil-band) (ELRS band). You see a waterfall display showing all radio activity in that band. Your own MANET radio module appears as a hopping signal. Enemy jammers appear as wide, constant noise. Enemy drone control links appear as narrow signals at their operating frequency. By monitoring the spectrum, you build a picture of the enemy's electronic order of battle — which frequencies they use, when they transmit, and from which direction (using a directional antenna).

PLAIN LANGUAGE: SEEING RADIO SIGNALS
An SDR is like putting on glasses that let you see invisible radio waves. You plug a €25 USB dongle into your laptop and suddenly you can see every radio signal in the area — your own drone, the enemy's jammers, their walkie-talkies, their drone controllers. You cannot transmit (only listen), so the enemy cannot detect you doing this. It is the cheapest and most valuable piece of electronic warfare equipment you can carry: €25 to see the invisible battlefield.

Practical Exercises (Verified)

01
FIND YOUR OWN SIGNAL
Open GQRX. Set frequency to your MANET radio's band. Transmit. See the signal appear as a bright line on the waterfall. This proves your SDR is working and you can identify known signals.
02
IDENTIFY INTERFERENCE
Tune to 300 MHz band. Look for signals you do NOT recognize. Record center frequency, bandwidth, and timing pattern. This is how you map the enemy's electronic order of battle.
03
MEASURE JAMMER STRENGTH
If a wideband noise source appears (jammer), note: center frequency, bandwidth (how wide), power level relative to your signal. If jammer power exceeds your signal by 20+ dB, your link will fail in that band. Solution: shift to a different frequency or increase altitude (for LOS improvement).

Implementation

# SDR Spectrum Analysis — Detect Enemy Jammers
# pip install numpy
import numpy as np
import subprocess

def scan_spectrum(freq_start_mhz=140, freq_end_mhz=600, bin_size_khz=100):
    """Scan spectrum using RTL-SDR and detect anomalies."""
    # rtl_power: sweep spectrum and output CSV
    cmd = f"rtl_power -f {freq_start_mhz}M:{freq_end_mhz}M:{bin_size_khz}k -1 scan.csv"
    subprocess.run(cmd.split())
    
    # Parse results
    data = np.loadtxt("scan.csv", delimiter=",", usecols=[2,6])
    freqs = data[:, 0]
    powers = data[:, 1]
    
    # Detect jammers: power > noise floor + 20dB
    noise_floor = np.median(powers)
    threshold = noise_floor + 20
    jammer_bins = np.where(powers > threshold)[0]
    
    jammers = []
    for idx in jammer_bins:
        jammers.append({
            "freq_mhz": freqs[idx],
            "power_dbm": powers[idx],
            "type": "barrage" if len(jammer_bins) > 100 else "spot"
        })
    
    return jammers, noise_floor

# Deploy on Lisa 26 node with RTL-SDR (€25)
# Two SDR stations 500m apart → triangulate jammer position ±50m

Related Chapters