├── .gitignore ├── .gitmodules ├── AUTHORS ├── CYUSB3KIT ├── README.md ├── ssek_emu │ ├── .cproject │ ├── .project │ ├── COPYING │ ├── Release │ │ └── ssek_emu.img │ ├── cyfx_app.c │ ├── cyfx_app.h │ ├── cyfx_dscr.c │ ├── cyfx_gcc_startup.S │ ├── cyfxtx.c │ ├── error-codes.txt │ ├── fx3.ld │ ├── license.txt │ ├── makefile │ └── readme.txt └── streamer │ ├── .gitignore │ ├── App.ico │ ├── AssemblyInfo.cpp │ ├── ReadMe.txt │ ├── Streamer.cpp │ ├── Streamer.h │ ├── Streamer.resX │ ├── Streamer.sln │ ├── Streamer.vcproj │ ├── Streamer.vcxproj │ ├── app.rc │ ├── license.txt │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── DigiRED ├── README.md ├── docs │ └── DigiRED_Development_Kit.doc ├── driver │ ├── README.md │ ├── digired-windows.zip │ ├── license.txt │ └── signing │ │ ├── notes.txt │ │ ├── test1.bat │ │ └── test2.bat ├── firmware │ ├── README.md │ ├── bin │ │ ├── error-codes.txt │ │ ├── license.txt │ │ ├── readme.txt │ │ ├── usb_rx.img │ │ └── vendor-commands.txt │ ├── src │ │ └── usb_rx.zip │ └── usb_rx │ │ ├── .cproject │ │ ├── .project │ │ ├── COPYING │ │ ├── cyfx_app.c │ │ ├── cyfx_app.h │ │ ├── cyfx_dscr.c │ │ ├── cyfx_gcc_startup.S │ │ ├── cyfxgpif2config.h │ │ ├── cyfxtx.c │ │ ├── error-codes.txt │ │ ├── fx3.ld │ │ ├── license.txt │ │ ├── makefile │ │ ├── readme.txt │ │ └── vendor-commands.txt └── hardware │ ├── COPYING │ ├── README.md │ ├── digired-comparison.gvp │ ├── v1r3 │ ├── BOM │ │ ├── DigiRED_v1.0-all.pos.txt │ │ ├── DigiRED_v1.0.rpt.txt │ │ └── DigiRED_v1.0_BOM.xls │ ├── Gerbers │ │ ├── DigiRED_v1.0-B_Cu.gbl │ │ ├── DigiRED_v1.0-B_Mask.gbs │ │ ├── DigiRED_v1.0-B_Paste.gbp │ │ ├── DigiRED_v1.0-B_SilkS.gbo │ │ ├── DigiRED_v1.0-Edge_Cuts.gbr │ │ ├── DigiRED_v1.0-F_Cu.gtl │ │ ├── DigiRED_v1.0-F_Mask.gts │ │ ├── DigiRED_v1.0-F_Paste.gtp │ │ ├── DigiRED_v1.0-F_SilkS.gto │ │ ├── DigiRED_v1.0-Inner1_Cu.gbr │ │ ├── DigiRED_v1.0-Inner2_Cu.gbr │ │ ├── DigiRED_v1.0-Inner3_Cu.gbr │ │ ├── DigiRED_v1.0-Inner4_Cu.gbr │ │ ├── DigiRED_v1.0-drl_map.pho │ │ └── DigiRED_v1.0.drl │ ├── KiCAD │ │ ├── Clock Generator-cache.lib │ │ ├── Clock Generator.sch │ │ ├── Connectors-cache.lib │ │ ├── Connectors.sch │ │ ├── DigiRED_v1.0-cache.bck │ │ ├── DigiRED_v1.0-cache.dcm │ │ ├── DigiRED_v1.0-cache.lib │ │ ├── DigiRED_v1.0.000 │ │ ├── DigiRED_v1.0.cmp │ │ ├── DigiRED_v1.0.kicad_pcb │ │ ├── DigiRED_v1.0.kicad_pcb-bak │ │ ├── DigiRED_v1.0.net │ │ ├── DigiRED_v1.0.pro │ │ ├── DigiRED_v1.0.sch │ │ ├── DigiRED_v1.mod │ │ ├── Digital Interface-cache.lib │ │ ├── Digital Interface.sch │ │ ├── Power Supply-cache.lib │ │ ├── Power Supply.sch │ │ ├── USB3 Interface-cache.lib │ │ └── USB3 Interface.sch │ ├── Manufacturing │ │ ├── Layer Stack-up.ppt │ │ └── ReadMe.txt │ ├── PDF │ │ ├── DigiRED_v1.0_DrillMap_r.1.pdf │ │ ├── DigiRED_v1.0_Layout_r.2.pdf │ │ └── DigiRED_v1.0_Schematics_r.1.pdf │ ├── README.md │ └── Reports │ │ ├── DigiRED_v1.0-drl.rpt │ │ ├── DigiRED_v1.0.drc.txt │ │ ├── DigiRED_v1.0.erc.txt │ │ └── DigiRED_v1.0.modules.rpt.txt │ └── v2 │ ├── KiCAD │ ├── .gitignore │ ├── Clock Generator-cache.lib │ ├── Clock Generator.sch │ ├── Connectors-cache.lib │ ├── Connectors.sch │ ├── DigiRED-cache.dcm │ ├── DigiRED-cache.lib │ ├── DigiRED-pcbnew-check.mod │ ├── DigiRED.cmp │ ├── DigiRED.kicad_pcb │ ├── DigiRED.mod │ ├── DigiRED.net │ ├── DigiRED.pdf │ ├── DigiRED.pro │ ├── DigiRED.sch │ ├── Digital Interface-cache.lib │ ├── Digital Interface.sch │ ├── Power Supply-cache.lib │ ├── Power Supply.sch │ ├── USB3 Interface-cache.lib │ └── USB3 Interface.sch │ ├── Manufacturing │ ├── Layer Stack-up.ppt │ └── ReadMe.txt │ └── README.md ├── README.md ├── design ├── Digired-Block-Diagram.jpg ├── case │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── boarddescription.h │ ├── casefactory.cpp │ ├── casefactory.h │ ├── geom.h │ ├── main.cpp │ ├── posts.h │ ├── rasdr2-case-bottom.scad │ ├── rasdr2-case-mfg.png │ ├── rasdr2-case-mfg.scad │ ├── rasdr2-case-mfg.stl │ ├── rasdr2-case-top.scad │ └── rasdr2.h ├── diagrams.vsd ├── digired-drill-files-output.png ├── digired-gerber-files-output.png ├── notes.txt ├── protocase │ ├── 1827596.pdc │ ├── GS-111-0000.pdc │ ├── MountingScrewCutout.pdc │ ├── RR-MSBFPM-06GR.pdc │ ├── VentSlot.pdc │ ├── case.pda │ └── rasdr2-case-dimensioned.pdf ├── rasdr-base.png ├── rasdr-cd-labels.doc ├── rasdr-labels.doc ├── rasdr-upconverter.png ├── rasdr2-logo.jpg ├── rasdr2-with-usb3.jpg ├── rasdr3-concept.png └── tables.xlsx ├── docs ├── UserManual │ └── RASDR-Users-manual.docx ├── myriadrf-x9-plug.jpg ├── noise-source.txt ├── rasdr-case-front-new.png ├── rasdr2-case-montage-cropped.jpg └── rasdr2-spur-observations.xlsx ├── host ├── CyControl │ ├── CyControl.zip │ ├── README.md │ ├── docs │ │ ├── rasdr-cycontrol-bootloader-loaded.png │ │ ├── rasdr-cycontrol-driver-loaded-ok.png │ │ ├── rasdr-cycontrol-program-spi.png │ │ ├── rasdr-cycontrol-programmer-select-file.png │ │ ├── rasdr-rx-power-on.JPG │ │ └── rasdr-unprogrammed.png │ └── license.txt ├── RASDRproc │ ├── .gitignore │ ├── README.txt │ ├── make.bat │ ├── relnotes.txt │ ├── src │ │ ├── .gitignore │ │ ├── FFToutSetup.cpp │ │ ├── FFToutSetup.h │ │ ├── FFTviewerApp.cpp │ │ ├── FFTviewerApp.h │ │ ├── FFTviewerMain.cpp │ │ ├── FFTviewerMain.h │ │ ├── GUI │ │ │ ├── CommonFile.cpp │ │ │ ├── CommonFile.h │ │ │ ├── GLFont.cpp │ │ │ ├── GLFont.h │ │ │ ├── GLGlyph.h │ │ │ ├── GUIUtils.cpp │ │ │ ├── GUIUtils.h │ │ │ ├── OpenGLGraph.cpp │ │ │ ├── OpenGLGraph.h │ │ │ ├── StaticFontHeader.h │ │ │ ├── dlgFreqVsCap.cpp │ │ │ ├── dlgFreqVsCap.h │ │ │ ├── dlgRefClk.cpp │ │ │ ├── dlgRefClk.h │ │ │ ├── dlgRegTest.cpp │ │ │ ├── dlgRegTest.h │ │ │ ├── dlgSerPort.cpp │ │ │ ├── dlgSerPort.h │ │ │ ├── dlgVcoCapLog.cpp │ │ │ ├── dlgVcoCapLog.h │ │ │ ├── dlgVcoGrph.cpp │ │ │ ├── dlgVcoGrph.h │ │ │ ├── frControlPanel.cpp │ │ │ ├── frControlPanel.h │ │ │ ├── glew │ │ │ │ ├── GL │ │ │ │ │ ├── glew.h │ │ │ │ │ ├── glxew.h │ │ │ │ │ └── wglew.h │ │ │ │ └── glew.c │ │ │ ├── histogram_select.cpp │ │ │ ├── pnlADDC.cpp │ │ │ ├── pnlADDC.h │ │ │ ├── pnlADF.cpp │ │ │ ├── pnlADF.h │ │ │ ├── pnlBoard.cpp │ │ │ ├── pnlBoard.h │ │ │ ├── pnlCustomer.cpp │ │ │ ├── pnlCustomer.h │ │ │ ├── pnlRxFE.cpp │ │ │ ├── pnlRxFE.h │ │ │ ├── pnlRxLPF.cpp │ │ │ ├── pnlRxLPF.h │ │ │ ├── pnlRxPLL.cpp │ │ │ ├── pnlRxPLL.h │ │ │ ├── pnlRxVGA2.cpp │ │ │ ├── pnlRxVGA2.h │ │ │ ├── pnlSamplesGenerator.cpp │ │ │ ├── pnlSamplesGenerator.h │ │ │ ├── pnlSpectrum.cpp │ │ │ ├── pnlSpectrum.h │ │ │ ├── pnlTop.cpp │ │ │ ├── pnlTop.h │ │ │ ├── pnlTxLPF.cpp │ │ │ ├── pnlTxLPF.h │ │ │ ├── pnlTxPLL.cpp │ │ │ ├── pnlTxPLL.h │ │ │ ├── pnlTxRF.cpp │ │ │ ├── pnlTxRF.h │ │ │ └── quickselect.cpp │ │ ├── Logic │ │ │ ├── .gitignore │ │ │ ├── ctr_6002dr2_LogicDLL.cpp │ │ │ ├── ctr_6002dr2_LogicDLL.h │ │ │ ├── dependencies │ │ │ │ ├── CyAPI │ │ │ │ │ ├── CyAPI.cpp │ │ │ │ │ ├── CyAPI.h │ │ │ │ │ ├── CyUSB30_def.h │ │ │ │ │ ├── UsbdStatus.h │ │ │ │ │ ├── VersionNo.h │ │ │ │ │ ├── cyioctl.h │ │ │ │ │ ├── usb100.h │ │ │ │ │ └── usb200.h │ │ │ │ ├── MinGW │ │ │ │ │ ├── libgcc_s_dw2-1.dll │ │ │ │ │ └── libstdc++-6.dll │ │ │ │ ├── fftw-3.3.3 │ │ │ │ │ ├── fftw3.h │ │ │ │ │ ├── libfftw3f-3.dll │ │ │ │ │ └── libfftw3f-3.lib │ │ │ │ └── sockets │ │ │ │ │ ├── inet_ntop.c │ │ │ │ │ ├── socket.h │ │ │ │ │ └── strlcpy.c │ │ │ ├── include │ │ │ │ ├── ADDC_Module.h │ │ │ │ ├── ADF_Module.h │ │ │ │ ├── Board2_Module.h │ │ │ │ ├── CallbackCodes.h │ │ │ │ ├── ComPortConnection.h │ │ │ │ ├── ConnectionManager.h │ │ │ │ ├── FIFO.h │ │ │ │ ├── IConnection.h │ │ │ │ ├── Main_Module.h │ │ │ │ ├── Packets.h │ │ │ │ ├── RegisterTest.h │ │ │ │ ├── RxFe_Module.h │ │ │ │ ├── RxVGA2_Module.h │ │ │ │ ├── TestingModule.h │ │ │ │ ├── TextLog.h │ │ │ │ ├── TimeCounter.h │ │ │ │ ├── Top_Module.h │ │ │ │ ├── Transmitter.h │ │ │ │ ├── TxLpf_Module.h │ │ │ │ ├── TxPLL_Module.h │ │ │ │ ├── TxRf_Module.h │ │ │ │ ├── USBPortConnection.h │ │ │ │ ├── clUARFCN.h │ │ │ │ ├── common.h │ │ │ │ ├── data_FreqVsCap.h │ │ │ │ ├── devioctl.h │ │ │ │ ├── iniParser.h │ │ │ │ └── register_map.h │ │ │ ├── main.cpp │ │ │ └── src │ │ │ │ ├── ADDC_Module.cpp │ │ │ │ ├── ADF_Module.cpp │ │ │ │ ├── Board2_Module.cpp │ │ │ │ ├── ComPortConnection.cpp │ │ │ │ ├── ConnectionManager.cpp │ │ │ │ ├── Main_Module.cpp │ │ │ │ ├── RegisterTest.cpp │ │ │ │ ├── RxFe_Module.cpp │ │ │ │ ├── RxVGA2_Module.cpp │ │ │ │ ├── TestingModule.cpp │ │ │ │ ├── TextLog.cpp │ │ │ │ ├── TimeCounter.cpp │ │ │ │ ├── Top_Module.cpp │ │ │ │ ├── Transmitter.cpp │ │ │ │ ├── TxLPF_Module.cpp │ │ │ │ ├── TxPLL_Module.cpp │ │ │ │ ├── TxRf_Module.cpp │ │ │ │ ├── USBPortConnection.cpp │ │ │ │ ├── clUARFCN.cpp │ │ │ │ ├── common.cpp │ │ │ │ ├── data_FreqVsCap.cpp │ │ │ │ └── register_map.cpp │ │ ├── PopDialog.cpp │ │ ├── PopDialog.h │ │ ├── PopList.cpp │ │ ├── PopList.h │ │ ├── PopSetupRSS.cpp │ │ ├── PopSetupRSS.h │ │ ├── PopTimeSpan.cpp │ │ ├── PopTimeSpan.h │ │ ├── PopTuning.cpp │ │ ├── PopTuning.h │ │ ├── PulsarPnl.cpp │ │ ├── PulsarPnl.h │ │ ├── RASDRproc.cbp │ │ ├── RasdrICO.ico │ │ ├── RasdrIMG.png │ │ ├── SetSimulation.cpp │ │ ├── SetSimulation.h │ │ ├── SetupDMOut.cpp │ │ ├── SetupDMOut.h │ │ ├── SetupFFTout.cpp │ │ ├── SetupFFTout.h │ │ ├── SetupPWROut.cpp │ │ ├── SetupPWROut.h │ │ ├── Setup_Simulator.cpp │ │ ├── Setup_Simulator.h │ │ ├── SeupPulsePeriod.cpp │ │ ├── SeupPulsePeriod.h │ │ ├── copyright.txt │ │ ├── globals.cpp │ │ ├── globals.h │ │ ├── license.txt │ │ ├── resource.rc │ │ ├── version.h │ │ └── wxsmith │ │ │ ├── FFToutSetup.wxs │ │ │ ├── FFTviewerframe.wxs │ │ │ ├── PopDialog.wxs │ │ │ ├── PopList.wxs │ │ │ ├── PopSetupRSS.wxs │ │ │ ├── PopTimeSpan.wxs │ │ │ ├── PopTuning.wxs │ │ │ ├── PulsarPnl.wxs │ │ │ ├── SetupDMOut.wxs │ │ │ ├── SetupFFTout.wxs │ │ │ ├── SetupPWROut.wxs │ │ │ ├── Setup_Simulator.wxs │ │ │ ├── SeupPulsePeriod.wxs │ │ │ ├── copyright.txt │ │ │ ├── dlgFreqVsCap.wxs │ │ │ ├── dlgRefClk.wxs │ │ │ ├── dlgRegTest.wxs │ │ │ ├── dlgSerPort.wxs │ │ │ ├── dlgVcoCapLog.wxs │ │ │ ├── dlgVcoGrph.wxs │ │ │ ├── frControlPanel.wxs │ │ │ ├── pnlADDC.wxs │ │ │ ├── pnlADF.wxs │ │ │ ├── pnlBoard.wxs │ │ │ ├── pnlCustomer.wxs │ │ │ ├── pnlRxFE.wxs │ │ │ ├── pnlRxLPF.wxs │ │ │ ├── pnlRxPLL.wxs │ │ │ ├── pnlRxVGA2.wxs │ │ │ ├── pnlSamplesGenerator.wxs │ │ │ ├── pnlSpectrum.wxs │ │ │ ├── pnlTop.wxs │ │ │ ├── pnlTxLPF.wxs │ │ │ ├── pnlTxPLL.wxs │ │ │ └── pnlTxRF.wxs │ └── test │ │ └── rss-test.py ├── RASDRstreamer │ ├── .gitignore │ ├── App.ico │ ├── AssemblyInfo.cpp │ ├── RASDRstreamer-example.png │ ├── RASDRstreamer.cpp │ ├── RASDRstreamer.h │ ├── RASDRstreamer.resX │ ├── RASDRstreamer.sln │ ├── RASDRstreamer.vcproj │ ├── RASDRstreamer.vcxproj │ ├── ReadMe.txt │ ├── app.rc │ ├── license.txt │ ├── make.bat │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── RASDRviewer │ └── README.txt ├── README.md ├── fx3load │ └── readme.txt ├── plotcsv │ ├── .gitignore │ ├── FFTOut-2msps-500avg-srh77ca.csv │ ├── FFTOut-format-1.0.4-localtime.csv │ ├── FFTOut-format-1.0.4-universaltime.csv │ ├── FFTOut-format-1.2.2-background.csv │ ├── FFTout-format-1.1.1-localtime.csv │ ├── FFTout-format-1.1.1-universaltime.csv │ ├── FFTout-format-1.2.2-localtime.csv │ ├── FFTout-format-1.2.2-universaltime.csv │ ├── environment.yml │ ├── go.bat │ ├── make.bat │ ├── plotcsv.py │ ├── plotcsvw.py │ ├── readme.txt │ ├── setup.py │ ├── test.bat │ └── test.sh ├── raw2iq │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── README.txt │ ├── make.bat │ └── src │ │ ├── CMakeLists.txt │ │ └── raw2iq.c ├── rss-spectrogram │ ├── rss-tester.py │ └── rss.py ├── rss2rtl-power │ ├── make.bat │ ├── readme.txt │ ├── rss2rtl-power.py │ └── setup.py └── socket │ ├── README.md │ ├── readme.txt │ └── src │ ├── CMakeLists.txt │ ├── client.c │ ├── inet_ntop.c │ ├── server.c │ ├── socket.h │ ├── stristr.c │ └── strlcpy.c ├── manufacture ├── DigiRED_v1r1 │ ├── COPYING │ ├── DigiRED_v1-01-Front_Cu.gtl │ ├── DigiRED_v1-02-GND_Cu.gbr │ ├── DigiRED_v1-03-Signal_1_Cu.gbr │ ├── DigiRED_v1-04-Signal_2_Cu.gbr │ ├── DigiRED_v1-05-Power_Cu.gbr │ ├── DigiRED_v1-06-Back_Cu.gbl │ ├── DigiRED_v1-B_Mask.gbs │ ├── DigiRED_v1-B_Paste.gbp │ ├── DigiRED_v1-B_SilkS.gbo │ ├── DigiRED_v1-Edge_Cuts.gbr │ ├── DigiRED_v1-F_Mask.gts │ ├── DigiRED_v1-F_Paste.gtp │ ├── DigiRED_v1-F_SilkS.gto │ ├── DigiRED_v1-all_pos.txt │ ├── DigiRED_v1-drl_map.pho │ ├── DigiRED_v1.drl │ ├── DigiRED_v1_BOM.xls │ ├── DigiRED_v1_PCB_Layer_Stack_Up.pdf │ ├── DigiRED_v1_Schematics_v1r1.pdf │ └── ReadMe.txt ├── MyriadRF_v1r3e1 │ ├── COPYING │ ├── MYRIAD_RF-01-Front.gtl │ ├── MYRIAD_RF-02-Inner_GND.gbr │ ├── MYRIAD_RF-03-Inner_Analog_Signal.gbr │ ├── MYRIAD_RF-04-Inner_Power.gbr │ ├── MYRIAD_RF-05-Inner_Digital_Signal.gbr │ ├── MYRIAD_RF-06-Back.gbl │ ├── MYRIAD_RF-B_Mask.gbs │ ├── MYRIAD_RF-B_Paste.gbp │ ├── MYRIAD_RF-B_SilkS.gbo │ ├── MYRIAD_RF-Dwgs_User.gbr │ ├── MYRIAD_RF-Edge_Cuts.gbr │ ├── MYRIAD_RF-F_Mask.gts │ ├── MYRIAD_RF-F_Paste.gtp │ ├── MYRIAD_RF-F_SilkS.gto │ ├── MYRIAD_RF-all_pos.txt │ ├── MYRIAD_RF-drl_map.pho │ ├── MYRIAD_RF.drl │ ├── MYRIAD_RF_BOM.xls │ ├── MYRIAD_RF_PCB_Layer_Stack_Up.pdf │ ├── MYRIAD_RF_Schematics_v1r2.pdf │ └── ReadMe.txt ├── README.md └── rasdr2-bom-and-components.xlsx └── rfmodule ├── COPYING ├── docs ├── RFDIO_Connector_Specification_r1.0.1.odt └── RFDIO_Connector_Specification_r1.0.1.pdf └── hardware ├── README.md └── VIA_OFF_PAD_v.1_r.3 ├── BOM ├── MYRIAD_RF-all_pos.txt └── MYRIAD_RF_BOM.xls ├── Gerbers ├── MYRIAD_RF-B_Cu.gbl ├── MYRIAD_RF-B_Mask.gbs ├── MYRIAD_RF-B_Paste.gbp ├── MYRIAD_RF-B_SilkS.gbo ├── MYRIAD_RF-Dwgs_User.gbr ├── MYRIAD_RF-Edge_Cuts.gbr ├── MYRIAD_RF-F_Cu.gtl ├── MYRIAD_RF-F_Mask.gts ├── MYRIAD_RF-F_Paste.gtp ├── MYRIAD_RF-F_SilkS.gto ├── MYRIAD_RF-Inner1_Cu.gbr ├── MYRIAD_RF-Inner2_Cu.gbr ├── MYRIAD_RF-Inner3_Cu.gbr ├── MYRIAD_RF-Inner4_Cu.gbr ├── MYRIAD_RF-drl_map.pho └── MYRIAD_RF.drl ├── KiCAD ├── Analog Circuits.sch ├── Clocks, RF FE.sch ├── Connectors.sch ├── Digital Circuits.sch ├── Lib │ ├── power.bak │ ├── power.bck │ ├── power.dcm │ └── power.lib ├── MYRIAD_RF-cache.bck ├── MYRIAD_RF-cache.dcm ├── MYRIAD_RF-cache.lib ├── MYRIAD_RF.000 ├── MYRIAD_RF.brd ├── MYRIAD_RF.cmp ├── MYRIAD_RF.mod ├── MYRIAD_RF.net ├── MYRIAD_RF.pro ├── MYRIAD_RF.sch ├── Power Supply.sch └── RF Circuits.sch ├── Manufacturing ├── Layer Stack-up.pdf └── ReadMe.txt ├── PDF ├── MYRIAD_RF_Drill map.pdf ├── MYRIAD_RF_Layouts r.3.pdf └── MYRIAD_RF_Schematics r.2.pdf └── Reports ├── MYRIAD_RF-drl.rpt.txt ├── MYRIAD_RF_all_models.txt ├── MYRIAD_RF_drc.txt └── MYRIAD_RF_erc.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *bak 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/.gitmodules -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/AUTHORS -------------------------------------------------------------------------------- /CYUSB3KIT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/README.md -------------------------------------------------------------------------------- /CYUSB3KIT/ssek_emu/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/ssek_emu/.cproject -------------------------------------------------------------------------------- /CYUSB3KIT/ssek_emu/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/ssek_emu/.project -------------------------------------------------------------------------------- /CYUSB3KIT/ssek_emu/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/ssek_emu/COPYING -------------------------------------------------------------------------------- /CYUSB3KIT/ssek_emu/Release/ssek_emu.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/ssek_emu/Release/ssek_emu.img -------------------------------------------------------------------------------- /CYUSB3KIT/ssek_emu/cyfx_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/ssek_emu/cyfx_app.c -------------------------------------------------------------------------------- /CYUSB3KIT/ssek_emu/cyfx_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/ssek_emu/cyfx_app.h -------------------------------------------------------------------------------- /CYUSB3KIT/ssek_emu/cyfx_dscr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/ssek_emu/cyfx_dscr.c -------------------------------------------------------------------------------- /CYUSB3KIT/ssek_emu/cyfx_gcc_startup.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/ssek_emu/cyfx_gcc_startup.S -------------------------------------------------------------------------------- /CYUSB3KIT/ssek_emu/cyfxtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/ssek_emu/cyfxtx.c -------------------------------------------------------------------------------- /CYUSB3KIT/ssek_emu/error-codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/ssek_emu/error-codes.txt -------------------------------------------------------------------------------- /CYUSB3KIT/ssek_emu/fx3.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/ssek_emu/fx3.ld -------------------------------------------------------------------------------- /CYUSB3KIT/ssek_emu/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/ssek_emu/license.txt -------------------------------------------------------------------------------- /CYUSB3KIT/ssek_emu/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/ssek_emu/makefile -------------------------------------------------------------------------------- /CYUSB3KIT/ssek_emu/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/ssek_emu/readme.txt -------------------------------------------------------------------------------- /CYUSB3KIT/streamer/.gitignore: -------------------------------------------------------------------------------- 1 | *.sdf 2 | *.suo 3 | x64 4 | x86 5 | -------------------------------------------------------------------------------- /CYUSB3KIT/streamer/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/streamer/App.ico -------------------------------------------------------------------------------- /CYUSB3KIT/streamer/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/streamer/AssemblyInfo.cpp -------------------------------------------------------------------------------- /CYUSB3KIT/streamer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/streamer/ReadMe.txt -------------------------------------------------------------------------------- /CYUSB3KIT/streamer/Streamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/streamer/Streamer.cpp -------------------------------------------------------------------------------- /CYUSB3KIT/streamer/Streamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/streamer/Streamer.h -------------------------------------------------------------------------------- /CYUSB3KIT/streamer/Streamer.resX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/streamer/Streamer.resX -------------------------------------------------------------------------------- /CYUSB3KIT/streamer/Streamer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/streamer/Streamer.sln -------------------------------------------------------------------------------- /CYUSB3KIT/streamer/Streamer.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/streamer/Streamer.vcproj -------------------------------------------------------------------------------- /CYUSB3KIT/streamer/Streamer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/streamer/Streamer.vcxproj -------------------------------------------------------------------------------- /CYUSB3KIT/streamer/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/streamer/app.rc -------------------------------------------------------------------------------- /CYUSB3KIT/streamer/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/streamer/license.txt -------------------------------------------------------------------------------- /CYUSB3KIT/streamer/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/streamer/resource.h -------------------------------------------------------------------------------- /CYUSB3KIT/streamer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/streamer/stdafx.cpp -------------------------------------------------------------------------------- /CYUSB3KIT/streamer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/CYUSB3KIT/streamer/stdafx.h -------------------------------------------------------------------------------- /DigiRED/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/README.md -------------------------------------------------------------------------------- /DigiRED/docs/DigiRED_Development_Kit.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/docs/DigiRED_Development_Kit.doc -------------------------------------------------------------------------------- /DigiRED/driver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/driver/README.md -------------------------------------------------------------------------------- /DigiRED/driver/digired-windows.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/driver/digired-windows.zip -------------------------------------------------------------------------------- /DigiRED/driver/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/driver/license.txt -------------------------------------------------------------------------------- /DigiRED/driver/signing/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/driver/signing/notes.txt -------------------------------------------------------------------------------- /DigiRED/driver/signing/test1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/driver/signing/test1.bat -------------------------------------------------------------------------------- /DigiRED/driver/signing/test2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/driver/signing/test2.bat -------------------------------------------------------------------------------- /DigiRED/firmware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/firmware/README.md -------------------------------------------------------------------------------- /DigiRED/firmware/bin/error-codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/firmware/bin/error-codes.txt -------------------------------------------------------------------------------- /DigiRED/firmware/bin/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/firmware/bin/license.txt -------------------------------------------------------------------------------- /DigiRED/firmware/bin/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/firmware/bin/readme.txt -------------------------------------------------------------------------------- /DigiRED/firmware/bin/usb_rx.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/firmware/bin/usb_rx.img -------------------------------------------------------------------------------- /DigiRED/firmware/bin/vendor-commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/firmware/bin/vendor-commands.txt -------------------------------------------------------------------------------- /DigiRED/firmware/src/usb_rx.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/firmware/src/usb_rx.zip -------------------------------------------------------------------------------- /DigiRED/firmware/usb_rx/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/firmware/usb_rx/.cproject -------------------------------------------------------------------------------- /DigiRED/firmware/usb_rx/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/firmware/usb_rx/.project -------------------------------------------------------------------------------- /DigiRED/firmware/usb_rx/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/firmware/usb_rx/COPYING -------------------------------------------------------------------------------- /DigiRED/firmware/usb_rx/cyfx_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/firmware/usb_rx/cyfx_app.c -------------------------------------------------------------------------------- /DigiRED/firmware/usb_rx/cyfx_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/firmware/usb_rx/cyfx_app.h -------------------------------------------------------------------------------- /DigiRED/firmware/usb_rx/cyfx_dscr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/firmware/usb_rx/cyfx_dscr.c -------------------------------------------------------------------------------- /DigiRED/firmware/usb_rx/cyfx_gcc_startup.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/firmware/usb_rx/cyfx_gcc_startup.S -------------------------------------------------------------------------------- /DigiRED/firmware/usb_rx/cyfxgpif2config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/firmware/usb_rx/cyfxgpif2config.h -------------------------------------------------------------------------------- /DigiRED/firmware/usb_rx/cyfxtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/firmware/usb_rx/cyfxtx.c -------------------------------------------------------------------------------- /DigiRED/firmware/usb_rx/error-codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/firmware/usb_rx/error-codes.txt -------------------------------------------------------------------------------- /DigiRED/firmware/usb_rx/fx3.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/firmware/usb_rx/fx3.ld -------------------------------------------------------------------------------- /DigiRED/firmware/usb_rx/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/firmware/usb_rx/license.txt -------------------------------------------------------------------------------- /DigiRED/firmware/usb_rx/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/firmware/usb_rx/makefile -------------------------------------------------------------------------------- /DigiRED/firmware/usb_rx/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/firmware/usb_rx/readme.txt -------------------------------------------------------------------------------- /DigiRED/firmware/usb_rx/vendor-commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/firmware/usb_rx/vendor-commands.txt -------------------------------------------------------------------------------- /DigiRED/hardware/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/COPYING -------------------------------------------------------------------------------- /DigiRED/hardware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/README.md -------------------------------------------------------------------------------- /DigiRED/hardware/digired-comparison.gvp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/digired-comparison.gvp -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/BOM/DigiRED_v1.0-all.pos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/BOM/DigiRED_v1.0-all.pos.txt -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/BOM/DigiRED_v1.0.rpt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/BOM/DigiRED_v1.0.rpt.txt -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/BOM/DigiRED_v1.0_BOM.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/BOM/DigiRED_v1.0_BOM.xls -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-B_Cu.gbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-B_Cu.gbl -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-B_Mask.gbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-B_Mask.gbs -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-B_Paste.gbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-B_Paste.gbp -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-B_SilkS.gbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-B_SilkS.gbo -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-Edge_Cuts.gbr -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-F_Cu.gtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-F_Cu.gtl -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-F_Mask.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-F_Mask.gts -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-F_Paste.gtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-F_Paste.gtp -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-F_SilkS.gto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-F_SilkS.gto -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-Inner1_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-Inner1_Cu.gbr -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-Inner2_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-Inner2_Cu.gbr -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-Inner3_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-Inner3_Cu.gbr -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-Inner4_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-Inner4_Cu.gbr -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-drl_map.pho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0-drl_map.pho -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/Gerbers/DigiRED_v1.0.drl -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/KiCAD/Clock Generator-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/KiCAD/Clock Generator-cache.lib -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/KiCAD/Clock Generator.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/KiCAD/Clock Generator.sch -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/KiCAD/Connectors-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/KiCAD/Connectors-cache.lib -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/KiCAD/Connectors.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/KiCAD/Connectors.sch -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/KiCAD/DigiRED_v1.0-cache.bck: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 Date: 5/29/2013 2:36:06 PM 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/KiCAD/DigiRED_v1.0-cache.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 Date: 5/29/2013 3:04:21 PM 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/KiCAD/DigiRED_v1.0-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/KiCAD/DigiRED_v1.0-cache.lib -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/KiCAD/DigiRED_v1.0.000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/KiCAD/DigiRED_v1.0.000 -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/KiCAD/DigiRED_v1.0.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/KiCAD/DigiRED_v1.0.cmp -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/KiCAD/DigiRED_v1.0.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/KiCAD/DigiRED_v1.0.kicad_pcb -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/KiCAD/DigiRED_v1.0.kicad_pcb-bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/KiCAD/DigiRED_v1.0.kicad_pcb-bak -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/KiCAD/DigiRED_v1.0.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/KiCAD/DigiRED_v1.0.net -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/KiCAD/DigiRED_v1.0.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/KiCAD/DigiRED_v1.0.pro -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/KiCAD/DigiRED_v1.0.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/KiCAD/DigiRED_v1.0.sch -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/KiCAD/DigiRED_v1.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/KiCAD/DigiRED_v1.mod -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/KiCAD/Digital Interface-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/KiCAD/Digital Interface-cache.lib -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/KiCAD/Digital Interface.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/KiCAD/Digital Interface.sch -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/KiCAD/Power Supply-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/KiCAD/Power Supply-cache.lib -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/KiCAD/Power Supply.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/KiCAD/Power Supply.sch -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/KiCAD/USB3 Interface-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/KiCAD/USB3 Interface-cache.lib -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/KiCAD/USB3 Interface.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/KiCAD/USB3 Interface.sch -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/Manufacturing/Layer Stack-up.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/Manufacturing/Layer Stack-up.ppt -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/Manufacturing/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/Manufacturing/ReadMe.txt -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/PDF/DigiRED_v1.0_DrillMap_r.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/PDF/DigiRED_v1.0_DrillMap_r.1.pdf -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/PDF/DigiRED_v1.0_Layout_r.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/PDF/DigiRED_v1.0_Layout_r.2.pdf -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/PDF/DigiRED_v1.0_Schematics_r.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/PDF/DigiRED_v1.0_Schematics_r.1.pdf -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/README.md -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/Reports/DigiRED_v1.0-drl.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/Reports/DigiRED_v1.0-drl.rpt -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/Reports/DigiRED_v1.0.drc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/Reports/DigiRED_v1.0.drc.txt -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/Reports/DigiRED_v1.0.erc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/Reports/DigiRED_v1.0.erc.txt -------------------------------------------------------------------------------- /DigiRED/hardware/v1r3/Reports/DigiRED_v1.0.modules.rpt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v1r3/Reports/DigiRED_v1.0.modules.rpt.txt -------------------------------------------------------------------------------- /DigiRED/hardware/v2/KiCAD/.gitignore: -------------------------------------------------------------------------------- 1 | *.bck 2 | -bak 3 | -------------------------------------------------------------------------------- /DigiRED/hardware/v2/KiCAD/Clock Generator-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v2/KiCAD/Clock Generator-cache.lib -------------------------------------------------------------------------------- /DigiRED/hardware/v2/KiCAD/Clock Generator.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v2/KiCAD/Clock Generator.sch -------------------------------------------------------------------------------- /DigiRED/hardware/v2/KiCAD/Connectors-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v2/KiCAD/Connectors-cache.lib -------------------------------------------------------------------------------- /DigiRED/hardware/v2/KiCAD/Connectors.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v2/KiCAD/Connectors.sch -------------------------------------------------------------------------------- /DigiRED/hardware/v2/KiCAD/DigiRED-cache.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 Date: 5/29/2013 3:04:21 PM 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /DigiRED/hardware/v2/KiCAD/DigiRED-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v2/KiCAD/DigiRED-cache.lib -------------------------------------------------------------------------------- /DigiRED/hardware/v2/KiCAD/DigiRED-pcbnew-check.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v2/KiCAD/DigiRED-pcbnew-check.mod -------------------------------------------------------------------------------- /DigiRED/hardware/v2/KiCAD/DigiRED.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v2/KiCAD/DigiRED.cmp -------------------------------------------------------------------------------- /DigiRED/hardware/v2/KiCAD/DigiRED.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v2/KiCAD/DigiRED.kicad_pcb -------------------------------------------------------------------------------- /DigiRED/hardware/v2/KiCAD/DigiRED.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v2/KiCAD/DigiRED.mod -------------------------------------------------------------------------------- /DigiRED/hardware/v2/KiCAD/DigiRED.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v2/KiCAD/DigiRED.net -------------------------------------------------------------------------------- /DigiRED/hardware/v2/KiCAD/DigiRED.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v2/KiCAD/DigiRED.pdf -------------------------------------------------------------------------------- /DigiRED/hardware/v2/KiCAD/DigiRED.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v2/KiCAD/DigiRED.pro -------------------------------------------------------------------------------- /DigiRED/hardware/v2/KiCAD/DigiRED.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v2/KiCAD/DigiRED.sch -------------------------------------------------------------------------------- /DigiRED/hardware/v2/KiCAD/Digital Interface-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v2/KiCAD/Digital Interface-cache.lib -------------------------------------------------------------------------------- /DigiRED/hardware/v2/KiCAD/Digital Interface.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v2/KiCAD/Digital Interface.sch -------------------------------------------------------------------------------- /DigiRED/hardware/v2/KiCAD/Power Supply-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v2/KiCAD/Power Supply-cache.lib -------------------------------------------------------------------------------- /DigiRED/hardware/v2/KiCAD/Power Supply.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v2/KiCAD/Power Supply.sch -------------------------------------------------------------------------------- /DigiRED/hardware/v2/KiCAD/USB3 Interface-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v2/KiCAD/USB3 Interface-cache.lib -------------------------------------------------------------------------------- /DigiRED/hardware/v2/KiCAD/USB3 Interface.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v2/KiCAD/USB3 Interface.sch -------------------------------------------------------------------------------- /DigiRED/hardware/v2/Manufacturing/Layer Stack-up.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v2/Manufacturing/Layer Stack-up.ppt -------------------------------------------------------------------------------- /DigiRED/hardware/v2/Manufacturing/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v2/Manufacturing/ReadMe.txt -------------------------------------------------------------------------------- /DigiRED/hardware/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/DigiRED/hardware/v2/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/README.md -------------------------------------------------------------------------------- /design/Digired-Block-Diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/Digired-Block-Diagram.jpg -------------------------------------------------------------------------------- /design/case/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/case/LICENSE -------------------------------------------------------------------------------- /design/case/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/case/Makefile -------------------------------------------------------------------------------- /design/case/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/case/README.md -------------------------------------------------------------------------------- /design/case/boarddescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/case/boarddescription.h -------------------------------------------------------------------------------- /design/case/casefactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/case/casefactory.cpp -------------------------------------------------------------------------------- /design/case/casefactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/case/casefactory.h -------------------------------------------------------------------------------- /design/case/geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/case/geom.h -------------------------------------------------------------------------------- /design/case/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/case/main.cpp -------------------------------------------------------------------------------- /design/case/posts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/case/posts.h -------------------------------------------------------------------------------- /design/case/rasdr2-case-bottom.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/case/rasdr2-case-bottom.scad -------------------------------------------------------------------------------- /design/case/rasdr2-case-mfg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/case/rasdr2-case-mfg.png -------------------------------------------------------------------------------- /design/case/rasdr2-case-mfg.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/case/rasdr2-case-mfg.scad -------------------------------------------------------------------------------- /design/case/rasdr2-case-mfg.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/case/rasdr2-case-mfg.stl -------------------------------------------------------------------------------- /design/case/rasdr2-case-top.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/case/rasdr2-case-top.scad -------------------------------------------------------------------------------- /design/case/rasdr2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/case/rasdr2.h -------------------------------------------------------------------------------- /design/diagrams.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/diagrams.vsd -------------------------------------------------------------------------------- /design/digired-drill-files-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/digired-drill-files-output.png -------------------------------------------------------------------------------- /design/digired-gerber-files-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/digired-gerber-files-output.png -------------------------------------------------------------------------------- /design/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/notes.txt -------------------------------------------------------------------------------- /design/protocase/1827596.pdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/protocase/1827596.pdc -------------------------------------------------------------------------------- /design/protocase/GS-111-0000.pdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/protocase/GS-111-0000.pdc -------------------------------------------------------------------------------- /design/protocase/MountingScrewCutout.pdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/protocase/MountingScrewCutout.pdc -------------------------------------------------------------------------------- /design/protocase/RR-MSBFPM-06GR.pdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/protocase/RR-MSBFPM-06GR.pdc -------------------------------------------------------------------------------- /design/protocase/VentSlot.pdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/protocase/VentSlot.pdc -------------------------------------------------------------------------------- /design/protocase/case.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/protocase/case.pda -------------------------------------------------------------------------------- /design/protocase/rasdr2-case-dimensioned.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/protocase/rasdr2-case-dimensioned.pdf -------------------------------------------------------------------------------- /design/rasdr-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/rasdr-base.png -------------------------------------------------------------------------------- /design/rasdr-cd-labels.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/rasdr-cd-labels.doc -------------------------------------------------------------------------------- /design/rasdr-labels.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/rasdr-labels.doc -------------------------------------------------------------------------------- /design/rasdr-upconverter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/rasdr-upconverter.png -------------------------------------------------------------------------------- /design/rasdr2-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/rasdr2-logo.jpg -------------------------------------------------------------------------------- /design/rasdr2-with-usb3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/rasdr2-with-usb3.jpg -------------------------------------------------------------------------------- /design/rasdr3-concept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/rasdr3-concept.png -------------------------------------------------------------------------------- /design/tables.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/design/tables.xlsx -------------------------------------------------------------------------------- /docs/UserManual/RASDR-Users-manual.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/docs/UserManual/RASDR-Users-manual.docx -------------------------------------------------------------------------------- /docs/myriadrf-x9-plug.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/docs/myriadrf-x9-plug.jpg -------------------------------------------------------------------------------- /docs/noise-source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/docs/noise-source.txt -------------------------------------------------------------------------------- /docs/rasdr-case-front-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/docs/rasdr-case-front-new.png -------------------------------------------------------------------------------- /docs/rasdr2-case-montage-cropped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/docs/rasdr2-case-montage-cropped.jpg -------------------------------------------------------------------------------- /docs/rasdr2-spur-observations.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/docs/rasdr2-spur-observations.xlsx -------------------------------------------------------------------------------- /host/CyControl/CyControl.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/CyControl/CyControl.zip -------------------------------------------------------------------------------- /host/CyControl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/CyControl/README.md -------------------------------------------------------------------------------- /host/CyControl/docs/rasdr-cycontrol-bootloader-loaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/CyControl/docs/rasdr-cycontrol-bootloader-loaded.png -------------------------------------------------------------------------------- /host/CyControl/docs/rasdr-cycontrol-driver-loaded-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/CyControl/docs/rasdr-cycontrol-driver-loaded-ok.png -------------------------------------------------------------------------------- /host/CyControl/docs/rasdr-cycontrol-program-spi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/CyControl/docs/rasdr-cycontrol-program-spi.png -------------------------------------------------------------------------------- /host/CyControl/docs/rasdr-cycontrol-programmer-select-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/CyControl/docs/rasdr-cycontrol-programmer-select-file.png -------------------------------------------------------------------------------- /host/CyControl/docs/rasdr-rx-power-on.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/CyControl/docs/rasdr-rx-power-on.JPG -------------------------------------------------------------------------------- /host/CyControl/docs/rasdr-unprogrammed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/CyControl/docs/rasdr-unprogrammed.png -------------------------------------------------------------------------------- /host/CyControl/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/CyControl/license.txt -------------------------------------------------------------------------------- /host/RASDRproc/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /host/RASDRproc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/README.txt -------------------------------------------------------------------------------- /host/RASDRproc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/make.bat -------------------------------------------------------------------------------- /host/RASDRproc/relnotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/relnotes.txt -------------------------------------------------------------------------------- /host/RASDRproc/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/.gitignore -------------------------------------------------------------------------------- /host/RASDRproc/src/FFToutSetup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/FFToutSetup.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/FFToutSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/FFToutSetup.h -------------------------------------------------------------------------------- /host/RASDRproc/src/FFTviewerApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/FFTviewerApp.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/FFTviewerApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/FFTviewerApp.h -------------------------------------------------------------------------------- /host/RASDRproc/src/FFTviewerMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/FFTviewerMain.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/FFTviewerMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/FFTviewerMain.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/CommonFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/CommonFile.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/CommonFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/CommonFile.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/GLFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/GLFont.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/GLFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/GLFont.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/GLGlyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/GLGlyph.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/GUIUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/GUIUtils.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/GUIUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/GUIUtils.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/OpenGLGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/OpenGLGraph.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/OpenGLGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/OpenGLGraph.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/StaticFontHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/StaticFontHeader.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/dlgFreqVsCap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/dlgFreqVsCap.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/dlgFreqVsCap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/dlgFreqVsCap.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/dlgRefClk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/dlgRefClk.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/dlgRefClk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/dlgRefClk.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/dlgRegTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/dlgRegTest.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/dlgRegTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/dlgRegTest.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/dlgSerPort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/dlgSerPort.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/dlgSerPort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/dlgSerPort.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/dlgVcoCapLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/dlgVcoCapLog.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/dlgVcoCapLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/dlgVcoCapLog.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/dlgVcoGrph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/dlgVcoGrph.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/dlgVcoGrph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/dlgVcoGrph.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/frControlPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/frControlPanel.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/frControlPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/frControlPanel.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/glew/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/glew/GL/glew.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/glew/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/glew/GL/glxew.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/glew/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/glew/GL/wglew.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/glew/glew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/glew/glew.c -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/histogram_select.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/histogram_select.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlADDC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlADDC.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlADDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlADDC.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlADF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlADF.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlADF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlADF.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlBoard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlBoard.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlBoard.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlCustomer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlCustomer.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlCustomer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlCustomer.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlRxFE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlRxFE.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlRxFE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlRxFE.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlRxLPF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlRxLPF.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlRxLPF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlRxLPF.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlRxPLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlRxPLL.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlRxPLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlRxPLL.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlRxVGA2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlRxVGA2.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlRxVGA2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlRxVGA2.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlSamplesGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlSamplesGenerator.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlSamplesGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlSamplesGenerator.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlSpectrum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlSpectrum.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlSpectrum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlSpectrum.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlTop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlTop.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlTop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlTop.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlTxLPF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlTxLPF.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlTxLPF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlTxLPF.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlTxPLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlTxPLL.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlTxPLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlTxPLL.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlTxRF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlTxRF.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/pnlTxRF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/pnlTxRF.h -------------------------------------------------------------------------------- /host/RASDRproc/src/GUI/quickselect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/GUI/quickselect.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/.gitignore: -------------------------------------------------------------------------------- 1 | lib 2 | -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/ctr_6002dr2_LogicDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/ctr_6002dr2_LogicDLL.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/ctr_6002dr2_LogicDLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/ctr_6002dr2_LogicDLL.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/dependencies/CyAPI/CyAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/dependencies/CyAPI/CyAPI.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/dependencies/CyAPI/CyAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/dependencies/CyAPI/CyAPI.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/dependencies/CyAPI/CyUSB30_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/dependencies/CyAPI/CyUSB30_def.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/dependencies/CyAPI/UsbdStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/dependencies/CyAPI/UsbdStatus.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/dependencies/CyAPI/VersionNo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/dependencies/CyAPI/VersionNo.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/dependencies/CyAPI/cyioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/dependencies/CyAPI/cyioctl.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/dependencies/CyAPI/usb100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/dependencies/CyAPI/usb100.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/dependencies/CyAPI/usb200.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/dependencies/CyAPI/usb200.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/dependencies/MinGW/libgcc_s_dw2-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/dependencies/MinGW/libgcc_s_dw2-1.dll -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/dependencies/MinGW/libstdc++-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/dependencies/MinGW/libstdc++-6.dll -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/dependencies/fftw-3.3.3/fftw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/dependencies/fftw-3.3.3/fftw3.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/dependencies/fftw-3.3.3/libfftw3f-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/dependencies/fftw-3.3.3/libfftw3f-3.dll -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/dependencies/fftw-3.3.3/libfftw3f-3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/dependencies/fftw-3.3.3/libfftw3f-3.lib -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/dependencies/sockets/inet_ntop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/dependencies/sockets/inet_ntop.c -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/dependencies/sockets/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/dependencies/sockets/socket.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/dependencies/sockets/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/dependencies/sockets/strlcpy.c -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/ADDC_Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/ADDC_Module.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/ADF_Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/ADF_Module.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/Board2_Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/Board2_Module.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/CallbackCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/CallbackCodes.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/ComPortConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/ComPortConnection.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/ConnectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/ConnectionManager.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/FIFO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/FIFO.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/IConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/IConnection.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/Main_Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/Main_Module.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/Packets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/Packets.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/RegisterTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/RegisterTest.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/RxFe_Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/RxFe_Module.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/RxVGA2_Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/RxVGA2_Module.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/TestingModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/TestingModule.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/TextLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/TextLog.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/TimeCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/TimeCounter.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/Top_Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/Top_Module.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/Transmitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/Transmitter.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/TxLpf_Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/TxLpf_Module.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/TxPLL_Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/TxPLL_Module.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/TxRf_Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/TxRf_Module.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/USBPortConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/USBPortConnection.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/clUARFCN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/clUARFCN.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/common.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/data_FreqVsCap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/data_FreqVsCap.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/devioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/devioctl.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/iniParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/iniParser.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/include/register_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/include/register_map.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/main.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/src/ADDC_Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/src/ADDC_Module.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/src/ADF_Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/src/ADF_Module.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/src/Board2_Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/src/Board2_Module.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/src/ComPortConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/src/ComPortConnection.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/src/ConnectionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/src/ConnectionManager.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/src/Main_Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/src/Main_Module.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/src/RegisterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/src/RegisterTest.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/src/RxFe_Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/src/RxFe_Module.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/src/RxVGA2_Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/src/RxVGA2_Module.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/src/TestingModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/src/TestingModule.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/src/TextLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/src/TextLog.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/src/TimeCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/src/TimeCounter.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/src/Top_Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/src/Top_Module.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/src/Transmitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/src/Transmitter.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/src/TxLPF_Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/src/TxLPF_Module.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/src/TxPLL_Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/src/TxPLL_Module.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/src/TxRf_Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/src/TxRf_Module.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/src/USBPortConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/src/USBPortConnection.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/src/clUARFCN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/src/clUARFCN.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/src/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/src/common.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/src/data_FreqVsCap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/src/data_FreqVsCap.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Logic/src/register_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Logic/src/register_map.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/PopDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/PopDialog.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/PopDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/PopDialog.h -------------------------------------------------------------------------------- /host/RASDRproc/src/PopList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/PopList.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/PopList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/PopList.h -------------------------------------------------------------------------------- /host/RASDRproc/src/PopSetupRSS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/PopSetupRSS.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/PopSetupRSS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/PopSetupRSS.h -------------------------------------------------------------------------------- /host/RASDRproc/src/PopTimeSpan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/PopTimeSpan.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/PopTimeSpan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/PopTimeSpan.h -------------------------------------------------------------------------------- /host/RASDRproc/src/PopTuning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/PopTuning.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/PopTuning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/PopTuning.h -------------------------------------------------------------------------------- /host/RASDRproc/src/PulsarPnl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/PulsarPnl.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/PulsarPnl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/PulsarPnl.h -------------------------------------------------------------------------------- /host/RASDRproc/src/RASDRproc.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/RASDRproc.cbp -------------------------------------------------------------------------------- /host/RASDRproc/src/RasdrICO.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/RasdrICO.ico -------------------------------------------------------------------------------- /host/RASDRproc/src/RasdrIMG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/RasdrIMG.png -------------------------------------------------------------------------------- /host/RASDRproc/src/SetSimulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/SetSimulation.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/SetSimulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/SetSimulation.h -------------------------------------------------------------------------------- /host/RASDRproc/src/SetupDMOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/SetupDMOut.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/SetupDMOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/SetupDMOut.h -------------------------------------------------------------------------------- /host/RASDRproc/src/SetupFFTout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/SetupFFTout.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/SetupFFTout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/SetupFFTout.h -------------------------------------------------------------------------------- /host/RASDRproc/src/SetupPWROut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/SetupPWROut.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/SetupPWROut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/SetupPWROut.h -------------------------------------------------------------------------------- /host/RASDRproc/src/Setup_Simulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Setup_Simulator.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/Setup_Simulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/Setup_Simulator.h -------------------------------------------------------------------------------- /host/RASDRproc/src/SeupPulsePeriod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/SeupPulsePeriod.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/SeupPulsePeriod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/SeupPulsePeriod.h -------------------------------------------------------------------------------- /host/RASDRproc/src/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/copyright.txt -------------------------------------------------------------------------------- /host/RASDRproc/src/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/globals.cpp -------------------------------------------------------------------------------- /host/RASDRproc/src/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/globals.h -------------------------------------------------------------------------------- /host/RASDRproc/src/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/license.txt -------------------------------------------------------------------------------- /host/RASDRproc/src/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/resource.rc -------------------------------------------------------------------------------- /host/RASDRproc/src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/version.h -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/FFToutSetup.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/FFToutSetup.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/FFTviewerframe.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/FFTviewerframe.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/PopDialog.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/PopDialog.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/PopList.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/PopList.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/PopSetupRSS.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/PopSetupRSS.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/PopTimeSpan.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/PopTimeSpan.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/PopTuning.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/PopTuning.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/PulsarPnl.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/PulsarPnl.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/SetupDMOut.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/SetupDMOut.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/SetupFFTout.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/SetupFFTout.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/SetupPWROut.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/SetupPWROut.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/Setup_Simulator.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/Setup_Simulator.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/SeupPulsePeriod.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/SeupPulsePeriod.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/copyright.txt -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/dlgFreqVsCap.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/dlgFreqVsCap.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/dlgRefClk.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/dlgRefClk.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/dlgRegTest.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/dlgRegTest.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/dlgSerPort.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/dlgSerPort.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/dlgVcoCapLog.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/dlgVcoCapLog.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/dlgVcoGrph.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/dlgVcoGrph.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/frControlPanel.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/frControlPanel.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/pnlADDC.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/pnlADDC.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/pnlADF.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/pnlADF.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/pnlBoard.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/pnlBoard.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/pnlCustomer.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/pnlCustomer.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/pnlRxFE.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/pnlRxFE.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/pnlRxLPF.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/pnlRxLPF.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/pnlRxPLL.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/pnlRxPLL.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/pnlRxVGA2.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/pnlRxVGA2.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/pnlSamplesGenerator.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/pnlSamplesGenerator.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/pnlSpectrum.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/pnlSpectrum.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/pnlTop.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/pnlTop.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/pnlTxLPF.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/pnlTxLPF.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/pnlTxPLL.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/pnlTxPLL.wxs -------------------------------------------------------------------------------- /host/RASDRproc/src/wxsmith/pnlTxRF.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/src/wxsmith/pnlTxRF.wxs -------------------------------------------------------------------------------- /host/RASDRproc/test/rss-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRproc/test/rss-test.py -------------------------------------------------------------------------------- /host/RASDRstreamer/.gitignore: -------------------------------------------------------------------------------- 1 | *.sdf 2 | *.suo 3 | ipch 4 | x64 5 | x86 6 | dist 7 | build.log 8 | -------------------------------------------------------------------------------- /host/RASDRstreamer/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRstreamer/App.ico -------------------------------------------------------------------------------- /host/RASDRstreamer/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRstreamer/AssemblyInfo.cpp -------------------------------------------------------------------------------- /host/RASDRstreamer/RASDRstreamer-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRstreamer/RASDRstreamer-example.png -------------------------------------------------------------------------------- /host/RASDRstreamer/RASDRstreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRstreamer/RASDRstreamer.cpp -------------------------------------------------------------------------------- /host/RASDRstreamer/RASDRstreamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRstreamer/RASDRstreamer.h -------------------------------------------------------------------------------- /host/RASDRstreamer/RASDRstreamer.resX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRstreamer/RASDRstreamer.resX -------------------------------------------------------------------------------- /host/RASDRstreamer/RASDRstreamer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRstreamer/RASDRstreamer.sln -------------------------------------------------------------------------------- /host/RASDRstreamer/RASDRstreamer.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRstreamer/RASDRstreamer.vcproj -------------------------------------------------------------------------------- /host/RASDRstreamer/RASDRstreamer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRstreamer/RASDRstreamer.vcxproj -------------------------------------------------------------------------------- /host/RASDRstreamer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRstreamer/ReadMe.txt -------------------------------------------------------------------------------- /host/RASDRstreamer/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRstreamer/app.rc -------------------------------------------------------------------------------- /host/RASDRstreamer/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRstreamer/license.txt -------------------------------------------------------------------------------- /host/RASDRstreamer/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRstreamer/make.bat -------------------------------------------------------------------------------- /host/RASDRstreamer/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRstreamer/resource.h -------------------------------------------------------------------------------- /host/RASDRstreamer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRstreamer/stdafx.cpp -------------------------------------------------------------------------------- /host/RASDRstreamer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRstreamer/stdafx.h -------------------------------------------------------------------------------- /host/RASDRviewer/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/RASDRviewer/README.txt -------------------------------------------------------------------------------- /host/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/README.md -------------------------------------------------------------------------------- /host/fx3load/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/fx3load/readme.txt -------------------------------------------------------------------------------- /host/plotcsv/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | dist 3 | -------------------------------------------------------------------------------- /host/plotcsv/FFTOut-2msps-500avg-srh77ca.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/plotcsv/FFTOut-2msps-500avg-srh77ca.csv -------------------------------------------------------------------------------- /host/plotcsv/FFTOut-format-1.0.4-localtime.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/plotcsv/FFTOut-format-1.0.4-localtime.csv -------------------------------------------------------------------------------- /host/plotcsv/FFTOut-format-1.0.4-universaltime.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/plotcsv/FFTOut-format-1.0.4-universaltime.csv -------------------------------------------------------------------------------- /host/plotcsv/FFTOut-format-1.2.2-background.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/plotcsv/FFTOut-format-1.2.2-background.csv -------------------------------------------------------------------------------- /host/plotcsv/FFTout-format-1.1.1-localtime.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/plotcsv/FFTout-format-1.1.1-localtime.csv -------------------------------------------------------------------------------- /host/plotcsv/FFTout-format-1.1.1-universaltime.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/plotcsv/FFTout-format-1.1.1-universaltime.csv -------------------------------------------------------------------------------- /host/plotcsv/FFTout-format-1.2.2-localtime.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/plotcsv/FFTout-format-1.2.2-localtime.csv -------------------------------------------------------------------------------- /host/plotcsv/FFTout-format-1.2.2-universaltime.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/plotcsv/FFTout-format-1.2.2-universaltime.csv -------------------------------------------------------------------------------- /host/plotcsv/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/plotcsv/environment.yml -------------------------------------------------------------------------------- /host/plotcsv/go.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/plotcsv/go.bat -------------------------------------------------------------------------------- /host/plotcsv/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/plotcsv/make.bat -------------------------------------------------------------------------------- /host/plotcsv/plotcsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/plotcsv/plotcsv.py -------------------------------------------------------------------------------- /host/plotcsv/plotcsvw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/plotcsv/plotcsvw.py -------------------------------------------------------------------------------- /host/plotcsv/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/plotcsv/readme.txt -------------------------------------------------------------------------------- /host/plotcsv/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/plotcsv/setup.py -------------------------------------------------------------------------------- /host/plotcsv/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/plotcsv/test.bat -------------------------------------------------------------------------------- /host/plotcsv/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/plotcsv/test.sh -------------------------------------------------------------------------------- /host/raw2iq/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /host/raw2iq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/raw2iq/Makefile -------------------------------------------------------------------------------- /host/raw2iq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/raw2iq/README.md -------------------------------------------------------------------------------- /host/raw2iq/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/raw2iq/README.txt -------------------------------------------------------------------------------- /host/raw2iq/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/raw2iq/make.bat -------------------------------------------------------------------------------- /host/raw2iq/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/raw2iq/src/CMakeLists.txt -------------------------------------------------------------------------------- /host/raw2iq/src/raw2iq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/raw2iq/src/raw2iq.c -------------------------------------------------------------------------------- /host/rss-spectrogram/rss-tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/rss-spectrogram/rss-tester.py -------------------------------------------------------------------------------- /host/rss-spectrogram/rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/rss-spectrogram/rss.py -------------------------------------------------------------------------------- /host/rss2rtl-power/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/rss2rtl-power/make.bat -------------------------------------------------------------------------------- /host/rss2rtl-power/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/rss2rtl-power/readme.txt -------------------------------------------------------------------------------- /host/rss2rtl-power/rss2rtl-power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/rss2rtl-power/rss2rtl-power.py -------------------------------------------------------------------------------- /host/rss2rtl-power/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/rss2rtl-power/setup.py -------------------------------------------------------------------------------- /host/socket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/socket/README.md -------------------------------------------------------------------------------- /host/socket/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/socket/readme.txt -------------------------------------------------------------------------------- /host/socket/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/socket/src/CMakeLists.txt -------------------------------------------------------------------------------- /host/socket/src/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/socket/src/client.c -------------------------------------------------------------------------------- /host/socket/src/inet_ntop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/socket/src/inet_ntop.c -------------------------------------------------------------------------------- /host/socket/src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/socket/src/server.c -------------------------------------------------------------------------------- /host/socket/src/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/socket/src/socket.h -------------------------------------------------------------------------------- /host/socket/src/stristr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/socket/src/stristr.c -------------------------------------------------------------------------------- /host/socket/src/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/host/socket/src/strlcpy.c -------------------------------------------------------------------------------- /manufacture/DigiRED_v1r1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/DigiRED_v1r1/COPYING -------------------------------------------------------------------------------- /manufacture/DigiRED_v1r1/DigiRED_v1-01-Front_Cu.gtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/DigiRED_v1r1/DigiRED_v1-01-Front_Cu.gtl -------------------------------------------------------------------------------- /manufacture/DigiRED_v1r1/DigiRED_v1-02-GND_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/DigiRED_v1r1/DigiRED_v1-02-GND_Cu.gbr -------------------------------------------------------------------------------- /manufacture/DigiRED_v1r1/DigiRED_v1-03-Signal_1_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/DigiRED_v1r1/DigiRED_v1-03-Signal_1_Cu.gbr -------------------------------------------------------------------------------- /manufacture/DigiRED_v1r1/DigiRED_v1-04-Signal_2_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/DigiRED_v1r1/DigiRED_v1-04-Signal_2_Cu.gbr -------------------------------------------------------------------------------- /manufacture/DigiRED_v1r1/DigiRED_v1-05-Power_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/DigiRED_v1r1/DigiRED_v1-05-Power_Cu.gbr -------------------------------------------------------------------------------- /manufacture/DigiRED_v1r1/DigiRED_v1-06-Back_Cu.gbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/DigiRED_v1r1/DigiRED_v1-06-Back_Cu.gbl -------------------------------------------------------------------------------- /manufacture/DigiRED_v1r1/DigiRED_v1-B_Mask.gbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/DigiRED_v1r1/DigiRED_v1-B_Mask.gbs -------------------------------------------------------------------------------- /manufacture/DigiRED_v1r1/DigiRED_v1-B_Paste.gbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/DigiRED_v1r1/DigiRED_v1-B_Paste.gbp -------------------------------------------------------------------------------- /manufacture/DigiRED_v1r1/DigiRED_v1-B_SilkS.gbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/DigiRED_v1r1/DigiRED_v1-B_SilkS.gbo -------------------------------------------------------------------------------- /manufacture/DigiRED_v1r1/DigiRED_v1-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/DigiRED_v1r1/DigiRED_v1-Edge_Cuts.gbr -------------------------------------------------------------------------------- /manufacture/DigiRED_v1r1/DigiRED_v1-F_Mask.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/DigiRED_v1r1/DigiRED_v1-F_Mask.gts -------------------------------------------------------------------------------- /manufacture/DigiRED_v1r1/DigiRED_v1-F_Paste.gtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/DigiRED_v1r1/DigiRED_v1-F_Paste.gtp -------------------------------------------------------------------------------- /manufacture/DigiRED_v1r1/DigiRED_v1-F_SilkS.gto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/DigiRED_v1r1/DigiRED_v1-F_SilkS.gto -------------------------------------------------------------------------------- /manufacture/DigiRED_v1r1/DigiRED_v1-all_pos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/DigiRED_v1r1/DigiRED_v1-all_pos.txt -------------------------------------------------------------------------------- /manufacture/DigiRED_v1r1/DigiRED_v1-drl_map.pho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/DigiRED_v1r1/DigiRED_v1-drl_map.pho -------------------------------------------------------------------------------- /manufacture/DigiRED_v1r1/DigiRED_v1.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/DigiRED_v1r1/DigiRED_v1.drl -------------------------------------------------------------------------------- /manufacture/DigiRED_v1r1/DigiRED_v1_BOM.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/DigiRED_v1r1/DigiRED_v1_BOM.xls -------------------------------------------------------------------------------- /manufacture/DigiRED_v1r1/DigiRED_v1_PCB_Layer_Stack_Up.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/DigiRED_v1r1/DigiRED_v1_PCB_Layer_Stack_Up.pdf -------------------------------------------------------------------------------- /manufacture/DigiRED_v1r1/DigiRED_v1_Schematics_v1r1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/DigiRED_v1r1/DigiRED_v1_Schematics_v1r1.pdf -------------------------------------------------------------------------------- /manufacture/DigiRED_v1r1/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/DigiRED_v1r1/ReadMe.txt -------------------------------------------------------------------------------- /manufacture/MyriadRF_v1r3e1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/MyriadRF_v1r3e1/COPYING -------------------------------------------------------------------------------- /manufacture/MyriadRF_v1r3e1/MYRIAD_RF-01-Front.gtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/MyriadRF_v1r3e1/MYRIAD_RF-01-Front.gtl -------------------------------------------------------------------------------- /manufacture/MyriadRF_v1r3e1/MYRIAD_RF-02-Inner_GND.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/MyriadRF_v1r3e1/MYRIAD_RF-02-Inner_GND.gbr -------------------------------------------------------------------------------- /manufacture/MyriadRF_v1r3e1/MYRIAD_RF-03-Inner_Analog_Signal.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/MyriadRF_v1r3e1/MYRIAD_RF-03-Inner_Analog_Signal.gbr -------------------------------------------------------------------------------- /manufacture/MyriadRF_v1r3e1/MYRIAD_RF-04-Inner_Power.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/MyriadRF_v1r3e1/MYRIAD_RF-04-Inner_Power.gbr -------------------------------------------------------------------------------- /manufacture/MyriadRF_v1r3e1/MYRIAD_RF-05-Inner_Digital_Signal.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/MyriadRF_v1r3e1/MYRIAD_RF-05-Inner_Digital_Signal.gbr -------------------------------------------------------------------------------- /manufacture/MyriadRF_v1r3e1/MYRIAD_RF-06-Back.gbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/MyriadRF_v1r3e1/MYRIAD_RF-06-Back.gbl -------------------------------------------------------------------------------- /manufacture/MyriadRF_v1r3e1/MYRIAD_RF-B_Mask.gbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/MyriadRF_v1r3e1/MYRIAD_RF-B_Mask.gbs -------------------------------------------------------------------------------- /manufacture/MyriadRF_v1r3e1/MYRIAD_RF-B_Paste.gbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/MyriadRF_v1r3e1/MYRIAD_RF-B_Paste.gbp -------------------------------------------------------------------------------- /manufacture/MyriadRF_v1r3e1/MYRIAD_RF-B_SilkS.gbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/MyriadRF_v1r3e1/MYRIAD_RF-B_SilkS.gbo -------------------------------------------------------------------------------- /manufacture/MyriadRF_v1r3e1/MYRIAD_RF-Dwgs_User.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/MyriadRF_v1r3e1/MYRIAD_RF-Dwgs_User.gbr -------------------------------------------------------------------------------- /manufacture/MyriadRF_v1r3e1/MYRIAD_RF-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/MyriadRF_v1r3e1/MYRIAD_RF-Edge_Cuts.gbr -------------------------------------------------------------------------------- /manufacture/MyriadRF_v1r3e1/MYRIAD_RF-F_Mask.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/MyriadRF_v1r3e1/MYRIAD_RF-F_Mask.gts -------------------------------------------------------------------------------- /manufacture/MyriadRF_v1r3e1/MYRIAD_RF-F_Paste.gtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/MyriadRF_v1r3e1/MYRIAD_RF-F_Paste.gtp -------------------------------------------------------------------------------- /manufacture/MyriadRF_v1r3e1/MYRIAD_RF-F_SilkS.gto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/MyriadRF_v1r3e1/MYRIAD_RF-F_SilkS.gto -------------------------------------------------------------------------------- /manufacture/MyriadRF_v1r3e1/MYRIAD_RF-all_pos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/MyriadRF_v1r3e1/MYRIAD_RF-all_pos.txt -------------------------------------------------------------------------------- /manufacture/MyriadRF_v1r3e1/MYRIAD_RF-drl_map.pho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/MyriadRF_v1r3e1/MYRIAD_RF-drl_map.pho -------------------------------------------------------------------------------- /manufacture/MyriadRF_v1r3e1/MYRIAD_RF.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/MyriadRF_v1r3e1/MYRIAD_RF.drl -------------------------------------------------------------------------------- /manufacture/MyriadRF_v1r3e1/MYRIAD_RF_BOM.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/MyriadRF_v1r3e1/MYRIAD_RF_BOM.xls -------------------------------------------------------------------------------- /manufacture/MyriadRF_v1r3e1/MYRIAD_RF_PCB_Layer_Stack_Up.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/MyriadRF_v1r3e1/MYRIAD_RF_PCB_Layer_Stack_Up.pdf -------------------------------------------------------------------------------- /manufacture/MyriadRF_v1r3e1/MYRIAD_RF_Schematics_v1r2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/MyriadRF_v1r3e1/MYRIAD_RF_Schematics_v1r2.pdf -------------------------------------------------------------------------------- /manufacture/MyriadRF_v1r3e1/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/MyriadRF_v1r3e1/ReadMe.txt -------------------------------------------------------------------------------- /manufacture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/README.md -------------------------------------------------------------------------------- /manufacture/rasdr2-bom-and-components.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/manufacture/rasdr2-bom-and-components.xlsx -------------------------------------------------------------------------------- /rfmodule/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/COPYING -------------------------------------------------------------------------------- /rfmodule/docs/RFDIO_Connector_Specification_r1.0.1.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/docs/RFDIO_Connector_Specification_r1.0.1.odt -------------------------------------------------------------------------------- /rfmodule/docs/RFDIO_Connector_Specification_r1.0.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/docs/RFDIO_Connector_Specification_r1.0.1.pdf -------------------------------------------------------------------------------- /rfmodule/hardware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/README.md -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/BOM/MYRIAD_RF-all_pos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/BOM/MYRIAD_RF-all_pos.txt -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/BOM/MYRIAD_RF_BOM.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/BOM/MYRIAD_RF_BOM.xls -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-B_Cu.gbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-B_Cu.gbl -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-B_Mask.gbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-B_Mask.gbs -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-B_Paste.gbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-B_Paste.gbp -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-B_SilkS.gbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-B_SilkS.gbo -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-Dwgs_User.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-Dwgs_User.gbr -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-Edge_Cuts.gbr -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-F_Cu.gtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-F_Cu.gtl -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-F_Mask.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-F_Mask.gts -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-F_Paste.gtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-F_Paste.gtp -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-F_SilkS.gto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-F_SilkS.gto -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-Inner1_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-Inner1_Cu.gbr -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-Inner2_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-Inner2_Cu.gbr -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-Inner3_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-Inner3_Cu.gbr -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-Inner4_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-Inner4_Cu.gbr -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-drl_map.pho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF-drl_map.pho -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Gerbers/MYRIAD_RF.drl -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/Analog Circuits.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/Analog Circuits.sch -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/Clocks, RF FE.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/Clocks, RF FE.sch -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/Connectors.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/Connectors.sch -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/Digital Circuits.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/Digital Circuits.sch -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/Lib/power.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/Lib/power.bak -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/Lib/power.bck: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 Date: 9/3/2012 5:01:52 PM 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/Lib/power.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 Date: 9/4/2012 9:44:26 AM 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/Lib/power.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/Lib/power.lib -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/MYRIAD_RF-cache.bck: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 Date: 9/3/2012 5:14:26 PM 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/MYRIAD_RF-cache.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 Date: 03/03/2014 16:37:50 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/MYRIAD_RF-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/MYRIAD_RF-cache.lib -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/MYRIAD_RF.000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/MYRIAD_RF.000 -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/MYRIAD_RF.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/MYRIAD_RF.brd -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/MYRIAD_RF.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/MYRIAD_RF.cmp -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/MYRIAD_RF.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/MYRIAD_RF.mod -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/MYRIAD_RF.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/MYRIAD_RF.net -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/MYRIAD_RF.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/MYRIAD_RF.pro -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/MYRIAD_RF.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/MYRIAD_RF.sch -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/Power Supply.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/Power Supply.sch -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/RF Circuits.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/KiCAD/RF Circuits.sch -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Manufacturing/Layer Stack-up.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Manufacturing/Layer Stack-up.pdf -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Manufacturing/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Manufacturing/ReadMe.txt -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/PDF/MYRIAD_RF_Drill map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/PDF/MYRIAD_RF_Drill map.pdf -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/PDF/MYRIAD_RF_Layouts r.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/PDF/MYRIAD_RF_Layouts r.3.pdf -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/PDF/MYRIAD_RF_Schematics r.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/PDF/MYRIAD_RF_Schematics r.2.pdf -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Reports/MYRIAD_RF-drl.rpt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Reports/MYRIAD_RF-drl.rpt.txt -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Reports/MYRIAD_RF_all_models.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Reports/MYRIAD_RF_all_models.txt -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Reports/MYRIAD_RF_drc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Reports/MYRIAD_RF_drc.txt -------------------------------------------------------------------------------- /rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Reports/MYRIAD_RF_erc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/RASDR/HEAD/rfmodule/hardware/VIA_OFF_PAD_v.1_r.3/Reports/MYRIAD_RF_erc.txt --------------------------------------------------------------------------------