ducalex

Results 163 comments of ducalex
trafficstars

> The reason why I modified the pinout is to separate buses. My SD card reader seems to be a bit chatty, so it's safer to connect it to a...

Thank you for the feedback :) I was actually breaking `SPI_DMA_CH_AUTO` by overriding it and this was very recently fixed in 1892c16342f786cad57f248b187ddf076abb51b2. >The option that worked in my case was:...

Simple downscaling is easy, the harder part is making sure the rest of the code is aware of it (all the cropping and scaling calculations and filtering in particular). Here's...

This was actually implemented and released in 1.41, you can now scale up or down at any factor you want. I believe the particular commit was https://github.com/ducalex/retro-go/commit/9eb04c1efc4192d10bbde790bc388ae7ea1229ea

Thinking about it we could even ditch the two files format and only keep: Single file: `File: MY_FILE.png` 2 or more files: `Files: MY_FILE.png and 1 more`

When stripping the metadata manually in the key file I get the following: ```` Load(, 0, 0) returned error, retrying after 552.330144ms: loadAll(): invalid data returned Load(, 0, 0) operation...

> @ducalex The filename of a file stored in the repository _must_ always match the SHA256 hash of its content. Thus after tampering with a key, you have to update...

The missing #include is fixed in the dev branch and I suggest you work on the dev branch because that's where further S3 fixes will go! One thing you could...

That's an interesting crash, I'm not sure why the stack would overflow. But our stack is pretty small, maybe your version of esp-idf has more overhead or just the s3...

> But on an ESP32s3 when I flash it the bootloader is loaded on 0x0. So I tryed to put 0x0 instead of 0x1000 and it works fine! Thanks for...