forked from SlimeVR/SlimeVR-Rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
firmware: hello world nrf (SlimeVR#48)
* hello world nrf * Fixed up the readme and linker script
- Loading branch information
Showing
11 changed files
with
538 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Cargo stuff | ||
/target | ||
**/target | ||
|
||
# OS-specific stuff | ||
.DS_Store | ||
|
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 |
---|---|---|
@@ -1,13 +1,12 @@ | ||
[workspace] | ||
members = [ | ||
"autoupdater", | ||
"overlay/app", | ||
"overlay/tokio_shutdown", | ||
"skeletal_model", | ||
"testing-jig", | ||
# "firmware", | ||
"autoupdater", | ||
"overlay/app", | ||
"overlay/tokio_shutdown", | ||
"skeletal_model", | ||
"testing-jig", | ||
# "firmware", | ||
] | ||
exclude = ["firmware"] | ||
|
||
exclude = ["nrf_demo", "firmware"] | ||
|
||
resolver = "2" |
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,15 @@ | ||
[target.thumbv7em-none-eabihf] | ||
|
||
rustflags = [ | ||
"-C", | ||
"link-arg=--nmagic", | ||
"-C", | ||
"link-arg=-Tlink.x", | ||
"-C", | ||
"link-arg=-Tdefmt.x", | ||
"-C", | ||
"linker=flip-link", # Requires you to `cargo install flip-link` | ||
] | ||
|
||
[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,2 @@ | ||
*.uf2 | ||
*.bin |
Oops, something went wrong.