pwn 0.5.515 → 0.5.517
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/README.md +3 -3
- data/lib/pwn/sdr/decoder/rds.rb +123 -0
- data/lib/pwn/sdr/decoder.rb +1 -0
- data/lib/pwn/sdr/frequency_allocation.rb +81 -161
- data/lib/pwn/sdr/gqrx.rb +184 -228
- data/lib/pwn/sdr.rb +13 -0
- data/lib/pwn/version.rb +1 -1
- data/spec/lib/pwn/sdr/decoder/rds_spec.rb +15 -0
- data/third_party/pwn_rdoc.jsonl +8 -4
- metadata +5 -3
|
@@ -12,192 +12,168 @@ module PWN
|
|
|
12
12
|
start_freq: '978.000.000',
|
|
13
13
|
target_freq: '979.000.000',
|
|
14
14
|
demodulator_mode: :RAW,
|
|
15
|
-
|
|
16
|
-
bandwidth: 100_000,
|
|
15
|
+
bandwidth: '100.000',
|
|
17
16
|
precision: 5
|
|
18
17
|
},
|
|
19
18
|
ads_b1090: {
|
|
20
19
|
start_freq: '1.090.000.000',
|
|
21
20
|
target_freq: '1.091.000.000',
|
|
22
21
|
demodulator_mode: :RAW,
|
|
23
|
-
|
|
24
|
-
bandwidth: 100_000,
|
|
22
|
+
bandwidth: '100.000',
|
|
25
23
|
precision: 5
|
|
26
24
|
},
|
|
27
25
|
aeronautical_lf: {
|
|
28
26
|
start_freq: '200.000',
|
|
29
27
|
target_freq: '415.000',
|
|
30
28
|
demodulator_mode: :AM,
|
|
31
|
-
|
|
32
|
-
bandwidth: 10_000,
|
|
29
|
+
bandwidth: '10.000',
|
|
33
30
|
precision: 3
|
|
34
31
|
},
|
|
35
32
|
aeronautical_mf: {
|
|
36
33
|
start_freq: '285.000',
|
|
37
34
|
target_freq: '325.000',
|
|
38
35
|
demodulator_mode: :AM,
|
|
39
|
-
|
|
40
|
-
bandwidth: 10_000,
|
|
36
|
+
bandwidth: '10.000',
|
|
41
37
|
precision: 3
|
|
42
38
|
},
|
|
43
39
|
amateur_1_25m: {
|
|
44
40
|
start_freq: '222.000.000',
|
|
45
41
|
target_freq: '225.000.000',
|
|
46
42
|
demodulator_mode: :FM,
|
|
47
|
-
|
|
48
|
-
bandwidth: 25_000,
|
|
43
|
+
bandwidth: '25.000',
|
|
49
44
|
precision: 4
|
|
50
45
|
},
|
|
51
46
|
amateur_160m: {
|
|
52
47
|
start_freq: '1.800.000',
|
|
53
48
|
target_freq: '2.000.000',
|
|
54
49
|
demodulator_mode: :LSB,
|
|
55
|
-
|
|
56
|
-
bandwidth: 2_700,
|
|
50
|
+
bandwidth: '2.700',
|
|
57
51
|
precision: 6
|
|
58
52
|
},
|
|
59
53
|
amateur_2m: {
|
|
60
54
|
start_freq: '144.000.000',
|
|
61
55
|
target_freq: '148.000.000',
|
|
62
56
|
demodulator_mode: :FM,
|
|
63
|
-
|
|
64
|
-
bandwidth: 15_000,
|
|
57
|
+
bandwidth: '15.000',
|
|
65
58
|
precision: 4
|
|
66
59
|
},
|
|
67
60
|
amateur_30m: {
|
|
68
61
|
start_freq: '10.100.000',
|
|
69
62
|
target_freq: '10.150.000',
|
|
70
63
|
demodulator_mode: :CW,
|
|
71
|
-
|
|
72
|
-
bandwidth: 150,
|
|
64
|
+
bandwidth: '150',
|
|
73
65
|
precision: 3
|
|
74
66
|
},
|
|
75
67
|
amateur_60m: {
|
|
76
68
|
start_freq: '5.351.500',
|
|
77
69
|
target_freq: '5.366.500',
|
|
78
70
|
demodulator_mode: :USB,
|
|
79
|
-
|
|
80
|
-
bandwidth: 2_700,
|
|
71
|
+
bandwidth: '2.700',
|
|
81
72
|
precision: 6
|
|
82
73
|
},
|
|
83
74
|
amateur_6m: {
|
|
84
75
|
start_freq: '50.000.000',
|
|
85
76
|
target_freq: '54.000.000',
|
|
86
77
|
demodulator_mode: :USB,
|
|
87
|
-
|
|
88
|
-
bandwidth: 2_700,
|
|
78
|
+
bandwidth: '2.700',
|
|
89
79
|
precision: 6
|
|
90
80
|
},
|
|
91
81
|
amateur_70cm: {
|
|
92
82
|
start_freq: '420.000.000',
|
|
93
83
|
target_freq: '450.000.000',
|
|
94
84
|
demodulator_mode: :FM,
|
|
95
|
-
|
|
96
|
-
bandwidth: 25_000,
|
|
85
|
+
bandwidth: '25.000',
|
|
97
86
|
precision: 4
|
|
98
87
|
},
|
|
99
88
|
analog_tv_uhf: {
|
|
100
89
|
start_freq: '470.000.000',
|
|
101
90
|
target_freq: '890.000.000',
|
|
102
91
|
demodulator_mode: :WFM_ST,
|
|
103
|
-
|
|
104
|
-
bandwidth: 600_000,
|
|
92
|
+
bandwidth: '600.000',
|
|
105
93
|
precision: 5
|
|
106
94
|
},
|
|
107
95
|
analog_tv_vhf: {
|
|
108
96
|
start_freq: '54.000.000',
|
|
109
97
|
target_freq: '216.000.000',
|
|
110
98
|
demodulator_mode: :WFM_ST,
|
|
111
|
-
|
|
112
|
-
bandwidth: 600_000,
|
|
99
|
+
bandwidth: '600.000',
|
|
113
100
|
precision: 5
|
|
114
101
|
},
|
|
115
102
|
am_radio: {
|
|
116
103
|
start_freq: '540.000',
|
|
117
104
|
target_freq: '1.700.000',
|
|
118
105
|
demodulator_mode: :AM,
|
|
119
|
-
|
|
120
|
-
bandwidth: 10_000,
|
|
106
|
+
bandwidth: '10.000',
|
|
121
107
|
precision: 4
|
|
122
108
|
},
|
|
123
109
|
aviation_nav: {
|
|
124
110
|
start_freq: '108.000.000',
|
|
125
111
|
target_freq: '118.000.000',
|
|
126
112
|
demodulator_mode: :AM,
|
|
127
|
-
|
|
128
|
-
bandwidth: 25_000,
|
|
113
|
+
bandwidth: '25.000',
|
|
129
114
|
precision: 4
|
|
130
115
|
},
|
|
131
116
|
aviation_vhf: {
|
|
132
117
|
start_freq: '118.000.000',
|
|
133
118
|
target_freq: '137.000.000',
|
|
134
119
|
demodulator_mode: :AM,
|
|
135
|
-
|
|
136
|
-
bandwidth: 25_000,
|
|
120
|
+
bandwidth: '25.000',
|
|
137
121
|
precision: 4
|
|
138
122
|
},
|
|
139
123
|
aws: {
|
|
140
124
|
start_freq: '1.710.000.000',
|
|
141
125
|
target_freq: '1.755.000.000',
|
|
142
126
|
demodulator_mode: :RAW,
|
|
143
|
-
|
|
144
|
-
bandwidth: 200_000,
|
|
127
|
+
bandwidth: '200.000',
|
|
145
128
|
precision: 6
|
|
146
129
|
},
|
|
147
130
|
bluetooth: {
|
|
148
131
|
start_freq: '2.402.000.000',
|
|
149
132
|
target_freq: '2.480.000.000',
|
|
150
133
|
demodulator_mode: :RAW,
|
|
151
|
-
|
|
152
|
-
bandwidth: 100_000,
|
|
134
|
+
bandwidth: '1.000.000',
|
|
153
135
|
precision: 5
|
|
154
136
|
},
|
|
155
137
|
cb: {
|
|
156
138
|
start_freq: '26.965.000',
|
|
157
139
|
target_freq: '27.405.000',
|
|
158
140
|
demodulator_mode: :AM,
|
|
159
|
-
|
|
160
|
-
bandwidth: 10_000,
|
|
141
|
+
bandwidth: '10.000',
|
|
161
142
|
precision: 3
|
|
162
143
|
},
|
|
163
144
|
cdma: {
|
|
164
145
|
start_freq: '824.000.000',
|
|
165
146
|
target_freq: '849.000.000',
|
|
166
147
|
demodulator_mode: :RAW,
|
|
167
|
-
|
|
168
|
-
bandwidth: 125_000,
|
|
148
|
+
bandwidth: '1.250.000',
|
|
169
149
|
precision: 6
|
|
170
150
|
},
|
|
171
151
|
cw20: {
|
|
172
152
|
start_freq: '14.000.000',
|
|
173
153
|
target_freq: '14.350.000',
|
|
174
154
|
demodulator_mode: :CW,
|
|
175
|
-
|
|
176
|
-
bandwidth: 150,
|
|
155
|
+
bandwidth: '150',
|
|
177
156
|
precision: 3
|
|
178
157
|
},
|
|
179
158
|
cw40: {
|
|
180
159
|
start_freq: '7.000.000',
|
|
181
160
|
target_freq: '7.300.000',
|
|
182
161
|
demodulator_mode: :CW,
|
|
183
|
-
|
|
184
|
-
bandwidth: 150,
|
|
162
|
+
bandwidth: '150',
|
|
185
163
|
precision: 3
|
|
186
164
|
},
|
|
187
165
|
cw80: {
|
|
188
166
|
start_freq: '3.500.000',
|
|
189
167
|
target_freq: '3.800.000',
|
|
190
168
|
demodulator_mode: :CW,
|
|
191
|
-
|
|
192
|
-
bandwidth: 150,
|
|
169
|
+
bandwidth: '150',
|
|
193
170
|
precision: 3
|
|
194
171
|
},
|
|
195
172
|
dect: {
|
|
196
173
|
start_freq: '1.880.000.000',
|
|
197
174
|
target_freq: '1.900.000.000',
|
|
198
175
|
demodulator_mode: :RAW,
|
|
199
|
-
|
|
200
|
-
bandwidth: 100_000,
|
|
176
|
+
bandwidth: '100.000',
|
|
201
177
|
precision: 5
|
|
202
178
|
},
|
|
203
179
|
fm_radio: {
|
|
@@ -205,455 +181,399 @@ module PWN
|
|
|
205
181
|
target_freq: '108.000.000',
|
|
206
182
|
demodulator_mode: :WFM_ST,
|
|
207
183
|
rds: true,
|
|
208
|
-
bandwidth:
|
|
184
|
+
bandwidth: '200.000',
|
|
209
185
|
precision: 6
|
|
210
186
|
},
|
|
211
187
|
frs: {
|
|
212
188
|
start_freq: '462.562.500',
|
|
213
189
|
target_freq: '467.725.000',
|
|
214
190
|
demodulator_mode: :FM,
|
|
215
|
-
|
|
216
|
-
bandwidth: 200_000,
|
|
191
|
+
bandwidth: '200.000',
|
|
217
192
|
precision: 3
|
|
218
193
|
},
|
|
219
194
|
gmrs: {
|
|
220
195
|
start_freq: '462.550.000',
|
|
221
196
|
target_freq: '467.725.000',
|
|
222
197
|
demodulator_mode: :FM,
|
|
223
|
-
|
|
224
|
-
bandwidth: 200_000,
|
|
198
|
+
bandwidth: '200.000',
|
|
225
199
|
precision: 3
|
|
226
200
|
},
|
|
227
201
|
gprs: {
|
|
228
202
|
start_freq: '880.000.000',
|
|
229
203
|
target_freq: '915.000.000',
|
|
230
204
|
demodulator_mode: :RAW,
|
|
231
|
-
|
|
232
|
-
bandwidth: 200_000,
|
|
205
|
+
bandwidth: '171.200',
|
|
233
206
|
precision: 4
|
|
234
207
|
},
|
|
235
208
|
gps_l1: {
|
|
236
209
|
start_freq: '1.574.420.000',
|
|
237
210
|
target_freq: '1.576.420.000',
|
|
238
211
|
demodulator_mode: :RAW,
|
|
239
|
-
|
|
240
|
-
bandwidth: 200_000,
|
|
212
|
+
bandwidth: '30.000.000',
|
|
241
213
|
precision: 6
|
|
242
214
|
},
|
|
243
215
|
gps_l2: {
|
|
244
216
|
start_freq: '1.226.600.000',
|
|
245
217
|
target_freq: '1.228.600.000',
|
|
246
218
|
demodulator_mode: :RAW,
|
|
247
|
-
|
|
248
|
-
bandwidth: 200_000,
|
|
219
|
+
bandwidth: '11.000.000',
|
|
249
220
|
precision: 6
|
|
250
221
|
},
|
|
251
222
|
gsm: {
|
|
252
223
|
start_freq: '824.000.000',
|
|
253
224
|
target_freq: '894.000.000',
|
|
254
225
|
demodulator_mode: :RAW,
|
|
255
|
-
|
|
256
|
-
bandwidth: 200_000,
|
|
226
|
+
bandwidth: '200.000',
|
|
257
227
|
precision: 4
|
|
258
228
|
},
|
|
259
229
|
high_rfid: {
|
|
260
230
|
start_freq: '13.560.000',
|
|
261
231
|
target_freq: '13.570.000',
|
|
262
232
|
demodulator_mode: :RAW,
|
|
263
|
-
|
|
264
|
-
bandwidth: 200_000,
|
|
233
|
+
bandwidth: '400.000',
|
|
265
234
|
precision: 3
|
|
266
235
|
},
|
|
267
236
|
iridium: {
|
|
268
237
|
start_freq: '1.616.000.000',
|
|
269
238
|
target_freq: '1.626.500.000',
|
|
270
239
|
demodulator_mode: :RAW,
|
|
271
|
-
|
|
272
|
-
bandwidth: 200_000,
|
|
240
|
+
bandwidth: '704.000',
|
|
273
241
|
precision: 6
|
|
274
242
|
},
|
|
275
243
|
ism_5g: {
|
|
276
244
|
start_freq: '5.725.000.000',
|
|
277
245
|
target_freq: '5.875.000.000',
|
|
278
246
|
demodulator_mode: :RAW,
|
|
279
|
-
|
|
280
|
-
bandwidth: 200_000,
|
|
247
|
+
bandwidth: '150.000.000',
|
|
281
248
|
precision: 7
|
|
282
249
|
},
|
|
283
250
|
ism_902: {
|
|
284
251
|
start_freq: '902.000.000',
|
|
285
252
|
target_freq: '928.000.000',
|
|
286
253
|
demodulator_mode: :RAW,
|
|
287
|
-
|
|
288
|
-
bandwidth: 50_000,
|
|
254
|
+
bandwidth: '26.000.000',
|
|
289
255
|
precision: 3
|
|
290
256
|
},
|
|
291
257
|
keyfob300: {
|
|
292
258
|
start_freq: '300.000.000',
|
|
293
259
|
target_freq: '300.100.000',
|
|
294
260
|
demodulator_mode: :RAW,
|
|
295
|
-
|
|
296
|
-
bandwidth: 50_000,
|
|
261
|
+
bandwidth: '50.000',
|
|
297
262
|
precision: 4
|
|
298
263
|
},
|
|
299
264
|
keyfob310: {
|
|
300
265
|
start_freq: '310.000.000',
|
|
301
266
|
target_freq: '310.100.000',
|
|
302
267
|
demodulator_mode: :RAW,
|
|
303
|
-
|
|
304
|
-
bandwidth: 50_000,
|
|
268
|
+
bandwidth: '50.000',
|
|
305
269
|
precision: 4
|
|
306
270
|
},
|
|
307
271
|
keyfob315: {
|
|
308
272
|
start_freq: '315.000.000',
|
|
309
273
|
target_freq: '315.100.000',
|
|
310
274
|
demodulator_mode: :RAW,
|
|
311
|
-
|
|
312
|
-
bandwidth: 50_000,
|
|
275
|
+
bandwidth: '50.000',
|
|
313
276
|
precision: 4
|
|
314
277
|
},
|
|
315
278
|
keyfob390: {
|
|
316
279
|
start_freq: '390.000.000',
|
|
317
280
|
target_freq: '390.100.000',
|
|
318
281
|
demodulator_mode: :RAW,
|
|
319
|
-
|
|
320
|
-
bandwidth: 50_000,
|
|
282
|
+
bandwidth: '50.000',
|
|
321
283
|
precision: 4
|
|
322
284
|
},
|
|
323
285
|
keyfob433: {
|
|
324
286
|
start_freq: '433.000.000',
|
|
325
287
|
target_freq: '434.000.000',
|
|
326
288
|
demodulator_mode: :RAW,
|
|
327
|
-
|
|
328
|
-
bandwidth: 50_000,
|
|
289
|
+
bandwidth: '50.000',
|
|
329
290
|
precision: 4
|
|
330
291
|
},
|
|
331
292
|
keyfob868: {
|
|
332
293
|
start_freq: '868.000.000',
|
|
333
294
|
target_freq: '869.000.000',
|
|
334
295
|
demodulator_mode: :RAW,
|
|
335
|
-
|
|
336
|
-
bandwidth: 50_000,
|
|
296
|
+
bandwidth: '50.000',
|
|
337
297
|
precision: 4
|
|
338
298
|
},
|
|
339
299
|
land_mobile_uhf: {
|
|
340
300
|
start_freq: '450.000.000',
|
|
341
301
|
target_freq: '470.000.000',
|
|
342
302
|
demodulator_mode: :FM,
|
|
343
|
-
|
|
344
|
-
bandwidth: 25_000,
|
|
303
|
+
bandwidth: '25.000',
|
|
345
304
|
precision: 4
|
|
346
305
|
},
|
|
347
306
|
land_mobile_vhf: {
|
|
348
307
|
start_freq: '150.000.000',
|
|
349
308
|
target_freq: '174.000.000',
|
|
350
309
|
demodulator_mode: :FM,
|
|
351
|
-
|
|
352
|
-
bandwidth: 25_000,
|
|
310
|
+
bandwidth: '25.000',
|
|
353
311
|
precision: 4
|
|
354
312
|
},
|
|
355
313
|
longwave_broadcast: {
|
|
356
314
|
start_freq: '148.500',
|
|
357
315
|
target_freq: '283.500',
|
|
358
316
|
demodulator_mode: :AM,
|
|
359
|
-
|
|
360
|
-
bandwidth: 10_000,
|
|
317
|
+
bandwidth: '10.000',
|
|
361
318
|
precision: 3
|
|
362
319
|
},
|
|
363
320
|
lora433: {
|
|
364
321
|
start_freq: '432.000.000',
|
|
365
322
|
target_freq: '434.000.000',
|
|
366
323
|
demodulator_mode: :RAW,
|
|
367
|
-
|
|
368
|
-
bandwidth: 50_000,
|
|
324
|
+
bandwidth: '500.000',
|
|
369
325
|
precision: 3
|
|
370
326
|
},
|
|
371
327
|
lora915: {
|
|
372
328
|
start_freq: '902.000.000',
|
|
373
329
|
target_freq: '928.000.000',
|
|
374
330
|
demodulator_mode: :RAW,
|
|
375
|
-
|
|
376
|
-
bandwidth: 50_000,
|
|
331
|
+
bandwidth: '500.000',
|
|
377
332
|
precision: 3
|
|
378
333
|
},
|
|
379
334
|
low_rfid: {
|
|
380
335
|
start_freq: '125.000',
|
|
381
336
|
target_freq: '134.000',
|
|
382
337
|
demodulator_mode: :RAW,
|
|
383
|
-
|
|
384
|
-
bandwidth: 200_000,
|
|
338
|
+
bandwidth: '40.000',
|
|
385
339
|
precision: 1
|
|
386
340
|
},
|
|
387
341
|
marine_vhf: {
|
|
388
342
|
start_freq: '156.000.000',
|
|
389
343
|
target_freq: '162.000.000',
|
|
390
344
|
demodulator_mode: :FM,
|
|
391
|
-
|
|
392
|
-
bandwidth: 25_000,
|
|
345
|
+
bandwidth: '25.000',
|
|
393
346
|
precision: 4
|
|
394
347
|
},
|
|
395
348
|
maritime_mf: {
|
|
396
349
|
start_freq: '415.000',
|
|
397
350
|
target_freq: '535.000',
|
|
398
351
|
demodulator_mode: :USB,
|
|
399
|
-
|
|
400
|
-
bandwidth: 2_700,
|
|
352
|
+
bandwidth: '2.700',
|
|
401
353
|
precision: 6
|
|
402
354
|
},
|
|
403
355
|
noaa_weather: {
|
|
404
356
|
start_freq: '162.400.000',
|
|
405
357
|
target_freq: '162.550.000',
|
|
406
358
|
demodulator_mode: :FM,
|
|
407
|
-
|
|
408
|
-
bandwidth: 16_000,
|
|
359
|
+
bandwidth: '16.000',
|
|
409
360
|
precision: 4
|
|
410
361
|
},
|
|
411
362
|
pager: {
|
|
412
363
|
start_freq: '929.000.000',
|
|
413
364
|
target_freq: '932.000.000',
|
|
414
365
|
demodulator_mode: :FM,
|
|
415
|
-
|
|
416
|
-
bandwidth: 25_000,
|
|
366
|
+
bandwidth: '12.500',
|
|
417
367
|
precision: 4
|
|
418
368
|
},
|
|
419
369
|
pcs: {
|
|
420
370
|
start_freq: '1.850.000.000',
|
|
421
371
|
target_freq: '1.990.000.000',
|
|
422
372
|
demodulator_mode: :RAW,
|
|
423
|
-
|
|
424
|
-
bandwidth: 200_000,
|
|
373
|
+
bandwidth: '200.000',
|
|
425
374
|
precision: 6
|
|
426
375
|
},
|
|
427
376
|
public_safety_700: {
|
|
428
377
|
start_freq: '698.000.000',
|
|
429
378
|
target_freq: '806.000.000',
|
|
430
379
|
demodulator_mode: :FM,
|
|
431
|
-
|
|
432
|
-
bandwidth: 25_000,
|
|
380
|
+
bandwidth: '25.000',
|
|
433
381
|
precision: 4
|
|
434
382
|
},
|
|
435
383
|
rtty20: {
|
|
436
384
|
start_freq: '14.000.000',
|
|
437
385
|
target_freq: '14.350.000',
|
|
438
386
|
demodulator_mode: :FM,
|
|
439
|
-
|
|
440
|
-
bandwidth: 170,
|
|
387
|
+
bandwidth: '170',
|
|
441
388
|
precision: 3
|
|
442
389
|
},
|
|
443
390
|
rtty40: {
|
|
444
391
|
start_freq: '7.000.000',
|
|
445
392
|
target_freq: '7.300.000',
|
|
446
393
|
demodulator_mode: :FM,
|
|
447
|
-
|
|
448
|
-
bandwidth: 170,
|
|
394
|
+
bandwidth: '170',
|
|
449
395
|
precision: 3
|
|
450
396
|
},
|
|
451
397
|
rtty80: {
|
|
452
398
|
start_freq: '3.500.000',
|
|
453
399
|
target_freq: '3.800.000',
|
|
454
400
|
demodulator_mode: :FM,
|
|
455
|
-
|
|
456
|
-
bandwidth: 170,
|
|
401
|
+
bandwidth: '170',
|
|
457
402
|
precision: 3
|
|
458
403
|
},
|
|
459
404
|
shortwave1: {
|
|
460
405
|
start_freq: '5.900.000',
|
|
461
406
|
target_freq: '6.200.000',
|
|
462
407
|
demodulator_mode: :AM_SYNC,
|
|
463
|
-
|
|
464
|
-
bandwidth: 10_000,
|
|
408
|
+
bandwidth: '10.000',
|
|
465
409
|
precision: 4
|
|
466
410
|
},
|
|
467
411
|
shortwave2: {
|
|
468
412
|
start_freq: '7.200.000',
|
|
469
413
|
target_freq: '7.450.000',
|
|
470
414
|
demodulator_mode: :AM_SYNC,
|
|
471
|
-
|
|
472
|
-
bandwidth: 10_000,
|
|
415
|
+
bandwidth: '10.000',
|
|
473
416
|
precision: 4
|
|
474
417
|
},
|
|
475
418
|
shortwave3: {
|
|
476
419
|
start_freq: '9.400.000',
|
|
477
420
|
target_freq: '9.900.000',
|
|
478
421
|
demodulator_mode: :AM_SYNC,
|
|
479
|
-
|
|
480
|
-
bandwidth: 10_000,
|
|
422
|
+
bandwidth: '10.000',
|
|
481
423
|
precision: 4
|
|
482
424
|
},
|
|
483
425
|
shortwave4: {
|
|
484
426
|
start_freq: '11.600.000',
|
|
485
427
|
target_freq: '12.100.000',
|
|
486
428
|
demodulator_mode: :AM_SYNC,
|
|
487
|
-
|
|
488
|
-
bandwidth: 10_000,
|
|
429
|
+
bandwidth: '10.000',
|
|
489
430
|
precision: 4
|
|
490
431
|
},
|
|
491
432
|
shortwave5: {
|
|
492
433
|
start_freq: '13.570.000',
|
|
493
434
|
target_freq: '13.870.000',
|
|
494
435
|
demodulator_mode: :AM_SYNC,
|
|
495
|
-
|
|
496
|
-
bandwidth: 10_000,
|
|
436
|
+
bandwidth: '10.000',
|
|
497
437
|
precision: 4
|
|
498
438
|
},
|
|
499
439
|
shortwave6: {
|
|
500
440
|
start_freq: '15.100.000',
|
|
501
441
|
target_freq: '15.800.000',
|
|
502
442
|
demodulator_mode: :AM_SYNC,
|
|
503
|
-
|
|
504
|
-
bandwidth: 10_000,
|
|
443
|
+
bandwidth: '10.000',
|
|
505
444
|
precision: 4
|
|
506
445
|
},
|
|
507
446
|
ssb10: {
|
|
508
447
|
start_freq: '28.000.000',
|
|
509
448
|
target_freq: '29.700.000',
|
|
510
449
|
demodulator_mode: :USB,
|
|
511
|
-
|
|
512
|
-
bandwidth: 2_700,
|
|
450
|
+
bandwidth: '3.000',
|
|
513
451
|
precision: 6
|
|
514
452
|
},
|
|
515
453
|
ssb12: {
|
|
516
454
|
start_freq: '24.890.000',
|
|
517
455
|
target_freq: '24.990.000',
|
|
518
456
|
demodulator_mode: :USB,
|
|
519
|
-
|
|
520
|
-
bandwidth: 2_700,
|
|
457
|
+
bandwidth: '3.000',
|
|
521
458
|
precision: 6
|
|
522
459
|
},
|
|
523
460
|
ssb15: {
|
|
524
461
|
start_freq: '21.000.000',
|
|
525
462
|
target_freq: '21.450.000',
|
|
526
463
|
demodulator_mode: :USB,
|
|
527
|
-
|
|
528
|
-
bandwidth: 2_700,
|
|
464
|
+
bandwidth: '3.000',
|
|
529
465
|
precision: 6
|
|
530
466
|
},
|
|
531
467
|
ssb17: {
|
|
532
468
|
start_freq: '18.068.000',
|
|
533
469
|
target_freq: '18.168.000',
|
|
534
470
|
demodulator_mode: :USB,
|
|
535
|
-
|
|
536
|
-
bandwidth: 2_700,
|
|
471
|
+
bandwidth: '3.000',
|
|
537
472
|
precision: 6
|
|
538
473
|
},
|
|
539
474
|
ssb20: {
|
|
540
475
|
start_freq: '14.000.000',
|
|
541
476
|
target_freq: '14.350.000',
|
|
542
477
|
demodulator_mode: :USB,
|
|
543
|
-
|
|
544
|
-
bandwidth: 2_700,
|
|
478
|
+
bandwidth: '3.000',
|
|
545
479
|
precision: 6
|
|
546
480
|
},
|
|
547
481
|
ssb40: {
|
|
548
482
|
start_freq: '7.000.000',
|
|
549
483
|
target_freq: '7.300.000',
|
|
550
484
|
demodulator_mode: :LSB,
|
|
551
|
-
|
|
552
|
-
bandwidth: 2_700,
|
|
485
|
+
bandwidth: '3.000',
|
|
553
486
|
precision: 6
|
|
554
487
|
},
|
|
555
488
|
ssb80: {
|
|
556
489
|
start_freq: '3.500.000',
|
|
557
490
|
target_freq: '3.800.000',
|
|
558
491
|
demodulator_mode: :LSB,
|
|
559
|
-
|
|
560
|
-
bandwidth: 2_700,
|
|
492
|
+
bandwidth: '3.000',
|
|
561
493
|
precision: 6
|
|
562
494
|
},
|
|
563
495
|
ssb160: {
|
|
564
496
|
start_freq: '1.800.000',
|
|
565
497
|
target_freq: '2.000.000',
|
|
566
498
|
demodulator_mode: :LSB,
|
|
567
|
-
|
|
568
|
-
bandwidth: 2_700,
|
|
499
|
+
bandwidth: '3.000',
|
|
569
500
|
precision: 6
|
|
570
501
|
},
|
|
571
502
|
tempest: {
|
|
572
503
|
start_freq: '400.000.000',
|
|
573
504
|
target_freq: '430.000.000',
|
|
574
505
|
demodulator_mode: :WFM,
|
|
575
|
-
|
|
576
|
-
bandwidth: 200_000,
|
|
506
|
+
bandwidth: '6.000.000',
|
|
577
507
|
precision: 4
|
|
578
508
|
},
|
|
579
509
|
tv_high_vhf: {
|
|
580
510
|
start_freq: '174.000.000',
|
|
581
511
|
target_freq: '216.000.000',
|
|
582
512
|
demodulator_mode: :WFM_ST,
|
|
583
|
-
|
|
584
|
-
bandwidth: 600_000,
|
|
513
|
+
bandwidth: '6.000.000',
|
|
585
514
|
precision: 5
|
|
586
515
|
},
|
|
587
516
|
tv_low_vhf: {
|
|
588
517
|
start_freq: '54.000.000',
|
|
589
518
|
target_freq: '88.000.000',
|
|
590
519
|
demodulator_mode: :WFM_ST,
|
|
591
|
-
|
|
592
|
-
bandwidth: 600_000,
|
|
520
|
+
bandwidth: '6.000.000',
|
|
593
521
|
precision: 5
|
|
594
522
|
},
|
|
595
523
|
tv_uhf: {
|
|
596
524
|
start_freq: '470.000.000',
|
|
597
525
|
target_freq: '698.000.000',
|
|
598
526
|
demodulator_mode: :WFM_ST,
|
|
599
|
-
|
|
600
|
-
bandwidth: 600_000,
|
|
527
|
+
bandwidth: '6.000.000',
|
|
601
528
|
precision: 5
|
|
602
529
|
},
|
|
603
530
|
uhf_rfid: {
|
|
604
531
|
start_freq: '860.000.000',
|
|
605
532
|
target_freq: '960.000.000',
|
|
606
533
|
demodulator_mode: :RAW,
|
|
607
|
-
|
|
608
|
-
bandwidth: 100_000,
|
|
534
|
+
bandwidth: '400.000',
|
|
609
535
|
precision: 5
|
|
610
536
|
},
|
|
611
537
|
umts: {
|
|
612
538
|
start_freq: '1.920.000.000',
|
|
613
539
|
target_freq: '2.170.000.000',
|
|
614
540
|
demodulator_mode: :RAW,
|
|
615
|
-
|
|
616
|
-
bandwidth: 200_000,
|
|
541
|
+
bandwidth: '5.000.000',
|
|
617
542
|
precision: 6
|
|
618
543
|
},
|
|
619
544
|
weather_sat: {
|
|
620
545
|
start_freq: '137.000.000',
|
|
621
546
|
target_freq: '138.000.000',
|
|
622
547
|
demodulator_mode: :FM,
|
|
623
|
-
|
|
624
|
-
bandwidth: 40_000,
|
|
548
|
+
bandwidth: '15.000',
|
|
625
549
|
precision: 5
|
|
626
550
|
},
|
|
627
551
|
wifi24: {
|
|
628
552
|
start_freq: '2.400.000.000',
|
|
629
553
|
target_freq: '2.500.000.000',
|
|
630
554
|
demodulator_mode: :RAW,
|
|
631
|
-
|
|
632
|
-
bandwidth: 200_000,
|
|
555
|
+
bandwidth: '20.000.000',
|
|
633
556
|
precision: 7
|
|
634
557
|
},
|
|
635
558
|
wifi5: {
|
|
636
559
|
start_freq: '5.150.000.000',
|
|
637
560
|
target_freq: '5.850.000.000',
|
|
638
561
|
demodulator_mode: :RAW,
|
|
639
|
-
|
|
640
|
-
bandwidth: 200_000,
|
|
562
|
+
bandwidth: '20.000.000',
|
|
641
563
|
precision: 7
|
|
642
564
|
},
|
|
643
565
|
wifi6: {
|
|
644
566
|
start_freq: '5.925.000.000',
|
|
645
567
|
target_freq: '7.125.000.000',
|
|
646
568
|
demodulator_mode: :RAW,
|
|
647
|
-
|
|
648
|
-
bandwidth: 200_000,
|
|
569
|
+
bandwidth: '20.000.000',
|
|
649
570
|
precision: 7
|
|
650
571
|
},
|
|
651
572
|
zigbee: {
|
|
652
573
|
start_freq: '2.405.000.000',
|
|
653
574
|
target_freq: '2.485.000.000',
|
|
654
575
|
demodulator_mode: :RAW,
|
|
655
|
-
|
|
656
|
-
bandwidth: 200_000,
|
|
576
|
+
bandwidth: '2.000.000',
|
|
657
577
|
precision: 7
|
|
658
578
|
}
|
|
659
579
|
}
|