Lines Matching +full:lvgl +full:- +full:encoder +full:- +full:input
4 * SPDX-License-Identifier: Apache-2.0
8 #include <lvgl.h>
35 return "encoder"; in lvgl_monkey_indev_as_string()
49 } else if (strcmp(str, "encoder") == 0) { in lvgl_monkey_indev_from_string()
52 return -EINVAL; in lvgl_monkey_indev_from_string()
62 shell_print(sh, "%-4u %-9s %-3s", i, in dump_monkey_info()
90 shell_error(sh, "Invalid monkey input device %s", argv[1]); in cmd_lvgl_monkey_create()
107 return -ENOSPC; in cmd_lvgl_monkey_create()
122 return -ENOEXEC; in cmd_lvgl_monkey_set()
156 if (strcmp(argv[1], "-c") == 0) { in cmd_lvgl_stats_memory()
171 return -ENOTSUP; in cmd_lvgl_stats_memory()
177 "Show LVGL memory statistics\n"
178 "Usage: lvgl stats memory [-c]\n"
179 "-c dump chunk information",
188 "Usage: lvgl monkey create [pointer|keypad|button|encoder]",
192 "Usage: lvgl monkey set <index> <active|inactive>\n",
198 lvgl_cmds, SHELL_CMD(stats, &lvgl_cmd_stats, "Show LVGL statistics", cmd_lvgl_stats),
200 SHELL_CMD(monkey, &lvgl_cmd_monkey, "LVGL monkey testing", cmd_lvgl_monkey),
204 SHELL_CMD_REGISTER(lvgl, &lvgl_cmds, "LVGL shell commands", NULL);