embeddedt

Results 330 comments of embeddedt

We've noticed the same thing, and ended up switching to a scheduled GitHub action (https://github.com/actions/stale). This is just my personal theory, but I'm suspecting that GitHub changed an API and...

I ended up writing a [custom workflow](https://github.com/lvgl/lvgl/blob/master/.github/workflows/close_old_issues.yml) using https://github.com/actions/stale for our project, as the stale bot has not been running consistently for at least 2 months. Feel free to re-use...

I should measure how much space strings are taking up - the style API names are quite long and repetitive (e.g. `set_style_local` is at the beginning of every property). We...

> could you describe how you measured the bindings program size on stm32? I simply measured the size of the binary that was flashed to my board. Without LVGL, it's...

I'm counting both the MicroPython bindings and LVGL. I don't think LVGL itself isn't adding more than 100K-150K because I use it on the same board without MicroPython. The MicroPython...

That's a good point, and probably explains the code size. I guess it's just a limitation of dynamic languages. The advantage is that the code size isn't likely to grow...

https://gist.github.com/embeddedt/a8f81caabaeff56f1b30110d085add0b These numbers are heavily inflated because debug symbols are enabled. With debug enabled the image is megabytes larger than the release build (and would not fit on the real...

You're probably right; it could easily have built without optimization because I just used the standard `DEBUG=1`. I suppose I can modify the Makefile to emit debug symbols without changing...

With the latest `master` branch, the STM32 build is now 892K and thus fits with decent room to spare in the internal flash. Nice work! :clap:

@simplejack-src has just implemented something similar [here](https://github.com/lvgl/lv_drivers/tree/master/wayland#event-driven-timer-handler). Does it work for your use case? You still run a while loop but the process will suspend completely if there is no...