laforge has uploaded this change for review.
hnbgw: Use iddentical LAC/RAC/SAC values
Let's not use different values on RANAP and HNBAP, but derive on from
the other.
Change-Id: If4d82dc350c072e3528097d850304514adf65340
---
M hnbgw/HNBGW_Tests.ttcn
1 file changed, 16 insertions(+), 4 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/25/36525/1
diff --git a/hnbgw/HNBGW_Tests.ttcn b/hnbgw/HNBGW_Tests.ttcn
index 97c5644..b4430cc 100644
--- a/hnbgw/HNBGW_Tests.ttcn
+++ b/hnbgw/HNBGW_Tests.ttcn
@@ -895,11 +895,11 @@
timer T := 2.0;
HNBAP[hnb_idx].send(ts_HNBAP_HNBRegisterRequest(char2oct("TTCN3-HNB-" & int2str(hnb_idx)),
- '00F110'O,
+ hex2oct(g_hnb_cfg[hnb_idx].lai.mcc_mnc),
int2bit(1 + cell_id, 28),
- int2oct(2, 2),
- int2oct(3, 1),
- int2oct(4, 2)));
+ int2oct(g_hnb_cfg[hnb_idx].lai.lac, 2),
+ int2oct(0, 1),
+ int2oct(g_hnb_cfg[hnb_idx].sac, 2)));
T.start;
alt {
To view, visit change 36525. To unsubscribe, or for help writing mail filters, visit settings.