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
This commit is contained in:
parent
12dea795b3
commit
990820d579
|
@ -350,3 +350,4 @@
|
|||
0.3.10 2008-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
|
||||
* Add support for the ZiLOG EZ80Acclaim microcontrooler (EZ80F91 chip).
|
||||
* Add configuration for the ZiLOG z8f64200100kit development kit, Z8F6423 part.
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<tr align="center" bgcolor="#e4e4e4">
|
||||
<td>
|
||||
<h1><big><font color="#3c34ec"><i>NuttX RTOS</i></font></big></h1>
|
||||
<p>Last Updated: March 9, 2008</p>
|
||||
<p>Last Updated: March 10, 2008</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@ -464,7 +464,7 @@
|
|||
These unreleased changes are listed <a href="#pendingchanges">here</a>.
|
||||
</p>
|
||||
<p>
|
||||
nuttx-0.3.8 is a minor feature enhancement release.
|
||||
nuttx-0.3.9 is a minor feature enhancement release.
|
||||
This release includes support for the ZiLOG Z8Encore! microcontroller.
|
||||
Also included is the initial framework for support for the Z80,
|
||||
<a href="http://www.tim-mann.org/xtrs.html">XTRS</a> platform.
|
||||
|
@ -616,8 +616,14 @@
|
|||
<td>
|
||||
<p>
|
||||
<b>Zilog Z8Encore! Microncontroller</b>.
|
||||
This port use the Zilog z8encore000zco development kit, Z8F6403 part, and the Zilog
|
||||
ZDS-II Windows command line tools.
|
||||
This port uses the either:
|
||||
</p>
|
||||
<ul>
|
||||
<li>Zilog z8encore000zco development kit, Z8F6403 part, or</li>
|
||||
<li>Zilog z8f64200100kit development kit, Z8F6423 part</li>
|
||||
</ul>
|
||||
<p>
|
||||
and the Zilog ZDS-II Windows command line tools.
|
||||
The development environment is Cygwin under WinXP.
|
||||
</p>
|
||||
<p>
|
||||
|
@ -981,6 +987,7 @@ buildroot-0.1.0 2007-03-09 <spudmonkey@racsa.co.cr>
|
|||
nuttx-0.3.10 2008-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
|
||||
* Add support for the ZiLOG EZ80Acclaim microcontrooler (EZ80F91 chip).
|
||||
* Add configuration for the ZiLOG z8f64200100kit development kit, Z8F6423 part.
|
||||
|
||||
pascal-0.1.3 2008-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
|
||||
|
|
|
@ -447,8 +447,8 @@
|
|||
</li>
|
||||
|
||||
<li><code>arch/z80/include/z8</code> and <code>arch/z80/src/z8</code>:
|
||||
The Z8Encore! port use the Zilog z8encore000zco
|
||||
development kit, Z8F6403 part, and the Zilog ZDS-II Windows command line
|
||||
The Z8Encore! port uses either the ZiLOG z8encore000zco development kit, Z8F6403 part,
|
||||
or the z8f64200100kit development kit, Z8F6423 part with the Zilog ZDS-II Windows command line
|
||||
tools. The development environment is Cygwin under WinXP.
|
||||
This port is in progress and will be released in a future NuttX release.
|
||||
</li>
|
||||
|
@ -656,6 +656,12 @@
|
|||
tools. The development environment is Cygwin under WinXP.
|
||||
</li>
|
||||
|
||||
<li><code>configs/z8encore000zco</code>
|
||||
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.
|
||||
</li>
|
||||
|
||||
<li><code>configs/z80sim</code>:
|
||||
z80 Microcontroller. This port uses a Z80 instruction set simulator.
|
||||
That simulator can be found in the NuttX CVS
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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).
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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> */
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue