Freqman 40k fix (#987)

* removing space which would prevent correct reading of 'bw=40k,' in freqman files

* setting correct 4 char long size in WFM bandwidth options

---------

Co-authored-by: GullCode <gullradriel@hotmail.com>
This commit is contained in:
gullradriel 2023-05-14 09:16:01 +02:00 committed by GitHub
parent 415d8cfa54
commit 2a4c49c38c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -100,7 +100,7 @@ private:
};
OptionsField options_config {
{ 3 * 8, 0 * 16 },
3,
4,
{ // using common messages from freqman.cpp
}
};

View File

@ -48,7 +48,7 @@ options_t freqman_entry_bandwidths[ 4 ] = {
{ //WFM
{ "200k" , 0 },
{ "180k" , 1 },
{ " 40k" , 2 },
{ "40k" , 2 },
}
};