Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Example: Matter On/Off Light #20456

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
13dc607
add Matter OnOff Light example in Rust
maikerlab Mar 11, 2024
f10dc9b
examples/rust-matter-light: Join mDNS IPv6 multicast group (quick+dirty)
maikerlab Mar 12, 2024
401db6a
examples/rust-matter-light: Adjust stack size for nucleo-f429zi and t…
maikerlab Mar 13, 2024
96f67e4
examples/rust-matter-light: Adjust optimizations; Refactoring; Remove…
maikerlab Mar 19, 2024
5128ec3
examples/rust-matter-light: Add rust-toolchain.toml for docker build …
maikerlab Mar 19, 2024
2f11b35
examples/rust-matter-light: Run shell and matter in seperate thread; …
maikerlab Mar 19, 2024
d2fd9a7
examples/rust-matter-light: Only control LED specified by name
maikerlab Mar 19, 2024
dc00469
examples/rust-matter-light: Add feature 'psm' to make PersistenceMana…
maikerlab Apr 9, 2024
4758555
examples/rust-matter-light: Remove accidentally added files for PR
maikerlab Apr 9, 2024
ebd58d9
examples/rust-matter-light: Remove accidentally added files for PR
maikerlab Apr 9, 2024
5f851ed
examples/rust-matter-light: Include random module (needed for rs-matt…
maikerlab Apr 17, 2024
1d35f0f
examples/rust-matter-light: Add sys_rand function to utils.rs and use…
maikerlab Apr 18, 2024
c9573fc
examples/rust-matter-light: Make periph_rtc feature optional. If not …
maikerlab Apr 19, 2024
4efe8fe
examples/rust-matter-light: Fix: UNIX epoch must be in millisecond pr…
maikerlab Apr 22, 2024
baae4fc
examples/rust-matter-light: Move all "matter core" related stuff into…
maikerlab Apr 23, 2024
6ef71ea
examples/rust-matter-light: adapt to latest riot-wrappers/matter chan…
maikerlab Apr 24, 2024
0c1d6d6
examples/rust-matter-light: setup logger in lib.rs; Move PersistenceM…
maikerlab Apr 28, 2024
62c22bd
examples/rust-matter-light: delete utils.c, because it was moved to r…
maikerlab Apr 30, 2024
17ce906
examples/rust-matter-light: init PersistenceManager as static
maikerlab May 2, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
212 changes: 73 additions & 139 deletions examples/rust-hello-world/Cargo.lock

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions examples/rust-matter-light/.cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[env]
RIOTBUILD_CONFIG_HEADER_C = { value = "bin/native64/riotbuild/riotbuild.h", relative = true }
RIOT_COMPILE_COMMANDS_JSON = { value = "bin/native64/cargo-compile-commands.json", relative = true }

[build]
target = "i686-unknown-linux-gnu"
message-format = "json"
2 changes: 2 additions & 0 deletions examples/rust-matter-light/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.vscode/
target/
Loading
Loading