aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-01-18 17:09:11 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-01-18 17:09:11 +0000
commit0c36565550f5b81e6b853ebf3e0b323ed4a8f1f2 (patch)
tree0f85c364dc506704222f4dcaceadf79430d4cf6b /docs
parentcb692f1c51bb79c7c6f015cef9da5dfeb1bfebba (diff)
downloadChibiOS-0c36565550f5b81e6b853ebf3e0b323ed4a8f1f2.tar.gz
ChibiOS-0c36565550f5b81e6b853ebf3e0b323ed4a8f1f2.tar.bz2
ChibiOS-0c36565550f5b81e6b853ebf3e0b323ed4a8f1f2.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@637 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'docs')
-rw-r--r--docs/Doxyfile2
-rw-r--r--docs/ch.txt38
2 files changed, 3 insertions, 37 deletions
diff --git a/docs/Doxyfile b/docs/Doxyfile
index fc3f3f1f6..db3bdba48 100644
--- a/docs/Doxyfile
+++ b/docs/Doxyfile
@@ -84,7 +84,7 @@ WARN_LOGFILE =
#---------------------------------------------------------------------------
# configuration options related to the input files
#---------------------------------------------------------------------------
-INPUT = ../src/include ../src/templates ../src ../docs/ch.txt ../src/lib ../ports/ARM7 ../ports/ARMCM3 ../ports/MSP430
+INPUT = ../src/include ../src/templates ../src ../docs/ch.txt ../src/lib ../ports/ARM7 ../ports/ARMCM3 ../ports/MSP430 ../ports/AVR
INPUT_ENCODING = UTF-8
FILE_PATTERNS = *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py *.ddf
RECURSIVE = YES
diff --git a/docs/ch.txt b/docs/ch.txt
index d61a735ce..196fa94c5 100644
--- a/docs/ch.txt
+++ b/docs/ch.txt
@@ -295,40 +295,6 @@
/** @} */
/**
- * @defgroup AVR MegaAVR
- * @{
- * <p>
- * Notes about the AVR port:
- * </p>
- * <ul>
- * <li>The AVR 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>./ports/AVR/chcore.h</b>.</li>
- * </ul>
- * @ingroup Ports
- */
-/** @} */
-
-/**
- * @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 Kernel Kernel
* @{
* @file ch.h ChibiOS/RT main include file, it includes everything else.
@@ -345,9 +311,9 @@
/** @} */
/**
- * @defgroup Core Core
+ * @defgroup Core Generic Port Code Templates
* @{
- * Non portable code.
+ * Non portable code templates.
* @ingroup Kernel
* @file src/templates/chcore.c Non portable code template file.
* @file src/templates/chcore.h Non portable macros and structures template file.