From 32e57dac2e61e79b029593eb4d34d727bcc10678 Mon Sep 17 00:00:00 2001 From: iperry Date: Thu, 17 Dec 2009 02:37:07 +0000 Subject: 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 --- .../examples/USART/Interrupt/platform_config.h | 48 ++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100755 src/stm32lib/examples/USART/Interrupt/platform_config.h (limited to 'src/stm32lib/examples/USART/Interrupt/platform_config.h') diff --git a/src/stm32lib/examples/USART/Interrupt/platform_config.h b/src/stm32lib/examples/USART/Interrupt/platform_config.h new file mode 100755 index 0000000..14ceaf4 --- /dev/null +++ b/src/stm32lib/examples/USART/Interrupt/platform_config.h @@ -0,0 +1,48 @@ +/******************** (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 GPIOx GPIOD +#define RCC_APB2Periph_GPIOx RCC_APB2Periph_GPIOD +#define GPIO_TxPin GPIO_Pin_5 +#define GPIO_RxPin GPIO_Pin_6 +#elif defined USE_STM3210E_EVAL +#define GPIOx GPIOA +#define RCC_APB2Periph_GPIOx RCC_APB2Periph_GPIOA +#define GPIO_TxPin GPIO_Pin_2 +#define GPIO_RxPin GPIO_Pin_3 +#endif /* USE_STM3210B_EVAL */ + +/* Exported macro ------------------------------------------------------------*/ +/* Exported functions ------------------------------------------------------- */ + +#endif /* __PLATFORM_CONFIG_H */ + +/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/ -- cgit v1.2.3