-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.xml
More file actions
2407 lines (1916 loc) · 157 KB
/
index.xml
File metadata and controls
2407 lines (1916 loc) · 157 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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Home on REDHAWK</title>
<link>https://redhawksdr.github.io/</link>
<description>Recent content in Home on REDHAWK</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<atom:link href="https://redhawksdr.github.io/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>REDHAWK Release Notes - 2.0.8</title>
<link>https://redhawksdr.github.io/release-notes/2.0-lts/release-notes-2.0.8/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/release-notes/2.0-lts/release-notes-2.0.8/</guid>
<description>The effort in REDHAWK 2.0.8 focused on:
Core Framework
Preventing sb.DataSink from adding an empty timestamp when it receives EOS in an empty packet. Adding inline header comments documenting C++ BulkIO input stream, output stream, and data block APIs. Fixing improperly scoped locks in Core Framework control. Implementing several C++ fixes to allow REDHAWK to compile on newer compilers. Correcting default property kinds in the DTD and XSD so they are no longer out of sync with the behavior of the Core Framework and the ICD.</description>
</item>
<item>
<title>rh.AmFmPmBasebandDemod</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/components/rh.amfmpmbasebanddemod.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/components/rh.amfmpmbasebanddemod.readme/</guid>
<description>REDHAWK rh.AmFmPmBasebandDemod Description Contains the source and build script for the REDHAWK rh.AmFmPmBasebandDemod component. This component performs angle demodulation on complex baseband input signals.
Installation This asset requires the rh.dsp shared library. This shared library must be installed in order to build and run this asset. To build from source, run the build.sh script. To install to $SDRROOT run, build.sh install.</description>
</item>
<item>
<title>rh.AmFmPmBasebandDemod</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/components/rh.amfmpmbasebanddemod.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/components/rh.amfmpmbasebanddemod.readme/</guid>
<description>REDHAWK rh.AmFmPmBasebandDemod Description Contains the source and build script for the REDHAWK rh.AmFmPmBasebandDemod component. This component performs angle demodulation on complex baseband input signals.
Installation This asset requires the rh.dsp shared library. This shared library must be installed in order to build and run this asset. To build from source, run the build.sh script. To install to $SDRROOT run, build.sh install.</description>
</item>
<item>
<title>rh.AmFmPmBasebandDemod</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/components/rh.amfmpmbasebanddemod.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/components/rh.amfmpmbasebanddemod.readme/</guid>
<description>REDHAWK rh.AmFmPmBasebandDemod Description Contains the source and build script for the REDHAWK rh.AmFmPmBasebandDemod component. This component performs angle demodulation on complex baseband input signals.
Installation This asset requires the rh.dsp shared library. This shared library must be installed in order to build and run this asset. To build from source, run the build.sh script. To install to $SDRROOT run, build.sh install.</description>
</item>
<item>
<title>rh.ArbitraryRateResampler</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/components/rh.arbitraryrateresampler.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/components/rh.arbitraryrateresampler.readme/</guid>
<description>REDHAWK rh.ArbitraryRateResampler Description Contains the source and build script for the REDHAWK rh.ArbitraryRateResampler component. This component resamples a data stream at output rates which are not limited to integer multiples of the input sampling rate. This component can increase or decrease the sample rate. No anti-aliasing filtering is included, so users must use this component with caution when decreasing the sampling rate to avoid aliasing or pre-filter themselves in an upstream component if required.</description>
</item>
<item>
<title>rh.ArbitraryRateResampler</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/components/rh.arbitraryrateresampler.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/components/rh.arbitraryrateresampler.readme/</guid>
<description>REDHAWK rh.ArbitraryRateResampler Description Contains the source and build script for the REDHAWK rh.ArbitraryRateResampler component. This component resamples a data stream at output rates which are not limited to integer multiples of the input sampling rate. This component can increase or decrease the sample rate. No anti-aliasing filtering is included, so users must use this component with caution when decreasing the sampling rate to avoid aliasing or pre-filter themselves in an upstream component if required.</description>
</item>
<item>
<title>rh.ArbitraryRateResampler</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/components/rh.arbitraryrateresampler.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/components/rh.arbitraryrateresampler.readme/</guid>
<description>REDHAWK rh.ArbitraryRateResampler Description Contains the source and build script for the REDHAWK rh.ArbitraryRateResampler component. This component resamples a data stream at output rates which are not limited to integer multiples of the input sampling rate. This component can increase or decrease the sample rate. No anti-aliasing filtering is included, so users must use this component with caution when decreasing the sampling rate to avoid aliasing or pre-filter themselves in an upstream component if required.</description>
</item>
<item>
<title>rh.DataConverter</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/components/rh.dataconverter.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/components/rh.dataconverter.readme/</guid>
<description>REDHAWK rh.DataConverter Description The rh.DataConverter component is used to convert between BulkIO data types in REDHAWK. With proper configuration, the rh.DataConverter component can convert between any of the following data types; Char, Octet, Unsigned Short, Short, Float and Double. The rh.DataConverter component is also capable of converting real data into complex data, and similarly complex data to real data.
Installation This asset requires the rh.fftlib shared library. This shared library must be installed in order to build and run this asset.</description>
</item>
<item>
<title>rh.DataConverter</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/components/rh.dataconverter.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/components/rh.dataconverter.readme/</guid>
<description>REDHAWK rh.DataConverter Description The rh.DataConverter component is used to convert between BulkIO data types in REDHAWK. With proper configuration, the rh.DataConverter component can convert between any of the following data types; Char, Octet, Unsigned Short, Short, Float and Double. The rh.DataConverter component is also capable of converting real data into complex data, and similarly complex data to real data.
Installation This asset requires the rh.fftlib shared library. This shared library must be installed in order to build and run this asset.</description>
</item>
<item>
<title>rh.DataConverter</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/components/rh.dataconverter.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/components/rh.dataconverter.readme/</guid>
<description>REDHAWK rh.DataConverter Description The rh.DataConverter component is used to convert between BulkIO data types in REDHAWK. With proper configuration, the rh.DataConverter component can convert between any of the following data types; Char, Octet, Unsigned Short, Short, Float and Double. The rh.DataConverter component is also capable of converting real data into complex data, and similarly complex data to real data.
Installation This asset requires the rh.fftlib shared library. This shared library must be installed in order to build and run this asset.</description>
</item>
<item>
<title>rh.FM_RBDS_demo</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/waveforms/rh.fm_rbds_demo.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/waveforms/rh.fm_rbds_demo.readme/</guid>
<description>REDHAWK FM_RBDS_demo Description Contains the source and build script for the REDHAWK FM_RBDS_demo waveform. This waveform processes the RBDS digitial message present in broadcast FM radio signals. This waveform tunes and filters the signal, performs a BPSK demodulation, then decodes the RBDS data.
Installation This is a waveform project; therefore, it does not need to be built. It must be installed into the $SDRROOT/dom/waveforms directory. To install it, open the project in the REDHAWK IDE and drag it into the Target SDR folder.</description>
</item>
<item>
<title>rh.FM_RBDS_demo</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/waveforms/rh.fm_rbds_demo.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/waveforms/rh.fm_rbds_demo.readme/</guid>
<description>REDHAWK FM_RBDS_demo Description Contains the source and build script for the REDHAWK FM_RBDS_demo waveform. This waveform processes the RBDS digitial message present in broadcast FM radio signals. This waveform tunes and filters the signal, performs a BPSK demodulation, then decodes the RBDS data.
Installation This is a waveform project; therefore, it does not need to be built. It must be installed into the $SDRROOT/dom/waveforms directory. To install it, open the project in the REDHAWK IDE and drag it into the Target SDR folder.</description>
</item>
<item>
<title>rh.FM_RBDS_demo</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/waveforms/rh.fm_rbds_demo.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/waveforms/rh.fm_rbds_demo.readme/</guid>
<description>REDHAWK FM_RBDS_demo Description Contains the source and build script for the REDHAWK FM_RBDS_demo waveform. This waveform processes the RBDS digitial message present in broadcast FM radio signals. This waveform tunes and filters the signal, performs a BPSK demodulation, then decodes the RBDS data.
Installation This is a waveform project; therefore, it does not need to be built. It must be installed into the $SDRROOT/dom/waveforms directory. To install it, open the project in the REDHAWK IDE and drag it into the Target SDR folder.</description>
</item>
<item>
<title>rh.FM_mono_demo</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/waveforms/rh.fm_mono_demo.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/waveforms/rh.fm_mono_demo.readme/</guid>
<description>REDHAWK FM_mono_demo Description Contains the source and build script for the REDHAWK FM_mono_demo waveform. This waveform processes the mono audio channel of broadcast FM Radio.
Installation This is a waveform project; therefore, it does not need to be built. It must be installed into the $SDRROOT/dom/waveforms directory. To install it, open the project in the REDHAWK IDE and drag it into the Target SDR folder.</description>
</item>
<item>
<title>rh.FM_mono_demo</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/waveforms/rh.fm_mono_demo.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/waveforms/rh.fm_mono_demo.readme/</guid>
<description>REDHAWK FM_mono_demo Description Contains the source and build script for the REDHAWK FM_mono_demo waveform. This waveform processes the mono audio channel of broadcast FM Radio.
Installation This is a waveform project; therefore, it does not need to be built. It must be installed into the $SDRROOT/dom/waveforms directory. To install it, open the project in the REDHAWK IDE and drag it into the Target SDR folder.</description>
</item>
<item>
<title>rh.FM_mono_demo</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/waveforms/rh.fm_mono_demo.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/waveforms/rh.fm_mono_demo.readme/</guid>
<description>REDHAWK FM_mono_demo Description Contains the source and build script for the REDHAWK FM_mono_demo waveform. This waveform processes the mono audio channel of broadcast FM Radio.
Installation This is a waveform project; therefore, it does not need to be built. It must be installed into the $SDRROOT/dom/waveforms directory. To install it, open the project in the REDHAWK IDE and drag it into the Target SDR folder.</description>
</item>
<item>
<title>rh.FileReader</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/components/rh.filereader.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/components/rh.filereader.readme/</guid>
<description>REDHAWK rh.FileReader Description Contains the source and build script for the REDHAWK rh.FileReader component. The rh.FileReader component reads data from a file on the SCA or local file system, and streams the data out a BulkIO output port.
Installation This asset requires the rh.blueFileLib and rh.RedhawkDevUtils shared libraries. These shared libraries must be installed in order to build and run this asset. To build from source, run the build.sh script.</description>
</item>
<item>
<title>rh.FileReader</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/components/rh.filereader.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/components/rh.filereader.readme/</guid>
<description>REDHAWK rh.FileReader Description Contains the source and build script for the REDHAWK rh.FileReader component. The rh.FileReader component reads data from a file on the SCA or local file system, and streams the data out a BulkIO output port.
Installation This asset requires the rh.blueFileLib and rh.RedhawkDevUtils shared libraries. These shared libraries must be installed in order to build and run this asset. To build from source, run the build.sh script.</description>
</item>
<item>
<title>rh.FileReader</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/components/rh.filereader.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/components/rh.filereader.readme/</guid>
<description>REDHAWK rh.FileReader Description Contains the source and build script for the REDHAWK rh.FileReader component. The rh.FileReader component reads data from a file on the SCA or local file system, and streams the data out a BulkIO output port.
Installation This asset requires the rh.blueFileLib and rh.RedhawkDevUtils shared libraries. These shared libraries must be installed in order to build and run this asset. To build from source, run the build.sh script.</description>
</item>
<item>
<title>rh.FileWriter</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/components/rh.filewriter.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/components/rh.filewriter.readme/</guid>
<description>REDHAWK rh.FileWriter Description Contains the source and build script for the REDHAWK rh.FileWriter component. The rh.FileWriter component receives streaming data from the BulkIO provides (input) ports and writes the data to a file on the SCA or local file system.
Installation This asset requires the rh.blueFileLib and rh.RedhawkDevUtils shared libraries. These shared libraries must be installed in order to build and run this asset. To build from source, run the build.</description>
</item>
<item>
<title>rh.FileWriter</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/components/rh.filewriter.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/components/rh.filewriter.readme/</guid>
<description>REDHAWK rh.FileWriter Description Contains the source and build script for the REDHAWK rh.FileWriter component. The rh.FileWriter component receives streaming data from the BulkIO provides (input) ports and writes the data to a file on the SCA or local file system.
Installation This asset requires the rh.blueFileLib and rh.RedhawkDevUtils shared libraries. These shared libraries must be installed in order to build and run this asset. To build from source, run the build.</description>
</item>
<item>
<title>rh.FileWriter</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/components/rh.filewriter.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/components/rh.filewriter.readme/</guid>
<description>REDHAWK rh.FileWriter Description Contains the source and build script for the REDHAWK rh.FileWriter component. The rh.FileWriter component receives streaming data from the BulkIO provides (input) ports and writes the data to a file on the SCA or local file system.
Installation This asset requires the rh.blueFileLib and rh.RedhawkDevUtils shared libraries. These shared libraries must be installed in order to build and run this asset. To build from source, run the build.</description>
</item>
<item>
<title>rh.FmRdsSimulator</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/devices/rh.fmrdssimulator.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/devices/rh.fmrdssimulator.readme/</guid>
<description>REDHAWK rh.FmRdsSimulator Description Contains the source and build script for the REDHAWK rh.FmRdsSimulator device. This device is designed to be used in conjunction with the libRfSimulators library. Using the simulator library, this FRONTEND Interfaces compliant REDHAWK device will generate FM modulated mono or stereo audio with RDS encoded PI (Call Sign), PS (Short Text), and RT (Full Text) data.
Additional documentation is available within the libRfSimulators README.
Installation This asset requires the libRfSimulators shared library, which must be installed in order to build and run this asset.</description>
</item>
<item>
<title>rh.FmRdsSimulator</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/devices/rh.fmrdssimulator.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/devices/rh.fmrdssimulator.readme/</guid>
<description>REDHAWK rh.FmRdsSimulator Description Contains the source and build script for the REDHAWK rh.FmRdsSimulator device. This device is designed to be used in conjunction with the libRfSimulators library. Using the simulator library, this FRONTEND Interfaces compliant REDHAWK device will generate FM modulated mono or stereo audio with RDS encoded PI (Call Sign), PS (Short Text), and RT (Full Text) data.
Additional documentation is available within the libRfSimulators README.
Installation This asset requires the libRfSimulators shared library, which must be installed in order to build and run this asset.</description>
</item>
<item>
<title>rh.FmRdsSimulator</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/devices/rh.fmrdssimulator.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/devices/rh.fmrdssimulator.readme/</guid>
<description>REDHAWK rh.FmRdsSimulator Description Contains the source and build script for the REDHAWK rh.FmRdsSimulator device. This device is designed to be used in conjunction with the libRfSimulators library. Using the simulator library, this FRONTEND Interfaces compliant REDHAWK device will generate FM modulated mono or stereo audio with RDS encoded PI (Call Sign), PS (Short Text), and RT (Full Text) data.
Additional documentation is available within the libRfSimulators README.
Installation This asset requires the libRfSimulators shared library, which must be installed in order to build and run this asset.</description>
</item>
<item>
<title>rh.HardLimit</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/components/rh.hardlimit.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/components/rh.hardlimit.readme/</guid>
<description>REDHAWK rh.HardLimit Description Contains the source and build script for the REDHAWK rh.HardLimit component. This component thresholds data so that all data is between the upper and lower limit as specified by the properties.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.HardLimit</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/components/rh.hardlimit.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/components/rh.hardlimit.readme/</guid>
<description>REDHAWK rh.HardLimit Description Contains the source and build script for the REDHAWK rh.HardLimit component. This component thresholds data so that all data is between the upper and lower limit as specified by the properties.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.HardLimit</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/components/rh.hardlimit.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/components/rh.hardlimit.readme/</guid>
<description>REDHAWK rh.HardLimit Description Contains the source and build script for the REDHAWK rh.HardLimit component. This component thresholds data so that all data is between the upper and lower limit as specified by the properties.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.MSDD</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/devices/rh.msdd.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/devices/rh.msdd.readme/</guid>
<description>REDHAWK rh.MSDD Description Contains the source and build script for the REDHAWK rh.MSDD device. This device is a FRONTEND Interfaces compliant device for the Midwest Microwave MSDD-3000&frasl;6000 receiver.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install. Note: root privileges (sudo) may be required to install.
Troubleshooting The msdd_configuration property is used to setup the basic network connectivity between the MSDD hardware and the REDHAWK device.</description>
</item>
<item>
<title>rh.MSDD</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/devices/rh.msdd.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/devices/rh.msdd.readme/</guid>
<description>REDHAWK rh.MSDD ## Table of Contents
Description Properties Installation Troubleshooting Description The REDHAWK rh.MSDD device is a FRONTEND 2.0 Interfaces (FEI) compliant device for the Midwest Microwave MSDD-3000/6000/0660 series receiver. The rh.MSDD device is written in the Python programming language and communicates with receiver using the host&rsquo;s network interface. The rh.MSDD properties described below determine the connection and tuner output configuration the MSDD radio. The command formats and descriptions are documented in the MSDD API document from Midwest Microwave Systems.</description>
</item>
<item>
<title>rh.MSDD_Controller</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/devices/rh.msdd_controller.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/devices/rh.msdd_controller.readme/</guid>
<description>REDHAWK rh.MSDD_Controller ## Table of Contents
Description Properties Installation Troubleshooting Description The REDHAWK rh.MSDD_Controller is the AggregateDevice parent for each child receiver channel (CompositeMSDD) of the source MSDD radio. The CompositeMSDD is a specialized version of the the rh.MSDD device. The MSDD_Controller implements the life-cycle methods that will be used in FEI 3.0 to define parent/child relationships. A proper FEI 3.0 design would have one MSDD_Controller (parent) and N WBDDC modules (child/parent) for M NBDDC modules (child).</description>
</item>
<item>
<title>rh.RBDSDecoder</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/components/rh.rbdsdecoder.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/components/rh.rbdsdecoder.readme/</guid>
<description>REDHAWK rh.RBDSDecoder Description Contains the source and build script for the REDHAWK rh.RBDSDecoder component. This component decodes RBDS data from broadcast FM using the RBDS Standard Specification.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.RBDSDecoder</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/components/rh.rbdsdecoder.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/components/rh.rbdsdecoder.readme/</guid>
<description>REDHAWK rh.RBDSDecoder Description Contains the source and build script for the REDHAWK rh.RBDSDecoder component. This component decodes RBDS data from broadcast FM using the RBDS Standard Specification.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.RBDSDecoder</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/components/rh.rbdsdecoder.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/components/rh.rbdsdecoder.readme/</guid>
<description>REDHAWK rh.RBDSDecoder Description Contains the source and build script for the REDHAWK rh.RBDSDecoder component. This component decodes RBDS data from broadcast FM using the RBDS Standard Specification.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.RTL2832U</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/devices/rh.rtl2832u.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/devices/rh.rtl2832u.readme/</guid>
<description>REDHAWK rh.RTL2832U Description Contains the source and build script for the REDHAWK rh.RTL2832U device. Realtek RTL2832U usb dongle device using librtlsdr. Supports various tuners, including Elonics E4000, Rafael Micro R820T and R828D, Fitipower FC0012 and FC0013, and FCI FC2580.
Dependencies This device depends on the RTL SDR library, version 0.5.2.
Installation This asset requires the librtlsdr library. This must be installed in order to build and run this asset. To build from source, run the build.</description>
</item>
<item>
<title>rh.RTL2832U</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/devices/rh.rtl2832u.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/devices/rh.rtl2832u.readme/</guid>
<description>REDHAWK rh.RTL2832U Description Contains the source and build script for the REDHAWK rh.RTL2832U device. Realtek RTL2832U usb dongle device using librtlsdr. Supports various tuners, including Elonics E4000, Rafael Micro R820T and R828D, Fitipower FC0012 and FC0013, and FCI FC2580.
Dependencies This device depends on the RTL SDR library, version 0.5.2.
Installation This asset requires the librtlsdr library. This must be installed in order to build and run this asset. To build from source, run the build.</description>
</item>
<item>
<title>rh.RedhawkDevUtils</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/libraries/rh.redhawkdevutils.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/libraries/rh.redhawkdevutils.readme/</guid>
<description>REDHAWK rh.RedhawkDevUtils Description Contains the source and build script for the REDHAWK rh.RedhawkDevUtils shared library.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.RedhawkDevUtils</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/libraries/rh.redhawkdevutils.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/libraries/rh.redhawkdevutils.readme/</guid>
<description>REDHAWK rh.RedhawkDevUtils Description Contains the source and build script for the REDHAWK rh.RedhawkDevUtils shared library.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.RedhawkDevUtils</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/libraries/rh.redhawkdevutils.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/libraries/rh.redhawkdevutils.readme/</guid>
<description>REDHAWK rh.RedhawkDevUtils Description Contains the source and build script for the REDHAWK rh.RedhawkDevUtils shared library.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.SigGen</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/components/rh.siggen.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/components/rh.siggen.readme/</guid>
<description>REDHAWK rh.SigGen Description Contains the source and build script for the REDHAWK rh.SigGen component, a signal generator that creates different output signals based on its configuration. It contains an implementation in each of the supported languages (Python, C++, Java) as an example of a component with multiple implementations.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.SigGen</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/components/rh.siggen.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/components/rh.siggen.readme/</guid>
<description>REDHAWK rh.SigGen Description Contains the source and build script for the REDHAWK rh.SigGen component, a signal generator that creates different output signals based on its configuration. It contains an implementation in each of the supported languages (Python, C++, Java) as an example of a component with multiple implementations.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.SigGen</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/components/rh.siggen.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/components/rh.siggen.readme/</guid>
<description>REDHAWK rh.SigGen Description Contains the source and build script for the REDHAWK rh.SigGen component, a signal generator that creates different output signals based on its configuration. It contains implementations in C++ and Python, as an example of a component with multiple implementations.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.SinkSDDS</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/components/rh.sinksdds.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/components/rh.sinksdds.readme/</guid>
<description>REDHAWK rh.SinkSDDS Table of Contents Description Installation Design Properties SRI Keywords Known Issues Description The rh.SinkSDDS component takes in a single BulkIO stream on one of the three input ports and serves a single SDDS stream over the provided multicast or unicast address. The component is currently limited to a single stream. The component performs a BulkIO attach call on any existing connections at start and calls attach on any dynamically made connections during runtime.</description>
</item>
<item>
<title>rh.SinkSDDS</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/components/rh.sinksdds.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/components/rh.sinksdds.readme/</guid>
<description>REDHAWK rh.SinkSDDS Table of Contents Description Installation Design Properties SRI Keywords Known Issues Description The rh.SinkSDDS component takes in a single BulkIO stream on one of the three input ports and serves a single SDDS stream over the provided multicast or unicast address. The component is currently limited to a single stream. The component performs a BulkIO attach call on any existing connections at start and calls attach on any dynamically made connections during runtime.</description>
</item>
<item>
<title>rh.SinkSDDS</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/components/rh.sinksdds.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/components/rh.sinksdds.readme/</guid>
<description>REDHAWK rh.SinkSDDS Table of Contents Description Installation Design Properties SRI Keywords Known Issues Description The rh.SinkSDDS component takes in a single BulkIO stream on one of the three input ports and serves a single SDDS stream over the provided multicast or unicast address. The component is currently limited to a single stream. The component performs a BulkIO attach call on any existing connections at start and calls attach on any dynamically made connections during runtime.</description>
</item>
<item>
<title>rh.SinkVITA49</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/components/rh.sinkvita49.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/components/rh.sinkvita49.readme/</guid>
<description>REDHAWK rh.SinkVITA49 Description Contains the source and build script for the REDHAWK rh.SinkVITA49 component. The rh.SinkVITA49 component creates a UDP/multicast or TCP VITA49 packet stream and converts the data and SRI Keywords to IF data packets and Context packets for use within/between/outside of a REDHAWK domain application.
Installation This asset requires the rh.VITA49 shared library. This shared library must be installed in order to build and run this asset. To build from source, run the build.</description>
</item>
<item>
<title>rh.SinkVITA49</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/components/rh.sinkvita49.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/components/rh.sinkvita49.readme/</guid>
<description>REDHAWK rh.SinkVITA49 Description Contains the source and build script for the REDHAWK rh.SinkVITA49 component. The rh.SinkVITA49 component creates a UDP/multicast or TCP VITA49 packet stream and converts the data and SRI Keywords to IF data packets and Context packets for use within/between/outside of a REDHAWK domain application.
Installation This asset requires the rh.VITA49 shared library. This shared library must be installed in order to build and run this asset. To build from source, run the build.</description>
</item>
<item>
<title>rh.SinkVITA49</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/components/rh.sinkvita49.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/components/rh.sinkvita49.readme/</guid>
<description>REDHAWK rh.SinkVITA49 Description Contains the source and build script for the REDHAWK rh.SinkVITA49 component. The rh.SinkVITA49 component creates a UDP/multicast or TCP VITA49 packet stream and converts the data and SRI Keywords to IF data packets and Context packets for use within/between/outside of a REDHAWK domain application.
Installation This asset requires the rh.VITA49 shared library. This shared library must be installed in order to build and run this asset. To build from source, run the build.</description>
</item>
<item>
<title>rh.SourceSDDS</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/components/rh.sourcesdds.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/components/rh.sourcesdds.readme/</guid>
<description>REDHAWK rh.SourceSDDS Table of Contents Description Installation Design Properties Usage Unimplemented Optimizations Description The rh.SourceSDDS consumes a single SDDS formatted multicast or unicast UDP stream and outputs it via the corresponding BulkIO port. The component provides a number of status properties including buffer monitoring of both kernel space socket and internal component buffers. Source IP and port information may either be expressed via the attachment override property or via the BulkIO SDDS ports attach call.</description>
</item>
<item>
<title>rh.SourceSDDS</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/components/rh.sourcesdds.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/components/rh.sourcesdds.readme/</guid>
<description>REDHAWK rh.SourceSDDS Table of Contents Description Installation Design Properties Usage Unimplemented Optimizations Description The rh.SourceSDDS consumes a single SDDS formatted multicast or unicast UDP stream and outputs it via the corresponding BulkIO port. The component provides a number of status properties including buffer monitoring of both kernel space socket and internal component buffers. Source IP and port information may either be expressed via the attachment override property or via the BulkIO SDDS ports attach call.</description>
</item>
<item>
<title>rh.SourceSDDS</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/components/rh.sourcesdds.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/components/rh.sourcesdds.readme/</guid>
<description>REDHAWK rh.SourceSDDS Table of Contents Description Installation Design Properties Usage Unimplemented Optimizations Description The rh.SourceSDDS consumes a single SDDS formatted multicast or unicast UDP stream and outputs it via the corresponding BulkIO port. The component provides a number of status properties including buffer monitoring of both kernel space socket and internal component buffers. Source IP and port information may either be expressed via the attachment override property or via the BulkIO SDDS ports attach call.</description>
</item>
<item>
<title>rh.SourceVITA49</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/components/rh.sourcevita49.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/components/rh.sourcevita49.readme/</guid>
<description>REDHAWK rh.SourceVITA49 Description Contains the source and build script for the REDHAWK rh.SourceVITA49 component. The rh.SourceVITA49 component connects to a UDP/multicast or TCP VITA49 packet stream and converts the headers to SRI Keywords and data to the BULKIO interface of the user&rsquo;s choice for use within REDHAWK domain applications.
Installation This asset requires the rh.VITA49 shared library. This shared library must be installed in order to build and run this asset.</description>
</item>
<item>
<title>rh.SourceVITA49</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/components/rh.sourcevita49.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/components/rh.sourcevita49.readme/</guid>
<description>REDHAWK rh.SourceVITA49 Description Contains the source and build script for the REDHAWK rh.SourceVITA49 component. The rh.SourceVITA49 component connects to a UDP/multicast or TCP VITA49 packet stream and converts the headers to SRI Keywords and data to the BULKIO interface of the user&rsquo;s choice for use within REDHAWK domain applications.
Installation This asset requires the rh.VITA49 shared library. This shared library must be installed in order to build and run this asset.</description>
</item>
<item>
<title>rh.SourceVITA49</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/components/rh.sourcevita49.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/components/rh.sourcevita49.readme/</guid>
<description>REDHAWK rh.SourceVITA49 Description Contains the source and build script for the REDHAWK rh.SourceVITA49 component. The rh.SourceVITA49 component connects to a UDP/multicast or TCP VITA49 packet stream and converts the headers to SRI Keywords and data to the BULKIO interface of the user&rsquo;s choice for use within REDHAWK domain applications.
Installation This asset requires the rh.VITA49 shared library. This shared library must be installed in order to build and run this asset.</description>
</item>
<item>
<title>rh.TuneFilterDecimate</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/components/rh.tunefilterdecimate.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/components/rh.tunefilterdecimate.readme/</guid>
<description>REDHAWK rh.TuneFilterDecimate Description Contains the source and build script for the REDHAWK rh.TuneFilterDecimate component. This component selects a narrowband cut from an input signal. Tuning, filtering and decimation are used to remove noise and interference in other frequency bands and reduce the sampling rate for more efficient downstream processing.
Installation This asset requires the rh.dsp and rh.fftlib shared libraries. These must be installed in order to build and run this asset.</description>
</item>
<item>
<title>rh.TuneFilterDecimate</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/components/rh.tunefilterdecimate.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/components/rh.tunefilterdecimate.readme/</guid>
<description>REDHAWK rh.TuneFilterDecimate Description Contains the source and build script for the REDHAWK rh.TuneFilterDecimate component. This component selects a narrowband cut from an input signal. Tuning, filtering and decimation are used to remove noise and interference in other frequency bands and reduce the sampling rate for more efficient downstream processing.
Installation This asset requires the rh.dsp and rh.fftlib shared libraries. These must be installed in order to build and run this asset.</description>
</item>
<item>
<title>rh.TuneFilterDecimate</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/components/rh.tunefilterdecimate.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/components/rh.tunefilterdecimate.readme/</guid>
<description>REDHAWK rh.TuneFilterDecimate Description Contains the source and build script for the REDHAWK rh.TuneFilterDecimate component. This component selects a narrowband cut from an input signal. Tuning, filtering and decimation are used to remove noise and interference in other frequency bands and reduce the sampling rate for more efficient downstream processing.
Installation This asset requires the rh.dsp and rh.fftlib shared libraries. These must be installed in order to build and run this asset.</description>
</item>
<item>
<title>rh.USRP_UHD</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/devices/rh.usrp_uhd.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/devices/rh.usrp_uhd.readme/</guid>
<description>REDHAWK rh.USRP_UHD Description Contains the source and build script for the REDHAWK rh.USRP_UHD device. This device is a FRONTEND Interfaces compliant device for the USRP that requires the UHD host code and supporting libraries to be installed.
Installation This asset requires the uhd library, which must be installed in order to build and run this asset. To build from source, run the build.sh script. To install to $SDRROOT, run build.</description>
</item>
<item>
<title>rh.USRP_UHD</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/devices/rh.usrp_uhd.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/devices/rh.usrp_uhd.readme/</guid>
<description>REDHAWK rh.USRP_UHD Description Contains the source and build script for the REDHAWK rh.USRP_UHD device. This device is a FRONTEND Interfaces compliant device for the USRP that requires the UHD host code and supporting libraries to be installed.
Installation This asset requires the uhd library, which must be installed in order to build and run this asset. To build from source, run the build.sh script. To install to $SDRROOT, run build.</description>
</item>
<item>
<title>rh.USRP_UHD</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/devices/rh.usrp_uhd.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/devices/rh.usrp_uhd.readme/</guid>
<description>REDHAWK rh.USRP_UHD Description Contains the source and build script for the REDHAWK rh.USRP_UHD device. This device is a FRONTEND Interfaces compliant device for the USRP that requires the UHD host code and supporting libraries to be installed.
Installation This asset requires the uhd library, which must be installed in order to build and run this asset. To build from source, run the build.sh script. To install to $SDRROOT, run build.</description>
</item>
<item>
<title>rh.VITA49</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/libraries/rh.vita49.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/libraries/rh.vita49.readme/</guid>
<description>REDHAWK rh.VITA49 Description Contains the source and build script for the REDHAWK rh.VITA49 shared library.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install. Note: root privileges (sudo) may be required to install.</description>
</item>
<item>
<title>rh.VITA49</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/libraries/rh.vita49.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/libraries/rh.vita49.readme/</guid>
<description>REDHAWK rh.VITA49 Description Contains the source and build script for the REDHAWK rh.VITA49 shared library.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install. Note: root privileges (sudo) may be required to install.</description>
</item>
<item>
<title>rh.VITA49</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/libraries/rh.vita49.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/libraries/rh.vita49.readme/</guid>
<description>REDHAWK rh.VITA49 Description Contains the source and build script for the REDHAWK rh.VITA49 shared library.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install. Note: root privileges (sudo) may be required to install.</description>
</item>
<item>
<title>rh.agc</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/components/rh.agc.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/components/rh.agc.readme/</guid>
<description>REDHAWK rh.agc Description Contains the source and build script for the REDHAWK rh.agc component. This component provides automatic gain control to normalize power levels for real or complex signals.
Installation This asset requires the rh.dsp shared library. This must be installed in order to build and run this asset. To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.agc</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/components/rh.agc.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/components/rh.agc.readme/</guid>
<description>REDHAWK rh.agc Description Contains the source and build script for the REDHAWK rh.agc component. This component provides automatic gain control to normalize power levels for real or complex signals.
Installation This asset requires the rh.dsp shared library. This must be installed in order to build and run this asset. To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.agc</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/components/rh.agc.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/components/rh.agc.readme/</guid>
<description>REDHAWK rh.agc Description Contains the source and build script for the REDHAWK rh.agc component. This component provides automatic gain control to normalize power levels for real or complex signals.
Installation This asset requires the rh.dsp shared library. This must be installed in order to build and run this asset. To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.autocorrelate</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/components/rh.autocorrelate.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/components/rh.autocorrelate.readme/</guid>
<description>REDHAWK rh.autocorrelate Description Contains the source and build script for the REDHAWK rh.autocorrelate component. This component is a frequency domain implementation of a windowed autocorrelation algorithm. This algorithm works by windowing the input data to break it up into separate frames. Each frame is independently autocorrelated with each other using a &quot;full&quot; autocorrelation, which includes the full transient response. This is efficiently computed in the frequency domain.
Installation This asset requires the rh.</description>
</item>
<item>
<title>rh.autocorrelate</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/components/rh.autocorrelate.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/components/rh.autocorrelate.readme/</guid>
<description>REDHAWK rh.autocorrelate Description Contains the source and build script for the REDHAWK rh.autocorrelate component. This component is a frequency domain implementation of a windowed autocorrelation algorithm. This algorithm works by windowing the input data to break it up into separate frames. Each frame is independently autocorrelated with each other using a &quot;full&quot; autocorrelation, which includes the full transient response. This is efficiently computed in the frequency domain.
Installation This asset requires the rh.</description>
</item>
<item>
<title>rh.autocorrelate</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/components/rh.autocorrelate.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/components/rh.autocorrelate.readme/</guid>
<description>REDHAWK rh.autocorrelate Description Contains the source and build script for the REDHAWK rh.autocorrelate component. This component is a frequency domain implementation of a windowed autocorrelation algorithm. This algorithm works by windowing the input data to break it up into separate frames. Each frame is independently autocorrelated with each other using a &quot;full&quot; autocorrelation, which includes the full transient response. This is efficiently computed in the frequency domain.
Installation This asset requires the rh.</description>
</item>
<item>
<title>rh.basic_components_demo</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/waveforms/rh.basic_components_demo.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/waveforms/rh.basic_components_demo.readme/</guid>
<description>REDHAWK basic_components_demo Description Contains the source and build script for the REDHAWK basic_components_demo waveform. This waveform is an example using a few core assets. Data from an rh.SigGen is created and manipulated to demonstrate the use of REDHAWK.
Installation This is a waveform project; therefore, it does not need to be built. It must be installed into the $SDRROOT/dom/waveforms directory. To install it, open the project in the REDHAWK IDE and drag it into the Target SDR folder.</description>
</item>
<item>
<title>rh.basic_components_demo</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/waveforms/rh.basic_components_demo.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/waveforms/rh.basic_components_demo.readme/</guid>
<description>REDHAWK basic_components_demo Description Contains the source and build script for the REDHAWK basic_components_demo waveform. This waveform is an example using a few core assets. Data from an rh.SigGen is created and manipulated to demonstrate the use of REDHAWK.
Installation This is a waveform project; therefore, it does not need to be built. It must be installed into the $SDRROOT/dom/waveforms directory. To install it, open the project in the REDHAWK IDE and drag it into the Target SDR folder.</description>
</item>
<item>
<title>rh.basic_components_demo</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/waveforms/rh.basic_components_demo.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/waveforms/rh.basic_components_demo.readme/</guid>
<description>REDHAWK basic_components_demo Description Contains the source and build script for the REDHAWK basic_components_demo waveform. This waveform is an example using a few core assets. Data from an rh.SigGen is created and manipulated to demonstrate the use of REDHAWK.
Installation This is a waveform project; therefore, it does not need to be built. It must be installed into the $SDRROOT/dom/waveforms directory. To install it, open the project in the REDHAWK IDE and drag it into the Target SDR folder.</description>
</item>
<item>
<title>rh.blueFileLib</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/libraries/rh.bluefilelib.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/libraries/rh.bluefilelib.readme/</guid>
<description>REDHAWK rh.blueFileLib Description Contains the source and build script for the REDHAWK rh.blueFileLib shared library.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.blueFileLib</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/libraries/rh.bluefilelib.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/libraries/rh.bluefilelib.readme/</guid>
<description>REDHAWK rh.blueFileLib Description Contains the source and build script for the REDHAWK rh.blueFileLib shared library.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.blueFileLib</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/libraries/rh.bluefilelib.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/libraries/rh.bluefilelib.readme/</guid>
<description>REDHAWK rh.blueFileLib Description Contains the source and build script for the REDHAWK rh.blueFileLib shared library.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.dsp</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/libraries/rh.dsp.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/libraries/rh.dsp.readme/</guid>
<description>REDHAWK rh.dsp Description Contains the source and build script for the REDHAWK rh.dsp shared library.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.dsp</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/libraries/rh.dsp.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/libraries/rh.dsp.readme/</guid>
<description>REDHAWK rh.dsp Description Contains the source and build script for the REDHAWK rh.dsp shared library.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.dsp</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/libraries/rh.dsp.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/libraries/rh.dsp.readme/</guid>
<description>REDHAWK rh.dsp Description Contains the source and build script for the REDHAWK rh.dsp shared library.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.fastfilter</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/components/rh.fastfilter.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/components/rh.fastfilter.readme/</guid>
<description>REDHAWK rh.fastfilter Description Contains the source and build script for the REDHAWK rh.fastfilter component. This component is a FIR filter implementation using the FFT-based overlap-add technique.
Installation This asset requires the rh.dsp and rh.fftlib shared libraries. These must be installed in order to build and run this asset. To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.fastfilter</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/components/rh.fastfilter.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/components/rh.fastfilter.readme/</guid>
<description>REDHAWK rh.fastfilter Description Contains the source and build script for the REDHAWK rh.fastfilter component. This component is a FIR filter implementation using the FFT-based overlap-add technique.
Installation This asset requires the rh.dsp and rh.fftlib shared libraries. These must be installed in order to build and run this asset. To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.fastfilter</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/components/rh.fastfilter.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/components/rh.fastfilter.readme/</guid>
<description>REDHAWK rh.fastfilter Description Contains the source and build script for the REDHAWK rh.fastfilter component. This component is a FIR filter implementation using the FFT-based overlap-add technique.
Installation This asset requires the rh.dsp and rh.fftlib shared libraries. These must be installed in order to build and run this asset. To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.fcalc</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/components/rh.fcalc.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/components/rh.fcalc.readme/</guid>
<description>REDHAWK rh.fcalc Description Contains the source and build script for the REDHAWK rh.fcalc component. This component allows users to perform calculations on one or two input streams simultaneously on an element by element basis. Set the equation property for the function you wish to calculate with the variable a as the first input and b as the second input.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.</description>
</item>
<item>
<title>rh.fcalc</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/components/rh.fcalc.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/components/rh.fcalc.readme/</guid>
<description>REDHAWK rh.fcalc Description Contains the source and build script for the REDHAWK rh.fcalc component. This component allows users to perform calculations on one or two input streams simultaneously on an element by element basis. Set the equation property for the function you wish to calculate with the variable a as the first input and b as the second input.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.</description>
</item>
<item>
<title>rh.fcalc</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/components/rh.fcalc.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/components/rh.fcalc.readme/</guid>
<description>REDHAWK rh.fcalc Description Contains the source and build script for the REDHAWK rh.fcalc component. This component allows users to perform calculations on one or two input streams simultaneously on an element by element basis. Set the equation property for the function you wish to calculate with the variable a as the first input and b as the second input.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.</description>
</item>
<item>
<title>rh.fftlib</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/libraries/rh.fftlib.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/libraries/rh.fftlib.readme/</guid>
<description>REDHAWK rh.fftlib Description Contains the source and build script for the REDHAWK rh.fftlib shared library.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.fftlib</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/libraries/rh.fftlib.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/libraries/rh.fftlib.readme/</guid>
<description>REDHAWK rh.fftlib Description Contains the source and build script for the REDHAWK rh.fftlib shared library.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.fftlib</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/libraries/rh.fftlib.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/libraries/rh.fftlib.readme/</guid>
<description>REDHAWK rh.fftlib Description Contains the source and build script for the REDHAWK rh.fftlib shared library.
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.psd</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/components/rh.psd.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/components/rh.psd.readme/</guid>
<description>REDHAWK rh.psd Description Contains the source and build script for the REDHAWK rh.psd component. FFT-based power spectral density (PSD) component that transforms data from the time domain to the frequency domain. Output data is framed data where each frame contains the frequency domain representation of a subsection of the input.
Installation This asset requires the rh.dsp and rh.fftlib shared libraries. These must be installed in order to build and run this asset.</description>
</item>
<item>
<title>rh.psd</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/components/rh.psd.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/components/rh.psd.readme/</guid>
<description>REDHAWK rh.psd Description Contains the source and build script for the REDHAWK rh.psd component. FFT-based power spectral density (PSD) component that transforms data from the time domain to the frequency domain. Output data is framed data where each frame contains the frequency domain representation of a subsection of the input.
Installation This asset requires the rh.dsp and rh.fftlib shared libraries. These must be installed in order to build and run this asset.</description>
</item>
<item>
<title>rh.psd</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/components/rh.psd.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/components/rh.psd.readme/</guid>
<description>REDHAWK rh.psd Description Contains the source and build script for the REDHAWK rh.psd component. FFT-based power spectral density (PSD) component that transforms data from the time domain to the frequency domain. Output data is framed data where each frame contains the frequency domain representation of a subsection of the input.
Installation This asset requires the rh.dsp and rh.fftlib shared libraries. These must be installed in order to build and run this asset.</description>
</item>
<item>
<title>rh.psk_soft</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/components/rh.psk_soft.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/components/rh.psk_soft.readme/</guid>
<description>REDHAWK rh.psk_soft Description Contains the source and build script for the REDHAWK rh.psk_soft PSK demodulator component. The component takes complex baseband pre-d data and does a PSK demodulation of either BPSK, QPSK, or 8-PSK and outputs symbols and bits. Input must be an integer number of samples per symbol (recommended 8-10).
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.psk_soft</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/components/rh.psk_soft.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/components/rh.psk_soft.readme/</guid>
<description>REDHAWK rh.psk_soft Description Contains the source and build script for the REDHAWK rh.psk_soft PSK demodulator component. The component takes complex baseband pre-d data and does a PSK demodulation of either BPSK, QPSK, or 8-PSK and outputs symbols and bits. Input must be an integer number of samples per symbol (recommended 8-10).
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.psk_soft</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/components/rh.psk_soft.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/components/rh.psk_soft.readme/</guid>
<description>REDHAWK rh.psk_soft Description Contains the source and build script for the REDHAWK rh.psk_soft PSK demodulator component. The component takes complex baseband pre-d data and does a PSK demodulation of either BPSK, QPSK, or 8-PSK and outputs symbols and bits. Input must be an integer number of samples per symbol (recommended 8-10).
Installation To build from source, run the build.sh script. To install to $SDRROOT, run build.sh install.</description>
</item>
<item>
<title>rh.short_file_to_float_file</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/waveforms/rh.short_file_to_float_file.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/waveforms/rh.short_file_to_float_file.readme/</guid>
<description>REDHAWK short_file_to_float_file Description Contains the source and build script for the REDHAWK short_file_to_float_file waveform. This waveform reads in a file containing shorts, converts them to floats in REDHAWK and then writes out the file. This waveform uses three components, rh.FileReader, rh.DataConverter, and rh.FileWriter.
Installation This is a waveform project; therefore, it does not need to be built. It must be installed into the $SDRROOT/dom/waveforms directory. To install it, open the project in the REDHAWK IDE and drag it into the Target SDR folder.</description>
</item>
<item>
<title>rh.short_file_to_float_file</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/waveforms/rh.short_file_to_float_file.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/waveforms/rh.short_file_to_float_file.readme/</guid>
<description>REDHAWK short_file_to_float_file Description Contains the source and build script for the REDHAWK short_file_to_float_file waveform. This waveform reads in a file containing shorts, converts them to floats in REDHAWK and then writes out the file. This waveform uses three components, rh.FileReader, rh.DataConverter, and rh.FileWriter.
Installation This is a waveform project; therefore, it does not need to be built. It must be installed into the $SDRROOT/dom/waveforms directory. To install it, open the project in the REDHAWK IDE and drag it into the Target SDR folder.</description>
</item>
<item>
<title>rh.short_file_to_float_file</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/waveforms/rh.short_file_to_float_file.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/waveforms/rh.short_file_to_float_file.readme/</guid>
<description>REDHAWK short_file_to_float_file Description Contains the source and build script for the REDHAWK short_file_to_float_file waveform. This waveform reads in a file containing shorts, converts them to floats in REDHAWK and then writes out the file. This waveform uses three components, rh.FileReader, rh.DataConverter, and rh.FileWriter.
Installation This is a waveform project; therefore, it does not need to be built. It must be installed into the $SDRROOT/dom/waveforms directory. To install it, open the project in the REDHAWK IDE and drag it into the Target SDR folder.</description>
</item>
<item>
<title>rh.sinksocket</title>
<link>https://redhawksdr.github.io/assets/2.2-lts/components/rh.sinksocket.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.2-lts/components/rh.sinksocket.readme/</guid>
<description>REDHAWK rh.sinksocket Table of Contents Description Properties Installation Usage Description The rh.sinksocket component reads data from BulkIO ports and writes the same data to all TCP connections. Each rh.sinksocket component can operate multiple TCP connections (TCP clients or servers).
The Properties section explains how to configure the component and monitor its data throughput. The component supports the following configurations:
TCP mode (client or server) IP address (for TCP client mode) ports whether Nagle&rsquo;s algorithm for combining TCP packets is allowed whether and how endian byte reordering is done Properties The following table describes the top level properties of rh.</description>
</item>
<item>
<title>rh.sinksocket</title>
<link>https://redhawksdr.github.io/assets/2.3-lts/components/rh.sinksocket.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/2.3-lts/components/rh.sinksocket.readme/</guid>
<description>REDHAWK rh.sinksocket Table of Contents Description Properties Installation Usage Description The rh.sinksocket component reads data from BulkIO ports and writes the same data to all TCP connections. Each rh.sinksocket component can operate multiple TCP connections (TCP clients or servers).
The Properties section explains how to configure the component and monitor its data throughput. The component supports the following configurations:
TCP mode (client or server) IP address (for TCP client mode) ports whether Nagle&rsquo;s algorithm for combining TCP packets is allowed whether and how endian byte reordering is done Properties The following table describes the top level properties of rh.</description>
</item>
<item>
<title>rh.sinksocket</title>
<link>https://redhawksdr.github.io/assets/3.0-lts/components/rh.sinksocket.readme/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://redhawksdr.github.io/assets/3.0-lts/components/rh.sinksocket.readme/</guid>
<description>REDHAWK rh.sinksocket Table of Contents Description Properties Installation Usage Description The rh.sinksocket component reads data from BulkIO ports and writes the same data to all TCP connections. Each rh.sinksocket component can operate multiple TCP connections (TCP clients or servers).
The Properties section explains how to configure the component and monitor its data throughput. The component supports the following configurations: