rblhost 0.2.0

The rblhost application is a fast command-line utility providing McuBoot library used on the host computer to initiate communication and issue commands to the MCU bootloader.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# Download rustup-init
Invoke-WebRequest -Uri https://win.rustup.rs/x86_64 -OutFile rustup-init.exe

# Install Rust
.\rustup-init.exe -y --default-toolchain stable --profile minimal

# Verify installation
$env:PATH = "$env:USERPROFILE\.cargo\bin;$env:PATH"
rustc --version

# Clean up
Remove-Item rustup-init.exe