aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-12-29 12:12:53 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-12-29 12:12:53 +0000
commitaa2eb80fdb2e4e3b6eedacb8426e40db255cbe68 (patch)
tree7cc283c18c713d234676ef3f0968baea61ffb8d3 /docs
parent796f13d4fa6befdf9e524306d764a3f1483ab8f1 (diff)
downloadChibiOS-aa2eb80fdb2e4e3b6eedacb8426e40db255cbe68.tar.gz
ChibiOS-aa2eb80fdb2e4e3b6eedacb8426e40db255cbe68.tar.bz2
ChibiOS-aa2eb80fdb2e4e3b6eedacb8426e40db255cbe68.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@558 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'docs')
-rw-r--r--docs/ch.txt36
1 files changed, 36 insertions, 0 deletions
diff --git a/docs/ch.txt b/docs/ch.txt
index 326fddc00..ad7421f3b 100644
--- a/docs/ch.txt
+++ b/docs/ch.txt
@@ -363,6 +363,24 @@
/** @} */
/**
+ * @defgroup AVRCONF Configuration Options
+ * @{
+ * <p>
+ * The AVR port allows some architecture-specific configurations settings
+ * that can be specified externally, as example on the compiler command line:
+ * <ul>
+ * <li>@p INT_REQUIRED_STACK, this value represent the amount of stack space
+ * used by the interrupt handlers.<br>
+ * The default for this value is @p 32, this space is allocated for each
+ * thread so be careful in order to not waste precious RAM space.<br>
+ * The default value is set into <b>./ports/AVR/chcore.h</b>.</li>
+ * </ul>
+ * </p>
+ * @ingroup AVR
+ */
+/** @} */
+
+/**
* @defgroup MSP430 MSP430
* @{
* <p>
@@ -379,6 +397,24 @@
/** @} */
/**
+ * @defgroup MSP430CONF Configuration Options
+ * @{
+ * <p>
+ * The MSP430 port allows some architecture-specific configurations settings
+ * that can be specified externally, as example on the compiler command line:
+ * <ul>
+ * <li>@p INT_REQUIRED_STACK, this value represent the amount of stack space
+ * used by the interrupt handlers.<br>
+ * The default for this value is @p 32, this space is allocated for each
+ * thread so be careful in order to not waste precious RAM space.<br>
+ * The default value is set into <b>./ports/MSP430/chcore.h</b>.</li>
+ * </ul>
+ * </p>
+ * @ingroup MSP430
+ */
+/** @} */
+
+/**
* @defgroup Kernel Kernel
* @{
*/