aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/libbsc/rest_octets.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2013-03-06 12:02:33 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2013-03-10 17:39:50 +0100
commitf876c39887029bda0319b055e9ab2794d9164584 (patch)
tree6403e596db79bd5f7271794f012d5e90a3c785d8 /openbsc/src/libbsc/rest_octets.c
parente1145cf0f9c746e4b1d7707d958705d4923af835 (diff)
si: Another round of PCS related fixes
Inside the SI1 rest_octets we will need to indicate if the ARFCN is band 1800 or 1900. If the BTS is either 850 or 1900 we assume we are running a PCS network, otherwise it is a DCS network. The band indicator is not documented in GSM 04.08 but it is in the GSM 05.14 version 6.1.0 Release 1997.
Diffstat (limited to 'openbsc/src/libbsc/rest_octets.c')
-rw-r--r--openbsc/src/libbsc/rest_octets.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/openbsc/src/libbsc/rest_octets.c b/openbsc/src/libbsc/rest_octets.c
index 0545426c0..41bf5050b 100644
--- a/openbsc/src/libbsc/rest_octets.c
+++ b/openbsc/src/libbsc/rest_octets.c
@@ -30,7 +30,7 @@
#include <openbsc/rest_octets.h>
/* generate SI1 rest octets */
-int rest_octets_si1(uint8_t *data, uint8_t *nch_pos)
+int rest_octets_si1(uint8_t *data, uint8_t *nch_pos, int is1800_net)
{
struct bitvec bv;
@@ -44,7 +44,12 @@ int rest_octets_si1(uint8_t *data, uint8_t *nch_pos)
} else
bitvec_set_bit(&bv, L);
- bitvec_spare_padding(&bv, 7);
+ if (is1800_net)
+ bitvec_set_bit(&bv, L);
+ else
+ bitvec_set_bit(&bv, H);
+
+ bitvec_spare_padding(&bv, 6);
return bv.data_len;
}