git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1934 35acf78f-673a-0410-8e92-d51de3d6d3f4
parent
88d93ba5bf
commit
14b049404f
|
@ -11,8 +11,8 @@ The currently included items are:
|
|||
|
||||
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/
|
||||
3. STM32 firmware library 3.1.2 (partial) the full download is available from
|
||||
http://www.st.com
|
||||
3. STM32 firmware library 3.3.0 (partial, library only) the full download is
|
||||
available from http://www.st.com
|
||||
4. FatFS 0.7e (patched), the original version is available from
|
||||
http://elm-chan.org/fsw/ff/00index_e.html
|
||||
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -44,18 +44,18 @@
|
|||
*/
|
||||
#if defined(STM32F10X_MD) || defined(__DOXYGEN__)
|
||||
#define PLATFORM_NAME "STM32 MD"
|
||||
#include "hal_lld_F10x.h"
|
||||
#include "hal_lld_F103.h"
|
||||
#elif defined(STM32F10X_LD)
|
||||
#define PLATFORM_NAME "STM32 LD"
|
||||
#include "hal_lld_F10x.h"
|
||||
#include "hal_lld_F103.h"
|
||||
#elif defined(STM32F10X_HD)
|
||||
#define PLATFORM_NAME "STM32 HD"
|
||||
#include "hal_lld_F10x.h"
|
||||
#include "hal_lld_F103.h"
|
||||
#elif defined(STM32F10X_CL)
|
||||
#define PLATFORM_NAME "STM32 CL"
|
||||
#include "hal_lld_F107.h"
|
||||
#include "hal_lld_f105_f107.h"
|
||||
#else
|
||||
#error "STM32 platform not specified"
|
||||
#error "STM32 platform unknown or not specified"
|
||||
#endif
|
||||
|
||||
/*===========================================================================*/
|
||||
|
|
|
@ -18,15 +18,15 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file STM32/hal_lld_F10x.h
|
||||
* @brief STM32F10x HAL subsystem low level driver header.
|
||||
* @file STM32/hal_lld_f103.h
|
||||
* @brief STM32F103 HAL subsystem low level driver header.
|
||||
*
|
||||
* @addtogroup STM32F10x_HAL
|
||||
* @addtogroup STM32F103_HAL
|
||||
* @{
|
||||
*/
|
||||
|
||||
#ifndef _HAL_LLD_F10X_H_
|
||||
#define _HAL_LLD_F10X_H_
|
||||
#ifndef _HAL_LLD_F103_H_
|
||||
#define _HAL_LLD_F103_H_
|
||||
|
||||
/*===========================================================================*/
|
||||
/* Driver constants. */
|
||||
|
@ -335,6 +335,6 @@
|
|||
#define STM32_FLASHBITS 0x00000012
|
||||
#endif
|
||||
|
||||
#endif /* _HAL_LLD_F10X_H_ */
|
||||
#endif /* _HAL_LLD_F103_H_ */
|
||||
|
||||
/** @} */
|
|
@ -18,15 +18,15 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file STM32/hal_lld_F107.h
|
||||
* @brief STM32F107 HAL subsystem low level driver header.
|
||||
* @file STM32/hal_lld_f105_f107.h
|
||||
* @brief STM32F10x Connectivity Line HAL subsystem low level driver header.
|
||||
*
|
||||
* @addtogroup STM32F107_HAL
|
||||
* @addtogroup STM32F10X_CL_HAL
|
||||
* @{
|
||||
*/
|
||||
|
||||
#ifndef _HAL_LLD_F107_H_
|
||||
#define _HAL_LLD_F107_H_
|
||||
#ifndef _HAL_LLD_F105_F107_H_
|
||||
#define _HAL_LLD_F105_F107_H_
|
||||
|
||||
/*===========================================================================*/
|
||||
/* Driver constants. */
|
||||
|
@ -433,6 +433,6 @@
|
|||
#define STM32_FLASHBITS 0x00000012
|
||||
#endif
|
||||
|
||||
#endif /* _HAL_LLD_F107_H_ */
|
||||
#endif /* _HAL_LLD_F105_F107_H_ */
|
||||
|
||||
/** @} */
|
File diff suppressed because it is too large
Load Diff
|
@ -72,6 +72,7 @@
|
|||
- NEW: Added the palSetBusMode() capability to the STM8 PAL driver.
|
||||
- NEW: Added the palSetBusMode() capability to the LPC11xx and LPC13xx
|
||||
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
|
||||
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).
|
||||
|
|
Loading…
Reference in New Issue