From d67a448511b764a120d122ad5fa025b6c1bca2f4 Mon Sep 17 00:00:00 2001 From: chrysn Date: Thu, 22 Aug 2024 17:52:07 +0200 Subject: [PATCH] examples/rust-gcoap: Enable access to all file systems This was previously limited to constfs due to [8], but now that that is fixed, it can show its full potential of enumerating both directories and mount points. [8]: https://gitlab.com/etonomy/riot-wrappers/-/issues/8 --- examples/rust-gcoap/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/rust-gcoap/src/lib.rs b/examples/rust-gcoap/src/lib.rs index 03f2549c7904..538a5086655c 100644 --- a/examples/rust-gcoap/src/lib.rs +++ b/examples/rust-gcoap/src/lib.rs @@ -23,7 +23,7 @@ fn main() { let handler = coap_message_demos::full_application_tree(None) .below(&["ps"], riot_coap_handler_demos::ps::ps_tree()) - .below(&["vfs"], riot_coap_handler_demos::vfs::vfs("/const")) + .below(&["vfs"], riot_coap_handler_demos::vfs::vfs("")) .below(&["saul"], riot_coap_handler_demos::saul::SaulHandler::new(&["saul"])) .with_wkc() ;