├── .gitignore ├── Cargo.toml ├── LICENSE ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── docs └── contributing.md ├── examples └── read_chip_id.rs └── src └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/stm32-bootloader-client-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/stm32-bootloader-client-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/stm32-bootloader-client-rs/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/stm32-bootloader-client-rs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/stm32-bootloader-client-rs/HEAD/README.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/stm32-bootloader-client-rs/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /examples/read_chip_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/stm32-bootloader-client-rs/HEAD/examples/read_chip_id.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/stm32-bootloader-client-rs/HEAD/src/lib.rs --------------------------------------------------------------------------------