summaryrefslogtreecommitdiff
path: root/nuttx/configs
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-03-10 23:37:56 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-03-10 23:37:56 +0000
commit5774d10323df56f4c38687021f40abecec6ac2b8 (patch)
treeca171439f1b3eca225e1bc02f862649301d515d1 /nuttx/configs
parent549c9f29cd39ae8cd151e92d77877a7609176dc2 (diff)
downloadpx4-nuttx-5774d10323df56f4c38687021f40abecec6ac2b8.tar.gz
px4-nuttx-5774d10323df56f4c38687021f40abecec6ac2b8.tar.bz2
px4-nuttx-5774d10323df56f4c38687021f40abecec6ac2b8.zip
Fixed of Z8F6423 -- still doesn't like correctly
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@732 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs')
-rw-r--r--nuttx/configs/README.txt5
-rw-r--r--nuttx/configs/z8encore000zco/include/board.h2
-rw-r--r--nuttx/configs/z8encore000zco/ostest/defconfig4
-rw-r--r--nuttx/configs/z8f64200100kit/README.txt10
-rw-r--r--nuttx/configs/z8f64200100kit/include/board.h2
-rw-r--r--nuttx/configs/z8f64200100kit/ostest/Make.defs4
-rw-r--r--nuttx/configs/z8f64200100kit/ostest/defconfig6
-rwxr-xr-xnuttx/configs/z8f64200100kit/ostest/ostest.linkcmd2
-rwxr-xr-xnuttx/configs/z8f64200100kit/ostest/setenv.sh2
-rw-r--r--nuttx/configs/z8f64200100kit/src/Makefile2
-rw-r--r--nuttx/configs/z8f64200100kit/src/z8_leds.c2
-rw-r--r--nuttx/configs/z8f64200100kit/src/z8_lowinit.c2
12 files changed, 24 insertions, 19 deletions
diff --git a/nuttx/configs/README.txt b/nuttx/configs/README.txt
index 3f5f563fb..9d1e5bae3 100644
--- a/nuttx/configs/README.txt
+++ b/nuttx/configs/README.txt
@@ -348,6 +348,11 @@ configs/z8encore000zco
development kit, Z8F6403 part, and the Zilog ZDS-II Windows command line
tools. The development environment is Cygwin under WinXP.
+configs/z8f64200100kit
+ z8Encore! Microcontroller. This port use the Zilog z8f64200100kit
+ development kit, Z8F6423 part, and the Zilog ZDS-II Windows command line
+ tools. The development environment is Cygwin under WinXP.
+
configs/z80sim
z80 Microcontroller. This port uses a Z80 instruction set simulator.
That simulator can be found in the NuttX CVS at
diff --git a/nuttx/configs/z8encore000zco/include/board.h b/nuttx/configs/z8encore000zco/include/board.h
index 64632bee4..dca9ca7d8 100644
--- a/nuttx/configs/z8encore000zco/include/board.h
+++ b/nuttx/configs/z8encore000zco/include/board.h
@@ -1,5 +1,5 @@
/****************************************************************************
- * arch/z8encore000zco/iclude/board.h
+ * arch/z8encore000zco/include/board.h
*
* Copyright (C) 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
diff --git a/nuttx/configs/z8encore000zco/ostest/defconfig b/nuttx/configs/z8encore000zco/ostest/defconfig
index 0725f16ec..8a8083b30 100644
--- a/nuttx/configs/z8encore000zco/ostest/defconfig
+++ b/nuttx/configs/z8encore000zco/ostest/defconfig
@@ -38,7 +38,7 @@
# CONFIG_ARCH - identifies the arch subdirectory and, hence, the
# processor architecture.
# CONFIG_ARCH_name - for use in C code. This identifies the particular
-# processor architecture (CONFIG_ARCH_Z16).
+# processor architecture (CONFIG_ARCH_Z8).
# CONFIG_ARCH_CHIP - Identifies the specific chip or SoC that implements the
# architecture.
# CONFIG_ARCH_CHIP_chip - for use in C code. This identifies the
@@ -71,7 +71,7 @@ CONFIG_ENDIAN_BIG=y
CONFIG_DRAM_SIZE=65536
CONFIG_ARCH_LEDS=n
#
-# Z16F specific device driver settings
+# eZ8 specific device driver settings
#
# CONFIG_UARTn_SERIAL_CONSOLE - selects the UARTn for the
# console and ttyS0 (default is the UART0).
diff --git a/nuttx/configs/z8f64200100kit/README.txt b/nuttx/configs/z8f64200100kit/README.txt
index 92f5b5598..afe647565 100644
--- a/nuttx/configs/z8f64200100kit/README.txt
+++ b/nuttx/configs/z8f64200100kit/README.txt
@@ -30,22 +30,22 @@ ZDS-II Compiler Versions
Other Versions
If you use any version of ZDS-II other than 4.10.1 or if you install ZDS-II
at any location other than the default location, you will have to modify
- two files: (1) configs/z8f4200100kit/*/setenv.sh and (2)
- configs/z8f4200100kit/*/Make.defs.
+ two files: (1) configs/z8f64200100kit/*/setenv.sh and (2)
+ configs/z8f64200100kit/*/Make.defs.
Configuration Subdirectories
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- src/ and include/
- These directories contain common logic for all z8f4200100kit
+ These directories contain common logic for all z8f64200100kit
configurations.
-Variations on the basic z8f4200100kit configuration are maintained
+Variations on the basic z8f64200100kit configuration are maintained
in subdirectories. To configure any specific configuration, do the
following steps:
cd <nuttx-top-directory>/tools
- ./configure.sh z8f4200100kit/<sub-directory>
+ ./configure.sh z8f64200100kit/<sub-directory>
cd <nuttx-top-directgory>
make
diff --git a/nuttx/configs/z8f64200100kit/include/board.h b/nuttx/configs/z8f64200100kit/include/board.h
index 8a326ab13..0b87c7c8b 100644
--- a/nuttx/configs/z8f64200100kit/include/board.h
+++ b/nuttx/configs/z8f64200100kit/include/board.h
@@ -1,5 +1,5 @@
/****************************************************************************
- * arch/z8f4200100kit/include/board.h
+ * arch/z8f64200100kit/include/board.h
*
* Copyright (C) 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
diff --git a/nuttx/configs/z8f64200100kit/ostest/Make.defs b/nuttx/configs/z8f64200100kit/ostest/Make.defs
index 9c0e6ac11..8e2c0fa1e 100644
--- a/nuttx/configs/z8f64200100kit/ostest/Make.defs
+++ b/nuttx/configs/z8f64200100kit/ostest/Make.defs
@@ -1,5 +1,5 @@
############################################################################
-# configs/z8f4200100kit/ostest/Make.defs
+# configs/z8f64200100kit/ostest/Make.defs
#
# Copyright (C) 2008 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <spudmonkey@racsa.co.cr>
@@ -133,7 +133,7 @@ ARFLAGS = -quiet -warn
# Linker definitions
-LINKCMDTEMPLATE = $(TOPDIR)/configs/z8f4200100kit/ostest/ostest.linkcmd
+LINKCMDTEMPLATE = $(TOPDIR)/configs/z8f64200100kit/ostest/ostest.linkcmd
# Tool names/pathes
diff --git a/nuttx/configs/z8f64200100kit/ostest/defconfig b/nuttx/configs/z8f64200100kit/ostest/defconfig
index fb0ce85d0..c7ed5aa40 100644
--- a/nuttx/configs/z8f64200100kit/ostest/defconfig
+++ b/nuttx/configs/z8f64200100kit/ostest/defconfig
@@ -1,5 +1,5 @@
############################################################################
-# configs/z8f4200100kit/ostest/defconfig
+# configs/z8f64200100kit/ostest/defconfig
#
# Copyright (C) 2008 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <spudmonkey@racsa.co.cr>
@@ -64,8 +64,8 @@ CONFIG_ARCH_CHIP_Z8F640X=n
CONFIG_ARCH_CHIP_Z8F6403=n
CONFIG_ARCH_CHIP_Z8F642X=y
CONFIG_ARCH_CHIP_Z8F6423=y
-CONFIG_ARCH_BOARD=z8f4200100kit
-CONFIG_ARCH_BOARD_Z8F4200100KIT=y
+CONFIG_ARCH_BOARD=z8f64200100kit
+CONFIG_ARCH_BOARD_Z8F64200100KIT=y
CONFIG_BOARD_LOOPSPERMSEC=1250
CONFIG_ENDIAN_BIG=y
CONFIG_DRAM_SIZE=65536
diff --git a/nuttx/configs/z8f64200100kit/ostest/ostest.linkcmd b/nuttx/configs/z8f64200100kit/ostest/ostest.linkcmd
index bf84789d5..dde246220 100755
--- a/nuttx/configs/z8f64200100kit/ostest/ostest.linkcmd
+++ b/nuttx/configs/z8f64200100kit/ostest/ostest.linkcmd
@@ -1,5 +1,5 @@
/****************************************************************************/
-/* configs/z8f4200100kit/ostest/ostest.linkcmd */
+/* configs/z8f64200100kit/ostest/ostest.linkcmd */
/* */
/* Copyright (C) 2008 Gregory Nutt. All rights reserved. */
/* Author: Gregory Nutt <spudmonkey@racsa.co.cr> */
diff --git a/nuttx/configs/z8f64200100kit/ostest/setenv.sh b/nuttx/configs/z8f64200100kit/ostest/setenv.sh
index eded14489..1c4e29504 100755
--- a/nuttx/configs/z8f64200100kit/ostest/setenv.sh
+++ b/nuttx/configs/z8f64200100kit/ostest/setenv.sh
@@ -1,5 +1,5 @@
#!/bin/bash
-# configs/z8f4200100kit/ostest/setenv.sh
+# configs/z8f64200100kit/ostest/setenv.sh
#
# Copyright (C) 2008 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <spudmonkey@racsa.co.cr>
diff --git a/nuttx/configs/z8f64200100kit/src/Makefile b/nuttx/configs/z8f64200100kit/src/Makefile
index 177705b45..cb7c22108 100644
--- a/nuttx/configs/z8f64200100kit/src/Makefile
+++ b/nuttx/configs/z8f64200100kit/src/Makefile
@@ -1,5 +1,5 @@
############################################################################
-# configs/z8f4200100kit/Makefile
+# configs/z8f64200100kit/Makefile
#
# Copyright (C) 2008 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <spudmonkey@racsa.co.cr>
diff --git a/nuttx/configs/z8f64200100kit/src/z8_leds.c b/nuttx/configs/z8f64200100kit/src/z8_leds.c
index d1cdd935a..9b7e9cd88 100644
--- a/nuttx/configs/z8f64200100kit/src/z8_leds.c
+++ b/nuttx/configs/z8f64200100kit/src/z8_leds.c
@@ -1,5 +1,5 @@
/****************************************************************************
- * configs/z8f4200100kit/src/z8_leds.c
+ * configs/z8f64200100kit/src/z8_leds.c
*
* Copyright (C) 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
diff --git a/nuttx/configs/z8f64200100kit/src/z8_lowinit.c b/nuttx/configs/z8f64200100kit/src/z8_lowinit.c
index c2faefd3f..3cafe63b3 100644
--- a/nuttx/configs/z8f64200100kit/src/z8_lowinit.c
+++ b/nuttx/configs/z8f64200100kit/src/z8_lowinit.c
@@ -1,5 +1,5 @@
/***************************************************************************
- * configs/z8f4200100kit/src/z8_lowinit.c
+ * configs/z8f64200100kit/src/z8_lowinit.c
*
* Copyright (C) 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>