diff options
| author | iperry <iperry@749a229e-a60e-11de-b98f-4500b42dc123> | 2009-12-17 02:37:07 +0000 | 
|---|---|---|
| committer | iperry <iperry@749a229e-a60e-11de-b98f-4500b42dc123> | 2009-12-17 02:37:07 +0000 | 
| commit | 32e57dac2e61e79b029593eb4d34d727bcc10678 (patch) | |
| tree | 98d7ff41993576bb150d13d5f63dc744f6812852 /src/stm32lib/examples/EXTI/platform_config.h | |
| download | librambutan-32e57dac2e61e79b029593eb4d34d727bcc10678.tar.gz librambutan-32e57dac2e61e79b029593eb4d34d727bcc10678.zip | |
Initial commit of library code, moved from leaftest repo
git-svn-id: https://leaflabs.googlecode.com/svn/trunk/library@69 749a229e-a60e-11de-b98f-4500b42dc123
Diffstat (limited to 'src/stm32lib/examples/EXTI/platform_config.h')
| -rwxr-xr-x | src/stm32lib/examples/EXTI/platform_config.h | 56 | 
1 files changed, 56 insertions, 0 deletions
| diff --git a/src/stm32lib/examples/EXTI/platform_config.h b/src/stm32lib/examples/EXTI/platform_config.h new file mode 100755 index 0000000..3deb7ba --- /dev/null +++ b/src/stm32lib/examples/EXTI/platform_config.h @@ -0,0 +1,56 @@ +/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 +* File Name          : platform_config.h
 +* Author             : MCD Application Team
 +* Version            : V2.0.1
 +* Date               : 06/13/2008
 +* Description        : Evaluation board specific configuration file.
 +********************************************************************************
 +* THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
 +* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
 +* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
 +* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
 +* CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
 +* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
 +*******************************************************************************/
 +
 +/* Define to prevent recursive inclusion -------------------------------------*/
 +#ifndef __PLATFORM_CONFIG_H
 +#define __PLATFORM_CONFIG_H
 +
 +/* Includes ------------------------------------------------------------------*/
 +/* Exported types ------------------------------------------------------------*/
 +/* Exported constants --------------------------------------------------------*/
 +/* Uncomment the line corresponding to the STMicroelectronics evaluation board
 +   used to run the example */
 +#if !defined (USE_STM3210B_EVAL) &&  !defined (USE_STM3210E_EVAL)
 + //#define USE_STM3210B_EVAL
 + #define USE_STM3210E_EVAL
 +#endif
 +
 +/* Define the STM32F10x hardware depending on the used evaluation board */
 +#ifdef USE_STM3210B_EVAL
 +  #define GPIO_LED                          GPIOC    
 +  #define RCC_APB2Periph_GPIO_LED           RCC_APB2Periph_GPIOC
 +  #define GPIO_KEY_BUTTON                   GPIOB
 +  #define RCC_APB2Periph_GPIO_KEY_BUTTON    RCC_APB2Periph_GPIOB
 +  #define GPIO_PIN_KEY_BUTTON               GPIO_Pin_9
 +  #define EXTI_LINE_KEY_BUTTON              EXTI_Line9
 +  #define GPIO_PORT_SOURCE_KEY_BUTTON       GPIO_PortSourceGPIOB
 +  #define GPIO_PIN_SOURCE_KEY_BUTTON        GPIO_PinSource9
 +#elif defined USE_STM3210E_EVAL
 +  #define GPIO_LED                          GPIOF    
 +  #define RCC_APB2Periph_GPIO_LED           RCC_APB2Periph_GPIOF
 +  #define GPIO_KEY_BUTTON                   GPIOG    
 +  #define RCC_APB2Periph_GPIO_KEY_BUTTON    RCC_APB2Periph_GPIOG
 +  #define GPIO_PIN_KEY_BUTTON               GPIO_Pin_8
 +  #define EXTI_LINE_KEY_BUTTON              EXTI_Line8
 +  #define GPIO_PORT_SOURCE_KEY_BUTTON       GPIO_PortSourceGPIOG
 +  #define GPIO_PIN_SOURCE_KEY_BUTTON        GPIO_PinSource8
 +#endif /* USE_STM3210B_EVAL */
 +
 +/* Exported macro ------------------------------------------------------------*/
 +/* Exported functions ------------------------------------------------------- */
 +
 +#endif /* __PLATFORM_CONFIG_H */
 +
 +/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 | 
