Lachezar Lechev
Lachezar Lechev
This PR is wrong, maybe the parsing or the LC76G sentences documentation is wrong as it also mentions a max if 12 prns
> Out of curiosity, what's the use case? I could maybe see that as a simple protection against denial of service attacks... Yes, that's actually our use case. Since we...
I've managed to use the `#[macro_export(local_inner_macros)]` to make it possible in the 2018 edition to import only: `use tower_web::{derive_resource_impl, impl_web};` It still requires the `derive_resource_impl` to be imported, sadly that's...
@carllerche can you give a bit more details about this and how can it be implemented?
Found out the same thing that `serde()` don't work and you need to manually add `Serialize` and/or `Deserialize` to the `derive`s. Should we actually update the docs or there is...
I'd love to, however, I've only just began with embedded rust and I would need guidance to add support for interrupts. Would you mind that or? PS: I've also started...
This feature would be great! I believe this is also useful if you want to stream the bytes instead of recording to a file, is it not? Not sure what's...
I believe that the current implementation runs only in async. One way you could run it in blocking code is e.g. using the `futures` crate: https://docs.rs/futures/latest/futures/executor/fn.block_on.html or even better, with...
Use this patch for `delog` which switches AtomicUsize with the one from the `atomic-pollyfill` which adds pollyfills when the platform does not support `core` atomic size operations. ```toml [patch.crates-io] delog...
I managed to compile and try to mount an SD card storage implementation with `embedded-sdmmc`. Sadly on mount it gives me an error "Invalid". I will try with a brand...