mark9064
mark9064
A working clang-tidy invocation: `clang-tidy -p build $($ARM_NONE_EABI_TOOLCHAIN_PATH/bin/arm-none-eabi-g++ -E -Wp,-v -xc++ /dev/null 1>/dev/null 2>&1 | grep ' /' | sed 's/ \//\//' | xargs realpath | sed 's/^/-extra-arg=-isystem/' | tr...
Should probably link an explanation for that: https://github.com/llvm/llvm-project/issues/53468
Ah, that would be as system task doesn't exist yet so it hits a null ptr deref when it tries to push OnNewTime Edit: I think just adding a systemtask...
 So I tried @pipe01's InfiniEmu and it looks like we're off by a little bit. I'd guess the month and day are meant to be ones
I've thought about this a bit too. The one thing I'm worried about is the durability of the inbuilt flash, which is only rated for 10K cycles. So I think...
Following up from this, it appears that there's definitely some performance issues with the external flash. The font files for G7710 are less than 10K in total. In theory, reading...
I've done some research on this. TLDR test conditions - LittleFS updated to latest - Filesystem formatted after update - Threadsafe mode enabled - Metric is number of ticks to...
The cache size improves performance a bit as seen above, but I don't think we can realistically increase it much past 128: LittleFS needs two `cache_size` buffers which are alive...
This is all done code wise, but there's a nasty bug (littlefs I suspect) prevent fonts bigger than 1 sector (4K) from being loaded. Once I've got that figured I'll...
https://www.youtube.com/watch?v=ia8Q51ouA_s&t=78 Seriously though, this looks great :) really good spot that the mersenne twister is way too big for this application (and that's probably the cause of a crash I've...