Rename examples -> embassy-nrf-examples
This commit is contained in:
parent
4783222f67
commit
20d3dc87f9
16 changed files with 5 additions and 5 deletions
|
@ -3,8 +3,8 @@
|
||||||
members = [
|
members = [
|
||||||
"embassy",
|
"embassy",
|
||||||
"embassy-nrf",
|
"embassy-nrf",
|
||||||
|
"embassy-nrf-examples",
|
||||||
"embassy-macros",
|
"embassy-macros",
|
||||||
"examples",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
exclude = [
|
exclude = [
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
|
authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
name = "embassy-examples"
|
name = "embassy-nrf-examples"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
|
|
||||||
[features]
|
[features]
|
|
@ -2,9 +2,6 @@
|
||||||
|
|
||||||
set -euxo pipefail
|
set -euxo pipefail
|
||||||
|
|
||||||
# examples
|
|
||||||
(cd examples; cargo build --target thumbv7em-none-eabi --bins)
|
|
||||||
|
|
||||||
# embassy std
|
# embassy std
|
||||||
(cd embassy; cargo build --features log,std)
|
(cd embassy; cargo build --features log,std)
|
||||||
|
|
||||||
|
@ -14,6 +11,9 @@ set -euxo pipefail
|
||||||
(cd embassy; cargo build --target thumbv7em-none-eabi --features defmt)
|
(cd embassy; cargo build --target thumbv7em-none-eabi --features defmt)
|
||||||
|
|
||||||
# embassy-nrf
|
# embassy-nrf
|
||||||
|
|
||||||
|
(cd embassy-nrf-examples; cargo build --target thumbv7em-none-eabi --bins)
|
||||||
|
|
||||||
(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52810)
|
(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52810)
|
||||||
#(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52811) # nrf52811-hal doesn't exist yet
|
#(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52811) # nrf52811-hal doesn't exist yet
|
||||||
(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52832)
|
(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52832)
|
||||||
|
|
Loading…
Reference in a new issue