├── .readthedocs.yaml ├── AUTHORS ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── Jenkinsfile ├── LICENSE ├── Makefile ├── README.md ├── ci-scripts ├── build-firmware.sh ├── build-host.sh ├── configure-hubs.sh ├── test-firmware-flash.sh ├── test-firmware-program.sh └── test-host.sh ├── docs ├── Makefile ├── images │ ├── greatfet_msp430.png │ └── greatfet_sticker.jpg ├── make.bat ├── requirements.txt └── source │ ├── board_naming.rst │ ├── conf.py │ ├── design_neighbor.rst │ ├── getting_started.rst │ ├── getting_started_firmware_development.rst │ ├── greatfet_classes.rst │ ├── greatfet_gnuradio.rst │ ├── greatfet_i2c.rst │ ├── greatfet_logic.rst │ ├── greatfet_msp430.rst │ ├── i2c_registry.rst │ ├── index.rst │ ├── libgreat_verb_signatures.rst │ ├── linux_distribution_python_version_matrix.rst │ ├── neighbors.rst │ ├── release_process.rst │ ├── troubleshooting.rst │ └── using_greatfet_apis.rst ├── firmware ├── CMakeLists.txt ├── README.md ├── blinky │ ├── CMakeLists.txt │ ├── README │ └── blinky.c ├── boards │ ├── azalea │ │ ├── board.cmake │ │ └── pins.h │ ├── nxp_xplorer │ │ ├── board.cmake │ │ └── pins.h │ └── rad1o_badge │ │ ├── board.cmake │ │ └── pins.h ├── cmake │ ├── board_select.cmake │ ├── build_config.cmake │ ├── detect_version.cmake │ ├── dfu-util.cmake │ ├── greatfet.cmake │ ├── greatfet_prelude.cmake │ ├── m0_bin.s.cmake │ └── submodules.cmake ├── common │ ├── CMakeLists.txt │ ├── README │ ├── adc.h │ ├── dac.h │ ├── debug.c │ ├── debug.h │ ├── eventrouter.h │ ├── fault_handler.c │ ├── fault_handler.h │ ├── gima.h │ ├── glitchkit.c │ ├── glitchkit.h │ ├── gpdma.c │ ├── gpdma.h │ ├── gpio.h │ ├── gpio_dma.c │ ├── gpio_dma.h │ ├── gpio_int.c │ ├── gpio_int.h │ ├── gpio_lpc.c │ ├── gpio_lpc.h │ ├── gpio_scu.c │ ├── gpio_scu.h │ ├── greatfet_core.c │ ├── greatfet_core.h │ ├── i2c.h │ ├── i2c_bus.c │ ├── i2c_bus.h │ ├── i2c_lpc.c │ ├── i2c_lpc.h │ ├── jtag.c │ ├── jtag.h │ ├── jtag_msp430.c │ ├── jtag_msp430.h │ ├── m0_sleep.c │ ├── onboard_flash.h │ ├── one_wire.c │ ├── one_wire.h │ ├── printf.c │ ├── rom_iap.c │ ├── rom_iap.h │ ├── sdio.h │ ├── sgpio.c │ ├── sgpio.h │ ├── spi.h │ ├── spi_bus.c │ ├── spi_bus.h │ ├── spi_ssp.c │ ├── spi_ssp.h │ ├── spifi.h │ ├── spiflash.c │ ├── spiflash.h │ ├── spiflash_target.c │ ├── spiflash_target.h │ ├── swra124.c │ ├── swra124.h │ ├── tests │ │ ├── Makefile │ │ ├── catch.hpp │ │ ├── test_debug.cpp │ │ └── test_runner.cpp │ ├── time.h │ ├── timers.h │ └── wwdt.h ├── config.h.in ├── dfu.py ├── docs │ └── lpc43xx_usb_host.txt ├── flash_stub │ ├── CMakeLists.txt │ └── main.c └── greatfet_usb │ ├── CMakeLists.txt │ ├── classes │ ├── adc.c │ ├── clock_gen.c │ ├── core.c │ ├── dac.c │ ├── debug.c │ ├── example.c │ ├── firmware.c │ ├── glitchkit │ │ ├── core.c │ │ └── usb.c │ ├── gpio.c │ ├── greatdancer.c │ ├── heartbeat.c │ ├── heartbeat.h │ ├── i2c.c │ ├── jtag.c │ ├── jtag_msp430.c │ ├── leds.c │ ├── loadables.c │ ├── logic_analyzer.c │ ├── pattern_generator.c │ ├── sdir.c │ ├── selftest.c │ ├── spi.c │ ├── spi_flash.c │ ├── swra124.c │ └── uart.c │ ├── greatfet_usb.c │ ├── legacy_apis │ ├── usb_api_DS18B20.c │ ├── usb_api_DS18B20.h │ ├── usb_api_glitchkit_simple.c │ ├── usb_api_glitchkit_simple.h │ ├── usb_api_msp430.c │ ├── usb_api_msp430.h │ ├── usb_api_sdir.c │ ├── usb_api_sdir.h │ ├── usb_api_usbhost.c │ └── usb_api_usbhost.h │ ├── pin_manager.c │ ├── pin_manager.h │ ├── rhododendron.h │ ├── sgpio_isr.c │ ├── sgpio_isr.h │ ├── test_m0.S │ ├── 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 │ ├── usb_request_handlers.c │ ├── usb_request_handlers.h │ ├── usb_streaming.c │ └── usb_streaming.h ├── gateware ├── README.md └── foxglove │ └── hw_tests │ └── blinky.py └── host ├── MANIFEST.in ├── README.md ├── greatfet ├── __init__.py ├── assets │ ├── 54-greatfet-plugdev.rules │ ├── 54-greatfet-uaccess.rules │ ├── LPC43xx_43Sxx.svd │ └── README ├── board.py ├── boards │ ├── __init__.py │ ├── flash_stub.py │ ├── legacy.py │ ├── one.py │ ├── rad1o.py │ └── xplorer.py ├── commands │ ├── __init__.py │ ├── gf.py │ ├── greatfet_DS18B20.py │ ├── greatfet_adc.py │ ├── greatfet_adf7242.py │ ├── greatfet_chipcon.py │ ├── greatfet_dac.py │ ├── greatfet_dmesg.py │ ├── greatfet_firmware.py │ ├── greatfet_host_tools.py │ ├── greatfet_i2c.py │ ├── greatfet_info.py │ ├── greatfet_jtag.py │ ├── greatfet_led.py │ ├── greatfet_loadable.py │ ├── greatfet_logic.py │ ├── greatfet_msp430.py │ ├── greatfet_pattern.py │ ├── greatfet_pirate.py │ ├── greatfet_sdir.py │ ├── greatfet_selftest.py │ ├── greatfet_shell.py │ ├── greatfet_spi.py │ ├── greatfet_spiflash.py │ ├── greatfet_test.py │ ├── greatfet_uart.py │ └── greatfet_usb_capture.py ├── debug │ ├── __init__.py │ ├── lpc43xx.py │ └── svd.py ├── errors.py ├── examples │ ├── gpio_pin_modes.py │ └── greatfet_flame ├── glitchkit │ ├── __init__.py │ ├── base.py │ ├── simple.py │ ├── uart.py │ └── usb.py ├── gnuradio │ ├── __init__.py │ ├── adc.block.yml │ ├── adc.py │ ├── block.py │ ├── gladiolus.py │ ├── gladiolus_source.block.yml │ ├── i2c.py │ ├── i2c_register_source.block.yml │ └── i2c_source.block.yml ├── greatfet.py ├── interface.py ├── interfaces │ ├── __init__.py │ ├── adc.py │ ├── gpio.py │ ├── i2c │ │ ├── __init__.py │ │ ├── pca6408a.py │ │ └── register_based.py │ ├── i2c_bus.py │ ├── i2c_device.py │ ├── jtag.py │ ├── led.py │ ├── pattern_generator.py │ ├── sdir.py │ ├── spi │ │ ├── __init__.py │ │ └── dac084s085.py │ ├── spi_bus.py │ ├── spi_device.py │ └── uart.py ├── neighbor.py ├── neighbors │ ├── __init__.py │ ├── foxgen │ │ ├── README.md │ │ ├── __init__.py │ │ ├── config.py │ │ └── platform │ │ │ ├── __init__.py │ │ │ └── foxglove_r0_1.py │ └── foxglove.py ├── peripherals.py ├── programmer.py ├── programmers │ ├── __init__.py │ ├── chipcon.py │ ├── ecp5.py │ ├── firmware.py │ ├── m0.py │ ├── microchipEEPROM.py │ ├── msp430.py │ └── spi_flash.py ├── protocol │ ├── __init__.py │ ├── jtag_svf.py │ └── vendor_requests.py ├── sensor.py ├── sensors │ ├── README │ ├── __init__.py │ └── tsl2561.py ├── support │ ├── __init__.py │ └── bits.py ├── targets │ ├── __init__.py │ └── jtag │ │ ├── __init__.py │ │ └── cortex_m_dap.py ├── tests │ └── test_microchipEEPROM.py ├── util │ ├── __init__.py │ ├── console.py │ └── interactive.py └── utils.py ├── pyproject.toml └── setup.py /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/Dockerfile -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/README.md -------------------------------------------------------------------------------- /ci-scripts/build-firmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/ci-scripts/build-firmware.sh -------------------------------------------------------------------------------- /ci-scripts/build-host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/ci-scripts/build-host.sh -------------------------------------------------------------------------------- /ci-scripts/configure-hubs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/ci-scripts/configure-hubs.sh -------------------------------------------------------------------------------- /ci-scripts/test-firmware-flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/ci-scripts/test-firmware-flash.sh -------------------------------------------------------------------------------- /ci-scripts/test-firmware-program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/ci-scripts/test-firmware-program.sh -------------------------------------------------------------------------------- /ci-scripts/test-host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/ci-scripts/test-host.sh -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/images/greatfet_msp430.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/docs/images/greatfet_msp430.png -------------------------------------------------------------------------------- /docs/images/greatfet_sticker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/docs/images/greatfet_sticker.jpg -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/board_naming.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/docs/source/board_naming.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/design_neighbor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/docs/source/design_neighbor.rst -------------------------------------------------------------------------------- /docs/source/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/docs/source/getting_started.rst -------------------------------------------------------------------------------- /docs/source/getting_started_firmware_development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/docs/source/getting_started_firmware_development.rst -------------------------------------------------------------------------------- /docs/source/greatfet_classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/docs/source/greatfet_classes.rst -------------------------------------------------------------------------------- /docs/source/greatfet_gnuradio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/docs/source/greatfet_gnuradio.rst -------------------------------------------------------------------------------- /docs/source/greatfet_i2c.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/docs/source/greatfet_i2c.rst -------------------------------------------------------------------------------- /docs/source/greatfet_logic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/docs/source/greatfet_logic.rst -------------------------------------------------------------------------------- /docs/source/greatfet_msp430.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/docs/source/greatfet_msp430.rst -------------------------------------------------------------------------------- /docs/source/i2c_registry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/docs/source/i2c_registry.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/libgreat_verb_signatures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/docs/source/libgreat_verb_signatures.rst -------------------------------------------------------------------------------- /docs/source/linux_distribution_python_version_matrix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/docs/source/linux_distribution_python_version_matrix.rst -------------------------------------------------------------------------------- /docs/source/neighbors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/docs/source/neighbors.rst -------------------------------------------------------------------------------- /docs/source/release_process.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/docs/source/release_process.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/docs/source/troubleshooting.rst -------------------------------------------------------------------------------- /docs/source/using_greatfet_apis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/docs/source/using_greatfet_apis.rst -------------------------------------------------------------------------------- /firmware/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/CMakeLists.txt -------------------------------------------------------------------------------- /firmware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/README.md -------------------------------------------------------------------------------- /firmware/blinky/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/blinky/CMakeLists.txt -------------------------------------------------------------------------------- /firmware/blinky/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/blinky/README -------------------------------------------------------------------------------- /firmware/blinky/blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/blinky/blinky.c -------------------------------------------------------------------------------- /firmware/boards/azalea/board.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/boards/azalea/board.cmake -------------------------------------------------------------------------------- /firmware/boards/azalea/pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/boards/azalea/pins.h -------------------------------------------------------------------------------- /firmware/boards/nxp_xplorer/board.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/boards/nxp_xplorer/board.cmake -------------------------------------------------------------------------------- /firmware/boards/nxp_xplorer/pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/boards/nxp_xplorer/pins.h -------------------------------------------------------------------------------- /firmware/boards/rad1o_badge/board.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/boards/rad1o_badge/board.cmake -------------------------------------------------------------------------------- /firmware/boards/rad1o_badge/pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/boards/rad1o_badge/pins.h -------------------------------------------------------------------------------- /firmware/cmake/board_select.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/cmake/board_select.cmake -------------------------------------------------------------------------------- /firmware/cmake/build_config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/cmake/build_config.cmake -------------------------------------------------------------------------------- /firmware/cmake/detect_version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/cmake/detect_version.cmake -------------------------------------------------------------------------------- /firmware/cmake/dfu-util.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/cmake/dfu-util.cmake -------------------------------------------------------------------------------- /firmware/cmake/greatfet.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/cmake/greatfet.cmake -------------------------------------------------------------------------------- /firmware/cmake/greatfet_prelude.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/cmake/greatfet_prelude.cmake -------------------------------------------------------------------------------- /firmware/cmake/m0_bin.s.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/cmake/m0_bin.s.cmake -------------------------------------------------------------------------------- /firmware/cmake/submodules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/cmake/submodules.cmake -------------------------------------------------------------------------------- /firmware/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/CMakeLists.txt -------------------------------------------------------------------------------- /firmware/common/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/README -------------------------------------------------------------------------------- /firmware/common/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/adc.h -------------------------------------------------------------------------------- /firmware/common/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/dac.h -------------------------------------------------------------------------------- /firmware/common/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/debug.c -------------------------------------------------------------------------------- /firmware/common/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/debug.h -------------------------------------------------------------------------------- /firmware/common/eventrouter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/eventrouter.h -------------------------------------------------------------------------------- /firmware/common/fault_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/fault_handler.c -------------------------------------------------------------------------------- /firmware/common/fault_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/fault_handler.h -------------------------------------------------------------------------------- /firmware/common/gima.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/gima.h -------------------------------------------------------------------------------- /firmware/common/glitchkit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/glitchkit.c -------------------------------------------------------------------------------- /firmware/common/glitchkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/glitchkit.h -------------------------------------------------------------------------------- /firmware/common/gpdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/gpdma.c -------------------------------------------------------------------------------- /firmware/common/gpdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/gpdma.h -------------------------------------------------------------------------------- /firmware/common/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/gpio.h -------------------------------------------------------------------------------- /firmware/common/gpio_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/gpio_dma.c -------------------------------------------------------------------------------- /firmware/common/gpio_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/gpio_dma.h -------------------------------------------------------------------------------- /firmware/common/gpio_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/gpio_int.c -------------------------------------------------------------------------------- /firmware/common/gpio_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/gpio_int.h -------------------------------------------------------------------------------- /firmware/common/gpio_lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/gpio_lpc.c -------------------------------------------------------------------------------- /firmware/common/gpio_lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/gpio_lpc.h -------------------------------------------------------------------------------- /firmware/common/gpio_scu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/gpio_scu.c -------------------------------------------------------------------------------- /firmware/common/gpio_scu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/gpio_scu.h -------------------------------------------------------------------------------- /firmware/common/greatfet_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/greatfet_core.c -------------------------------------------------------------------------------- /firmware/common/greatfet_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/greatfet_core.h -------------------------------------------------------------------------------- /firmware/common/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/i2c.h -------------------------------------------------------------------------------- /firmware/common/i2c_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/i2c_bus.c -------------------------------------------------------------------------------- /firmware/common/i2c_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/i2c_bus.h -------------------------------------------------------------------------------- /firmware/common/i2c_lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/i2c_lpc.c -------------------------------------------------------------------------------- /firmware/common/i2c_lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/i2c_lpc.h -------------------------------------------------------------------------------- /firmware/common/jtag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/jtag.c -------------------------------------------------------------------------------- /firmware/common/jtag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/jtag.h -------------------------------------------------------------------------------- /firmware/common/jtag_msp430.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/jtag_msp430.c -------------------------------------------------------------------------------- /firmware/common/jtag_msp430.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/jtag_msp430.h -------------------------------------------------------------------------------- /firmware/common/m0_sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/m0_sleep.c -------------------------------------------------------------------------------- /firmware/common/onboard_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/onboard_flash.h -------------------------------------------------------------------------------- /firmware/common/one_wire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/one_wire.c -------------------------------------------------------------------------------- /firmware/common/one_wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/one_wire.h -------------------------------------------------------------------------------- /firmware/common/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/printf.c -------------------------------------------------------------------------------- /firmware/common/rom_iap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/rom_iap.c -------------------------------------------------------------------------------- /firmware/common/rom_iap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/rom_iap.h -------------------------------------------------------------------------------- /firmware/common/sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/sdio.h -------------------------------------------------------------------------------- /firmware/common/sgpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/sgpio.c -------------------------------------------------------------------------------- /firmware/common/sgpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/sgpio.h -------------------------------------------------------------------------------- /firmware/common/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/spi.h -------------------------------------------------------------------------------- /firmware/common/spi_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/spi_bus.c -------------------------------------------------------------------------------- /firmware/common/spi_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/spi_bus.h -------------------------------------------------------------------------------- /firmware/common/spi_ssp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/spi_ssp.c -------------------------------------------------------------------------------- /firmware/common/spi_ssp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/spi_ssp.h -------------------------------------------------------------------------------- /firmware/common/spifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/spifi.h -------------------------------------------------------------------------------- /firmware/common/spiflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/spiflash.c -------------------------------------------------------------------------------- /firmware/common/spiflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/spiflash.h -------------------------------------------------------------------------------- /firmware/common/spiflash_target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/spiflash_target.c -------------------------------------------------------------------------------- /firmware/common/spiflash_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/spiflash_target.h -------------------------------------------------------------------------------- /firmware/common/swra124.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/swra124.c -------------------------------------------------------------------------------- /firmware/common/swra124.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/swra124.h -------------------------------------------------------------------------------- /firmware/common/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/tests/Makefile -------------------------------------------------------------------------------- /firmware/common/tests/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/tests/catch.hpp -------------------------------------------------------------------------------- /firmware/common/tests/test_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/tests/test_debug.cpp -------------------------------------------------------------------------------- /firmware/common/tests/test_runner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/tests/test_runner.cpp -------------------------------------------------------------------------------- /firmware/common/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/time.h -------------------------------------------------------------------------------- /firmware/common/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/timers.h -------------------------------------------------------------------------------- /firmware/common/wwdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/common/wwdt.h -------------------------------------------------------------------------------- /firmware/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/config.h.in -------------------------------------------------------------------------------- /firmware/dfu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/dfu.py -------------------------------------------------------------------------------- /firmware/docs/lpc43xx_usb_host.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/docs/lpc43xx_usb_host.txt -------------------------------------------------------------------------------- /firmware/flash_stub/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/flash_stub/CMakeLists.txt -------------------------------------------------------------------------------- /firmware/flash_stub/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/flash_stub/main.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/CMakeLists.txt -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/adc.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/clock_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/clock_gen.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/core.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/dac.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/debug.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/example.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/firmware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/firmware.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/glitchkit/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/glitchkit/core.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/glitchkit/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/glitchkit/usb.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/gpio.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/greatdancer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/greatdancer.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/heartbeat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/heartbeat.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/heartbeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/heartbeat.h -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/i2c.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/jtag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/jtag.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/jtag_msp430.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/jtag_msp430.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/leds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/leds.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/loadables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/loadables.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/logic_analyzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/logic_analyzer.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/pattern_generator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/pattern_generator.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/sdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/sdir.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/selftest.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/spi.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/spi_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/spi_flash.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/swra124.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/swra124.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/classes/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/classes/uart.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/greatfet_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/greatfet_usb.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/legacy_apis/usb_api_DS18B20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/legacy_apis/usb_api_DS18B20.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/legacy_apis/usb_api_DS18B20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/legacy_apis/usb_api_DS18B20.h -------------------------------------------------------------------------------- /firmware/greatfet_usb/legacy_apis/usb_api_glitchkit_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/legacy_apis/usb_api_glitchkit_simple.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/legacy_apis/usb_api_glitchkit_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/legacy_apis/usb_api_glitchkit_simple.h -------------------------------------------------------------------------------- /firmware/greatfet_usb/legacy_apis/usb_api_msp430.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/legacy_apis/usb_api_msp430.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/legacy_apis/usb_api_msp430.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/legacy_apis/usb_api_msp430.h -------------------------------------------------------------------------------- /firmware/greatfet_usb/legacy_apis/usb_api_sdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/legacy_apis/usb_api_sdir.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/legacy_apis/usb_api_sdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/legacy_apis/usb_api_sdir.h -------------------------------------------------------------------------------- /firmware/greatfet_usb/legacy_apis/usb_api_usbhost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/legacy_apis/usb_api_usbhost.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/legacy_apis/usb_api_usbhost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/legacy_apis/usb_api_usbhost.h -------------------------------------------------------------------------------- /firmware/greatfet_usb/pin_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/pin_manager.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/pin_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/pin_manager.h -------------------------------------------------------------------------------- /firmware/greatfet_usb/rhododendron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/rhododendron.h -------------------------------------------------------------------------------- /firmware/greatfet_usb/sgpio_isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/sgpio_isr.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/sgpio_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/sgpio_isr.h -------------------------------------------------------------------------------- /firmware/greatfet_usb/test_m0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/test_m0.S -------------------------------------------------------------------------------- /firmware/greatfet_usb/usb_bulk_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/usb_bulk_buffer.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/usb_bulk_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/usb_bulk_buffer.h -------------------------------------------------------------------------------- /firmware/greatfet_usb/usb_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/usb_descriptor.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/usb_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/usb_descriptor.h -------------------------------------------------------------------------------- /firmware/greatfet_usb/usb_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/usb_device.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/usb_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/usb_device.h -------------------------------------------------------------------------------- /firmware/greatfet_usb/usb_endpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/usb_endpoint.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/usb_endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/usb_endpoint.h -------------------------------------------------------------------------------- /firmware/greatfet_usb/usb_request_handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/usb_request_handlers.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/usb_request_handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/usb_request_handlers.h -------------------------------------------------------------------------------- /firmware/greatfet_usb/usb_streaming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/usb_streaming.c -------------------------------------------------------------------------------- /firmware/greatfet_usb/usb_streaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/firmware/greatfet_usb/usb_streaming.h -------------------------------------------------------------------------------- /gateware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/gateware/README.md -------------------------------------------------------------------------------- /gateware/foxglove/hw_tests/blinky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/gateware/foxglove/hw_tests/blinky.py -------------------------------------------------------------------------------- /host/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/MANIFEST.in -------------------------------------------------------------------------------- /host/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/README.md -------------------------------------------------------------------------------- /host/greatfet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/__init__.py -------------------------------------------------------------------------------- /host/greatfet/assets/54-greatfet-plugdev.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/assets/54-greatfet-plugdev.rules -------------------------------------------------------------------------------- /host/greatfet/assets/54-greatfet-uaccess.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/assets/54-greatfet-uaccess.rules -------------------------------------------------------------------------------- /host/greatfet/assets/LPC43xx_43Sxx.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/assets/LPC43xx_43Sxx.svd -------------------------------------------------------------------------------- /host/greatfet/assets/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/assets/README -------------------------------------------------------------------------------- /host/greatfet/board.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/board.py -------------------------------------------------------------------------------- /host/greatfet/boards/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/boards/__init__.py -------------------------------------------------------------------------------- /host/greatfet/boards/flash_stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/boards/flash_stub.py -------------------------------------------------------------------------------- /host/greatfet/boards/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/boards/legacy.py -------------------------------------------------------------------------------- /host/greatfet/boards/one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/boards/one.py -------------------------------------------------------------------------------- /host/greatfet/boards/rad1o.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/boards/rad1o.py -------------------------------------------------------------------------------- /host/greatfet/boards/xplorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/boards/xplorer.py -------------------------------------------------------------------------------- /host/greatfet/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /host/greatfet/commands/gf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/gf.py -------------------------------------------------------------------------------- /host/greatfet/commands/greatfet_DS18B20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/greatfet_DS18B20.py -------------------------------------------------------------------------------- /host/greatfet/commands/greatfet_adc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/greatfet_adc.py -------------------------------------------------------------------------------- /host/greatfet/commands/greatfet_adf7242.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/greatfet_adf7242.py -------------------------------------------------------------------------------- /host/greatfet/commands/greatfet_chipcon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/greatfet_chipcon.py -------------------------------------------------------------------------------- /host/greatfet/commands/greatfet_dac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/greatfet_dac.py -------------------------------------------------------------------------------- /host/greatfet/commands/greatfet_dmesg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/greatfet_dmesg.py -------------------------------------------------------------------------------- /host/greatfet/commands/greatfet_firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/greatfet_firmware.py -------------------------------------------------------------------------------- /host/greatfet/commands/greatfet_host_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/greatfet_host_tools.py -------------------------------------------------------------------------------- /host/greatfet/commands/greatfet_i2c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/greatfet_i2c.py -------------------------------------------------------------------------------- /host/greatfet/commands/greatfet_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/greatfet_info.py -------------------------------------------------------------------------------- /host/greatfet/commands/greatfet_jtag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/greatfet_jtag.py -------------------------------------------------------------------------------- /host/greatfet/commands/greatfet_led.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/greatfet_led.py -------------------------------------------------------------------------------- /host/greatfet/commands/greatfet_loadable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/greatfet_loadable.py -------------------------------------------------------------------------------- /host/greatfet/commands/greatfet_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/greatfet_logic.py -------------------------------------------------------------------------------- /host/greatfet/commands/greatfet_msp430.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/greatfet_msp430.py -------------------------------------------------------------------------------- /host/greatfet/commands/greatfet_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/greatfet_pattern.py -------------------------------------------------------------------------------- /host/greatfet/commands/greatfet_pirate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/greatfet_pirate.py -------------------------------------------------------------------------------- /host/greatfet/commands/greatfet_sdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/greatfet_sdir.py -------------------------------------------------------------------------------- /host/greatfet/commands/greatfet_selftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/greatfet_selftest.py -------------------------------------------------------------------------------- /host/greatfet/commands/greatfet_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/greatfet_shell.py -------------------------------------------------------------------------------- /host/greatfet/commands/greatfet_spi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/greatfet_spi.py -------------------------------------------------------------------------------- /host/greatfet/commands/greatfet_spiflash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/greatfet_spiflash.py -------------------------------------------------------------------------------- /host/greatfet/commands/greatfet_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/greatfet_test.py -------------------------------------------------------------------------------- /host/greatfet/commands/greatfet_uart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/greatfet_uart.py -------------------------------------------------------------------------------- /host/greatfet/commands/greatfet_usb_capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/commands/greatfet_usb_capture.py -------------------------------------------------------------------------------- /host/greatfet/debug/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /host/greatfet/debug/lpc43xx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/debug/lpc43xx.py -------------------------------------------------------------------------------- /host/greatfet/debug/svd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/debug/svd.py -------------------------------------------------------------------------------- /host/greatfet/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/errors.py -------------------------------------------------------------------------------- /host/greatfet/examples/gpio_pin_modes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/examples/gpio_pin_modes.py -------------------------------------------------------------------------------- /host/greatfet/examples/greatfet_flame: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/examples/greatfet_flame -------------------------------------------------------------------------------- /host/greatfet/glitchkit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/glitchkit/__init__.py -------------------------------------------------------------------------------- /host/greatfet/glitchkit/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/glitchkit/base.py -------------------------------------------------------------------------------- /host/greatfet/glitchkit/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/glitchkit/simple.py -------------------------------------------------------------------------------- /host/greatfet/glitchkit/uart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/glitchkit/uart.py -------------------------------------------------------------------------------- /host/greatfet/glitchkit/usb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/glitchkit/usb.py -------------------------------------------------------------------------------- /host/greatfet/gnuradio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /host/greatfet/gnuradio/adc.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/gnuradio/adc.block.yml -------------------------------------------------------------------------------- /host/greatfet/gnuradio/adc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/gnuradio/adc.py -------------------------------------------------------------------------------- /host/greatfet/gnuradio/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/gnuradio/block.py -------------------------------------------------------------------------------- /host/greatfet/gnuradio/gladiolus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/gnuradio/gladiolus.py -------------------------------------------------------------------------------- /host/greatfet/gnuradio/gladiolus_source.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/gnuradio/gladiolus_source.block.yml -------------------------------------------------------------------------------- /host/greatfet/gnuradio/i2c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/gnuradio/i2c.py -------------------------------------------------------------------------------- /host/greatfet/gnuradio/i2c_register_source.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/gnuradio/i2c_register_source.block.yml -------------------------------------------------------------------------------- /host/greatfet/gnuradio/i2c_source.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/gnuradio/i2c_source.block.yml -------------------------------------------------------------------------------- /host/greatfet/greatfet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/greatfet.py -------------------------------------------------------------------------------- /host/greatfet/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/interface.py -------------------------------------------------------------------------------- /host/greatfet/interfaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /host/greatfet/interfaces/adc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/interfaces/adc.py -------------------------------------------------------------------------------- /host/greatfet/interfaces/gpio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/interfaces/gpio.py -------------------------------------------------------------------------------- /host/greatfet/interfaces/i2c/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /host/greatfet/interfaces/i2c/pca6408a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/interfaces/i2c/pca6408a.py -------------------------------------------------------------------------------- /host/greatfet/interfaces/i2c/register_based.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/interfaces/i2c/register_based.py -------------------------------------------------------------------------------- /host/greatfet/interfaces/i2c_bus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/interfaces/i2c_bus.py -------------------------------------------------------------------------------- /host/greatfet/interfaces/i2c_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/interfaces/i2c_device.py -------------------------------------------------------------------------------- /host/greatfet/interfaces/jtag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/interfaces/jtag.py -------------------------------------------------------------------------------- /host/greatfet/interfaces/led.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/interfaces/led.py -------------------------------------------------------------------------------- /host/greatfet/interfaces/pattern_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/interfaces/pattern_generator.py -------------------------------------------------------------------------------- /host/greatfet/interfaces/sdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/interfaces/sdir.py -------------------------------------------------------------------------------- /host/greatfet/interfaces/spi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /host/greatfet/interfaces/spi/dac084s085.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/interfaces/spi/dac084s085.py -------------------------------------------------------------------------------- /host/greatfet/interfaces/spi_bus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/interfaces/spi_bus.py -------------------------------------------------------------------------------- /host/greatfet/interfaces/spi_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/interfaces/spi_device.py -------------------------------------------------------------------------------- /host/greatfet/interfaces/uart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/interfaces/uart.py -------------------------------------------------------------------------------- /host/greatfet/neighbor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/neighbor.py -------------------------------------------------------------------------------- /host/greatfet/neighbors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/neighbors/__init__.py -------------------------------------------------------------------------------- /host/greatfet/neighbors/foxgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/neighbors/foxgen/README.md -------------------------------------------------------------------------------- /host/greatfet/neighbors/foxgen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/neighbors/foxgen/__init__.py -------------------------------------------------------------------------------- /host/greatfet/neighbors/foxgen/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/neighbors/foxgen/config.py -------------------------------------------------------------------------------- /host/greatfet/neighbors/foxgen/platform/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /host/greatfet/neighbors/foxgen/platform/foxglove_r0_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/neighbors/foxgen/platform/foxglove_r0_1.py -------------------------------------------------------------------------------- /host/greatfet/neighbors/foxglove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/neighbors/foxglove.py -------------------------------------------------------------------------------- /host/greatfet/peripherals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/peripherals.py -------------------------------------------------------------------------------- /host/greatfet/programmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/programmer.py -------------------------------------------------------------------------------- /host/greatfet/programmers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/programmers/__init__.py -------------------------------------------------------------------------------- /host/greatfet/programmers/chipcon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/programmers/chipcon.py -------------------------------------------------------------------------------- /host/greatfet/programmers/ecp5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/programmers/ecp5.py -------------------------------------------------------------------------------- /host/greatfet/programmers/firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/programmers/firmware.py -------------------------------------------------------------------------------- /host/greatfet/programmers/m0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/programmers/m0.py -------------------------------------------------------------------------------- /host/greatfet/programmers/microchipEEPROM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/programmers/microchipEEPROM.py -------------------------------------------------------------------------------- /host/greatfet/programmers/msp430.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/programmers/msp430.py -------------------------------------------------------------------------------- /host/greatfet/programmers/spi_flash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/programmers/spi_flash.py -------------------------------------------------------------------------------- /host/greatfet/protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /host/greatfet/protocol/jtag_svf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/protocol/jtag_svf.py -------------------------------------------------------------------------------- /host/greatfet/protocol/vendor_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/protocol/vendor_requests.py -------------------------------------------------------------------------------- /host/greatfet/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/sensor.py -------------------------------------------------------------------------------- /host/greatfet/sensors/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/sensors/README -------------------------------------------------------------------------------- /host/greatfet/sensors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /host/greatfet/sensors/tsl2561.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/sensors/tsl2561.py -------------------------------------------------------------------------------- /host/greatfet/support/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /host/greatfet/support/bits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/support/bits.py -------------------------------------------------------------------------------- /host/greatfet/targets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/targets/__init__.py -------------------------------------------------------------------------------- /host/greatfet/targets/jtag/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/targets/jtag/__init__.py -------------------------------------------------------------------------------- /host/greatfet/targets/jtag/cortex_m_dap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/targets/jtag/cortex_m_dap.py -------------------------------------------------------------------------------- /host/greatfet/tests/test_microchipEEPROM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/tests/test_microchipEEPROM.py -------------------------------------------------------------------------------- /host/greatfet/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /host/greatfet/util/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/util/console.py -------------------------------------------------------------------------------- /host/greatfet/util/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/util/interactive.py -------------------------------------------------------------------------------- /host/greatfet/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/greatfet/utils.py -------------------------------------------------------------------------------- /host/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/pyproject.toml -------------------------------------------------------------------------------- /host/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/greatfet/HEAD/host/setup.py --------------------------------------------------------------------------------