Thomas Schaller

Results 45 issues of Thomas Schaller

This line for example shouldn't use `Relaxed`. https://github.com/slide-rs/pulse/blob/8cbe16c0198648ef32907456ff48b0cc17f20402/src/lib.rs#L214

https://github.com/slide-rs/pulse/blob/8cbe16c0198648ef32907456ff48b0cc17f20402/src/lib.rs#L268

https://github.com/slide-rs/pulse/blob/8cbe16c0198648ef32907456ff48b0cc17f20402/src/lib.rs#L175 I'm not sure how much sense this constructor makes, the `usize` had to be a pointer to a value in the heap, which has been allocated by `Box`.

I think it would be nice to do something like that: ```rust let x = [1, 2, 3, 4]; let y = x[1..2]; ``` Why isn't `y` of type `[i32;...

T-lang

Not quite sure how that can happen, using `EspSystemEventLoop::subscribe_async::(..)`, I was able to trigger this panic: ``` thread '' panicked at ~/.cargo/git/checkouts/esp-idf-svc-1132d30333045bb2/a3aefb7/src/eth.rs:1059:13: Unknown event ID: 4 ``` Using ESP-IDF 5.1.3...

bug

Also adds the new mutable versions as `_mut`

Fixes #337 Also fixes the conversion of ssid/password in the config to no longer assume 0 termination - this lead to problems when routers send a 64 byte access token...

WPS no longer works in the latest release, it regressed in commit 29ce820f5012d70c5853c0c646efd7664658cd44 Line 1901 in that commit is problematic, as it assumes an event payload is present in any...

https://github.com/esp-rs/esp-idf-svc/blob/730fa3642d7042735de924c3d6ce71eafb8dc615/examples/tls_async.rs#L172 This will essentially forget the socket, thus leaking it - after a couple of dropped `EspTlsSocket`s, we'll run into IO errors due to too many open files.

question