-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
examples: add simple software task example
While we do have a dedicated repo for RTIC examples, it makes more sense to merge those too with this repo: cargo-rtic-scope, cortem-m-rtic-trace and relevant examples are all interlinked and must be in phase with eachother. However, we can't add it to the workspace yet because per-package-target[0] is not yet stable. [0] rust-lang/cargo#9406
- Loading branch information
Showing
7 changed files
with
765 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[target.thumbv7em-none-eabihf] | ||
rustflags = [ | ||
"-C", "link-arg=-Tlink.x", | ||
"-C", "linker=arm-none-eabi-ld", | ||
] | ||
|
||
[build] | ||
target = "thumbv7em-none-eabihf" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
target/ |
Oops, something went wrong.