Fixed syntax error in MD3x0 and UV3x0 radio drivers

replace/ac5dce484559192f9bd1e3146295a4d60cd87ad6
Silvano Seva 2021-10-08 19:34:08 +02:00
rodzic 6fd53d1917
commit b58fbd6760
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -300,7 +300,7 @@ void radio_enableTx()
gpio_setPin(TX_STG_EN); // Enable TX PA
if(config->opMode == FM && config->txToneEn == 1)
if(config->txToneEn == 1)
{
toneGen_toneOn(); // Enable CTSS
}

Wyświetl plik

@ -222,7 +222,7 @@ void radio_enableTx()
gpio_setPin(PA_EN_2);
if(config.opMode == FM && config->txToneEn)
if(config->txToneEn)
{
at1846s.enableTxCtcss(config->txTone);
}