aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/Doxyfile2
-rw-r--r--docs/ch.txt50
-rw-r--r--ports/ARM7-AT91SAM7X/port.dox13
-rw-r--r--ports/ARM7-LPC214x/port.dox17
-rw-r--r--ports/ARM7/chcore.h2
-rw-r--r--ports/ARMCM3-STM32F103/port.dox11
6 files changed, 43 insertions, 52 deletions
diff --git a/docs/Doxyfile b/docs/Doxyfile
index db3bdba48..8877df0fb 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 ../ports/AVR
+INPUT = ../src/include ../src/templates ../src ../docs/ch.txt ../src/lib ../ports/ARM7 ../ports/ARM7-AT91SAM7X/port.dox ../ports/ARM7-LPC214x/port.dox ../ports/ARMCM3 ../ports/ARMCM3-STM32F103/port.dox ../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 196fa94c5..e31bd932d 100644
--- a/docs/ch.txt
+++ b/docs/ch.txt
@@ -245,56 +245,6 @@
/** @} */
/**
- * @defgroup LPC214x LPC214x Support
- * @{
- * <p>
- * The LPC214x support includes:
- * <ul>
- * <li>VIC support code.</li>
- * <li>Buffered, interrupt driven, serial driver.</li>
- * <li>SSP driver.</li>
- * <li>A MMC/SD demo driver.</li>
- * <li>A buzzer demo driver.</li>
- * <li>A minimal demo, useful as project template.</li>
- * <li>A demo supporting the kernel test suite.</li>
- * <li>A C++ demo supporting the kernel test suite.</li>
- * </ul>
- * </p>
- * @ingroup ARM7
- */
-/** @} */
-
-/**
- * @defgroup AT91SAM7X AT91SAM7X Support
- * @{
- * <p>
- * The AT91SAM7X support includes:
- * <ul>
- * <li>Buffered, interrupt driven, serial driver.</li>
- * <li>EMAC driver with MII support.</li>
- * <li>A demo supporting the kernel test suite.</li>
- * <li>A Web server demo using the uIP TCP/IP stack.</li>
- * </ul>
- * </p>
- * @ingroup ARM7
- */
-/** @} */
-
-/**
- * @defgroup STM32F103 STM32F103 Support
- * @{
- * <p>
- * The STM32F103 support includes:
- * <ul>
- * <li>Buffered, interrupt driven, serial driver.</li>
- * <li>A demo supporting the kernel test suite.</li>
- * </ul>
- * </p>
- * @ingroup ARMCM3
- */
-/** @} */
-
-/**
* @defgroup Kernel Kernel
* @{
* @file ch.h ChibiOS/RT main include file, it includes everything else.
diff --git a/ports/ARM7-AT91SAM7X/port.dox b/ports/ARM7-AT91SAM7X/port.dox
new file mode 100644
index 000000000..b62dd3daf
--- /dev/null
+++ b/ports/ARM7-AT91SAM7X/port.dox
@@ -0,0 +1,13 @@
+/**
+ * @defgroup AT91SAM7X AT91SAM7X Support
+ * @{
+ * @brief AT91SAM7X specific support.
+ * The AT91SAM7X support includes:
+ * - Buffered, interrupt driven, serial driver.
+ * - EMAC driver with MII support.
+ * - A demo supporting the kernel test suite.
+ * - A Web server demo using the uIP TCP/IP stack.
+ *
+ * @ingroup ARM7
+ */
+/** @} */
diff --git a/ports/ARM7-LPC214x/port.dox b/ports/ARM7-LPC214x/port.dox
new file mode 100644
index 000000000..279a92c04
--- /dev/null
+++ b/ports/ARM7-LPC214x/port.dox
@@ -0,0 +1,17 @@
+/**
+ * @defgroup LPC214x LPC214x Support
+ * @{
+ * @brief LPC214x specific support.
+ * The LPC214x support includes:
+ * - VIC support code.
+ * - Buffered, interrupt driven, serial driver.
+ * - SSP driver.
+ * - A MMC/SD demo driver.
+ * - A timer driven buzzer demo driver.
+ * - A minimal demo, useful as project template.
+ * - A demo supporting the kernel test suite.
+ * - A C++ demo supporting the kernel test suite.
+ *
+ * @ingroup ARM7
+ */
+/** @} */
diff --git a/ports/ARM7/chcore.h b/ports/ARM7/chcore.h
index 5c2233275..4f3800f1a 100644
--- a/ports/ARM7/chcore.h
+++ b/ports/ARM7/chcore.h
@@ -100,7 +100,7 @@ typedef struct {
sizeof(struct intctx)); \
tp->p_ctx.r13->r4 = pf; \
tp->p_ctx.r13->r5 = arg; \
- tp->p_ctx.r13->lr = _port_thread_start; \
+ tp->p_ctx.r13->lr = _port_thread_start; \
}
/**
diff --git a/ports/ARMCM3-STM32F103/port.dox b/ports/ARMCM3-STM32F103/port.dox
new file mode 100644
index 000000000..4d6e4ec31
--- /dev/null
+++ b/ports/ARMCM3-STM32F103/port.dox
@@ -0,0 +1,11 @@
+/**
+ * @defgroup STM32F103 STM32F103 Support
+ * @{
+ * @brief STM32F103 specific support.
+ * The STM32F103 support includes:
+ * - Buffered, interrupt driven, serial driver.
+ * - A demo supporting the kernel test suite.
+ *
+ * @ingroup ARMCM3
+ */
+/** @} */