Change in osmo-bts[master]: BS Power Control Loop: Increase attenuation if RxQual is better than ...

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

pespin gerrit-no-reply at lists.osmocom.org
Mon Sep 6 10:06:41 UTC 2021


pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-bts/+/25327 )

Change subject: BS Power Control Loop: Increase attenuation if RxQual is better than upper threshold
......................................................................

BS Power Control Loop: Increase attenuation if RxQual is better than upper threshold

If RxQual is considered good enough, attenuation can be increased in
order to lower overall cross-channel noise among different MS.

Change-Id: Ie97898980acd152de15f6b4b619d492048855ef4
---
M src/common/power_control.c
1 file changed, 3 insertions(+), 0 deletions(-)

Approvals:
  Jenkins Builder: Verified
  laforge: Looks good to me, but someone else must approve
  pespin: Looks good to me, approved
  fixeria: Looks good to me, but someone else must approve



diff --git a/src/common/power_control.c b/src/common/power_control.c
index 225198f..cb96177 100644
--- a/src/common/power_control.c
+++ b/src/common/power_control.c
@@ -348,6 +348,9 @@
 	if (rxqual_avg > params->rxqual_meas.lower_thresh) {
 		/* Increase Tx power by reducing Tx attenuation */
 		new_att = state->current - params->inc_step_size_db;
+	} else if (rxqual_avg < params->rxqual_meas.upper_thresh) {
+		/* Increase Tx power by Increasing Tx attenuation */
+		new_att = state->current + params->red_step_size_db;
 	} else {
 		/* Basic signal transmission / reception formula:
 		 *

-- 
To view, visit https://gerrit.osmocom.org/c/osmo-bts/+/25327
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-bts
Gerrit-Branch: master
Gerrit-Change-Id: Ie97898980acd152de15f6b4b619d492048855ef4
Gerrit-Change-Number: 25327
Gerrit-PatchSet: 5
Gerrit-Owner: pespin <pespin at sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy at sysmocom.de>
Gerrit-Reviewer: laforge <laforge at osmocom.org>
Gerrit-Reviewer: pespin <pespin at sysmocom.de>
Gerrit-MessageType: merged
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20210906/5acf26c0/attachment.htm>


More information about the gerrit-log mailing list