summaryrefslogtreecommitdiff
path: root/nuttx/configs/16z/nsh
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/16z/nsh')
-rw-r--r--nuttx/configs/16z/nsh/README.txt11
-rwxr-xr-xnuttx/configs/16z/nsh/setenv.sh18
2 files changed, 18 insertions, 11 deletions
diff --git a/nuttx/configs/16z/nsh/README.txt b/nuttx/configs/16z/nsh/README.txt
index 8280f9801..b772f43a9 100644
--- a/nuttx/configs/16z/nsh/README.txt
+++ b/nuttx/configs/16z/nsh/README.txt
@@ -39,11 +39,12 @@ Interaction with NSH is via the serial console at 57600 8N1 baud.
STATUS
------
-1. This configuration does not run correctly. There is a problem with the
- serial driver. When started, some garbled characters appear on the
- console. I suspect (a) the UART is not being configured correctly, and
- (2) UART interrupts are not be set up correctly.
+1. Note that you must apply the ZNEO patch if you are using ZDS-II 5.0.1.
+ See the README.txt file in the parent directory for more information.
-2. I bet that this code, like ostest, will not run if started by a hardware
+2. This configuration does not run correctly. There is currently a problem
+ with the SRAM accesses.
+
+3. I bet that this code, like ostest, will not run if started by a hardware
reset. It may only run when started via the debugger.
diff --git a/nuttx/configs/16z/nsh/setenv.sh b/nuttx/configs/16z/nsh/setenv.sh
index 5f7d58314..462be15d6 100755
--- a/nuttx/configs/16z/nsh/setenv.sh
+++ b/nuttx/configs/16z/nsh/setenv.sh
@@ -50,15 +50,21 @@ if [ -z "${PATH_ORIG}" ]; then
fi
#
-# This is the Cygwin path to location where the XDS-II tools were installed
+# This is the Cygwin path to location where the ZDS-II tools were installed
#
TOOLCHAIN_BIN="/cygdrive/c/Program Files (x86)/ZiLOG/ZDSII_ZNEO_5.0.1/bin"
#
-# Add the path to the toolchain to the PATH variable. NOTE that /bin and /usr/bin
-# preceded the toolchain bin directory. This is because the ZDSII bin directory
-# includes binaries like make.exe that will interfere with the normal build process
-# if we do not give priority to the versions at /bin and /usr/bin.
+# This is the path to the 16z tool directory
#
-export PATH="/bin:/usr/bin:${TOOLCHAIN_BIN}:/sbin:/usr/sbin:${PATH_ORIG}"
+TOOL_DIR="${WD}/configs/16z/tools"
+
+#
+# Add the path to the toolchain and tool directory to the PATH variable. NOTE
+# that /bin and /usr/bin preceded the toolchain bin directory. This is because
+# the ZDSII bin directory includes binaries like make.exe that will interfere
+# with the normal build process if we do not give priority to the versions at
+# /bin and /usr/bin.
+#
+export PATH="/bin:/usr/bin:${TOOLCHAIN_BIN}:${TOOL_DIR}:/sbin:/usr/sbin:${PATH_ORIG}"
echo "PATH : ${PATH}"