Documentation improvements.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5322 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2013-02-25 13:38:45 +00:00
parent 546418f20c
commit 8cb1e794a5
4 changed files with 8 additions and 4 deletions

View File

@ -707,7 +707,7 @@ RECURSIVE = YES
EXCLUDE = ../os/ports/common/ARMCMx/CMSIS \
../os/ports/GCC/SIMIA32 \
../os/hal/platforms \
../os/hal/templates \
../os/hal/templates/meta \
../os/various\devices_lib \
../os/various\fatfs_bindings \
../os/various\lwip_bindings \

View File

@ -707,7 +707,7 @@ RECURSIVE = YES
EXCLUDE = ../os/ports/common/ARMCMx/CMSIS \
../os/ports/GCC/SIMIA32 \
../os/hal/platforms \
../os/hal/templates \
../os/hal/templates/meta \
../os/various\devices_lib \
../os/various\fatfs_bindings \
../os/various\lwip_bindings \

View File

@ -52,7 +52,7 @@
* - The STM8 does not have a dedicated interrupt stack, make sure to reserve
* enough stack space for interrupts in each thread stack. This can be done
* by modifying the @p INT_REQUIRED_STACK macro into
* <b>./os/ports/cosmic/STM8/chcore.h</b>.
* <b>./os/ports/IAR/STM8/chcore.h</b>.
* - The kernel currently supports only the small memory model so the
* kernel files should be loaded in the first 64K. Note that this is not
* a problem because upper addresses can be used by the user code, the
@ -61,7 +61,7 @@
* because the missing support of the @p inline "C" keyword in the
* compiler.
* .
* @ingroup cosmic
* @ingroup iar
*/
/**

View File

@ -119,6 +119,10 @@
(backported to 2.4.3).
- FIX: Fixed wrong SPI path in platform_f105_f107.mk (bug 3598151).
- FIX: Fixed PHY powerdown issues not fixed (bug 3596911).
- NEW: Now the general documentation includes data extracted from the low
level driver templates. Per-platform/architecture documents are no more
required and will be replaced with technical articles and examples for
each specific driver.
- NEW: Added a build test project for low level device driver templates.
- NEW: Enhanced CAN driver model, support for mailboxes has been added. STM32
driver implementation upgraded.