Home
last modified time | relevance | path

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

/lvgl-latest/src/drivers/display/st_ltdc/
Dlv_st_ltdc.c68 } g_data; variable
75 #define SYNC_INIT(layer_idx) lv_thread_sync_init(&g_data.sync[layer_idx])
76 #define SYNC_WAIT(layer_idx) lv_thread_sync_wait(&g_data.sync[layer_idx])
77 #define SYNC_SIGNAL_ISR(layer_idx) lv_thread_sync_signal_isr(&g_data.sync[layer_idx])
79 #define SYNC_INIT(layer_idx) do { g_data.sync[layer_idx] = false; } while(0)
80 …#define SYNC_WAIT(layer_idx) do { while(!g_data.sync[layer_idx]); g_data.sync[layer_idx] = false; …
81 #define SYNC_SIGNAL_ISR(layer_idx) do { g_data.sync[layer_idx] = true; } while(0)
142 g_data.disp_flushed_in_flush_cb[layer_idx] = false; in flush_cb()
147 g_data.layer_interrupt_is_owned[layer_idx] = true; in flush_cb()
151 g_data.disp_flushed_in_flush_cb[layer_idx] = true; in flush_cb()
[all …]