Skip to content

Latest commit

 

History

History
58 lines (37 loc) · 1.58 KB

README.md

File metadata and controls

58 lines (37 loc) · 1.58 KB

hs-probe-firmware

A CMSIS-DAP firmware for hs-probe. This includes support for DAPv1 and DAPv2 over high-speed (480 MBit/s) USB 2.0.

Building the firmware

cargo build --release

Loading the firmware

The HS-Probe supports dfu-util and can have its firmware loaded via it. To generate the bin, run:

cargo objcopy --release -- -O binary firmware.bin

And load it into the HS-Probe with:

dfu-util -a 0 -s 0x08000000:leave -D firmware.bin

It will automatically restart into DFU mode and load the firmware.

Feature flags

The following feature flags exists:

  • turbo, this will the MCU speed to 216 MHz instead of the current default of 72 MHz.
  • ...

To build with features, the following command is used:

cargo build --release --features turbo,...,...

Special thanks

We would like to give special thanks to:

Licence

Firmware is licensed under either of

at your option.