git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1935 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2010-05-18 13:36:33 +00:00
parent 14b049404f
commit 6b6bce2f39
3 changed files with 16 additions and 8 deletions

View File

@ -35,15 +35,16 @@
* - <b>Leon Woestenberg</b>, CondVars idea and implementation, documentation * - <b>Leon Woestenberg</b>, CondVars idea and implementation, documentation
* improvements and a lot of other ideas, he also helped with the lwIP port * improvements and a lot of other ideas, he also helped with the lwIP port
* (he is one of the developers of that project too). * (he is one of the developers of that project too).
* - <b>Leszek Bednarz</b>, H8S and ColdFire ports and drivers. * - <b>Leszek Bednarz</b>, H8S and ColdFire ports and drivers maintainer.
* - <b>Liam Staskawicz</b>, Posix simulator, AT91SAM7x and STM32 related * - <b>Liam Staskawicz</b>, Posix simulator, AT91SAM7x and STM32 related
* contributions, many bug fixes and excellent suggestions. * contributions, general improvements, many bug fixes and excellent
* suggestions.
* - <b>Michael Fischer</b>, because the work on YAGARTO and the excellent * - <b>Michael Fischer</b>, because the work on YAGARTO and the excellent
* feedback. * feedback.
* - <b>Riccardo Scanu</b>, another long story, this time involving reverse * - <b>Riccardo Scanu</b>, another long story, this time involving reverse
* engineering and giant robots... * engineering and giant robots...
* - <b>Vladimir</b>, first tested and fixed the AVR port, I don't know the * - <b>Vladimir</b>, first tested and fixed the AVR port, I don't know the
* surname but he has been the first contributor. * surname but he has been the first contributor.
* - <b>Walter Goossens</b>, fixes to the LPC21xx support. * - <b>Walter Goossens</b>, several fixes to the LPC21xx support.
* . * .
*/ */

View File

@ -44,14 +44,14 @@
*/ */
#if defined(STM32F10X_MD) || defined(__DOXYGEN__) #if defined(STM32F10X_MD) || defined(__DOXYGEN__)
#define PLATFORM_NAME "STM32 MD" #define PLATFORM_NAME "STM32 MD"
#include "hal_lld_F103.h" #include "hal_lld_f103.h"
#elif defined(STM32F10X_LD) #elif defined(STM32F10X_LD)
#define PLATFORM_NAME "STM32 LD" #define PLATFORM_NAME "STM32 LD"
#include "hal_lld_F103.h" #include "hal_lld_f103.h"
#elif defined(STM32F10X_HD) #elif defined(STM32F10X_HD)
#define PLATFORM_NAME "STM32 HD" #define PLATFORM_NAME "STM32 HD"
#include "hal_lld_F103.h" #include "hal_lld_f103.h"
#elif defined(STM32F10X_CL) #elif defined(STM3F10X_CL)
#define PLATFORM_NAME "STM32 CL" #define PLATFORM_NAME "STM32 CL"
#include "hal_lld_f105_f107.h" #include "hal_lld_f105_f107.h"
#else #else

View File

@ -41,12 +41,19 @@
*/ */
/** /**
* @defgroup STM32F10x_HAL STM32F103 HAL Support * @defgroup STM32F103_HAL STM32F103 HAL Support
* @brief HAL support for STM32 LD, MD and HD families. * @brief HAL support for STM32 LD, MD and HD families.
* *
* @ingroup STM32_HAL * @ingroup STM32_HAL
*/ */
/**
* @defgroup STM32F10X_CL_HAL STM32F105/F107 HAL Support
* @brief HAL support for STM32 CL (Connectivity Line) family.
*
* @ingroup STM32_HAL
*/
/** /**
* @defgroup STM32_PAL STM32 I/O Ports Support * @defgroup STM32_PAL STM32 I/O Ports Support
* @brief I/O Ports peripherals support. * @brief I/O Ports peripherals support.