git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1172 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2009-09-20 06:30:25 +00:00
parent 8b4030cdc9
commit fb616e6101
3 changed files with 17 additions and 12 deletions

View File

@ -31,7 +31,7 @@ PROJECT_NAME = ChibiOS/RT
# This could be handy for archiving the generated documentation or # This could be handy for archiving the generated documentation or
# if some version control system is used. # if some version control system is used.
PROJECT_NUMBER = 1.3.2 PROJECT_NUMBER = 1.3.3
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put. # base path where the generated documentation will be put.

View File

@ -75,16 +75,21 @@
* core (a common example: ARM7) of a supported microcontroller but has * core (a common example: ARM7) of a supported microcontroller but has
* differences in the internal peripherals.<br> * differences in the internal peripherals.<br>
* If this is your case proceed as follow: * If this is your case proceed as follow:
* -# Create a new directory under @p ./ports and name it as follow: * -# Create a new directory under @p <code>./os/io/platforms</code> and
* <code><i>@<arch@></i>-<i>@<chip@></i>[-<i>@<compiler@></i>]</code> * name it with the microcontroller name (or family name).<br>
* The compiler part can be omitted if the port uses GCC (our default). * In case of the ARM-based microcontroller you also need to create a
* Examples: @p ARM7-LPC236x or @p ARMCM3-STM32F103-IAR * equally named directory under
* @p <code>./os/ports/<i>@<compiler@></i>/<i>@<arch@></i></code> and
* put there the microcontroller related files such as the vectors table,
* see the existing ports as example.
* -# Copy into the newly created directory the most closely related existing * -# Copy into the newly created directory the most closely related existing
* chip port. * chip port or the naked template files from
* -# Rename the files in order to reflect the name of the new chip. * @p <code>./os/io/templates</code>.
* -# Work out the differences in the drivers. * -# Work out the differences in the drivers or implement them if you started
* -# Edit the documentation file @p port.dox, this is required if you want * from the templates.
* to regenerate this documentation including your work. * -# Edit/create the documentation file @p <code>platform.dox</code>, this
* is required if you want to regenerate this documentation including
* your work.
* . * .
* Usually this kind of port just requires a serial driver (and those are very * Usually this kind of port just requires a serial driver (and those are very
* similar each other) and some code for the interrupt controller (this one * similar each other) and some code for the interrupt controller (this one

View File

@ -35,7 +35,7 @@
/** /**
* Kernel version string. * Kernel version string.
*/ */
#define CH_KERNEL_VERSION "1.3.2unstable" #define CH_KERNEL_VERSION "1.3.3unstable"
/** /**
* Kernel version major number. * Kernel version major number.
@ -50,7 +50,7 @@
/** /**
* Kernel version patch number. * Kernel version patch number.
*/ */
#define CH_KERNEL_PATCH 2 #define CH_KERNEL_PATCH 3
/* /*
* Common values. * Common values.