| 252 | } |
| 253 | |
| 254 | static unsigned cellid() |
| 255 | { |
| 256 | // Cell id: |
| 257 | unsigned c0 = gTRX.C0(); // 10 bits |
| 258 | unsigned bcc = gBTS.BCC(); // 3 bits |
| 259 | unsigned ncc = gBTS.NCC(); // 3 bits |
| 260 | return (c0<<16) + (bcc<<3) + ncc; |
| 261 | } |
| 262 | |
| 263 | |
| 264 | // Make a globally unique identifier starting with string start. |
no test coverage detected