├── .github └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.toml ├── cargo-hf2 ├── Cargo.toml ├── LICENSE.md ├── readme.md └── src │ └── main.rs ├── hf2-cli ├── Cargo.toml ├── LICENSE.md ├── readme.md └── src │ └── main.rs ├── hf2 ├── Cargo.toml ├── LICENSE.md ├── readme.md └── src │ ├── bininfo.rs │ ├── checksumpages.rs │ ├── command.rs │ ├── dmesg.rs │ ├── hidapi_trait.rs │ ├── info.rs │ ├── lib.rs │ ├── readwords.rs │ ├── resetintoapp.rs │ ├── resetintobootloader.rs │ ├── startflash.rs │ ├── utils │ ├── mod.rs │ └── testdata │ │ ├── blinky_1.44.0 │ │ ├── blinky_1.47.0 │ │ └── sections │ ├── writeflashpage.rs │ └── writewords.rs └── readme.md /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /cargo-hf2/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/cargo-hf2/Cargo.toml -------------------------------------------------------------------------------- /cargo-hf2/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/cargo-hf2/LICENSE.md -------------------------------------------------------------------------------- /cargo-hf2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/cargo-hf2/readme.md -------------------------------------------------------------------------------- /cargo-hf2/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/cargo-hf2/src/main.rs -------------------------------------------------------------------------------- /hf2-cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/hf2-cli/Cargo.toml -------------------------------------------------------------------------------- /hf2-cli/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/hf2-cli/LICENSE.md -------------------------------------------------------------------------------- /hf2-cli/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/hf2-cli/readme.md -------------------------------------------------------------------------------- /hf2-cli/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/hf2-cli/src/main.rs -------------------------------------------------------------------------------- /hf2/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/hf2/Cargo.toml -------------------------------------------------------------------------------- /hf2/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/hf2/LICENSE.md -------------------------------------------------------------------------------- /hf2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/hf2/readme.md -------------------------------------------------------------------------------- /hf2/src/bininfo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/hf2/src/bininfo.rs -------------------------------------------------------------------------------- /hf2/src/checksumpages.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/hf2/src/checksumpages.rs -------------------------------------------------------------------------------- /hf2/src/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/hf2/src/command.rs -------------------------------------------------------------------------------- /hf2/src/dmesg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/hf2/src/dmesg.rs -------------------------------------------------------------------------------- /hf2/src/hidapi_trait.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/hf2/src/hidapi_trait.rs -------------------------------------------------------------------------------- /hf2/src/info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/hf2/src/info.rs -------------------------------------------------------------------------------- /hf2/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/hf2/src/lib.rs -------------------------------------------------------------------------------- /hf2/src/readwords.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/hf2/src/readwords.rs -------------------------------------------------------------------------------- /hf2/src/resetintoapp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/hf2/src/resetintoapp.rs -------------------------------------------------------------------------------- /hf2/src/resetintobootloader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/hf2/src/resetintobootloader.rs -------------------------------------------------------------------------------- /hf2/src/startflash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/hf2/src/startflash.rs -------------------------------------------------------------------------------- /hf2/src/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/hf2/src/utils/mod.rs -------------------------------------------------------------------------------- /hf2/src/utils/testdata/blinky_1.44.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/hf2/src/utils/testdata/blinky_1.44.0 -------------------------------------------------------------------------------- /hf2/src/utils/testdata/blinky_1.47.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/hf2/src/utils/testdata/blinky_1.47.0 -------------------------------------------------------------------------------- /hf2/src/utils/testdata/sections: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/hf2/src/utils/testdata/sections -------------------------------------------------------------------------------- /hf2/src/writeflashpage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/hf2/src/writeflashpage.rs -------------------------------------------------------------------------------- /hf2/src/writewords.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/hf2/src/writewords.rs -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobrosenthal/hf2-rs/HEAD/readme.md --------------------------------------------------------------------------------