1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-31 09:21:19 +01:00

examples: fix relative paths to RIOTBASE

This commit is contained in:
Mikolai Gütschow 2025-02-14 11:04:19 +01:00
parent 8aa08599cc
commit c96f901154
No known key found for this signature in database
GPG Key ID: 943E2F37AA659AD5
9 changed files with 9 additions and 9 deletions

View File

@ -28,4 +28,4 @@ portable-atomic = { version = "1", features = [ "critical-section" ] }
# Rust, that may change; it is best practice for any RIOT application that has
# its own top-level Rust crate to include rust_riotmodules from inside
# RIOTBASE.
rust_riotmodules = { path = "../../sys/rust_riotmodules/" }
rust_riotmodules = { path = "../../../../sys/rust_riotmodules/" }

View File

@ -30,7 +30,7 @@ riot-coap-handler-demos = { git = "https://gitlab.com/etonomy/riot-module-exampl
# Rust, that may change; it is best practice for any RIOT application that has
# its own top-level Rust crate to include rust_riotmodules from inside
# RIOTBASE.
rust_riotmodules = { path = "../../sys/rust_riotmodules/" }
rust_riotmodules = { path = "../../../../sys/rust_riotmodules/" }
static_cell = "2.1.0"
[patch.crates-io]

View File

@ -21,4 +21,4 @@ riot-wrappers = { version = "0.9.0", features = [ "set_panic_handler" ] }
# Rust, that may change; it is best practice for any RIOT application that has
# its own top-level Rust crate to include rust_riotmodules from inside
# RIOTBASE.
rust_riotmodules = { path = "../../sys/rust_riotmodules/" }
rust_riotmodules = { path = "../../../../sys/rust_riotmodules/" }

View File

@ -5,7 +5,7 @@ APPLICATION = skald_eddystone
BOARD ?= nrf52dk
# This has to be the absolute path to the RIOT base directory:
RIOTBASE ?= $(CURDIR)/../../../..
RIOTBASE ?= $(CURDIR)/../../../../..
# include Skald
USEMODULE += skald_eddystone

View File

@ -5,7 +5,7 @@ APPLICATION = skald_ibeacon
BOARD ?= nrf52dk
# This has to be the absolute path to the RIOT base directory:
RIOTBASE ?= $(CURDIR)/../../../..
RIOTBASE ?= $(CURDIR)/../../../../..
# include Skald
USEMODULE += skald_ibeacon

View File

@ -5,7 +5,7 @@ APPLICATION = nimble_gatt
BOARD ?= nrf52dk
# This has to be the absolute path to the RIOT base directory:
RIOTBASE ?= $(CURDIR)/../../../..
RIOTBASE ?= $(CURDIR)/../../../../..
# Include NimBLE
USEPKG += nimble

View File

@ -5,7 +5,7 @@ APPLICATION = nimble_heart_rate_sensor
BOARD ?= nrf52dk
# This has to be the absolute path to the RIOT base directory:
RIOTBASE ?= $(CURDIR)/../../../..
RIOTBASE ?= $(CURDIR)/../../../../..
# Some RIOT modules needed for this example
USEMODULE += event_timeout_ztimer

View File

@ -5,7 +5,7 @@ APPLICATION = nimble_scanner
BOARD ?= nrf52dk
# This has to be the absolute path to the RIOT base directory:
RIOTBASE ?= $(CURDIR)/../../../..
RIOTBASE ?= $(CURDIR)/../../../../..
# We use the xtimer and the shell in this example
USEMODULE += shell

View File

@ -5,7 +5,7 @@ APPLICATION = gnrc_lorawan
DEVELHELP ?= 1
BOARD ?= b-l072z-lrwan1
RIOTBASE ?= ../../
RIOTBASE ?= $(CURDIR)/../../../..
# Include board's default network devices and auto-initialization of GNRC
# interfaces