Skip to content

Commit

Permalink
disable currently unsupported stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
kaspar030 committed Nov 15, 2023
1 parent 27503a3 commit c08d987
Show file tree
Hide file tree
Showing 12 changed files with 52 additions and 56 deletions.
78 changes: 28 additions & 50 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ repository = "https://github.com/future-proof-iot/riot-rs"

[workspace.dependencies]
cfg-if = { version = "1.0.0" }
cortex-m = { version = "0.7", default-features = false }
cortex-m = { version = "0.7", default-features = false, features = [ "inline-asm" ] }
cortex-m-rt = { version = "0.7" }
cortex-m-semihosting = { version = "0.5" }
critical-section = { version = "1.1.2" }
Expand Down
2 changes: 1 addition & 1 deletion examples/benchmark/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#![no_main]
#![no_std]

use riot_rs::debug::println;
use riot_rs::rt::debug::println;

#[no_mangle]
fn riot_main() {
Expand Down
1 change: 1 addition & 0 deletions examples/bottles/laze.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
apps:
- name: bottles
selects:
- riot-c
- release
env:
global:
Expand Down
6 changes: 6 additions & 0 deletions examples/laze.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
defaults:
apps:
context:
- riot-rs

subdirs:
- benchmark
- bottles
- core-sizes
- embassy
# - embassy-gpio
- hello-world
- minimal
- riot-app
Expand Down
2 changes: 2 additions & 0 deletions examples/riot-app/laze.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
apps:
- name: riot-app
selects:
- riot-c
- ?release
env:
global:
Expand All @@ -11,6 +12,7 @@ apps:

- name: riot-appdir
selects:
- riot-c
- ?release
env:
global:
Expand Down
1 change: 1 addition & 0 deletions examples/riot-wrappers-mutex/laze.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
apps:
- name: riot-wrappers-mutex
selects:
- riot-c
- ?release
1 change: 1 addition & 0 deletions examples/rust-gcoap/laze.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
apps:
- name: rust-gcoap
selects:
- riot-c
- ?release
env:
global:
Expand Down
9 changes: 6 additions & 3 deletions laze-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ contexts:

# base context for all RIOT-rs applications
- name: riot-rs
selects:
- ?newlib
- riot-sources

env:
RUSTFLAGS:
Expand Down Expand Up @@ -419,6 +416,12 @@ modules:
selects:
- riot_libc|newlib

- name: riot-c
selects:
- "riot-c-currently-unsupported"
- ?newlib
- riot-sources

- name: newlib
context: riot-rs
env:
Expand Down
2 changes: 1 addition & 1 deletion src/riot-rs-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ringbuffer = { path = "../lib/ringbuffer" }
thread_info = []

[build-dependencies]
cbindgen = "0.15.*"
cbindgen = "0.26.*"

[dev-dependencies]
riot-rs-rt = { path = "../riot-rs-rt" }
Expand Down
2 changes: 2 additions & 0 deletions src/riot-rs-core/laze.yml
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
apps:
- selects:
- "disabled_until_test_framework_fixed"
2 changes: 2 additions & 0 deletions src/riot-rs-rt/laze.yml
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
apps:
- selects:
- "disabled_until_test_framework_fixed"

0 comments on commit c08d987

Please sign in to comment.