This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
from 1820d7d2c build(deps): bump actions/checkout from 4 to 5 new 7a2d5bbc6 apps/graphics: Add input generator library new 7bfd5e579 apps/system: Move input/monkey to apps/graphics/input new 36b117c00 apps/graphics: Refactor monkey using input generator library new 6f93e401a apps/graphics: Refactor the input tool using input generator library new fdf6f57d6 graphics/input: Adjust input tool priority and sampling rate The 5 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: {system/zmodem => graphics/input}/CMakeLists.txt | 48 +- graphics/input/Kconfig | 61 +++ {audioutils/lame => graphics/input}/Make.defs | 6 +- {examples/foc => graphics/input}/Makefile | 50 +- {system/input => graphics/input/generator}/input.c | 313 ++++++----- graphics/input/generator/input_gen_ctx.c | 304 +++++++++++ graphics/input/generator/input_gen_dev.c | 228 ++++++++ graphics/input/generator/input_gen_event.c | 578 +++++++++++++++++++++ .../input/generator/input_gen_internal.h | 153 +++--- {system => graphics/input}/monkey/monkey.c | 39 +- {system => graphics/input}/monkey/monkey.h | 8 +- {system => graphics/input}/monkey/monkey_assert.h | 8 +- {system => graphics/input}/monkey/monkey_dev.c | 87 ++-- {system => graphics/input}/monkey/monkey_dev.h | 10 +- {system => graphics/input}/monkey/monkey_event.c | 93 +--- {system => graphics/input}/monkey/monkey_event.h | 8 +- {system => graphics/input}/monkey/monkey_log.c | 2 +- {system => graphics/input}/monkey/monkey_log.h | 8 +- {system => graphics/input}/monkey/monkey_main.c | 6 +- {system => graphics/input}/monkey/monkey_proc.c | 50 +- .../input}/monkey/monkey_recorder.c | 2 +- .../input}/monkey/monkey_recorder.h | 8 +- {system => graphics/input}/monkey/monkey_type.h | 10 +- {system => graphics/input}/monkey/monkey_utils.c | 44 +- {system => graphics/input}/monkey/monkey_utils.h | 14 +- include/graphics/input_gen.h | 304 +++++++++++ system/input/CMakeLists.txt | 35 -- system/input/Kconfig | 28 - system/input/Make.defs | 25 - system/input/Makefile | 32 -- system/monkey/CMakeLists.txt | 38 -- system/monkey/Kconfig | 27 - system/monkey/Make.defs | 25 - system/monkey/Makefile | 36 -- 34 files changed, 1901 insertions(+), 787 deletions(-) copy {system/zmodem => graphics/input}/CMakeLists.txt (56%) create mode 100644 graphics/input/Kconfig copy {audioutils/lame => graphics/input}/Make.defs (89%) copy {examples/foc => graphics/input}/Makefile (59%) rename {system/input => graphics/input/generator}/input.c (52%) create mode 100644 graphics/input/generator/input_gen_ctx.c create mode 100644 graphics/input/generator/input_gen_dev.c create mode 100644 graphics/input/generator/input_gen_event.c copy include/netutils/ntpclient.h => graphics/input/generator/input_gen_internal.h (54%) rename {system => graphics/input}/monkey/monkey.c (79%) rename {system => graphics/input}/monkey/monkey.h (95%) rename {system => graphics/input}/monkey/monkey_assert.h (87%) rename {system => graphics/input}/monkey/monkey_dev.c (81%) rename {system => graphics/input}/monkey/monkey_dev.h (93%) rename {system => graphics/input}/monkey/monkey_event.c (65%) rename {system => graphics/input}/monkey/monkey_event.h (92%) rename {system => graphics/input}/monkey/monkey_log.c (98%) rename {system => graphics/input}/monkey/monkey_log.h (94%) rename {system => graphics/input}/monkey/monkey_main.c (99%) rename {system => graphics/input}/monkey/monkey_proc.c (87%) rename {system => graphics/input}/monkey/monkey_recorder.c (99%) rename {system => graphics/input}/monkey/monkey_recorder.h (94%) rename {system => graphics/input}/monkey/monkey_type.h (92%) rename {system => graphics/input}/monkey/monkey_utils.c (86%) rename {system => graphics/input}/monkey/monkey_utils.h (89%) create mode 100644 include/graphics/input_gen.h delete mode 100644 system/input/CMakeLists.txt delete mode 100644 system/input/Kconfig delete mode 100644 system/input/Make.defs delete mode 100644 system/input/Makefile delete mode 100644 system/monkey/CMakeLists.txt delete mode 100644 system/monkey/Kconfig delete mode 100644 system/monkey/Make.defs delete mode 100644 system/monkey/Makefile