├── .RTL2832U.wavedev ├── .cproject ├── .gitignore ├── .gitlab-ci.yml ├── .project ├── .pydevproject ├── .rh.RTL2832U.wavedev ├── .settings ├── gov.redhawk.ide.sdr.ui.prefs ├── language.settings.xml ├── org.eclipse.cdt.codan.core.prefs └── org.eclipse.cdt.core.prefs ├── COPYRIGHT ├── LICENSE ├── README.md ├── RTL2832U.prf.xml ├── RTL2832U.scd.xml ├── RTL2832U.spd.xml ├── cpp ├── Makefile.am ├── Makefile.am.ide ├── RTL2832U.cpp ├── RTL2832U.h ├── RTL2832U_base.cpp ├── RTL2832U_base.h ├── RtlDevice.cpp ├── RtlDevice.h ├── build.sh ├── configure.ac ├── main.cpp ├── reconf ├── struct_props.h └── template_impl.cpp ├── nodeconfig.py ├── rh.RTL2832U.spec └── tests ├── .md5sums ├── FEI_Compliance_Results.md ├── fei_base └── frontend_tuner_unit_test_base.py ├── test_RTL2832U.py └── test_RTL2832U_FEI.py /.RTL2832U.wavedev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/.RTL2832U.wavedev -------------------------------------------------------------------------------- /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/.cproject -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/.project -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/.pydevproject -------------------------------------------------------------------------------- /.rh.RTL2832U.wavedev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/.rh.RTL2832U.wavedev -------------------------------------------------------------------------------- /.settings/gov.redhawk.ide.sdr.ui.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | useBuild.sh=true 3 | -------------------------------------------------------------------------------- /.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/.settings/language.settings.xml -------------------------------------------------------------------------------- /.settings/org.eclipse.cdt.codan.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/.settings/org.eclipse.cdt.codan.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.cdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/.settings/org.eclipse.cdt.core.prefs -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/README.md -------------------------------------------------------------------------------- /RTL2832U.prf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/RTL2832U.prf.xml -------------------------------------------------------------------------------- /RTL2832U.scd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/RTL2832U.scd.xml -------------------------------------------------------------------------------- /RTL2832U.spd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/RTL2832U.spd.xml -------------------------------------------------------------------------------- /cpp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/cpp/Makefile.am -------------------------------------------------------------------------------- /cpp/Makefile.am.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/cpp/Makefile.am.ide -------------------------------------------------------------------------------- /cpp/RTL2832U.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/cpp/RTL2832U.cpp -------------------------------------------------------------------------------- /cpp/RTL2832U.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/cpp/RTL2832U.h -------------------------------------------------------------------------------- /cpp/RTL2832U_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/cpp/RTL2832U_base.cpp -------------------------------------------------------------------------------- /cpp/RTL2832U_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/cpp/RTL2832U_base.h -------------------------------------------------------------------------------- /cpp/RtlDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/cpp/RtlDevice.cpp -------------------------------------------------------------------------------- /cpp/RtlDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/cpp/RtlDevice.h -------------------------------------------------------------------------------- /cpp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/cpp/build.sh -------------------------------------------------------------------------------- /cpp/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/cpp/configure.ac -------------------------------------------------------------------------------- /cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/cpp/main.cpp -------------------------------------------------------------------------------- /cpp/reconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/cpp/reconf -------------------------------------------------------------------------------- /cpp/struct_props.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/cpp/struct_props.h -------------------------------------------------------------------------------- /cpp/template_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/cpp/template_impl.cpp -------------------------------------------------------------------------------- /nodeconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/nodeconfig.py -------------------------------------------------------------------------------- /rh.RTL2832U.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/rh.RTL2832U.spec -------------------------------------------------------------------------------- /tests/.md5sums: -------------------------------------------------------------------------------- 1 | 04ed7af70488e7c9b07e686ff52f881b test_RTL2832U.py 2 | -------------------------------------------------------------------------------- /tests/FEI_Compliance_Results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/tests/FEI_Compliance_Results.md -------------------------------------------------------------------------------- /tests/fei_base/frontend_tuner_unit_test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/tests/fei_base/frontend_tuner_unit_test_base.py -------------------------------------------------------------------------------- /tests/test_RTL2832U.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/tests/test_RTL2832U.py -------------------------------------------------------------------------------- /tests/test_RTL2832U_FEI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedhawkSDR/RTL2832U/HEAD/tests/test_RTL2832U_FEI.py --------------------------------------------------------------------------------