From cad20a5f7a3ec50e162939fb372dc7850ddfede3 Mon Sep 17 00:00:00 2001 From: Armel FAUVEAU Date: Mon, 19 Feb 2024 07:23:47 +0100 Subject: [PATCH] Fix Low Power --- Makefile | 2 +- radio.c | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index a5ddcb0..c85e717 100644 --- a/Makefile +++ b/Makefile @@ -206,7 +206,7 @@ ifeq ($(ENABLE_FEAT_F4HWN),1) VERSION_STRING_1 ?= v0.22 AUTHOR_STRING_2 ?= F4HWN - VERSION_STRING_2 ?= v2.0 + VERSION_STRING_2 ?= v1.9 AUTHOR_STRING ?= $(AUTHOR_STRING_1)+$(AUTHOR_STRING_2) VERSION_STRING ?= $(VERSION_STRING_2) diff --git a/radio.c b/radio.c index 3e3e511..4d363eb 100644 --- a/radio.c +++ b/radio.c @@ -479,19 +479,19 @@ void RADIO_ConfigureSquelchAndOutputPower(VFO_Info_t *pInfo) { switch (gSetting_set_low) { case 0: - Txp[p] = (Txp[p] * 4) / 19; + Txp[p] = (Txp[p] * 4) / 25; break; case 1: - Txp[p] = (Txp[p] * 4) / 13; + Txp[p] = (Txp[p] * 4) / 19; break; case 2: - Txp[p] = (Txp[p] * 4) / 10; + Txp[p] = (Txp[p] * 4) / 13; break; case 3: - Txp[p] = (Txp[p] * 4) / 7; + Txp[p] = (Txp[p] * 4) / 10; break; case 4: - Txp[p] = (Txp[p] * 4) / 25; + Txp[p] = (Txp[p] * 4) / 7; break; }