Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Band list. #15

Open
Luciano77ARG opened this issue Aug 12, 2024 · 1 comment
Open

Band list. #15

Luciano77ARG opened this issue Aug 12, 2024 · 1 comment

Comments

@Luciano77ARG
Copy link

Luciano77ARG commented Aug 12, 2024

Vincent I want to thank you for the excellent work you did with the swling.ru firmware!
I'm asking you about the list of bands that the originals firmware had with this format:

Band band[] = {
{FM_BAND_TYPE, 8700, 10800, 9830, 3, 0, "FM"}, // FM 87-108 MHZ; default 98.3; step 3; bw auto
{LW_BAND_TYPE, 100, 520, 300, 1, 4, "LW"}, // LW
{MW_BAND_TYPE, 520, 1720, 810, 3, 5, "MW"}, // AM/MW
{SW_BAND_TYPE, 1700, 2000, 1850, 0, 5, "160M"}, // 160 meters HAM
{SW_BAND_TYPE, 2000, 3200, 2250, 1, 4, "120SW"}, // 120 meters BC
{SW_BAND_TYPE, 3200, 3500, 3300, 1, 4, "90SW"}, // 90 meters BC

.....

I would like to change the limits of each band.
The name of each band is interesting, for example 40M or 49SW

Thanks!!
Luciano LU1DLP

@rogerclarkmelbourne
Copy link

Try looking here

Band g_bandList[] =
{
/* LW */ { LW_LIMIT_LOW, 520, 300, 0, 4 },
/* MW */ { 520, 1710, 1476, 3, 4 },
/* SW */ { SW_LIMIT_LOW, SW_LIMIT_HIGH, SW_LIMIT_LOW, 0, 4 },
/* FM */ { 6400, 10800, 8400, 1, 0 },
};
uint16_t SWSubBands[] =
{
SW_LIMIT_LOW, // 160 Meter
3500, // 80 Meter
4500,
5600,
6800, // 40 Meter
7200, // 41 Meter
8500,
10000, // 30 Meter
11200,
13400,
14000, // 20 Meter
15000,
17200,
18000, // 17 Meter
21000, // 15 Meter
21400, // 13 Meter
24890, // 12 Meter
CB_LIMIT_LOW, // CB Band (11 Meter)
CB_LIMIT_HIGH // 10 Meter
};

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants