├── .clang-format ├── .clang-format_files ├── .devcontainer └── devcontainer.json ├── .github └── workflows │ ├── build.yaml │ └── codeql.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE.TXT ├── cmake ├── ansi_colours_import.cmake └── pico_sdk_import.cmake ├── docker-compose.yml ├── docker ├── Dockerfile ├── debug.env └── entrypoint.sh ├── docs ├── contributing.md ├── licenses.md └── third_party_licenses │ ├── bsd-3-clause.txt │ └── lgpl-3.0.txt ├── hacks ├── 88-buspirate.rules ├── BusPirate.sh ├── BusPirateSetup.sh ├── build_ASCII_struct.html ├── build_server.md ├── build_server_condensed.md ├── chk.sh ├── flatpy │ └── readme.md ├── img │ ├── bus_pirate_vscode_cmake_settings.pdn │ └── bus_pirate_vscode_cmake_settings.png ├── macro.mcr ├── rtt_debugging.md ├── show_port_info.ps1 ├── test.tut └── translate-parse-h.html ├── img ├── bp5rev10-cover-angle.jpg └── teraterm-done.png ├── readme.md ├── scope.README.md └── src ├── CMakeLists.txt ├── binmode ├── binio_helpers.c ├── binio_helpers.h ├── binmodes.c ├── binmodes.h ├── bpio.c ├── bpio.h ├── bpio_transactions.c ├── bpio_transactions.h ├── fala.c ├── fala.h ├── falaio.c ├── falaio.h ├── irtoy-air.c ├── irtoy-air.h ├── irtoy-irman.c ├── irtoy-irman.h ├── legacy4third.c ├── legacy4third.h ├── logicanalyzer.c ├── logicanalyzer.h ├── logicanalyzer.pio ├── sump.c └── sump.h ├── boards ├── buspirate5.h ├── buspirate5xl.h ├── buspirate6.h ├── buspirate7.h ├── memmap_default_rp2040.ld ├── memmap_default_rp2350.ld └── memmap_psram_rp2350.ld ├── bpio_builder.h ├── bpio_reader.h ├── bpio_verifier.h ├── builder.c ├── bytecode.h ├── command_struct.h ├── commands.c ├── commands.h ├── commands ├── 1wire │ ├── demos.c │ ├── demos.h │ ├── scan.c │ └── scan.h ├── 2wire │ ├── hw2w_sniff.c │ ├── hw2w_sniff.h │ ├── sle4442.c │ └── sle4442.h ├── eeprom │ ├── eeprom_1wire.c │ ├── eeprom_1wire.h │ ├── eeprom_base.c │ ├── eeprom_base.h │ ├── eeprom_i2c.c │ ├── eeprom_i2c.h │ ├── eeprom_spi.c │ └── eeprom_spi.h ├── global │ ├── a_auxio.c │ ├── a_auxio.h │ ├── bug.c │ ├── bug.h │ ├── button_scr.c │ ├── button_scr.h │ ├── cls.c │ ├── cls.h │ ├── cmd_binmode.c │ ├── cmd_binmode.h │ ├── cmd_convert.c │ ├── cmd_convert.h │ ├── cmd_mcu.c │ ├── cmd_mcu.h │ ├── cmd_selftest.c │ ├── cmd_selftest.h │ ├── disk.c │ ├── disk.h │ ├── dummy.c │ ├── dummy.h │ ├── dump.c │ ├── dump.h │ ├── flat.c │ ├── flat.h │ ├── freq.c │ ├── freq.h │ ├── h_help.c │ ├── h_help.h │ ├── hex.c │ ├── hex.h │ ├── i_info.c │ ├── i_info.h │ ├── image.c │ ├── image.h │ ├── l_bitorder.c │ ├── l_bitorder.h │ ├── logic.c │ ├── logic.h │ ├── macro.c │ ├── macro.h │ ├── otpdump.c │ ├── otpdump.h │ ├── ovrclk.c │ ├── ovrclk.h │ ├── p_pullups.c │ ├── p_pullups.h │ ├── pause.c │ ├── pause.h │ ├── pwm.c │ ├── pwm.h │ ├── script.c │ ├── script.h │ ├── smps.c │ ├── smps.h │ ├── v_adc.c │ ├── v_adc.h │ ├── w_psu.c │ └── w_psu.h ├── hdplxuart │ ├── bridge.c │ └── bridge.h ├── i2c │ ├── ddr4.c │ ├── ddr4.h │ ├── ddr5.c │ ├── ddr5.h │ ├── demos.c │ ├── demos.h │ ├── i2c.c │ ├── i2c.h │ ├── scan.c │ ├── scan.h │ ├── sniff.c │ ├── sniff.h │ ├── sniff.md │ ├── usbpd.c │ ├── usbpd.h │ ├── usbpdo.c │ └── usbpdo.h ├── i2s │ ├── sine.c │ └── sine.h ├── infrared │ ├── irtxrx.c │ ├── irtxrx.h │ ├── tvbgone-codes.h │ ├── tvbgone.c │ └── tvbgone.h ├── jtag │ ├── bluetag.c │ └── bluetag.h ├── spi │ ├── flash.c │ ├── flash.h │ ├── sniff.c │ ├── sniff.h │ ├── spiflash.c │ └── spiflash.h └── uart │ ├── bridge.c │ ├── bridge.h │ ├── glitch.c │ ├── glitch.h │ ├── glitch.pio │ ├── monitor.c │ ├── monitor.h │ ├── nmea.c │ ├── nmea.h │ ├── simcard.c │ └── simcard.h ├── debug_rtt.c ├── debug_rtt.h ├── debug_uart.c ├── debug_uart.h ├── dhara ├── bytes.h ├── error.c ├── error.h ├── journal.c ├── journal.h ├── map.c ├── map.h ├── nand.c └── nand.h ├── display ├── background.h ├── background_image_v4-orig.h ├── background_image_v4.h ├── backv2b-2.bmp ├── default.c ├── default.h ├── disabled.c ├── disabled.h ├── image.py ├── robot16.bmp ├── robot16.h ├── robot24.bmp ├── robot5x16.bmp ├── robot5x16.h ├── robot5xx16.bmp ├── robot5xx16.h ├── robot6x16.bmp ├── robot6x16.h ├── scope.c └── scope.h ├── displays.c ├── displays.h ├── emitter.c ├── fatfs ├── 00history.txt ├── 00readme.txt ├── diskio.c ├── diskio.h ├── ff.c ├── ff.h ├── ffconf.h ├── ffsystem.c ├── ffunicode.c ├── tf_card.c └── tf_card.h ├── flatbuffers_common_builder.h ├── flatbuffers_common_reader.h ├── flatcc ├── flatcc.h ├── flatcc_accessors.h ├── flatcc_alloc.h ├── flatcc_assert.h ├── flatcc_builder.h ├── flatcc_emitter.h ├── flatcc_endian.h ├── flatcc_epilogue.h ├── flatcc_flatbuffers.h ├── flatcc_identifier.h ├── flatcc_iov.h ├── flatcc_json_parser.h ├── flatcc_json_printer.h ├── flatcc_portable.h ├── flatcc_prologue.h ├── flatcc_refmap.h ├── flatcc_rtconfig.h ├── flatcc_types.h ├── flatcc_unaligned.h ├── flatcc_verifier.h ├── flatcc_version.h ├── list.py ├── portable │ ├── LICENSE │ ├── README.md │ ├── grisu3_math.h │ ├── grisu3_parse.h │ ├── grisu3_print.h │ ├── include │ │ ├── README │ │ ├── linux │ │ │ └── endian.h │ │ └── std │ │ │ ├── inttypes.h │ │ │ ├── stdalign.h │ │ │ ├── stdbool.h │ │ │ └── stdint.h │ ├── paligned_alloc.h │ ├── pattributes.h │ ├── pbase64.h │ ├── pcrt.h │ ├── pdiagnostic.h │ ├── pdiagnostic_pop.h │ ├── pdiagnostic_push.h │ ├── pendian.h │ ├── pendian_detect.h │ ├── pinline.h │ ├── pinttypes.h │ ├── pmemaccess.h │ ├── portable.h │ ├── portable_basic.h │ ├── pparsefp.h │ ├── pparseint.h │ ├── pprintfp.h │ ├── pprintint.h │ ├── prestrict.h │ ├── pstatic_assert.h │ ├── pstatic_assert_scope.h │ ├── pstdalign.h │ ├── pstdbool.h │ ├── pstdint.h │ ├── punaligned.h │ ├── pversion.h │ └── pwarnings.h ├── reflection │ ├── README │ ├── flatbuffers_common_builder.h │ ├── flatbuffers_common_reader.h │ ├── reflection_builder.h │ ├── reflection_reader.h │ └── reflection_verifier.h └── support │ ├── README │ ├── cdump.h │ ├── elapsed.h │ ├── hexdump.h │ └── readfile.h ├── font ├── font.h ├── hunter-12pt-16h13w.h ├── hunter-14pt-19h15w.h ├── hunter-20pt-21h21w.h ├── hunter-23pt-24h24w.h └── hunter.h ├── json_parser.c ├── json_printer.c ├── lib ├── ap33772s │ ├── Makefile │ ├── README.md │ ├── ap33772s.c │ ├── ap33772s.h │ ├── ap33772s_int.h │ └── main.c ├── arduino-ch32v003-swio │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── arduino_ch32v003.c │ ├── arduino_ch32v003.h │ ├── flash.sh │ ├── main.c │ ├── swio.c │ ├── swio.h │ ├── uart.c │ └── uart.h ├── bluetag │ ├── CHANGELOG.md │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── images │ │ ├── BlueTag.png │ │ └── BlueTagPinout.png │ └── src │ │ ├── blueTag.c │ │ ├── blueTag.h │ │ └── jep106.inc ├── i2c_address_list │ ├── 0x00-0x0F.md │ ├── 0x10-0x1F.md │ ├── 0x20-0x2F.md │ ├── 0x30-0x3F.md │ ├── 0x40-0x4F.md │ ├── 0x50-0x5F.md │ ├── 0x60-0x6F.md │ ├── 0x70-0x7F.md │ ├── LICENSES │ │ ├── MIT.txt │ │ └── Unlicense.txt │ ├── README.md │ ├── README.md.license │ ├── dev_i2c_addresses copy.py │ ├── dev_i2c_addresses.h │ ├── dev_i2c_addresses.ht │ ├── dev_i2c_addresses.py │ ├── special_cases.md │ └── troublesome_chips.md ├── jep106 │ ├── jep106.c │ ├── jep106.h │ └── jep106.inc ├── minmea │ ├── COPYING │ ├── LICENSE.LGPL-3.0 │ ├── LICENSE.MIT │ ├── LICENSE.grants │ ├── README.md │ ├── example.c │ ├── gps.c │ ├── gps.h │ ├── minmea.c │ ├── minmea.h │ └── tests.c ├── ms5611 │ ├── LICENSE │ ├── README.md │ ├── ms5611.c │ └── ms5611.h ├── nanocobs │ ├── CONTRIBUTORS.md │ ├── LICENSE │ ├── README.md │ ├── cobs.c │ ├── cobs.h │ └── tests │ │ ├── byte_vec.h │ │ ├── cobs_encode_max_c.c │ │ ├── cobs_encode_max_c.h │ │ ├── doctest.h │ │ ├── test_cobs_decode.cc │ │ ├── test_cobs_decode_inc.cc │ │ ├── test_cobs_decode_tinyframe.cc │ │ ├── test_cobs_encode.cc │ │ ├── test_cobs_encode_inc.cc │ │ ├── test_cobs_encode_max.cc │ │ ├── test_cobs_encode_tinyframe.cc │ │ ├── test_many_random_payloads.cc │ │ ├── test_paper_figures.cc │ │ ├── test_wikipedia.cc │ │ └── unittest_main.cc ├── pico-i2c-sniff │ ├── .gitignore │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── hw2w_sniffer.pio │ ├── i2c_sniffer.pio │ ├── main.c │ ├── ram_fifo.c │ ├── ram_fifo.h │ └── test_i2c_sniffer │ │ └── status_tof │ │ └── status_tof.ino ├── pico_ir_nec │ ├── ir_loopback.c │ ├── nec_carrier_burst.pio │ ├── nec_carrier_control.pio │ ├── nec_receive.c │ ├── nec_receive.h │ ├── nec_receive.pio │ ├── nec_transmit.c │ └── nec_transmit.h ├── picofreq │ ├── LICENSE │ ├── picofreq.c │ └── picofreq.h ├── picorvd │ ├── PicoSWIO.cpp │ ├── ch32vswio.pio │ ├── debug_defines.h │ ├── picoswio.c │ └── picoswio.h ├── pio_pwm │ └── pwm.pio ├── rtt │ ├── Config │ │ └── SEGGER_RTT_Conf.h │ ├── Examples │ │ ├── Main_RTT_InputEchoApp.c │ │ ├── Main_RTT_MenuApp.c │ │ ├── Main_RTT_PrintfTest.c │ │ └── Main_RTT_SpeedTestApp.c │ ├── LICENSE.md │ ├── README.md │ ├── RTT │ │ ├── SEGGER_RTT.c │ │ ├── SEGGER_RTT.h │ │ ├── SEGGER_RTT_ASM_ARMv7M.S │ │ └── SEGGER_RTT_printf.c │ └── Syscalls │ │ ├── SEGGER_RTT_Syscalls_GCC.c │ │ ├── SEGGER_RTT_Syscalls_IAR.c │ │ ├── SEGGER_RTT_Syscalls_KEIL.c │ │ └── SEGGER_RTT_Syscalls_SES.c ├── sfud │ ├── LICENSE │ ├── README.md │ └── inc │ │ ├── app.c │ │ ├── sfud.c │ │ ├── sfud.h │ │ ├── sfud_cfg.h │ │ ├── sfud_def.h │ │ ├── sfud_flash_def.h │ │ ├── sfud_port-stm32.c │ │ ├── sfud_port.c │ │ └── sfud_sfdp.c ├── sigrok │ ├── pico_sdk_sigrok.c │ ├── pico_sdk_sigrok.h │ └── sr_device.h ├── spd-rw │ ├── spd_rw.c │ └── spd_rw.h └── tsl2561 │ ├── LICENSE │ ├── README.md │ ├── driver_tsl2561.c │ └── driver_tsl2561.h ├── mjson ├── mjson.c └── mjson.h ├── mode ├── HD44780.c ├── HD44780.h ├── LCDSPI.c ├── LCDSPI.h ├── ST7735.c ├── ST7735.h ├── SW2W.c ├── SW2W.h ├── SW3W.c ├── SW3W.h ├── SWI2C.c ├── SWI2C.h ├── binloopback.c ├── binloopback.h ├── dio.c ├── dio.h ├── dummy1.c ├── dummy1.h ├── hiz.c ├── hiz.h ├── hw1wire.c ├── hw1wire.h ├── hw2wire.c ├── hw2wire.h ├── hw3wire.c ├── hw3wire.h ├── hwhduart.c ├── hwhduart.h ├── hwi2c.c ├── hwi2c.h ├── hwled.c ├── hwled.h ├── hwspi.c ├── hwspi.h ├── hwuart.c ├── hwuart.h ├── i2s.c ├── i2s.h ├── i2s_in.pio ├── i2s_out.pio ├── infrared-struct.h ├── infrared.c ├── infrared.h ├── jtag.c ├── jtag.h ├── sw1wire.c ├── sw1wire.h ├── usbpd-defs.h ├── usbpd.c └── usbpd.h ├── modes.c ├── modes.h ├── monster_builder.h ├── monster_reader.h ├── monster_verifier.h ├── msc_disk.c ├── msc_disk.h ├── nand ├── LICENSE ├── README.md ├── nand.c ├── nand.h ├── nand_ftl_diskio.c ├── nand_ftl_diskio.h ├── spi.c ├── spi.h ├── spi_nand.c ├── spi_nand.h ├── sys_time.c └── sys_time.h ├── pio_config.h ├── pirate.c ├── pirate.h ├── pirate ├── amux.c ├── amux.h ├── apa102.pio ├── bio.c ├── bio.h ├── button.c ├── button.h ├── file.c ├── file.h ├── hw1wire.pio ├── hw1wire_pio.c ├── hw1wire_pio.h ├── hw2wire.pio ├── hw2wire_pio.c ├── hw2wire_pio.h ├── hw3wire.pio ├── hw3wire_pio.c ├── hw3wire_pio.h ├── hwi2c.pio ├── hwi2c_pio.c ├── hwi2c_pio.h ├── hwspi.c ├── hwspi.h ├── hwuart.pio ├── hwuart_pio.c ├── hwuart_pio.h ├── intercore_helpers.c ├── intercore_helpers.h ├── irio.pio ├── irio_pio.c ├── irio_pio.h ├── lcd.c ├── lcd.h ├── lsb.c ├── lsb.h ├── mcu.c ├── mcu.h ├── mem.c ├── mem.h ├── onewire_library.c ├── onewire_library.h ├── onewire_library.pio ├── psu.c ├── psu.h ├── pullup.c ├── pullup.h ├── pwm.pio ├── rc5.pio ├── rc5_2.pio ├── rc5_pio.c ├── rc5_pio.h ├── rgb.c ├── rgb.h ├── shift.c ├── shift.h ├── spisnif.pio ├── storage.c ├── storage.h └── ws2812.pio ├── platform ├── bpi5-rev10.c ├── bpi5-rev10.h ├── bpi5-rev8.c ├── bpi5-rev8.h ├── bpi5-rev9.c ├── bpi5-rev9.h ├── bpi5xl-rev0.c ├── bpi5xl-rev0.h ├── bpi6-rev2.c ├── bpi6-rev2.h ├── bpi7-rev0.c └── bpi7-rev0.h ├── printf-4.0.0 ├── .gitattributes ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── codecov.yml ├── printf.c ├── printf.h └── test │ ├── catch.hpp │ └── test_suite.cpp ├── queue.c ├── queue.h ├── refmap.c ├── syntax.c ├── syntax.h ├── syntax_struct.h ├── system_config.c ├── system_config.h ├── system_monitor.c ├── system_monitor.h ├── toolbars ├── logic_bar.c └── logic_bar.h ├── translation ├── base.c ├── base.h ├── bs-ba.h ├── editor │ ├── jquery-3.7.1.js │ ├── jquery-ui-1.14.1.dark │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── external │ │ │ └── jquery │ │ │ │ └── jquery.js │ │ ├── images │ │ │ ├── ui-bg_glass_20_555555_1x400.png │ │ │ ├── ui-bg_glass_40_0078a3_1x400.png │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ │ ├── ui-bg_gloss-wave_25_333333_500x100.png │ │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ │ ├── ui-bg_inset-soft_25_000000_1x100.png │ │ │ ├── ui-bg_inset-soft_30_f58400_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_4b8e0b_256x240.png │ │ │ ├── ui-icons_a83300_256x240.png │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── index.html │ │ ├── jquery-ui.css │ │ ├── jquery-ui.js │ │ ├── jquery-ui.min.css │ │ ├── jquery-ui.min.js │ │ ├── jquery-ui.structure.css │ │ ├── jquery-ui.structure.min.css │ │ ├── jquery-ui.theme.css │ │ ├── jquery-ui.theme.min.css │ │ └── package.json │ └── translation_editor.html ├── en-us.h ├── history │ └── en-us.json ├── it-it.h ├── json2h.bat ├── json2h.py ├── pl-pl.h ├── templates │ ├── base.ht │ ├── bs-ba.json │ ├── it-it.json │ ├── pl-pl.json │ ├── translation.ht │ └── zh-cn.json └── zh-cn.h ├── tusb_config.h ├── ui ├── ui_cmdln.c ├── ui_cmdln.h ├── ui_config.c ├── ui_config.h ├── ui_const.c ├── ui_const.h ├── ui_display.c ├── ui_display.h ├── ui_flags.h ├── ui_format.c ├── ui_format.h ├── ui_help.c ├── ui_help.h ├── ui_hex.c ├── ui_hex.h ├── ui_info.c ├── ui_info.h ├── ui_init.c ├── ui_init.h ├── ui_lcd.c ├── ui_lcd.h ├── ui_mode.c ├── ui_mode.h ├── ui_parse.c ├── ui_parse.h ├── ui_process.c ├── ui_process.h ├── ui_progress_indicator.c ├── ui_progress_indicator.h ├── ui_prompt.c ├── ui_prompt.h ├── ui_statusbar.c ├── ui_statusbar.h ├── ui_term.c └── ui_term.h ├── usb_descriptors.c ├── usb_rx.c ├── usb_rx.h ├── usb_tx.c ├── usb_tx.h ├── verifier.c ├── wavegen.c ├── wavegen.h └── wavegen.pio /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-format_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/.clang-format_files -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /cmake/ansi_colours_import.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/cmake/ansi_colours_import.cmake -------------------------------------------------------------------------------- /cmake/pico_sdk_import.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/cmake/pico_sdk_import.cmake -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/debug.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/docker/debug.env -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/docker/entrypoint.sh -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/licenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/docs/licenses.md -------------------------------------------------------------------------------- /docs/third_party_licenses/bsd-3-clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/docs/third_party_licenses/bsd-3-clause.txt -------------------------------------------------------------------------------- /docs/third_party_licenses/lgpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/docs/third_party_licenses/lgpl-3.0.txt -------------------------------------------------------------------------------- /hacks/88-buspirate.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/hacks/88-buspirate.rules -------------------------------------------------------------------------------- /hacks/BusPirate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/hacks/BusPirate.sh -------------------------------------------------------------------------------- /hacks/BusPirateSetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/hacks/BusPirateSetup.sh -------------------------------------------------------------------------------- /hacks/build_ASCII_struct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/hacks/build_ASCII_struct.html -------------------------------------------------------------------------------- /hacks/build_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/hacks/build_server.md -------------------------------------------------------------------------------- /hacks/build_server_condensed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/hacks/build_server_condensed.md -------------------------------------------------------------------------------- /hacks/chk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/hacks/chk.sh -------------------------------------------------------------------------------- /hacks/flatpy/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/hacks/flatpy/readme.md -------------------------------------------------------------------------------- /hacks/img/bus_pirate_vscode_cmake_settings.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/hacks/img/bus_pirate_vscode_cmake_settings.pdn -------------------------------------------------------------------------------- /hacks/img/bus_pirate_vscode_cmake_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/hacks/img/bus_pirate_vscode_cmake_settings.png -------------------------------------------------------------------------------- /hacks/macro.mcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/hacks/macro.mcr -------------------------------------------------------------------------------- /hacks/rtt_debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/hacks/rtt_debugging.md -------------------------------------------------------------------------------- /hacks/show_port_info.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/hacks/show_port_info.ps1 -------------------------------------------------------------------------------- /hacks/test.tut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/hacks/test.tut -------------------------------------------------------------------------------- /hacks/translate-parse-h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/hacks/translate-parse-h.html -------------------------------------------------------------------------------- /img/bp5rev10-cover-angle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/img/bp5rev10-cover-angle.jpg -------------------------------------------------------------------------------- /img/teraterm-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/img/teraterm-done.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/readme.md -------------------------------------------------------------------------------- /scope.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/scope.README.md -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/binmode/binio_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/binmode/binio_helpers.c -------------------------------------------------------------------------------- /src/binmode/binio_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/binmode/binio_helpers.h -------------------------------------------------------------------------------- /src/binmode/binmodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/binmode/binmodes.c -------------------------------------------------------------------------------- /src/binmode/binmodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/binmode/binmodes.h -------------------------------------------------------------------------------- /src/binmode/bpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/binmode/bpio.c -------------------------------------------------------------------------------- /src/binmode/bpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/binmode/bpio.h -------------------------------------------------------------------------------- /src/binmode/bpio_transactions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/binmode/bpio_transactions.c -------------------------------------------------------------------------------- /src/binmode/bpio_transactions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/binmode/bpio_transactions.h -------------------------------------------------------------------------------- /src/binmode/fala.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/binmode/fala.c -------------------------------------------------------------------------------- /src/binmode/fala.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/binmode/fala.h -------------------------------------------------------------------------------- /src/binmode/falaio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/binmode/falaio.c -------------------------------------------------------------------------------- /src/binmode/falaio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/binmode/falaio.h -------------------------------------------------------------------------------- /src/binmode/irtoy-air.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/binmode/irtoy-air.c -------------------------------------------------------------------------------- /src/binmode/irtoy-air.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/binmode/irtoy-air.h -------------------------------------------------------------------------------- /src/binmode/irtoy-irman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/binmode/irtoy-irman.c -------------------------------------------------------------------------------- /src/binmode/irtoy-irman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/binmode/irtoy-irman.h -------------------------------------------------------------------------------- /src/binmode/legacy4third.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/binmode/legacy4third.c -------------------------------------------------------------------------------- /src/binmode/legacy4third.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/binmode/legacy4third.h -------------------------------------------------------------------------------- /src/binmode/logicanalyzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/binmode/logicanalyzer.c -------------------------------------------------------------------------------- /src/binmode/logicanalyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/binmode/logicanalyzer.h -------------------------------------------------------------------------------- /src/binmode/logicanalyzer.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/binmode/logicanalyzer.pio -------------------------------------------------------------------------------- /src/binmode/sump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/binmode/sump.c -------------------------------------------------------------------------------- /src/binmode/sump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/binmode/sump.h -------------------------------------------------------------------------------- /src/boards/buspirate5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/boards/buspirate5.h -------------------------------------------------------------------------------- /src/boards/buspirate5xl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/boards/buspirate5xl.h -------------------------------------------------------------------------------- /src/boards/buspirate6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/boards/buspirate6.h -------------------------------------------------------------------------------- /src/boards/buspirate7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/boards/buspirate7.h -------------------------------------------------------------------------------- /src/boards/memmap_default_rp2040.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/boards/memmap_default_rp2040.ld -------------------------------------------------------------------------------- /src/boards/memmap_default_rp2350.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/boards/memmap_default_rp2350.ld -------------------------------------------------------------------------------- /src/boards/memmap_psram_rp2350.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/boards/memmap_psram_rp2350.ld -------------------------------------------------------------------------------- /src/bpio_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/bpio_builder.h -------------------------------------------------------------------------------- /src/bpio_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/bpio_reader.h -------------------------------------------------------------------------------- /src/bpio_verifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/bpio_verifier.h -------------------------------------------------------------------------------- /src/builder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/builder.c -------------------------------------------------------------------------------- /src/bytecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/bytecode.h -------------------------------------------------------------------------------- /src/command_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/command_struct.h -------------------------------------------------------------------------------- /src/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands.c -------------------------------------------------------------------------------- /src/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands.h -------------------------------------------------------------------------------- /src/commands/1wire/demos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/1wire/demos.c -------------------------------------------------------------------------------- /src/commands/1wire/demos.h: -------------------------------------------------------------------------------- 1 | void onewire_test_ds18b20_conversion(struct command_result* res); -------------------------------------------------------------------------------- /src/commands/1wire/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/1wire/scan.c -------------------------------------------------------------------------------- /src/commands/1wire/scan.h: -------------------------------------------------------------------------------- 1 | void onewire_test_romsearch(struct command_result* res); -------------------------------------------------------------------------------- /src/commands/2wire/hw2w_sniff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/2wire/hw2w_sniff.c -------------------------------------------------------------------------------- /src/commands/2wire/hw2w_sniff.h: -------------------------------------------------------------------------------- 1 | void hw2w_sniff(struct command_result* res); -------------------------------------------------------------------------------- /src/commands/2wire/sle4442.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/2wire/sle4442.c -------------------------------------------------------------------------------- /src/commands/2wire/sle4442.h: -------------------------------------------------------------------------------- 1 | void sle4442(struct command_result* res); 2 | -------------------------------------------------------------------------------- /src/commands/eeprom/eeprom_1wire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/eeprom/eeprom_1wire.c -------------------------------------------------------------------------------- /src/commands/eeprom/eeprom_1wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/eeprom/eeprom_1wire.h -------------------------------------------------------------------------------- /src/commands/eeprom/eeprom_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/eeprom/eeprom_base.c -------------------------------------------------------------------------------- /src/commands/eeprom/eeprom_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/eeprom/eeprom_base.h -------------------------------------------------------------------------------- /src/commands/eeprom/eeprom_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/eeprom/eeprom_i2c.c -------------------------------------------------------------------------------- /src/commands/eeprom/eeprom_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/eeprom/eeprom_i2c.h -------------------------------------------------------------------------------- /src/commands/eeprom/eeprom_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/eeprom/eeprom_spi.c -------------------------------------------------------------------------------- /src/commands/eeprom/eeprom_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/eeprom/eeprom_spi.h -------------------------------------------------------------------------------- /src/commands/global/a_auxio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/a_auxio.c -------------------------------------------------------------------------------- /src/commands/global/a_auxio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/a_auxio.h -------------------------------------------------------------------------------- /src/commands/global/bug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/bug.c -------------------------------------------------------------------------------- /src/commands/global/bug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/bug.h -------------------------------------------------------------------------------- /src/commands/global/button_scr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/button_scr.c -------------------------------------------------------------------------------- /src/commands/global/button_scr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/button_scr.h -------------------------------------------------------------------------------- /src/commands/global/cls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/cls.c -------------------------------------------------------------------------------- /src/commands/global/cls.h: -------------------------------------------------------------------------------- 1 | void ui_display_clear(struct command_result* res); -------------------------------------------------------------------------------- /src/commands/global/cmd_binmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/cmd_binmode.c -------------------------------------------------------------------------------- /src/commands/global/cmd_binmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/cmd_binmode.h -------------------------------------------------------------------------------- /src/commands/global/cmd_convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/cmd_convert.c -------------------------------------------------------------------------------- /src/commands/global/cmd_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/cmd_convert.h -------------------------------------------------------------------------------- /src/commands/global/cmd_mcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/cmd_mcu.c -------------------------------------------------------------------------------- /src/commands/global/cmd_mcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/cmd_mcu.h -------------------------------------------------------------------------------- /src/commands/global/cmd_selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/cmd_selftest.c -------------------------------------------------------------------------------- /src/commands/global/cmd_selftest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/cmd_selftest.h -------------------------------------------------------------------------------- /src/commands/global/disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/disk.c -------------------------------------------------------------------------------- /src/commands/global/disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/disk.h -------------------------------------------------------------------------------- /src/commands/global/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/dummy.c -------------------------------------------------------------------------------- /src/commands/global/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/dummy.h -------------------------------------------------------------------------------- /src/commands/global/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/dump.c -------------------------------------------------------------------------------- /src/commands/global/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/dump.h -------------------------------------------------------------------------------- /src/commands/global/flat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/flat.c -------------------------------------------------------------------------------- /src/commands/global/flat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/flat.h -------------------------------------------------------------------------------- /src/commands/global/freq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/freq.c -------------------------------------------------------------------------------- /src/commands/global/freq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/freq.h -------------------------------------------------------------------------------- /src/commands/global/h_help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/h_help.c -------------------------------------------------------------------------------- /src/commands/global/h_help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/h_help.h -------------------------------------------------------------------------------- /src/commands/global/hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/hex.c -------------------------------------------------------------------------------- /src/commands/global/hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/hex.h -------------------------------------------------------------------------------- /src/commands/global/i_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/i_info.c -------------------------------------------------------------------------------- /src/commands/global/i_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/i_info.h -------------------------------------------------------------------------------- /src/commands/global/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/image.c -------------------------------------------------------------------------------- /src/commands/global/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/image.h -------------------------------------------------------------------------------- /src/commands/global/l_bitorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/l_bitorder.c -------------------------------------------------------------------------------- /src/commands/global/l_bitorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/l_bitorder.h -------------------------------------------------------------------------------- /src/commands/global/logic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/logic.c -------------------------------------------------------------------------------- /src/commands/global/logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/logic.h -------------------------------------------------------------------------------- /src/commands/global/macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/macro.c -------------------------------------------------------------------------------- /src/commands/global/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/macro.h -------------------------------------------------------------------------------- /src/commands/global/otpdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/otpdump.c -------------------------------------------------------------------------------- /src/commands/global/otpdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/otpdump.h -------------------------------------------------------------------------------- /src/commands/global/ovrclk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/ovrclk.c -------------------------------------------------------------------------------- /src/commands/global/ovrclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/ovrclk.h -------------------------------------------------------------------------------- /src/commands/global/p_pullups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/p_pullups.c -------------------------------------------------------------------------------- /src/commands/global/p_pullups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/p_pullups.h -------------------------------------------------------------------------------- /src/commands/global/pause.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/pause.c -------------------------------------------------------------------------------- /src/commands/global/pause.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/pause.h -------------------------------------------------------------------------------- /src/commands/global/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/pwm.c -------------------------------------------------------------------------------- /src/commands/global/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/pwm.h -------------------------------------------------------------------------------- /src/commands/global/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/script.c -------------------------------------------------------------------------------- /src/commands/global/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/script.h -------------------------------------------------------------------------------- /src/commands/global/smps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/smps.c -------------------------------------------------------------------------------- /src/commands/global/smps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/smps.h -------------------------------------------------------------------------------- /src/commands/global/v_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/v_adc.c -------------------------------------------------------------------------------- /src/commands/global/v_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/v_adc.h -------------------------------------------------------------------------------- /src/commands/global/w_psu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/w_psu.c -------------------------------------------------------------------------------- /src/commands/global/w_psu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/global/w_psu.h -------------------------------------------------------------------------------- /src/commands/hdplxuart/bridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/hdplxuart/bridge.c -------------------------------------------------------------------------------- /src/commands/hdplxuart/bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/hdplxuart/bridge.h -------------------------------------------------------------------------------- /src/commands/i2c/ddr4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/i2c/ddr4.c -------------------------------------------------------------------------------- /src/commands/i2c/ddr4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/i2c/ddr4.h -------------------------------------------------------------------------------- /src/commands/i2c/ddr5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/i2c/ddr5.c -------------------------------------------------------------------------------- /src/commands/i2c/ddr5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/i2c/ddr5.h -------------------------------------------------------------------------------- /src/commands/i2c/demos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/i2c/demos.c -------------------------------------------------------------------------------- /src/commands/i2c/demos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/i2c/demos.h -------------------------------------------------------------------------------- /src/commands/i2c/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/i2c/i2c.c -------------------------------------------------------------------------------- /src/commands/i2c/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/i2c/i2c.h -------------------------------------------------------------------------------- /src/commands/i2c/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/i2c/scan.c -------------------------------------------------------------------------------- /src/commands/i2c/scan.h: -------------------------------------------------------------------------------- 1 | void i2c_search_addr(struct command_result* res); -------------------------------------------------------------------------------- /src/commands/i2c/sniff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/i2c/sniff.c -------------------------------------------------------------------------------- /src/commands/i2c/sniff.h: -------------------------------------------------------------------------------- 1 | void i2c_sniff(struct command_result* res); -------------------------------------------------------------------------------- /src/commands/i2c/sniff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/i2c/sniff.md -------------------------------------------------------------------------------- /src/commands/i2c/usbpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/i2c/usbpd.c -------------------------------------------------------------------------------- /src/commands/i2c/usbpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/i2c/usbpd.h -------------------------------------------------------------------------------- /src/commands/i2c/usbpdo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/i2c/usbpdo.c -------------------------------------------------------------------------------- /src/commands/i2c/usbpdo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/i2c/usbpdo.h -------------------------------------------------------------------------------- /src/commands/i2s/sine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/i2s/sine.c -------------------------------------------------------------------------------- /src/commands/i2s/sine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/i2s/sine.h -------------------------------------------------------------------------------- /src/commands/infrared/irtxrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/infrared/irtxrx.c -------------------------------------------------------------------------------- /src/commands/infrared/irtxrx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/infrared/irtxrx.h -------------------------------------------------------------------------------- /src/commands/infrared/tvbgone-codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/infrared/tvbgone-codes.h -------------------------------------------------------------------------------- /src/commands/infrared/tvbgone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/infrared/tvbgone.c -------------------------------------------------------------------------------- /src/commands/infrared/tvbgone.h: -------------------------------------------------------------------------------- 1 | void tvbgone_player(struct command_result *res); -------------------------------------------------------------------------------- /src/commands/jtag/bluetag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/jtag/bluetag.c -------------------------------------------------------------------------------- /src/commands/jtag/bluetag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/jtag/bluetag.h -------------------------------------------------------------------------------- /src/commands/spi/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/spi/flash.c -------------------------------------------------------------------------------- /src/commands/spi/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/spi/flash.h -------------------------------------------------------------------------------- /src/commands/spi/sniff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/spi/sniff.c -------------------------------------------------------------------------------- /src/commands/spi/sniff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/spi/sniff.h -------------------------------------------------------------------------------- /src/commands/spi/spiflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/spi/spiflash.c -------------------------------------------------------------------------------- /src/commands/spi/spiflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/spi/spiflash.h -------------------------------------------------------------------------------- /src/commands/uart/bridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/uart/bridge.c -------------------------------------------------------------------------------- /src/commands/uart/bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/uart/bridge.h -------------------------------------------------------------------------------- /src/commands/uart/glitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/uart/glitch.c -------------------------------------------------------------------------------- /src/commands/uart/glitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/uart/glitch.h -------------------------------------------------------------------------------- /src/commands/uart/glitch.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/uart/glitch.pio -------------------------------------------------------------------------------- /src/commands/uart/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/uart/monitor.c -------------------------------------------------------------------------------- /src/commands/uart/monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/uart/monitor.h -------------------------------------------------------------------------------- /src/commands/uart/nmea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/uart/nmea.c -------------------------------------------------------------------------------- /src/commands/uart/nmea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/uart/nmea.h -------------------------------------------------------------------------------- /src/commands/uart/simcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/uart/simcard.c -------------------------------------------------------------------------------- /src/commands/uart/simcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/commands/uart/simcard.h -------------------------------------------------------------------------------- /src/debug_rtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/debug_rtt.c -------------------------------------------------------------------------------- /src/debug_rtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/debug_rtt.h -------------------------------------------------------------------------------- /src/debug_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/debug_uart.c -------------------------------------------------------------------------------- /src/debug_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/debug_uart.h -------------------------------------------------------------------------------- /src/dhara/bytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/dhara/bytes.h -------------------------------------------------------------------------------- /src/dhara/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/dhara/error.c -------------------------------------------------------------------------------- /src/dhara/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/dhara/error.h -------------------------------------------------------------------------------- /src/dhara/journal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/dhara/journal.c -------------------------------------------------------------------------------- /src/dhara/journal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/dhara/journal.h -------------------------------------------------------------------------------- /src/dhara/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/dhara/map.c -------------------------------------------------------------------------------- /src/dhara/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/dhara/map.h -------------------------------------------------------------------------------- /src/dhara/nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/dhara/nand.c -------------------------------------------------------------------------------- /src/dhara/nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/dhara/nand.h -------------------------------------------------------------------------------- /src/display/background.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/display/background.h -------------------------------------------------------------------------------- /src/display/background_image_v4-orig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/display/background_image_v4-orig.h -------------------------------------------------------------------------------- /src/display/background_image_v4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/display/background_image_v4.h -------------------------------------------------------------------------------- /src/display/backv2b-2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/display/backv2b-2.bmp -------------------------------------------------------------------------------- /src/display/default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/display/default.c -------------------------------------------------------------------------------- /src/display/default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/display/default.h -------------------------------------------------------------------------------- /src/display/disabled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/display/disabled.c -------------------------------------------------------------------------------- /src/display/disabled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/display/disabled.h -------------------------------------------------------------------------------- /src/display/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/display/image.py -------------------------------------------------------------------------------- /src/display/robot16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/display/robot16.bmp -------------------------------------------------------------------------------- /src/display/robot16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/display/robot16.h -------------------------------------------------------------------------------- /src/display/robot24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/display/robot24.bmp -------------------------------------------------------------------------------- /src/display/robot5x16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/display/robot5x16.bmp -------------------------------------------------------------------------------- /src/display/robot5x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/display/robot5x16.h -------------------------------------------------------------------------------- /src/display/robot5xx16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/display/robot5xx16.bmp -------------------------------------------------------------------------------- /src/display/robot5xx16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/display/robot5xx16.h -------------------------------------------------------------------------------- /src/display/robot6x16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/display/robot6x16.bmp -------------------------------------------------------------------------------- /src/display/robot6x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/display/robot6x16.h -------------------------------------------------------------------------------- /src/display/scope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/display/scope.c -------------------------------------------------------------------------------- /src/display/scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/display/scope.h -------------------------------------------------------------------------------- /src/displays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/displays.c -------------------------------------------------------------------------------- /src/displays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/displays.h -------------------------------------------------------------------------------- /src/emitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/emitter.c -------------------------------------------------------------------------------- /src/fatfs/00history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/fatfs/00history.txt -------------------------------------------------------------------------------- /src/fatfs/00readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/fatfs/00readme.txt -------------------------------------------------------------------------------- /src/fatfs/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/fatfs/diskio.c -------------------------------------------------------------------------------- /src/fatfs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/fatfs/diskio.h -------------------------------------------------------------------------------- /src/fatfs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/fatfs/ff.c -------------------------------------------------------------------------------- /src/fatfs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/fatfs/ff.h -------------------------------------------------------------------------------- /src/fatfs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/fatfs/ffconf.h -------------------------------------------------------------------------------- /src/fatfs/ffsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/fatfs/ffsystem.c -------------------------------------------------------------------------------- /src/fatfs/ffunicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/fatfs/ffunicode.c -------------------------------------------------------------------------------- /src/fatfs/tf_card.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/fatfs/tf_card.c -------------------------------------------------------------------------------- /src/fatfs/tf_card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/fatfs/tf_card.h -------------------------------------------------------------------------------- /src/flatbuffers_common_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatbuffers_common_builder.h -------------------------------------------------------------------------------- /src/flatbuffers_common_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatbuffers_common_reader.h -------------------------------------------------------------------------------- /src/flatcc/flatcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/flatcc.h -------------------------------------------------------------------------------- /src/flatcc/flatcc_accessors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/flatcc_accessors.h -------------------------------------------------------------------------------- /src/flatcc/flatcc_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/flatcc_alloc.h -------------------------------------------------------------------------------- /src/flatcc/flatcc_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/flatcc_assert.h -------------------------------------------------------------------------------- /src/flatcc/flatcc_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/flatcc_builder.h -------------------------------------------------------------------------------- /src/flatcc/flatcc_emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/flatcc_emitter.h -------------------------------------------------------------------------------- /src/flatcc/flatcc_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/flatcc_endian.h -------------------------------------------------------------------------------- /src/flatcc/flatcc_epilogue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/flatcc_epilogue.h -------------------------------------------------------------------------------- /src/flatcc/flatcc_flatbuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/flatcc_flatbuffers.h -------------------------------------------------------------------------------- /src/flatcc/flatcc_identifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/flatcc_identifier.h -------------------------------------------------------------------------------- /src/flatcc/flatcc_iov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/flatcc_iov.h -------------------------------------------------------------------------------- /src/flatcc/flatcc_json_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/flatcc_json_parser.h -------------------------------------------------------------------------------- /src/flatcc/flatcc_json_printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/flatcc_json_printer.h -------------------------------------------------------------------------------- /src/flatcc/flatcc_portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/flatcc_portable.h -------------------------------------------------------------------------------- /src/flatcc/flatcc_prologue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/flatcc_prologue.h -------------------------------------------------------------------------------- /src/flatcc/flatcc_refmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/flatcc_refmap.h -------------------------------------------------------------------------------- /src/flatcc/flatcc_rtconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/flatcc_rtconfig.h -------------------------------------------------------------------------------- /src/flatcc/flatcc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/flatcc_types.h -------------------------------------------------------------------------------- /src/flatcc/flatcc_unaligned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/flatcc_unaligned.h -------------------------------------------------------------------------------- /src/flatcc/flatcc_verifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/flatcc_verifier.h -------------------------------------------------------------------------------- /src/flatcc/flatcc_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/flatcc_version.h -------------------------------------------------------------------------------- /src/flatcc/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/list.py -------------------------------------------------------------------------------- /src/flatcc/portable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/LICENSE -------------------------------------------------------------------------------- /src/flatcc/portable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/README.md -------------------------------------------------------------------------------- /src/flatcc/portable/grisu3_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/grisu3_math.h -------------------------------------------------------------------------------- /src/flatcc/portable/grisu3_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/grisu3_parse.h -------------------------------------------------------------------------------- /src/flatcc/portable/grisu3_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/grisu3_print.h -------------------------------------------------------------------------------- /src/flatcc/portable/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/include/README -------------------------------------------------------------------------------- /src/flatcc/portable/include/linux/endian.h: -------------------------------------------------------------------------------- 1 | #include "portable/pendian.h" 2 | -------------------------------------------------------------------------------- /src/flatcc/portable/include/std/inttypes.h: -------------------------------------------------------------------------------- 1 | #include "portable/inttypes.h" 2 | -------------------------------------------------------------------------------- /src/flatcc/portable/include/std/stdalign.h: -------------------------------------------------------------------------------- 1 | #include "portable/pstdalign.h" 2 | -------------------------------------------------------------------------------- /src/flatcc/portable/include/std/stdbool.h: -------------------------------------------------------------------------------- 1 | #include "portable/pstdbool.h" 2 | -------------------------------------------------------------------------------- /src/flatcc/portable/include/std/stdint.h: -------------------------------------------------------------------------------- 1 | #include "portable/pstdint.h" 2 | -------------------------------------------------------------------------------- /src/flatcc/portable/paligned_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/paligned_alloc.h -------------------------------------------------------------------------------- /src/flatcc/portable/pattributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/pattributes.h -------------------------------------------------------------------------------- /src/flatcc/portable/pbase64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/pbase64.h -------------------------------------------------------------------------------- /src/flatcc/portable/pcrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/pcrt.h -------------------------------------------------------------------------------- /src/flatcc/portable/pdiagnostic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/pdiagnostic.h -------------------------------------------------------------------------------- /src/flatcc/portable/pdiagnostic_pop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/pdiagnostic_pop.h -------------------------------------------------------------------------------- /src/flatcc/portable/pdiagnostic_push.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/pdiagnostic_push.h -------------------------------------------------------------------------------- /src/flatcc/portable/pendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/pendian.h -------------------------------------------------------------------------------- /src/flatcc/portable/pendian_detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/pendian_detect.h -------------------------------------------------------------------------------- /src/flatcc/portable/pinline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/pinline.h -------------------------------------------------------------------------------- /src/flatcc/portable/pinttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/pinttypes.h -------------------------------------------------------------------------------- /src/flatcc/portable/pmemaccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/pmemaccess.h -------------------------------------------------------------------------------- /src/flatcc/portable/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/portable.h -------------------------------------------------------------------------------- /src/flatcc/portable/portable_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/portable_basic.h -------------------------------------------------------------------------------- /src/flatcc/portable/pparsefp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/pparsefp.h -------------------------------------------------------------------------------- /src/flatcc/portable/pparseint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/pparseint.h -------------------------------------------------------------------------------- /src/flatcc/portable/pprintfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/pprintfp.h -------------------------------------------------------------------------------- /src/flatcc/portable/pprintint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/pprintint.h -------------------------------------------------------------------------------- /src/flatcc/portable/prestrict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/prestrict.h -------------------------------------------------------------------------------- /src/flatcc/portable/pstatic_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/pstatic_assert.h -------------------------------------------------------------------------------- /src/flatcc/portable/pstatic_assert_scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/pstatic_assert_scope.h -------------------------------------------------------------------------------- /src/flatcc/portable/pstdalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/pstdalign.h -------------------------------------------------------------------------------- /src/flatcc/portable/pstdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/pstdbool.h -------------------------------------------------------------------------------- /src/flatcc/portable/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/pstdint.h -------------------------------------------------------------------------------- /src/flatcc/portable/punaligned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/punaligned.h -------------------------------------------------------------------------------- /src/flatcc/portable/pversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/pversion.h -------------------------------------------------------------------------------- /src/flatcc/portable/pwarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/portable/pwarnings.h -------------------------------------------------------------------------------- /src/flatcc/reflection/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/reflection/README -------------------------------------------------------------------------------- /src/flatcc/reflection/flatbuffers_common_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/reflection/flatbuffers_common_builder.h -------------------------------------------------------------------------------- /src/flatcc/reflection/flatbuffers_common_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/reflection/flatbuffers_common_reader.h -------------------------------------------------------------------------------- /src/flatcc/reflection/reflection_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/reflection/reflection_builder.h -------------------------------------------------------------------------------- /src/flatcc/reflection/reflection_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/reflection/reflection_reader.h -------------------------------------------------------------------------------- /src/flatcc/reflection/reflection_verifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/reflection/reflection_verifier.h -------------------------------------------------------------------------------- /src/flatcc/support/README: -------------------------------------------------------------------------------- 1 | support files mainly used for testing 2 | -------------------------------------------------------------------------------- /src/flatcc/support/cdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/support/cdump.h -------------------------------------------------------------------------------- /src/flatcc/support/elapsed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/support/elapsed.h -------------------------------------------------------------------------------- /src/flatcc/support/hexdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/support/hexdump.h -------------------------------------------------------------------------------- /src/flatcc/support/readfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/flatcc/support/readfile.h -------------------------------------------------------------------------------- /src/font/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/font/font.h -------------------------------------------------------------------------------- /src/font/hunter-12pt-16h13w.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/font/hunter-12pt-16h13w.h -------------------------------------------------------------------------------- /src/font/hunter-14pt-19h15w.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/font/hunter-14pt-19h15w.h -------------------------------------------------------------------------------- /src/font/hunter-20pt-21h21w.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/font/hunter-20pt-21h21w.h -------------------------------------------------------------------------------- /src/font/hunter-23pt-24h24w.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/font/hunter-23pt-24h24w.h -------------------------------------------------------------------------------- /src/font/hunter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/font/hunter.h -------------------------------------------------------------------------------- /src/json_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/json_parser.c -------------------------------------------------------------------------------- /src/json_printer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/json_printer.c -------------------------------------------------------------------------------- /src/lib/ap33772s/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/ap33772s/Makefile -------------------------------------------------------------------------------- /src/lib/ap33772s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/ap33772s/README.md -------------------------------------------------------------------------------- /src/lib/ap33772s/ap33772s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/ap33772s/ap33772s.c -------------------------------------------------------------------------------- /src/lib/ap33772s/ap33772s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/ap33772s/ap33772s.h -------------------------------------------------------------------------------- /src/lib/ap33772s/ap33772s_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/ap33772s/ap33772s_int.h -------------------------------------------------------------------------------- /src/lib/ap33772s/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/ap33772s/main.c -------------------------------------------------------------------------------- /src/lib/arduino-ch32v003-swio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/arduino-ch32v003-swio/LICENSE -------------------------------------------------------------------------------- /src/lib/arduino-ch32v003-swio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/arduino-ch32v003-swio/Makefile -------------------------------------------------------------------------------- /src/lib/arduino-ch32v003-swio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/arduino-ch32v003-swio/README.md -------------------------------------------------------------------------------- /src/lib/arduino-ch32v003-swio/arduino_ch32v003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/arduino-ch32v003-swio/arduino_ch32v003.c -------------------------------------------------------------------------------- /src/lib/arduino-ch32v003-swio/arduino_ch32v003.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/arduino-ch32v003-swio/arduino_ch32v003.h -------------------------------------------------------------------------------- /src/lib/arduino-ch32v003-swio/flash.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | avrdude -carduino -P /dev/ttyACM0 -p m328p -Uflash:w:main.elf:e 3 | -------------------------------------------------------------------------------- /src/lib/arduino-ch32v003-swio/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/arduino-ch32v003-swio/main.c -------------------------------------------------------------------------------- /src/lib/arduino-ch32v003-swio/swio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/arduino-ch32v003-swio/swio.c -------------------------------------------------------------------------------- /src/lib/arduino-ch32v003-swio/swio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/arduino-ch32v003-swio/swio.h -------------------------------------------------------------------------------- /src/lib/arduino-ch32v003-swio/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/arduino-ch32v003-swio/uart.c -------------------------------------------------------------------------------- /src/lib/arduino-ch32v003-swio/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/arduino-ch32v003-swio/uart.h -------------------------------------------------------------------------------- /src/lib/bluetag/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/bluetag/CHANGELOG.md -------------------------------------------------------------------------------- /src/lib/bluetag/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/bluetag/Dockerfile -------------------------------------------------------------------------------- /src/lib/bluetag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/bluetag/LICENSE -------------------------------------------------------------------------------- /src/lib/bluetag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/bluetag/README.md -------------------------------------------------------------------------------- /src/lib/bluetag/images/BlueTag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/bluetag/images/BlueTag.png -------------------------------------------------------------------------------- /src/lib/bluetag/images/BlueTagPinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/bluetag/images/BlueTagPinout.png -------------------------------------------------------------------------------- /src/lib/bluetag/src/blueTag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/bluetag/src/blueTag.c -------------------------------------------------------------------------------- /src/lib/bluetag/src/blueTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/bluetag/src/blueTag.h -------------------------------------------------------------------------------- /src/lib/bluetag/src/jep106.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/bluetag/src/jep106.inc -------------------------------------------------------------------------------- /src/lib/i2c_address_list/0x00-0x0F.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/i2c_address_list/0x00-0x0F.md -------------------------------------------------------------------------------- /src/lib/i2c_address_list/0x10-0x1F.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/i2c_address_list/0x10-0x1F.md -------------------------------------------------------------------------------- /src/lib/i2c_address_list/0x20-0x2F.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/i2c_address_list/0x20-0x2F.md -------------------------------------------------------------------------------- /src/lib/i2c_address_list/0x30-0x3F.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/i2c_address_list/0x30-0x3F.md -------------------------------------------------------------------------------- /src/lib/i2c_address_list/0x40-0x4F.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/i2c_address_list/0x40-0x4F.md -------------------------------------------------------------------------------- /src/lib/i2c_address_list/0x50-0x5F.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/i2c_address_list/0x50-0x5F.md -------------------------------------------------------------------------------- /src/lib/i2c_address_list/0x60-0x6F.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/i2c_address_list/0x60-0x6F.md -------------------------------------------------------------------------------- /src/lib/i2c_address_list/0x70-0x7F.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/i2c_address_list/0x70-0x7F.md -------------------------------------------------------------------------------- /src/lib/i2c_address_list/LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/i2c_address_list/LICENSES/MIT.txt -------------------------------------------------------------------------------- /src/lib/i2c_address_list/LICENSES/Unlicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/i2c_address_list/LICENSES/Unlicense.txt -------------------------------------------------------------------------------- /src/lib/i2c_address_list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/i2c_address_list/README.md -------------------------------------------------------------------------------- /src/lib/i2c_address_list/README.md.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/i2c_address_list/README.md.license -------------------------------------------------------------------------------- /src/lib/i2c_address_list/dev_i2c_addresses copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/i2c_address_list/dev_i2c_addresses copy.py -------------------------------------------------------------------------------- /src/lib/i2c_address_list/dev_i2c_addresses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/i2c_address_list/dev_i2c_addresses.h -------------------------------------------------------------------------------- /src/lib/i2c_address_list/dev_i2c_addresses.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/i2c_address_list/dev_i2c_addresses.ht -------------------------------------------------------------------------------- /src/lib/i2c_address_list/dev_i2c_addresses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/i2c_address_list/dev_i2c_addresses.py -------------------------------------------------------------------------------- /src/lib/i2c_address_list/special_cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/i2c_address_list/special_cases.md -------------------------------------------------------------------------------- /src/lib/i2c_address_list/troublesome_chips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/i2c_address_list/troublesome_chips.md -------------------------------------------------------------------------------- /src/lib/jep106/jep106.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/jep106/jep106.c -------------------------------------------------------------------------------- /src/lib/jep106/jep106.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/jep106/jep106.h -------------------------------------------------------------------------------- /src/lib/jep106/jep106.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/jep106/jep106.inc -------------------------------------------------------------------------------- /src/lib/minmea/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/minmea/COPYING -------------------------------------------------------------------------------- /src/lib/minmea/LICENSE.LGPL-3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/minmea/LICENSE.LGPL-3.0 -------------------------------------------------------------------------------- /src/lib/minmea/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/minmea/LICENSE.MIT -------------------------------------------------------------------------------- /src/lib/minmea/LICENSE.grants: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/minmea/LICENSE.grants -------------------------------------------------------------------------------- /src/lib/minmea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/minmea/README.md -------------------------------------------------------------------------------- /src/lib/minmea/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/minmea/example.c -------------------------------------------------------------------------------- /src/lib/minmea/gps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/minmea/gps.c -------------------------------------------------------------------------------- /src/lib/minmea/gps.h: -------------------------------------------------------------------------------- 1 | void process_gps(char *line); -------------------------------------------------------------------------------- /src/lib/minmea/minmea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/minmea/minmea.c -------------------------------------------------------------------------------- /src/lib/minmea/minmea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/minmea/minmea.h -------------------------------------------------------------------------------- /src/lib/minmea/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/minmea/tests.c -------------------------------------------------------------------------------- /src/lib/ms5611/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/ms5611/LICENSE -------------------------------------------------------------------------------- /src/lib/ms5611/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/ms5611/README.md -------------------------------------------------------------------------------- /src/lib/ms5611/ms5611.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/ms5611/ms5611.c -------------------------------------------------------------------------------- /src/lib/ms5611/ms5611.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/ms5611/ms5611.h -------------------------------------------------------------------------------- /src/lib/nanocobs/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/nanocobs/CONTRIBUTORS.md -------------------------------------------------------------------------------- /src/lib/nanocobs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/nanocobs/LICENSE -------------------------------------------------------------------------------- /src/lib/nanocobs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/nanocobs/README.md -------------------------------------------------------------------------------- /src/lib/nanocobs/cobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/nanocobs/cobs.c -------------------------------------------------------------------------------- /src/lib/nanocobs/cobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/nanocobs/cobs.h -------------------------------------------------------------------------------- /src/lib/nanocobs/tests/byte_vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/nanocobs/tests/byte_vec.h -------------------------------------------------------------------------------- /src/lib/nanocobs/tests/cobs_encode_max_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/nanocobs/tests/cobs_encode_max_c.c -------------------------------------------------------------------------------- /src/lib/nanocobs/tests/cobs_encode_max_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/nanocobs/tests/cobs_encode_max_c.h -------------------------------------------------------------------------------- /src/lib/nanocobs/tests/doctest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/nanocobs/tests/doctest.h -------------------------------------------------------------------------------- /src/lib/nanocobs/tests/test_cobs_decode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/nanocobs/tests/test_cobs_decode.cc -------------------------------------------------------------------------------- /src/lib/nanocobs/tests/test_cobs_decode_inc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/nanocobs/tests/test_cobs_decode_inc.cc -------------------------------------------------------------------------------- /src/lib/nanocobs/tests/test_cobs_decode_tinyframe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/nanocobs/tests/test_cobs_decode_tinyframe.cc -------------------------------------------------------------------------------- /src/lib/nanocobs/tests/test_cobs_encode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/nanocobs/tests/test_cobs_encode.cc -------------------------------------------------------------------------------- /src/lib/nanocobs/tests/test_cobs_encode_inc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/nanocobs/tests/test_cobs_encode_inc.cc -------------------------------------------------------------------------------- /src/lib/nanocobs/tests/test_cobs_encode_max.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/nanocobs/tests/test_cobs_encode_max.cc -------------------------------------------------------------------------------- /src/lib/nanocobs/tests/test_cobs_encode_tinyframe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/nanocobs/tests/test_cobs_encode_tinyframe.cc -------------------------------------------------------------------------------- /src/lib/nanocobs/tests/test_many_random_payloads.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/nanocobs/tests/test_many_random_payloads.cc -------------------------------------------------------------------------------- /src/lib/nanocobs/tests/test_paper_figures.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/nanocobs/tests/test_paper_figures.cc -------------------------------------------------------------------------------- /src/lib/nanocobs/tests/test_wikipedia.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/nanocobs/tests/test_wikipedia.cc -------------------------------------------------------------------------------- /src/lib/nanocobs/tests/unittest_main.cc: -------------------------------------------------------------------------------- 1 | #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN 2 | #include "doctest.h" 3 | -------------------------------------------------------------------------------- /src/lib/pico-i2c-sniff/.gitignore: -------------------------------------------------------------------------------- 1 | build -------------------------------------------------------------------------------- /src/lib/pico-i2c-sniff/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/pico-i2c-sniff/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/pico-i2c-sniff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/pico-i2c-sniff/LICENSE -------------------------------------------------------------------------------- /src/lib/pico-i2c-sniff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/pico-i2c-sniff/README.md -------------------------------------------------------------------------------- /src/lib/pico-i2c-sniff/hw2w_sniffer.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/pico-i2c-sniff/hw2w_sniffer.pio -------------------------------------------------------------------------------- /src/lib/pico-i2c-sniff/i2c_sniffer.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/pico-i2c-sniff/i2c_sniffer.pio -------------------------------------------------------------------------------- /src/lib/pico-i2c-sniff/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/pico-i2c-sniff/main.c -------------------------------------------------------------------------------- /src/lib/pico-i2c-sniff/ram_fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/pico-i2c-sniff/ram_fifo.c -------------------------------------------------------------------------------- /src/lib/pico-i2c-sniff/ram_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/pico-i2c-sniff/ram_fifo.h -------------------------------------------------------------------------------- /src/lib/pico-i2c-sniff/test_i2c_sniffer/status_tof/status_tof.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/pico-i2c-sniff/test_i2c_sniffer/status_tof/status_tof.ino -------------------------------------------------------------------------------- /src/lib/pico_ir_nec/ir_loopback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/pico_ir_nec/ir_loopback.c -------------------------------------------------------------------------------- /src/lib/pico_ir_nec/nec_carrier_burst.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/pico_ir_nec/nec_carrier_burst.pio -------------------------------------------------------------------------------- /src/lib/pico_ir_nec/nec_carrier_control.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/pico_ir_nec/nec_carrier_control.pio -------------------------------------------------------------------------------- /src/lib/pico_ir_nec/nec_receive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/pico_ir_nec/nec_receive.c -------------------------------------------------------------------------------- /src/lib/pico_ir_nec/nec_receive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/pico_ir_nec/nec_receive.h -------------------------------------------------------------------------------- /src/lib/pico_ir_nec/nec_receive.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/pico_ir_nec/nec_receive.pio -------------------------------------------------------------------------------- /src/lib/pico_ir_nec/nec_transmit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/pico_ir_nec/nec_transmit.c -------------------------------------------------------------------------------- /src/lib/pico_ir_nec/nec_transmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/pico_ir_nec/nec_transmit.h -------------------------------------------------------------------------------- /src/lib/picofreq/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/picofreq/LICENSE -------------------------------------------------------------------------------- /src/lib/picofreq/picofreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/picofreq/picofreq.c -------------------------------------------------------------------------------- /src/lib/picofreq/picofreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/picofreq/picofreq.h -------------------------------------------------------------------------------- /src/lib/picorvd/PicoSWIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/picorvd/PicoSWIO.cpp -------------------------------------------------------------------------------- /src/lib/picorvd/ch32vswio.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/picorvd/ch32vswio.pio -------------------------------------------------------------------------------- /src/lib/picorvd/debug_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/picorvd/debug_defines.h -------------------------------------------------------------------------------- /src/lib/picorvd/picoswio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/picorvd/picoswio.c -------------------------------------------------------------------------------- /src/lib/picorvd/picoswio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/picorvd/picoswio.h -------------------------------------------------------------------------------- /src/lib/pio_pwm/pwm.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/pio_pwm/pwm.pio -------------------------------------------------------------------------------- /src/lib/rtt/Config/SEGGER_RTT_Conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/rtt/Config/SEGGER_RTT_Conf.h -------------------------------------------------------------------------------- /src/lib/rtt/Examples/Main_RTT_InputEchoApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/rtt/Examples/Main_RTT_InputEchoApp.c -------------------------------------------------------------------------------- /src/lib/rtt/Examples/Main_RTT_MenuApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/rtt/Examples/Main_RTT_MenuApp.c -------------------------------------------------------------------------------- /src/lib/rtt/Examples/Main_RTT_PrintfTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/rtt/Examples/Main_RTT_PrintfTest.c -------------------------------------------------------------------------------- /src/lib/rtt/Examples/Main_RTT_SpeedTestApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/rtt/Examples/Main_RTT_SpeedTestApp.c -------------------------------------------------------------------------------- /src/lib/rtt/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/rtt/LICENSE.md -------------------------------------------------------------------------------- /src/lib/rtt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/rtt/README.md -------------------------------------------------------------------------------- /src/lib/rtt/RTT/SEGGER_RTT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/rtt/RTT/SEGGER_RTT.c -------------------------------------------------------------------------------- /src/lib/rtt/RTT/SEGGER_RTT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/rtt/RTT/SEGGER_RTT.h -------------------------------------------------------------------------------- /src/lib/rtt/RTT/SEGGER_RTT_ASM_ARMv7M.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/rtt/RTT/SEGGER_RTT_ASM_ARMv7M.S -------------------------------------------------------------------------------- /src/lib/rtt/RTT/SEGGER_RTT_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/rtt/RTT/SEGGER_RTT_printf.c -------------------------------------------------------------------------------- /src/lib/rtt/Syscalls/SEGGER_RTT_Syscalls_GCC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/rtt/Syscalls/SEGGER_RTT_Syscalls_GCC.c -------------------------------------------------------------------------------- /src/lib/rtt/Syscalls/SEGGER_RTT_Syscalls_IAR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/rtt/Syscalls/SEGGER_RTT_Syscalls_IAR.c -------------------------------------------------------------------------------- /src/lib/rtt/Syscalls/SEGGER_RTT_Syscalls_KEIL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/rtt/Syscalls/SEGGER_RTT_Syscalls_KEIL.c -------------------------------------------------------------------------------- /src/lib/rtt/Syscalls/SEGGER_RTT_Syscalls_SES.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/rtt/Syscalls/SEGGER_RTT_Syscalls_SES.c -------------------------------------------------------------------------------- /src/lib/sfud/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/sfud/LICENSE -------------------------------------------------------------------------------- /src/lib/sfud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/sfud/README.md -------------------------------------------------------------------------------- /src/lib/sfud/inc/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/sfud/inc/app.c -------------------------------------------------------------------------------- /src/lib/sfud/inc/sfud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/sfud/inc/sfud.c -------------------------------------------------------------------------------- /src/lib/sfud/inc/sfud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/sfud/inc/sfud.h -------------------------------------------------------------------------------- /src/lib/sfud/inc/sfud_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/sfud/inc/sfud_cfg.h -------------------------------------------------------------------------------- /src/lib/sfud/inc/sfud_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/sfud/inc/sfud_def.h -------------------------------------------------------------------------------- /src/lib/sfud/inc/sfud_flash_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/sfud/inc/sfud_flash_def.h -------------------------------------------------------------------------------- /src/lib/sfud/inc/sfud_port-stm32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/sfud/inc/sfud_port-stm32.c -------------------------------------------------------------------------------- /src/lib/sfud/inc/sfud_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/sfud/inc/sfud_port.c -------------------------------------------------------------------------------- /src/lib/sfud/inc/sfud_sfdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/sfud/inc/sfud_sfdp.c -------------------------------------------------------------------------------- /src/lib/sigrok/pico_sdk_sigrok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/sigrok/pico_sdk_sigrok.c -------------------------------------------------------------------------------- /src/lib/sigrok/pico_sdk_sigrok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/sigrok/pico_sdk_sigrok.h -------------------------------------------------------------------------------- /src/lib/sigrok/sr_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/sigrok/sr_device.h -------------------------------------------------------------------------------- /src/lib/spd-rw/spd_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/spd-rw/spd_rw.c -------------------------------------------------------------------------------- /src/lib/spd-rw/spd_rw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/spd-rw/spd_rw.h -------------------------------------------------------------------------------- /src/lib/tsl2561/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/tsl2561/LICENSE -------------------------------------------------------------------------------- /src/lib/tsl2561/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/tsl2561/README.md -------------------------------------------------------------------------------- /src/lib/tsl2561/driver_tsl2561.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/tsl2561/driver_tsl2561.c -------------------------------------------------------------------------------- /src/lib/tsl2561/driver_tsl2561.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/lib/tsl2561/driver_tsl2561.h -------------------------------------------------------------------------------- /src/mjson/mjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mjson/mjson.c -------------------------------------------------------------------------------- /src/mjson/mjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mjson/mjson.h -------------------------------------------------------------------------------- /src/mode/HD44780.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/HD44780.c -------------------------------------------------------------------------------- /src/mode/HD44780.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/HD44780.h -------------------------------------------------------------------------------- /src/mode/LCDSPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/LCDSPI.c -------------------------------------------------------------------------------- /src/mode/LCDSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/LCDSPI.h -------------------------------------------------------------------------------- /src/mode/ST7735.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/ST7735.c -------------------------------------------------------------------------------- /src/mode/ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/ST7735.h -------------------------------------------------------------------------------- /src/mode/SW2W.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/SW2W.c -------------------------------------------------------------------------------- /src/mode/SW2W.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/SW2W.h -------------------------------------------------------------------------------- /src/mode/SW3W.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/SW3W.c -------------------------------------------------------------------------------- /src/mode/SW3W.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/SW3W.h -------------------------------------------------------------------------------- /src/mode/SWI2C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/SWI2C.c -------------------------------------------------------------------------------- /src/mode/SWI2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/SWI2C.h -------------------------------------------------------------------------------- /src/mode/binloopback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/binloopback.c -------------------------------------------------------------------------------- /src/mode/binloopback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/binloopback.h -------------------------------------------------------------------------------- /src/mode/dio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/dio.c -------------------------------------------------------------------------------- /src/mode/dio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/dio.h -------------------------------------------------------------------------------- /src/mode/dummy1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/dummy1.c -------------------------------------------------------------------------------- /src/mode/dummy1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/dummy1.h -------------------------------------------------------------------------------- /src/mode/hiz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/hiz.c -------------------------------------------------------------------------------- /src/mode/hiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/hiz.h -------------------------------------------------------------------------------- /src/mode/hw1wire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/hw1wire.c -------------------------------------------------------------------------------- /src/mode/hw1wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/hw1wire.h -------------------------------------------------------------------------------- /src/mode/hw2wire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/hw2wire.c -------------------------------------------------------------------------------- /src/mode/hw2wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/hw2wire.h -------------------------------------------------------------------------------- /src/mode/hw3wire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/hw3wire.c -------------------------------------------------------------------------------- /src/mode/hw3wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/hw3wire.h -------------------------------------------------------------------------------- /src/mode/hwhduart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/hwhduart.c -------------------------------------------------------------------------------- /src/mode/hwhduart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/hwhduart.h -------------------------------------------------------------------------------- /src/mode/hwi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/hwi2c.c -------------------------------------------------------------------------------- /src/mode/hwi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/hwi2c.h -------------------------------------------------------------------------------- /src/mode/hwled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/hwled.c -------------------------------------------------------------------------------- /src/mode/hwled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/hwled.h -------------------------------------------------------------------------------- /src/mode/hwspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/hwspi.c -------------------------------------------------------------------------------- /src/mode/hwspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/hwspi.h -------------------------------------------------------------------------------- /src/mode/hwuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/hwuart.c -------------------------------------------------------------------------------- /src/mode/hwuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/hwuart.h -------------------------------------------------------------------------------- /src/mode/i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/i2s.c -------------------------------------------------------------------------------- /src/mode/i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/i2s.h -------------------------------------------------------------------------------- /src/mode/i2s_in.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/i2s_in.pio -------------------------------------------------------------------------------- /src/mode/i2s_out.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/i2s_out.pio -------------------------------------------------------------------------------- /src/mode/infrared-struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/infrared-struct.h -------------------------------------------------------------------------------- /src/mode/infrared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/infrared.c -------------------------------------------------------------------------------- /src/mode/infrared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/infrared.h -------------------------------------------------------------------------------- /src/mode/jtag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/jtag.c -------------------------------------------------------------------------------- /src/mode/jtag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/jtag.h -------------------------------------------------------------------------------- /src/mode/sw1wire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/sw1wire.c -------------------------------------------------------------------------------- /src/mode/sw1wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/sw1wire.h -------------------------------------------------------------------------------- /src/mode/usbpd-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/usbpd-defs.h -------------------------------------------------------------------------------- /src/mode/usbpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/usbpd.c -------------------------------------------------------------------------------- /src/mode/usbpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/mode/usbpd.h -------------------------------------------------------------------------------- /src/modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/modes.c -------------------------------------------------------------------------------- /src/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/modes.h -------------------------------------------------------------------------------- /src/monster_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/monster_builder.h -------------------------------------------------------------------------------- /src/monster_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/monster_reader.h -------------------------------------------------------------------------------- /src/monster_verifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/monster_verifier.h -------------------------------------------------------------------------------- /src/msc_disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/msc_disk.c -------------------------------------------------------------------------------- /src/msc_disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/msc_disk.h -------------------------------------------------------------------------------- /src/nand/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/nand/LICENSE -------------------------------------------------------------------------------- /src/nand/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/nand/README.md -------------------------------------------------------------------------------- /src/nand/nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/nand/nand.c -------------------------------------------------------------------------------- /src/nand/nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/nand/nand.h -------------------------------------------------------------------------------- /src/nand/nand_ftl_diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/nand/nand_ftl_diskio.c -------------------------------------------------------------------------------- /src/nand/nand_ftl_diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/nand/nand_ftl_diskio.h -------------------------------------------------------------------------------- /src/nand/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/nand/spi.c -------------------------------------------------------------------------------- /src/nand/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/nand/spi.h -------------------------------------------------------------------------------- /src/nand/spi_nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/nand/spi_nand.c -------------------------------------------------------------------------------- /src/nand/spi_nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/nand/spi_nand.h -------------------------------------------------------------------------------- /src/nand/sys_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/nand/sys_time.c -------------------------------------------------------------------------------- /src/nand/sys_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/nand/sys_time.h -------------------------------------------------------------------------------- /src/pio_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pio_config.h -------------------------------------------------------------------------------- /src/pirate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate.c -------------------------------------------------------------------------------- /src/pirate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate.h -------------------------------------------------------------------------------- /src/pirate/amux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/amux.c -------------------------------------------------------------------------------- /src/pirate/amux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/amux.h -------------------------------------------------------------------------------- /src/pirate/apa102.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/apa102.pio -------------------------------------------------------------------------------- /src/pirate/bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/bio.c -------------------------------------------------------------------------------- /src/pirate/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/bio.h -------------------------------------------------------------------------------- /src/pirate/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/button.c -------------------------------------------------------------------------------- /src/pirate/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/button.h -------------------------------------------------------------------------------- /src/pirate/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/file.c -------------------------------------------------------------------------------- /src/pirate/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/file.h -------------------------------------------------------------------------------- /src/pirate/hw1wire.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/hw1wire.pio -------------------------------------------------------------------------------- /src/pirate/hw1wire_pio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/hw1wire_pio.c -------------------------------------------------------------------------------- /src/pirate/hw1wire_pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/hw1wire_pio.h -------------------------------------------------------------------------------- /src/pirate/hw2wire.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/hw2wire.pio -------------------------------------------------------------------------------- /src/pirate/hw2wire_pio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/hw2wire_pio.c -------------------------------------------------------------------------------- /src/pirate/hw2wire_pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/hw2wire_pio.h -------------------------------------------------------------------------------- /src/pirate/hw3wire.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/hw3wire.pio -------------------------------------------------------------------------------- /src/pirate/hw3wire_pio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/hw3wire_pio.c -------------------------------------------------------------------------------- /src/pirate/hw3wire_pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/hw3wire_pio.h -------------------------------------------------------------------------------- /src/pirate/hwi2c.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/hwi2c.pio -------------------------------------------------------------------------------- /src/pirate/hwi2c_pio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/hwi2c_pio.c -------------------------------------------------------------------------------- /src/pirate/hwi2c_pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/hwi2c_pio.h -------------------------------------------------------------------------------- /src/pirate/hwspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/hwspi.c -------------------------------------------------------------------------------- /src/pirate/hwspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/hwspi.h -------------------------------------------------------------------------------- /src/pirate/hwuart.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/hwuart.pio -------------------------------------------------------------------------------- /src/pirate/hwuart_pio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/hwuart_pio.c -------------------------------------------------------------------------------- /src/pirate/hwuart_pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/hwuart_pio.h -------------------------------------------------------------------------------- /src/pirate/intercore_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/intercore_helpers.c -------------------------------------------------------------------------------- /src/pirate/intercore_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/intercore_helpers.h -------------------------------------------------------------------------------- /src/pirate/irio.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/irio.pio -------------------------------------------------------------------------------- /src/pirate/irio_pio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/irio_pio.c -------------------------------------------------------------------------------- /src/pirate/irio_pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/irio_pio.h -------------------------------------------------------------------------------- /src/pirate/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/lcd.c -------------------------------------------------------------------------------- /src/pirate/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/lcd.h -------------------------------------------------------------------------------- /src/pirate/lsb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/lsb.c -------------------------------------------------------------------------------- /src/pirate/lsb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/lsb.h -------------------------------------------------------------------------------- /src/pirate/mcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/mcu.c -------------------------------------------------------------------------------- /src/pirate/mcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/mcu.h -------------------------------------------------------------------------------- /src/pirate/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/mem.c -------------------------------------------------------------------------------- /src/pirate/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/mem.h -------------------------------------------------------------------------------- /src/pirate/onewire_library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/onewire_library.c -------------------------------------------------------------------------------- /src/pirate/onewire_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/onewire_library.h -------------------------------------------------------------------------------- /src/pirate/onewire_library.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/onewire_library.pio -------------------------------------------------------------------------------- /src/pirate/psu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/psu.c -------------------------------------------------------------------------------- /src/pirate/psu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/psu.h -------------------------------------------------------------------------------- /src/pirate/pullup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/pullup.c -------------------------------------------------------------------------------- /src/pirate/pullup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/pullup.h -------------------------------------------------------------------------------- /src/pirate/pwm.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/pwm.pio -------------------------------------------------------------------------------- /src/pirate/rc5.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/rc5.pio -------------------------------------------------------------------------------- /src/pirate/rc5_2.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/rc5_2.pio -------------------------------------------------------------------------------- /src/pirate/rc5_pio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/rc5_pio.c -------------------------------------------------------------------------------- /src/pirate/rc5_pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/rc5_pio.h -------------------------------------------------------------------------------- /src/pirate/rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/rgb.c -------------------------------------------------------------------------------- /src/pirate/rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/rgb.h -------------------------------------------------------------------------------- /src/pirate/shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/shift.c -------------------------------------------------------------------------------- /src/pirate/shift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/shift.h -------------------------------------------------------------------------------- /src/pirate/spisnif.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/spisnif.pio -------------------------------------------------------------------------------- /src/pirate/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/storage.c -------------------------------------------------------------------------------- /src/pirate/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/storage.h -------------------------------------------------------------------------------- /src/pirate/ws2812.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/pirate/ws2812.pio -------------------------------------------------------------------------------- /src/platform/bpi5-rev10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/platform/bpi5-rev10.c -------------------------------------------------------------------------------- /src/platform/bpi5-rev10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/platform/bpi5-rev10.h -------------------------------------------------------------------------------- /src/platform/bpi5-rev8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/platform/bpi5-rev8.c -------------------------------------------------------------------------------- /src/platform/bpi5-rev8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/platform/bpi5-rev8.h -------------------------------------------------------------------------------- /src/platform/bpi5-rev9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/platform/bpi5-rev9.c -------------------------------------------------------------------------------- /src/platform/bpi5-rev9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/platform/bpi5-rev9.h -------------------------------------------------------------------------------- /src/platform/bpi5xl-rev0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/platform/bpi5xl-rev0.c -------------------------------------------------------------------------------- /src/platform/bpi5xl-rev0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/platform/bpi5xl-rev0.h -------------------------------------------------------------------------------- /src/platform/bpi6-rev2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/platform/bpi6-rev2.c -------------------------------------------------------------------------------- /src/platform/bpi6-rev2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/platform/bpi6-rev2.h -------------------------------------------------------------------------------- /src/platform/bpi7-rev0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/platform/bpi7-rev0.c -------------------------------------------------------------------------------- /src/platform/bpi7-rev0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/platform/bpi7-rev0.h -------------------------------------------------------------------------------- /src/printf-4.0.0/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/printf-4.0.0/.gitattributes -------------------------------------------------------------------------------- /src/printf-4.0.0/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/printf-4.0.0/.travis.yml -------------------------------------------------------------------------------- /src/printf-4.0.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/printf-4.0.0/LICENSE -------------------------------------------------------------------------------- /src/printf-4.0.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/printf-4.0.0/Makefile -------------------------------------------------------------------------------- /src/printf-4.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/printf-4.0.0/README.md -------------------------------------------------------------------------------- /src/printf-4.0.0/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/printf-4.0.0/codecov.yml -------------------------------------------------------------------------------- /src/printf-4.0.0/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/printf-4.0.0/printf.c -------------------------------------------------------------------------------- /src/printf-4.0.0/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/printf-4.0.0/printf.h -------------------------------------------------------------------------------- /src/printf-4.0.0/test/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/printf-4.0.0/test/catch.hpp -------------------------------------------------------------------------------- /src/printf-4.0.0/test/test_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/printf-4.0.0/test/test_suite.cpp -------------------------------------------------------------------------------- /src/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/queue.c -------------------------------------------------------------------------------- /src/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/queue.h -------------------------------------------------------------------------------- /src/refmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/refmap.c -------------------------------------------------------------------------------- /src/syntax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/syntax.c -------------------------------------------------------------------------------- /src/syntax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/syntax.h -------------------------------------------------------------------------------- /src/syntax_struct.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/system_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/system_config.c -------------------------------------------------------------------------------- /src/system_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/system_config.h -------------------------------------------------------------------------------- /src/system_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/system_monitor.c -------------------------------------------------------------------------------- /src/system_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/system_monitor.h -------------------------------------------------------------------------------- /src/toolbars/logic_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/toolbars/logic_bar.c -------------------------------------------------------------------------------- /src/toolbars/logic_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/toolbars/logic_bar.h -------------------------------------------------------------------------------- /src/translation/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/base.c -------------------------------------------------------------------------------- /src/translation/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/base.h -------------------------------------------------------------------------------- /src/translation/bs-ba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/bs-ba.h -------------------------------------------------------------------------------- /src/translation/editor/jquery-3.7.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-3.7.1.js -------------------------------------------------------------------------------- /src/translation/editor/jquery-ui-1.14.1.dark/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-ui-1.14.1.dark/AUTHORS.txt -------------------------------------------------------------------------------- /src/translation/editor/jquery-ui-1.14.1.dark/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-ui-1.14.1.dark/LICENSE.txt -------------------------------------------------------------------------------- /src/translation/editor/jquery-ui-1.14.1.dark/external/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-ui-1.14.1.dark/external/jquery/jquery.js -------------------------------------------------------------------------------- /src/translation/editor/jquery-ui-1.14.1.dark/images/ui-bg_glass_20_555555_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-ui-1.14.1.dark/images/ui-bg_glass_20_555555_1x400.png -------------------------------------------------------------------------------- /src/translation/editor/jquery-ui-1.14.1.dark/images/ui-bg_glass_40_0078a3_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-ui-1.14.1.dark/images/ui-bg_glass_40_0078a3_1x400.png -------------------------------------------------------------------------------- /src/translation/editor/jquery-ui-1.14.1.dark/images/ui-bg_glass_40_ffc73d_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-ui-1.14.1.dark/images/ui-bg_glass_40_ffc73d_1x400.png -------------------------------------------------------------------------------- /src/translation/editor/jquery-ui-1.14.1.dark/images/ui-bg_gloss-wave_25_333333_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-ui-1.14.1.dark/images/ui-bg_gloss-wave_25_333333_500x100.png -------------------------------------------------------------------------------- /src/translation/editor/jquery-ui-1.14.1.dark/images/ui-bg_highlight-soft_80_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-ui-1.14.1.dark/images/ui-bg_highlight-soft_80_eeeeee_1x100.png -------------------------------------------------------------------------------- /src/translation/editor/jquery-ui-1.14.1.dark/images/ui-bg_inset-soft_25_000000_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-ui-1.14.1.dark/images/ui-bg_inset-soft_25_000000_1x100.png -------------------------------------------------------------------------------- /src/translation/editor/jquery-ui-1.14.1.dark/images/ui-bg_inset-soft_30_f58400_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-ui-1.14.1.dark/images/ui-bg_inset-soft_30_f58400_1x100.png -------------------------------------------------------------------------------- /src/translation/editor/jquery-ui-1.14.1.dark/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-ui-1.14.1.dark/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/translation/editor/jquery-ui-1.14.1.dark/images/ui-icons_4b8e0b_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-ui-1.14.1.dark/images/ui-icons_4b8e0b_256x240.png -------------------------------------------------------------------------------- /src/translation/editor/jquery-ui-1.14.1.dark/images/ui-icons_a83300_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-ui-1.14.1.dark/images/ui-icons_a83300_256x240.png -------------------------------------------------------------------------------- /src/translation/editor/jquery-ui-1.14.1.dark/images/ui-icons_cccccc_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-ui-1.14.1.dark/images/ui-icons_cccccc_256x240.png -------------------------------------------------------------------------------- /src/translation/editor/jquery-ui-1.14.1.dark/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-ui-1.14.1.dark/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/translation/editor/jquery-ui-1.14.1.dark/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-ui-1.14.1.dark/index.html -------------------------------------------------------------------------------- /src/translation/editor/jquery-ui-1.14.1.dark/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-ui-1.14.1.dark/jquery-ui.css -------------------------------------------------------------------------------- /src/translation/editor/jquery-ui-1.14.1.dark/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-ui-1.14.1.dark/jquery-ui.js -------------------------------------------------------------------------------- /src/translation/editor/jquery-ui-1.14.1.dark/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-ui-1.14.1.dark/jquery-ui.min.css -------------------------------------------------------------------------------- /src/translation/editor/jquery-ui-1.14.1.dark/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-ui-1.14.1.dark/jquery-ui.min.js -------------------------------------------------------------------------------- /src/translation/editor/jquery-ui-1.14.1.dark/jquery-ui.structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-ui-1.14.1.dark/jquery-ui.structure.css -------------------------------------------------------------------------------- /src/translation/editor/jquery-ui-1.14.1.dark/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-ui-1.14.1.dark/jquery-ui.structure.min.css -------------------------------------------------------------------------------- /src/translation/editor/jquery-ui-1.14.1.dark/jquery-ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-ui-1.14.1.dark/jquery-ui.theme.css -------------------------------------------------------------------------------- /src/translation/editor/jquery-ui-1.14.1.dark/jquery-ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-ui-1.14.1.dark/jquery-ui.theme.min.css -------------------------------------------------------------------------------- /src/translation/editor/jquery-ui-1.14.1.dark/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/jquery-ui-1.14.1.dark/package.json -------------------------------------------------------------------------------- /src/translation/editor/translation_editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/editor/translation_editor.html -------------------------------------------------------------------------------- /src/translation/en-us.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/en-us.h -------------------------------------------------------------------------------- /src/translation/history/en-us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/history/en-us.json -------------------------------------------------------------------------------- /src/translation/it-it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/it-it.h -------------------------------------------------------------------------------- /src/translation/json2h.bat: -------------------------------------------------------------------------------- 1 | python json2h.py 2 | pause -------------------------------------------------------------------------------- /src/translation/json2h.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/json2h.py -------------------------------------------------------------------------------- /src/translation/pl-pl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/pl-pl.h -------------------------------------------------------------------------------- /src/translation/templates/base.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/templates/base.ht -------------------------------------------------------------------------------- /src/translation/templates/bs-ba.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/templates/bs-ba.json -------------------------------------------------------------------------------- /src/translation/templates/it-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/templates/it-it.json -------------------------------------------------------------------------------- /src/translation/templates/pl-pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/templates/pl-pl.json -------------------------------------------------------------------------------- /src/translation/templates/translation.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/templates/translation.ht -------------------------------------------------------------------------------- /src/translation/templates/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/templates/zh-cn.json -------------------------------------------------------------------------------- /src/translation/zh-cn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/translation/zh-cn.h -------------------------------------------------------------------------------- /src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/tusb_config.h -------------------------------------------------------------------------------- /src/ui/ui_cmdln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_cmdln.c -------------------------------------------------------------------------------- /src/ui/ui_cmdln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_cmdln.h -------------------------------------------------------------------------------- /src/ui/ui_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_config.c -------------------------------------------------------------------------------- /src/ui/ui_config.h: -------------------------------------------------------------------------------- 1 | void ui_config_main_menu(struct command_result* res); -------------------------------------------------------------------------------- /src/ui/ui_const.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_const.c -------------------------------------------------------------------------------- /src/ui/ui_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_const.h -------------------------------------------------------------------------------- /src/ui/ui_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_display.c -------------------------------------------------------------------------------- /src/ui/ui_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_display.h -------------------------------------------------------------------------------- /src/ui/ui_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_flags.h -------------------------------------------------------------------------------- /src/ui/ui_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_format.c -------------------------------------------------------------------------------- /src/ui/ui_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_format.h -------------------------------------------------------------------------------- /src/ui/ui_help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_help.c -------------------------------------------------------------------------------- /src/ui/ui_help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_help.h -------------------------------------------------------------------------------- /src/ui/ui_hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_hex.c -------------------------------------------------------------------------------- /src/ui/ui_hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_hex.h -------------------------------------------------------------------------------- /src/ui/ui_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_info.c -------------------------------------------------------------------------------- /src/ui/ui_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_info.h -------------------------------------------------------------------------------- /src/ui/ui_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_init.c -------------------------------------------------------------------------------- /src/ui/ui_init.h: -------------------------------------------------------------------------------- 1 | void ui_init(void); -------------------------------------------------------------------------------- /src/ui/ui_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_lcd.c -------------------------------------------------------------------------------- /src/ui/ui_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_lcd.h -------------------------------------------------------------------------------- /src/ui/ui_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_mode.c -------------------------------------------------------------------------------- /src/ui/ui_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_mode.h -------------------------------------------------------------------------------- /src/ui/ui_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_parse.c -------------------------------------------------------------------------------- /src/ui/ui_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_parse.h -------------------------------------------------------------------------------- /src/ui/ui_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_process.c -------------------------------------------------------------------------------- /src/ui/ui_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_process.h -------------------------------------------------------------------------------- /src/ui/ui_progress_indicator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_progress_indicator.c -------------------------------------------------------------------------------- /src/ui/ui_progress_indicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_progress_indicator.h -------------------------------------------------------------------------------- /src/ui/ui_prompt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_prompt.c -------------------------------------------------------------------------------- /src/ui/ui_prompt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_prompt.h -------------------------------------------------------------------------------- /src/ui/ui_statusbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_statusbar.c -------------------------------------------------------------------------------- /src/ui/ui_statusbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_statusbar.h -------------------------------------------------------------------------------- /src/ui/ui_term.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_term.c -------------------------------------------------------------------------------- /src/ui/ui_term.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/ui/ui_term.h -------------------------------------------------------------------------------- /src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/usb_descriptors.c -------------------------------------------------------------------------------- /src/usb_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/usb_rx.c -------------------------------------------------------------------------------- /src/usb_rx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/usb_rx.h -------------------------------------------------------------------------------- /src/usb_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/usb_tx.c -------------------------------------------------------------------------------- /src/usb_tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/usb_tx.h -------------------------------------------------------------------------------- /src/verifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/verifier.c -------------------------------------------------------------------------------- /src/wavegen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/wavegen.c -------------------------------------------------------------------------------- /src/wavegen.h: -------------------------------------------------------------------------------- 1 | void wavegen_args(struct command_result* res); -------------------------------------------------------------------------------- /src/wavegen.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/BusPirate5-firmware/HEAD/src/wavegen.pio --------------------------------------------------------------------------------