Fix for LimeSDR

This commit is contained in:
Wouter Bokslag
2025-12-30 20:13:33 +01:00
parent fb2edb2f94
commit f3fff334cd
2 changed files with 2 additions and 2 deletions

View File

@@ -21,7 +21,7 @@ impl SoapySdrIoCfg {
if self.iocfg_usrpb2xx.is_some() {
"uhd"
} else if self.iocfg_limesdr.is_some() {
"limesdr"
"lime"
} else if self.iocfg_sxceiver.is_some() {
"sx"
} else {

View File

@@ -152,7 +152,7 @@ impl SoapyIo {
];
}
}
"limesdr" => {
"lime" => {
if let Some(cfg) = &soapy_cfg.io_cfg.iocfg_limesdr {
// Override antenna settings if specified
if let Some(ref ant) = cfg.rx_ant {