smalltalk
/
osmo-st-gsm
Archived
1
0
Fork 0

bssmap: Add the cell identification for the cell identifier list

This commit is contained in:
Holger Hans Peter Freyther 2013-01-08 14:26:32 +01:00
parent f3b27888de
commit b538ae24c8
1 changed files with 63 additions and 0 deletions

View File

@ -351,6 +351,69 @@ GSM0808IE subclass: GSM0808CellIdentifierList [
<category: 'OsmoGSM'>
<comment: 'I represent a 3.2.2.27 of GSM 08.08'>
GSM0808CellIdentifierList class [
cellWholeGlobal [
<category: 'types'>
"The whole Cell Global Identification, CGI, is used to identify the cells."
^ 2r0000
]
cellLocationAreaCodeCi [
<category: 'types'>
"Location Area Code, LAC, and Cell Identify, CI, is used to identify the cells."
^ 2r0001
]
cellCi [
<category: 'types'>
"Cell Identity, CI, is used to identify the cells."
^ 2r0010
]
cellNoCell [
<category: 'types'>
"No cell is associated with the transaction."
^ 2r0011
]
cellLocationAreaIdentification [
<category: 'types'>
"Location Area Identification, LAI, is used to identify all cells within a Location Area."
^ 2r0100
]
cellLocationAreaCode [
<category: 'types'>
"Location Area Code, LAC, is used to identify all cells within a location area."
^ 2r0101
]
cellAllCells [
<category: 'types'>
"All cells on the BSS are identified."
^ 2r0110
]
cellUtranHandoverPlmnLacRnc [
<category: 'types'>
"Intersystem Handover to UTRAN or cdma2000. PLMN-ID, LAC, and RNC-ID, are encoded to identify the target RNC."
^ 2r1000
]
cellUtranHandoverRnc [
<category: 'types'>
"Intersystem Handover to UTRAN or cdma2000. The RNC-ID is coded to identify the target RNC."
^ 2r1001
]
cellUtranHanoverLacRnc [
<category: 'types'>
"Intersystem Handover to UTRAN or cdma2000. LAC and RNC-ID are encoded to identify the target RNC."
^ 2r1010
]
]
GSM0808CellIdentifierList class >> elementId [ ^ 26 ]
GSM0808CellIdentifierList class >> parseFrom: aStream [
| len ident cells |