Project

General

Profile

Dimetra EBTS » History » Version 1

laforge, 02/19/2016 10:52 PM
add some graphs

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