2008-01-09 22:53:52 +00:00
|
|
|
README.txt
|
|
|
|
^^^^^^^^^^
|
|
|
|
|
2010-10-01 01:07:04 +00:00
|
|
|
This is the README file for the NuttX port to the ZiLog ZNEO MCU.
|
|
|
|
|
2008-01-10 18:16:20 +00:00
|
|
|
ZDS-II Compiler Versions
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2008-02-07 14:41:11 +00:00
|
|
|
4.10.2
|
|
|
|
The ZDS-II version 4.10.2 will not compile NuttX. It reports "internal
|
|
|
|
errors" on some of the files. Upgrades to ZDS-II are available for
|
|
|
|
download from the Zilog website: http://www.zilog.com/software/zds2.asp
|
2008-01-09 22:53:52 +00:00
|
|
|
|
2008-02-07 14:41:11 +00:00
|
|
|
4.11.0
|
|
|
|
NuttX compiles correctly with the newer 4.11.0 version of the ZDS-II
|
|
|
|
toolchain. However, I have found a few issues:
|
|
|
|
|
|
|
|
- The code will not run without the -reduceopt option. There is,
|
|
|
|
apparently, some optimization related issue. This issue has not
|
|
|
|
been analyzed as of this writing.
|
|
|
|
|
|
|
|
- Not all NuttX logic will not run with the -regvars option. There is
|
|
|
|
at least one failure that has been reported to ZiLOG as incident 81400.
|
|
|
|
|
|
|
|
- The Pascal add-on interpreter includes a large switch statement and
|
|
|
|
exposes another compiler problem. This is reported as incident 81459.
|
2008-01-09 22:53:52 +00:00
|
|
|
|
2010-10-01 01:07:04 +00:00
|
|
|
4.11.1
|
|
|
|
As of this writing (30 September 2010), the latest release of ZDS-II for the
|
|
|
|
ZNEO is 4.11.1. It is unknown if this release includes fixes for incidents
|
|
|
|
81400 and 81459 or not. It is unknown if the code will run without -reduceopt
|
|
|
|
either. (Basically, it compiles with 4.11.1, but is untested with that version).
|
|
|
|
|
|
|
|
If you use any version of ZDS-II other than 4.11.1 or if you install ZDS-II
|
2008-02-07 14:41:11 +00:00
|
|
|
at any location other than the default location, you will have to modify
|
2008-01-10 18:16:20 +00:00
|
|
|
two files: (1) configs/z16f2800100zcog/*/setenv.sh and (2)
|
2010-10-01 01:07:04 +00:00
|
|
|
configs/z16f2800100zcog/*/Make.defs. Simply edit these two files, changing
|
|
|
|
4.11.1 to whatever.
|
2008-01-10 18:16:20 +00:00
|
|
|
|
|
|
|
Configuration Subdirectories
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
- source/ and include/
|
|
|
|
These directories contain common logic for all z16f2800100zcog
|
|
|
|
configurations.
|
|
|
|
|
|
|
|
Variations on the basic z8f162800100zcog configuration are maintained
|
|
|
|
in subdirectories. To configure any specific configuration, do the
|
|
|
|
following steps:
|
|
|
|
|
|
|
|
cd <nuttx-top-directory>/tools
|
|
|
|
./configure.sh z16f2800100zcog/<sub-directory>
|
2010-10-01 01:07:04 +00:00
|
|
|
cd <nuttx-top-directory>
|
2008-01-10 18:16:20 +00:00
|
|
|
make
|
|
|
|
|
|
|
|
Where <sub-directory> is the specific board configuration that you
|
|
|
|
wish to build. The following board-specific configurations are
|
|
|
|
available:
|
|
|
|
|
|
|
|
- ostest
|
2008-02-02 20:16:31 +00:00
|
|
|
This builds the examples/ostest application for execution from FLASH.
|
|
|
|
See examples/README.txt for information about ostest.
|
|
|
|
|
|
|
|
- pashello
|
|
|
|
|
|
|
|
Configures to use examples/pashello for execution from FLASH
|
|
|
|
See examples/README.txt for information about pashello.
|
2008-01-10 18:16:20 +00:00
|
|
|
|
2008-02-07 14:41:11 +00:00
|
|
|
Check out any README.txt files in these <sub-directory>s.
|