This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push: new 7c7841b graphics/nxwidgets: Change CONFIG_USER_ENTRYPOINT to CONFIG_INIT_ENTRYPOINT 7c7841b is described below commit 7c7841b53fb9997320d548fadea908e9913d5827 Author: chao.an <anc...@xiaomi.com> AuthorDate: Sat Dec 25 18:05:15 2021 +0800 graphics/nxwidgets: Change CONFIG_USER_ENTRYPOINT to CONFIG_INIT_ENTRYPOINT Signed-off-by: chao.an <anc...@xiaomi.com> --- graphics/nxwidgets/UnitTests/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/graphics/nxwidgets/UnitTests/README.md b/graphics/nxwidgets/UnitTests/README.md index d376801..13cb7ce 100644 --- a/graphics/nxwidgets/UnitTests/README.md +++ b/graphics/nxwidgets/UnitTests/README.md @@ -120,7 +120,7 @@ NXWidgets.: see that setting like: ```conf - CONFIG_USER_ENTRYPOINT="nsh_main" + CONFIG_INIT_ENTRYPOINT="nsh_main" ``` If you are not using in NSH, then each unit test has a unique entry point. @@ -129,13 +129,13 @@ NXWidgets.: `UnitTests/CButton` would be: ```conf - CONFIG_USER_ENTRYPOINT="cbutton_main" + CONFIG_INIT_ENTRYPOINT="cbutton_main" ``` And the correct entry point for `UnitTests/nxwm` would be: ```conf - CONFIG_USER_ENTRYPOINT="nxwm_main" + CONFIG_INIT_ENTRYPOINT="nxwm_main" ``` etc.