From 7d3c3d1c06e68a1951fee3f98b235977f6fa959e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikolai=20G=C3=BCtschow?= Date: Fri, 21 Feb 2025 10:26:05 +0100 Subject: [PATCH] treewide: update links to RIOT example --- .github/workflows/test.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d3fbf77..53eba9a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,7 +23,7 @@ jobs: # This is the subset of `make -f makefiles/app_dirs.inc.mk # info-applications` that is probably relevant; more is covered when # riot-wrappers are updated in RIOT. - example: [examples/rust-hello-world, examples/rust-gcoap, examples/rust-async, tests/rust_minimal, tests/rust_libs] + example: [examples/lang_support/official/rust-hello-world, examples/lang_support/official/rust-gcoap, examples/lang_support/official/rust-async, tests/rust_minimal, tests/rust_libs] board: [native, sltb001a, samr21-xpro, stk3700, stm32f429i-disc1, usb-kw41z] steps: # common steps start here diff --git a/README.md b/README.md index 5bbd4af..c533476 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ The [crate documentation](https://doc.riot-os.org/rustdoc/latest/riot_wrappers/) modules are available, and which other crates' traits they implement. For a newcomer's starting point, see [RIOT's documentation on using it with Rust]. -For basic code examples see [RIOT's examples](https://github.com/RIOT-OS/RIOT/tree/master/examples) +For basic code examples see [RIOT's examples](https://github.com/RIOT-OS/RIOT/tree/master/examples/lang_support/official) (those with "rust" in their name), and the [additional examples](https://gitlab.com/etonomy/riot-examples/) which showcase more of the wrapped APIs.