Home
last modified time | relevance | path

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

/lvgl-3.6.0/src/misc/
Dlv_log.h121 #ifndef LV_LOG_USER
123 # define LV_LOG_USER(...) _lv_log_add(LV_LOG_LEVEL_USER, __FILE__, __LINE__, __func__, __VA_ARGS… macro
125 # define LV_LOG_USER(...) do {}while(0) macro
145 #define LV_LOG_USER(...) do {}while(0) macro
/lvgl-3.6.0/examples/widgets/btn/
Dlv_example_btn_1.c9 LV_LOG_USER("Clicked"); in event_handler()
12 LV_LOG_USER("Toggled"); in event_handler()
/lvgl-3.6.0/examples/widgets/msgbox/
Dlv_example_msgbox_1.c7 LV_LOG_USER("Button %s clicked", lv_msgbox_get_active_btn_text(obj)); in event_cb()
/lvgl-3.6.0/examples/widgets/dropdown/
Dlv_example_dropdown_1.c11 LV_LOG_USER("Option: %s", buf); in event_handler()
Dlv_example_dropdown_3.c9 LV_LOG_USER("'%s' is selected", buf); in event_cb()
/lvgl-3.6.0/examples/widgets/roller/
Dlv_example_roller_1.c11 LV_LOG_USER("Selected month: %s\n", buf); in event_handler()
Dlv_example_roller_2.c11 LV_LOG_USER("Selected value: %s", buf); in event_handler()
/lvgl-3.6.0/examples/event/
Dlv_example_event_1.c6 LV_LOG_USER("Clicked"); in event_cb()
/lvgl-3.6.0/examples/widgets/btnmatrix/
Dlv_example_btnmatrix_1.c12 LV_LOG_USER("%s was pressed\n", txt); in event_handler()
/lvgl-3.6.0/examples/widgets/win/
Dlv_example_win_1.c8 LV_LOG_USER("Button %d clicked", (int)lv_obj_get_index(obj)); in event_handler()
/lvgl-3.6.0/examples/widgets/switch/
Dlv_example_switch_1.c9 LV_LOG_USER("State: %s\n", lv_obj_has_state(obj, LV_STATE_CHECKED) ? "On" : "Off"); in event_handler()
/lvgl-3.6.0/examples/widgets/calendar/
Dlv_example_calendar_1.c12 LV_LOG_USER("Clicked date: %02d.%02d.%d", date.day, date.month, date.year); in event_handler()
/lvgl-3.6.0/examples/others/gridnav/
Dlv_example_gridnav_4.c9 LV_LOG_USER("Clicked: %s", lv_list_get_btn_text(list, obj)); in event_handler()
/lvgl-3.6.0/examples/widgets/textarea/
Dlv_example_textarea_1.c7 LV_LOG_USER("Enter was pressed. The current text is: %s", lv_textarea_get_text(ta)); in textarea_event_handler()
Dlv_example_textarea_2.c55 LV_LOG_USER("Ready, current text: %s", lv_textarea_get_text(ta)); in ta_event_cb()
/lvgl-3.6.0/examples/widgets/checkbox/
Dlv_example_checkbox_1.c11 LV_LOG_USER("%s: %s", txt, state); in event_handler()
Dlv_example_checkbox_2.c24 LV_LOG_USER("Selected radio buttons: %d, %d", (int)active_index_1, (int)active_index_2); in radio_event_handler()
/lvgl-3.6.0/examples/widgets/list/
Dlv_example_list_1.c10 LV_LOG_USER("Clicked: %s", lv_list_get_btn_text(list1, obj)); in event_handler()
Dlv_example_list_2.c17 LV_LOG_USER("Clicked: %s", lv_list_get_btn_text(list1, obj)); in event_handler()
/lvgl-3.6.0/examples/widgets/chart/
Dlv_example_chart_4.c21 LV_LOG_USER("Selected point %d", (int)id); in event_cb()
/lvgl-3.6.0/docs/porting/
Dlog.md49 - `LV_LOG(text)` is similar to `LV_LOG_USER` but has no extra information attached.
/lvgl-3.6.0/demos/stress/
Dlv_demo_stress.c51LV_LOG_USER("Starting stress test. (< 100 bytes permanent memory leak is normal due to fragmentati… in lv_demo_stress()
92LV_LOG_USER("mem leak since start: %d, frag: %3d %%", mem_free_start - mon.free_size, mon.frag_pc… in obj_test_timer_cb()