I have got a weird issue with the label text. If set the “Hello World”, the label shows only “Hello”.
For the “Hello_World”, shows “Hello_”,
For the “HelloWorld”, is okay.
The code is simple, I am using ZephyrRTOS v2.3, so it uses LVGL v6.
lv_obj_t *label = lv_label_create(lv_scr_act(), NULL);
lv_label_set_static_text(label, "Hello World");
What am I missing?
Thanks.