Mathias Koch
Mathias Koch
Perhaps it would be possible to add abstrations based on https://github.com/rust-embedded-community/embedded-storage for this, to make it a bit easier for everyone to use?
~~Relevant: https://github.com/rust-embedded/embedded-hal/pull/241~~ Should be based on https://github.com/rust-embedded-community/embedded-storage/
Have a look at how Paho MQTT does it in C: https://github.com/eclipse/paho.mqtt.c/blob/master/src/MQTTClientPersistence.h
I have been testing this out for a while now, and it seems to work most of the time, with a few hick-ups here and there. I still have a...
I think, if you want an answer here, you need to specify which chip, or at the very least which embassy HAL you are using. Otherwise it is impossible to...
I would be fine with making `capacity` async for situations like this, and also JEDEC like NorFlash implementations. I do however think that if we make it async, it should...
A PR would be very welcomed :+1:
I find myself in a position where I need at least part of this, and are willing to put in the effort, but I might need some input as to...
Fair enough. I will copy what I deem relevant (mostly from the source tree prior to making `Name` an owned type), and leave a note to watch this issue.. Hopefully...
The default rtt buffer size in defmt is 1024 bytes. If you log more than this, the output is silently discarded. I think this is what you are seeing here.....