2018-11-03 17:02:41 +01:00
|
|
|
# Starting a new project
|
|
|
|
|
2020-06-11 19:18:29 +02:00
|
|
|
Now that you have learned about the main features of the RTIC framework you can
|
2018-11-03 17:02:41 +01:00
|
|
|
try it out on your hardware by following these instructions.
|
|
|
|
|
|
|
|
1. Instantiate the [`cortex-m-quickstart`] template.
|
|
|
|
|
|
|
|
[`cortex-m-quickstart`]: https://github.com/rust-embedded/cortex-m-quickstart#cortex-m-quickstart
|
|
|
|
|
|
|
|
``` console
|
|
|
|
$ # for example using `cargo-generate`
|
|
|
|
$ cargo generate \
|
|
|
|
--git https://github.com/rust-embedded/cortex-m-quickstart \
|
|
|
|
--name app
|
|
|
|
|
|
|
|
$ # follow the rest of the instructions
|
|
|
|
```
|
|
|
|
|
2018-12-16 21:19:19 +01:00
|
|
|
2. Add a peripheral access crate (PAC) that was generated using [`svd2rust`]
|
|
|
|
**v0.14.x**, or a board support crate that depends on one such PAC as a
|
|
|
|
dependency. Make sure that the `rt` feature of the crate is enabled.
|
2018-11-03 17:02:41 +01:00
|
|
|
|
|
|
|
[`svd2rust`]: https://crates.io/crates/svd2rust
|
|
|
|
|
|
|
|
In this example, I'll use the [`lm3s6965`] device crate. This device crate
|
|
|
|
doesn't have an `rt` Cargo feature; that feature is always enabled.
|
|
|
|
|
|
|
|
[`lm3s6965`]: https://crates.io/crates/lm3s6965
|
|
|
|
|
|
|
|
This device crate provides a linker script with the memory layout of the target
|
|
|
|
device so `memory.x` and `build.rs` need to be removed.
|
|
|
|
|
|
|
|
``` console
|
|
|
|
$ cargo add lm3s6965 --vers 0.1.3
|
|
|
|
|
|
|
|
$ rm memory.x build.rs
|
|
|
|
```
|
|
|
|
|
2020-06-11 19:18:29 +02:00
|
|
|
3. Add the `cortex-m-rtic` crate as a dependency.
|
2018-11-03 17:02:41 +01:00
|
|
|
|
|
|
|
``` console
|
2020-06-11 19:18:29 +02:00
|
|
|
$ cargo add cortex-m-rtic --allow-prerelease
|
2018-11-03 17:02:41 +01:00
|
|
|
```
|
|
|
|
|
2020-06-11 19:18:29 +02:00
|
|
|
4. Write your RTIC application.
|
2018-11-03 17:02:41 +01:00
|
|
|
|
2020-06-11 19:18:29 +02:00
|
|
|
Here I'll use the `init` example from the `cortex-m-rtic` crate.
|
2018-11-03 17:02:41 +01:00
|
|
|
|
|
|
|
``` console
|
|
|
|
$ curl \
|
2020-06-11 19:18:29 +02:00
|
|
|
-L https://github.com/rtic-rs/cortex-m-rtic/raw/v0.5.0/examples/init.rs \
|
2018-11-03 17:02:41 +01:00
|
|
|
> src/main.rs
|
|
|
|
```
|
|
|
|
|
|
|
|
That example depends on the `panic-semihosting` crate:
|
|
|
|
|
|
|
|
``` console
|
|
|
|
$ cargo add panic-semihosting
|
|
|
|
```
|
|
|
|
|
|
|
|
5. Build it, flash it and run it.
|
|
|
|
|
|
|
|
``` console
|
|
|
|
$ # NOTE: I have uncommented the `runner` option in `.cargo/config`
|
|
|
|
$ cargo run
|
2019-02-11 21:40:53 +01:00
|
|
|
{{#include ../../../../ci/expected/init.run}}```
|