diff options
author | Vadim Yanitskiy <vyanitskiy@sysmocom.de> | 2020-12-20 23:23:21 +0100 |
---|---|---|
committer | laforge <laforge@osmocom.org> | 2020-12-22 11:11:07 +0000 |
commit | 53866d3bf7119f52517f00924062ce29c2ac367f (patch) | |
tree | 546e327d197e4d5265879c13c2965c9992c360b4 /include | |
parent | 040d220a01d376d41620cee963586cc0bf21b633 (diff) |
power_control: add VTY command to set static / maximum BS Power
Change-Id: I11ca856aba46aaf84d94cbbdf4c39a01ee8289b9
Related: SYS#4918
Diffstat (limited to 'include')
-rw-r--r-- | include/osmocom/bsc/gsm_data.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/osmocom/bsc/gsm_data.h b/include/osmocom/bsc/gsm_data.h index f9d5736db..233c3b683 100644 --- a/include/osmocom/bsc/gsm_data.h +++ b/include/osmocom/bsc/gsm_data.h @@ -1328,6 +1328,10 @@ struct gsm_power_ctrl_params { /* Power Control mode to be used by the BTS */ enum gsm_power_ctrl_mode mode; + /* BS Power reduction value / maximum (in dB) */ + uint8_t bs_power_val_db; /* for static mode */ + uint8_t bs_power_max_db; /* for dynamic mode */ + /* Power change step size (dynamic mode only) */ uint8_t inc_step_size_db; /* increasing direction */ uint8_t red_step_size_db; /* reducing direction */ |