Documentation/guides: Fix typos in port_arm_cm4.rst
Some checks are pending
Build Documentation / build-html (push) Waiting to run

This patch fixes spelling typos in port_arm_cm4.rst
This commit is contained in:
Masanari Iida 2024-12-21 12:15:04 +09:00 committed by Lup Yuen Lee
parent 3f1d10e172
commit f662cd60d0

View file

@ -85,7 +85,7 @@ And you can do distclean by following command.
Step4 : Compile Step4 : Compile
--------------- ---------------
Try to buid with the implementation of Step1-2, you would face the error as following Try to build with the implementation of Step1-2, you would face the error as following
if you implemented only directory / Kconfig / Make.defs / Makefile / defconfig about Step1-2. if you implemented only directory / Kconfig / Make.defs / Makefile / defconfig about Step1-2.
.. code-block:: .. code-block::
@ -178,7 +178,7 @@ Step6 : Implement
----------------- -----------------
There are some implementation items, major items are bellow listed. To pass the Linking, There are some implementation items, major items are bellow listed. To pass the Linking,
try to implement these symboles. try to implement these symbols.
+-----------------+------------------------+--------------------------------------------------------------------+ +-----------------+------------------------+--------------------------------------------------------------------+
| Category | Item | Comment | | Category | Item | Comment |
@ -201,7 +201,7 @@ try to implement these symboles.
.. _apache/nuttx/pull/12441: https://github.com/apache/nuttx/pull/12441 .. _apache/nuttx/pull/12441: https://github.com/apache/nuttx/pull/12441
.. _sched/Kconfig: https://github.com/apache/nuttx/blob/master/sched/Kconfig .. _sched/Kconfig: https://github.com/apache/nuttx/blob/master/sched/Kconfig
If got the pass of Linking, you would see follwoing result. If got the pass of Linking, you would see following result.
.. code-block:: .. code-block::
@ -216,7 +216,7 @@ If got the pass of Linking, you would see follwoing result.
Step7 : Verify Step7 : Verify
-------------- --------------
To execute and debug on the evalutaion board, add following configurations. To execute and debug on the evaluation board, add following configurations.
.. code-block:: .. code-block::
@ -232,7 +232,7 @@ If your implementations were good, you would see following logs.
nsh> nsh>
nsh> nsh>
After comfirming to boot NuttShell(NSH), try to execute "apps/testing/ostest". After confirming to boot NuttShell(NSH), try to execute "apps/testing/ostest".
The "apps/testing/ostest" needs following configurations. The "apps/testing/ostest" needs following configurations.
.. code-block:: .. code-block::
@ -242,7 +242,7 @@ The "apps/testing/ostest" needs following configurations.
CONFIG_SCHED_WAITPID=y CONFIG_SCHED_WAITPID=y
CONFIG_TESTING_OSTEST=y CONFIG_TESTING_OSTEST=y
And one more test is recomended to check the timer implementation whether And one more test is recommended to check the timer implementation whether
the kernel could count the time accurately or not. the kernel could count the time accurately or not.
I checked it by following code. About the function : cxd32_timerget(), I checked it by following code. About the function : cxd32_timerget(),
see `apache/nuttx/pull/12441`_ see `apache/nuttx/pull/12441`_
@ -406,7 +406,7 @@ Appendix : out-of-tree code
+ string "Program name" + string "Program name"
+ default "time" + default "time"
+ ---help--- + ---help---
+ This apps measures the elasped time of sleep system call to confirm the timer implementation. + This apps measures the elapsed time of sleep system call to confirm the timer implementation.
+ +
+config CXD32XX_APPS_TIME_PRIORITY +config CXD32XX_APPS_TIME_PRIORITY
+ int "CXD32XX Time task priority" + int "CXD32XX Time task priority"
@ -478,7 +478,7 @@ Appendix : out-of-tree code
+ uint32_t pre; + uint32_t pre;
+ uint32_t post; + uint32_t post;
+ +
+ printf("measures the elasped time of sleep system call to confirm \ + printf("measures the elapsed time of sleep system call to confirm \
+ the timer implementation.\n"); + the timer implementation.\n");
+ +
+ pre = cxd32_timerget(); + pre = cxd32_timerget();