-
- Downloads
Initial commit
parents
No related branches found
No related tags found
Showing
- .cargo/config 52 additions, 0 deletions.cargo/config
- .gdb 21 additions, 0 deletions.gdb
- .gdbinit_org 21 additions, 0 deletions.gdbinit_org
- .gitignore 5 additions, 0 deletions.gitignore
- .travis.yml 56 additions, 0 deletions.travis.yml
- .vscode/.cortex-debug.peripherals.state.json 2 additions, 0 deletions.vscode/.cortex-debug.peripherals.state.json
- .vscode/.cortex-debug.registers.state.json 2 additions, 0 deletions.vscode/.cortex-debug.registers.state.json
- .vscode/launch.json 109 additions, 0 deletions.vscode/launch.json
- .vscode/tasks.json 32 additions, 0 deletions.vscode/tasks.json
- CHANGELOG.md 193 additions, 0 deletionsCHANGELOG.md
- Cargo.toml 47 additions, 0 deletionsCargo.toml
- Cargo.toml.orig 31 additions, 0 deletionsCargo.toml.orig
- LICENSE-APACHE 201 additions, 0 deletionsLICENSE-APACHE
- LICENSE-MIT 25 additions, 0 deletionsLICENSE-MIT
- README.md 22 additions, 0 deletionsREADME.md
- bors.toml 4 additions, 0 deletionsbors.toml
- build.rs 17 additions, 0 deletionsbuild.rs
- ci/install.sh 7 additions, 0 deletionsci/install.sh
- ci/script.sh 70 additions, 0 deletionsci/script.sh
- examples/allocator.rs_no 75 additions, 0 deletionsexamples/allocator.rs_no
.cargo/config
0 → 100644
.gdb
0 → 100644
.gdbinit_org
0 → 100644
.gitignore
0 → 100644
.travis.yml
0 → 100644
.vscode/.cortex-debug.peripherals.state.json
0 → 100644
.vscode/.cortex-debug.registers.state.json
0 → 100644
.vscode/launch.json
0 → 100644
.vscode/tasks.json
0 → 100644
CHANGELOG.md
0 → 100644
Cargo.toml
0 → 100644
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO | |||
# | |||
# When uploading crates to the registry Cargo will automatically | |||
# "normalize" Cargo.toml files for maximal compatibility | |||
# with all versions of Cargo and also rewrite `path` dependencies | |||
# to registry (e.g. crates.io) dependencies | |||
# | |||
# If you believe there's an error in this file please file an | |||
# issue against the rust-lang/cargo repository. If you're | |||
# editing this file be aware that the upstream Cargo.toml | |||
# will likely look very different (and much more reasonable) | |||
[package] | |||
name = "cortex-m-quickstart" | |||
version = "0.3.1" | |||
authors = ["Per Lindgren <per.lindgren@ltu.se>"] | |||
description = "Low Power Experiments on the Nucleo 64 stm32f401re" | |||
keywords = ["arm", "cortex-m", "template"] | |||
categories = ["embedded", "no-std"] | |||
license = "MIT OR Apache-2.0" | |||
repository = "https://github.com/japaric/cortex-m-quickstart" | |||
[profile.release] | |||
lto = true | |||
codegen-units = 1 | |||
debug = true | |||
[dependencies.cortex-m] | |||
version = "0.5.0" | |||
[dependencies.cortex-m-rt] | |||
version = "0.5.0" | |||
[dependencies.cortex-m-semihosting] | |||
version = "0.3.0" | |||
[dependencies.panic-abort] | |||
version = "0.1.1" | |||
[dependencies.panic-semihosting] | |||
version = "0.2.0" | |||
[dependencies.stm32f40x] | |||
path = "../STM32F40x" | |||
features = ["rt"] | |||
version = "0.3.0" | |||
#panic = "abort" | |||
\ No newline at end of file |
Cargo.toml.orig
0 → 100644
LICENSE-APACHE
0 → 100644
LICENSE-MIT
0 → 100644
README.md
0 → 100644
bors.toml
0 → 100644
build.rs
0 → 100644
ci/install.sh
0 → 100644
ci/script.sh
0 → 100644
examples/allocator.rs_no
0 → 100644
Please register or sign in to comment