-
Release v1.1.0 Stable
dragonmux released this
2026年04月06日 19:50:45 +02:00 | 124 commits to main since this releaseSigned by dragonmuxGPG key ID: 64861EA89B35507AWe are happy to announce the v1.1.0 first minor release of Black Magic Probe Utility.
This comes with pre-built binaries available in the release assets below, and is compatible with
cargo binstall.Installation
You can find the installation instructions in the project README.
Usage
Please refer to our website for usage instructions.
In this release
- Disable using OpenSSL as the TLS backend for
reqwest- we already intend to use Rustls, so reconfigure the features accordingly [esden] - Implemented target power status display (whether the probe is sending power out Vtgt or not) [P-Storm]
- Suppressed further protocol fault errors on Linux when doing DFU_DETACH [dragonmux]
- Fixed several warnings and
clippylints + dependency issues generating a bunch of compilation noise [esden] - Built out a GitHub Actions build workflow for CI [dragonmux]
- Fixed the assumptions that were being made about firmware start address, preventing use with anything other than a bootloader that locates the firmware at 0x08002000 [dragonmux]
- Implemented Intel HEX file support as a source of firmware images [dragonmux]
- Fixed a dependency change issue with
tui-markdowndoing something as a revision release that was more major than that [dragonmux] - Ported the code that was written with
winapiandwinregover to thewindows-rscrates, reducing our dependency set a bit [dragonmux] - Set up CI for Codeberg on Woodpecker CI, removing some of the GHA flow as redundant/deprecated [dragonmux]
- Simplified the crate dependencies, removing unused ones and replacing unmaintained ones [dragonmux]
- Created the
logssub-command which allowsbmputilto access the aux serial interface and display its output, including via defmt [Kat] - Updated the various links across the repo from pointing at the GitHub repo to Codeberg [gojimmypi]
- Forcibly drop
ringas a dependency toquinn(HTTP3 support forreqwest) so Windows AArch64 builds work again [dragonmux] - Fixed more
clippylints and compiler warnings, focusing particularly on the macOS builds [dragonmux] - Improved the diagnostics given when there are no probes attached to a system, preventing the tool spewing a "crash" [dragonmux]
Contributors to v1.1.0
We have had 5 individuals contribute 102 commits since the v1.0.0 release.
Contributor (Contributions)
dragonmux (81)
Kat (10)
P-Storm (6)
Piotr Esden-Tempski (4)
gojimmypi (1)Sponsors
This project is sponsored in parts by:
- 1BitSquared - Design, Manufacture and distribution of open source embedded hardware development tools and platforms, as well as educational electronics. Thank you everyone who buys Black Magic Probes from 1BitSquared directly through our stores or indirectly through Adafruit and Mouser. The hardware sales allow us to continue supporting the Black Magic Debug project.
- All the generous Patrons and GitHub Sponsors supporting esden’s work
- All the generous GitHub Sponsors supporting dragonmux’s work
Downloads
-
Source code (ZIP)
14 downloads
-
Source code (TAR.GZ)
16 downloads
-
bmputil-aarch64-apple-darwin-v1.1.0.tar.xz
53 downloads ·
2026年04月06日 07:22:43 +02:00 · 3 MiB -
bmputil-aarch64-pc-windows-msvc-v1.1.0.zip
21 downloads ·
2026年04月06日 07:13:48 +02:00 · 7.3 MiB -
bmputil-x86_64-apple-darwin-v1.1.0.tar.xz
9 downloads ·
2026年04月06日 07:22:02 +02:00 · 3.4 MiB -
bmputil-x86_64-pc-windows-msvc-v1.1.0.zip
167 downloads ·
2026年04月06日 07:11:16 +02:00 · 7.4 MiB -
bmputil-x86_64-unknown-linux-gnu-v1.1.0.tar.xz
173 downloads ·
2026年04月06日 07:08:28 +02:00 · 3.5 MiB
- Disable using OpenSSL as the TLS backend for
-
Release v1.0.0 Stable
esden released this
2025年07月12日 22:02:27 +02:00 | 226 commits to main since this releaseWe are happy to announce the v1.0.0 first stable release of Black Magic Probe Utility!
This is the first full release of the tool, and comes with pre-built binaries available in the release assets below, and is compatible with
cargo binstall.Installation
You can find the installation instructions in the project README.
Usage
Please refer to our website for usage instructions.
Command Line Interface improvements
In this release we introduce a big Command Line Interface (aka. CLI) change. The program was renamed from
bmputiltobmputil-clito allow us to expand application types in the future without having to break the interface in the future.The existing functions of
bmputil-cliare moved intoprobecommand namespace, and we reserved additionaltarget,server,debugnamespaces for future use. This change is also in service of future proofing the CLI. We have mid term plans to add a bunch more functionality to bmputil and we want to avoid breaking the interface while doing that.The behaviour of
probe updateandprobe switchhave also changed slightly.probe updateis now automatically checking the active firmware version on the attached Black Magic Probe and executes an update if there is a new version available. It can still flash an arbitrary firmware binary by passing the firmware file name to the command. It also can update to a release candidate of the firmware by providing a--use-rcoverride, and an update can be forced with--forceeven if the tool considers the probe as being fully up to date.The
probe switchcommand now only functions as a firmware variant selector. firmware variants are being introduced in Black Magic Firmware V2.0 series allowing the partitioning of firmware functionality to work around the flash size limitation of the Black Magic Probe hardware.Following is a screenshot of the tool called without any parameters to illustrate what namespaces mean.
[画像:Screenshot 2025年07月12日 at 9 35 04 PM]In this release
- Updated the dependencies to mitigate a few having become outdated and fix build issues that arose [dragonmux]
- Implemented automated firmware download, using the new summon-blackmagic metadata service [dragonmux]
- Switched USB implementations from rusb to nusb - this should improve the reliability of the tool [dragonmux]
- Switched error handlers to color-eyre, providing much richer and coloured error reports you can provide to us [dragonmux]
- Implemented a guided firmware selection system to improve management of the firmware on a probe [dragonmux]
- Improved the UX for the tool in general, making things more polished and easier to work with [dragonmux]
- Fixed a spurious STALL error being emitted under Linux by the utility when it should be suppressed [dragonmux]
- The STALL condition is real, but also not erroneous so should not prevent forward progress from the tool
- Overhauled the project's README and updated it to more accurate reflect what tool does and is [dragonmux]
- Fixed a spurious disconnect error being emitted under Windows by the utility [dragonmux]
- The STALL condition is real, but also not erroneous so should not prevent forward progress from the tool
- Fixed the parsing of the firmware's identity string as it was breaking the string down slightly incorrectly [P-Storm]
- Restructured the tool's CLI, converting the style of the parser and moving commands around for better consistency and structure [dragonmux]
- Fixed several clippy lints and the code base formatting using rustfmt nightly [dragonmux/lethalbit]
- Implemented handling for
probe info --list-targetsand introduced BMD remote serial protocol support - Implemented better
probe updatecontrol, allowing a user to force a firmware change and ask the tool to consider using RC's as well as full releases [dragonmux] - Implemented better upgrade diagnostics following on from the better
probe updatecontrols [dragonmux] - Fixed an issue with product string parsing on bootloader strings, resulting in errors/crashes in those cases [dragonmux]
- Moved the suppressions to a more suitable layer and applied them + fixed reboot behaviour across all places DFU_DETACH can be generated [dragonmux]
- Unit tested and reworked some of the logic for the URI building for the firmware index machinary [P-Storm]
- Reconfigured the releases for use with
cargo binstalland switch the install instructions over to that fromcargo install[esden] - Fixed an error in the USB DFU machinery that had it using the wrong byte of a descriptor in an error [P-Storm]
- Improved the help displays to include the tool version information, as well as crash error displays to help users with reporting issues [dragonmux]
- Reorganised the probe matching machinery into its own file, and cleaned up the implementation [P-Storm]
Contributors to v1.0.0
We have had 3 individuals contribute 309 commits since the v0.1.3 release.
Contributor (Contributions)
dragonmux (281)
P-Storm (22)
Piotr Esden-Tempski (6)Sponsors
This project is sponsored in parts by:
- 1BitSquared - Design, Manufacture and distribution of open source embedded hardware development tools and platforms, as well as educational electronics. Thank you everyone who buys Black Magic Probes from 1BitSquared directly through our stores or indirectly through Adafruit. The hardware sales allow us to continue supporting the Black Magic Debug project.
- All the generous Patrons and GitHub Sponsors supporting esden’s work
- All the generous GitHub Sponsors supporting dragonmux’s work
Downloads
-
Source code (ZIP)
5 downloads
-
Source code (TAR.GZ)
2 downloads
-
bmputil-aarch64-apple-darwin-v1.0.0.tar.xz
89 downloads ·
2025年07月13日 06:03:48 +02:00 · 2.6 MiB -
bmputil-x86_64-apple-darwin-v1.0.0.tar.xz
34 downloads ·
2025年07月13日 06:03:49 +02:00 · 2.9 MiB -
bmputil-x86_64-pc-windows-msvc-v1.0.0.zip
286 downloads ·
2025年07月13日 06:20:18 +02:00 · 6.7 MiB -
bmputil-x86_64-unknown-linux-gnu-v1.0.0.tar.xz
284 downloads ·
2025年07月13日 06:03:49 +02:00 · 3 MiB
-
Release Candidate v1.0.0-rc.2 Pre-release
dragonmux released this
2025年07月01日 01:59:20 +02:00 | 250 commits to main since this releaseSigned by dragonmuxGPG key ID: 64861EA89B35507AWe are happy to announce the second v1.0.0 release candidate of the Black Magic Probe Utility.
This is the first full release of the tool, and comes with pre-built binaries available in the release assets below.
Usage
The tool is self contained in a single binary file. All you need to do is download the zip/archive file, decompress it, and run the
bmputil-clifrom the command line of your operating system. Running the program without any parameters will provide usage help.Alternatively you can install bmputil from source using
cargo install bmputil@v1.0.0-rc.2. An up-to-date installation of Rust via rustup is required.bmputil-clidoes not offer a graphical UI at this time, and needs to be run from the command line interface.For more information about the usage refer to our website: https://black-magic.org/upgrade.html
CLI API improvements
In this release we introduce a big CLI API change. Most existing functions are moved into
probenamespace, and we reserve additionaltarget,server,debugnamespaces for future use. We reserve those namespaces so that we don't have to fully break the CLI API right after releasing V1.0 of the tool, as adding new functionality will not break semver rules.While we were changing the API the function of
probe updateandprobe switchhave changed slightly.probe updateis now automatically checking the active firmware version on the attached Black Magic Probe and executes an update if there is a new version available. It can still flash an arbitrary firmware binary by passing the firmware file name to the command. It also can update to a release candidate of the firmware by providing a--use-rcoverride, and an update can be forced with--forceeven if the tool considers the probe as being fully up to date.The
probe switchcommand now only functions as a firmware variant selector. firmware variants are being introduced in Black Magic Firmware V2.0 series allowing the partitioning of firmware functionality to work around the flash size limitation of the Black Magic Probe hardware.Following is a screenshot of the tool called without any parameters to illustrate what namespaces mean.
Screenshot 2025年07月04日 at 10 36 38 AMIn this release
- Fixed a spurious STALL error being emitted under Linux by the utility when it should be suppressed [dragonmux]
- The STALL condition is real, but also not erroneous so should not prevent forward progress from the tool
- Overhauled the project's README and updated it to more accurate reflect what tool does and is [dragonmux]
- Fixed a spurious disconnect error being emitted under Windows by the utility [dragonmux]
- The STALL condition is real, but also not erroneous so should not prevent forward progress from the tool
- Fixed the parsing of the firmware's identity string as it was breaking the string down slightly incorrectly [P-Storm]
- Restructured the tool's CLI, converting the style of the parser and moving commands around for better consistency and structure [dragonmux]
- Fixed several clippy lints and the code base formatting using rustfmt nightly [dragonmux/lethalbit]
- Implemented handling for
probe info --list-targetsand introduced BMD remote serial protocol support - Implemented better
probe updatecontrol, allowing a user to force a firmware change and ask the tool to consider using RC's as well as full releases [dragonmux] - Implemented better upgrade diagnostics following on from the better
probe updatecontrols [dragonmux] - Fixed an issue with product string parsing on bootloader strings, resulting in errors/crashes in those cases [dragonmux]
- Moved the suppressions to a more suitable layer and applied them + fixed reboot behaviour across all places DFU_DETACH can be generated [dragonmux]
Contributors to v1.0.0-rc.2
We have had 2 individuals contribute 148 commits since the v1.0.0-rc.1 release candidate.
Contributor (Contributions)
dragonmux (142)
P-Storm (6)Sponsors
This project is sponsored in parts by:
- 1BitSquared - Design, Manufacture and distribution of open source embedded hardware development tools and platforms, as well as educational electronics. Thank you everyone who buys Black Magic Probes from 1BitSquared directly through our stores or indirectly through Adafruit. The hardware sales allow us to continue supporting the Black Magic Debug project.
- All the generous Patrons and GitHub Sponsors supporting esden’s work
- All the generous GitHub Sponsors supporting dragonmux’s work
Downloads
-
Source code (ZIP)
2 downloads
-
Source code (TAR.GZ)
0 downloads
-
bmputil-aarch64-apple-darwin-v1.0.0-rc.2.tar.xz
9 downloads ·
2025年07月06日 01:06:44 +02:00 · 2.5 MiB -
bmputil-x86_64-apple-darwin-v1.0.0-rc.2.tar.xz
6 downloads ·
2025年07月06日 01:06:43 +02:00 · 2.9 MiB -
bmputil-x86_64-pc-windows-msvc-v1.0.0-rc.2.zip
12 downloads ·
2025年07月06日 01:06:42 +02:00 · 6.7 MiB -
bmputil-x86_64-unknown-linux-gnu-v1.0.0-rc.2.tar.xz
12 downloads ·
2025年07月06日 01:06:40 +02:00 · 3 MiB
- Fixed a spurious STALL error being emitted under Linux by the utility when it should be suppressed [dragonmux]
-
Release Candidate v1.0.0-rc.1 Pre-release
dragonmux released this
2025年05月04日 02:53:10 +02:00 | 398 commits to main since this releaseSigned by dragonmuxGPG key ID: 64861EA89B35507AWe are happy to announce the first v1.0.0 release candidate of the Black Magic Probe Utility.
This is the first full release of the tool, and comes with pre-built binaries available in the release assets below.
Usage
The tool is self contained in a single binary file. All you need to do is download the zip/archive file, decompress it, and run the
bmputil-clifrom the command line of your operating system. Running the program without any parameters will provide usage help.Alternatively you can install bmputil from source using
cargo install bmputil@v1.0.0-rc.1. An up-to-date installation of Rust via rustup is required.bmputil-clidoes not offer a graphical UI at this time, and needs to be run from the command line interface.For more information about the usage refer to our website: https://black-magic.org/upgrade.html
In this release
- Updated the dependencies to mitigate a few having become outdated and fix build issues that arose [dragonmux]
- Implemented automated firmware download, using the new summon-blackmagic metadata service [dragonmux]
- Switched USB implementations from rusb to nusb - this should improve the reliability of the tool [dragonmux]
- Switched error handlers to color-eyre, providing much richer and coloured error reports you can provide to us [dragonmux]
- Implemented a guided firmware selection system to improve management of the firmware on a probe [dragonmux]
- Improved the UX for the tool in general, making things more polished and easier to work with [dragonmux]
Contributors to v1.0.0-rc.1
We have had 2 individuals contribute 137 commits since the v0.1.3 release.
Contributor (Contributions)
dragonmux (134)
Piotr Esden-Tempski (3)Sponsors
This project is sponsored in parts by:
- 1BitSquared - Design, Manufacture and distribution of open source embedded hardware development tools and platforms, as well as educational electronics. Thank you everyone who buys Black Magic Probes from 1BitSquared directly through our stores or indirectly through Adafruit. The hardware sales allow us to continue supporting the Black Magic Debug project.
- All the generous Patrons and GitHub Sponsors supporting esden’s work
- All the generous GitHub Sponsors supporting dragonmux’s work
Downloads
-
Source code (ZIP)
2 downloads
-
Source code (TAR.GZ)
0 downloads
-
bmputil-aarch64-apple-darwin-v1.0.0-rc.1.tar.xz
6 downloads ·
2025年07月06日 01:07:11 +02:00 · 1.7 MiB -
bmputil-x86_64-apple-darwin-v1.0.0-rc.1.tar.xz
6 downloads ·
2025年07月06日 01:07:10 +02:00 · 2.8 MiB -
bmputil-x86_64-pc-windows-msvc-v1.0.0-rc.1.zip
7 downloads ·
2025年07月06日 01:07:11 +02:00 · 6.5 MiB -
bmputil-x86_64-unknown-linux-gnu-v1.0.0-rc.1.tar.xz
6 downloads ·
2025年07月06日 01:07:10 +02:00 · 2.9 MiB
-
Release v0.1.3 Stable
dragonmux released this
2024年01月13日 06:34:23 +01:00 | 535 commits to main since this releaseSigned by dragonmuxGPG key ID: 64861EA89B35507AWe are happy to announce the v0.1.3 point release of the Black Magic Probe Utility.
This is the fourth beta release of the tool. With this release we are continuing to provide various pre-built binaries of the tool.
Usage
The tool is self contained in a single binary file. All you need to do is download the zip file, decompress it, and run the
bmputilfrom the command line of your operating system. Running the program without any parameters will provide usage help.bmputildoes not offer a graphical UI, and needs to be run from the command line interface.For more information about the usage refer to our website: https://black-magic.org/upgrade.html
In this release
- Fixed the Cargo.toml and Cargo.lock being out of sync with one another [perigoso]
- Updated the dependencies to mitigate a few having become outdated [dragonmux]
Contributors to v0.1.3
We have had 2 individuals contribute 3 commits since the v0.1.2 release.
Contributor (Contributions)
dragonmux (2)
perigoso (1)Sponsors
This project is sponsored in parts by:
- 1BitSquared - Design, Manufacture and distribution of open source embedded hardware development tools and platforms, as well as educational electronics. Thank you everyone who buys Black Magic Probes from 1BitSquared directly through our stores or indirectly through Adafruit. The hardware sales allow us to continue supporting the Black Magic Debug project.
- All the generous Patrons and GitHub Sponsors supporting esden’s work
- All the generous GitHub Sponsors supporting dragonmux’s work
Downloads
-
Source code (ZIP)
3 downloads
-
Source code (TAR.GZ)
0 downloads
-
bmputil-aarch64-apple-darwin-v0.1.3.tar.xz
11 downloads ·
2025年07月06日 01:26:57 +02:00 · 608 KiB -
bmputil-aarch64-pc-windows-msvc-v0.1.3.zip
9 downloads ·
2025年07月06日 01:26:55 +02:00 · 3.9 MiB -
bmputil-x86_64-apple-darwin-v0.1.3.tar.xz
10 downloads ·
2025年07月06日 01:26:56 +02:00 · 719 KiB -
bmputil-x86_64-pc-windows-msvc-v0.1.3.zip
15 downloads ·
2025年07月06日 01:26:57 +02:00 · 4 MiB -
bmputil-x86_64-unknown-linux-gnu-v0.1.3.tar.xz
13 downloads ·
2025年07月06日 01:26:56 +02:00 · 729 KiB
-
Release v0.1.2 Stable
dragonmux released this
2023年12月01日 06:46:15 +01:00 | 538 commits to main since this releaseSigned by dragonmuxGPG key ID: 64861EA89B35507AWe are happy to announce the v0.1.2 point release of the Black Magic Probe Utility.
This is the third beta release of the tool. With this release we are also providing various pre-built binaries of the tool.
Usage
The tool is self contained in a single binary file. All you need to do is download the zip file, decompress it, and run the
bmputilfrom the command line of your operating system. Running the program without any parameters will provide usage help.bmputildoes not offer a graphical UI, and needs to be run from the command line interface.For more information about the usage refer to our website: https://black-magic.org/upgrade.html
In this release
- Fixes to the README to reflect publication and release of the tool [desertsagebrush]
- Updated the dependencies to mitigate a few having become outdated [dragonmux]
Contributors to v0.1.2
We have had 2 individuals contribute 2 commits since the v0.1.1 release.
Contributor (Contributions)
desertsagebrush (1)
dragonmux (1)Sponsors
This project is sponsored in parts by:
- 1BitSquared - Design, Manufacture and distribution of open source embedded hardware development tools and platforms, as well as educational electronics. Thank you everyone who buys Black Magic Probes from 1BitSquared directly through our stores or indirectly through Adafruit. The hardware sales allow us to continue supporting the Black Magic Debug project.
- All the generous Patrons and GitHub Sponsors supporting esden’s work
- All the generous GitHub Sponsors supporting dragonmux’s work
Downloads
-
Source code (ZIP)
3 downloads
-
Source code (TAR.GZ)
0 downloads
-
bmputil-aarch64-apple-darwin-v0.1.2.tar.xz
8 downloads ·
2025年07月06日 01:43:02 +02:00 · 607 KiB -
bmputil-aarch64-pc-windows-msvc-v0.1.2.zip
8 downloads ·
2025年07月06日 01:43:02 +02:00 · 3.9 MiB -
bmputil-x86_64-apple-darwin-v0.1.2.tar.xz
8 downloads ·
2025年07月06日 01:43:02 +02:00 · 718 KiB -
bmputil-x86_64-pc-windows-msvc-v0.1.2.zip
9 downloads ·
2025年07月06日 01:43:03 +02:00 · 4 MiB -
bmputil-x86_64-unknown-linux-gnu-v0.1.2.tar.xz
8 downloads ·
2025年07月06日 01:43:01 +02:00 · 728 KiB
-
Release v0.1.1 Stable
dragonmux released this
2023年09月25日 21:16:23 +02:00 | 541 commits to main since this releaseSigned by dragonmuxGPG key ID: 64861EA89B35507AWe are happy to announce the v0.1.1 point release of the Black Magic Probe Utility.
This is the second beta release of the tool. With this release we are also providing various pre-built binaries of the tool.
Usage
The tool is self contained in a single binary file. All you need to do is download the zip file, decompress it, and run the
bmputilfrom the command line of your operating system. Running the program without any parameters will provide usage help.bmputildoes not offer a graphical UI, and needs to be run from the command line interface.For more information about the usage refer to our website: https://black-magic.org/upgrade.html
In this release
- Fixed a command line options handling issue that stopped automatic driver installation under Windows from working [dragonmux]
Contributors to v0.1.1
We have had 1 individual contribute 2 commits since the v0.1.0 release.
Contributor (Contributions)
dragonmux (2)Sponsors
This project is sponsored in parts by:
- 1BitSquared - Design, Manufacture and distribution of open source embedded hardware development tools and platforms, as well as educational electronics. Thank you everyone who buys Black Magic Probes from 1BitSquared directly through our stores or indirectly through Adafruit. The hardware sales allow us to continue supporting the Black Magic Debug project.
- All the generous Patrons and GitHub Sponsors supporting esden’s work
- All the generous GitHub Sponsors supporting dragonmux’s work
Downloads
-
Source code (ZIP)
3 downloads
-
Source code (TAR.GZ)
0 downloads
-
bmputil-aarch64-apple-darwin-v0.1.1.tar.xz
8 downloads ·
2025年07月06日 01:50:17 +02:00 · 609 KiB -
bmputil-aarch64-pc-windows-msvc-v0.1.1.zip
8 downloads ·
2025年07月06日 01:50:17 +02:00 · 3.9 MiB -
bmputil-x86_64-apple-darwin-v0.1.1.tar.xz
8 downloads ·
2025年07月06日 01:50:16 +02:00 · 700 KiB -
bmputil-x86_64-pc-windows-msvc-v0.1.1.zip
8 downloads ·
2025年07月06日 01:50:18 +02:00 · 3.9 MiB -
bmputil-x86_64-unknown-linux-gnu-v0.1.1.tar.xz
8 downloads ·
2025年07月06日 01:50:15 +02:00 · 714 KiB
-
Release v0.1.0 Stable
dragonmux released this
2023年09月18日 03:16:19 +02:00 | 543 commits to main since this releaseSigned by dragonmuxGPG key ID: 64861EA89B35507AWe are happy to announce the v0.1.0 release of Black Magic Probe Utility.
This is the first beta release of the tool. With this first release we are also providing various pre-built binaries of the tool.
Usage
The tool is self contained in a single binary file. All you need to do is download the zip file, decompress it, and run the
bmputilfrom the command line of your operating system. Running the program without any parameters will provide usage help.bmputildoes not offer a graphical UI, and needs to be run from the command line interface.For more information about the usage refer to our website: https://black-magic.org/upgrade.html
Contributors to V0.1.0
We have had 5 individuals contribute 78 commits since the beginning of time.
Contributor (Contributions)
Qyriad (51)
dragonmux (22)
Amy (3)
Sean Cross (1)
Piotr Esden-Tempski (1)Sponsors
This project is sponsored in parts by:
- 1BitSquared - Design, Manufacture and distribution of open source embedded hardware development tools and platforms, as well as educational electronics. Thank you everyone who buys Black Magic Probes from 1BitSquared directly through our stores or indirectly through Adafruit. The hardware sales allow us to continue supporting the Black Magic Debug project.
- All the generous Patrons and GitHub Sponsors supporting esden’s work
- All the generous GitHub Sponsors supporting dragonmux’s work
Downloads
-
Source code (ZIP)
4 downloads
-
Source code (TAR.GZ)
0 downloads
-
bmputil-aarch64-apple-darwin-v0.1.0.tar.xz
8 downloads ·
2025年07月06日 01:53:48 +02:00 · 616 KiB -
bmputil-aarch64-pc-windows-msvc-v0.1.0.zip
8 downloads ·
2025年07月06日 01:53:48 +02:00 · 3.9 MiB -
bmputil-x86_64-apple-darwin-v0.1.0.tar.xz
9 downloads ·
2025年07月06日 01:53:48 +02:00 · 701 KiB -
bmputil-x86_64-pc-windows-msvc-v0.1.0.zip
11 downloads ·
2025年07月06日 01:53:49 +02:00 · 3.9 MiB -
bmputil-x86_64-unknown-linux-gnu-v0.1.0.tar.xz
8 downloads ·
2025年07月06日 01:53:47 +02:00 · 714 KiB