SoapyBladeRF was updated to 0.4.2 and is available on Debian 13, but SoapySDR is still 0.8.1, meaning that SOAPY_SDR_USER_FLAG0 & SOAPY_SDR_USER_FLAG1 are not defined, and as a result BLADERF_META_FLAG_RX_HW_MINIEXP1 & BLADERF_META_FLAG_RX_HW_MINIEXP2 are not surfaced:
#if defined(SOAPY_SDR_USER_FLAG0) and defined(SOAPY_SDR_USER_FLAG1)
if ((md.status & BLADERF_META_FLAG_RX_HW_MINIEXP1) != 0) flags |= SOAPY_SDR_USER_FLAG0;
if ((md.status & BLADERF_META_FLAG_RX_HW_MINIEXP2) != 0) flags |= SOAPY_SDR_USER_FLAG1;
#endif
https://github.com/pothosware/SoapyBladeRF/blob/3d36e4209e32f3823573e6cdc2093575ec398d44/bladeRF_Streaming.cpp#L395
We would need a new SoapySDR version, that contains those new flags (added in e622fb8), and once that updated package is available, the SoapyBladeRF package will need to be recompiled (meaning probably publish a new version?).
SoapyBladeRF was updated to 0.4.2 and is available on Debian 13, but SoapySDR is still 0.8.1, meaning that
SOAPY_SDR_USER_FLAG0&SOAPY_SDR_USER_FLAG1are not defined, and as a resultBLADERF_META_FLAG_RX_HW_MINIEXP1&BLADERF_META_FLAG_RX_HW_MINIEXP2are not surfaced:https://github.com/pothosware/SoapyBladeRF/blob/3d36e4209e32f3823573e6cdc2093575ec398d44/bladeRF_Streaming.cpp#L395
We would need a new SoapySDR version, that contains those new flags (added in e622fb8), and once that updated package is available, the SoapyBladeRF package will need to be recompiled (meaning probably publish a new version?).