1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-12-23 01:55:48 -05:00

ChirpChat: added 488 Hz bandwidth

This commit is contained in:
f4exb 2024-04-06 10:49:40 +02:00
parent cd7f0c16c4
commit 7c3bf5edcd
2 changed files with 4 additions and 2 deletions

View File

@ -26,6 +26,7 @@
const int ChirpChatDemodSettings::bandwidths[] = { const int ChirpChatDemodSettings::bandwidths[] = {
325, // 384k / 1024 325, // 384k / 1024
488, // 500k / 1024
750, // 384k / 512 750, // 384k / 512
1500, // 384k / 256 1500, // 384k / 256
2604, // 333k / 128 2604, // 333k / 128
@ -53,7 +54,7 @@ const int ChirpChatDemodSettings::bandwidths[] = {
400000, // 400k / 1 400000, // 400k / 1
500000 // 500k / 1 500000 // 500k / 1
}; };
const int ChirpChatDemodSettings::nbBandwidths = 3*8 + 3; const int ChirpChatDemodSettings::nbBandwidths = 3*8 + 4;
const int ChirpChatDemodSettings::oversampling = 2; const int ChirpChatDemodSettings::oversampling = 2;
ChirpChatDemodSettings::ChirpChatDemodSettings() : ChirpChatDemodSettings::ChirpChatDemodSettings() :

View File

@ -28,6 +28,7 @@
const int ChirpChatModSettings::bandwidths[] = { const int ChirpChatModSettings::bandwidths[] = {
325, // 384k / 1024 325, // 384k / 1024
488, // 500k / 1024
750, // 384k / 512 750, // 384k / 512
1500, // 384k / 256 1500, // 384k / 256
2604, // 333k / 128 2604, // 333k / 128
@ -55,7 +56,7 @@ const int ChirpChatModSettings::bandwidths[] = {
400000, // 400k / 1 400000, // 400k / 1
500000 // 500k / 1 500000 // 500k / 1
}; };
const int ChirpChatModSettings::nbBandwidths = 3*8 + 3; const int ChirpChatModSettings::nbBandwidths = 3*8 + 4;
const int ChirpChatModSettings::oversampling = 4; const int ChirpChatModSettings::oversampling = 4;
ChirpChatModSettings::ChirpChatModSettings() : ChirpChatModSettings::ChirpChatModSettings() :