Merge pull request #23 from kamilsss655/rc15

Rc15
This commit is contained in:
Nunu 2023-12-31 14:11:11 +01:00 committed by GitHub
commit 59412c9f42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -141,7 +141,7 @@ ENABLE_RSSI_BAR := 1 enable a dBm/Sn RSSI bar graph lev
ENABLE_AUDIO_BAR := 1 experimental, display an audio bar level when TX'ing
ENABLE_COPY_CHAN_TO_VFO := 1 copy current channel into the other VFO. Long press `1 BAND` when in channel mode
ENABLE_SPECTRUM := 1 fagci spectrum analyzer, activated with `F` + `5 NOAA`
ENABLE_REDUCE_LOW_POWER := 1 makes low power settings even lower (L=0.6W M=3.56W H=4.67W (f=147Mhz))
ENABLE_REDUCE_LOW_POWER := 1 makes low power settings even lower (L=0.45W M=3W H=4.7W (f=147Mhz))
ENABLE_BYP_RAW_DEMODULATORS := 0 additional BYP (bypass?) and RAW demodulation options, proved not to be very useful, but it is there if you want to experiment
ENABLE_BLMIN_TMP_OFF := 0 additional function for configurable buttons that toggles `BLMin` on and off wihout saving it to the EEPROM
ENABLE_SCAN_RANGES := 1 scan range mode for frequency scanning, see wiki for instructions (radio operation -> frequency scanning)

View File

@ -499,9 +499,9 @@ void RADIO_ConfigureSquelchAndOutputPower(VFO_Info_t *pInfo)
#ifdef ENABLE_REDUCE_LOW_POWER
// make low even lower
if (pInfo->OUTPUT_POWER == OUTPUT_POWER_LOW) {
Txp[0] -= 22;
Txp[1] -= 22;
Txp[2] -= 22;
Txp[0] /= 3;
Txp[1] /= 3;
Txp[2] /= 3;
}
#endif