git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1841 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
ebe711e1a2
commit
a70e278ede
|
@ -603,8 +603,7 @@ INPUT = ../docs/src \
|
|||
../os/ports/GCC/ARMCMx \
|
||||
../os/ports/GCC/ARMCMx/crt0.s \
|
||||
../os/ports/GCC/ARMCMx/STM32F10x \
|
||||
../os/ports/GCC/ARMCM3 \
|
||||
../os/ports/GCC/ARMCM3\STM32F103 \
|
||||
../os/ports/GCC/ARMCMx/LPC111x \
|
||||
../os/ports/GCC/PPC \
|
||||
../os/ports/GCC/PPC/crt0.s \
|
||||
../os/ports/GCC/MSP430 \
|
||||
|
@ -615,6 +614,7 @@ INPUT = ../docs/src \
|
|||
../os/hal/templates \
|
||||
../os/hal/platforms/AT91SAM7 \
|
||||
../os/hal/platforms/AVR \
|
||||
../os/hal/platforms/LPC111x \
|
||||
../os/hal/platforms/LPC214x \
|
||||
../os/hal/platforms/MSP430 \
|
||||
../os/hal/platforms/SPC56x \
|
||||
|
@ -678,7 +678,8 @@ RECURSIVE = NO
|
|||
# excluded from the INPUT source files. This way you can easily exclude a
|
||||
# subdirectory from a directory tree whose root is specified with the INPUT tag.
|
||||
|
||||
EXCLUDE = ../os/hal/platforms/STM32/stm32f10x.h
|
||||
EXCLUDE = ../os/hal/platforms/STM32/stm32f10x.h \
|
||||
../os/hal/platforms/LPC111x
|
||||
|
||||
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
|
||||
# directories that are symbolic links (a Unix filesystem feature) are excluded
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file LPC11xx/hal_lld.c
|
||||
* @brief LPC11xx HAL subsystem low level driver source.
|
||||
* @file LPC111x/hal_lld.c
|
||||
* @brief LPC111x HAL subsystem low level driver source.
|
||||
*
|
||||
* @addtogroup LPC11xx_HAL
|
||||
* @addtogroup LPC111x_HAL
|
||||
* @{
|
||||
*/
|
||||
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file LPC11xx/hal_lld.h
|
||||
* @file LPC111x/hal_lld.h
|
||||
* @brief HAL subsystem low level driver header template.
|
||||
*
|
||||
* @addtogroup LPC11xx_HAL
|
||||
* @addtogroup LPC111x_HAL
|
||||
* @{
|
||||
*/
|
||||
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file templates/pal_lld.c
|
||||
* @brief PAL subsystem low level driver template.
|
||||
* @file LPC111x/pal_lld.c
|
||||
* @brief LPC111x GPIO low level driver code.
|
||||
*
|
||||
* @addtogroup PAL_LLD
|
||||
* @addtogroup LPC111x_PAL
|
||||
* @{
|
||||
*/
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
* - A demo supporting the kernel test suite.
|
||||
* - A demo that demonstrate the FatFs use with the MMC driver.
|
||||
* .
|
||||
* @ingroup ARMCM3
|
||||
* @ingroup ARMCMx
|
||||
*/
|
||||
|
||||
/**
|
||||
|
|
|
@ -19,9 +19,9 @@
|
|||
|
||||
/**
|
||||
* @file ARMCMx/LPC111x/cmparams.h
|
||||
* @brief ARM Cortex-M0 LPC111x specific parameters.
|
||||
* @brief ARM Cortex-M0 LPC111x Specific Parameters.
|
||||
*
|
||||
* @defgroup ARMCMx_LPC111x LPC111x specific parameters
|
||||
* @defgroup ARMCMx_LPC111x LPC111x Specific Parameters
|
||||
* @ingroup ARMCMx
|
||||
* @details This file contains the Cortex-M0 specific parameters for the
|
||||
* LPC111x platform.
|
||||
|
|
|
@ -19,9 +19,9 @@
|
|||
|
||||
/**
|
||||
* @file ARMCMx/STM32F10x/cmparams.h
|
||||
* @brief ARM Cortex-M3 STM32F10x specific parameters.
|
||||
* @brief ARM Cortex-M3 STM32F10x Specific Parameters.
|
||||
*
|
||||
* @defgroup ARMCMx_STM32F10x STM32F10x specific parameters
|
||||
* @defgroup ARMCMx_STM32F10x STM32F10x Specific Parameters
|
||||
* @ingroup ARMCMx
|
||||
* @details This file contains the Cortex-M3 specific parameters for the
|
||||
* STM32F10x platform.
|
||||
|
|
Loading…
Reference in New Issue