Home
last modified time | relevance | path

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

/lvgl-latest/examples/scroll/
Dlv_example_scroll_7.c7 static int32_t bottom_num; variable
28 int32_t bottom_num_original = bottom_num; in update_scroll()
31 while(bottom_num > -30 && lv_obj_get_scroll_bottom(obj) < 200) { in update_scroll()
32 bottom_num -= 1; in update_scroll()
33 load_item(obj, bottom_num); in update_scroll()
35 LV_LOG_USER("loaded bottom num: %"PRId32, bottom_num); in update_scroll()
50 bottom_num += 1; in update_scroll()
54 LV_LOG_USER("deleted bottom num: %"PRId32, bottom_num); in update_scroll()
70 if(bottom_num != bottom_num_original) { in update_scroll()
71 lv_label_set_text_fmt(low_label, "current smallest\nloaded value:\n%"PRId32, bottom_num); in update_scroll()
[all …]