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

This commit is contained in:
gdisirio 2010-05-18 08:34:00 +00:00
parent 88d93ba5bf
commit 14b049404f
8 changed files with 602 additions and 228 deletions

View File

@ -11,8 +11,8 @@ The currently included items are:
1. uip-1.0, a minimal TCP/IP implementation: http://www.sics.se/~adam/uip/ 1. uip-1.0, a minimal TCP/IP implementation: http://www.sics.se/~adam/uip/
2. lwip-1.3.1, lightweight TCP/IP stack: http://savannah.nongnu.org/projects/lwip/ 2. lwip-1.3.1, lightweight TCP/IP stack: http://savannah.nongnu.org/projects/lwip/
3. STM32 firmware library 3.1.2 (partial) the full download is available from 3. STM32 firmware library 3.3.0 (partial, library only) the full download is
http://www.st.com available from http://www.st.com
4. FatFS 0.7e (patched), the original version is available from 4. FatFS 0.7e (patched), the original version is available from
http://elm-chan.org/fsw/ff/00index_e.html http://elm-chan.org/fsw/ff/00index_e.html

Binary file not shown.

BIN
ext/stm32lib-3.3.0.zip Normal file

Binary file not shown.

View File

@ -44,18 +44,18 @@
*/ */
#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_F10x.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_F10x.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_F10x.h" #include "hal_lld_F103.h"
#elif defined(STM32F10X_CL) #elif defined(STM32F10X_CL)
#define PLATFORM_NAME "STM32 CL" #define PLATFORM_NAME "STM32 CL"
#include "hal_lld_F107.h" #include "hal_lld_f105_f107.h"
#else #else
#error "STM32 platform not specified" #error "STM32 platform unknown or not specified"
#endif #endif
/*===========================================================================*/ /*===========================================================================*/

View File

@ -18,15 +18,15 @@
*/ */
/** /**
* @file STM32/hal_lld_F10x.h * @file STM32/hal_lld_f103.h
* @brief STM32F10x HAL subsystem low level driver header. * @brief STM32F103 HAL subsystem low level driver header.
* *
* @addtogroup STM32F10x_HAL * @addtogroup STM32F103_HAL
* @{ * @{
*/ */
#ifndef _HAL_LLD_F10X_H_ #ifndef _HAL_LLD_F103_H_
#define _HAL_LLD_F10X_H_ #define _HAL_LLD_F103_H_
/*===========================================================================*/ /*===========================================================================*/
/* Driver constants. */ /* Driver constants. */
@ -335,6 +335,6 @@
#define STM32_FLASHBITS 0x00000012 #define STM32_FLASHBITS 0x00000012
#endif #endif
#endif /* _HAL_LLD_F10X_H_ */ #endif /* _HAL_LLD_F103_H_ */
/** @} */ /** @} */

View File

@ -18,15 +18,15 @@
*/ */
/** /**
* @file STM32/hal_lld_F107.h * @file STM32/hal_lld_f105_f107.h
* @brief STM32F107 HAL subsystem low level driver header. * @brief STM32F10x Connectivity Line HAL subsystem low level driver header.
* *
* @addtogroup STM32F107_HAL * @addtogroup STM32F10X_CL_HAL
* @{ * @{
*/ */
#ifndef _HAL_LLD_F107_H_ #ifndef _HAL_LLD_F105_F107_H_
#define _HAL_LLD_F107_H_ #define _HAL_LLD_F105_F107_H_
/*===========================================================================*/ /*===========================================================================*/
/* Driver constants. */ /* Driver constants. */
@ -433,6 +433,6 @@
#define STM32_FLASHBITS 0x00000012 #define STM32_FLASHBITS 0x00000012
#endif #endif
#endif /* _HAL_LLD_F107_H_ */ #endif /* _HAL_LLD_F105_F107_H_ */
/** @} */ /** @} */

File diff suppressed because it is too large Load Diff

View File

@ -72,6 +72,7 @@
- NEW: Added the palSetBusMode() capability to the STM8 PAL driver. - NEW: Added the palSetBusMode() capability to the STM8 PAL driver.
- NEW: Added the palSetBusMode() capability to the LPC11xx and LPC13xx - NEW: Added the palSetBusMode() capability to the LPC11xx and LPC13xx
PAL drivers. PAL drivers.
- NEW: Updated the STM32 FW Library files to latest version 3.3.0.
- CHANGE: Renamed the STM32, STM8, LPC214x, AT91SAM7x, MSP430 and simulators - CHANGE: Renamed the STM32, STM8, LPC214x, AT91SAM7x, MSP430 and simulators
PAL configuration structures to PALConfig, it is better to have the same PAL configuration structures to PALConfig, it is better to have the same
name for this structure in all ports (like for all the other drivers). name for this structure in all ports (like for all the other drivers).