├── .cargo └── config.toml ├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── calculate-memory.rhai ├── cargo-generate.toml ├── link.x ├── src └── main.rs └── template.yaml /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probe-rs/flash-algorithm-template/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [probe-rs] -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probe-rs/flash-algorithm-template/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Cargo.lock 2 | target/ -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probe-rs/flash-algorithm-template/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probe-rs/flash-algorithm-template/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probe-rs/flash-algorithm-template/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probe-rs/flash-algorithm-template/HEAD/README.md -------------------------------------------------------------------------------- /calculate-memory.rhai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probe-rs/flash-algorithm-template/HEAD/calculate-memory.rhai -------------------------------------------------------------------------------- /cargo-generate.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probe-rs/flash-algorithm-template/HEAD/cargo-generate.toml -------------------------------------------------------------------------------- /link.x: -------------------------------------------------------------------------------- 1 | ALGO_PLACEMENT_START_ADDRESS = {{link-address}}; 2 | -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probe-rs/flash-algorithm-template/HEAD/src/main.rs -------------------------------------------------------------------------------- /template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probe-rs/flash-algorithm-template/HEAD/template.yaml --------------------------------------------------------------------------------