-
- Downloads
initial commit
parents
No related branches found
No related tags found
Showing
- .cargo/config 38 additions, 0 deletions.cargo/config
- Cargo.toml 34 additions, 0 deletionsCargo.toml
- examples/crash.rs 96 additions, 0 deletionsexamples/crash.rs
- examples/device.no_compile 71 additions, 0 deletionsexamples/device.no_compile
- examples/exception.rs 47 additions, 0 deletionsexamples/exception.rs
- examples/hello1.rs 42 additions, 0 deletionsexamples/hello1.rs
- examples/hello2.rs 24 additions, 0 deletionsexamples/hello2.rs
- examples/hello3.rs 29 additions, 0 deletionsexamples/hello3.rs
- examples/hello4.rs 30 additions, 0 deletionsexamples/hello4.rs
- examples/hello5.rs 51 additions, 0 deletionsexamples/hello5.rs
- examples/hello6.rs 56 additions, 0 deletionsexamples/hello6.rs
- examples/hello7.rs 57 additions, 0 deletionsexamples/hello7.rs
- examples/hello8.rs 64 additions, 0 deletionsexamples/hello8.rs
- examples/itm.rs 33 additions, 0 deletionsexamples/itm.rs
- examples/out.txt 2 additions, 0 deletionsexamples/out.txt
- examples/panic.rs 28 additions, 0 deletionsexamples/panic.rs
- memory.x 42 additions, 0 deletionsmemory.x
- src/main.rs 17 additions, 0 deletionssrc/main.rs
.cargo/config
0 → 100644
Cargo.toml
0 → 100644
[package] | |||
authors = ["Per Lindgren <per.lindgren@ltu.se>"] | |||
edition = "2018" | |||
readme = "README.md" | |||
name = "call-stack-test" | |||
version = "0.1.0" | |||
[dependencies] | |||
cortex-m = "0.5.7" | |||
cortex-m-rt = "0.6.3" | |||
cortex-m-semihosting = "0.3.1" | |||
panic-halt = "0.2.0" | |||
# Uncomment for the panic example. | |||
# panic-itm = "0.4.0" | |||
# Uncomment for the allocator example. | |||
# alloc-cortex-m = "0.3.5" | |||
# Uncomment for the device example. | |||
# [dependencies.stm32f30x] | |||
# features = ["rt"] | |||
# version = "0.7.1" | |||
# this lets you use `cargo fix`! | |||
[[bin]] | |||
name = "call-stack-test" | |||
test = false | |||
bench = false | |||
[profile.release] | |||
codegen-units = 1 # better optimizations | |||
# debug = true # symbols are nice and they don't increase the size on Flash | |||
lto = true # better optimizations |
examples/crash.rs
0 → 100644
examples/device.no_compile
0 → 100644
examples/exception.rs
0 → 100644
examples/hello1.rs
0 → 100644
examples/hello2.rs
0 → 100644
examples/hello3.rs
0 → 100644
examples/hello4.rs
0 → 100644
examples/hello5.rs
0 → 100644
examples/hello6.rs
0 → 100644
examples/hello7.rs
0 → 100644
examples/hello8.rs
0 → 100644
examples/itm.rs
0 → 100644
examples/out.txt
0 → 100644
examples/panic.rs
0 → 100644
memory.x
0 → 100644
src/main.rs
0 → 100644
Please register or sign in to comment