Julien Cretin
Julien Cretin
I might be missing something obvious, but what should be the behavior of `cargo clean`? Should it remove all artifacts, only those that would be otherwise used by the current...
Thanks! This looks reasonable to me. The only possible issue I see is when cache corruption occurs (either because of tooling like [rust-analyzer](https://github.com/rust-lang/rust-analyzer/issues/14722) or ephemeral hardware issue). In that case,...
I'll try to reproduce and investigate this when I'll get computer access in a few weeks. Thanks for the debugging!
I was able to reproduce the original error, which for the record is: ``` {"name":"deployment_handler","requires-python":">=3.9"} is not valid under any of the given schemas ``` I'm not sure what alternative...
Thanks, I've created #428.
Version 0.8.1 has been released.
There is another minor point I forgot. ## Why mix `u32` and `usize`? Offsets are expressed as `u32` while sizes (e.g. `WRITE_SIZE` or `capacity()`) are expressed as `usize`. This forces...
> External flashes need exclusive access to the underlying SPI/QSPI peripheral to do the operation. Maybe external flashes need a different trait, see below. > What's the usecase for "sharing"...
I agree that naming with properties is more useful than naming with technologies (that was my initial intention). As I'm making progress on my library (still not presentable but will...
I agree with the sentiment. The way I see it the trait can range from full parametric (FP) to common denominator (CD): - FP: Try to capture all properties of...