Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov committed May 6, 2024
1 parent 4f2bc24 commit 78ee288
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ rust-version = "1.77"
embedded-svc = { git = "https://github.com/esp-rs/embedded-svc" }
esp-idf-svc = { git = "https://github.com/esp-rs/esp-idf-svc", branch = "gatt" }
#esp-idf-svc = { path = "../esp-idf-svc" }
rs-matter = { git = "https://github.com/ivmarkov/rs-matter", branch = "wifi" }
rs-matter-macros = { git = "https://github.com/ivmarkov/rs-matter", branch = "wifi" }
#rs-matter = { path = "../rs-matter/rs-matter" }
#rs-matter-macros = { path = "../rs-matter/rs-matter-macros" }
#rs-matter = { git = "https://github.com/ivmarkov/rs-matter", branch = "wifi" }
#rs-matter-macros = { git = "https://github.com/ivmarkov/rs-matter", branch = "wifi" }
rs-matter = { path = "../rs-matter/rs-matter" }
rs-matter-macros = { path = "../rs-matter/rs-matter-macros" }

[profile.release]
opt-level = "s"
Expand Down
2 changes: 1 addition & 1 deletion src/stack.rs
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ where
P: NvsPartitionId,
{
// Reset the Matter transport buffers and all sessions first
self.matter().reset();
self.matter().reset_transport()?;

let mut psm = pin!(self.run_psm(nvs, nvs::Network::<0, NoopRawMutex>::Eth));
let mut respond = pin!(self.run_responder(handler));
Expand Down

0 comments on commit 78ee288

Please sign in to comment.