Searched refs:mutex (Results 1 – 3 of 3) sorted by relevance
11 If you need to use real tasks or threads, you need a mutex which should be invoked before the call …12 Also, you have to use the same mutex in other tasks and threads around every LVGL (`lv_...`) relate…13 This way you can use LVGL in a real multitasking environment. Just make use of a mutex to avoid the…32 /* You must always hold the mutex while using LVGL APIs */
303 static bool mutex = false; in lv_obj_update_layout() local304 if(mutex) { in lv_obj_update_layout()308 mutex = true; in lv_obj_update_layout()320 mutex = false; in lv_obj_update_layout()
152 - Be sure you used a mutex as [described here](/porting/os)214 …an interrupt each other (preemptively) you should protect LVGL related function calls with a mutex.