ChirpChat: added 488 Hz bandwidth

pull/2055/head
f4exb 2024-04-06 10:49:40 +02:00
rodzic cd7f0c16c4
commit 7c3bf5edcd
2 zmienionych plików z 4 dodań i 2 usunięć

Wyświetl plik

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

Wyświetl plik

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