├── .gitattributes ├── .gitignore ├── .gitmodules ├── .travis.yml ├── COPYING ├── Readme.md ├── TRADEMARK ├── appveyor.yml ├── doc ├── HackRF-One-fd0-0009.jpeg ├── LPC4330_SGPIO_SignalGenerator_Measurements.ods ├── LPC4330_SGPIO_SignalGenerator_Measurements.pdf ├── LPCXPresso_Flash_Debug_Tutorial.odt ├── LPCXPresso_Flash_Debug_Tutorial.pdf ├── Readme.md ├── SPIFI_Quad_Tests_OLS │ ├── SPIFI_QUAD_100MHZ_OLS_0_9_6b3_JellyBean_Startup_Dual4_M4_SPIFI_0.olp │ ├── SPIFI_QUAD_100MHZ_OLS_0_9_6b3_JellyBean_Startup_Dual4_M4_SPIFI_0.ols │ └── SPIFI_QUAD_100MHZ_OLS_0_9_6b3_JellyBean_Startup_Dual4_M4_SPIFI_0_Analyze.txt ├── hardware │ ├── README │ ├── hackrf-one-assembly.pdf │ ├── hackrf-one-bom.csv │ ├── hackrf-one-gerbers │ │ ├── README │ │ ├── hackrf-one-B_Mask.gbs │ │ ├── hackrf-one-C1F.gtl │ │ ├── hackrf-one-C2.gbr │ │ ├── hackrf-one-C3.gbr │ │ ├── hackrf-one-C4B.gbl │ │ ├── hackrf-one-Edge_Cuts.gbr │ │ ├── hackrf-one-F_Mask.gts │ │ ├── hackrf-one-F_Paste.gtp │ │ ├── hackrf-one-F_SilkS.gto │ │ └── hackrf-one.drl │ ├── hackrf-one-schematic.pdf │ ├── jawbreaker-assembly.pdf │ ├── jawbreaker-bom.csv │ ├── jawbreaker-gerbers │ │ ├── README │ │ ├── jawbreaker-B_Mask.gbs │ │ ├── jawbreaker-Back.gbl │ │ ├── jawbreaker-Edge_Cuts.gbr │ │ ├── jawbreaker-F_Mask.gts │ │ ├── jawbreaker-F_Paste.gtp │ │ ├── jawbreaker-F_SilkS.gto │ │ ├── jawbreaker-Front.gtl │ │ ├── jawbreaker-Inner2.gbr │ │ ├── jawbreaker-Inner3.gbr │ │ └── jawbreaker.drl │ └── jawbreaker-schematic.pdf ├── jawbreaker-fd0-145436.jpeg ├── jawbreaker.jpeg ├── lemonAndjelly.jpeg └── wiki │ ├── hardware │ └── modifications │ │ ├── sgpio-gclk2-reroute.jpg │ │ └── sgpio-p1_12-cut-trace.jpg │ └── images │ ├── baseband-filter │ ├── max2837-1m75bw-at-2m.png │ └── max2837-1m75bw-at-8m.png │ ├── hackrf_blockdiagram-digital.png │ ├── hackrf_blockdiagram-digital.svg │ ├── hackrf_blockdiagram-frontend_baseband.png │ └── hackrf_blockdiagram-frontend_baseband.svg ├── firmware ├── .gitignore ├── CMakeLists.txt ├── README ├── appveyor.sh ├── blinky │ ├── CMakeLists.txt │ ├── README │ └── blinky.c ├── common │ ├── LPC4320_M4_memory.ld │ ├── LPC4330_M4_memory.ld │ ├── LPC43xx_M0_memory.ld │ ├── LPC43xx_M4_M0_image_from_text.ld │ ├── LPC43xx_M4_memory.ld │ ├── README │ ├── bitband.c │ ├── bitband.h │ ├── cpld_jtag.c │ ├── cpld_jtag.h │ ├── cpld_xc2c.c │ ├── cpld_xc2c.h │ ├── crc.c │ ├── crc.h │ ├── fault_handler.c │ ├── fault_handler.h │ ├── gpdma.c │ ├── gpdma.h │ ├── gpio.h │ ├── gpio_lpc.c │ ├── gpio_lpc.h │ ├── hackrf_core.c │ ├── hackrf_core.h │ ├── hackrf_ui.c │ ├── hackrf_ui.h │ ├── i2c_bus.c │ ├── i2c_bus.h │ ├── i2c_lpc.c │ ├── i2c_lpc.h │ ├── m0_bin.s.cmake │ ├── m0_sleep.c │ ├── max2837.c │ ├── max2837.h │ ├── max2837_regs.def │ ├── max2837_target.c │ ├── max2837_target.h │ ├── max2871.c │ ├── max2871.h │ ├── max2871_regs.c │ ├── max2871_regs.h │ ├── max5864.c │ ├── max5864.h │ ├── max5864_target.c │ ├── max5864_target.h │ ├── mixer.c │ ├── mixer.h │ ├── operacake.c │ ├── operacake.h │ ├── portapack.c │ ├── portapack.h │ ├── rf_path.c │ ├── rf_path.h │ ├── rffc5071.c │ ├── rffc5071.h │ ├── rffc5071_regs.def │ ├── rffc5071_spi.c │ ├── rffc5071_spi.h │ ├── rom_iap.c │ ├── rom_iap.h │ ├── sgpio.c │ ├── sgpio.h │ ├── si5351c.c │ ├── si5351c.h │ ├── spi_bus.c │ ├── spi_bus.h │ ├── spi_ssp.c │ ├── spi_ssp.h │ ├── streaming.c │ ├── streaming.h │ ├── tuning.c │ ├── tuning.h │ ├── ui_portapack.c │ ├── ui_portapack.h │ ├── ui_rad1o.c │ ├── ui_rad1o.h │ ├── usb.c │ ├── usb.h │ ├── usb_queue.c │ ├── usb_queue.h │ ├── usb_request.c │ ├── usb_request.h │ ├── usb_standard_request.c │ ├── usb_standard_request.h │ ├── usb_type.h │ ├── w25q80bv.c │ ├── w25q80bv.h │ ├── w25q80bv_target.c │ ├── w25q80bv_target.h │ └── xapp058 │ │ ├── README │ │ ├── lenval.c │ │ ├── lenval.h │ │ ├── micro.c │ │ ├── micro.h │ │ ├── ports.c │ │ └── ports.h ├── cpld │ ├── README │ ├── sgpio_debug │ │ ├── Makefile │ │ ├── README.md │ │ ├── batch_svf │ │ ├── batch_xsvf │ │ ├── default.xsvf │ │ ├── sgpio_debug.xise │ │ ├── top.jed │ │ ├── top.ucf │ │ ├── top.vhd │ │ └── top_tb.vhd │ └── sgpio_if │ │ ├── Makefile │ │ ├── README.md │ │ ├── batch_svf │ │ ├── batch_xsvf │ │ ├── default.xsvf │ │ ├── sgpio_if.xise │ │ ├── top.jed │ │ ├── top.ucf │ │ ├── top.vhd │ │ └── top_tb.vhd ├── dfu-util.cmake ├── dfu.py ├── hackrf-common.cmake ├── hackrf_usb │ ├── CMakeLists.txt │ ├── hackrf_usb.c │ ├── sgpio_m0.s │ ├── usb_api_board_info.c │ ├── usb_api_board_info.h │ ├── usb_api_cpld.c │ ├── usb_api_cpld.h │ ├── usb_api_operacake.c │ ├── usb_api_operacake.h │ ├── usb_api_register.c │ ├── usb_api_register.h │ ├── usb_api_spiflash.c │ ├── usb_api_spiflash.h │ ├── usb_api_sweep.c │ ├── usb_api_sweep.h │ ├── usb_api_transceiver.c │ ├── usb_api_transceiver.h │ ├── usb_api_ui.c │ ├── usb_api_ui.h │ ├── usb_bulk_buffer.c │ ├── usb_bulk_buffer.h │ ├── usb_descriptor.c │ ├── usb_descriptor.h │ ├── usb_device.c │ ├── usb_device.h │ ├── usb_endpoint.c │ └── usb_endpoint.h ├── toolchain-arm-cortex-m.cmake └── tools │ ├── check_clock.py │ ├── cpld_bitstream.py │ ├── dumb_crc32.py │ ├── dump_cgu.py │ └── xsvf.py ├── hardware ├── .gitignore ├── LNA915 │ ├── LNA915-cache.lib │ ├── LNA915.cmp │ ├── LNA915.kicad_pcb │ ├── LNA915.lib │ ├── LNA915.pro │ ├── LNA915.sch │ ├── README │ ├── fp-lib-table │ └── sym-lib-table ├── bubblegum │ ├── bubblegum-cache.lib │ ├── bubblegum.brd │ ├── bubblegum.cmp │ ├── bubblegum.net │ ├── bubblegum.pro │ └── bubblegum.sch ├── hackrf-one │ ├── LICENSE │ ├── PlasticCase_CAD │ │ ├── Case_With_HackRF.png │ │ ├── HackRF_One_Case.png │ │ ├── HackRF_One_Case_With_Button_CutOuts.dxf │ │ └── README │ ├── README │ ├── acrylic_case │ │ ├── HackRF_One_Case_v2.dxf │ │ ├── HackRF_One_Case_v2.pdf │ │ ├── HackRF_One_Case_v2.svg │ │ └── README.md │ ├── baseband.sch │ ├── fp-lib-table │ ├── frontend.sch │ ├── hackrf-one-cache.lib │ ├── hackrf-one.cmp │ ├── hackrf-one.kicad_pcb │ ├── hackrf-one.pro │ ├── hackrf-one.sch │ ├── mcu.sch │ └── sym-lib-table ├── jawbreaker │ ├── README │ ├── SoBv1_DP17298 │ │ ├── README │ │ ├── SoBv1-DP17298-jawbreaker-Bottom.skp │ │ ├── SoBv1-DP17298-jawbreaker-Bottom.svg │ │ ├── SoBv1-DP17298-jawbreaker-Bottom_laser_cutting_493.3mm_Easy.txt │ │ ├── SoBv1-DP17298-jawbreaker-Top.skp │ │ ├── SoBv1-DP17298-jawbreaker-Top.svg │ │ ├── SoBv1-DP17298-jawbreaker-Top_laser_cutting_1153.3mm_Normal.txt │ │ ├── SoBv1-DP17298-jawbreaker.jpg │ │ └── jawbreaker_and_case.png │ ├── baseband.sch │ ├── frontend.sch │ ├── jawbreaker-cache.lib │ ├── jawbreaker.brd │ ├── jawbreaker.cmp │ ├── jawbreaker.net │ ├── jawbreaker.pro │ ├── jawbreaker.sch │ └── mcu.sch ├── jellybean │ ├── JellyBean_PinMux.pmx │ ├── JellyBean_TPS62410.ods │ ├── JellyBean_pins.png │ ├── README │ ├── jellybean-cache.lib │ ├── jellybean.brd │ ├── jellybean.cmp │ ├── jellybean.net │ ├── jellybean.pro │ ├── jellybean.sch │ ├── jellybean_BOM.ods │ ├── jellybean_board_PCB_layers.pdf │ └── jellybean_schematic.pdf ├── kicad │ ├── hackrf.dcm │ ├── hackrf.lib │ └── hackrf.mod ├── lemondrop │ ├── README │ ├── lemondrop-cache.lib │ ├── lemondrop.brd │ ├── lemondrop.cmp │ ├── lemondrop.net │ ├── lemondrop.pro │ └── lemondrop.sch ├── licorice │ ├── licorice-cache.lib │ ├── licorice.brd │ ├── licorice.cmp │ ├── licorice.net │ ├── licorice.pro │ └── licorice.sch ├── lollipop │ ├── lollipop-cache.lib │ ├── lollipop.brd │ ├── lollipop.cmp │ ├── lollipop.net │ ├── lollipop.pro │ ├── lollipop.sch │ └── lollipop_logic.py ├── marzipan │ ├── README │ ├── baseband.sch │ ├── fp-lib-table │ ├── frontend.sch │ ├── marzipan-cache.lib │ ├── marzipan.cmp │ ├── marzipan.kicad_pcb │ ├── marzipan.net │ ├── marzipan.pro │ ├── marzipan.sch │ └── mcu.sch ├── neapolitan │ ├── README │ ├── baseband.sch │ ├── fp-lib-table │ ├── frontend.sch │ ├── mcu.sch │ ├── neapolitan-cache.lib │ ├── neapolitan.cmp │ ├── neapolitan.kicad_pcb │ ├── neapolitan.net │ ├── neapolitan.pro │ └── neapolitan.sch ├── operacake │ ├── README │ ├── fp-lib-table │ ├── operacake-cache.lib │ ├── operacake.kicad_pcb │ ├── operacake.net │ ├── operacake.pro │ └── operacake.sch └── test │ └── si5351-configure.py ├── host ├── CMakeLists.txt ├── README.md ├── cmake │ ├── cmake_uninstall.cmake.in │ ├── modules │ │ ├── FindFFTW.cmake │ │ ├── FindLIBHACKRF.cmake │ │ ├── FindThreads.cmake │ │ └── FindUSB1.cmake │ └── set_release.cmake ├── hackrf-tools │ ├── CMakeLists.txt │ ├── getopt │ │ ├── getopt.c │ │ └── getopt.h │ └── src │ │ ├── CMakeLists.txt │ │ ├── hackrf_clock.c │ │ ├── hackrf_cpldjtag.c │ │ ├── hackrf_debug.c │ │ ├── hackrf_info.c │ │ ├── hackrf_operacake.c │ │ ├── hackrf_spiflash.c │ │ ├── hackrf_sweep.c │ │ └── hackrf_transfer.c └── libhackrf │ ├── 53-hackrf.rules │ ├── 53-hackrf.rules.in │ ├── CMakeLists.txt │ ├── libhackrf.pc.in │ └── src │ ├── CMakeLists.txt │ ├── hackrf.c │ └── hackrf.h ├── issue_template.md └── tools ├── deploy-nightly.sh └── sgpio_debug ├── create_tx_counter.py ├── sgpio_debug_rx.grc └── sgpio_debug_tx.sh /.gitattributes: -------------------------------------------------------------------------------- 1 | *.brd linguist-language=KiCad 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/COPYING -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/Readme.md -------------------------------------------------------------------------------- /TRADEMARK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/TRADEMARK -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/appveyor.yml -------------------------------------------------------------------------------- /doc/HackRF-One-fd0-0009.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/HackRF-One-fd0-0009.jpeg -------------------------------------------------------------------------------- /doc/LPC4330_SGPIO_SignalGenerator_Measurements.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/LPC4330_SGPIO_SignalGenerator_Measurements.ods -------------------------------------------------------------------------------- /doc/LPC4330_SGPIO_SignalGenerator_Measurements.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/LPC4330_SGPIO_SignalGenerator_Measurements.pdf -------------------------------------------------------------------------------- /doc/LPCXPresso_Flash_Debug_Tutorial.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/LPCXPresso_Flash_Debug_Tutorial.odt -------------------------------------------------------------------------------- /doc/LPCXPresso_Flash_Debug_Tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/LPCXPresso_Flash_Debug_Tutorial.pdf -------------------------------------------------------------------------------- /doc/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/Readme.md -------------------------------------------------------------------------------- /doc/SPIFI_Quad_Tests_OLS/SPIFI_QUAD_100MHZ_OLS_0_9_6b3_JellyBean_Startup_Dual4_M4_SPIFI_0.olp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/SPIFI_Quad_Tests_OLS/SPIFI_QUAD_100MHZ_OLS_0_9_6b3_JellyBean_Startup_Dual4_M4_SPIFI_0.olp -------------------------------------------------------------------------------- /doc/SPIFI_Quad_Tests_OLS/SPIFI_QUAD_100MHZ_OLS_0_9_6b3_JellyBean_Startup_Dual4_M4_SPIFI_0.ols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/SPIFI_Quad_Tests_OLS/SPIFI_QUAD_100MHZ_OLS_0_9_6b3_JellyBean_Startup_Dual4_M4_SPIFI_0.ols -------------------------------------------------------------------------------- /doc/SPIFI_Quad_Tests_OLS/SPIFI_QUAD_100MHZ_OLS_0_9_6b3_JellyBean_Startup_Dual4_M4_SPIFI_0_Analyze.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/SPIFI_Quad_Tests_OLS/SPIFI_QUAD_100MHZ_OLS_0_9_6b3_JellyBean_Startup_Dual4_M4_SPIFI_0_Analyze.txt -------------------------------------------------------------------------------- /doc/hardware/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/README -------------------------------------------------------------------------------- /doc/hardware/hackrf-one-assembly.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/hackrf-one-assembly.pdf -------------------------------------------------------------------------------- /doc/hardware/hackrf-one-bom.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/hackrf-one-bom.csv -------------------------------------------------------------------------------- /doc/hardware/hackrf-one-gerbers/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/hackrf-one-gerbers/README -------------------------------------------------------------------------------- /doc/hardware/hackrf-one-gerbers/hackrf-one-B_Mask.gbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/hackrf-one-gerbers/hackrf-one-B_Mask.gbs -------------------------------------------------------------------------------- /doc/hardware/hackrf-one-gerbers/hackrf-one-C1F.gtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/hackrf-one-gerbers/hackrf-one-C1F.gtl -------------------------------------------------------------------------------- /doc/hardware/hackrf-one-gerbers/hackrf-one-C2.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/hackrf-one-gerbers/hackrf-one-C2.gbr -------------------------------------------------------------------------------- /doc/hardware/hackrf-one-gerbers/hackrf-one-C3.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/hackrf-one-gerbers/hackrf-one-C3.gbr -------------------------------------------------------------------------------- /doc/hardware/hackrf-one-gerbers/hackrf-one-C4B.gbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/hackrf-one-gerbers/hackrf-one-C4B.gbl -------------------------------------------------------------------------------- /doc/hardware/hackrf-one-gerbers/hackrf-one-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/hackrf-one-gerbers/hackrf-one-Edge_Cuts.gbr -------------------------------------------------------------------------------- /doc/hardware/hackrf-one-gerbers/hackrf-one-F_Mask.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/hackrf-one-gerbers/hackrf-one-F_Mask.gts -------------------------------------------------------------------------------- /doc/hardware/hackrf-one-gerbers/hackrf-one-F_Paste.gtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/hackrf-one-gerbers/hackrf-one-F_Paste.gtp -------------------------------------------------------------------------------- /doc/hardware/hackrf-one-gerbers/hackrf-one-F_SilkS.gto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/hackrf-one-gerbers/hackrf-one-F_SilkS.gto -------------------------------------------------------------------------------- /doc/hardware/hackrf-one-gerbers/hackrf-one.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/hackrf-one-gerbers/hackrf-one.drl -------------------------------------------------------------------------------- /doc/hardware/hackrf-one-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/hackrf-one-schematic.pdf -------------------------------------------------------------------------------- /doc/hardware/jawbreaker-assembly.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/jawbreaker-assembly.pdf -------------------------------------------------------------------------------- /doc/hardware/jawbreaker-bom.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/jawbreaker-bom.csv -------------------------------------------------------------------------------- /doc/hardware/jawbreaker-gerbers/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/jawbreaker-gerbers/README -------------------------------------------------------------------------------- /doc/hardware/jawbreaker-gerbers/jawbreaker-B_Mask.gbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/jawbreaker-gerbers/jawbreaker-B_Mask.gbs -------------------------------------------------------------------------------- /doc/hardware/jawbreaker-gerbers/jawbreaker-Back.gbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/jawbreaker-gerbers/jawbreaker-Back.gbl -------------------------------------------------------------------------------- /doc/hardware/jawbreaker-gerbers/jawbreaker-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/jawbreaker-gerbers/jawbreaker-Edge_Cuts.gbr -------------------------------------------------------------------------------- /doc/hardware/jawbreaker-gerbers/jawbreaker-F_Mask.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/jawbreaker-gerbers/jawbreaker-F_Mask.gts -------------------------------------------------------------------------------- /doc/hardware/jawbreaker-gerbers/jawbreaker-F_Paste.gtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/jawbreaker-gerbers/jawbreaker-F_Paste.gtp -------------------------------------------------------------------------------- /doc/hardware/jawbreaker-gerbers/jawbreaker-F_SilkS.gto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/jawbreaker-gerbers/jawbreaker-F_SilkS.gto -------------------------------------------------------------------------------- /doc/hardware/jawbreaker-gerbers/jawbreaker-Front.gtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/jawbreaker-gerbers/jawbreaker-Front.gtl -------------------------------------------------------------------------------- /doc/hardware/jawbreaker-gerbers/jawbreaker-Inner2.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/jawbreaker-gerbers/jawbreaker-Inner2.gbr -------------------------------------------------------------------------------- /doc/hardware/jawbreaker-gerbers/jawbreaker-Inner3.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/jawbreaker-gerbers/jawbreaker-Inner3.gbr -------------------------------------------------------------------------------- /doc/hardware/jawbreaker-gerbers/jawbreaker.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/jawbreaker-gerbers/jawbreaker.drl -------------------------------------------------------------------------------- /doc/hardware/jawbreaker-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/hardware/jawbreaker-schematic.pdf -------------------------------------------------------------------------------- /doc/jawbreaker-fd0-145436.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/jawbreaker-fd0-145436.jpeg -------------------------------------------------------------------------------- /doc/jawbreaker.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/jawbreaker.jpeg -------------------------------------------------------------------------------- /doc/lemonAndjelly.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/lemonAndjelly.jpeg -------------------------------------------------------------------------------- /doc/wiki/hardware/modifications/sgpio-gclk2-reroute.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/wiki/hardware/modifications/sgpio-gclk2-reroute.jpg -------------------------------------------------------------------------------- /doc/wiki/hardware/modifications/sgpio-p1_12-cut-trace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/wiki/hardware/modifications/sgpio-p1_12-cut-trace.jpg -------------------------------------------------------------------------------- /doc/wiki/images/baseband-filter/max2837-1m75bw-at-2m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/wiki/images/baseband-filter/max2837-1m75bw-at-2m.png -------------------------------------------------------------------------------- /doc/wiki/images/baseband-filter/max2837-1m75bw-at-8m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/wiki/images/baseband-filter/max2837-1m75bw-at-8m.png -------------------------------------------------------------------------------- /doc/wiki/images/hackrf_blockdiagram-digital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/wiki/images/hackrf_blockdiagram-digital.png -------------------------------------------------------------------------------- /doc/wiki/images/hackrf_blockdiagram-digital.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/wiki/images/hackrf_blockdiagram-digital.svg -------------------------------------------------------------------------------- /doc/wiki/images/hackrf_blockdiagram-frontend_baseband.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/wiki/images/hackrf_blockdiagram-frontend_baseband.png -------------------------------------------------------------------------------- /doc/wiki/images/hackrf_blockdiagram-frontend_baseband.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/doc/wiki/images/hackrf_blockdiagram-frontend_baseband.svg -------------------------------------------------------------------------------- /firmware/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/.gitignore -------------------------------------------------------------------------------- /firmware/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/CMakeLists.txt -------------------------------------------------------------------------------- /firmware/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/README -------------------------------------------------------------------------------- /firmware/appveyor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/appveyor.sh -------------------------------------------------------------------------------- /firmware/blinky/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/blinky/CMakeLists.txt -------------------------------------------------------------------------------- /firmware/blinky/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/blinky/README -------------------------------------------------------------------------------- /firmware/blinky/blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/blinky/blinky.c -------------------------------------------------------------------------------- /firmware/common/LPC4320_M4_memory.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/LPC4320_M4_memory.ld -------------------------------------------------------------------------------- /firmware/common/LPC4330_M4_memory.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/LPC4330_M4_memory.ld -------------------------------------------------------------------------------- /firmware/common/LPC43xx_M0_memory.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/LPC43xx_M0_memory.ld -------------------------------------------------------------------------------- /firmware/common/LPC43xx_M4_M0_image_from_text.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/LPC43xx_M4_M0_image_from_text.ld -------------------------------------------------------------------------------- /firmware/common/LPC43xx_M4_memory.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/LPC43xx_M4_memory.ld -------------------------------------------------------------------------------- /firmware/common/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/README -------------------------------------------------------------------------------- /firmware/common/bitband.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/bitband.c -------------------------------------------------------------------------------- /firmware/common/bitband.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/bitband.h -------------------------------------------------------------------------------- /firmware/common/cpld_jtag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/cpld_jtag.c -------------------------------------------------------------------------------- /firmware/common/cpld_jtag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/cpld_jtag.h -------------------------------------------------------------------------------- /firmware/common/cpld_xc2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/cpld_xc2c.c -------------------------------------------------------------------------------- /firmware/common/cpld_xc2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/cpld_xc2c.h -------------------------------------------------------------------------------- /firmware/common/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/crc.c -------------------------------------------------------------------------------- /firmware/common/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/crc.h -------------------------------------------------------------------------------- /firmware/common/fault_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/fault_handler.c -------------------------------------------------------------------------------- /firmware/common/fault_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/fault_handler.h -------------------------------------------------------------------------------- /firmware/common/gpdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/gpdma.c -------------------------------------------------------------------------------- /firmware/common/gpdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/gpdma.h -------------------------------------------------------------------------------- /firmware/common/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/gpio.h -------------------------------------------------------------------------------- /firmware/common/gpio_lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/gpio_lpc.c -------------------------------------------------------------------------------- /firmware/common/gpio_lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/gpio_lpc.h -------------------------------------------------------------------------------- /firmware/common/hackrf_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/hackrf_core.c -------------------------------------------------------------------------------- /firmware/common/hackrf_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/hackrf_core.h -------------------------------------------------------------------------------- /firmware/common/hackrf_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/hackrf_ui.c -------------------------------------------------------------------------------- /firmware/common/hackrf_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/hackrf_ui.h -------------------------------------------------------------------------------- /firmware/common/i2c_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/i2c_bus.c -------------------------------------------------------------------------------- /firmware/common/i2c_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/i2c_bus.h -------------------------------------------------------------------------------- /firmware/common/i2c_lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/i2c_lpc.c -------------------------------------------------------------------------------- /firmware/common/i2c_lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/i2c_lpc.h -------------------------------------------------------------------------------- /firmware/common/m0_bin.s.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/m0_bin.s.cmake -------------------------------------------------------------------------------- /firmware/common/m0_sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/m0_sleep.c -------------------------------------------------------------------------------- /firmware/common/max2837.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/max2837.c -------------------------------------------------------------------------------- /firmware/common/max2837.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/max2837.h -------------------------------------------------------------------------------- /firmware/common/max2837_regs.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/max2837_regs.def -------------------------------------------------------------------------------- /firmware/common/max2837_target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/max2837_target.c -------------------------------------------------------------------------------- /firmware/common/max2837_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/max2837_target.h -------------------------------------------------------------------------------- /firmware/common/max2871.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/max2871.c -------------------------------------------------------------------------------- /firmware/common/max2871.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/max2871.h -------------------------------------------------------------------------------- /firmware/common/max2871_regs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/max2871_regs.c -------------------------------------------------------------------------------- /firmware/common/max2871_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/max2871_regs.h -------------------------------------------------------------------------------- /firmware/common/max5864.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/max5864.c -------------------------------------------------------------------------------- /firmware/common/max5864.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/max5864.h -------------------------------------------------------------------------------- /firmware/common/max5864_target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/max5864_target.c -------------------------------------------------------------------------------- /firmware/common/max5864_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/max5864_target.h -------------------------------------------------------------------------------- /firmware/common/mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/mixer.c -------------------------------------------------------------------------------- /firmware/common/mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/mixer.h -------------------------------------------------------------------------------- /firmware/common/operacake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/operacake.c -------------------------------------------------------------------------------- /firmware/common/operacake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/operacake.h -------------------------------------------------------------------------------- /firmware/common/portapack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/portapack.c -------------------------------------------------------------------------------- /firmware/common/portapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/portapack.h -------------------------------------------------------------------------------- /firmware/common/rf_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/rf_path.c -------------------------------------------------------------------------------- /firmware/common/rf_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/rf_path.h -------------------------------------------------------------------------------- /firmware/common/rffc5071.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/rffc5071.c -------------------------------------------------------------------------------- /firmware/common/rffc5071.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/rffc5071.h -------------------------------------------------------------------------------- /firmware/common/rffc5071_regs.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/rffc5071_regs.def -------------------------------------------------------------------------------- /firmware/common/rffc5071_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/rffc5071_spi.c -------------------------------------------------------------------------------- /firmware/common/rffc5071_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/rffc5071_spi.h -------------------------------------------------------------------------------- /firmware/common/rom_iap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/rom_iap.c -------------------------------------------------------------------------------- /firmware/common/rom_iap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/rom_iap.h -------------------------------------------------------------------------------- /firmware/common/sgpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/sgpio.c -------------------------------------------------------------------------------- /firmware/common/sgpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/sgpio.h -------------------------------------------------------------------------------- /firmware/common/si5351c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/si5351c.c -------------------------------------------------------------------------------- /firmware/common/si5351c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/si5351c.h -------------------------------------------------------------------------------- /firmware/common/spi_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/spi_bus.c -------------------------------------------------------------------------------- /firmware/common/spi_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/spi_bus.h -------------------------------------------------------------------------------- /firmware/common/spi_ssp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/spi_ssp.c -------------------------------------------------------------------------------- /firmware/common/spi_ssp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/spi_ssp.h -------------------------------------------------------------------------------- /firmware/common/streaming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/streaming.c -------------------------------------------------------------------------------- /firmware/common/streaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/streaming.h -------------------------------------------------------------------------------- /firmware/common/tuning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/tuning.c -------------------------------------------------------------------------------- /firmware/common/tuning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/tuning.h -------------------------------------------------------------------------------- /firmware/common/ui_portapack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/ui_portapack.c -------------------------------------------------------------------------------- /firmware/common/ui_portapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/ui_portapack.h -------------------------------------------------------------------------------- /firmware/common/ui_rad1o.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/ui_rad1o.c -------------------------------------------------------------------------------- /firmware/common/ui_rad1o.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/ui_rad1o.h -------------------------------------------------------------------------------- /firmware/common/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/usb.c -------------------------------------------------------------------------------- /firmware/common/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/usb.h -------------------------------------------------------------------------------- /firmware/common/usb_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/usb_queue.c -------------------------------------------------------------------------------- /firmware/common/usb_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/usb_queue.h -------------------------------------------------------------------------------- /firmware/common/usb_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/usb_request.c -------------------------------------------------------------------------------- /firmware/common/usb_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/usb_request.h -------------------------------------------------------------------------------- /firmware/common/usb_standard_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/usb_standard_request.c -------------------------------------------------------------------------------- /firmware/common/usb_standard_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/usb_standard_request.h -------------------------------------------------------------------------------- /firmware/common/usb_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/usb_type.h -------------------------------------------------------------------------------- /firmware/common/w25q80bv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/w25q80bv.c -------------------------------------------------------------------------------- /firmware/common/w25q80bv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/w25q80bv.h -------------------------------------------------------------------------------- /firmware/common/w25q80bv_target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/w25q80bv_target.c -------------------------------------------------------------------------------- /firmware/common/w25q80bv_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/w25q80bv_target.h -------------------------------------------------------------------------------- /firmware/common/xapp058/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/xapp058/README -------------------------------------------------------------------------------- /firmware/common/xapp058/lenval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/xapp058/lenval.c -------------------------------------------------------------------------------- /firmware/common/xapp058/lenval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/xapp058/lenval.h -------------------------------------------------------------------------------- /firmware/common/xapp058/micro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/xapp058/micro.c -------------------------------------------------------------------------------- /firmware/common/xapp058/micro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/xapp058/micro.h -------------------------------------------------------------------------------- /firmware/common/xapp058/ports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/xapp058/ports.c -------------------------------------------------------------------------------- /firmware/common/xapp058/ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/common/xapp058/ports.h -------------------------------------------------------------------------------- /firmware/cpld/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/cpld/README -------------------------------------------------------------------------------- /firmware/cpld/sgpio_debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/cpld/sgpio_debug/Makefile -------------------------------------------------------------------------------- /firmware/cpld/sgpio_debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/cpld/sgpio_debug/README.md -------------------------------------------------------------------------------- /firmware/cpld/sgpio_debug/batch_svf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/cpld/sgpio_debug/batch_svf -------------------------------------------------------------------------------- /firmware/cpld/sgpio_debug/batch_xsvf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/cpld/sgpio_debug/batch_xsvf -------------------------------------------------------------------------------- /firmware/cpld/sgpio_debug/default.xsvf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/cpld/sgpio_debug/default.xsvf -------------------------------------------------------------------------------- /firmware/cpld/sgpio_debug/sgpio_debug.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/cpld/sgpio_debug/sgpio_debug.xise -------------------------------------------------------------------------------- /firmware/cpld/sgpio_debug/top.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/cpld/sgpio_debug/top.jed -------------------------------------------------------------------------------- /firmware/cpld/sgpio_debug/top.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/cpld/sgpio_debug/top.ucf -------------------------------------------------------------------------------- /firmware/cpld/sgpio_debug/top.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/cpld/sgpio_debug/top.vhd -------------------------------------------------------------------------------- /firmware/cpld/sgpio_debug/top_tb.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/cpld/sgpio_debug/top_tb.vhd -------------------------------------------------------------------------------- /firmware/cpld/sgpio_if/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/cpld/sgpio_if/Makefile -------------------------------------------------------------------------------- /firmware/cpld/sgpio_if/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/cpld/sgpio_if/README.md -------------------------------------------------------------------------------- /firmware/cpld/sgpio_if/batch_svf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/cpld/sgpio_if/batch_svf -------------------------------------------------------------------------------- /firmware/cpld/sgpio_if/batch_xsvf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/cpld/sgpio_if/batch_xsvf -------------------------------------------------------------------------------- /firmware/cpld/sgpio_if/default.xsvf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/cpld/sgpio_if/default.xsvf -------------------------------------------------------------------------------- /firmware/cpld/sgpio_if/sgpio_if.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/cpld/sgpio_if/sgpio_if.xise -------------------------------------------------------------------------------- /firmware/cpld/sgpio_if/top.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/cpld/sgpio_if/top.jed -------------------------------------------------------------------------------- /firmware/cpld/sgpio_if/top.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/cpld/sgpio_if/top.ucf -------------------------------------------------------------------------------- /firmware/cpld/sgpio_if/top.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/cpld/sgpio_if/top.vhd -------------------------------------------------------------------------------- /firmware/cpld/sgpio_if/top_tb.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/cpld/sgpio_if/top_tb.vhd -------------------------------------------------------------------------------- /firmware/dfu-util.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/dfu-util.cmake -------------------------------------------------------------------------------- /firmware/dfu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/dfu.py -------------------------------------------------------------------------------- /firmware/hackrf-common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf-common.cmake -------------------------------------------------------------------------------- /firmware/hackrf_usb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/CMakeLists.txt -------------------------------------------------------------------------------- /firmware/hackrf_usb/hackrf_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/hackrf_usb.c -------------------------------------------------------------------------------- /firmware/hackrf_usb/sgpio_m0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/sgpio_m0.s -------------------------------------------------------------------------------- /firmware/hackrf_usb/usb_api_board_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/usb_api_board_info.c -------------------------------------------------------------------------------- /firmware/hackrf_usb/usb_api_board_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/usb_api_board_info.h -------------------------------------------------------------------------------- /firmware/hackrf_usb/usb_api_cpld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/usb_api_cpld.c -------------------------------------------------------------------------------- /firmware/hackrf_usb/usb_api_cpld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/usb_api_cpld.h -------------------------------------------------------------------------------- /firmware/hackrf_usb/usb_api_operacake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/usb_api_operacake.c -------------------------------------------------------------------------------- /firmware/hackrf_usb/usb_api_operacake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/usb_api_operacake.h -------------------------------------------------------------------------------- /firmware/hackrf_usb/usb_api_register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/usb_api_register.c -------------------------------------------------------------------------------- /firmware/hackrf_usb/usb_api_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/usb_api_register.h -------------------------------------------------------------------------------- /firmware/hackrf_usb/usb_api_spiflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/usb_api_spiflash.c -------------------------------------------------------------------------------- /firmware/hackrf_usb/usb_api_spiflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/usb_api_spiflash.h -------------------------------------------------------------------------------- /firmware/hackrf_usb/usb_api_sweep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/usb_api_sweep.c -------------------------------------------------------------------------------- /firmware/hackrf_usb/usb_api_sweep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/usb_api_sweep.h -------------------------------------------------------------------------------- /firmware/hackrf_usb/usb_api_transceiver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/usb_api_transceiver.c -------------------------------------------------------------------------------- /firmware/hackrf_usb/usb_api_transceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/usb_api_transceiver.h -------------------------------------------------------------------------------- /firmware/hackrf_usb/usb_api_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/usb_api_ui.c -------------------------------------------------------------------------------- /firmware/hackrf_usb/usb_api_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/usb_api_ui.h -------------------------------------------------------------------------------- /firmware/hackrf_usb/usb_bulk_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/usb_bulk_buffer.c -------------------------------------------------------------------------------- /firmware/hackrf_usb/usb_bulk_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/usb_bulk_buffer.h -------------------------------------------------------------------------------- /firmware/hackrf_usb/usb_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/usb_descriptor.c -------------------------------------------------------------------------------- /firmware/hackrf_usb/usb_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/usb_descriptor.h -------------------------------------------------------------------------------- /firmware/hackrf_usb/usb_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/usb_device.c -------------------------------------------------------------------------------- /firmware/hackrf_usb/usb_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/usb_device.h -------------------------------------------------------------------------------- /firmware/hackrf_usb/usb_endpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/usb_endpoint.c -------------------------------------------------------------------------------- /firmware/hackrf_usb/usb_endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/hackrf_usb/usb_endpoint.h -------------------------------------------------------------------------------- /firmware/toolchain-arm-cortex-m.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/toolchain-arm-cortex-m.cmake -------------------------------------------------------------------------------- /firmware/tools/check_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/tools/check_clock.py -------------------------------------------------------------------------------- /firmware/tools/cpld_bitstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/tools/cpld_bitstream.py -------------------------------------------------------------------------------- /firmware/tools/dumb_crc32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/tools/dumb_crc32.py -------------------------------------------------------------------------------- /firmware/tools/dump_cgu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/tools/dump_cgu.py -------------------------------------------------------------------------------- /firmware/tools/xsvf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/firmware/tools/xsvf.py -------------------------------------------------------------------------------- /hardware/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/.gitignore -------------------------------------------------------------------------------- /hardware/LNA915/LNA915-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/LNA915/LNA915-cache.lib -------------------------------------------------------------------------------- /hardware/LNA915/LNA915.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/LNA915/LNA915.cmp -------------------------------------------------------------------------------- /hardware/LNA915/LNA915.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/LNA915/LNA915.kicad_pcb -------------------------------------------------------------------------------- /hardware/LNA915/LNA915.lib: -------------------------------------------------------------------------------- 1 | EESchema-LIBRARY Version 2.4 2 | #encoding utf-8 3 | # 4 | #End Library 5 | -------------------------------------------------------------------------------- /hardware/LNA915/LNA915.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/LNA915/LNA915.pro -------------------------------------------------------------------------------- /hardware/LNA915/LNA915.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/LNA915/LNA915.sch -------------------------------------------------------------------------------- /hardware/LNA915/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/LNA915/README -------------------------------------------------------------------------------- /hardware/LNA915/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/LNA915/fp-lib-table -------------------------------------------------------------------------------- /hardware/LNA915/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/LNA915/sym-lib-table -------------------------------------------------------------------------------- /hardware/bubblegum/bubblegum-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/bubblegum/bubblegum-cache.lib -------------------------------------------------------------------------------- /hardware/bubblegum/bubblegum.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/bubblegum/bubblegum.brd -------------------------------------------------------------------------------- /hardware/bubblegum/bubblegum.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/bubblegum/bubblegum.cmp -------------------------------------------------------------------------------- /hardware/bubblegum/bubblegum.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/bubblegum/bubblegum.net -------------------------------------------------------------------------------- /hardware/bubblegum/bubblegum.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/bubblegum/bubblegum.pro -------------------------------------------------------------------------------- /hardware/bubblegum/bubblegum.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/bubblegum/bubblegum.sch -------------------------------------------------------------------------------- /hardware/hackrf-one/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/hackrf-one/LICENSE -------------------------------------------------------------------------------- /hardware/hackrf-one/PlasticCase_CAD/Case_With_HackRF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/hackrf-one/PlasticCase_CAD/Case_With_HackRF.png -------------------------------------------------------------------------------- /hardware/hackrf-one/PlasticCase_CAD/HackRF_One_Case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/hackrf-one/PlasticCase_CAD/HackRF_One_Case.png -------------------------------------------------------------------------------- /hardware/hackrf-one/PlasticCase_CAD/HackRF_One_Case_With_Button_CutOuts.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/hackrf-one/PlasticCase_CAD/HackRF_One_Case_With_Button_CutOuts.dxf -------------------------------------------------------------------------------- /hardware/hackrf-one/PlasticCase_CAD/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/hackrf-one/PlasticCase_CAD/README -------------------------------------------------------------------------------- /hardware/hackrf-one/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/hackrf-one/README -------------------------------------------------------------------------------- /hardware/hackrf-one/acrylic_case/HackRF_One_Case_v2.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/hackrf-one/acrylic_case/HackRF_One_Case_v2.dxf -------------------------------------------------------------------------------- /hardware/hackrf-one/acrylic_case/HackRF_One_Case_v2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/hackrf-one/acrylic_case/HackRF_One_Case_v2.pdf -------------------------------------------------------------------------------- /hardware/hackrf-one/acrylic_case/HackRF_One_Case_v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/hackrf-one/acrylic_case/HackRF_One_Case_v2.svg -------------------------------------------------------------------------------- /hardware/hackrf-one/acrylic_case/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/hackrf-one/acrylic_case/README.md -------------------------------------------------------------------------------- /hardware/hackrf-one/baseband.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/hackrf-one/baseband.sch -------------------------------------------------------------------------------- /hardware/hackrf-one/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/hackrf-one/fp-lib-table -------------------------------------------------------------------------------- /hardware/hackrf-one/frontend.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/hackrf-one/frontend.sch -------------------------------------------------------------------------------- /hardware/hackrf-one/hackrf-one-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/hackrf-one/hackrf-one-cache.lib -------------------------------------------------------------------------------- /hardware/hackrf-one/hackrf-one.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/hackrf-one/hackrf-one.cmp -------------------------------------------------------------------------------- /hardware/hackrf-one/hackrf-one.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/hackrf-one/hackrf-one.kicad_pcb -------------------------------------------------------------------------------- /hardware/hackrf-one/hackrf-one.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/hackrf-one/hackrf-one.pro -------------------------------------------------------------------------------- /hardware/hackrf-one/hackrf-one.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/hackrf-one/hackrf-one.sch -------------------------------------------------------------------------------- /hardware/hackrf-one/mcu.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/hackrf-one/mcu.sch -------------------------------------------------------------------------------- /hardware/hackrf-one/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/hackrf-one/sym-lib-table -------------------------------------------------------------------------------- /hardware/jawbreaker/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jawbreaker/README -------------------------------------------------------------------------------- /hardware/jawbreaker/SoBv1_DP17298/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jawbreaker/SoBv1_DP17298/README -------------------------------------------------------------------------------- /hardware/jawbreaker/SoBv1_DP17298/SoBv1-DP17298-jawbreaker-Bottom.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jawbreaker/SoBv1_DP17298/SoBv1-DP17298-jawbreaker-Bottom.skp -------------------------------------------------------------------------------- /hardware/jawbreaker/SoBv1_DP17298/SoBv1-DP17298-jawbreaker-Bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jawbreaker/SoBv1_DP17298/SoBv1-DP17298-jawbreaker-Bottom.svg -------------------------------------------------------------------------------- /hardware/jawbreaker/SoBv1_DP17298/SoBv1-DP17298-jawbreaker-Bottom_laser_cutting_493.3mm_Easy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jawbreaker/SoBv1_DP17298/SoBv1-DP17298-jawbreaker-Bottom_laser_cutting_493.3mm_Easy.txt -------------------------------------------------------------------------------- /hardware/jawbreaker/SoBv1_DP17298/SoBv1-DP17298-jawbreaker-Top.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jawbreaker/SoBv1_DP17298/SoBv1-DP17298-jawbreaker-Top.skp -------------------------------------------------------------------------------- /hardware/jawbreaker/SoBv1_DP17298/SoBv1-DP17298-jawbreaker-Top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jawbreaker/SoBv1_DP17298/SoBv1-DP17298-jawbreaker-Top.svg -------------------------------------------------------------------------------- /hardware/jawbreaker/SoBv1_DP17298/SoBv1-DP17298-jawbreaker-Top_laser_cutting_1153.3mm_Normal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jawbreaker/SoBv1_DP17298/SoBv1-DP17298-jawbreaker-Top_laser_cutting_1153.3mm_Normal.txt -------------------------------------------------------------------------------- /hardware/jawbreaker/SoBv1_DP17298/SoBv1-DP17298-jawbreaker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jawbreaker/SoBv1_DP17298/SoBv1-DP17298-jawbreaker.jpg -------------------------------------------------------------------------------- /hardware/jawbreaker/SoBv1_DP17298/jawbreaker_and_case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jawbreaker/SoBv1_DP17298/jawbreaker_and_case.png -------------------------------------------------------------------------------- /hardware/jawbreaker/baseband.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jawbreaker/baseband.sch -------------------------------------------------------------------------------- /hardware/jawbreaker/frontend.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jawbreaker/frontend.sch -------------------------------------------------------------------------------- /hardware/jawbreaker/jawbreaker-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jawbreaker/jawbreaker-cache.lib -------------------------------------------------------------------------------- /hardware/jawbreaker/jawbreaker.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jawbreaker/jawbreaker.brd -------------------------------------------------------------------------------- /hardware/jawbreaker/jawbreaker.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jawbreaker/jawbreaker.cmp -------------------------------------------------------------------------------- /hardware/jawbreaker/jawbreaker.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jawbreaker/jawbreaker.net -------------------------------------------------------------------------------- /hardware/jawbreaker/jawbreaker.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jawbreaker/jawbreaker.pro -------------------------------------------------------------------------------- /hardware/jawbreaker/jawbreaker.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jawbreaker/jawbreaker.sch -------------------------------------------------------------------------------- /hardware/jawbreaker/mcu.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jawbreaker/mcu.sch -------------------------------------------------------------------------------- /hardware/jellybean/JellyBean_PinMux.pmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jellybean/JellyBean_PinMux.pmx -------------------------------------------------------------------------------- /hardware/jellybean/JellyBean_TPS62410.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jellybean/JellyBean_TPS62410.ods -------------------------------------------------------------------------------- /hardware/jellybean/JellyBean_pins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jellybean/JellyBean_pins.png -------------------------------------------------------------------------------- /hardware/jellybean/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jellybean/README -------------------------------------------------------------------------------- /hardware/jellybean/jellybean-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jellybean/jellybean-cache.lib -------------------------------------------------------------------------------- /hardware/jellybean/jellybean.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jellybean/jellybean.brd -------------------------------------------------------------------------------- /hardware/jellybean/jellybean.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jellybean/jellybean.cmp -------------------------------------------------------------------------------- /hardware/jellybean/jellybean.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jellybean/jellybean.net -------------------------------------------------------------------------------- /hardware/jellybean/jellybean.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jellybean/jellybean.pro -------------------------------------------------------------------------------- /hardware/jellybean/jellybean.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jellybean/jellybean.sch -------------------------------------------------------------------------------- /hardware/jellybean/jellybean_BOM.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jellybean/jellybean_BOM.ods -------------------------------------------------------------------------------- /hardware/jellybean/jellybean_board_PCB_layers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jellybean/jellybean_board_PCB_layers.pdf -------------------------------------------------------------------------------- /hardware/jellybean/jellybean_schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/jellybean/jellybean_schematic.pdf -------------------------------------------------------------------------------- /hardware/kicad/hackrf.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/kicad/hackrf.dcm -------------------------------------------------------------------------------- /hardware/kicad/hackrf.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/kicad/hackrf.lib -------------------------------------------------------------------------------- /hardware/kicad/hackrf.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/kicad/hackrf.mod -------------------------------------------------------------------------------- /hardware/lemondrop/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/lemondrop/README -------------------------------------------------------------------------------- /hardware/lemondrop/lemondrop-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/lemondrop/lemondrop-cache.lib -------------------------------------------------------------------------------- /hardware/lemondrop/lemondrop.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/lemondrop/lemondrop.brd -------------------------------------------------------------------------------- /hardware/lemondrop/lemondrop.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/lemondrop/lemondrop.cmp -------------------------------------------------------------------------------- /hardware/lemondrop/lemondrop.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/lemondrop/lemondrop.net -------------------------------------------------------------------------------- /hardware/lemondrop/lemondrop.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/lemondrop/lemondrop.pro -------------------------------------------------------------------------------- /hardware/lemondrop/lemondrop.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/lemondrop/lemondrop.sch -------------------------------------------------------------------------------- /hardware/licorice/licorice-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/licorice/licorice-cache.lib -------------------------------------------------------------------------------- /hardware/licorice/licorice.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/licorice/licorice.brd -------------------------------------------------------------------------------- /hardware/licorice/licorice.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/licorice/licorice.cmp -------------------------------------------------------------------------------- /hardware/licorice/licorice.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/licorice/licorice.net -------------------------------------------------------------------------------- /hardware/licorice/licorice.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/licorice/licorice.pro -------------------------------------------------------------------------------- /hardware/licorice/licorice.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/licorice/licorice.sch -------------------------------------------------------------------------------- /hardware/lollipop/lollipop-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/lollipop/lollipop-cache.lib -------------------------------------------------------------------------------- /hardware/lollipop/lollipop.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/lollipop/lollipop.brd -------------------------------------------------------------------------------- /hardware/lollipop/lollipop.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/lollipop/lollipop.cmp -------------------------------------------------------------------------------- /hardware/lollipop/lollipop.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/lollipop/lollipop.net -------------------------------------------------------------------------------- /hardware/lollipop/lollipop.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/lollipop/lollipop.pro -------------------------------------------------------------------------------- /hardware/lollipop/lollipop.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/lollipop/lollipop.sch -------------------------------------------------------------------------------- /hardware/lollipop/lollipop_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/lollipop/lollipop_logic.py -------------------------------------------------------------------------------- /hardware/marzipan/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/marzipan/README -------------------------------------------------------------------------------- /hardware/marzipan/baseband.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/marzipan/baseband.sch -------------------------------------------------------------------------------- /hardware/marzipan/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/marzipan/fp-lib-table -------------------------------------------------------------------------------- /hardware/marzipan/frontend.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/marzipan/frontend.sch -------------------------------------------------------------------------------- /hardware/marzipan/marzipan-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/marzipan/marzipan-cache.lib -------------------------------------------------------------------------------- /hardware/marzipan/marzipan.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/marzipan/marzipan.cmp -------------------------------------------------------------------------------- /hardware/marzipan/marzipan.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/marzipan/marzipan.kicad_pcb -------------------------------------------------------------------------------- /hardware/marzipan/marzipan.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/marzipan/marzipan.net -------------------------------------------------------------------------------- /hardware/marzipan/marzipan.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/marzipan/marzipan.pro -------------------------------------------------------------------------------- /hardware/marzipan/marzipan.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/marzipan/marzipan.sch -------------------------------------------------------------------------------- /hardware/marzipan/mcu.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/marzipan/mcu.sch -------------------------------------------------------------------------------- /hardware/neapolitan/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/neapolitan/README -------------------------------------------------------------------------------- /hardware/neapolitan/baseband.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/neapolitan/baseband.sch -------------------------------------------------------------------------------- /hardware/neapolitan/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/neapolitan/fp-lib-table -------------------------------------------------------------------------------- /hardware/neapolitan/frontend.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/neapolitan/frontend.sch -------------------------------------------------------------------------------- /hardware/neapolitan/mcu.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/neapolitan/mcu.sch -------------------------------------------------------------------------------- /hardware/neapolitan/neapolitan-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/neapolitan/neapolitan-cache.lib -------------------------------------------------------------------------------- /hardware/neapolitan/neapolitan.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/neapolitan/neapolitan.cmp -------------------------------------------------------------------------------- /hardware/neapolitan/neapolitan.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/neapolitan/neapolitan.kicad_pcb -------------------------------------------------------------------------------- /hardware/neapolitan/neapolitan.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/neapolitan/neapolitan.net -------------------------------------------------------------------------------- /hardware/neapolitan/neapolitan.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/neapolitan/neapolitan.pro -------------------------------------------------------------------------------- /hardware/neapolitan/neapolitan.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/neapolitan/neapolitan.sch -------------------------------------------------------------------------------- /hardware/operacake/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/operacake/README -------------------------------------------------------------------------------- /hardware/operacake/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/operacake/fp-lib-table -------------------------------------------------------------------------------- /hardware/operacake/operacake-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/operacake/operacake-cache.lib -------------------------------------------------------------------------------- /hardware/operacake/operacake.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/operacake/operacake.kicad_pcb -------------------------------------------------------------------------------- /hardware/operacake/operacake.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/operacake/operacake.net -------------------------------------------------------------------------------- /hardware/operacake/operacake.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/operacake/operacake.pro -------------------------------------------------------------------------------- /hardware/operacake/operacake.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/operacake/operacake.sch -------------------------------------------------------------------------------- /hardware/test/si5351-configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/hardware/test/si5351-configure.py -------------------------------------------------------------------------------- /host/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/CMakeLists.txt -------------------------------------------------------------------------------- /host/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/README.md -------------------------------------------------------------------------------- /host/cmake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/cmake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /host/cmake/modules/FindFFTW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/cmake/modules/FindFFTW.cmake -------------------------------------------------------------------------------- /host/cmake/modules/FindLIBHACKRF.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/cmake/modules/FindLIBHACKRF.cmake -------------------------------------------------------------------------------- /host/cmake/modules/FindThreads.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/cmake/modules/FindThreads.cmake -------------------------------------------------------------------------------- /host/cmake/modules/FindUSB1.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/cmake/modules/FindUSB1.cmake -------------------------------------------------------------------------------- /host/cmake/set_release.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/cmake/set_release.cmake -------------------------------------------------------------------------------- /host/hackrf-tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/hackrf-tools/CMakeLists.txt -------------------------------------------------------------------------------- /host/hackrf-tools/getopt/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/hackrf-tools/getopt/getopt.c -------------------------------------------------------------------------------- /host/hackrf-tools/getopt/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/hackrf-tools/getopt/getopt.h -------------------------------------------------------------------------------- /host/hackrf-tools/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/hackrf-tools/src/CMakeLists.txt -------------------------------------------------------------------------------- /host/hackrf-tools/src/hackrf_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/hackrf-tools/src/hackrf_clock.c -------------------------------------------------------------------------------- /host/hackrf-tools/src/hackrf_cpldjtag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/hackrf-tools/src/hackrf_cpldjtag.c -------------------------------------------------------------------------------- /host/hackrf-tools/src/hackrf_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/hackrf-tools/src/hackrf_debug.c -------------------------------------------------------------------------------- /host/hackrf-tools/src/hackrf_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/hackrf-tools/src/hackrf_info.c -------------------------------------------------------------------------------- /host/hackrf-tools/src/hackrf_operacake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/hackrf-tools/src/hackrf_operacake.c -------------------------------------------------------------------------------- /host/hackrf-tools/src/hackrf_spiflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/hackrf-tools/src/hackrf_spiflash.c -------------------------------------------------------------------------------- /host/hackrf-tools/src/hackrf_sweep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/hackrf-tools/src/hackrf_sweep.c -------------------------------------------------------------------------------- /host/hackrf-tools/src/hackrf_transfer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/hackrf-tools/src/hackrf_transfer.c -------------------------------------------------------------------------------- /host/libhackrf/53-hackrf.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/libhackrf/53-hackrf.rules -------------------------------------------------------------------------------- /host/libhackrf/53-hackrf.rules.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/libhackrf/53-hackrf.rules.in -------------------------------------------------------------------------------- /host/libhackrf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/libhackrf/CMakeLists.txt -------------------------------------------------------------------------------- /host/libhackrf/libhackrf.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/libhackrf/libhackrf.pc.in -------------------------------------------------------------------------------- /host/libhackrf/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/libhackrf/src/CMakeLists.txt -------------------------------------------------------------------------------- /host/libhackrf/src/hackrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/libhackrf/src/hackrf.c -------------------------------------------------------------------------------- /host/libhackrf/src/hackrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/host/libhackrf/src/hackrf.h -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/issue_template.md -------------------------------------------------------------------------------- /tools/deploy-nightly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/tools/deploy-nightly.sh -------------------------------------------------------------------------------- /tools/sgpio_debug/create_tx_counter.py: -------------------------------------------------------------------------------- 1 | with open('tx_counter.bin', 'wb') as f: 2 | f.write(bytes(range(256))*1000) 3 | -------------------------------------------------------------------------------- /tools/sgpio_debug/sgpio_debug_rx.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/tools/sgpio_debug/sgpio_debug_rx.grc -------------------------------------------------------------------------------- /tools/sgpio_debug/sgpio_debug_tx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docprofsky/hackrf/HEAD/tools/sgpio_debug/sgpio_debug_tx.sh --------------------------------------------------------------------------------