- Downloads
 
app0-5
Showing         
- .vscode/launch.json 152 additions, 12 deletions.vscode/launch.json
 - .vscode/tasks.json 72 additions, 0 deletions.vscode/tasks.json
 - Cargo.toml 29 additions, 20 deletionsCargo.toml
 - examples/app.rs 47 additions, 0 deletionsexamples/app.rs
 - examples/app1.rs 31 additions, 0 deletionsexamples/app1.rs
 - examples/app2.rs 48 additions, 0 deletionsexamples/app2.rs
 - examples/app3.rs 38 additions, 0 deletionsexamples/app3.rs
 - examples/app4.rs 55 additions, 0 deletionsexamples/app4.rs
 - examples/app5.rs 42 additions, 0 deletionsexamples/app5.rs
 - examples/hello.rs 4 additions, 1 deletionexamples/hello.rs
 - memory.x 4 additions, 7 deletionsmemory.x
 - openocd.cfg 21 additions, 6 deletionsopenocd.cfg
 - openocd.gdb 1 addition, 1 deletionopenocd.gdb
 - openocd_jlink.cfg 29 additions, 0 deletionsopenocd_jlink.cfg
 
| ... | @@ -10,7 +10,7 @@ version = "0.1.0" | ... | @@ -10,7 +10,7 @@ version = "0.1.0" | 
| # stm32fxx-hal = {git = "https://github.com/stm32-rs/stm32f4xx-hal.git" } | # stm32fxx-hal = {git = "https://github.com/stm32-rs/stm32f4xx-hal.git" } | ||
| [dependencies] | [dependencies] | ||
| cortex-m-rt = "0.6.7" | cortex-m-rt = "0.6.8" | ||
| cortex-m-semihosting = "0.3.2" | cortex-m-semihosting = "0.3.2" | ||
| # panic-abort = "0.3.1" # requires nightly toolchain | # panic-abort = "0.3.1" # requires nightly toolchain | ||
| ... | @@ -21,34 +21,43 @@ panic-itm = "0.4.0" | ... | @@ -21,34 +21,43 @@ panic-itm = "0.4.0" | 
| bare-metal = "0.2.4" | bare-metal = "0.2.4" | ||
| nb = "0.1.1" | nb = "0.1.1" | ||
| heapless = "0.4.1" | heapless = "0.4.1" | ||
| nrf52-hal-common = "0.7.0" | |||
| embedded-hal = "0.2.2" | |||
| [dependencies.nrf52832-hal] | |||
| version = "0.7.0" | |||
| [dependencies.cortex-m-rtfm] | [dependencies.cortex-m-rtfm] | ||
| version = "0.4.0" | version = "0.4.1" | ||
| optional = true | # optional = true | ||
| [dependencies.cortex-m] | [dependencies.cortex-m] | ||
| version = "0.5.8" | version = "0.6.0" | ||
| #version = "0.5.8" | |||
| # features = ["inline-asm"] # <- currently requires nightly compiler | # features = ["inline-asm"] # <- currently requires nightly compiler | ||
| # Uncomment for the allocator example. | # Uncomment for the allocator example. | ||
| # alloc-cortex-m = "0.3.5" | # alloc-cortex-m = "0.3.5" | ||
| [dependencies.stm32f4] | # [dependencies.stm32f4] | ||
| version = "0.5.0" | # version = "0.5.0" | ||
| features = ["stm32f413", "rt"] | # features = ["stm32f413", "rt"] | ||
| optional = true | # optional = true | ||
| [dependencies.stm32f4xx-hal] | # [dependencies.stm32f4xx-hal] | ||
| git = "https://github.com/stm32-rs/stm32f4xx-hal.git" | # git = "https://github.com/stm32-rs/stm32f4xx-hal.git" | ||
| version = "0.2.8" | # version = "0.2.8" | ||
| features = ["stm32f413", "rt"] | # features = ["stm32f413", "rt"] | ||
| optional = true | # optional = true | ||
| [features] | # [features] | ||
| pac = ["stm32f4"] | # pac = ["stm32f4"] | ||
| hal = ["stm32f4xx-hal"] | # hal = ["stm32f4xx-hal"] | ||
| rtfm = ["cortex-m-rtfm"] | # rtfm = ["cortex-m-rtfm"] | ||
| rtfm-tq = ["cortex-m-rtfm/timer-queue"] | # rtfm-tq = ["cortex-m-rtfm/timer-queue"] | ||
| # this lets you use `cargo fix`! | # this lets you use `cargo fix`! | ||
| [[bin]] | [[bin]] | ||
| ... | ... | ||
| ... | ... | 
examples/app.rs
0 → 100644
examples/app1.rs
0 → 100644
examples/app2.rs
0 → 100644
examples/app3.rs
0 → 100644
examples/app4.rs
0 → 100644
examples/app5.rs
0 → 100644
openocd_jlink.cfg
0 → 100644
Please register or sign in to comment