mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2025-09-06 07:07:48 -04:00
Channelizer tweaks
This commit is contained in:
parent
1eb84d6fa7
commit
f91a508da6
@ -35,6 +35,6 @@ const char filePathSeparator =
|
|||||||
|
|
||||||
#define DEFAULT_WATERFALL_LPS 30
|
#define DEFAULT_WATERFALL_LPS 30
|
||||||
|
|
||||||
#define CHANNELIZER_RATE_MAX 400000
|
#define CHANNELIZER_RATE_MAX 500000
|
||||||
|
|
||||||
|
|
||||||
|
@ -326,13 +326,10 @@ int SDRThread::getOptimalChannelCount(long long sampleRate) {
|
|||||||
optimal_count--;
|
optimal_count--;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (optimal_count < 4) {
|
if (optimal_count < 2) {
|
||||||
optimal_count = 4;
|
optimal_count = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
// if (optimal_count > 16) {
|
|
||||||
// optimal_count = 16;
|
|
||||||
// }
|
|
||||||
return optimal_count;
|
return optimal_count;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user