Commit c68549d8 authored by Cedric Roux's avatar Cedric Roux

modification of get_samplerate_and_bw(): add break where needed

parent 6cc01f7c
...@@ -449,6 +449,7 @@ void get_samplerate_and_bw(int mu, ...@@ -449,6 +449,7 @@ void get_samplerate_and_bw(int mu,
*tx_bw = 50e6; *tx_bw = 50e6;
*rx_bw = 50e6; *rx_bw = 50e6;
} }
break;
case 216: case 216:
if (threequarter_fs) { if (threequarter_fs) {
*sample_rate=46.08e6; *sample_rate=46.08e6;
...@@ -474,6 +475,7 @@ void get_samplerate_and_bw(int mu, ...@@ -474,6 +475,7 @@ void get_samplerate_and_bw(int mu,
*tx_bw = 20e6; *tx_bw = 20e6;
*rx_bw = 20e6; *rx_bw = 20e6;
} }
break;
case 106: case 106:
if (threequarter_fs) { if (threequarter_fs) {
*sample_rate=23.04e6; *sample_rate=23.04e6;
...@@ -501,6 +503,7 @@ void get_samplerate_and_bw(int mu, ...@@ -501,6 +503,7 @@ void get_samplerate_and_bw(int mu,
*tx_bw = 10e6; *tx_bw = 10e6;
*rx_bw = 10e6; *rx_bw = 10e6;
} }
break;
case 25: case 25:
if (threequarter_fs) { if (threequarter_fs) {
*sample_rate=5.76e6; *sample_rate=5.76e6;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment