This is an automated email from the ASF dual-hosted git repository.

acassis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new 850ac5ca638 Documentation/hpm6360evk: improve readability
850ac5ca638 is described below

commit 850ac5ca638b298fbb7031c70d7758477e0c5227
Author: Alin Jerpelea <[email protected]>
AuthorDate: Thu Aug 13 13:34:41 2026 +0200

    Documentation/hpm6360evk: improve readability
    
    separate code sections for better readability
    
    Signed-off-by: Alin Jerpelea <[email protected]>
---
 .../risc-v/hpm6000/boards/hpm6360evk/index.rst     | 35 +++++++++++-----------
 1 file changed, 17 insertions(+), 18 deletions(-)

diff --git a/Documentation/platforms/risc-v/hpm6000/boards/hpm6360evk/index.rst 
b/Documentation/platforms/risc-v/hpm6000/boards/hpm6360evk/index.rst
index cf9823f5cc6..78cfac80392 100644
--- a/Documentation/platforms/risc-v/hpm6000/boards/hpm6360evk/index.rst
+++ b/Documentation/platforms/risc-v/hpm6000/boards/hpm6360evk/index.rst
@@ -4,29 +4,28 @@ hpm6360evk
 
 1. Download and install toolchain::
 
-     $wget 
https://github.com/hpmicro/riscv-gnu-toolchain/releases/download/2022.05.15/riscv32-unknown-elf-newlib-multilib_2022.05.15_linux.tar.gz
+    $ wget 
https://github.com/hpmicro/riscv-gnu-toolchain/releases/download/2022.05.15/riscv32-unknown-elf-newlib-multilib_2022.05.15_linux.tar.gz
 
-     $tar xf riscv32-unknown-elf-newlib-multilib_2022.05.15_linux.tar.gz
+    $ tar xf riscv32-unknown-elf-newlib-multilib_2022.05.15_linux.tar.gz
 
-     $export PATH=$PATH:/<path to 
compiler>/riscv32-unknown-elf-newlib-multilib/bin/
+    $ export PATH=$PATH:/<path to 
compiler>/riscv32-unknown-elf-newlib-multilib/bin/
 
-   Make sure HPMicro GNU riscv32 toolchain have been installed and be found in 
PATH.
+   NOTE: Make sure HPMicro GNU riscv32 toolchain have been installed and be 
found in PATH.::
 
-     $riscv32-unknown-elf-gcc -v
+    $ riscv32-unknown-elf-gcc -v
+    gcc version 11.1.0 (g5964b5cd727)
 
-     gcc version 11.1.0 (g5964b5cd727)
+2. Configure and build NuttX::
 
-2. Configure and build NuttX:
-
-     mkdir ./nuttxspace
-     cd ./nuttxspace
-     git clone https://github.com/apache/nuttx.git nuttx
-     git clone https://github.com/apache/nuttx-apps.git apps
-     cd nuttx
-     make distclean
-     ./tools/configure.sh hpm6750evk2:nsh
-     make menuconfig
-     make V=1
+    $ mkdir ./nuttxspace
+    $ cd ./nuttxspace
+    $ git clone https://github.com/apache/nuttx.git nuttx
+    $ git clone https://github.com/apache/nuttx-apps.git apps
+    $ cd nuttx
+    $ make distclean
+    $ ./tools/configure.sh hpm6750evk2:nsh
+    $ make menuconfig
+    $ make V=1
 
 3. Download and install openocd::
 
@@ -35,7 +34,7 @@ hpm6360evk
 
 4. Debug the NuttX with openocd::
 
-     picocom -b 115200 /dev/ttyACM0
+    picocom -b 115200 /dev/ttyACM0
 
   When using fireDAP, command as follows. Those cfg files in the path: 
``sdk_env/hpm_sdk/boards/openocd``::
 

Reply via email to