diff --git a/lib/src/phy/rf/rf_soapy_imp.c b/lib/src/phy/rf/rf_soapy_imp.c index dac04c128..94e85e738 100644 --- a/lib/src/phy/rf/rf_soapy_imp.c +++ b/lib/src/phy/rf/rf_soapy_imp.c @@ -302,7 +302,7 @@ int rf_soapy_open_multi(char* args, void** h, uint32_t num_requested_channels) } // With the Lime we are better off using LTE sample rates - if (strcmp(devname, "Lime") && srsran_symbol_size_is_standard() == false) { + if (strstr(devname, "Lime") != NULL && srsran_symbol_size_is_standard() == false) { printf("\033[0;31mConsider using LTE sample rates for better RF performance.\nEither compile with " "\'-DUSE_LTE_RATES=True\' or start srsENB or srsUE with \'--expert.lte_sample_rates=true\'\033[0m\n"); }