Page 1 of 1

Help with selecting appropriate sample rate and bandwidth

Posted: Tue Aug 06, 2019 10:54 am
by tich
I have created a Common Lisp library binding for libbladeRF. I would like to implement an FM receiver for a signal with a frequency of 863 MHz. What values do I have to set for the Sample Rate and Bandwidth. Also when I call the function bladerf_sync_rx() what value is a reasonable value for the parameter num_samples?

Re: Help with selecting appropriate sample rate and bandwidth

Posted: Tue Aug 20, 2019 3:05 am
by robert.ghilduta
Awesome news on the Common List bindings! The sample rate and bandwidth can be set relatively close in value. Generally the sample rate should be higher than the bandwidth. It really depends on how you want to demodulate the FM signal, you can select a multiple of 200kHz as the sampling rate so it can be easier to decimate down to 200kHz or the audio sampling rate.

A good num_samples depends on a number of variables (buffer size, sampling rate), however 2048 samples is likely a good starting point.