From 7a74a8aca5c7edf2f86015acab8fb7297c670072 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Wed, 4 Feb 2009 21:17:02 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@718 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- docs/Doxyfile | 3 +++ ports/ARM7/chcoreasm.s | 2 ++ ports/ARM7/crt0.s | 2 ++ ports/ARMCM3/crt0.s | 4 +++- 4 files changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/Doxyfile b/docs/Doxyfile index d3841aaa5..7b5b62bac 100644 --- a/docs/Doxyfile +++ b/docs/Doxyfile @@ -580,9 +580,12 @@ INPUT = ../src/include \ ../docs/src \ ../src/lib \ ../ports/ARM7 \ + ../ports/ARM7/crt0.s \ + ../ports/ARM7/chcoreasm.s \ ../ports/ARM7-AT91SAM7X/port.dox \ ../ports/ARM7-LPC214x/port.dox \ ../ports/ARMCM3 \ + ../ports/ARMCM3/crt0.s \ ../ports/ARMCM3-STM32F103/port.dox \ ../ports/MSP430 \ ../ports/AVR diff --git a/ports/ARM7/chcoreasm.s b/ports/ARM7/chcoreasm.s index 9c24de407..932d39c04 100644 --- a/ports/ARM7/chcoreasm.s +++ b/ports/ARM7/chcoreasm.s @@ -23,6 +23,7 @@ * @addtogroup ARM7_CORE * @{ */ +/** @cond never */ #include @@ -229,4 +230,5 @@ jmpr4: bx r4 #endif /* !THUMB_NO_INTERWORKING */ +/** @endcond */ /** @} */ diff --git a/ports/ARM7/crt0.s b/ports/ARM7/crt0.s index b910293b9..d066ee478 100644 --- a/ports/ARM7/crt0.s +++ b/ports/ARM7/crt0.s @@ -23,6 +23,7 @@ * @addtogroup ARM7_CORE * @{ */ +/** @cond never */ .set MODE_USR, 0x10 .set MODE_FIQ, 0x11 @@ -193,4 +194,5 @@ hwinit0: hwinit1: bx lr +/** @endcond */ /** @} */ diff --git a/ports/ARMCM3/crt0.s b/ports/ARMCM3/crt0.s index 72b104a0c..18c987f18 100644 --- a/ports/ARMCM3/crt0.s +++ b/ports/ARMCM3/crt0.s @@ -19,10 +19,11 @@ /** * @file ports/ARMCM3/crt0.s - * @brief Generic ARM Xortex-M3 startup file for ChibiOS/RT. + * @brief Generic ARM Cortex-M3 startup file for ChibiOS/RT. * @addtogroup ARMCM3_CORE * @{ */ +/** @cond never */ .set CONTROL_MODE_PRIVILEGED, 0 .set CONTROL_MODE_UNPRIVILEGED, 1 @@ -115,4 +116,5 @@ hwinit0: hwinit1: bx lr +/** @endcond */ /** @} */ -- cgit v1.2.3