瞰百

Results 16 issues of 瞰百

补充git命令

可以PR硬件电路、Linux驱动编写的内容吗,比如我有快速入门系列的文章,比如”手撕运放“等,想PR,但这里好像都是java的软件的,好像画风差别有点大...

### LVGL version 8.3.11 ### What happened? I found that the obj such as a label have a default max height: 8191(by using "lv_obj_get_style_max_height()" discover this) and my text content...

### LVGL version 8.3.11 ### Platform win64, PC ### What happened? Using SDL2 (the flush_cb is sdl_display_flush() in the lv_driver lib) In the sdl hal init(): ... lv_disp_draw_buf_init(draw buf: &disp...

### LVGL version 8.3.11 ### What happened? After creating a obj of the lv_animing widget by lv_animimg_creat(), I want to del the obj, can I just use the lv_del_obj() API...

💤 Stale

search the KDBindings in MSYS package but no result(https://packages.msys2.org/search?t=binpkg&q=KDBindings) Recommended to enter MSYS2 package!!!

**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] While eez-studio develop lvgl...

enhancement

**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] Figma or other UI...

enhancement

MSYS2 ucrt env, win10, use gcc/g++, run in cmd: ``` ./configure --prefix= CC=gcc CXX=g++ make ``` get this: ![Image](https://github.com/user-attachments/assets/0f461021-382d-4924-8528-35b75003eefb) And I am tired, why not just put lib package into...

``` inline ~threadpool() { _run=false; _task_cv.notify_all(); // 唤醒所有线程执行 for (thread& thread : _pool) { //thread.detach(); // 让线程“自生自灭” if (thread.joinable()) thread.join(); // 等待任务结束, 前提:线程一定会执行完 } } ``` `_run=false;` 这句话需要 条件变量的锁包着,参考原作者的代码: https://github.com/progschj/ThreadPool/blob/master/ThreadPool.h#L90...