Changed use squelch in to use squelch
`When disabled, squelch will be switched off and can't be set.
This commit is contained in:
+7
-7
@@ -94,7 +94,7 @@ bool screensavertriggered = false;
|
|||||||
bool seek;
|
bool seek;
|
||||||
bool setupmode;
|
bool setupmode;
|
||||||
byte showrdserrors;
|
byte showrdserrors;
|
||||||
bool showsquelch;
|
bool usesquelch;
|
||||||
bool softmuteam;
|
bool softmuteam;
|
||||||
bool softmutefm;
|
bool softmutefm;
|
||||||
bool SQ;
|
bool SQ;
|
||||||
@@ -420,7 +420,7 @@ void setup() {
|
|||||||
frequency_MW = EEPROM.readUInt(EE_UINT16_FREQUENCY_MW);
|
frequency_MW = EEPROM.readUInt(EE_UINT16_FREQUENCY_MW);
|
||||||
frequency_SW = EEPROM.readUInt(EE_UINT16_FREQUENCY_SW);
|
frequency_SW = EEPROM.readUInt(EE_UINT16_FREQUENCY_SW);
|
||||||
XDRGTK_key = EEPROM.readString(EE_STRING_XDRGTK_KEY);
|
XDRGTK_key = EEPROM.readString(EE_STRING_XDRGTK_KEY);
|
||||||
showsquelch = EEPROM.readByte(EE_BYTE_SHOWSQUELCH);
|
usesquelch = EEPROM.readByte(EE_BYTE_USESQUELCH);
|
||||||
showmodulation = EEPROM.readByte(EE_BYTE_SHOWMODULATION);
|
showmodulation = EEPROM.readByte(EE_BYTE_SHOWMODULATION);
|
||||||
amnb = EEPROM.readByte(EE_BYTE_AM_NB);
|
amnb = EEPROM.readByte(EE_BYTE_AM_NB);
|
||||||
fmnb = EEPROM.readByte(EE_BYTE_FM_NB);
|
fmnb = EEPROM.readByte(EE_BYTE_FM_NB);
|
||||||
@@ -1892,7 +1892,7 @@ void ModeButtonPress() {
|
|||||||
EEPROM.writeByte(EE_BYTE_SHOWSWMIBAND, showSWMIBand);
|
EEPROM.writeByte(EE_BYTE_SHOWSWMIBAND, showSWMIBand);
|
||||||
EEPROM.writeByte(EE_BYTE_RDS_FILTER, radio.rds.filter);
|
EEPROM.writeByte(EE_BYTE_RDS_FILTER, radio.rds.filter);
|
||||||
EEPROM.writeByte(EE_BYTE_RDS_PIERRORS, radio.rds.pierrors);
|
EEPROM.writeByte(EE_BYTE_RDS_PIERRORS, radio.rds.pierrors);
|
||||||
EEPROM.writeByte(EE_BYTE_SHOWSQUELCH, showsquelch);
|
EEPROM.writeByte(EE_BYTE_USESQUELCH, usesquelch);
|
||||||
EEPROM.writeByte(EE_BYTE_SHOWMODULATION, showmodulation);
|
EEPROM.writeByte(EE_BYTE_SHOWMODULATION, showmodulation);
|
||||||
EEPROM.writeByte(EE_BYTE_AM_NB, amnb);
|
EEPROM.writeByte(EE_BYTE_AM_NB, amnb);
|
||||||
EEPROM.writeByte(EE_BYTE_FM_NB, fmnb);
|
EEPROM.writeByte(EE_BYTE_FM_NB, fmnb);
|
||||||
@@ -2729,14 +2729,14 @@ void ShowModLevel() {
|
|||||||
|
|
||||||
void doSquelch() {
|
void doSquelch() {
|
||||||
if (!XDRGTKUSB && !XDRGTKTCP) {
|
if (!XDRGTKUSB && !XDRGTKTCP) {
|
||||||
Squelch = analogRead(PIN_POT) / 4 - 100;
|
if (usesquelch) Squelch = analogRead(PIN_POT) / 4 - 100; else Squelch = 0;
|
||||||
if (unit == 0) SquelchShow = Squelch / 10;
|
if (unit == 0) SquelchShow = Squelch / 10;
|
||||||
if (unit == 1) SquelchShow = ((Squelch * 100) + 10875) / 1000;
|
if (unit == 1) SquelchShow = ((Squelch * 100) + 10875) / 1000;
|
||||||
if (unit == 2) SquelchShow = round((float(Squelch) / 10.0 - 10.0 * log10(75) - 90.0) * 10.0) / 10;
|
if (unit == 2) SquelchShow = round((float(Squelch) / 10.0 - 10.0 * log10(75) - 90.0) * 10.0) / 10;
|
||||||
|
|
||||||
if (Squelch > 920) Squelch = 920;
|
if (Squelch > 920) Squelch = 920;
|
||||||
|
|
||||||
if (!screenmute && showsquelch && !advancedRDS && !afscreen) {
|
if (!screenmute && usesquelch && !advancedRDS && !afscreen) {
|
||||||
if (!menu && (Squelch > Squelchold + 2 || Squelch < Squelchold - 2)) {
|
if (!menu && (Squelch > Squelchold + 2 || Squelch < Squelchold - 2)) {
|
||||||
SquelchSprite.fillSprite(BackgroundColor);
|
SquelchSprite.fillSprite(BackgroundColor);
|
||||||
SquelchSprite.setTextColor(PrimaryColor, PrimaryColorSmooth, false);
|
SquelchSprite.setTextColor(PrimaryColor, PrimaryColorSmooth, false);
|
||||||
@@ -2778,7 +2778,7 @@ void doSquelch() {
|
|||||||
SQ = true;
|
SQ = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!screenmute && showsquelch && !advancedRDS && !afscreen) {
|
if (!screenmute && usesquelch && !advancedRDS && !afscreen) {
|
||||||
if (Squelch != Squelchold) {
|
if (Squelch != Squelchold) {
|
||||||
SquelchSprite.fillSprite(BackgroundColor);
|
SquelchSprite.fillSprite(BackgroundColor);
|
||||||
SquelchSprite.setTextColor(PrimaryColor, PrimaryColorSmooth, false);
|
SquelchSprite.setTextColor(PrimaryColor, PrimaryColorSmooth, false);
|
||||||
@@ -3490,7 +3490,7 @@ void DefaultSettings(byte userhardwaremodel) {
|
|||||||
if (userhardwaremodel == BASE_ILI9341) EEPROM.writeUInt(EE_UINT16_FREQUENCY_MW, 540); else EEPROM.writeUInt(EE_UINT16_FREQUENCY_MW, 639);
|
if (userhardwaremodel == BASE_ILI9341) EEPROM.writeUInt(EE_UINT16_FREQUENCY_MW, 540); else EEPROM.writeUInt(EE_UINT16_FREQUENCY_MW, 639);
|
||||||
if (userhardwaremodel == BASE_ILI9341) EEPROM.writeUInt(EE_UINT16_FREQUENCY_SW, 1800); else EEPROM.writeUInt(EE_UINT16_FREQUENCY_SW, 5000);
|
if (userhardwaremodel == BASE_ILI9341) EEPROM.writeUInt(EE_UINT16_FREQUENCY_SW, 1800); else EEPROM.writeUInt(EE_UINT16_FREQUENCY_SW, 5000);
|
||||||
EEPROM.writeString(EE_STRING_XDRGTK_KEY, "password");
|
EEPROM.writeString(EE_STRING_XDRGTK_KEY, "password");
|
||||||
if (userhardwaremodel == BASE_ILI9341) EEPROM.writeByte(EE_BYTE_SHOWSQUELCH, 1); else EEPROM.writeByte(EE_BYTE_SHOWSQUELCH, 0);
|
if (userhardwaremodel == BASE_ILI9341) EEPROM.writeByte(EE_BYTE_USESQUELCH, 1); else EEPROM.writeByte(EE_BYTE_USESQUELCH, 0);
|
||||||
EEPROM.writeByte(EE_BYTE_SHOWMODULATION, 1);
|
EEPROM.writeByte(EE_BYTE_SHOWMODULATION, 1);
|
||||||
EEPROM.writeByte(EE_BYTE_AM_NB, 0);
|
EEPROM.writeByte(EE_BYTE_AM_NB, 0);
|
||||||
EEPROM.writeByte(EE_BYTE_FM_NB, 0);
|
EEPROM.writeByte(EE_BYTE_FM_NB, 0);
|
||||||
|
|||||||
+1
-1
@@ -155,7 +155,7 @@
|
|||||||
#define EE_BYTE_SHOWSWMIBAND 57
|
#define EE_BYTE_SHOWSWMIBAND 57
|
||||||
#define EE_BYTE_RDS_FILTER 58
|
#define EE_BYTE_RDS_FILTER 58
|
||||||
#define EE_BYTE_RDS_PIERRORS 59
|
#define EE_BYTE_RDS_PIERRORS 59
|
||||||
#define EE_BYTE_SHOWSQUELCH 60
|
#define EE_BYTE_USESQUELCH 60
|
||||||
#define EE_BYTE_SHOWMODULATION 61
|
#define EE_BYTE_SHOWMODULATION 61
|
||||||
#define EE_BYTE_AM_NB 62
|
#define EE_BYTE_AM_NB 62
|
||||||
#define EE_BYTE_FM_NB 63
|
#define EE_BYTE_FM_NB 63
|
||||||
|
|||||||
+9
-9
@@ -440,7 +440,7 @@ void BuildMenu() {
|
|||||||
tftPrint(1, myLanguage[language][0], 310, ITEM1 + 6, PrimaryColor, PrimaryColorSmooth, 16);
|
tftPrint(1, myLanguage[language][0], 310, ITEM1 + 6, PrimaryColor, PrimaryColorSmooth, 16);
|
||||||
tftPrint(1, "%", 310, ITEM2 + 6, ActiveColor, ActiveColorSmooth, 16);
|
tftPrint(1, "%", 310, ITEM2 + 6, ActiveColor, ActiveColorSmooth, 16);
|
||||||
tftPrint(1, String(ContrastSet, DEC), 270, ITEM2 + 6, PrimaryColor, PrimaryColorSmooth, 16);
|
tftPrint(1, String(ContrastSet, DEC), 270, ITEM2 + 6, PrimaryColor, PrimaryColorSmooth, 16);
|
||||||
if (showsquelch) tftPrint(1, myLanguage[language][42], 310, ITEM3 + 6, PrimaryColor, PrimaryColorSmooth, 16); else tftPrint(1, myLanguage[language][30], 310, ITEM3 + 6, PrimaryColor, PrimaryColorSmooth, 16);
|
if (usesquelch) tftPrint(1, myLanguage[language][42], 310, ITEM3 + 6, PrimaryColor, PrimaryColorSmooth, 16); else tftPrint(1, myLanguage[language][30], 310, ITEM3 + 6, PrimaryColor, PrimaryColorSmooth, 16);
|
||||||
if (showmodulation) tftPrint(1, myLanguage[language][42], 310, ITEM4 + 6, PrimaryColor, PrimaryColorSmooth, 16); else tftPrint(1, myLanguage[language][30], 310, ITEM4 + 6, PrimaryColor, PrimaryColorSmooth, 16);
|
if (showmodulation) tftPrint(1, myLanguage[language][42], 310, ITEM4 + 6, PrimaryColor, PrimaryColorSmooth, 16); else tftPrint(1, myLanguage[language][30], 310, ITEM4 + 6, PrimaryColor, PrimaryColorSmooth, 16);
|
||||||
tftPrint(1, CurrentThemeString, 310, ITEM5 + 6, PrimaryColor, PrimaryColorSmooth, 16);
|
tftPrint(1, CurrentThemeString, 310, ITEM5 + 6, PrimaryColor, PrimaryColorSmooth, 16);
|
||||||
if (screensaverset) tftPrint(1, myLanguage[language][92], 310, ITEM6 + 6, ActiveColor, ActiveColorSmooth, 16); else tftPrint(1, myLanguage[language][30], 310, ITEM6 + 6, PrimaryColor, PrimaryColorSmooth, 16);
|
if (screensaverset) tftPrint(1, myLanguage[language][92], 310, ITEM6 + 6, ActiveColor, ActiveColorSmooth, 16); else tftPrint(1, myLanguage[language][30], 310, ITEM6 + 6, PrimaryColor, PrimaryColorSmooth, 16);
|
||||||
@@ -761,7 +761,7 @@ void BuildDisplay() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (showsquelch) tftPrint(-1, "SQ:", 212, 145, ActiveColor, ActiveColorSmooth, 16);
|
if (usesquelch) tftPrint(-1, "SQ:", 212, 145, ActiveColor, ActiveColorSmooth, 16);
|
||||||
tftPrint(1, "C/N", 270, 163, ActiveColor, ActiveColorSmooth, 16);
|
tftPrint(1, "C/N", 270, 163, ActiveColor, ActiveColorSmooth, 16);
|
||||||
tftPrint(-1, "dB", 300, 163, ActiveColor, ActiveColorSmooth, 16);
|
tftPrint(-1, "dB", 300, 163, ActiveColor, ActiveColorSmooth, 16);
|
||||||
if (region == REGION_EU) tftPrint(-1, "PI:", 212, 193, ActiveColor, ActiveColorSmooth, 16);
|
if (region == REGION_EU) tftPrint(-1, "PI:", 212, 193, ActiveColor, ActiveColorSmooth, 16);
|
||||||
@@ -1011,9 +1011,9 @@ void MenuUp() {
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case ITEM3:
|
case ITEM3:
|
||||||
if (showsquelch) tftPrint(0, myLanguage[language][42], 155, 118, BackgroundColor, BackgroundColor, 28); else tftPrint(0, myLanguage[language][30], 155, 118, BackgroundColor, BackgroundColor, 28);
|
if (usesquelch) tftPrint(0, myLanguage[language][42], 155, 118, BackgroundColor, BackgroundColor, 28); else tftPrint(0, myLanguage[language][30], 155, 118, BackgroundColor, BackgroundColor, 28);
|
||||||
if (showsquelch) showsquelch = false; else showsquelch = true;
|
if (usesquelch) usesquelch = false; else usesquelch = true;
|
||||||
if (showsquelch) tftPrint(0, myLanguage[language][42], 155, 118, PrimaryColor, PrimaryColorSmooth, 28); else tftPrint(0, myLanguage[language][30], 155, 118, PrimaryColor, PrimaryColorSmooth, 28);
|
if (usesquelch) tftPrint(0, myLanguage[language][42], 155, 118, PrimaryColor, PrimaryColorSmooth, 28); else tftPrint(0, myLanguage[language][30], 155, 118, PrimaryColor, PrimaryColorSmooth, 28);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ITEM4:
|
case ITEM4:
|
||||||
@@ -1588,9 +1588,9 @@ void MenuDown() {
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case ITEM3:
|
case ITEM3:
|
||||||
if (showsquelch) tftPrint(0, myLanguage[language][42], 155, 118, BackgroundColor, BackgroundColor, 28); else tftPrint(0, myLanguage[language][30], 155, 118, BackgroundColor, BackgroundColor, 28);
|
if (usesquelch) tftPrint(0, myLanguage[language][42], 155, 118, BackgroundColor, BackgroundColor, 28); else tftPrint(0, myLanguage[language][30], 155, 118, BackgroundColor, BackgroundColor, 28);
|
||||||
if (showsquelch) showsquelch = false; else showsquelch = true;
|
if (usesquelch) usesquelch = false; else usesquelch = true;
|
||||||
if (showsquelch) tftPrint(0, myLanguage[language][42], 155, 118, PrimaryColor, PrimaryColorSmooth, 28); else tftPrint(0, myLanguage[language][30], 155, 118, PrimaryColor, PrimaryColorSmooth, 28);
|
if (usesquelch) tftPrint(0, myLanguage[language][42], 155, 118, PrimaryColor, PrimaryColorSmooth, 28); else tftPrint(0, myLanguage[language][30], 155, 118, PrimaryColor, PrimaryColorSmooth, 28);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ITEM4:
|
case ITEM4:
|
||||||
@@ -2189,7 +2189,7 @@ void DoMenu() {
|
|||||||
|
|
||||||
case ITEM3:
|
case ITEM3:
|
||||||
Infoboxprint(myLanguage[language][62]);
|
Infoboxprint(myLanguage[language][62]);
|
||||||
if (showsquelch) tftPrint(0, myLanguage[language][42], 155, 118, PrimaryColor, PrimaryColorSmooth, 28); else tftPrint(0, myLanguage[language][30], 155, 118, PrimaryColor, PrimaryColorSmooth, 28);
|
if (usesquelch) tftPrint(0, myLanguage[language][42], 155, 118, PrimaryColor, PrimaryColorSmooth, 28); else tftPrint(0, myLanguage[language][30], 155, 118, PrimaryColor, PrimaryColorSmooth, 28);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ITEM4:
|
case ITEM4:
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ extern bool rdsreset;
|
|||||||
extern bool RDSstatus;
|
extern bool RDSstatus;
|
||||||
extern bool RDSstatusold;
|
extern bool RDSstatusold;
|
||||||
extern bool rdsstereoold;
|
extern bool rdsstereoold;
|
||||||
extern bool showsquelch;
|
extern bool usesquelch;
|
||||||
extern bool softmuteam;
|
extern bool softmuteam;
|
||||||
extern bool softmutefm;
|
extern bool softmutefm;
|
||||||
extern bool Stereostatusold;
|
extern bool Stereostatusold;
|
||||||
|
|||||||
+19
-19
@@ -68,7 +68,7 @@ static const char* const myLanguage[18][210] = {
|
|||||||
"Show SW wavelength", // 59
|
"Show SW wavelength", // 59
|
||||||
"RDS filter", // 60
|
"RDS filter", // 60
|
||||||
"Show PI errors", // 61
|
"Show PI errors", // 61
|
||||||
"Show squelch", // 62
|
"Use squelch", // 62
|
||||||
"Modulation meter", // 63
|
"Modulation meter", // 63
|
||||||
"AM Noise blanker", // 64
|
"AM Noise blanker", // 64
|
||||||
"FM Noise blanker", // 65
|
"FM Noise blanker", // 65
|
||||||
@@ -280,7 +280,7 @@ static const char* const myLanguage[18][210] = {
|
|||||||
"Toon SW golflengte", // 59
|
"Toon SW golflengte", // 59
|
||||||
"RDS filter", // 60 ***
|
"RDS filter", // 60 ***
|
||||||
"Toon PI fouten", // 61
|
"Toon PI fouten", // 61
|
||||||
"Toon squelch", // 62
|
"Gebruik squelch", // 62
|
||||||
"Modulatie meter", // 63
|
"Modulatie meter", // 63
|
||||||
"AM ruis filter", // 64
|
"AM ruis filter", // 64
|
||||||
"FM ruis filter", // 65
|
"FM ruis filter", // 65
|
||||||
@@ -492,7 +492,7 @@ static const char* const myLanguage[18][210] = {
|
|||||||
"Pokaz dlugosci fal SW", // 59
|
"Pokaz dlugosci fal SW", // 59
|
||||||
"Filtr RDS", // 60
|
"Filtr RDS", // 60
|
||||||
"Pokaz bledy PI", // 61
|
"Pokaz bledy PI", // 61
|
||||||
"Pokaz blokade szumow", // 62
|
"Pokaz blokade szumow", // 62 NEEDS NEW TRANSLATION, ENGLISH: USE SQUELCH
|
||||||
"Wskaznik modulacji", // 63
|
"Wskaznik modulacji", // 63
|
||||||
"Reduktor szumow AM", // 64
|
"Reduktor szumow AM", // 64
|
||||||
"Reduktor szumow FM", // 65
|
"Reduktor szumow FM", // 65
|
||||||
@@ -639,7 +639,7 @@ static const char* const myLanguage[18][210] = {
|
|||||||
"Dynam. predkosc SPI", // 206 ***
|
"Dynam. predkosc SPI", // 206 ***
|
||||||
"Czulosc skanowania", // 207
|
"Czulosc skanowania", // 207
|
||||||
"NONE", // 208 represents: AM/FM bands unavailable(please delete this note after translation)
|
"NONE", // 208 represents: AM/FM bands unavailable(please delete this note after translation)
|
||||||
"Software version" // 209
|
"Software version" // 209
|
||||||
},
|
},
|
||||||
|
|
||||||
{ "Hrvatski", // Croatian
|
{ "Hrvatski", // Croatian
|
||||||
@@ -704,7 +704,7 @@ static const char* const myLanguage[18][210] = {
|
|||||||
"Prikaži valnu duljinu KV-a", // 59
|
"Prikaži valnu duljinu KV-a", // 59
|
||||||
"RDS filter", // 60 ***
|
"RDS filter", // 60 ***
|
||||||
"Show PI errors", // 61 ***
|
"Show PI errors", // 61 ***
|
||||||
"Prikaži squelch", // 62
|
"Prikaži squelch", // 62 NEEDS NEW TRANSLATION, ENGLISH: USE SQUELCH
|
||||||
"Mjerač modulacije", // 63
|
"Mjerač modulacije", // 63
|
||||||
"AM prigušivač šuma", // 64
|
"AM prigušivač šuma", // 64
|
||||||
"FM prigušivač šuma", // 65
|
"FM prigušivač šuma", // 65
|
||||||
@@ -916,7 +916,7 @@ static const char* const myLanguage[18][210] = {
|
|||||||
"Εμφάνιση μήκους\nκύματος SW", // 59
|
"Εμφάνιση μήκους\nκύματος SW", // 59
|
||||||
"Φίλτρο RDS", // 60
|
"Φίλτρο RDS", // 60
|
||||||
"Εμφάνιση σφαλμάτων PI", // 61
|
"Εμφάνιση σφαλμάτων PI", // 61
|
||||||
"Εμφάνιση squelch", // 62
|
"Εμφάνιση squelch", // 62 NEEDS NEW TRANSLATION, ENGLISH: USE SQUELCH
|
||||||
"Μετρητής διαμόρφωσης", // 63
|
"Μετρητής διαμόρφωσης", // 63
|
||||||
"Απαλοιφή θορύβου AM", // 64
|
"Απαλοιφή θορύβου AM", // 64
|
||||||
"Απαλοιφή θορύβου FM", // 65
|
"Απαλοιφή θορύβου FM", // 65
|
||||||
@@ -1128,7 +1128,7 @@ static const char* const myLanguage[18][210] = {
|
|||||||
"Arată lungimea de undă SW", // 59
|
"Arată lungimea de undă SW", // 59
|
||||||
"Filtru RDS", // 60
|
"Filtru RDS", // 60
|
||||||
"Arată erorile PI", // 61
|
"Arată erorile PI", // 61
|
||||||
"Arată limitatorul", // 62
|
"Arată limitatorul", // 62 NEEDS NEW TRANSLATION, ENGLISH: USE SQUELCH
|
||||||
"Măsurare modulație", // 63
|
"Măsurare modulație", // 63
|
||||||
"Eliminare zgomot AM", // 64
|
"Eliminare zgomot AM", // 64
|
||||||
"Eliminare zgomot FM", // 65
|
"Eliminare zgomot FM", // 65
|
||||||
@@ -1340,7 +1340,7 @@ static const char* const myLanguage[18][210] = {
|
|||||||
"KW-Wellenlänge anzeigen", // 59
|
"KW-Wellenlänge anzeigen", // 59
|
||||||
"RDS-Filter", // 60
|
"RDS-Filter", // 60
|
||||||
"Zeige PI Fehler", // 61
|
"Zeige PI Fehler", // 61
|
||||||
"Zeige Rauschsperre", // 62
|
"Zeige Rauschsperre", // 62 NEEDS NEW TRANSLATION, ENGLISH: USE SQUELCH
|
||||||
"Modulationspegel", // 63
|
"Modulationspegel", // 63
|
||||||
"Rauschunterdrückung", // 64
|
"Rauschunterdrückung", // 64
|
||||||
"Rauschunterdrückung", // 65
|
"Rauschunterdrückung", // 65
|
||||||
@@ -1552,7 +1552,7 @@ static const char* const myLanguage[18][210] = {
|
|||||||
"Zobrazit SW pásmo", // 59
|
"Zobrazit SW pásmo", // 59
|
||||||
"RDS filter", // 60 ***
|
"RDS filter", // 60 ***
|
||||||
"Zobrazit chyby v PI", // 61
|
"Zobrazit chyby v PI", // 61
|
||||||
"Zobrazit squelch", // 62
|
"Zobrazit squelch", // 62 NEEDS NEW TRANSLATION, ENGLISH: USE SQUELCH
|
||||||
"Graf modulace", // 63
|
"Graf modulace", // 63
|
||||||
"Tlumič šumu (AM)", // 64
|
"Tlumič šumu (AM)", // 64
|
||||||
"Tlumič šumu (FM)", // 65
|
"Tlumič šumu (FM)", // 65
|
||||||
@@ -1764,7 +1764,7 @@ static const char* const myLanguage[18][210] = {
|
|||||||
"Zobraziť SW pásmo", // 59
|
"Zobraziť SW pásmo", // 59
|
||||||
"RDS filter", // 60 ***
|
"RDS filter", // 60 ***
|
||||||
"Zobraziť chyby v PI", // 61
|
"Zobraziť chyby v PI", // 61
|
||||||
"Zobraziť squelch", // 62
|
"Zobraziť squelch", // 62 NEEDS NEW TRANSLATION, ENGLISH: USE SQUELCH
|
||||||
"Graf modulácie", // 63
|
"Graf modulácie", // 63
|
||||||
"Utlmenie šumu (AM)", // 64
|
"Utlmenie šumu (AM)", // 64
|
||||||
"Utlmenie šumu (FM)", // 65
|
"Utlmenie šumu (FM)", // 65
|
||||||
@@ -1976,7 +1976,7 @@ static const char* const myLanguage[18][210] = {
|
|||||||
"Afficher la longueur\nd'onde SW", // 59
|
"Afficher la longueur\nd'onde SW", // 59
|
||||||
"Filtre RDS", // 60
|
"Filtre RDS", // 60
|
||||||
"Afficher les erreurs\nde décodage PI", // 61
|
"Afficher les erreurs\nde décodage PI", // 61
|
||||||
"Afficher le squelch", // 62
|
"Afficher le squelch", // 62 NEEDS NEW TRANSLATION, ENGLISH: USE SQUELCH
|
||||||
"Compteur de modulation", // 63
|
"Compteur de modulation", // 63
|
||||||
"Réducteur de bruit AM", // 64
|
"Réducteur de bruit AM", // 64
|
||||||
"Réducteur de bruit FM", // 65
|
"Réducteur de bruit FM", // 65
|
||||||
@@ -2188,7 +2188,7 @@ static const char* const myLanguage[18][210] = {
|
|||||||
"Показв. на дълж. на вълната при КВ", // 59
|
"Показв. на дълж. на вълната при КВ", // 59
|
||||||
"RDS филтър", // 60
|
"RDS филтър", // 60
|
||||||
"Показване на PI грешки", // 61
|
"Показване на PI грешки", // 61
|
||||||
"Показване на squelch индикатор", // 62
|
"Показване на squelch индикатор", // 62 NEEDS NEW TRANSLATION, ENGLISH: USE SQUELCH
|
||||||
"Индикатор за модулация", // 63
|
"Индикатор за модулация", // 63
|
||||||
"AM заглушител на шума", // 64
|
"AM заглушител на шума", // 64
|
||||||
"FM заглушител на шума", // 65
|
"FM заглушител на шума", // 65
|
||||||
@@ -2400,7 +2400,7 @@ static const char* const myLanguage[18][210] = {
|
|||||||
"Отображать длину волны", // 59
|
"Отображать длину волны", // 59
|
||||||
"Фильтр RDS-данных", // 60
|
"Фильтр RDS-данных", // 60
|
||||||
"Ошибки PI-кода", // 61
|
"Ошибки PI-кода", // 61
|
||||||
"Отображать шумодав", // 62
|
"Отображать шумодав", // 62 NEEDS NEW TRANSLATION, ENGLISH: USE SQUELCH
|
||||||
"Уровень модуляции", // 63
|
"Уровень модуляции", // 63
|
||||||
"AM Noise blanker", // 64
|
"AM Noise blanker", // 64
|
||||||
"FM Noise blanker", // 65
|
"FM Noise blanker", // 65
|
||||||
@@ -2612,7 +2612,7 @@ static const char* const myLanguage[18][210] = {
|
|||||||
"Показувати довжину хвилі КВ", // 59
|
"Показувати довжину хвилі КВ", // 59
|
||||||
"Фільтр RDS", // 60
|
"Фільтр RDS", // 60
|
||||||
"Показувати помилки PI", // 61
|
"Показувати помилки PI", // 61
|
||||||
"Показувати шумоподавлення", // 62
|
"Показувати шумоподавлення", // 62 NEEDS NEW TRANSLATION, ENGLISH: USE SQUELCH
|
||||||
"Метр модуляції", // 63
|
"Метр модуляції", // 63
|
||||||
"Помпи засліплення шуму AM", // 64
|
"Помпи засліплення шуму AM", // 64
|
||||||
"Помпи засліплення шуму FM", // 65
|
"Помпи засліплення шуму FM", // 65
|
||||||
@@ -2824,7 +2824,7 @@ static const char* const myLanguage[18][210] = {
|
|||||||
"Mostra banda SW in m.", // 59
|
"Mostra banda SW in m.", // 59
|
||||||
"Filtro RDS", // 60
|
"Filtro RDS", // 60
|
||||||
"Mostra errori PI", // 61
|
"Mostra errori PI", // 61
|
||||||
"Mostra squelch", // 62
|
"Mostra squelch", // 62 NEEDS NEW TRANSLATION, ENGLISH: USE SQUELCH
|
||||||
"Meter di modulazione", // 63
|
"Meter di modulazione", // 63
|
||||||
"Soppressione rumore AM", // 64
|
"Soppressione rumore AM", // 64
|
||||||
"Soppressione rumore FM", // 65
|
"Soppressione rumore FM", // 65
|
||||||
@@ -3036,7 +3036,7 @@ static const char* const myLanguage[18][210] = {
|
|||||||
"显示短波米波段", // 59
|
"显示短波米波段", // 59
|
||||||
"RDS 过滤器", // 60
|
"RDS 过滤器", // 60
|
||||||
"显示 PI errors", // 61
|
"显示 PI errors", // 61
|
||||||
"主画面显示SQ", // 62
|
"主画面显示SQ", // 62 NEEDS NEW TRANSLATION, ENGLISH: USE SQUELCH
|
||||||
"主画面显示M表", // 63
|
"主画面显示M表", // 63
|
||||||
"AM 噪声消除", // 64
|
"AM 噪声消除", // 64
|
||||||
"FM 噪声消除", // 65
|
"FM 噪声消除", // 65
|
||||||
@@ -3248,7 +3248,7 @@ static const char* const myLanguage[18][210] = {
|
|||||||
"Vis SW-bånd", // 59
|
"Vis SW-bånd", // 59
|
||||||
"RDS filter", // 60 ***
|
"RDS filter", // 60 ***
|
||||||
"Vis PI feil", // 61
|
"Vis PI feil", // 61
|
||||||
"Vis squelch", // 62
|
"Vis squelch", // 62 NEEDS NEW TRANSLATION, ENGLISH: USE SQUELCH
|
||||||
"Modulasjonsmåler", // 63
|
"Modulasjonsmåler", // 63
|
||||||
"AM Noise blanker", // 64 ***
|
"AM Noise blanker", // 64 ***
|
||||||
"FM Noise blanker", // 65 ***
|
"FM Noise blanker", // 65 ***
|
||||||
@@ -3460,7 +3460,7 @@ static const char* const myLanguage[18][210] = {
|
|||||||
"Mostrar longitud de\nonda de SW", // 59
|
"Mostrar longitud de\nonda de SW", // 59
|
||||||
"Filtro RDS", // 60
|
"Filtro RDS", // 60
|
||||||
"Mostrar errores de PI", // 61
|
"Mostrar errores de PI", // 61
|
||||||
"Mostrar squelch", // 62
|
"Mostrar squelch", // 62 NEEDS NEW TRANSLATION, ENGLISH: USE SQUELCH
|
||||||
"Medidor de modulación", // 63
|
"Medidor de modulación", // 63
|
||||||
"Atenuador de\nruido AM", // 64
|
"Atenuador de\nruido AM", // 64
|
||||||
"Atenuador de\nruido FM", // 65
|
"Atenuador de\nruido FM", // 65
|
||||||
@@ -3672,7 +3672,7 @@ static const char* const myLanguage[18][210] = {
|
|||||||
"Mostrar comprimento\nde onda SW", // 59
|
"Mostrar comprimento\nde onda SW", // 59
|
||||||
"Filtro RDS", // 60
|
"Filtro RDS", // 60
|
||||||
"Mostrar erros PI", // 61
|
"Mostrar erros PI", // 61
|
||||||
"Mostrar squelch", // 62
|
"Mostrar squelch", // 62 NEEDS NEW TRANSLATION, ENGLISH: USE SQUELCH
|
||||||
"Medidor de modulação", // 63
|
"Medidor de modulação", // 63
|
||||||
"Supressor de ruído AM", // 64
|
"Supressor de ruído AM", // 64
|
||||||
"Supressor de ruído FM", // 65
|
"Supressor de ruído FM", // 65
|
||||||
|
|||||||
Reference in New Issue
Block a user