What MCU/Processor/Board and compiler are you using?
Custom board
What LVGL version are you using?
V 9.2.2
What do you want to achieve?
I’m running a scrolling message in the screen and for every 2 sec I’m getting this log - “[ 89.086364][ T143] systemd-journald[143]: /dev/kmsg buffer overrun, some messages lost.”
Because of this continuous log for every 2 second, the scrolling message speed is inconsistent!!
What have you tried so far?
I tried enabling and disabling LV_USE_LOG in lv_conf.h but no changes. Thanks.
Code to reproduce
// For first scrolling message
lv_obj_t * label2 = lv_label_create(screenmain);
lv_label_set_long_mode(label2, LV_LABEL_LONG_SCROLL_CIRCULAR); /*Circular scroll*/
lv_obj_set_size(label2, 120, 15);
lv_label_set_text(label2, "It is a circularly scrolling text. ");
lv_obj_align(label2, LV_ALIGN_DEFAULT, 4, 50);
lv_obj_set_style_text_font(label2, &lv_font_montserrat_12, LV_PART_MAIN);
lv_obj_set_style_text_color(label2, lv_color_white(), LV_PART_MAIN);
// For second scrolling message
lv_obj_t * label5 = lv_label_create(screenmain);
lv_label_set_long_mode(label5, LV_LABEL_LONG_SCROLL_CIRCULAR); /*Circular scroll*/
lv_obj_set_size(label5, 120, 15);
lv_label_set_text(label5, "It is a circularly scrolling text. ");
lv_obj_align(label5, LV_ALIGN_DEFAULT, 4, 80);
lv_obj_set_style_text_font(label5, &lv_font_montserrat_12, LV_PART_MAIN);
lv_obj_set_style_text_color(label5, lv_color_white(), LV_PART_MAIN);