From 0137a06cfe043a8925778d3d36d8801a75090693 Mon Sep 17 00:00:00 2001 From: James Smith Date: Wed, 8 Jul 2026 14:53:05 +0100 Subject: [PATCH] fix: add USRP, BladeRF, and HydraSDR to hardware type dropdown Backend support for these SDR types (SDRFactory/SDRType) was added in prior commits, but the frontend hardware type selector was never updated, so detected devices of these types could never be selected and always showed as idle. --- templates/index.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/templates/index.html b/templates/index.html index c34f5d0..77cceaf 100644 --- a/templates/index.html +++ b/templates/index.html @@ -660,6 +660,9 @@ + + +
@@ -6224,7 +6227,10 @@ 'sdrplay': { name: 'SDRplay', freq_min: 0.001, freq_max: 2000, gain_min: 0, gain_max: 59 }, 'limesdr': { name: 'LimeSDR', freq_min: 0.1, freq_max: 3800, gain_min: 0, gain_max: 73 }, 'hackrf': { name: 'HackRF', freq_min: 1, freq_max: 6000, gain_min: 0, gain_max: 102 }, // LNA(40)+VGA(62) - 'airspy': { name: 'Airspy', freq_min: 24, freq_max: 1800, gain_min: 0, gain_max: 45 } // LNA(15)+Mix(15)+VGA(15) + 'airspy': { name: 'Airspy', freq_min: 24, freq_max: 1800, gain_min: 0, gain_max: 45 }, // LNA(15)+Mix(15)+VGA(15) + 'usrp': { name: 'USRP', freq_min: 1, freq_max: 6000, gain_min: 0, gain_max: 76 }, + 'bladerf': { name: 'BladeRF', freq_min: 47, freq_max: 6000, gain_min: 0, gain_max: 66 }, + 'hydrasdr': { name: 'HydraSDR RFOne', freq_min: 24, freq_max: 1800, gain_min: 0, gain_max: 21 } }; // Current device list with SDR type info