Support for MSP430 launchpad.

Fork of mbed by mbed official

Committer:
bogdanm
Date:
Mon Dec 09 18:43:03 2013 +0200
Revision:
73:1efda918f0ba
Child:
76:824293ae5e43
Release 73 of the mbed library

Main changes:

- added support for KL46Z and NUCLEO_F103RB
- STM32 USB device support
- various bug fixes

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bogdanm 73:1efda918f0ba 1 /**
bogdanm 73:1efda918f0ba 2 ******************************************************************************
bogdanm 73:1efda918f0ba 3 * @file Project/STM32F10x_StdPeriph_Template/stm32f10x_conf.h
bogdanm 73:1efda918f0ba 4 * @author MCD Application Team
bogdanm 73:1efda918f0ba 5 * @version V3.5.0
bogdanm 73:1efda918f0ba 6 * @date 08-April-2011
bogdanm 73:1efda918f0ba 7 * @brief Library configuration file.
bogdanm 73:1efda918f0ba 8 ******************************************************************************
bogdanm 73:1efda918f0ba 9 * @attention
bogdanm 73:1efda918f0ba 10 *
bogdanm 73:1efda918f0ba 11 * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
bogdanm 73:1efda918f0ba 12 * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
bogdanm 73:1efda918f0ba 13 * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
bogdanm 73:1efda918f0ba 14 * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
bogdanm 73:1efda918f0ba 15 * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
bogdanm 73:1efda918f0ba 16 * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
bogdanm 73:1efda918f0ba 17 *
bogdanm 73:1efda918f0ba 18 * <h2><center>&copy; COPYRIGHT 2011 STMicroelectronics</center></h2>
bogdanm 73:1efda918f0ba 19 ******************************************************************************
bogdanm 73:1efda918f0ba 20 */
bogdanm 73:1efda918f0ba 21
bogdanm 73:1efda918f0ba 22 /* Define to prevent recursive inclusion -------------------------------------*/
bogdanm 73:1efda918f0ba 23 #ifndef __STM32F10x_CONF_H
bogdanm 73:1efda918f0ba 24 #define __STM32F10x_CONF_H
bogdanm 73:1efda918f0ba 25
bogdanm 73:1efda918f0ba 26 /* Includes ------------------------------------------------------------------*/
bogdanm 73:1efda918f0ba 27 /* Uncomment/Comment the line below to enable/disable peripheral header file inclusion */
bogdanm 73:1efda918f0ba 28 #include "stm32f10x_adc.h"
bogdanm 73:1efda918f0ba 29 #include "stm32f10x_bkp.h"
bogdanm 73:1efda918f0ba 30 #include "stm32f10x_can.h"
bogdanm 73:1efda918f0ba 31 #include "stm32f10x_cec.h"
bogdanm 73:1efda918f0ba 32 #include "stm32f10x_crc.h"
bogdanm 73:1efda918f0ba 33 #include "stm32f10x_dac.h"
bogdanm 73:1efda918f0ba 34 #include "stm32f10x_dbgmcu.h"
bogdanm 73:1efda918f0ba 35 #include "stm32f10x_dma.h"
bogdanm 73:1efda918f0ba 36 #include "stm32f10x_exti.h"
bogdanm 73:1efda918f0ba 37 #include "stm32f10x_flash.h"
bogdanm 73:1efda918f0ba 38 #include "stm32f10x_fsmc.h"
bogdanm 73:1efda918f0ba 39 #include "stm32f10x_gpio.h"
bogdanm 73:1efda918f0ba 40 #include "stm32f10x_i2c.h"
bogdanm 73:1efda918f0ba 41 #include "stm32f10x_iwdg.h"
bogdanm 73:1efda918f0ba 42 #include "stm32f10x_pwr.h"
bogdanm 73:1efda918f0ba 43 #include "stm32f10x_rcc.h"
bogdanm 73:1efda918f0ba 44 #include "stm32f10x_rtc.h"
bogdanm 73:1efda918f0ba 45 #include "stm32f10x_sdio.h"
bogdanm 73:1efda918f0ba 46 #include "stm32f10x_spi.h"
bogdanm 73:1efda918f0ba 47 #include "stm32f10x_tim.h"
bogdanm 73:1efda918f0ba 48 #include "stm32f10x_usart.h"
bogdanm 73:1efda918f0ba 49 #include "stm32f10x_wwdg.h"
bogdanm 73:1efda918f0ba 50 #include "misc.h" /* High level functions for NVIC and SysTick (add-on to CMSIS functions) */
bogdanm 73:1efda918f0ba 51
bogdanm 73:1efda918f0ba 52 /* Exported types ------------------------------------------------------------*/
bogdanm 73:1efda918f0ba 53 /* Exported constants --------------------------------------------------------*/
bogdanm 73:1efda918f0ba 54 /* Uncomment the line below to expanse the "assert_param" macro in the
bogdanm 73:1efda918f0ba 55 Standard Peripheral Library drivers code */
bogdanm 73:1efda918f0ba 56 /* #define USE_FULL_ASSERT 1 */
bogdanm 73:1efda918f0ba 57
bogdanm 73:1efda918f0ba 58 /* Exported macro ------------------------------------------------------------*/
bogdanm 73:1efda918f0ba 59 #ifdef USE_FULL_ASSERT
bogdanm 73:1efda918f0ba 60
bogdanm 73:1efda918f0ba 61 /**
bogdanm 73:1efda918f0ba 62 * @brief The assert_param macro is used for function's parameters check.
bogdanm 73:1efda918f0ba 63 * @param expr: If expr is false, it calls assert_failed function which reports
bogdanm 73:1efda918f0ba 64 * the name of the source file and the source line number of the call
bogdanm 73:1efda918f0ba 65 * that failed. If expr is true, it returns no value.
bogdanm 73:1efda918f0ba 66 * @retval None
bogdanm 73:1efda918f0ba 67 */
bogdanm 73:1efda918f0ba 68 #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__))
bogdanm 73:1efda918f0ba 69 /* Exported functions ------------------------------------------------------- */
bogdanm 73:1efda918f0ba 70 void assert_failed(uint8_t* file, uint32_t line);
bogdanm 73:1efda918f0ba 71 #else
bogdanm 73:1efda918f0ba 72 #define assert_param(expr) ((void)0)
bogdanm 73:1efda918f0ba 73 #endif /* USE_FULL_ASSERT */
bogdanm 73:1efda918f0ba 74
bogdanm 73:1efda918f0ba 75 #endif /* __STM32F10x_CONF_H */
bogdanm 73:1efda918f0ba 76
bogdanm 73:1efda918f0ba 77 /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/