Fixed bug in MD3x0 radio driver causing underdeviation of M17 signal

This commit is contained in:
Silvano Seva 2022-08-28 10:13:22 +02:00
parent ea6863e077
commit 3ab36f3738
1 changed files with 1 additions and 1 deletions

View File

@ -214,9 +214,9 @@ void radio_setOpmode(const enum opmode mode)
case OPMODE_M17:
gpio_clearPin(DMR_SW); // Disconnect analog paths for DMR
gpio_setPin(FM_SW); // Enable analog RX stage after superhet
_setBandwidth(BW_25); // Set bandwidth to 25kHz for proper deviation
C5000.fmMode(); // HR_C5000 in FM mode
C5000.setInputGain(-3); // Input gain in dB, found experimentally
_setBandwidth(BW_25); // Set bandwidth to 25kHz for proper deviation
break;
default: