Home
last modified time | relevance | path

Searched refs:mutex (Results 1 – 3 of 3) sorted by relevance

/lvgl-3.4.0/docs/porting/
Dos.md15 If you need to use real tasks or threads, you need a mutex which should be invoked before the call …
16 Also, you have to use the same mutex in other tasks and threads around every LVGL (`lv_...`) relate…
17 This way you can use LVGL in a real multitasking environment. Just make use of a mutex to avoid the…
36 /* You must always hold the mutex while using LVGL APIs */
/lvgl-3.4.0/src/core/
Dlv_obj_pos.c300 static bool mutex = false; in lv_obj_update_layout() local
301 if(mutex) { in lv_obj_update_layout()
305 mutex = true; in lv_obj_update_layout()
317 mutex = false; in lv_obj_update_layout()
/lvgl-3.4.0/docs/intro/
Dindex.md159 - Be sure you used a mutex as [described here](/porting/os)
221 …an interrupt each other (preemptively) you should protect LVGL related function calls with a mutex.