gsm_08_58: add rxqual field to RSL_IE_OSMO_REP_ACCH_CAP

In order to transfer an RXQUAL threshold to the BTS as well, the struct
that defines the contents of RSL_IE_OSMO_REP_ACCH_CAP needs to be
updated with a 3 bit field to contain the RXQUAL value.

Change-Id: I6dda239e9cd7033297bed1deb5eb1d9f87b8433f
Related: SYS#5114 OS#4796 OS#4794 OS#4795
This commit is contained in:
Philipp Maier 2020-11-20 16:13:07 +01:00 committed by laforge
parent dbab714343
commit 595908aab1
1 changed files with 4 additions and 2 deletions

View File

@ -119,7 +119,8 @@ struct abis_rsl_cchan_hdr {
/* Osmocom specific IE to negotiate repeated ACCH capabilities */
struct abis_rsl_osmo_rep_acch_cap {
#if OSMO_IS_BIG_ENDIAN
uint8_t reserved:4,
uint8_t reserved:1,
rxqual:3,
ul_sacch:1,
dl_sacch:1,
dl_facch_all:1,
@ -129,7 +130,8 @@ struct abis_rsl_osmo_rep_acch_cap {
dl_facch_all:1,
dl_sacch:1,
ul_sacch:1,
reserved:4;
rxqual:3,
reserved:1;
#endif
} __attribute__ ((packed));