1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00

10660 Commits

Author SHA1 Message Date
Gabor Kiss-Vamosi
e332a0db52
ci(ref_imgs): make the CI fail if there not all ref. images are added (#7086) 2024-10-18 11:47:44 +08:00
Liu Yi
8ab11dcf60
chore(demos/ebike): fixed chinese translation errors (#7102)
Signed-off-by: lhdjply <lhdjply@126.com>
2024-10-18 11:02:12 +08:00
VIFEX
c30e18df3c
fix(tests): fix vg-lite buf address not aligned (#7049)
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
Co-authored-by: pengyiqiang <pengyiqiang@xiaomi.com>
2024-10-17 14:22:52 +02:00
Gabriel Wang
bb3c662f19
chore(cmsis-pack): update cmsis pack for v9.3.0-dev (#7080) 2024-10-17 13:05:02 +02:00
lhdjply
032c2c351c docs(index): sort the index links alphabetically
Signed-off-by: lhdjply <lhdjply@126.com>
2024-10-17 12:24:04 +02:00
lhdjply
4d929f34a4 docs(index): complete the missing link in the index
Signed-off-by: lhdjply <lhdjply@126.com>
2024-10-17 12:24:04 +02:00
Benign X
18008fd84d
fix(gdb): fix style prop getting (#7088)
Co-authored-by: Parallels <parallels@kali-linux-2022-2.localdomain>
2024-10-17 11:15:47 +02:00
Michael Simon
b20035d68d
chore(qrcode): replaced libc includes (#7077) 2024-10-17 10:30:04 +02:00
yimoxiao
0e09c7b8c1
fix(obj_scroll): include handle throwing animation in scrolling judment (#7011)
Signed-off-by: mengqingtao1 <mengqingtao1@xiaomi.com>
Co-authored-by: mengqingtao1 <mengqingtao1@xiaomi.com>
2024-10-17 11:57:56 +08:00
Neo Xu
a0d3efed88 chore(doc): add new debugging folder
Now debugging folder includes below tools.
- gdb
- profiler
- logging
- VGLite simulator

Signed-off-by: Neo Xu <neo.xu1990@gmail.com>
2024-10-16 17:19:14 +02:00
Neo Xu
d460edbcac feat(gdb): add lvgl GDB plugin
Usage:
Launch gdb firstly, then execute source path/to/lvgl.py

Or
`gdb bin/main -ex source "scripts/gdb/lvgl.py"`

Currently only "dump obj" and "info style" commands are available.
Usage:
(gdb) dump obj -h
usage: [-h] [-L LEVEL] [root]

Dump lvgl obj tree.

positional arguments:
  root                  Optional root obj to dump.

options:
  -h, --help            show this help message and exit
  -L LEVEL, --level LEVEL
                        Limit the depth of the tree.

Example:
(gdb) dump obj -L 2
Display 0x9e503080
  Screen@0xf5f0a760
  obj@0xf5f0a760 (0,0,639,479)
  Screen@0xf5f0a700
  obj@0xf5f0a700 (0,0,639,479)
    tabview@0xf5f0d100 (0,0,639,479)
    keyboard@0xf3402d20 (0,240,639,479)
    dropdown-list@0xf5f0c620 (0,0,129,129)
  Screen@0xf5f0a6a0
  obj@0xf5f0a6a0 (0,0,639,479)
  Screen@0xf5f0a640
  obj@0xf5f0a640 (0,0,639,479)

(gdb) info style 0x60700000dd10
  32 = {num = 90, ptr = 0x5a, color = {blue = 90 'Z', green = 0 '\000', red = 0 '\000'}}
  158 = {num = 32767, ptr = 0x7fff, color = {blue = 255 '\377', green = 127 '\177', red = 0 '\000'}}
(gdb) p lv_global->disp_default->act_scr
$4 = (lv_obj_t *) 0x60700000dd10
(gdb) info style $4
  32 = {num = 90, ptr = 0x5a, color = {blue = 90 'Z', green = 0 '\000', red = 0 '\000'}}
  158 = {num = 32767, ptr = 0x7fff, color = {blue = 255 '\377', green = 127 '\177', red = 0 '\000'}}
(gdb)

Change-Id: Id73e20a761913fe767308f9ee29ae16fbf4f876c
Signed-off-by: xuxingliang <xuxingliang@xiaomi.com>
2024-10-16 17:19:02 +02:00
VIFEX
f199db383f
fix(tests): fix svg test assert and add missing ref images (#7079)
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
2024-10-16 12:12:45 +02:00
VIFEX
8a9ce07c2a
feat(tests): add log print callback (#7076)
Signed-off-by: pengyiqiang <pengyiqiang@xiaomi.com>
Co-authored-by: pengyiqiang <pengyiqiang@xiaomi.com>
2024-10-16 12:09:49 +02:00
jianglianfang
79b3bf1265
feat(nuttx): add indev cursor display (#7021)
Signed-off-by: jianglianfang <jianglianfang@xiaomi.com>
2024-10-16 11:40:54 +02:00
Liu Yi
55876d4f1e
fix(examples): fix font manager example build error in docs (#7085)
Signed-off-by: lhdjply <lhdjply@126.com>
2024-10-16 10:27:13 +02:00
Victor Wheeler
a286c7c306
fix(docs/README.md): reworked to handle several things (#6992) 2024-10-16 10:16:59 +02:00
VIFEX
a8c8963cdb
chore(docs): fix font manager example index typo (#7083)
Signed-off-by: pengyiqiang <pengyiqiang@xiaomi.com>
Co-authored-by: pengyiqiang <pengyiqiang@xiaomi.com>
2024-10-16 09:17:08 +02:00
Neo Xu
3e66b26130
chore: fix minor compile warnings (#6987)
Signed-off-by: Neo Xu <neo.xu1990@gmail.com>
2024-10-16 11:58:13 +08:00
VIFEX
4f086111a1
docs(font_manager): add documentation and test cases (#7058)
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
Signed-off-by: pengyiqiang <pengyiqiang@xiaomi.com>
Co-authored-by: pengyiqiang <pengyiqiang@xiaomi.com>
2024-10-16 00:34:45 +08:00
Zhang Ji Peng
bbe5f032e6
feat(libs): add SVG rendering support (#6845)
Signed-off-by: zhangjipeng <zhangjipeng@xiaomi.com>
Co-authored-by: zhangjipeng <zhangjipeng@xiaomi.com>
2024-10-15 21:33:27 +08:00
Gabor Kiss-Vamosi
58243733d8
fix(codespace): use lv_conf.defaults to generate lv_conf.h (#7075) 2024-10-15 21:24:33 +08:00
Liam
09d9c575b6
feat(drivers): add STM32 LTDC support (#7059) 2024-10-15 12:05:19 +02:00
VIFEX
4a75a62fe2
chore(test): add missing label_recolor ref images (#7064)
Signed-off-by: pengyiqiang <pengyiqiang@xiaomi.com>
Co-authored-by: pengyiqiang <pengyiqiang@xiaomi.com>
2024-10-15 10:55:47 +08:00
Yobe Zhou
ce52267eb1
docs(scale): fix rst (#7045) 2024-10-14 19:55:17 +02:00
VIFEX
0964feae33
fix(vg_lite): fix thorvg 32bit rendering test coordinate calculation overflow (#7052)
Signed-off-by: pengyiqiang <pengyiqiang@xiaomi.com>
Co-authored-by: pengyiqiang <pengyiqiang@xiaomi.com>
2024-10-14 19:36:08 +02:00
Gabor Kiss-Vamosi
d2ba572e34
feat(demo): add an ebike demo (#7019) 2024-10-14 18:47:47 +02:00
yoshi-ogawa
c68aa7ae88
docs(license): add font license files (#6971)
Signed-off-by: Yoshihito Ogawa <yoshihito.ogawa.kc@renesas.com>
2024-10-14 23:21:00 +08:00
lion2tomato
5081fbcc71
fix(independent_heap): add independent heap enable option (#6953)
Signed-off-by: lijianjun <lijianjun@xiaomi.com>
Co-authored-by: lijianjun <lijianjun@xiaomi.com>
2024-10-14 11:08:46 +02:00
Liam
0efa5f3758
feat(opengl): texture caching (#6861)
Co-authored-by: JWBverheesen <31246830+JWBverheesen@users.noreply.github.com>
2024-10-13 08:17:12 +02:00
Liam
30193c1035
feat(draw): add NemaGFX rendering backend (#7002)
Co-authored-by: Ioannis Markopoulos <Ioannis_Markopoulos@amat.com>
2024-10-13 08:13:56 +02:00
Carlos Diaz
a38e98ef4b
feat(text): add text recolor back (#6966)
Co-authored-by: Benign X <1341398182@qq.com>
2024-10-12 12:16:43 +08:00
Toni Neubert
da58f2c48e
fix(anim_timeline): run animations which do not have an exec cb (#7043) 2024-10-12 12:15:08 +08:00
VIFEX
9d4c26dd73
fix(vg_lite): fix path bonding box coordinate overflow (#7037)
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
2024-10-12 10:04:38 +08:00
VIFEX
58c2ab59b0
fix(vg_lite_tvg): fix shape_set_stroke calling order error (#7039)
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
2024-10-12 10:03:07 +08:00
Gabor Kiss-Vamosi
ebe288dc0f
fix(dave2d): fix dave2d private include issue (#7016) 2024-10-12 10:00:16 +08:00
Gabor Kiss-Vamosi
08d2c34d6c
fix(anim): compensate over time (#6989) 2024-10-12 09:11:07 +08:00
Victor Wheeler
52665bf303
fix(docs): fix error blocking API-doc generation under Windows (#6990) 2024-10-11 21:31:49 +02:00
Gabor Kiss-Vamosi
2466d7ca39
chore: remove UTF-8 BOMs (#6942) 2024-10-11 21:31:35 +02:00
Gabriel
0718a12818
docs(yocto): add guide to integrate lvgl recipe in Yocto (#7024) 2024-10-10 23:01:30 +08:00
VIFEX
9a8b5bd730
feat(vg_lite): add profiler for vg_lite_set_scissor (#7023)
Signed-off-by: pengyiqiang <pengyiqiang@xiaomi.com>
Co-authored-by: pengyiqiang <pengyiqiang@xiaomi.com>
2024-10-10 20:18:20 +08:00
Liam
1cd1c39cb7
fix(scale): horizontal scale sections not visible (#6982) 2024-10-10 13:59:33 +02:00
VIFEX
609e48fe9c
fix(vg_lite_tvg): fix int32 type missmatch (#7022)
Signed-off-by: pengyiqiang <pengyiqiang@xiaomi.com>
Co-authored-by: pengyiqiang <pengyiqiang@xiaomi.com>
2024-10-10 13:55:42 +02:00
lion2tomato
89ec040eb6
fix(png): move png_image_free to just before return NULL (#7020)
Signed-off-by: lijianjun <lijianjun@xiaomi.com>
Co-authored-by: lijianjun <lijianjun@xiaomi.com>
2024-10-10 12:17:25 +08:00
Gabor Kiss-Vamosi
41d37b3f9d
chore(stale): use the correct labels (#7017) 2024-10-10 10:46:49 +08:00
lion2tomato
302c3b65cd
fix(png): fix mem leak in libpng decoder (#6952)
Signed-off-by: lijianjun <lijianjun@xiaomi.com>
Co-authored-by: lijianjun <lijianjun@xiaomi.com>
2024-10-09 21:47:03 +02:00
Narukara
e470349974
docs: fix broken links (#6910) 2024-10-09 19:45:04 +02:00
Gabor Kiss-Vamosi
fc3ee875ab
fix(drivers): add missing includes (#6905) 2024-10-09 17:28:34 +02:00
Benign X
23addd077f chore(iter): add more safe checker and const qualifier 2024-10-09 21:33:13 +08:00
Benign X
b3bf2ab441 refactor(iter): use circle_buf to simplify codes 2024-10-09 21:33:13 +08:00
Benign X
d08d545969 feat(circle_buff): add lv_circle_buf_t component 2024-10-09 21:33:13 +08:00