Crates.io | cargo-hf2 |
lib.rs | cargo-hf2 |
version | 0.3.3 |
source | src |
created_at | 2019-12-05 22:40:31.42689 |
updated_at | 2021-10-29 17:00:07.21544 |
description | Cargo Subcommand for Microsoft HID Flashing Library for UF2 Bootloaders |
homepage | |
repository | https://github.com/jacobrosenthal/hf2-rs |
max_upload_size | |
id | 186760 |
size | 28,080 |
Replaces the cargo build command to include flashing over usb to connected uf2 devices using hf2 flashing over hid protocol.
Utilizes the hidapi-sys crate which uses libusb.
Youll need libusb depending on your distro you might do sudo apt-get install libudev-dev libusb-1.0-0-dev
.
If you'd like to not use sudo, you'll need udev rules. With your board plugged in and in bootloader mode, use lsusb
to find your vendorid, seen here as 239a
Bus 001 Device 087: ID 239a:001b Adafruit Industries Feather M0
Then put your vendorid below and save to something like /etc/udev/rules.d/99-adafruit-boards.rules
ATTRS{idVendor}=="239a", ENV{ID_MM_DEVICE_IGNORE}="1"
SUBSYSTEM=="usb", ATTRS{idVendor}=="239a", MODE="0666"
SUBSYSTEM=="tty", ATTRS{idVendor}=="239a", MODE="0666"
Then reboot or run
sudo udevadm control --reload-rules
sudo udevadm trigger
On mac, as of Catalina you will get a permissions prompt and must follow directions to allow "Input Monitoring" for the Terminal application.
cargo install cargo-hf2
From a firmware directory you can run all the usual cargo build commands, --example and --release, with build replaced by hf2. Assuming the builds succeeds we open the usb device using a hardcoded whitelist and copy the file over.
$ cargo hf2 --example ferris_img --release --pid 0x003d --vid 0x239a
Finished release [optimized + debuginfo] target(s) in 0.28s
Flashing "./target/thumbv7em-none-eabihf/release/examples/ferris_img"
Success
Finished in 0.037s
Optionally you can leave off pid and vid and it'll attempt to query any hid devices with the bininfo packet and write to the first one that responds
$ cargo hf2 --example ferris_img --release
Finished release [optimized + debuginfo] target(s) in 0.24s
no vid/pid provided..
trying "" "Apple Internal Keyboard / Trackpad"
trying "Adafruit Industries" "PyGamer"
Flashing "./target/thumbv7em-none-eabihf/release/examples/ferris_img"
Success
Finished in 0.034s
If it cant find a device, make sure your device is in a bootloader mode. On the PyGamer, 2 button presses enables a blue and green screen that says PyGamer.
$ cargo hf2 --example ferris_img --release
Finished release [optimized + debuginfo] target(s) in 0.20s
no vid/pid provided..
trying "" "Apple Internal Keyboard / Trackpad"
trying "" "Keyboard Backlight"
trying "" "Apple Internal Keyboard / Trackpad"
trying "" "Apple Internal Keyboard / Trackpad"
thread 'main' panicked at 'Are you sure device is plugged in and in bootloader mode?', src/libcore/option.rs:1166:5
If it cant find a device, make sure your device is in a bootloader mode ready to receive firmware.
thread 'main' panicked at 'Are you sure device is plugged in and in bootloader mode?: OpenHidDeviceError', src/libcore/result.rs:1165:5
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace.
On the PyGamer, 2 button presses enables a blue and green screen that says PyGamer and also generally creates a flash drive which you should be able to see (though this doesn't use that method).
If you find another error, be sure to run with debug to see where in the process it failed and include those logs when reporting
RUST_LOG=debug cargo hf2 --vid 0x239a --pid 0x003d