mirror of
				https://github.com/AlexandreRouma/SDRPlusPlus.git
				synced 2025-10-30 00:18:10 +01:00 
			
		
		
		
	fix bad plutosdr bandwidth selection at very high samplerates
This commit is contained in:
		| @@ -285,7 +285,7 @@ private: | ||||
|             iio_channel_attr_write_longlong(rxChan, "rf_bandwidth", bw); | ||||
|         } | ||||
|         else { | ||||
|             iio_channel_attr_write_longlong(rxChan, "rf_bandwidth", sampleRate); | ||||
|             iio_channel_attr_write_longlong(rxChan, "rf_bandwidth", std::min<int>(sampleRate, 52000000)); | ||||
|         } | ||||
|     } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user