LonerDan
LonerDan
The file [src/gpu/lv_gpu.mk](https://github.com/lvgl/lvgl/blob/62829967647ce6eca38202f03e0bda348748e9aa/src/gpu/lv_gpu.mk#L12) includes no longer existing file src/gpu/sdl/lv_gpu_sdl.mk. I guess the latest changes to that directory were made in regard to this issue. Is this an overlooked leftover that...
Thank you, that works. Is there a way to also allow using it without the value, so that it defaults to `None`? Neither `sql_type(float)`, `sql_type = float` nor `sql_type =...
Could this be done in addition to the derived `FromMeta` implementation (i.e. only add implementation for those cases)?
Would it be possible or desired to add handling of this to the code generated for `#[derive(FromMeta)]`? Darling already handles correctly `Option` fields (i.e. absence of attribute field means `None`),...
I looked at the way the variant parsing is done from string values, and we could alter the matching a bit for the variants which are `newtype` or `struct` by...
I see this is a quite old and still open issue with no pull requests, so I am not sure what happened here, but I just wanted to chime in...
I have encountered this error myself recently. Perhaps the `LIMBO_RT` should be pre-initialized during the connection creation instead of [ad-hoc during the first send_off call](https://github.com/kotauskas/interprocess/blob/db6c36d1ccf86e607490e116d15ec7dbca1500af/src/os/windows/limbo/tokio.rs#L86)? I have added a few...
Not sure what the timeline of that upstream implementation is like, but FYI there seems to be support via [this crate](https://crates.io/crates/uds_windows/1.1.0).
Given that the HAL driver for esp32-s3 for the xtal32k initialisation (`clk_ll_xtal32k_enable`) includes this comment https://github.com/espressif/esp-idf/blob/0453e8608bde98133a427a74ae61d272770b1bfd/components/hal/esp32s3/include/hal/clk_tree_ll.h#L99-L102 indicates that the 32k clock input is not configured properly. Looking into the TRM,...