-
- Downloads
Initial commit
parents
Branches
Tags
Showing
- .gitignore 4 additions, 0 deletions.gitignore
- Cargo.toml 23 additions, 0 deletionsCargo.toml
- LICENSE-APACHE 201 additions, 0 deletionsLICENSE-APACHE
- LICENSE-MIT 25 additions, 0 deletionsLICENSE-MIT
- README.md 27 additions, 0 deletionsREADME.md
- STM32F413.svd 0 additions, 0 deletionsSTM32F413.svd
- src/lib.rs 0 additions, 0 deletionssrc/lib.rs
.gitignore
0 → 100644
Cargo.toml
0 → 100644
[package] | ||
authors = ["Per Lindgren <per.lindgren@ltu.se>"] | ||
description = "Peripheral access API for STM32F427 microcontrollers" | ||
documentation = "https://docs.rs/stm32f40x" | ||
keywords = ["no-std", "arm", "cortex-m", "stm32"] | ||
license = "MIT OR Apache-2.0" | ||
name = "stm32f413" | ||
#repository = "https://github.com/japaric/stm32f100xx" | ||
version = "0.1.0" | ||
[dependencies] | ||
cortex-m = "0.3.0" | ||
bare-metal = "0.1.0" | ||
vcell = "0.1.0" | ||
[dependencies.cortex-m-rt] | ||
optional = true | ||
version = "0.3.0" | ||
[features] | ||
rt = ["cortex-m-rt"] | ||
\ No newline at end of file |
LICENSE-APACHE
0 → 100644
LICENSE-MIT
0 → 100644
README.md
0 → 100644
STM32F413.svd
0 → 100644
This diff is collapsed.
src/lib.rs
0 → 100644
This diff is collapsed.
Please register or sign in to comment