-
- Downloads
initial commit
parents
No related branches found
No related tags found
Showing
- .cargo/config 8 additions, 0 deletions.cargo/config
- .gitignore 4 additions, 0 deletions.gitignore
- Cargo.toml 28 additions, 0 deletionsCargo.toml
- examples/alias.rs 12 additions, 0 deletionsexamples/alias.rs
- examples/borrow.rs 16 additions, 0 deletionsexamples/borrow.rs
- examples/dangling.rs 7 additions, 0 deletionsexamples/dangling.rs
- examples/drop.rs 6 additions, 0 deletionsexamples/drop.rs
- examples/format-error.rs 14 additions, 0 deletionsexamples/format-error.rs
- examples/format.rs 18 additions, 0 deletionsexamples/format.rs
- examples/input.rs 57 additions, 0 deletionsexamples/input.rs
- examples/json.rs 26 additions, 0 deletionsexamples/json.rs
- examples/message.rs 58 additions, 0 deletionsexamples/message.rs
- examples/ownership.rs 21 additions, 0 deletionsexamples/ownership.rs
- examples/rtfm.rs 78 additions, 0 deletionsexamples/rtfm.rs
- examples/sum.rs 31 additions, 0 deletionsexamples/sum.rs
- memory.x 6 additions, 0 deletionsmemory.x
- rustfmt.toml 2 additions, 0 deletionsrustfmt.toml
.cargo/config
0 → 100644
.gitignore
0 → 100644
Cargo.toml
0 → 100644
[package] | ||
name = "indin2018" | ||
version = "0.1.0" | ||
authors = ["Jorge Aparicio <jorge@japaric.io>"] | ||
[dependencies] | ||
heapless = "0.2.5" | ||
[target.'cfg(not(target_os = "none"))'.dependencies.serde-json-core] | ||
git = "https://github.com/japaric/serde-json-core" | ||
features = ["std"] | ||
rev = "a2c4cf0c5d3435a09f7835178c359486567f9cdb" | ||
[target.'cfg(target_os = "none")'.dependencies] | ||
cortex-m-rt = "0.4.0" | ||
cortex-m-rtfm = "0.3.1" | ||
panic-abort = "0.1.0" | ||
stm32f103xx = { version = "0.8.0", features = ["rt"] } | ||
[target.'cfg(not(target_os = "none"))'.dependencies] | ||
scoped_threadpool = "0.1.9" | ||
serde_derive = "1.0.37" | ||
serde_json = "1.0.13" | ||
[profile.release] | ||
lto = true | ||
opt-level = "s" | ||
\ No newline at end of file |
examples/alias.rs
0 → 100644
examples/borrow.rs
0 → 100644
examples/dangling.rs
0 → 100644
examples/drop.rs
0 → 100644
examples/format-error.rs
0 → 100644
examples/format.rs
0 → 100644
examples/input.rs
0 → 100644
examples/json.rs
0 → 100644
examples/message.rs
0 → 100644
examples/ownership.rs
0 → 100644
examples/rtfm.rs
0 → 100644
examples/sum.rs
0 → 100644
memory.x
0 → 100644
rustfmt.toml
0 → 100644
Please register or sign in to comment