Searched refs:mutex (Results 1 – 3 of 3) sorted by relevance
15 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 */
300 static bool mutex = false; in lv_obj_update_layout() local301 if(mutex) { in lv_obj_update_layout()305 mutex = true; in lv_obj_update_layout()317 mutex = false; in lv_obj_update_layout()
159 - 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.