From 424ed614b231971f5077f9bd4b197a0bc5aa381e Mon Sep 17 00:00:00 2001 From: Nunu Date: Sat, 30 Dec 2023 21:21:59 +0100 Subject: [PATCH 1/4] LOW power rc15. --- radio.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/radio.c b/radio.c index 971026a..ba8780c 100644 --- a/radio.c +++ b/radio.c @@ -499,9 +499,10 @@ 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; + // rc.15 + Txp[0] /= 2; + Txp[1] /= 2; + Txp[2] /= 2; } #endif From b2670f85fdcb80c6a0d9aba4052108aedc5a63b9 Mon Sep 17 00:00:00 2001 From: Nunu Date: Sun, 31 Dec 2023 13:51:20 +0100 Subject: [PATCH 2/4] L power lowered further. rc2-15. --- radio.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/radio.c b/radio.c index ba8780c..dcdd708 100644 --- a/radio.c +++ b/radio.c @@ -499,10 +499,10 @@ void RADIO_ConfigureSquelchAndOutputPower(VFO_Info_t *pInfo) #ifdef ENABLE_REDUCE_LOW_POWER // make low even lower if (pInfo->OUTPUT_POWER == OUTPUT_POWER_LOW) { - // rc.15 - Txp[0] /= 2; - Txp[1] /= 2; - Txp[2] /= 2; + // rc2.15 + Txp[0] /= 3; + Txp[1] /= 3; + Txp[2] /= 3; } #endif From a85ae0c34339011a4f0b041eb8a8b8eff077a55f Mon Sep 17 00:00:00 2001 From: Nunu Date: Sun, 31 Dec 2023 14:05:03 +0100 Subject: [PATCH 3/4] cleanup --- radio.c | 1 - 1 file changed, 1 deletion(-) diff --git a/radio.c b/radio.c index dcdd708..24221b4 100644 --- a/radio.c +++ b/radio.c @@ -499,7 +499,6 @@ void RADIO_ConfigureSquelchAndOutputPower(VFO_Info_t *pInfo) #ifdef ENABLE_REDUCE_LOW_POWER // make low even lower if (pInfo->OUTPUT_POWER == OUTPUT_POWER_LOW) { - // rc2.15 Txp[0] /= 3; Txp[1] /= 3; Txp[2] /= 3; From 34e286d2d97fe715eff5d8901e765d3c68135e27 Mon Sep 17 00:00:00 2001 From: Nunu Date: Sun, 31 Dec 2023 14:10:49 +0100 Subject: [PATCH 4/4] Update readme. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 659dec2..5e4bb1b 100644 --- a/README.md +++ b/README.md @@ -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)