-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfreqsets.h
25 lines (20 loc) · 928 Bytes
/
freqsets.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* wspr freqs
1838100, 3570100, 5288700, 5366200 , 7040100, 10140200, 14097100, 18106100, 21096100, 24926100, 28126100
*/
typedef struct {
uint32_t nbfr;
uint32_t centerfr;
int32_t fr[4];
uint32_t ndi[4];
} wspr_fr_set_t;
#define NBFRSET 8
const wspr_fr_set_t wsprfrsets[NBFRSET]={
{ 4, 2303700, { 1838100, 3570100, 5288700, 5366200, } , { 6250, 25000, 4000, 320, }},
{ 4, 4803700, { 3570100, 5288700, 5366200, 7040100, } , { 6250, 4000, 320, 50000, }},
{ 4, 6202600, { 3570100, 5366200, 7040100, 10140200, } , { 8000, 50000, 1600, 6250, }},
{ 3, 11034600, { 7040100, 10140200, 14097100, } , { 40000, 6250, 320, }},
{ 3, 14138600, { 10140200, 14097100, 18106100, } , { 6250, 40000, 8000, }},
{ 3, 17481100, { 14097100, 18106100, 21096100, } , { 1250, 32, 4000, }},
{ 3, 21846100, { 18106100, 21096100, 24926100, } , { 1000, 80, 250, }},
{ 3, 24246100, { 21096100, 24926100, 28126100, } , { 400, 250, 250, }}
};