jsprog

Results 30 comments of jsprog

For the second case (to freeze hot-reload), I'm receiving this terminal message: ```console Rebuild needed... shutting down hot reloading. Manually rebuild the application to view further changes. ``` **how can...

> That said, I might actually just remove hot reload in the next release hot-reload existed to increase productivity when coding apps, and despite the limits mentioned above, it helps...

@chmousset The available program flash for CH32V203 is 224KB, covering both zero-wait (cached) and the non-zero-wait flash ``` /* CH32V203C8T6 */ MEMORY { FLASH : ORIGIN = 0x00000000, LENGTH =...

@chmousset I understand that going beyond the non-zero-wait area is more involved and not just providing a different value instead of FLASH_SIZE. According to a note in the reference manual:...

https://github.com/tweedegolf/sequential-storage/issues/93#issue-3390373024

@chmousset My last resort was to avoid using embedded-storage or any kind of third party storage library, and instead I used the PAC directly. My requirements were quite simple to...

@chmousset, It's a non finished library and I didn't touched the code since last September, but I'm planning to share it very soon (likely before the end of this year)....

@chmousset Here, I'm sharing RAM implementation for testing the library with a PC, I also introduced the print_block method for storage inspection during development. You'll also notice I'm using RwLock...

@chmousset > @jsprog so does it work? I implemented BlockStorage for CH32V using the PAC directly an it worked, thus providing free higher level abstractions for free (LogsStorage + KVStorage)....