-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from tock/update-aug-2023-wm1110
Aug 2023: update to recent Tock, and add wm1110 dev board
- Loading branch information
Showing
44 changed files
with
1,702 additions
and
905 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,4 +1,5 @@ | ||
build | ||
target | ||
local_cargo | ||
Cargo.lock | ||
|
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ version = "0.1.0" | |
authors = ["Tock Project Developers <[email protected]>"] | ||
|
||
[dependencies] | ||
kernel = { git = "https://github.com/tock/tock", rev = "405417" } | ||
kernel = { git = "https://github.com/tock/tock", rev = "2ff6868" } | ||
#kernel = { path = "../../../tock/kernel" } | ||
|
||
bootloader = { path = "../../bootloader" } |
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#![feature(const_fn, asm)] | ||
#![no_std] | ||
|
||
pub mod jumper; |
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -3,16 +3,17 @@ name = "clue_nrf52840-bootloader" | |
version = "0.1.0" | ||
authors = ["Tock Project Developers <[email protected]>"] | ||
build = "build.rs" | ||
edition = "2018" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
cortexm4 = { git = "https://github.com/tock/tock", rev = "405417" } | ||
capsules = { git = "https://github.com/tock/tock", rev = "405417" } | ||
kernel = { git = "https://github.com/tock/tock", rev = "405417" } | ||
nrf52 = { git = "https://github.com/tock/tock", rev = "405417" } | ||
nrf52840 = { git = "https://github.com/tock/tock", rev = "405417" } | ||
components = { git = "https://github.com/tock/tock", rev = "405417" } | ||
nrf52_components = { git = "https://github.com/tock/tock", rev = "405417" } | ||
cortexm4 = { git = "https://github.com/tock/tock", rev = "2ff6868" } | ||
capsules-core = { git = "https://github.com/tock/tock", rev = "2ff6868" } | ||
capsules-extra = { git = "https://github.com/tock/tock", rev = "2ff6868" } | ||
kernel = { git = "https://github.com/tock/tock", rev = "2ff6868" } | ||
nrf52 = { git = "https://github.com/tock/tock", rev = "2ff6868" } | ||
nrf52840 = { git = "https://github.com/tock/tock", rev = "2ff6868" } | ||
components = { git = "https://github.com/tock/tock", rev = "2ff6868" } | ||
nrf52_components = { git = "https://github.com/tock/tock", rev = "2ff6868" } | ||
|
||
# For Development | ||
# cortexm4 = { path = "../../../tock/arch/cortex-m4" } | ||
|
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
Oops, something went wrong.