Fixed typos

This commit is contained in:
GullCode 2022-11-20 18:29:20 +01:00
parent 5f62926af3
commit 7f6aebbe53
2 changed files with 4 additions and 4 deletions

View File

@ -529,8 +529,8 @@ size_t ScannerView::change_mode(uint8_t new_mod) { //Before this, do a scan_thre
receiver_model.set_sampling_rate(3072000); receiver_model.set_baseband_bandwidth(1750000);
break;
case AM:
bw.emplace_back("DSB+9k" , 0 );
bw.emplace_back("DSB+6k" , 1 );
bw.emplace_back("DSB 9k" , 0 );
bw.emplace_back("DSB 6k" , 1 );
bw.emplace_back("USB+3k" , 2 );
bw.emplace_back("LSB-3k" , 3 );
bw.emplace_back("CW " , 4 );

View File

@ -34,8 +34,8 @@ options_t freqman_entry_modulations = {
options_t freqman_entry_bandwidths[ 4 ] = {
{ //AM
{ "DSB+9k" , 0 },
{ "DSB+6k" , 1 },
{ "DSB 9k" , 0 },
{ "DSB 6k" , 1 },
{ "USB+3k" , 2 },
{ "LSB-3k" , 3 },
{ "CW" , 4 }