After review, the program has been changed as follows.
===================================================================
add A label that includes clickable flag to screen.
when this label is pressed, update List items.
1. clear List items. [ lv_obj_clean(guider_ui.list_1); ]
2. add items to List. [guider_ui.items[i] =lv_list_add_btn(guider_ui.list_1, LV_SYMBOL_**, &f_names[i][0]);]
3. add event to items. [ v_obj_add_event_cb(guider_ui.items[i], **_handler, **, ** ):]
add event send function for changing List items. [ lv_event_send(guider_ui.list_1, LV_EVENT_PRESSES, &***): ]
===================================================================
when I want to change List items from Tasks other than lv_task_handler, I call the function( lv_event_send() ).
it seems to be working properly.
( From other Tasks, directly updating the list items causes a hang-up. so I do this procedure.)
my question is
From any Tasks other than lv_task_handler, How to change the text ,screen, etc.
the function that changes the text, screen and so on is called in event handler.
the event handler is called in lv_task_handler.
I want to change display widgets from another Tasks.
Best Regards.
@syoshida