Project

General

Profile

Dimetra EBTS » History » Version 2

laforge, 02/19/2016 10:52 PM
add links to sub-pages

1 1 laforge
The Motorola Dimetra EBTS is a TETRA Base Station design.
2
3
We have been able to get our hands on some of them.  This page documents our knowledge about the units, their configuration and how to use them.
4
5
== Hardware ==
6
7
=== Motorola Dimetra Base Radio (T5931A) ===
8
9
The Base Radio (BR) is a modular design in a 4U case, consisting of the following modules:
10
11
==== Power Supply (CPN1031B) ====
12
13
As the name suggests, it is merely a power supply, converting from the 48 V input to the various voltages required within the radio
14
15
==== Controller (CAE010CMX) ====
16
17
This is s small PowerPC based embedded system.  It communicates with the TETRA Site Controller (TSC) over 10-Base-2 Ethernet
18
and controls all the other units of the Base Radio via the backplane of the BR cabinet.
19
20
It has the following connections:
21
 * RS-232 on the back of the BR
22
 * RS-232 on the front of the BR
23
 * Site Alarm I/O on the back of the BR
24
 * 10-Base-2 Ethernet on the back of the BR (BNC)
25
 * Clock input on the back of the BR (BNC)
26
27 2 laforge
For more details see [[wiki:Dimetra_EBTS/Base_Radio/Controller]]
28
29 1 laforge
==== 3x Diversity Receiver (CTX1090A) ====
30
31
This is the receiver.  It has three antenna inputs in order to use antenna diversity for additional signal gain.
32
33
The received and demodulated TETRA bursts are forwarded to the Controller via the BR backplane.
34
35 2 laforge
For more details see [[wiki:Dimetra_EBTS/Base_Radio/Receiver]]
36
37 1 laforge
==== Exciter (CLN1510A) ====
38
39
This is the transmitter.  It receives TETRA frames from the Controler via the backplane and encodes/modulates them.  The output
40
is fed into the power amplifier over a SMA jumper connection on the back of the base radio.
41
42 2 laforge
For more details see [[wiki:Dimetra_EBTS/Base_Radio/Exciter]]
43
44 1 laforge
==== Power Amplifier (CTX1030A) ====
45
46
This is a RF power amplifier, used to generate a high-power signal from the output of the exciter.
47
48
It has three coaxial connections on the back, which are used as follows:
49
 * input from the exciter
50
 * feedback from PA into the exciter
51
 * actual RF power output (towards antenna)
52
53 2 laforge
For more details see [[wiki:Dimetra_EBTS/Base_Radio/Amplifier]]
54
55 1 laforge
=== Integrated Site Controller (CLN1480A) ===
56
57
This is a unit that interfaces up to 8 Base Radios with the core network of the Dimetra TETRA network (SwMI).
58
59
Hardware-wise, it is a PowerPC based system, looking very much like an old-fashioned PC mainboard with
60
both ISA and PCI slots.
61
62
The mainboard houses the PowerPC CPU and it has slots for RAM.
63
64
There are some extension cards plugged into the system:
65
 * Clock generation card (ISA, full length).
66
  * has an integrated GPS receiver, to which you attach a GPS antenna
67
  * generates the reference 5MHz clock distributed over Coaxial cable to the Base Radios
68
 * Ethernet Card using DEC tulip chipset (PCI)
69
  * This card is what talks to the Base Radios (BR) via 10-Base-2
70
 * Unknown card with RJ-45 jack (REDUND) on the back.  Might be E1
71
72
There are further inputs and outputs on the system:
73
 * A DB-15 jack for X.21 synchronous serial backhaul (2048Mbps)
74
 * FIXME
75
 * A RS-232 serial port for local configuration
76 2 laforge
77
For more details see [[wiki:Dimetra_EBTS/Site_Controller]]
78 1 laforge
79
=== RF Distribution System (CFX4041A) ===
80
81
This is a sophisticated combiner for the high-power output signals of the PA of up to 4 Base Radios.
82
83
In order to ensure optimal impedance matching, the combiner is mechanically tuned by electrical motors
84
which are controlled by some control logic.
85
86
The combiner inside the system has the following connections (external connections in '''bold'''):
87
 * '''4 high-power radio input ports''' (N socket on the front, one close to each motor)
88
  * this is where the RF signal emitted by the PA of the BR enters
89
 * 4 RF taps, one for each of the high-power radio inputs
90
  * they are connected to the controller unit attached to the inside of the front lid
91
 * 1 high-power radio output port (N socket)
92
  * this output is connected to a power meter inside the same cabinet
93
 * 4 stepper motor electrical connections
94
  * connected to the controller unit attached to the inside of the front lid
95
 * RS-232 serial line for control+monitoring
96
  * this is a DB-9 port of the controller unit attached to the inside of the front lid
97
  * interconnected to one of the Base Radios (typically BR1) inside the rack
98
99
The flow of the signals is as follows:
100
 * RF from the PA enters at the four combiner inputs
101
 * combined RF output leaves through central output of the combiner, from where
102
 * it is routed to the FR power meter
103
 * whose output socket is routed to the transmit antenna (or a duplexer in case of a shared Rx/Tx antenna)
104
105
{{{
106
#!graphviz
107
digraph G {
108
  graph [ rankdir = LR  ];
109
110
  //{ rank=same; combiner; controller; };
111
112
  br1_pa_out -> combiner
113
  br2_pa_out -> combiner
114
  br3_pa_out -> combiner
115
  br4_pa_out -> combiner
116
117
  combiner -> power_meter
118
  power_meter -> tx_antenna
119
120
  combiner -> controller [ dir=both color=red ]
121
  power_meter -> controller [ color=red ]
122
123
  power_meter [ shape=box ];
124
  combiner [ shape=box ];
125
  controller [ shape=box ];
126
127
128
129
}
130
}}}
131
=== Rx LNA Multicoupler (CRX102A) ===
132
133
The purpose of the Rx LNA multicoupler is to amplify the received signal from the antennas, and split
134
the signal so each Base Radio is attached to each antenna:
135
136
{{{
137
#!graphviz
138
digraph G {
139
  graph [ rankdir = LR ];
140
141
  antenna1 -> lna1
142
  antenna2 -> lna2
143
  antenna3 -> lna3
144
145
  lna1 -> multicoupler1
146
  lna2 -> multicoupler2
147
  lna3 -> multicoupler3
148
149
  multicoupler1 -> br1_rx1
150
  multicoupler1 -> br2_rx1
151
  multicoupler1 -> br3_rx1
152
  multicoupler1 -> br4_rx1
153
154
  multicoupler2 -> br1_rx2
155
  multicoupler2 -> br2_rx2
156
  multicoupler2 -> br3_rx2
157
  multicoupler2 -> br4_rx2
158
159
  multicoupler3 -> br1_rx3
160
  multicoupler3 -> br2_rx3
161
  multicoupler3 -> br3_rx3
162
  multicoupler3 -> br4_rx3
163
164
  lna1 [ shape=box label="LNA 1" ];
165
  lna2 [ shape=box label="LNA 2" ];
166
  lna3 [ shape=box label="LNA 3" ];
167
  multicoupler1 [ shape=box ];
168
  multicoupler2 [ shape=box ];
169
  multicoupler3 [ shape=box ];
170
}
171
}}}
Add picture from clipboard (Maximum size: 48.8 MB)