srsue.conf.tmpl: reorder conditions for setting RRC release

the order of checks needs to go from high to low, i.e. the higher
release feature (e.g. qam256) needs to be checked and set first.

in theory it should also be possible to have a CA-capable UE
that does not support QAM256, but for srsUE we announce both anyway.

Change-Id: I2fa49f0cb5d80db412a811ceeb380359c8ad67a7
This commit is contained in:
Andre Puschmann 2020-12-10 21:11:02 +01:00
parent bfd3fe659e
commit 507c60ca0c
1 changed files with 4 additions and 4 deletions

View File

@ -147,14 +147,14 @@ imei = 353490069873319
# mbms_service_port: Port of the MBMS service
#####################################################################
[rrc]
% if int(ue.num_carriers) > 1:
ue_category = 7
release = 10
% elif "dl_qam256" in ue.features or "ul_qam64" in ue.features:
% if "dl_qam256" in ue.features or "ul_qam64" in ue.features:
ue_category = 8
release = 13
ue_category_dl = 14
ue_category_ul = 5
% elif int(ue.num_carriers) > 1:
ue_category = 7
release = 10
% else:
#ue_category = 4
#release = 8