Amir Gonnen
Amir Gonnen
Related: https://github.com/lvgl/lvgl/issues/3535#issuecomment-1232489218 A short and easy to follow list about MP conventions. This will be communicated as LVGL coding standard. Less is better so we should have as few rules...
Hi pvvx, First I wanted to say you did an excellent work of reverse engineering the closed ESP SDK. Well done! I would like to re-use parts of your code...
New users keep adding tags instead of using existing ones. It would be useful if I could set a minimum karma for creating new tags. Users who's karma is insufficient...
Unix domain socket support for remote bitbang.
[Unicode Box Drawing](https://www.compart.com/en/unicode/block/U+2500) allows clean formatting of tables, including all types of corners. These characters are also present on the Extended ASCII set with certain code pages, when not using...
When a struct is used by a function indirectly, through a chain of typedefs, it should be generated. See https://github.com/lvgl/lv_binding_micropython/issues/279#issuecomment-1590454389
See: https://forum.lvgl.io/t/gradient-is-not-working-with-lv-draw-rect-dsc-t/10612 ```python rect_dsc.bg_grad.stops[0].color = lv.palette_main(lv.PALETTE.RED) rect_dsc.bg_grad.stops[1].color = lv.palette_main(lv.PALETTE.BLUE) ``` does not work, because stops is converted to list and does not update the original array upon update. A workaround...
REPL
Hi, Nice work! Any chance for an online REPL, just to get the feel of it?
Tabulate code calls `std::locale::global` in[ several places](https://github.com/search?q=repo%3Ap-ranav%2Ftabulate%20std%3A%3Alocale%3A%3Aglobal&type=code). `std::locale::global` is **not thread-safe** and makes tabulate unsafe to use inside a larger multithreaded application. An application might change the locale at any...
When mode is `UCS_THREAD_MODE_SERIALIZED`, UCX crash due to mpool corruption. This happens when buffer is deallocated on a different thread. In such case two threads access UCX memory pool simultaneously....