This repository was archived by the owner on Mar 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathREADME
More file actions
236 lines (185 loc) · 7.04 KB
/
Copy pathREADME
File metadata and controls
236 lines (185 loc) · 7.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
ofdm-transfer
=============
The active repository is at https://codeberg.org/glv/ofdm-transfer
ofdm-transfer is a command-line program to send or receive data by software
defined radio using the OFDM modulation.
## Usage
ofdm-transfer [options] [filename]
Options:
-a
Use audio samples instead of IQ samples.
-b <bit rate> (default: 38400 b/s)
Bit rate of the OFDM transmission.
-c <ppm> (default: 0.0, can be negative)
Correction for the radio clock.
-d <filename>
Dump a copy of the samples sent to or received from
the radio.
-e <fec[,fec]> (default: h128,none)
Inner and outer forward error correction codes to use.
-f <frequency> (default: 434000000 Hz)
Frequency of the OFDM transmission.
-g <gain> (default: 0)
Gain of the radio transceiver, or audio gain in dB.
-h
This help.
-i <id> (default: "")
Transfer id (at most 4 bytes). When receiving, the frames
with a different id will be ignored.
-m <modulation> (default: qpsk)
Modulation to use for the subcarriers.
-n <subcarriers[,cyclic prefix[,taper]]> (default: 64,16,4)
Number of subcarriers, cyclic prefix length and taper length
of the OFDM transmission.
-o <offset> (default: 0 Hz, can be negative)
Set the central frequency of the transceiver 'offset' Hz
lower than the signal frequency to send or receive.
-r <radio type> (default: "")
Radio to use.
-s <sample rate> (default: 2000000 S/s)
Sample rate to use.
-T <timeout> (default: 0 s)
Number of seconds after which reception will be stopped if
no frame has been received. A timeout of 0 means no timeout.
-t
Use transmit mode.
-v
Print debug messages.
-w <delay> (default: 0.0 s)
Wait a little before switching the radio off.
This can be useful if the hardware needs some time to send
the last samples it has buffered.
By default the program is in 'receive' mode.
Use the '-t' option to use the 'transmit' mode.
In 'receive' mode, the samples are received from the radio,
and the decoded data is written either to 'filename' if it
is specified, or to standard output.
In 'transmit' mode, the data to send is read either from
'filename' if it is specified, or from standard input,
and the samples are sent to the radio.
Instead of a real radio transceiver, the 'io' radio type uses
standard input in 'receive' mode, and standard output in
'transmit' mode.
The 'file=path-to-file' radio type reads/writes the samples
from/to 'path-to-file'.
The IQ samples must be in 'complex float' format
(32 bits for the real part, 32 bits for the imaginary part).
The audio samples must be in 'signed integer' format (16 bits).
The gain parameter can be specified either as an integer to set a
global gain, or as a series of keys and values to set specific
gains (for example 'LNA=32,VGA=20').
When using the audio mode (with the '-a' option), the gain value
in dB is applied to the audio samples.
## Compilation
ofdm-transfer requires the following dependencies:
- libliquid (https://github.com/jgaeddert/liquid-dsp)
- libSoapySDR (https://github.com/pothosware/SoapySDR)
It can be compiled with the usual:
./autogen.sh
./configure
make
## Supported radios
ofdm-transfer uses the SoapySDR API, therefore if your radio is supported by
SoapySDR and you have the right driver installed, it should work.
When used with the '-h' option to print the help message, ofdm-transfer will
also list the radios that it has detected.
## Supported subcarrier modulations
- bpsk
- qpsk
- psk8
- apsk16
- apsk32
- apsk64
- apsk128
- apsk256
## Supported FEC codes
The forward error correction codes that can be specified with the '-e' option
are the codes that are supported by libliquid.
These should always be available:
- none
- rep3: repeat(3)
- rep5: repeat(5)
- h74: Hamming(7,4)
- h84: Hamming(8,4)
- h128: Hamming(12,8)
- g2412: Golay(24,12)
- secded2216: SEC-DED(22,16)
- secded3932: SEC-DED(39,32)
- secded7264: SEC-DED(72,64)
If your libliquid library has been compiled with support for the libfec
library, the following codes should also be available:
- v27: convolutional r1/2 K=7
- v29: convolutional r1/2 K=9
- v39: convolutional r1/3 K=9
- v615: convolutional r1/6 K=15
- v27p23: convolutional r2/3 K=7 (punctured)
- v27p34: convolutional r3/4 K=7 (punctured)
- v27p45: convolutional r4/5 K=7 (punctured)
- v27p56: convolutional r5/6 K=7 (punctured)
- v27p67: convolutional r6/7 K=7 (punctured)
- v27p78: convolutional r7/8 K=7 (punctured)
- v29p23: convolutional r2/3 K=9 (punctured)
- v29p34: convolutional r3/4 K=9 (punctured)
- v29p45: convolutional r4/5 K=9 (punctured)
- v29p56: convolutional r5/6 K=9 (punctured)
- v29p67: convolutional r6/7 K=9 (punctured)
- v29p78: convolutional r7/8 K=9 (punctured)
- rs8: Reed-Solomon, 223/255
## Bandwidth
The occupied bandwidth (99% power) of the generated signal is approximately
(bit_rate * 1.6 * k) Hertz.
Where k is a coefficient depending on the subcarrier modulation:
- bpsk: 1
- qpsk: 1/2
- psk8: 1/3
- apsk16: 1/4
- apsk32: 1/5
- apsk64: 1/6
- apsk128: 1/7
- apsk256: 1/8
## Examples
Send a file at 9600 b/s on 434 MHz using a HackRF:
ofdm-transfer -t \
-r driver=hackrf \
-s 4000000 \
-f 434000000 \
-o 100000 \
-b 9600 \
-g 30 \
-w 1 \
input_file
Receive a file at 9600 b/s on 434 MHz using a RTL-SDR:
ofdm-transfer -r driver=rtlsdr \
-s 2000000 \
-f 434000000 \
-o 100000 \
-b 9600 \
-g 20 \
-T 30 \
output_file
Generate audio samples for a 1200 b/s transmission centered at 1500 Hz and play
them:
ofdm-transfer -t \
-r file=/tmp/samples.s16 \
-a \
-s 48000 \
-f 1500 \
-b 1200 \
input_file
aplay -f S16_LE -r 48000 -c 1 /tmp/samples.s16
Send a file at 48 kb/s using an audio cable:
cat file.dat | ofdm-transfer -t -a -r io -s 48000 -f 12000 -m apsk16 -b 48000 | aplay -q -f S16_LE -r 48000 -c 1
Receive a file at 48 kb/s using an audio cable:
arecord -q -f S16_LE -r 48000 -c 1 | ofdm-transfer -a -r io -s 48000 -f 12000 -m apsk16 -b 48000 -T 10 > file.dat
## Library
You can add OFDM transfer support to your programs easily by using the
'libofdm-transfer' library.
The API is described in the 'ofdm-transfer.h' file.
The 'echo-server' example program shows how to use the API to make a server
receiving messages from clients and sending them back in reverse order.
The 'full-duplex' example program shows how to use the API to make
a full-duplex link using two devices.
The 'full-duplex-ppp.sh' script shows how to make a PPP connection between two
machines using the 'full-duplex' example program.
The 'half-duplex.sh' script shows how to make a half-duplex link between two
(not SDR) transceivers using audio, like a sound modem TNC.