Project

General

Profile

RepeaterPage » History » Version 4

max, 04/22/2017 04:04 PM

1 1 max
2 4 max
 = SUMMARY =
3
 * Simultaneous multi-channel transmission/reception
4
 * Uses USRP and/or conventional receiver/transmitter hardware
5
 * Generic interface to Asterisk via app_rpt (full VOIP, radio control, and standard repeater functions)
6
 * Features: P25, analog NBFM with CTCSS
7
 * Expected to be fully "ROIP" [Radio Over IP] compatible
8
9 1 max
 = Multi-channel reception using the USRP =
10
11
Assume we want to simultaneously receive the four signals shown below;
12
one conventional (analog) FM voice channel plus three P25
13
signals.  The two P25 voice channels are to be IMBE-decoded whereas the
14 4 max
P25 data channel is to be sent to Wireshark after decoding.  For all three voice
15
channels, we want to forward the received PTT and audio info to Asterisk app_rpt.
16
The received PTT [Push To Talk, or "keyed"] signal is a bit that ideally tracks
17
the state of the PTT key at transmitter, indicating the presence or absence of the
18
received signal.
19 1 max
20 3 max
[[Image(sa.png)]]
21
22 1 max
Fig. 1 - Spectrum of repeater input band (sample; diagram not to scale)
23
24
For now, it's necessary to edit the source code file manually to specify
25
the list of channels/modes to be received (file usrp_rx.py):
26
27
{{{
28
channels = [
29
	{'freq':435.200e6, 'mode':'c4fm',  'port':32001},
30
	{'freq':435.350e6, 'mode':'fm',    'port':32002, 'ctcss':97.4},
31
	{'freq':435.600e6, 'mode':'cqpsk', 'port':23456, 'wireshark':1},
32
	{'freq':435.775e6, 'mode':'cqpsk', 'port':32003}
33
]
34
}}}
35
36
Individual channels are defined one per line; note that all definition lines
37
except the last must end with a comma.
38
39
We choose a frequency somewhere close to the center of this band.
40
which will set the USRP's nominal receive frequency; this must also
41
be manually set in the source file:
42
43
{{{
44
center_freq = 435.500e6
45
}}}
46
47
Before running the receiver app, we
48
 * measure the current calibration error value (I use kalibrate)
49
 * determine the optimum USRP receiver gain value
50
The values used in this example are +1234 and 35, respectively.
51
52
We're now ready to start the receiver:
53
54
{{{
55
usrp_rx.py -RA -c 1234 -H 127.0.0.1 -g 35 -d 25
56
}}}
57
58
The receiver continuously monitors all four channels.  For each of the three
59
voice channels, the audio and the PTT info ("key up" and "key down" events)
60
are forwarded to asterisk app_rpt over separate UDP channels.
61
62
 = P25 and/or analog NBFM Reception using a discriminator-tapped receiver =
63
64
One or more disc-tapped conventional receivers may be used at the same time, and can
65
coexist with one or more USRP's.
66
67 4 max
An audio cable is connected between the disc-tap point in the receiver and the PC soundcard.
68
69 1 max
Single-channel reception is possible using disctap_rx.py.
70 4 max
The app dynmically auto-detects the modulation type (P25 or analog NBFM).
71 1 max
72
Audio and PTT events are forwarded to asterisk app_rpt over two separate UDP
73 4 max
channels, depending on modulation type:
74
 * received P25 audio is sent to asterisk on UDP port 32004
75
 * when analog NBFM is received with the proper CTCSS tone (97.4 Hz), port 32005 is used
76 1 max
77
{{{
78
 disctap_rx.py -i -A 0.05 -c 97.4 -H 127.0.0.1 -p 32004 -g 35 -d 25
79
}}}
80
81
The -g (gain) parameter is used to set the proper audio gain level.  See
82
the hardware page for further guidance - this value is important for achieving
83
correct operation.
84 4 max
85
 = Asterisk and app_rpt =
86
87
For all voice modes (IMBE and analog FM) the audio is transmitted
88
as frames over the UDP channel to and from Asterisk in the standard native audio format:
89
 * 50 frames per second
90
 * 160 audio samples per frame
91
 * 8000 samples / second
92
 * signed
93
 * 16-bit
94
 * linear
95
96
TBC
97
98
 = Transmission (USRP and conventional) =
99
100
TBC
Add picture from clipboard (Maximum size: 48.8 MB)