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:
parent
8aa08599cc
commit
c96f901154
@ -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/" }
|
||||
|
||||
@ -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]
|
||||
|
||||
@ -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/" }
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user